-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui.c
747 lines (625 loc) · 17.9 KB
/
gui.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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
#include "gui.h"
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#include <SDL2/SDL.h>
#include <SDL2/SDL_audio.h>
#include <math.h>
#include <time.h>
#include "kbd.h"
#define GUI_WIDTH 256
#define GUI_HEIGHT 240
#define GUI_W_SCALE 3
#define GUI_H_SCALE 3
#define AUDIO_SAMPLE_RATE 44100
#define AUDIO_VOLUME 64 /* 0 -> 127 */
static SDL_Window *gui_window = NULL;
static SDL_Renderer *gui_renderer = NULL;
static SDL_Texture *gui_texture = NULL;
static SDL_Joystick *gui_joystick = NULL;
static SDL_PixelFormat *gui_pixel_format = NULL;
static Uint32 *gui_pixels = NULL;
static int gui_pixel_pitch = 0;
static Uint32 gui_ticks = 0;
static uint8_t gui_controller_state = 0;
static bool gui_save_state_request = false;
static bool gui_load_state_request = false;
static bool gui_warp_mode = false;
static bool gui_basic_mode = false;
static const uint8_t gui_sys_palette[64][3] =
{
{0x52, 0x52, 0x52},
{0x01, 0x1a, 0x51},
{0x0f, 0x0f, 0x65},
{0x23, 0x06, 0x63},
{0x36, 0x03, 0x4b},
{0x40, 0x04, 0x26},
{0x3f, 0x09, 0x04},
{0x32, 0x13, 0x00},
{0x1f, 0x20, 0x00},
{0x0b, 0x2a, 0x00},
{0x00, 0x2f, 0x00},
{0x00, 0x2e, 0x0a},
{0x00, 0x26, 0x2d},
{0x00, 0x00, 0x00},
{0x00, 0x00, 0x00},
{0x00, 0x00, 0x00},
{0xa0, 0xa0, 0xa0},
{0x1e, 0x4a, 0x9d},
{0x38, 0x37, 0xbc},
{0x58, 0x28, 0xb8},
{0x75, 0x21, 0x94},
{0x84, 0x23, 0x5c},
{0x82, 0x2e, 0x24},
{0x6f, 0x3f, 0x00},
{0x51, 0x52, 0x00},
{0x31, 0x63, 0x00},
{0x1a, 0x6b, 0x05},
{0x0e, 0x69, 0x2e},
{0x10, 0x5c, 0x68},
{0x00, 0x00, 0x00},
{0x00, 0x00, 0x00},
{0x00, 0x00, 0x00},
{0xfe, 0xff, 0xff},
{0x69, 0x9e, 0xfc},
{0x89, 0x87, 0xff},
{0xae, 0x76, 0xff},
{0xce, 0x6d, 0xf1},
{0xe0, 0x70, 0xb2},
{0xde, 0x7c, 0x70},
{0xc8, 0x91, 0x3e},
{0xa6, 0xa7, 0x25},
{0x81, 0xba, 0x28},
{0x63, 0xc4, 0x46},
{0x54, 0xc1, 0x7d},
{0x56, 0xb3, 0xc0},
{0x3c, 0x3c, 0x3c},
{0x00, 0x00, 0x00},
{0x00, 0x00, 0x00},
{0xfe, 0xff, 0xff},
{0xbe, 0xd6, 0xfd},
{0xcc, 0xcc, 0xff},
{0xdd, 0xc4, 0xff},
{0xea, 0xc0, 0xf9},
{0xf2, 0xc1, 0xdf},
{0xf1, 0xc7, 0xc2},
{0xe8, 0xd0, 0xaa},
{0xd9, 0xda, 0x9d},
{0xc9, 0xe2, 0x9e},
{0xbc, 0xe6, 0xae},
{0xb4, 0xe5, 0xc7},
{0xb5, 0xdf, 0xe4},
{0xa9, 0xa9, 0xa9},
{0x00, 0x00, 0x00},
{0x00, 0x00, 0x00},
};
static uint16_t audio_square_freq[2];
static uint8_t audio_square_volume[2];
static uint16_t audio_triangle_freq;
static uint16_t audio_noise_freq;
static uint8_t audio_noise_volume;
static inline double normalize(double phase)
{
double cycles;
cycles = phase / (2.0 * M_PI);
phase -= trunc(cycles) * 2.0 * M_PI;
if (phase < 0) {
phase += 2.0 * M_PI;
}
return phase;
}
static inline double square(double phase)
{
if (normalize(phase) < M_PI) {
return 1.0;
} else {
return -1.0;
}
}
static inline double triangle(double phase)
{
phase = normalize(phase);
if (phase >= M_PI) {
phase = (2.0 * M_PI) - phase;
}
return -1.0 + ((2.0 * phase) / M_PI);
}
static inline double noise(double phase)
{
(void)phase;
return -1.0 + ((rand() % 1024) / 512.0);
}
static void audio_callback(void *userdata, Uint8 *stream, int len)
{
static uint32_t sample_no = 0;
int i;
double sample;
double time;
(void)userdata;
#ifdef F32_AUDIO
float *fstream = (float *)stream;
for (i = 0; i < len / 4; i++) {
#else
for (i = 0; i < len; i++) {
#endif /* F32_AUDIO */
time = sample_no / (double)AUDIO_SAMPLE_RATE;
sample = 0;
if (audio_square_freq[0] > 0) {
sample += (square(2.0 * M_PI * audio_square_freq[0] * time) / 256) *
audio_square_volume[0];
}
if (audio_square_freq[1] > 0) {
sample += (square(2.0 * M_PI * audio_square_freq[1] * time) / 256) *
audio_square_volume[1];
}
if (audio_triangle_freq > 0) {
sample += triangle(2.0 * M_PI * audio_triangle_freq * time);
}
if (audio_noise_freq > 0) {
sample += (noise(2.0 * M_PI * audio_noise_freq * time) / 256) *
audio_noise_volume;
}
sample /= 4;
#ifdef F32_AUDIO
fstream[i] = (float)sample * (AUDIO_VOLUME / 128.0);
#else
stream[i] = (Uint8)(127 + (sample * AUDIO_VOLUME));
#endif /* F32_AUDIO */
sample_no++;
}
}
static int gui_audio_init(void)
{
SDL_AudioSpec desired, obtained;
audio_square_freq[0] = 0;
audio_square_freq[1] = 0;
audio_square_volume[0] = 0;
audio_square_volume[1] = 0;
audio_triangle_freq = 0;
audio_noise_freq = 0;
audio_noise_volume = 0;
desired.freq = AUDIO_SAMPLE_RATE;
#ifdef F32_AUDIO
desired.format = AUDIO_F32LSB;
#else
desired.format = AUDIO_U8;
#endif /* F32_AUDIO */
desired.channels = 1;
desired.samples = 2048; /* Buffer size */
desired.userdata = 0;
desired.callback = audio_callback;
srand(time(NULL));
if (SDL_OpenAudio(&desired, &obtained) != 0) {
fprintf(stderr, "SDL_OpenAudio() failed: %s\n", SDL_GetError());
return -1;
}
#ifdef F32_AUDIO
if (obtained.format != AUDIO_F32LSB) {
fprintf(stderr, "Did not get float 32-bit audio format!\n");
#else
if (obtained.format != AUDIO_U8) {
fprintf(stderr, "Did not get unsigned 8-bit audio format!\n");
#endif /* F32_AUDIO */
SDL_CloseAudio();
return -1;
}
SDL_PauseAudio(0);
return 0;
}
void gui_audio_square_update(int channel, uint16_t freq, uint8_t volume)
{
audio_square_freq[channel] = freq;
audio_square_volume[channel] = volume;
}
void gui_audio_triangle_update(uint16_t freq)
{
audio_triangle_freq = freq;
}
void gui_audio_noise_update(uint16_t freq, uint8_t volume)
{
audio_noise_freq = freq;
audio_noise_volume = volume;
}
static void gui_exit_handler(void)
{
SDL_PauseAudio(1);
SDL_CloseAudio();
if (SDL_JoystickGetAttached(gui_joystick)) {
SDL_JoystickClose(gui_joystick);
}
if (gui_pixel_format != NULL) {
SDL_FreeFormat(gui_pixel_format);
}
if (gui_texture != NULL) {
SDL_UnlockTexture(gui_texture);
SDL_DestroyTexture(gui_texture);
}
if (gui_renderer != NULL) {
SDL_DestroyRenderer(gui_renderer);
}
if (gui_window != NULL) {
SDL_DestroyWindow(gui_window);
}
SDL_Quit();
}
int gui_init(int joystick_no, bool disable_video, bool disable_audio,
bool basic_mode)
{
Uint32 flags;
gui_basic_mode = basic_mode;
flags = SDL_INIT_JOYSTICK;
if (! disable_video) {
flags |= SDL_INIT_VIDEO;
}
if (! disable_audio) {
flags |= SDL_INIT_AUDIO;
}
if (SDL_Init(flags) != 0) {
fprintf(stderr, "Unable to initalize SDL: %s\n", SDL_GetError());
return -1;
}
atexit(gui_exit_handler);
if (! disable_video) {
if ((gui_window = SDL_CreateWindow("lazyboNES",
SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
GUI_WIDTH * GUI_W_SCALE, GUI_HEIGHT * GUI_H_SCALE, 0)) == NULL) {
fprintf(stderr, "Unable to set video mode: %s\n", SDL_GetError());
return -1;
}
if ((gui_renderer = SDL_CreateRenderer(gui_window, -1, 0)) == NULL) {
fprintf(stderr, "Unable to create renderer: %s\n", SDL_GetError());
return -1;
}
if ((gui_texture = SDL_CreateTexture(gui_renderer,
SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STREAMING,
GUI_WIDTH * GUI_W_SCALE, GUI_HEIGHT * GUI_H_SCALE)) == NULL) {
fprintf(stderr, "Unable to create texture: %s\n", SDL_GetError());
return -1;
}
if (SDL_LockTexture(gui_texture, NULL,
(void **)&gui_pixels, &gui_pixel_pitch) != 0) {
fprintf(stderr, "Unable to lock texture: %s\n", SDL_GetError());
return -1;
}
if ((gui_pixel_format = SDL_AllocFormat(
SDL_PIXELFORMAT_ARGB8888)) == NULL) {
fprintf(stderr, "Unable to create pixel format: %s\n", SDL_GetError());
return -1;
}
}
if (SDL_NumJoysticks() > joystick_no) {
gui_joystick = SDL_JoystickOpen(joystick_no);
fprintf(stderr, "Found Joystick: %s\n", SDL_JoystickName(gui_joystick));
}
if (disable_audio) {
return 0;
} else {
return gui_audio_init();
}
}
static kbd_key_t gui_key_map(SDL_Scancode key)
{
switch (key) {
case SDL_SCANCODE_1: return KBD_KEY_1;
case SDL_SCANCODE_2: return KBD_KEY_2;
case SDL_SCANCODE_3: return KBD_KEY_3;
case SDL_SCANCODE_4: return KBD_KEY_4;
case SDL_SCANCODE_5: return KBD_KEY_5;
case SDL_SCANCODE_6: return KBD_KEY_6;
case SDL_SCANCODE_7: return KBD_KEY_7;
case SDL_SCANCODE_8: return KBD_KEY_8;
case SDL_SCANCODE_9: return KBD_KEY_9;
case SDL_SCANCODE_0: return KBD_KEY_0;
case SDL_SCANCODE_A: return KBD_KEY_A;
case SDL_SCANCODE_B: return KBD_KEY_B;
case SDL_SCANCODE_C: return KBD_KEY_C;
case SDL_SCANCODE_D: return KBD_KEY_D;
case SDL_SCANCODE_E: return KBD_KEY_E;
case SDL_SCANCODE_F: return KBD_KEY_F;
case SDL_SCANCODE_G: return KBD_KEY_G;
case SDL_SCANCODE_H: return KBD_KEY_H;
case SDL_SCANCODE_I: return KBD_KEY_I;
case SDL_SCANCODE_J: return KBD_KEY_J;
case SDL_SCANCODE_K: return KBD_KEY_K;
case SDL_SCANCODE_L: return KBD_KEY_L;
case SDL_SCANCODE_M: return KBD_KEY_M;
case SDL_SCANCODE_N: return KBD_KEY_N;
case SDL_SCANCODE_O: return KBD_KEY_O;
case SDL_SCANCODE_P: return KBD_KEY_P;
case SDL_SCANCODE_Q: return KBD_KEY_Q;
case SDL_SCANCODE_R: return KBD_KEY_R;
case SDL_SCANCODE_S: return KBD_KEY_S;
case SDL_SCANCODE_T: return KBD_KEY_T;
case SDL_SCANCODE_U: return KBD_KEY_U;
case SDL_SCANCODE_V: return KBD_KEY_V;
case SDL_SCANCODE_W: return KBD_KEY_W;
case SDL_SCANCODE_X: return KBD_KEY_X;
case SDL_SCANCODE_Y: return KBD_KEY_Y;
case SDL_SCANCODE_Z: return KBD_KEY_Z;
case SDL_SCANCODE_F1: return KBD_KEY_F1;
case SDL_SCANCODE_F2: return KBD_KEY_F2;
case SDL_SCANCODE_F3: return KBD_KEY_F3;
case SDL_SCANCODE_F4: return KBD_KEY_F4;
case SDL_SCANCODE_F5: return KBD_KEY_F5;
case SDL_SCANCODE_F6: return KBD_KEY_F6;
case SDL_SCANCODE_F7: return KBD_KEY_F7;
case SDL_SCANCODE_F8: return KBD_KEY_F8;
case SDL_SCANCODE_F9: return KBD_KEY_STOP;
case SDL_SCANCODE_F10: return KBD_KEY_KANA;
case SDL_SCANCODE_F11: return KBD_KEY_GRPH;
case SDL_SCANCODE_MINUS: return KBD_KEY_MINUS;
case SDL_SCANCODE_EQUALS: return KBD_KEY_CARET;
case SDL_SCANCODE_BACKSLASH: return KBD_KEY_YEN;
case SDL_SCANCODE_ESCAPE: return KBD_KEY_ESC;
case SDL_SCANCODE_GRAVE: return KBD_KEY_AT;
case SDL_SCANCODE_LEFTBRACKET: return KBD_KEY_LEFT_BRACKET;
case SDL_SCANCODE_RIGHTBRACKET: return KBD_KEY_RIGHT_BRACKET;
case SDL_SCANCODE_SEMICOLON: return KBD_KEY_SEMICOLON;
case SDL_SCANCODE_APOSTROPHE: return KBD_KEY_COLON;
case SDL_SCANCODE_COMMA: return KBD_KEY_COMMA;
case SDL_SCANCODE_PERIOD: return KBD_KEY_PERIOD;
case SDL_SCANCODE_SLASH: return KBD_KEY_SLASH;
case SDL_SCANCODE_TAB: return KBD_KEY_UNDERSCORE;
case SDL_SCANCODE_SPACE: return KBD_KEY_SPACE;
case SDL_SCANCODE_RETURN: return KBD_KEY_RETURN;
case SDL_SCANCODE_BACKSPACE: return KBD_KEY_DEL;
case SDL_SCANCODE_HOME: return KBD_KEY_CLR_HOME;
case SDL_SCANCODE_INSERT: return KBD_KEY_INS;
case SDL_SCANCODE_UP: return KBD_KEY_UP;
case SDL_SCANCODE_DOWN: return KBD_KEY_DOWN;
case SDL_SCANCODE_LEFT: return KBD_KEY_LEFT;
case SDL_SCANCODE_RIGHT: return KBD_KEY_RIGHT;
default:
return KBD_KEY_NONE;
}
}
void gui_draw_scanline(uint16_t y, uint8_t colors[])
{
int x;
int scale_x, scale_y;
int out_x, out_y;
if (gui_renderer == NULL) {
return;
}
for (x = 0; x < GUI_WIDTH; x++) {
for (scale_y = 0; scale_y < GUI_H_SCALE; scale_y++) {
for (scale_x = 0; scale_x < GUI_W_SCALE; scale_x++) {
out_y = (y * GUI_H_SCALE) + scale_y;
out_x = (x * GUI_W_SCALE) + scale_x;
gui_pixels[(out_y * GUI_WIDTH * GUI_W_SCALE) + out_x] =
SDL_MapRGB(gui_pixel_format,
gui_sys_palette[colors[x] % 64][0],
gui_sys_palette[colors[x] % 64][1],
gui_sys_palette[colors[x] % 64][2]);
}
}
}
}
uint8_t gui_get_controller_state(void)
{
return gui_controller_state;
}
bool gui_save_state_requested(void)
{
if (gui_save_state_request) {
gui_save_state_request = false;
return true;
} else {
return false;
}
}
void gui_warp_mode_set(bool value)
{
gui_warp_mode = value;
}
bool gui_warp_mode_get(void)
{
return gui_warp_mode;
}
bool gui_load_state_requested(void)
{
if (gui_load_state_request) {
gui_load_state_request = false;
return true;
} else {
return false;
}
}
void gui_update(void)
{
SDL_Event event;
SDL_Keymod keymod;
if (gui_basic_mode) {
while (SDL_PollEvent(&event) == 1) {
switch (event.type) {
case SDL_QUIT:
exit(EXIT_SUCCESS);
break;
case SDL_KEYDOWN:
keymod = SDL_GetModState();
kbd_key_set(gui_key_map(event.key.keysym.scancode),
(keymod & KMOD_LSHIFT) || (keymod & KMOD_RSHIFT),
(keymod & KMOD_LCTRL) || (keymod & KMOD_RCTRL));
break;
default:
break;
}
}
} else {
while (SDL_PollEvent(&event) == 1) {
switch (event.type) {
case SDL_QUIT:
exit(EXIT_SUCCESS);
break;
/* Keyboard-based Controller */
case SDL_KEYDOWN:
case SDL_KEYUP:
switch (event.key.keysym.sym) {
case SDLK_SPACE:
case SDLK_z: /* A */
if (event.type == SDL_KEYDOWN) {
gui_controller_state |= 0x1;
} else {
gui_controller_state &= ~0x1;
}
break;
case SDLK_x: /* B */
if (event.type == SDL_KEYDOWN) {
gui_controller_state |= 0x2;
} else {
gui_controller_state &= ~0x2;
}
break;
case SDLK_c: /* Select */
if (event.type == SDL_KEYDOWN) {
gui_controller_state |= 0x4;
} else {
gui_controller_state &= ~0x4;
}
break;
case SDLK_RETURN:
case SDLK_v: /* Start */
if (event.type == SDL_KEYDOWN) {
gui_controller_state |= 0x8;
} else {
gui_controller_state &= ~0x8;
}
break;
case SDLK_UP:
if (event.type == SDL_KEYDOWN) {
gui_controller_state |= 0x10;
} else {
gui_controller_state &= ~0x10;
}
break;
case SDLK_DOWN:
if (event.type == SDL_KEYDOWN) {
gui_controller_state |= 0x20;
} else {
gui_controller_state &= ~0x20;
}
break;
case SDLK_LEFT:
if (event.type == SDL_KEYDOWN) {
gui_controller_state |= 0x40;
} else {
gui_controller_state &= ~0x40;
}
break;
case SDLK_RIGHT:
if (event.type == SDL_KEYDOWN) {
gui_controller_state |= 0x80;
} else {
gui_controller_state &= ~0x80;
}
break;
case SDLK_F5: /* Save State */
if (event.type == SDL_KEYDOWN) {
gui_save_state_request = true;
}
break;
case SDLK_F8: /* Load State */
if (event.type == SDL_KEYDOWN) {
gui_load_state_request = true;
}
break;
case SDLK_q: /* Quit */
if (event.type == SDL_KEYDOWN) {
exit(EXIT_SUCCESS);
}
break;
}
break;
/* Joystick-based Controller */
case SDL_JOYAXISMOTION:
if (event.jaxis.axis == 0) {
if (event.jaxis.value > 16384) { /* Right Pressed */
gui_controller_state |= 0x80;
gui_controller_state &= ~0x40;
} else if (event.jaxis.value < -16384) { /* Left Pressed */
gui_controller_state &= ~0x80;
gui_controller_state |= 0x40;
} else {
gui_controller_state &= ~0xC0; /* Right/Left Released */
}
} else if (event.jaxis.axis == 1) {
if (event.jaxis.value > 16384) { /* Down Pressed */
gui_controller_state |= 0x20;
gui_controller_state &= ~0x10;
} else if (event.jaxis.value < -16384) { /* Up Pressed */
gui_controller_state &= ~0x20;
gui_controller_state |= 0x10;
} else {
gui_controller_state &= ~0x30; /* Down/Up Released */
}
}
break;
case SDL_JOYBUTTONDOWN:
case SDL_JOYBUTTONUP:
switch (event.jbutton.button) {
case 1: /* A */
if (event.jbutton.state == 1) {
gui_controller_state |= 0x1;
} else {
gui_controller_state &= ~0x1;
}
break;
case 0: /* B */
case 2:
case 3:
if (event.jbutton.state == 1) {
gui_controller_state |= 0x2;
} else {
gui_controller_state &= ~0x2;
}
break;
case 4: /* Save State */
if (event.jbutton.state == 1) {
gui_save_state_request = true;
}
break;
case 5: /* Load State */
if (event.jbutton.state == 1) {
gui_load_state_request = true;
}
break;
case 6: /* Select */
if (event.jbutton.state == 1) {
gui_controller_state |= 0x4;
} else {
gui_controller_state &= ~0x4;
}
break;
case 7: /* Start */
if (event.jbutton.state == 1) {
gui_controller_state |= 0x8;
} else {
gui_controller_state &= ~0x8;
}
break;
}
break;
}
}
}
if (gui_renderer != NULL) {
SDL_UnlockTexture(gui_texture);
SDL_RenderCopy(gui_renderer, gui_texture, NULL, NULL);
if (SDL_LockTexture(gui_texture, NULL,
(void **)&gui_pixels, &gui_pixel_pitch) != 0) {
fprintf(stderr, "Unable to lock texture: %s\n", SDL_GetError());
exit(EXIT_FAILURE);
}
}
if (! gui_warp_mode) {
/* Force 60 Hz (NTSC) */
while ((SDL_GetTicks() - gui_ticks) < 16) {
SDL_Delay(1);
}
}
if (gui_renderer != NULL) {
SDL_RenderPresent(gui_renderer);
}
gui_ticks = SDL_GetTicks();
}