summaryrefslogtreecommitdiff
path: root/saedit/main.h
blob: 2a5b67096ca14e27d7b05000c63f28dad06a7ed4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/*=======================================*\
|  ____                         ____      |
| /    \         /\            |          |
| \____         /  \           |____      |
|      \       /____\          |          |
| \____/prite /      \nimation |____ditor |
|                                         |
|      Copyleft Vasily_Makarov 2011       |
|                                         |
\*=======================================*/

#include <stdlib.h>
#include <gtk/gtk.h>
#include <gtksourceview/gtksourceview.h>
#include <gtksourceview/gtksourcelanguagemanager.h>
#include <ibusxml.h>
#include <cairo.h>
#include <glib/gi18n.h>

const int MIN_WIDTH = 600;
const int MIN_HEIGHT = 600;
const int SPRITE_WIDTH_DEFAULT = 64;
const int SPRITE_HEIGHT_DEFAULT = 64;
const int GRID_SIZE = 32;
const gchar *DIR_GROUNDS = "grounds";
const gchar *FILE_ICON = "icon.svg";
const gchar *FILE_CONFIG = "saedit/config.ini";
const gchar *POSTFIX_FOLDER = "...";
const gchar *SEPARATOR_SLASH = "/";
const gchar *OPTION_SPRITES_DEFAULT = "graphics/sprites/";

const gboolean KEY_SHOW_GRID_DEFAULT = TRUE;
const gchar *KEY_CLIENTDATA_FOLDER_DEFAULT = "";

const int IMAGESET_PREVIEW_WINDOW_WIDTH = 200;
const int IMAGESET_PREVIEW_WINDOW_HEIGHT = 300;

typedef struct {
  GList *sub_nodes;
  guint *anim_tag;
} AnimationInfo;

static AnimationInfo *animation_info_new() {
  return g_new0(AnimationInfo, 1);
}

static AnimationInfo *animation_info_new_with_params(GList *sub_nodes_new, guint *anim_tag_new) {
  AnimationInfo *res = g_new0(AnimationInfo, 1);
  res->sub_nodes = sub_nodes_new;
  res->anim_tag = anim_tag_new;
  return res;
}

typedef struct {
  XMLNode *node;
  int start;
  int end;
  guint delay;
  AnimationInfo *anim_info;
  int repeat;
} SequenceInfo;

static SequenceInfo *sequence_info_new(XMLNode *node, int start, int end, guint delay, AnimationInfo *anim_info, int repeat) {
  SequenceInfo *res = g_new0(SequenceInfo, 1);
  res->start = start;
  res->end = end;
  res->node = node;
  res->delay = delay;
  res->anim_info = anim_info;
  res->repeat = repeat;
  return res;
}

typedef struct {
  int index;
  int offsetX;
  int offsetY;
} SpriteInfo;
static SpriteInfo *sprite_info_new(int index, int offsetX, int offsetY);

typedef struct {
  gchar *sprites;
} Options;

typedef struct {
  gchar *clientdata_folder;
  gboolean show_grid;
} Keys;

static Keys *keys_new() {
  Keys *res = g_new0(Keys, 1);
  res->clientdata_folder = KEY_CLIENTDATA_FOLDER_DEFAULT;
  res->show_grid = KEY_SHOW_GRID_DEFAULT;
  return res;
}

typedef struct {
  XMLNode *node;
  int offsetX;
  int offsetY;
  int width;
  int height;
  GdkPixbuf *spriteset;
  GdkPixbuf *ground;
} ImagesetInfo;

static ImagesetInfo *imageset_info_new() {
  ImagesetInfo *res = g_new0(ImagesetInfo, 1);
  res->ground = gdk_pixbuf_new(GDK_COLORSPACE_RGB, TRUE, 8, GRID_SIZE * 3, GRID_SIZE * 3);
  res->width = SPRITE_WIDTH_DEFAULT;
  res->height = SPRITE_HEIGHT_DEFAULT;
  gdk_pixbuf_fill(res->ground, 0x00000000);
  return res;
}

