-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcallbacks.c
493 lines (384 loc) · 12 KB
/
callbacks.c
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <gtk/gtk.h>
#include "callbacks.h"
#include "interface.h"
#include "support.h"
#include "gtk_main.h"
#include "pce.h"
#include "iniconfig.h"
static char tmp_buf[100];
void
on_open1_activate (GtkMenuItem *menuitem,
gpointer user_data)
{
get_directory_from_filename(initial_path);
gtk_file_selection_set_filename((GtkFileSelection*)fileselector_window, initial_path);
gtk_widget_show(fileselector_window);
}
void
on_save1_activate (GtkMenuItem *menuitem,
gpointer user_data)
{
savegame();
}
void
on_load1_activate (GtkMenuItem *menuitem,
gpointer user_data)
{
loadgame();
}
void
on_input_setting_1_activate (GtkMenuItem *menuitem,
gpointer user_data)
{
gtk_widget_show(input_settings_window);
}
void
on_hugo_manual1_activate (GtkMenuItem *menuitem,
gpointer user_data)
{
gtk_widget_show(manual_window);
}
void
on_about_1_activate (GtkMenuItem *menuitem,
gpointer user_data)
{
gtk_widget_show(about_window);
}
void
on_mainWindow_destroy (GtkObject *object,
gpointer user_data)
{
gtk_main_quit();
}
void
on_ok_button1_clicked (GtkButton *button,
gpointer user_data)
{
gtk_widget_hide(fileselector_window);
CD_emulation = 0;
strcpy( cart_name, gtk_file_selection_get_filename((GtkFileSelection*)fileselector_window));
/*
* We need to flush any gtk events waiting to happen (like the widget hide
* from above) to avoid a deadlock when starting a game fullscreen (at least
* in linux).
*/
while (gtk_events_pending())
gtk_main_iteration();
play_game();
}
void
on_button1_clicked (GtkButton *button,
gpointer user_data)
{
on_open1_activate(NULL, NULL);
}
void
on_cancel_button1_clicked (GtkButton *button,
gpointer user_data)
{
gtk_widget_hide(fileselector_window);
}
void
on_button_close_input_settings_window_clicked
(GtkButton *button,
gpointer user_data)
{
gtk_widget_hide(input_settings_window);
}
void
on_button2_clicked (GtkButton *button,
gpointer user_data)
{
if (NULL == search_possible_syscard())
{
GtkWidget* dialog;
dialog = gtk_message_dialog_new (GTK_WINDOW (main_window),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"CD system card not found !\nDid you set \"CD system filename\" ?");
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
}
else
{
CD_emulation = 1;
play_game();
}
}
void
on_general_settings_1_activate (GtkMenuItem *menuitem,
gpointer user_data)
{
gtk_widget_show(general_settings_window);
}
void
on_button_close_about_clicked (GtkButton *button,
gpointer user_data)
{
gtk_widget_hide(about_window);
}
void
on_button_browse_cd_system_clicked (GtkButton *button,
gpointer user_data)
{
gtk_widget_show(fileselector_cd_system);
}
void
on_buttongeneral_config_close_clicked (GtkButton *button,
gpointer user_data)
{
gtk_widget_hide(general_settings_window);
gtk_general_settings_grab();
}
void
on_button_general_config_save_clicked (GtkButton *button,
gpointer user_data)
{
gtk_general_settings_grab();
save_config();
}
void
on_button_general_config_cancel_clicked
(GtkButton *button,
gpointer user_data)
{
gtk_widget_hide(general_settings_window);
}
void
on_general_settings_window_show (GtkWidget *widget,
gpointer user_data)
{
gtk_general_settings_set();
}
void
on_ok_button_cd_system_clicked (GtkButton *button,
gpointer user_data)
{
GtkEntry* temp_entry;
gtk_widget_hide(fileselector_cd_system);
strncpy (cdsystem_path, gtk_file_selection_get_filename((GtkFileSelection*)fileselector_cd_system), PATH_MAX);
temp_entry = (GtkEntry*)lookup_widget(general_settings_window, "entry_cd_system_filename");
gtk_entry_set_text(temp_entry, cdsystem_path);
}
void
on_cancel_button_cd_system_clicked (GtkButton *button,
gpointer user_data)
{
gtk_widget_hide(fileselector_cd_system);
}
void
on_ok_button_cd_path_clicked (GtkButton *button,
gpointer user_data)
{
GtkEntry* temp_entry;
gtk_widget_hide(fileselector_cd_path);
strcpy (ISO_filename, gtk_file_selection_get_filename((GtkFileSelection*)fileselector_cd_path));
temp_entry = (GtkEntry*)lookup_widget(general_settings_window, "entry_cd_path");
gtk_entry_set_text(temp_entry, ISO_filename);
}
void
on_cancel_button_cd_path_clicked (GtkButton *button,
gpointer user_data)
{
gtk_widget_hide(fileselector_cd_path);
}
void
on_button_browse_rom_dirname_clicked (GtkButton *button,
gpointer user_data)
{
gtk_widget_show(fileselector_rom_path);
}
void
on_button_browse_cd_path_clicked (GtkButton *button,
gpointer user_data)
{
gtk_widget_show(fileselector_cd_path);
}
void
on_ok_button_rom_path_clicked (GtkButton *button,
gpointer user_data)
{
GtkEntry* temp_entry;
gtk_widget_hide(fileselector_rom_path);
strcpy (initial_path, gtk_file_selection_get_filename((GtkFileSelection*)fileselector_rom_path));
get_directory_from_filename(initial_path);
// if (strrchr(initial_path, '/') != NULL)
// *strrchr(initial_path, '/') = 0;
temp_entry = (GtkEntry*)lookup_widget(general_settings_window, "entry_rom_basedir");
gtk_entry_set_text(temp_entry, initial_path);
}
void
on_cancel_button_rom_path_clicked (GtkButton *button,
gpointer user_data)
{
gtk_widget_hide(fileselector_rom_path);
}
void
on_button_manual_close_clicked (GtkButton *button,
gpointer user_data)
{
gtk_widget_hide(manual_window);
}
//void
//on_input_settings_window_show (GtkWidget *widget,
// gpointer user_data)
//{
// gtk_show_config(0);
//}
void
on_open_cd1_activate (GtkMenuItem *menuitem,
gpointer user_data)
{
}
void
on_save_settings1_activate (GtkMenuItem *menuitem,
gpointer user_data)
{
save_config();
}
void
on_option_config_number_changed (GtkOptionMenu *optionmenu,
gpointer user_data)
{
}
void
on_button_input_configuration_clicked (GtkButton *button,
gpointer user_data)
{
char* button_name = (char*) user_data;
int player_number = button_name[strlen(button_name) - 1] - '0';
int direction_index = 0;
if ((player_number < 0) || (player_number > 4))
{
Log("Abnormal player_number in %s at %s:%s\nAborting\n",
__FUNCTION__,
__FILE__,
__LINE__);
return;
}
for (; direction_index < J_MAX; direction_index ++)
{
if (!strncmp(joymap_reverse[direction_index],
button_name,
strlen(button_name) - 1))
{
break;
}
}
gtk_grab_control(direction_index, player_number);
}
void
on_spinbutton_configuration_value_changed
(GtkSpinButton *spinbutton,
gpointer user_data)
{
int index = gtk_spin_button_get_value_as_int((GtkSpinButton*) spinbutton);
set_gui_configuration_index(index);
}
void
on_window_input_settings_show (GtkWidget *widget,
gpointer user_data)
{
GtkSpinButton * spinbutton = (GtkSpinButton*)lookup_widget(widget, "spinbutton_configuration");
on_spinbutton_configuration_value_changed(spinbutton, (gpointer)NULL);
gtk_copy_current_configuration();
}
gboolean
on_window_input_settings_delete_event (GtkWidget *widget,
GdkEvent *event,
gpointer user_data)
{
gtk_widget_hide(input_settings_window);
return TRUE;
}
void
on_button_input_ok_activate (GtkButton *button,
gpointer user_data)
{
gtk_confirm_configuration();
gtk_widget_hide(input_settings_window);
}
void
on_button_input_cancel_activate (GtkButton *button,
gpointer user_data)
{
gtk_widget_hide(input_settings_window);
}
void
on_spinbutton_joydev_value_changed (GtkSpinButton *spinbutton,
gpointer user_data)
{
GtkSpinButton* temp_spin_button = NULL;
int i = 0;
int player_number = -1;
for (i = 0; i < 5; i++)
{
sprintf(tmp_buf, "spinbutton_joydev%d", i);
if (spinbutton == (GtkSpinButton*)lookup_widget(input_settings_window, tmp_buf))
{
player_number = i;
break;
}
}
printf("Checked that joydev %d changed\n", player_number);
if (player_number != -1)
{
printf("Read value %d\n", gtk_spin_button_get_value_as_int(spinbutton));
set_gui_joydev(player_number, gtk_spin_button_get_value_as_int(spinbutton));
}
gtk_update_configuration(FALSE);
}
gboolean
on_general_settings_window_delete_event
(GtkWidget *widget,
GdkEvent *event,
gpointer user_data)
{
gtk_widget_hide(general_settings_window);
return TRUE;
}
gboolean
on_fileselection_cd_system_delete_event
(GtkWidget *widget,
GdkEvent *event,
gpointer user_data)
{
gtk_widget_hide(fileselector_cd_system);
return TRUE;
}
gboolean
on_fileselection_cd_path_delete_event (GtkWidget *widget,
GdkEvent *event,
gpointer user_data)
{
gtk_widget_hide(fileselector_cd_path);
return TRUE;
}
gboolean
on_fileselection_rom_path_delete_event (GtkWidget *widget,
GdkEvent *event,
gpointer user_data)
{
gtk_widget_hide(fileselector_rom_path);
return TRUE;
}
gboolean
on_fileselection1_delete_event (GtkWidget *widget,
GdkEvent *event,
gpointer user_data)
{
gtk_widget_hide(fileselector_window);
return TRUE;
}
gboolean
on_window_about_delete_event (GtkWidget *widget,
GdkEvent *event,
gpointer user_data)
{
gtk_widget_hide(about_window);
return TRUE;
}