forked from FunKey-Project/gpsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.c
1199 lines (1037 loc) · 49.1 KB
/
menu.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
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <dlfcn.h>
#include <zlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <dirent.h>
#include <SDL/SDL.h>
#include <SDL/SDL_ttf.h>
#include <SDL/SDL_image.h>
#include <ini.h>
#include "common.h"
#include "main.h"
#include "menu.h"
#include "gui.h"
#include "video.h"
#include "configfile.h"
/// -------------- DEFINES --------------
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))
#define ABS(x) (((x) < 0) ? (-x) : (x))
//#define MENU_DEBUG
#define MENU_ERROR
#ifdef MENU_DEBUG
#define MENU_DEBUG_PRINTF(...) printf(__VA_ARGS__);
#else
#define MENU_DEBUG_PRINTF(...)
#endif //MENU_DEBUG
#ifdef MENU_ERROR
#define MENU_ERROR_PRINTF(...) printf(__VA_ARGS__);
#else
#define MENU_ERROR_PRINTF(...)
#endif //MENU_ERROR
#define SCREEN_HORIZONTAL_SIZE 240
#define SCREEN_VERTICAL_SIZE 240
#define SCROLL_SPEED_PX 30
#define FPS_MENU 50
#define ARROWS_PADDING 8
#define MENU_ZONE_WIDTH SCREEN_HORIZONTAL_SIZE
#define MENU_ZONE_HEIGHT SCREEN_VERTICAL_SIZE
#define MENU_BG_SQUARE_WIDTH 180
#define MENU_BG_SQUARE_HEIGHT 140
#define MENU_FONT_NAME_TITLE "/usr/games/menu_resources/OpenSans-Bold.ttf"
#define MENU_FONT_SIZE_TITLE 22
#define MENU_FONT_NAME_INFO "/usr/games/menu_resources/OpenSans-Bold.ttf"
#define MENU_FONT_SIZE_INFO 16
#define MENU_FONT_NAME_SMALL_INFO "/usr/games/menu_resources/OpenSans-Regular.ttf"
#define MENU_FONT_SIZE_SMALL_INFO 13
#define MENU_PNG_BG_PATH "/usr/games/menu_resources/zone_bg.png"
#define MENU_PNG_ARROW_TOP_PATH "/usr/games/menu_resources/arrow_top.png"
#define MENU_PNG_ARROW_BOTTOM_PATH "/usr/games/menu_resources/arrow_bottom.png"
#define GRAY_MAIN_R 85
#define GRAY_MAIN_G 85
#define GRAY_MAIN_B 85
#define WHITE_MAIN_R 236
#define WHITE_MAIN_G 236
#define WHITE_MAIN_B 236
#define MAX_SAVE_SLOTS 9
#define MAXPATHLEN 512
/// -------------- STATIC VARIABLES --------------
extern SDL_Surface * hw_screen;
extern SDL_Surface * virtual_hw_screen; // this one is not rotated
static SDL_Surface * backup_hw_screen = NULL;
static SDL_Surface * draw_screen = NULL;
static int backup_key_repeat_delay, backup_key_repeat_interval;
static TTF_Font *menu_title_font = NULL;
static TTF_Font *menu_info_font = NULL;
static TTF_Font *menu_small_info_font = NULL;
static SDL_Surface *img_arrow_top = NULL;
static SDL_Surface *img_arrow_bottom = NULL;
static SDL_Surface ** menu_zone_surfaces = NULL;
static int * idx_menus = NULL;
static int nb_menu_zones = 0;
static int menuItem = 0;
int stop_menu_loop = 0;
static SDL_Color text_color = {GRAY_MAIN_R, GRAY_MAIN_G, GRAY_MAIN_B};
static int padding_y_from_center_menu_zone = 18;
static uint16_t width_progress_bar = 100;
static uint16_t height_progress_bar = 20;
static uint16_t x_volume_bar = 0;
static uint16_t y_volume_bar = 0;
static uint16_t x_brightness_bar = 0;
static uint16_t y_brightness_bar = 0;
int volume_percentage = 0;
int brightness_percentage = 0;
static int quick_load_slot_chosen = 0;
#undef X
#define X(a, b) b,
const char *resume_options_str[] = {RESUME_OPTIONS};
/// -------------- STATIC FUNCTIONS DECLARATION --------------
/// -------------- FUNCTIONS IMPLEMENTATION --------------
void init_menu_SDL(){
MENU_DEBUG_PRINTF("Init Menu\n");
/// ----- Loading the fonts -----
menu_title_font = TTF_OpenFont(MENU_FONT_NAME_TITLE, MENU_FONT_SIZE_TITLE);
if(!menu_title_font){
MENU_ERROR_PRINTF("ERROR in init_menu_SDL: Could not open menu font %s, %s\n", MENU_FONT_NAME_TITLE, SDL_GetError());
}
menu_info_font = TTF_OpenFont(MENU_FONT_NAME_INFO, MENU_FONT_SIZE_INFO);
if(!menu_info_font){
MENU_ERROR_PRINTF("ERROR in init_menu_SDL: Could not open menu font %s, %s\n", MENU_FONT_NAME_INFO, SDL_GetError());
}
menu_small_info_font = TTF_OpenFont(MENU_FONT_NAME_SMALL_INFO, MENU_FONT_SIZE_SMALL_INFO);
if(!menu_small_info_font){
MENU_ERROR_PRINTF("ERROR in init_menu_SDL: Could not open menu font %s, %s\n", MENU_FONT_NAME_SMALL_INFO, SDL_GetError());
}
/// ----- Copy hw_screen at init ------
backup_hw_screen = SDL_CreateRGBSurface(SDL_SWSURFACE,
virtual_hw_screen->w, virtual_hw_screen->h, 16, 0, 0, 0, 0);
draw_screen = SDL_CreateRGBSurface(SDL_SWSURFACE,
virtual_hw_screen->w, virtual_hw_screen->h, 16, 0, 0, 0, 0);
if(draw_screen == NULL){
MENU_ERROR_PRINTF("ERROR Could not create draw_screen: %s\n", SDL_GetError());
}
/// ------ Load arrows imgs -------
img_arrow_top = IMG_Load(MENU_PNG_ARROW_TOP_PATH);
if(!img_arrow_top) {
MENU_ERROR_PRINTF("ERROR IMG_Load: %s\n", IMG_GetError());
}
img_arrow_bottom = IMG_Load(MENU_PNG_ARROW_BOTTOM_PATH);
if(!img_arrow_bottom) {
MENU_ERROR_PRINTF("ERROR IMG_Load: %s\n", IMG_GetError());
}
/// ------ Init menu zones ------
init_menu_zones();
}
void deinit_menu_SDL(){
MENU_DEBUG_PRINTF("End Menu \n");
/// ------ Close font -------
TTF_CloseFont(menu_title_font);
TTF_CloseFont(menu_info_font);
TTF_CloseFont(menu_small_info_font);
/// ------ Free Surfaces -------
for(int i=0; i < nb_menu_zones; i++){
SDL_FreeSurface(menu_zone_surfaces[i]);
}
if(backup_hw_screen != NULL){
SDL_FreeSurface(backup_hw_screen);
}
if(draw_screen != NULL){
SDL_FreeSurface(draw_screen);
}
SDL_FreeSurface(img_arrow_top);
SDL_FreeSurface(img_arrow_bottom);
/// ------ Free Menu memory and reset vars -----
if(idx_menus){
free(idx_menus);
}
idx_menus=NULL;
nb_menu_zones = 0;
}
void draw_progress_bar(SDL_Surface * surface, uint16_t x, uint16_t y, uint16_t width,
uint16_t height, uint8_t percentage, uint16_t nb_bars){
/// ------ Init Variables ------
uint16_t line_width = 1; //px
uint16_t padding_bars_ratio = 3;
uint16_t nb_full_bars = 0;
/// ------ Check values ------
percentage = (percentage > 100)?100:percentage;
x = (x > (surface->w-1))?(surface->w-1):x;
y = (y > surface->h-1)?(surface->h-1):y;
width = (width < line_width*2+1)?(line_width*2+1):width;
width = (width > surface->w-x-1)?(surface->w-x-1):width;
height = (height < line_width*2+1)?(line_width*2+1):height;
height = (height > surface->h-y-1)?(surface->h-y-1):height;
uint16_t nb_bars_max = ( width * padding_bars_ratio / (line_width*2+1) + 1 ) / (padding_bars_ratio+1);
nb_bars = (nb_bars > nb_bars_max)?nb_bars_max:nb_bars;
uint16_t bar_width = (width / nb_bars)*padding_bars_ratio/(padding_bars_ratio+1)+1;
uint16_t bar_padding_x = bar_width/padding_bars_ratio;
nb_full_bars = nb_bars*percentage/100;
/// ------ draw full bars ------
for (int i = 0; i < nb_full_bars; ++i)
{
/// ---- draw one bar ----
//MENU_DEBUG_PRINTF("Drawing filled bar %d\n", i);
SDL_Rect rect = {x+ i*(bar_width +bar_padding_x),
y, bar_width, height};
SDL_FillRect(surface, &rect, SDL_MapRGB(surface->format, GRAY_MAIN_R, GRAY_MAIN_G, GRAY_MAIN_B));
}
/// ------ draw full bars ------
for (int i = 0; i < (nb_bars-nb_full_bars); ++i)
{
/// ---- draw one bar ----
//MENU_DEBUG_PRINTF("Drawing empty bar %d\n", i);
SDL_Rect rect = {x+ i*(bar_width +bar_padding_x) + nb_full_bars*(bar_width +bar_padding_x),
y, bar_width, height};
SDL_FillRect(surface, &rect, SDL_MapRGB(surface->format, GRAY_MAIN_R, GRAY_MAIN_G, GRAY_MAIN_B));
SDL_Rect rect2 = {x+ i*(bar_width +bar_padding_x) + line_width + nb_full_bars*(bar_width +bar_padding_x),
y + line_width, bar_width - line_width*2, height - line_width*2};
SDL_FillRect(surface, &rect2, SDL_MapRGB(surface->format, WHITE_MAIN_R, WHITE_MAIN_R, WHITE_MAIN_R));
}
}
void add_menu_zone(ENUM_MENU_TYPE menu_type){
/// ------ Increase nb of menu zones -------
nb_menu_zones++;
/// ------ Realoc idx Menus array -------
if(!idx_menus){
idx_menus = malloc(nb_menu_zones*sizeof(int));
menu_zone_surfaces = malloc(nb_menu_zones*sizeof(SDL_Surface*));
}
else{
int *temp = realloc(idx_menus, nb_menu_zones*sizeof(int));
idx_menus = temp;
menu_zone_surfaces = realloc(menu_zone_surfaces, nb_menu_zones*sizeof(SDL_Surface*));
}
idx_menus[nb_menu_zones-1] = menu_type;
/// ------ Reinit menu surface with height increased -------
menu_zone_surfaces[nb_menu_zones-1] = IMG_Load(MENU_PNG_BG_PATH);
if(!menu_zone_surfaces[nb_menu_zones-1]) {
MENU_ERROR_PRINTF("ERROR IMG_Load: %s\n", IMG_GetError());
}
/// --------- Init Common Variables --------
SDL_Surface *text_surface = NULL;
SDL_Surface *surface = menu_zone_surfaces[nb_menu_zones-1];
SDL_Rect text_pos;
/// --------- Add new zone ---------
switch(menu_type){
case MENU_TYPE_VOLUME:
MENU_DEBUG_PRINTF("Init MENU_TYPE_VOLUME\n");
/// ------ Text ------
text_surface = TTF_RenderText_Blended(menu_title_font, "VOLUME", text_color);
text_pos.x = (surface->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = surface->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 - padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, surface, &text_pos);
x_volume_bar = (surface->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - width_progress_bar)/2;
y_volume_bar = surface->h - MENU_ZONE_HEIGHT/2 - height_progress_bar/2 + padding_y_from_center_menu_zone;
draw_progress_bar(surface, x_volume_bar, y_volume_bar,
width_progress_bar, height_progress_bar, 0, 100/STEP_CHANGE_VOLUME);
break;
case MENU_TYPE_BRIGHTNESS:
MENU_DEBUG_PRINTF("Init MENU_TYPE_BRIGHTNESS\n");
/// ------ Text ------
text_surface = TTF_RenderText_Blended(menu_title_font, "BRIGHTNESS", text_color);
text_pos.x = (surface->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = surface->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 - padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, surface, &text_pos);
x_brightness_bar = (surface->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - width_progress_bar)/2;
y_brightness_bar = surface->h - MENU_ZONE_HEIGHT/2 - height_progress_bar/2 + padding_y_from_center_menu_zone;
draw_progress_bar(surface, x_brightness_bar, y_brightness_bar,
width_progress_bar, height_progress_bar, 0, 100/STEP_CHANGE_BRIGHTNESS);
break;
case MENU_TYPE_SAVE:
MENU_DEBUG_PRINTF("Init MENU_TYPE_SAVE\n");
/// ------ Text ------
text_surface = TTF_RenderText_Blended(menu_title_font, "SAVE", text_color);
text_pos.x = (surface->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = surface->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 - padding_y_from_center_menu_zone*2;
SDL_BlitSurface(text_surface, NULL, surface, &text_pos);
break;
case MENU_TYPE_LOAD:
MENU_DEBUG_PRINTF("Init MENU_TYPE_LOAD\n");
/// ------ Text ------
text_surface = TTF_RenderText_Blended(menu_title_font, "LOAD", text_color);
text_pos.x = (surface->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = surface->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 - padding_y_from_center_menu_zone*2;
SDL_BlitSurface(text_surface, NULL, surface, &text_pos);
break;
case MENU_TYPE_ASPECT_RATIO:
MENU_DEBUG_PRINTF("Init MENU_TYPE_ASPECT_RATIO\n");
/// ------ Text ------
text_surface = TTF_RenderText_Blended(menu_title_font, "ASPECT RATIO", text_color);
text_pos.x = (surface->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = surface->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 - padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, surface, &text_pos);
break;
case MENU_TYPE_EXIT:
MENU_DEBUG_PRINTF("Init MENU_TYPE_EXIT\n");
/// ------ Text ------
text_surface = TTF_RenderText_Blended(menu_title_font, "EXIT GAME", text_color);
text_pos.x = (surface->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = surface->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2;
SDL_BlitSurface(text_surface, NULL, surface, &text_pos);
break;
case MENU_TYPE_POWERDOWN:
MENU_DEBUG_PRINTF("Init MENU_TYPE_POWERDOWN\n");
/// ------ Text ------
text_surface = TTF_RenderText_Blended(menu_title_font, "POWERDOWN", text_color);
text_pos.x = (surface->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = surface->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2;
SDL_BlitSurface(text_surface, NULL, surface, &text_pos);
break;
default:
MENU_DEBUG_PRINTF("Warning - In add_menu_zone, unknown MENU_TYPE: %d\n", menu_type);
break;
}
/// ------ Free Surfaces -------
SDL_FreeSurface(text_surface);
}
void init_menu_zones(){
/// Init Volume Menu
add_menu_zone(MENU_TYPE_VOLUME);
/// Init Brightness Menu
add_menu_zone(MENU_TYPE_BRIGHTNESS);
/// Init Save Menu
add_menu_zone(MENU_TYPE_SAVE);
/// Init Load Menu
add_menu_zone(MENU_TYPE_LOAD);
/// Init Aspect Ratio Menu
add_menu_zone(MENU_TYPE_ASPECT_RATIO);
/// Init Exit Menu
add_menu_zone(MENU_TYPE_EXIT);
/// Init Powerdown Menu
//add_menu_zone(MENU_TYPE_POWERDOWN);
}
void init_menu_system_values(){
FILE *fp;
char res[100];
/// ------- Get system volume percentage --------
fp = popen(SHELL_CMD_VOLUME_GET, "r");
if (fp == NULL) {
MENU_ERROR_PRINTF("Failed to run command %s\n", SHELL_CMD_VOLUME_GET );
volume_percentage = 50; ///wrong value: setting default to 50
}
else{
fgets(res, sizeof(res)-1, fp);
/// Check if Volume is a number (at least the first char)
if(res[0] < '0' || res[0] > '9'){
MENU_ERROR_PRINTF("Wrong return value: %s for volume cmd: %s\n",res, SHELL_CMD_VOLUME_GET);
volume_percentage = 50; ///wrong value: setting default to 50
}
else{
volume_percentage = atoi(res);
MENU_DEBUG_PRINTF("System volume = %d%%\n", volume_percentage);
}
}
/// ------- Get system brightness percentage -------
fp = popen(SHELL_CMD_BRIGHTNESS_GET, "r");
if (fp == NULL) {
MENU_ERROR_PRINTF("Failed to run command %s\n", SHELL_CMD_BRIGHTNESS_GET );
brightness_percentage = 50; ///wrong value: setting default to 50
}
else{
fgets(res, sizeof(res)-1, fp);
/// Check if brightness is a number (at least the first char)
if(res[0] < '0' || res[0] > '9'){
MENU_ERROR_PRINTF("Wrong return value: %s for volume cmd: %s\n",res, SHELL_CMD_BRIGHTNESS_GET);
brightness_percentage = 50; ///wrong value: setting default to 50
}
else{
brightness_percentage = atoi(res);
MENU_DEBUG_PRINTF("System brightness = %d%%\n", brightness_percentage);
}
}
/// ------ Save prev key repeat params and set new Key repeat -------
SDL_GetKeyRepeat(&backup_key_repeat_delay, &backup_key_repeat_interval);
if(SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL)){
MENU_ERROR_PRINTF("ERROR with SDL_EnableKeyRepeat: %s\n", SDL_GetError());
}
/// Get save slot from game
savestate_slot = (savestate_slot%MAX_SAVE_SLOTS); // security
}
void menu_screen_refresh(int menuItem, int prevItem, int scroll, uint8_t menu_confirmation, uint8_t menu_action){
/// --------- Vars ---------
int print_arrows = (scroll==0)?1:0;
/// --------- Clear HW screen ----------
//SDL_FillRect(draw_screen, NULL, SDL_MapRGB(draw_screen->format, 255, 0, 0));
if(SDL_BlitSurface(backup_hw_screen, NULL, draw_screen, NULL)){
MENU_ERROR_PRINTF("ERROR Could not Clear draw_screen: %s\n", SDL_GetError());
}
/// --------- Setup Blit Window ----------
SDL_Rect menu_blit_window;
menu_blit_window.x = 0;
menu_blit_window.w = SCREEN_HORIZONTAL_SIZE;
/// --------- Blit prev menu Zone going away ----------
menu_blit_window.y = scroll;
menu_blit_window.h = SCREEN_VERTICAL_SIZE;
if(SDL_BlitSurface(menu_zone_surfaces[prevItem], &menu_blit_window, draw_screen, NULL)){
MENU_ERROR_PRINTF("ERROR Could not Blit surface on draw_screen: %s\n", SDL_GetError());
}
/// --------- Blit new menu Zone going in (only during animations) ----------
if(scroll>0){
menu_blit_window.y = SCREEN_VERTICAL_SIZE-scroll;
menu_blit_window.h = SCREEN_VERTICAL_SIZE;
if(SDL_BlitSurface(menu_zone_surfaces[menuItem], NULL, draw_screen, &menu_blit_window)){
MENU_ERROR_PRINTF("ERROR Could not Blit surface on draw_screen: %s\n", SDL_GetError());
}
}
else if(scroll<0){
menu_blit_window.y = SCREEN_VERTICAL_SIZE+scroll;
menu_blit_window.h = SCREEN_VERTICAL_SIZE;
if(SDL_BlitSurface(menu_zone_surfaces[menuItem], &menu_blit_window, draw_screen, NULL)){
MENU_ERROR_PRINTF("ERROR Could not Blit surface on draw_screen: %s\n", SDL_GetError());
}
}
/// --------- No Scroll ? Blitting menu-specific info
else{
SDL_Surface * text_surface = NULL;
char text_tmp[40];
SDL_Rect text_pos;
char fname[MAXPATHLEN];
memset(fname, 0, MAXPATHLEN);
switch(idx_menus[menuItem]){
case MENU_TYPE_VOLUME:
draw_progress_bar(draw_screen, x_volume_bar, y_volume_bar,
width_progress_bar, height_progress_bar, volume_percentage, 100/STEP_CHANGE_VOLUME);
break;
case MENU_TYPE_BRIGHTNESS:
draw_progress_bar(draw_screen, x_volume_bar, y_volume_bar,
width_progress_bar, height_progress_bar, brightness_percentage, 100/STEP_CHANGE_BRIGHTNESS);
break;
case MENU_TYPE_SAVE:
/// ---- Write slot -----
sprintf(text_tmp, "IN SLOT < %d >", savestate_slot+1);
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (draw_screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = draw_screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2;
SDL_BlitSurface(text_surface, NULL, draw_screen, &text_pos);
if(menu_action){
sprintf(text_tmp, "Saving...");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
}
else{
if(menu_confirmation){
sprintf(text_tmp, "Are you sure ?");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
}
else{
/// ---- Write current Save state ----
get_savestate_filename_noshot(savestate_slot, fname);
if(access(fname, F_OK ) != -1){
printf("Found Save slot: %s\n", fname);
char *p = strrchr (fname, '/');
char *basename = p ? p + 1 : (char *) fname;
char file_name_short[24];
snprintf(file_name_short, 24, "%s", basename);
text_surface = TTF_RenderText_Blended(menu_small_info_font, file_name_short, text_color);
}
else{
text_surface = TTF_RenderText_Blended(menu_info_font, "Free", text_color);
}
}
}
text_pos.x = (draw_screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = draw_screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, draw_screen, &text_pos);
break;
case MENU_TYPE_LOAD:
/// ---- Write slot -----
if(quick_load_slot_chosen){
sprintf(text_tmp, "FROM AUTO SAVE");
}
else{
sprintf(text_tmp, "FROM SLOT < %d >", savestate_slot+1);
}
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (draw_screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = draw_screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2;
SDL_BlitSurface(text_surface, NULL, draw_screen, &text_pos);
if(menu_action){
sprintf(text_tmp, "Loading...");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
}
else{
if(menu_confirmation){
sprintf(text_tmp, "Are you sure ?");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
}
else{
if(quick_load_slot_chosen){
text_surface = TTF_RenderText_Blended(menu_info_font, " ", text_color);
}
else{
/// ---- Write current Load state ----
get_savestate_filename_noshot(savestate_slot, fname);
if(access(fname, F_OK ) != -1){
printf("Found Load slot: %s\n", fname);
char *p = strrchr (fname, '/');
char *basename = p ? p + 1 : (char *) fname;
char file_name_short[24];
snprintf(file_name_short, 24, "%s", basename);
text_surface = TTF_RenderText_Blended(menu_small_info_font, file_name_short, text_color);
}
else{
text_surface = TTF_RenderText_Blended(menu_info_font, "Free", text_color);
}
}
}
}
text_pos.x = (draw_screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = draw_screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, draw_screen, &text_pos);
break;
case MENU_TYPE_ASPECT_RATIO:
sprintf(text_tmp, "< %s >", aspect_ratio_name[aspect_ratio]);
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (draw_screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = draw_screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, draw_screen, &text_pos);
break;
case MENU_TYPE_EXIT:
case MENU_TYPE_POWERDOWN:
if(menu_confirmation){
sprintf(text_tmp, "Are you sure ?");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (draw_screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = draw_screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, draw_screen, &text_pos);
}
break;
default:
break;
}
/// ------ Free Surfaces -------
if(text_surface)
SDL_FreeSurface(text_surface);
}
/// --------- Print arrows --------
if(print_arrows){
/// Top arrow
SDL_Rect pos_arrow_top;
pos_arrow_top.x = (draw_screen->w - img_arrow_top->w)/2;
pos_arrow_top.y = (draw_screen->h - MENU_BG_SQUARE_HEIGHT)/4 - img_arrow_top->h/2;
SDL_BlitSurface(img_arrow_top, NULL, draw_screen, &pos_arrow_top);
/// Bottom arrow
SDL_Rect pos_arrow_bottom;
pos_arrow_bottom.x = (draw_screen->w - img_arrow_bottom->w)/2;
pos_arrow_bottom.y = draw_screen->h -
(draw_screen->h - MENU_BG_SQUARE_HEIGHT)/4 - img_arrow_bottom->h/2;
SDL_BlitSurface(img_arrow_bottom, NULL, draw_screen, &pos_arrow_bottom);
}
/// --------- Screen Rotate --------
//SDL_Rotate_270(hw_screen, draw_screen);
//SDL_BlitSurface(draw_screen, NULL, hw_screen, NULL);
/// ---- Fast blit ----
memcpy(hw_screen->pixels, draw_screen->pixels, hw_screen->h*hw_screen->w*sizeof(uint16_t));
/// --------- Render Screen ----------
SDL_Flip(hw_screen);
}
void run_menu_loop()
{
MENU_DEBUG_PRINTF("Launch Menu\n");
SDL_Event event;
uint32_t prev_ms = SDL_GetTicks();
uint32_t cur_ms = SDL_GetTicks();
int scroll=0;
int start_scroll=0;
uint8_t screen_refresh = 1;
char shell_cmd[100];
FILE *fp;
uint8_t menu_confirmation = 0;
stop_menu_loop = 0;
char fname[MAXPATHLEN];
/// ------ Get init values -------
init_menu_system_values();
int prevItem=menuItem;
/// ------ Copy currently displayed screen -------
memcpy(backup_hw_screen->pixels, (uint16_t *)hw_screen->pixels,
RES_HW_SCREEN_HORIZONTAL * RES_HW_SCREEN_VERTICAL * sizeof(u16));
/* Stop Ampli */
popen(SHELL_CMD_TURN_AMPLI_OFF, "r");
/// -------- Main loop ---------
while (!stop_menu_loop)
{
/// -------- Handle Keyboard Events ---------
if(!scroll){
while (SDL_PollEvent(&event))
switch(event.type)
{
case SDL_QUIT:
stop_menu_loop = 1;
quit();
break;
case SDL_KEYDOWN:
switch (event.key.keysym.sym)
{
case SDLK_b:
if(menu_confirmation){
/// ------ Reset menu confirmation ------
menu_confirmation = 0;
/// ------ Refresh screen ------
screen_refresh = 1;
}
/*else{
stop_menu_loop = 1;
}*/
break;
case SDLK_q:
case SDLK_ESCAPE:
stop_menu_loop = 1;
break;
case SDLK_d:
case SDLK_DOWN:
MENU_DEBUG_PRINTF("DOWN\n");
/// ------ Start scrolling to new menu -------
menuItem++;
if (menuItem>=nb_menu_zones) menuItem=0;
start_scroll=1;
/// ------ Reset menu confirmation ------
menu_confirmation = 0;
/// ------ Refresh screen ------
screen_refresh = 1;
break;
case SDLK_u:
case SDLK_UP:
MENU_DEBUG_PRINTF("UP\n");
/// ------ Start scrolling to new menu -------
menuItem--;
if (menuItem<0) menuItem=nb_menu_zones-1;
start_scroll=-1;
/// ------ Reset menu confirmation ------
menu_confirmation = 0;
/// ------ Refresh screen ------
screen_refresh = 1;
break;
case SDLK_l:
case SDLK_LEFT:
//MENU_DEBUG_PRINTF("LEFT\n");
if(idx_menus[menuItem] == MENU_TYPE_VOLUME){
MENU_DEBUG_PRINTF("Volume DOWN\n");
/// ----- Compute new value -----
volume_percentage = (volume_percentage < STEP_CHANGE_VOLUME)?
0:(volume_percentage-STEP_CHANGE_VOLUME);
/// ----- Shell cmd ----
sprintf(shell_cmd, "%s %d", SHELL_CMD_VOLUME_SET, volume_percentage);
fp = popen(shell_cmd, "r");
if (fp == NULL) {
MENU_ERROR_PRINTF("Failed to run command %s\n", shell_cmd);
}
/// ------ Refresh screen ------
screen_refresh = 1;
}
else if(idx_menus[menuItem] == MENU_TYPE_BRIGHTNESS){
MENU_DEBUG_PRINTF("Brightness DOWN\n");
/// ----- Compute new value -----
brightness_percentage = (brightness_percentage < STEP_CHANGE_BRIGHTNESS)?
0:(brightness_percentage-STEP_CHANGE_BRIGHTNESS);
/// ----- Shell cmd ----
sprintf(shell_cmd, "%s %d", SHELL_CMD_BRIGHTNESS_SET, brightness_percentage);
fp = popen(shell_cmd, "r");
if (fp == NULL) {
MENU_ERROR_PRINTF("Failed to run command %s\n", shell_cmd);
}
/// ------ Refresh screen ------
screen_refresh = 1;
}
else if(idx_menus[menuItem] == MENU_TYPE_SAVE){
MENU_DEBUG_PRINTF("Save Slot DOWN\n");
savestate_slot = (!savestate_slot)?(MAX_SAVE_SLOTS-1):(savestate_slot-1);
/// ------ Refresh screen ------
screen_refresh = 1;
}
else if(idx_menus[menuItem] == MENU_TYPE_LOAD){
MENU_DEBUG_PRINTF("Load Slot DOWN\n");
/** Choose quick save file or standard saveslot for loading */
if(!quick_load_slot_chosen &&
savestate_slot == 0 &&
access(quick_save_file, F_OK ) != -1){
quick_load_slot_chosen = 1;
}
else if(quick_load_slot_chosen){
quick_load_slot_chosen = 0;
savestate_slot = MAX_SAVE_SLOTS-1;
}
else{
savestate_slot = (!savestate_slot)?(MAX_SAVE_SLOTS-1):(savestate_slot-1);
}
/// ------ Refresh screen ------
screen_refresh = 1;
}
else if(idx_menus[menuItem] == MENU_TYPE_ASPECT_RATIO){
MENU_DEBUG_PRINTF("Aspect Ratio DOWN\n");
aspect_ratio = (!aspect_ratio)?(NB_ASPECT_RATIOS_TYPES-1):(aspect_ratio-1);
/// ------ Refresh screen ------
screen_refresh = 1;
// Save config file
configfile_save(cfg_file_rom);
}
break;
case SDLK_r:
case SDLK_RIGHT:
//MENU_DEBUG_PRINTF("RIGHT\n");
if(idx_menus[menuItem] == MENU_TYPE_VOLUME){
MENU_DEBUG_PRINTF("Volume UP\n");
/// ----- Compute new value -----
volume_percentage = (volume_percentage > 100 - STEP_CHANGE_VOLUME)?
100:(volume_percentage+STEP_CHANGE_VOLUME);
/// ----- Shell cmd ----
sprintf(shell_cmd, "%s %d", SHELL_CMD_VOLUME_SET, volume_percentage);
fp = popen(shell_cmd, "r");
if (fp == NULL) {
MENU_ERROR_PRINTF("Failed to run command %s\n", shell_cmd);
}
/// ------ Refresh screen ------
screen_refresh = 1;
}
else if(idx_menus[menuItem] == MENU_TYPE_BRIGHTNESS){
MENU_DEBUG_PRINTF("Brightness UP\n");
/// ----- Compute new value -----
brightness_percentage = (brightness_percentage > 100 - STEP_CHANGE_BRIGHTNESS)?
100:(brightness_percentage+STEP_CHANGE_BRIGHTNESS);
/// ----- Shell cmd ----
sprintf(shell_cmd, "%s %d", SHELL_CMD_BRIGHTNESS_SET, brightness_percentage);
fp = popen(shell_cmd, "r");
if (fp == NULL) {
MENU_ERROR_PRINTF("Failed to run command %s\n", shell_cmd);
}
/// ------ Refresh screen ------
screen_refresh = 1;
}
else if(idx_menus[menuItem] == MENU_TYPE_SAVE){
MENU_DEBUG_PRINTF("Save Slot UP\n");
savestate_slot = (savestate_slot+1)%MAX_SAVE_SLOTS;
/// ------ Refresh screen ------
screen_refresh = 1;
}
else if(idx_menus[menuItem] == MENU_TYPE_LOAD){
MENU_DEBUG_PRINTF("Load Slot UP\n");
/** Choose quick save file or standard saveslot for loading */
if(!quick_load_slot_chosen &&
savestate_slot == MAX_SAVE_SLOTS-1 &&
access(quick_save_file, F_OK ) != -1){
quick_load_slot_chosen = 1;
}
else if(quick_load_slot_chosen){
quick_load_slot_chosen = 0;
savestate_slot = 0;
}
else{
savestate_slot = (savestate_slot+1)%MAX_SAVE_SLOTS;
}
/// ------ Refresh screen ------
screen_refresh = 1;
}
else if(idx_menus[menuItem] == MENU_TYPE_ASPECT_RATIO){
MENU_DEBUG_PRINTF("Aspect Ratio UP\n");
aspect_ratio = (aspect_ratio+1)%NB_ASPECT_RATIOS_TYPES;
/// ------ Refresh screen ------
screen_refresh = 1;
// Save config file
configfile_save(cfg_file_rom);
}
break;
case SDLK_a:
case SDLK_RETURN:
if(idx_menus[menuItem] == MENU_TYPE_SAVE){
if(menu_confirmation){
MENU_DEBUG_PRINTF("Saving in slot %d\n", savestate_slot);
/// ------ Refresh Screen -------
menu_screen_refresh(menuItem, prevItem, scroll, menu_confirmation, 1);
/// ------ Save game ------
u16 *current_screen = copy_screen();
get_savestate_filename_noshot(savestate_slot, fname);
save_state(fname, current_screen);
/// ----- Hud Msg -----
sprintf(shell_cmd, "%s %d \" SAVED IN SLOT %d\"",
SHELL_CMD_NOTIF, NOTIF_SECONDS_DISP, savestate_slot+1);
fp = popen(shell_cmd, "r");
if (fp == NULL) {
MENU_ERROR_PRINTF("Failed to run command %s\n", shell_cmd);
}
stop_menu_loop = 1;
}
else{
MENU_DEBUG_PRINTF("Save game - asking confirmation\n");
menu_confirmation = 1;
/// ------ Refresh screen ------
screen_refresh = 1;
}
}
else if(idx_menus[menuItem] == MENU_TYPE_LOAD){
if(menu_confirmation){
MENU_DEBUG_PRINTF("Loading in slot %d\n", savestate_slot);
/// ------ Refresh Screen -------
menu_screen_refresh(menuItem, prevItem, scroll, menu_confirmation, 1);
/// ------ Load game ------
if(quick_load_slot_chosen){
load_state(quick_save_file);
}
else{
get_savestate_filename_noshot(savestate_slot, fname);
load_state(fname);
}
/// ----- Hud Msg -----
if(quick_load_slot_chosen){
sprintf(shell_cmd, "%s %d \" LOADED FROM AUTO SAVE\"",
SHELL_CMD_NOTIF, NOTIF_SECONDS_DISP);
}
else{
sprintf(shell_cmd, "%s %d \" LOADED FROM SLOT %d\"",
SHELL_CMD_NOTIF, NOTIF_SECONDS_DISP, savestate_slot+1);
}
fp = popen(shell_cmd, "r");
if (fp == NULL) {
MENU_ERROR_PRINTF("Failed to run command %s\n", shell_cmd);
}
stop_menu_loop = 1;
}
else{
MENU_DEBUG_PRINTF("Save game - asking confirmation\n");
menu_confirmation = 1;
/// ------ Refresh screen ------
screen_refresh = 1;
}
}
else if(idx_menus[menuItem] == MENU_TYPE_EXIT){
MENU_DEBUG_PRINTF("Exit game\n");
if(menu_confirmation){
MENU_DEBUG_PRINTF("Exit game - confirmed\n");
/// ----- The game should be saved here ----
u16 *current_screen = copy_screen();
save_state(quick_save_file, current_screen);
/// ----- Exit game and back to launcher ----
quit();
stop_menu_loop = 1;
}
else{
MENU_DEBUG_PRINTF("Exit game - asking confirmation\n");
menu_confirmation = 1;
/// ------ Refresh screen ------
screen_refresh = 1;
}
}
else if(idx_menus[menuItem] == MENU_TYPE_POWERDOWN){
if(menu_confirmation){
MENU_DEBUG_PRINTF("Powerdown - confirmed\n");
/// ----- Shell cmd ----
execlp(SHELL_CMD_SHUTDOWN_FUNKEY, SHELL_CMD_SHUTDOWN_FUNKEY, NULL);
MENU_ERROR_PRINTF("Failed to run command %s\n", SHELL_CMD_SHUTDOWN_FUNKEY);
exit(0);
}
else{
MENU_DEBUG_PRINTF("Powerdown - asking confirmation\n");
menu_confirmation = 1;
/// ------ Refresh screen ------
screen_refresh = 1;
}
}
break;
default:
//MENU_DEBUG_PRINTF("Keydown: %d\n", event.key.keysym.sym);
break;
}
break;
}
}
/// --------- Handle Scroll effect ---------
if ((scroll>0) || (start_scroll>0)){
scroll+=MIN(SCROLL_SPEED_PX, MENU_ZONE_HEIGHT-scroll);
start_scroll = 0;
screen_refresh = 1;
}
else if ((scroll<0) || (start_scroll<0)){
scroll-=MIN(SCROLL_SPEED_PX, MENU_ZONE_HEIGHT+scroll);
start_scroll = 0;
screen_refresh = 1;
}
if (scroll>=MENU_ZONE_HEIGHT || scroll<=-MENU_ZONE_HEIGHT) {
prevItem=menuItem;
scroll=0;
screen_refresh = 1;
}
/// --------- Handle FPS ---------
cur_ms = SDL_GetTicks();
if(cur_ms-prev_ms < 1000/FPS_MENU){
SDL_Delay(1000/FPS_MENU - (cur_ms-prev_ms));
}
prev_ms = SDL_GetTicks();
/// --------- Refresh screen
if(screen_refresh){
menu_screen_refresh(menuItem, prevItem, scroll, menu_confirmation, 0);
}
/// --------- reset screen refresh ---------
screen_refresh = 0;
}
/// ------ Reset prev key repeat params -------
if(SDL_EnableKeyRepeat(backup_key_repeat_delay, backup_key_repeat_interval)){
MENU_ERROR_PRINTF("ERROR with SDL_EnableKeyRepeat: %s\n", SDL_GetError());
}
/* Start Ampli */
popen(SHELL_CMD_TURN_AMPLI_ON, "r");
/// ------ Reset last screen ------