forked from od-contrib/commander
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfk_menu.c
More file actions
executable file
·1385 lines (1248 loc) · 46 KB
/
fk_menu.c
File metadata and controls
executable file
·1385 lines (1248 loc) · 46 KB
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
/*
FK - FunKey retro gaming console library
Copyright (C) 2020-2021 Vincent Buso
Copyright (C) 2020-2021 Michel Stempin
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Vincent Buso
vincent.buso@funkey-project.com
Michel Stempin
michel.stempin@funkey-project.com
*/
/**
* @file FK_menu.c
* This is the menu API for the FunKey retro gaming console library
*/
#include "fk_menu.h"
/// -------------- DEFINES --------------
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))
//#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 //RES_HW_SCREEN_HORIZONTAL
#define SCREEN_VERTICAL_SIZE 240 //RES_HW_SCREEN_VERTICAL
#define SCROLL_SPEED_PX 30
#define FPS_MENU 60
#define ARROWS_PADDING 8
#define MENU_ZONE_WIDTH SCREEN_HORIZONTAL_SIZE
#define MENU_ZONE_HEIGHT SCREEN_VERTICAL_SIZE
#define MENU_BG_SQURE_WIDTH 180
#define MENU_BG_SQUREE_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 --------------
static SDL_Surface * background_screen = NULL;
static int backup_key_repeat_delay=0;
static int backup_key_repeat_interval=0;
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;
static 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;
#ifdef HAS_MENU_VOLUME
static uint16_t x_volume_bar = 0;
static uint16_t y_volume_bar = 0;
static int volume_percentage = 0;
#endif
#ifdef HAS_MENU_BRIGHTNESS
static uint16_t x_brightness_bar = 0;
static uint16_t y_brightness_bar = 0;
static int brightness_percentage = 0;
#endif
#ifdef HAS_MENU_ASPECT_RATIO
#undef X
#define X(a, b) b,
static const char *aspect_ratio_name[] = {ASPECT_RATIOS};
static int aspect_ratio = ASPECT_RATIOS_TYPE_STRECHED;
static int aspect_ratio_factor_percent = 50;
static int aspect_ratio_factor_step = 10;
#endif
#ifdef HAS_MENU_THEME
static Configuration *config = NULL;
static int indexChooseLayout = 0;
#endif
#if defined(HAS_MENU_SAVE) || defined (HAS_MENU_LOAD)
static int savestate_slot = 0;
#endif
#ifdef HAS_MENU_USB
/// USB stuff
static int usb_data_connected = 0;
static int usb_sharing = 0;
#endif
#ifdef HAS_MENU_RO_RW
static int read_write = 0;
#endif
/// -------------- FUNCTIONS IMPLEMENTATION --------------
#if defined(HAS_MENU_VOLUME) || defined(HAS_MENU_BRIGHTNESS)
static 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));
}
}
#endif
static 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 = (int*) malloc(nb_menu_zones*sizeof(int));
menu_zone_surfaces = (SDL_Surface**) malloc(nb_menu_zones*sizeof(SDL_Surface*));
}
else{
int *temp = (int*) realloc(idx_menus, nb_menu_zones*sizeof(int));
idx_menus = temp;
menu_zone_surfaces = (SDL_Surface**) 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){
#ifdef HAS_MENU_VOLUME
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;
#endif
#ifdef HAS_MENU_BRIGHTNESS
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;
#endif
#ifdef HAS_MENU_SAVE
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;
#endif
#ifdef HAS_MENU_LOAD
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;
#endif
#ifdef HAS_MENU_ASPECT_RATIO
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;
#endif
#ifdef HAS_MENU_USB
case MENU_TYPE_USB:
MENU_DEBUG_PRINTF("Init MENU_TYPE_USB\n");
/// ------ Text ------
text_surface = TTF_RenderText_Blended(menu_title_font, "USB", 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;
#endif
#ifdef HAS_MENU_THEME
case MENU_TYPE_THEME:
MENU_DEBUG_PRINTF("Init MENU_TYPE_THEME\n");
/// ------ Text ------
text_surface = TTF_RenderText_Blended(menu_title_font, "SET THEME", 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;
#endif
#ifdef HAS_MENU_LAUNCHER
case MENU_TYPE_LAUNCHER:
MENU_DEBUG_PRINTF("Init MENU_TYPE_LAUNCHER\n");
/// ------ Text ------
text_surface = TTF_RenderText_Blended(menu_title_font, "SET LAUNCHER", 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);
/// ------ Text ------
text_surface = TTF_RenderText_Blended(menu_title_font, "GMENU2X", 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;
#endif
#ifdef HAS_MENU_RO_RW
case MENU_TYPE_RO_RW:
MENU_DEBUG_PRINTF("Init MENU_TYPE_RO_RW\n");
/// ------ Text ------
text_surface = TTF_RenderText_Blended(menu_title_font, "SET SYSTEM:", 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;
#endif
#ifdef HAS_MENU_EXIT
case MENU_TYPE_EXIT:
MENU_DEBUG_PRINTF("Init MENU_TYPE_EXIT\n");
/// ------ Text ------
text_surface = TTF_RenderText_Blended(menu_title_font, "EXIT APP", 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;
#endif
#ifdef HAS_MENU_POWERDOWN
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;
#endif
default:
MENU_DEBUG_PRINTF("Warning - In add_menu_zone, unknown MENU_TYPE: %d\n", menu_type);
break;
}
/// ------ Free Surfaces -------
SDL_FreeSurface(text_surface);
}
static void init_menu_zones(void)
{
#ifdef HAS_MENU_VOLUME
add_menu_zone(MENU_TYPE_VOLUME);
#endif
#ifdef HAS_MENU_BRIGHTNESS
add_menu_zone(MENU_TYPE_BRIGHTNESS);
#endif
#ifdef HAS_MENU_SAVE
add_menu_zone(MENU_TYPE_SAVE);
#endif
#ifdef HAS_MENU_LOAD
add_menu_zone(MENU_TYPE_LOAD);
#endif
#ifdef HAS_MENU_ASPECT_RATIO
add_menu_zone(MENU_TYPE_ASPECT_RATIO);
#endif
#ifdef HAS_MENU_RO_RW
add_menu_zone(MENU_TYPE_RO_RW);
#endif
#ifdef HAS_MENU_EXIT
add_menu_zone(MENU_TYPE_EXIT);
#endif
#ifdef HAS_MENU_USB
add_menu_zone(MENU_TYPE_USB);
#endif
#ifdef HAS_MENU_THEME
add_menu_zone(MENU_TYPE_THEME);
#endif
#ifdef HAS_MENU_LAUNCHER
add_menu_zone(MENU_TYPE_LAUNCHER);
#endif
#ifdef HAS_MENU_POWERDOWN
add_menu_zone(MENU_TYPE_POWERDOWN);
#endif
}
#ifdef HAS_MENU_THEME
void FK_InitMenu(Configuration &c)
#else
void FK_InitMenu(void)
#endif
{
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());
}
/// ------ 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());
}
#ifdef HAS_MENU_THEME
/// ------ Save config pointer ------
config = &c;
#endif
#ifdef HAS_MENU_RO_RW
/// ----- Shell cmd ----
if (system(SHELL_CMD_RO) < 0) {
MENU_ERROR_PRINTF("Failed to run command %s\n", SHELL_CMD_RO);
}
#endif
/// ------ Init menu zones ------
init_menu_zones();
return;
}
void FK_EndMenu(void)
{
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++){
if(menu_zone_surfaces[i] != NULL){
SDL_FreeSurface(menu_zone_surfaces[i]);
}
}
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;
#ifdef HAS_MENU_RO_RW
/// ----- Shell cmd ----
if (system(SHELL_CMD_RO) < 0) {
MENU_ERROR_PRINTF("Failed to run command %s\n", SHELL_CMD_RO);
}
#endif
return;
}
void FK_StopMenu(void)
{
stop_menu_loop = 1;
}
static void init_menu_system_values(void)
{
#if defined(HAS_MENU_VOLUME) || defined(HAS_MENU_BRIGHTNESS) || defined(HAS_MENU_USB) || defined(HAS_MENU_RO_RW)
FILE *fp;
char res[100];
#endif
#ifdef HAS_MENU_VOLUME
/// ------- 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);
pclose(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);
}
}
#endif
#ifdef HAS_MENU_BRIGHTNESS
/// ------- 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);
pclose(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);
}
}
#endif
#ifdef HAS_MENU_USB
/// ------- Get USB Value -------
usb_data_connected = Utils::executeRawPath(SHELL_CMD_USB_DATA_CONNECTED);
usb_sharing = Utils::executeRawPath(SHELL_CMD_USB_CHECK_IS_SHARING);
/** Sanity check if usb not connected */
if(!usb_data_connected){
usb_sharing = 0;
if(idx_menus[menuItem] == MENU_TYPE_USB){
menuItem = 0;
}
}
/** Sanity check if currently in USB sharing (should not happen) */
if(usb_sharing){
/// Force USB menu to launch
for(int cur_idx=0; cur_idx < nb_menu_zones; cur_idx++){
if(idx_menus[cur_idx] == MENU_TYPE_USB){
menuItem = cur_idx;
printf("USB mounted, setting menu item to %d\n", menuItem);
break;
}
}
}
#endif
}
static void menu_screen_refresh(SDL_Surface *screen, int menuItem, int prevItem, int scroll, uint8_t menu_confirmation, uint8_t menu_action)
{
/// --------- Vars ---------
#ifdef HAS_MENU_USB
int print_arrows = (scroll || usb_sharing)?0:1;
#else
int print_arrows = 1;
#endif
/// --------- Clear HW screen ----------
if(SDL_BlitSurface(background_screen, NULL, screen, NULL)){
MENU_ERROR_PRINTF("ERROR Could not Clear 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, screen, NULL)){
MENU_ERROR_PRINTF("ERROR Could not Blit surface on 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, screen, &menu_blit_window)){
MENU_ERROR_PRINTF("ERROR Could not Blit surface on 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, screen, NULL)){
MENU_ERROR_PRINTF("ERROR Could not Blit surface on screen: %s\n", SDL_GetError());
}
}
/// --------- No Scroll ? Blitting menu-specific info
else{
SDL_Surface * text_surface = NULL;
char text_tmp[100];
SDL_Rect text_pos;
#ifdef HAS_MENU_THEME
char *curLayoutName;
bool dots=false;
int max_chars = 15;
#endif
switch(idx_menus[menuItem]){
#ifdef HAS_MENU_VOLUME
case MENU_TYPE_VOLUME:
draw_progress_bar(screen, x_volume_bar, y_volume_bar,
width_progress_bar, height_progress_bar, volume_percentage, 100/STEP_CHANGE_VOLUME);
break;
#endif
#ifdef HAS_MENU_BRIGHTNESS
case MENU_TYPE_BRIGHTNESS:
draw_progress_bar(screen, x_volume_bar, y_volume_bar,
width_progress_bar, height_progress_bar, brightness_percentage, 100/STEP_CHANGE_BRIGHTNESS);
break;
#endif
#ifdef HAS_MENU_SAVE
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 = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2;
SDL_BlitSurface(text_surface, NULL, 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 ----
}
}
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
break;
#endif
#ifdef HAS_MENU_LOAD
case MENU_TYPE_LOAD:
/// ---- Write slot -----
sprintf(text_tmp, "FROM SLOT < %d >", savestate_slot+1);
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2;
SDL_BlitSurface(text_surface, NULL, 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{
/// ---- Write current Load state ----
}
}
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
break;
#endif
#ifdef HAS_MENU_ASPECT_RATIO
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 = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
break;
#endif
#ifdef HAS_MENU_USB
case MENU_TYPE_USB:
/// ---- Write slot -----
sprintf(text_tmp, "%s USB", usb_sharing?"EJECT":"MOUNT");
text_surface = TTF_RenderText_Blended(menu_title_font, text_tmp, text_color);
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
if(menu_action){
sprintf(text_tmp, "in progress ...");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
}
else if(menu_confirmation){
sprintf(text_tmp, "Are you sure?");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
}
else{
///Nothing
}
break;
#endif
#ifdef HAS_MENU_THEME
case MENU_TYPE_THEME:
/// ---- Write current chosen theme -----
curLayoutName = (char*)Utils::getFileName(config->layouts_.at(indexChooseLayout)).c_str();
// no more than max_chars chars in name to fit screen
if(strlen(curLayoutName) > max_chars){
curLayoutName[max_chars-2] = 0;
dots = true;
}
sprintf(text_tmp, "< %s%s >", curLayoutName, dots?"...":"" );
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
if(menu_action){
sprintf(text_tmp, "In progress...");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
}
else if(menu_confirmation){
sprintf(text_tmp, "Are you sure?");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
}
break;
#endif
#ifdef HAS_MENU_LAUNCHER
case MENU_TYPE_LAUNCHER:
if(menu_action){
sprintf(text_tmp, "In progress...");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
}
else if(menu_confirmation){
sprintf(text_tmp, "Are you sure?");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
}
break;
#endif
#ifdef HAS_MENU_EXIT
case MENU_TYPE_EXIT:
#endif
#ifdef HAS_MENU_POWERDOWN
case MENU_TYPE_POWERDOWN:
#endif
#if defined(HAS_MENU_EXIT) || defined(HAS_MENU_POWERDOWN)
if(menu_action){
sprintf(text_tmp, "Shutting down...");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
}
else{
if(menu_confirmation){
sprintf(text_tmp, "Are you sure?");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
}
}
break;
#endif
#ifdef HAS_MENU_RO_RW
case MENU_TYPE_RO_RW:
sprintf(text_tmp, "%s", read_write?"READ-ONLY":"READ-WRITE");
text_surface = TTF_RenderText_Blended(menu_title_font, text_tmp, text_color);
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
if(menu_action){
sprintf(text_tmp, "in progress ...");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
}
else if(menu_confirmation){
sprintf(text_tmp, "Are you sure?");
text_surface = TTF_RenderText_Blended(menu_info_font, text_tmp, text_color);
text_pos.x = (screen->w - MENU_ZONE_WIDTH)/2 + (MENU_ZONE_WIDTH - text_surface->w)/2;
text_pos.y = screen->h - MENU_ZONE_HEIGHT/2 - text_surface->h/2 + 2*padding_y_from_center_menu_zone;
SDL_BlitSurface(text_surface, NULL, screen, &text_pos);
}
else{
///Nothing
}
break;
#endif
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 = (screen->w - img_arrow_top->w)/2;
pos_arrow_top.y = (screen->h - MENU_BG_SQUREE_HEIGHT)/4 - img_arrow_top->h/2;
SDL_BlitSurface(img_arrow_top, NULL, screen, &pos_arrow_top);
/// Bottom arrow
SDL_Rect pos_arrow_bottom;
pos_arrow_bottom.x = (screen->w - img_arrow_bottom->w)/2;
pos_arrow_bottom.y = screen->h -
(screen->h - MENU_BG_SQUREE_HEIGHT)/4 - img_arrow_bottom->h/2;
SDL_BlitSurface(img_arrow_bottom, NULL, screen, &pos_arrow_bottom);
}
/// --------- Flip Screen ----------
SDL_Flip(screen);
}
int FK_RunMenu(SDL_Surface *screen)
{
MENU_DEBUG_PRINTF("Run 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];
uint8_t menu_confirmation = 0;
stop_menu_loop = 0;
#ifdef HAS_MENU_THEME
indexChooseLayout = config->currentLayoutIdx_;
#endif
int returnCode = MENU_RETURN_OK;
/// ------ Load default keymap ------
system(SHELL_CMD_KEYMAP_DEFAULT);
/// ------ Get System values -------
init_menu_system_values();
int prevItem=menuItem;
/// 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());
}
#if defined(HAS_MENU_SAVE) || defined(HAS_MENU_LOAD)
/// Get save slot from game
savestate_slot = (savestate_slot%MAX_SAVE_SLOTS); // security
#endif
/// ------ Backup currently displayed app screen -------
background_screen = SDL_CreateRGBSurface(SDL_SWSURFACE,
screen->w, screen->h, 32, 0, 0, 0, 0);
if(background_screen == NULL){
MENU_ERROR_PRINTF("ERROR Could not create background_screen: %s\n", SDL_GetError());
return MENU_RETURN_ERROR;
}
if(SDL_BlitSurface(screen, NULL, background_screen, NULL)){
MENU_ERROR_PRINTF("ERROR Could not copy screen: %s\n", SDL_GetError());
}
/// -------- 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;
returnCode = MENU_RETURN_EXIT;
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:
/// ------ Check if no action ------
#ifdef HAS_MENU_USB
if(usb_sharing){
break;
}
#endif
stop_menu_loop = 1;
break;
case SDLK_d:
case SDLK_DOWN:
MENU_DEBUG_PRINTF("DOWN\n");
/// ------ Check if no action ------
#ifdef HAS_MENU_USB
if(usb_sharing){
break;
}
#endif
/// ------ Start scrolling to new menu -------
menuItem++;
if (menuItem>=nb_menu_zones) menuItem=0;
#ifdef HAS_MENU_USB
/// Skip if usb menu if usb not connected
if(idx_menus[menuItem] == MENU_TYPE_USB && !usb_data_connected){
menuItem++;
if (menuItem>=nb_menu_zones) menuItem=0;
}
#endif
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");
/// ------ Check if no action ------
#ifdef HAS_MENU_USB
if(usb_sharing){
break;
}
#endif
/// ------ Start scrolling to new menu -------
menuItem--;
if (menuItem<0) menuItem=nb_menu_zones-1;
#ifdef HAS_MENU_USB
/// Skip if usb menu if usb not connected
if(idx_menus[menuItem] == MENU_TYPE_USB && !usb_data_connected){
menuItem--;
if (menuItem<0) menuItem=nb_menu_zones-1;
}
#endif
start_scroll=-1;
/// ------ Reset menu confirmation ------
menu_confirmation = 0;
/// ------ Refresh screen ------
screen_refresh = 1;
break;