typedef struct {
  GList *imagesets;
  GList *actions;
  GList *animations;
  ImagesetInfo *imageset;
  SpriteInfo *sprite;
  guint anim_tag;
  XMLNode *root;
  GtkWidget *imagesets_combo_box;
  GtkWidget *actions_combo_box;
  GtkWidget *animations_combo_box;
} SAEInfo;

static SAEInfo *sae_info_new() {
  return g_new0(SAEInfo, 1);
}

int spriteset_width, spriteset_height;
int offsetX = 0, offsetY = 0;

GtkWidget *win = NULL;
GtkWidget *darea = NULL;
GtkWidget *data_folder_chooser_button = NULL;
GtkWidget *xml_file_chooser_button = NULL;
GtkWidget *xml_file_open_button = NULL;
GtkWidget *xml_file_save_button = NULL;
GtkWidget *imageset_preview_menu_item = NULL;
GtkWidget *show_grid_menu_item = NULL;

GtkSourceBuffer *source_buffer = NULL;

//GList *imagesets = NULL;
//GList *actions = NULL;
//GList *animations = NULL;
SAEInfo *gen_sae_info;

GdkPixbuf *icon = NULL;

//XMLNode *root = NULL;
//ImagesetInfo *imageset = NULL;
//guint running_animation = 0;
Options *paths;
Keys *config;

static gboolean show_animation_by_info(AnimationInfo *anim_info);
static gchar *markup_bold(gchar *str);
static void format_src_string(gchar *src);
static void open_xml_file(GtkButton *button, gpointer buffer);
static void free_imagesets(SAEInfo *sae_info);
static void free_actions(SAEInfo *sae_info);
static void free_animations(SAEInfo *sae_info);
static void save_to_xml_file(GtkButton *button, gpointer buffer);
static void data_folder_set_handler(GtkFileChooserButton *widget, gpointer data);
static void show_wrong_source_buffer_dialog();
static gchar* xml_node_get_attr_value(const XMLNode *node, const gchar *attr_name);
static gint xml_node_compare_with_name(gconstpointer a, gconstpointer b);
static gint xml_node_compare_with_action_node_by_imageset_name_func(gconstpointer a, gconstpointer b);
static gint xml_node_compare_with_direction_attr(gconstpointer node, gconstpointer direction);
static gint xml_node_compare_with_name_attr(gconstpointer node, gconstpointer name);
static GdkPixbuf* get_sprite_by_index(size_t index);
static void set_sprite_by_index(size_t index);
static void set_up_actions_by_imageset_name(gchar *imageset_name, SAEInfo *sae_info);
static gboolean set_up_imagesets(SAEInfo *sae_info);
static gboolean sequence_source_func(SequenceInfo *seq);
static gboolean show_general_animation(SAEInfo *sae_info);
static gboolean set_up_action_by_name(const gchar *name, SAEInfo *sae_info);
static void actions_combo_box_changed_handler(GtkComboBox *widget, gpointer user_data);
static void animations_combo_box_changed_handler(GtkComboBox *widget, gpointer user_data);
static void set_up_imageset_by_node(XMLNode *node, SAEInfo *sae_info);
static void imagesets_combo_box_changed_handler(GtkComboBox *widget, gpointer user_data);
static void parse_xml_buffer(GtkWidget *button, GtkSourceBuffer *buffer);
static void set_up_interface();
static void show_about_dialog();
static void show_imageset_window();
static gboolean frame_image_button_press_event(GtkWidget *widget, GdkEventButton *button, int index);
static cairo_surface_t *get_grid_surface(int w, int h);
static gboolean darea_expose_event(GtkWidget *widget, GdkEventExpose *event, gpointer data);
static void load_config();
static void save_config_and_quit();
static void load_options();
static void free_imageset();
static void kill_timeout(int tag);
static void show_grid_menu_item_toggled(GtkCheckMenuItem *checkmenuitem, gpointer user_data);
static void open_menu_item_activate(GtkMenuItem *menuitem, GtkFileChooserDialog *fcdialog);