-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.cpp
1081 lines (920 loc) · 33.5 KB
/
main.cpp
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
/**
* Copyright (C) 2023 by Ilya Maslennikov <xrip@xrip.ru>
* Copyright (C) 2022 by Mahyar Koshkouei <mk@deltabeard.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
// Peanut-GB emulator settings
#define ENABLE_LCD 1
#define ENABLE_SOUND 1
#define ENABLE_SDCARD 1
#define USE_PS2_KBD 1
#define USE_NESPAD 1
/* C Headers */
#include <cstdio>
#include <cstring>
/* RP2040 Headers */
#include "pico/runtime.h"
#include <hardware/sync.h>
#include <hardware/flash.h>
#include <hardware/timer.h>
#include <hardware/vreg.h>
#include <pico/stdio.h>
#include <pico/stdlib.h>
#include <pico/multicore.h>
#include <sys/unistd.h>
#include <hardware/watchdog.h>
#include "audio.h"
#include "minigb_apu.h"
/* Project headers */
#include "hedley.h"
#include "peanut_gb.h"
#include "gbcolors.h"
/* Murmulator board */
#include "graphics.h"
#include "f_util.h"
#include "ff.h"
#include "nespad.h"
#include "ps2kbd_mrmltr.h"
/** Definition of ROM data
* We're going to erase and reprogram a region 1Mb from the start of the flash
* Once done, we can access this at XIP_BASE + 1Mb.
* Game Boy DMG ROM size ranges from 32768 bytes (e.g. Tetris) to 1,048,576 bytes (e.g. Pokemod Red)
*/
#define HOME_DIR (char*)"\\GB"
extern char __flash_binary_end;
#define FLASH_TARGET_OFFSET (((((uintptr_t)&__flash_binary_end - XIP_BASE) / FLASH_SECTOR_SIZE) + 4) * FLASH_SECTOR_SIZE)
static const uint8_t* rom = (const uint8_t *)(XIP_BASE + FLASH_TARGET_OFFSET);
static uint8_t ram[32768];
semaphore vga_start_semaphore;
gb_s gb;
uint8_t SCREEN[LCD_HEIGHT][LCD_WIDTH];
static FATFS fs;
uint16_t stream[AUDIO_BUFFER_SIZE_BYTES];
#if TFT
#define RGB565_TO_RGB888(rgb565) (rgb565)
#else
#define RGB565_TO_RGB888(rgb565) ((((rgb565) & 0xF800) << 8) | (((rgb565) & 0x07E0) << 5) | (((rgb565) & 0x001F) << 3))
#endif
typedef uint32_t palette222_t[3][4];
static palette222_t palette;
static palette_t palette16; // Colour palette
static uint8_t manual_palette_selected = 0; // auto
struct input_bits_t {
bool a: true;
bool b: true;
bool select: true;
bool start: true;
bool right: true;
bool left: true;
bool up: true;
bool down: true;
};
static uint8_t swap_ab = 0;
static input_bits_t keyboard = { false, false, false, false, false, false, false, false }; //Keyboard
static input_bits_t gamepad_bits = { false, false, false, false, false, false, false, false }; //Joypad
//-----------------------------------------------------------------------------
void nespad_tick() {
nespad_read();
if (swap_ab) {
gamepad_bits.b = keyboard.a || (nespad_state & DPAD_A) != 0;
gamepad_bits.a = keyboard.b || (nespad_state & DPAD_B) != 0;
} else {
gamepad_bits.a = keyboard.a || (nespad_state & DPAD_A) != 0;
gamepad_bits.b = keyboard.b || (nespad_state & DPAD_B) != 0;
}
gamepad_bits.select = keyboard.select || (nespad_state & DPAD_SELECT) != 0;
gamepad_bits.start = keyboard.start || (nespad_state & DPAD_START) != 0;
gamepad_bits.up = keyboard.up || (nespad_state & DPAD_UP) != 0;
gamepad_bits.down = keyboard.down || (nespad_state & DPAD_DOWN) != 0;
gamepad_bits.left = keyboard.left || (nespad_state & DPAD_LEFT) != 0;
gamepad_bits.right = keyboard.right || (nespad_state & DPAD_RIGHT) != 0;
}
//-----------------------------------------------------------------------------
static bool isInReport(hid_keyboard_report_t const* report, const unsigned char keycode) {
for (unsigned char i: report->keycode) {
if (i == keycode) {
return true;
}
}
return false;
}
static volatile bool altPressed = false;
static volatile bool ctrlPressed = false;
static volatile uint8_t fxPressedV = 0;
void
__not_in_flash_func(process_kbd_report)(hid_keyboard_report_t const* report, hid_keyboard_report_t const* prev_report) {
/* printf("HID key report modifiers %2.2X report ", report->modifier);
for (unsigned char i: report->keycode)
printf("%2.2X", i);
printf("\r\n");*/
keyboard.start = isInReport(report, HID_KEY_ENTER) || isInReport(report, HID_KEY_KEYPAD_ENTER);
keyboard.select = isInReport(report, HID_KEY_BACKSPACE) || isInReport(report, HID_KEY_ESCAPE) || isInReport(report, HID_KEY_KEYPAD_ADD);
keyboard.a = isInReport(report, HID_KEY_Z) || isInReport(report, HID_KEY_O) || isInReport(report, HID_KEY_KEYPAD_0);
keyboard.b = isInReport(report, HID_KEY_X) || isInReport(report, HID_KEY_P) || isInReport(report, HID_KEY_KEYPAD_DECIMAL);
bool b7 = isInReport(report, HID_KEY_KEYPAD_7);
bool b9 = isInReport(report, HID_KEY_KEYPAD_9);
bool b1 = isInReport(report, HID_KEY_KEYPAD_1);
bool b3 = isInReport(report, HID_KEY_KEYPAD_3);
keyboard.up = b7 || b9 || isInReport(report, HID_KEY_ARROW_UP) || isInReport(report, HID_KEY_W) || isInReport(report, HID_KEY_KEYPAD_8);
keyboard.down = b1 || b3 || isInReport(report, HID_KEY_ARROW_DOWN) || isInReport(report, HID_KEY_S) || isInReport(report, HID_KEY_KEYPAD_2) || isInReport(report, HID_KEY_KEYPAD_5);
keyboard.left = b7 || b1 || isInReport(report, HID_KEY_ARROW_LEFT) || isInReport(report, HID_KEY_A) || isInReport(report, HID_KEY_KEYPAD_4);
keyboard.right = b9 || b3 || isInReport(report, HID_KEY_ARROW_RIGHT) || isInReport(report, HID_KEY_D) || isInReport(report, HID_KEY_KEYPAD_6);
altPressed = isInReport(report, HID_KEY_ALT_LEFT) || isInReport(report, HID_KEY_ALT_RIGHT);
ctrlPressed = isInReport(report, HID_KEY_CONTROL_LEFT) || isInReport(report, HID_KEY_CONTROL_RIGHT);
if (altPressed && ctrlPressed && isInReport(report, HID_KEY_DELETE)) {
watchdog_enable(10, true);
while(true) {
tight_loop_contents();
}
}
if (ctrlPressed || altPressed) {
uint8_t fxPressed = 0;
if (isInReport(report, HID_KEY_F1)) fxPressed = 1;
else if (isInReport(report, HID_KEY_F2)) fxPressed = 2;
else if (isInReport(report, HID_KEY_F3)) fxPressed = 3;
else if (isInReport(report, HID_KEY_F4)) fxPressed = 4;
else if (isInReport(report, HID_KEY_F5)) fxPressed = 5;
else if (isInReport(report, HID_KEY_F6)) fxPressed = 6;
else if (isInReport(report, HID_KEY_F7)) fxPressed = 7;
else if (isInReport(report, HID_KEY_F8)) fxPressed = 8;
fxPressedV = fxPressed;
}
}
Ps2Kbd_Mrmltr ps2kbd(
pio1,
PS2KBD_GPIO_FIRST,
process_kbd_report
);
/**
* Returns a byte from the ROM file at the given address.
*/
uint8_t __not_in_flash_func(gb_rom_read)(struct gb_s* gb, const uint_fast32_t addr) {
return rom[addr];
}
/**
* Returns a byte from the cartridge RAM at the given address.
*/
uint8_t __not_in_flash_func(gb_cart_ram_read)(struct gb_s* gb, const uint_fast32_t addr) {
return ram[addr];
}
/**
* Writes a given byte to the cartridge RAM at the given address.
*/
void __not_in_flash_func(gb_cart_ram_write)(struct gb_s* gb, const uint_fast32_t addr, const uint8_t val) {
ram[addr] = val;
}
/**
* Ignore all errors.
*/
void gb_error(struct gb_s* gb, const enum gb_error_e gb_err, const uint16_t addr) {
const char* gb_err_str[4] = {
"UNKNOWN",
"INVALID OPCODE",
"INVALID READ",
"INVALID WRITE"
};
printf("Error %d occurred: %s at %04X\n.\n", gb_err, gb_err_str[gb_err], addr);
}
/* Renderer loop on Pico's second core */
void __time_critical_func(render_core)() {
multicore_lockout_victim_init();
graphics_init();
const auto buffer = (uint8_t *)SCREEN;
graphics_set_buffer(buffer, LCD_WIDTH, LCD_HEIGHT);
graphics_set_textbuffer(buffer);
graphics_set_bgcolor(0x000000);
#if VGA
graphics_set_offset(60, 6);
#endif
#if HDMI | TV | SOFTTV
graphics_set_offset(80, 48);
#endif
graphics_set_flashmode(false, false);
graphics_set_mode(GRAPHICSMODE_DEFAULT);
// clrScr(1);
sem_acquire_blocking(&vga_start_semaphore);
// 60 FPS loop
#define frame_tick (16666)
uint64_t tick = time_us_64();
#ifdef TFT
uint64_t last_renderer_tick = tick;
#endif
uint64_t last_input_tick = tick;
while (true) {
#ifdef TFT
if (tick >= last_renderer_tick + frame_tick) {
refresh_lcd();
last_renderer_tick = tick;
}
#endif
if (tick >= last_input_tick + frame_tick * 1) {
ps2kbd.tick();
nespad_tick();
last_input_tick = tick;
}
tick = time_us_64();
// tuh_task();
//hid_app_task();
tight_loop_contents();
}
__unreachable();
}
/**
* Draws scanline into framebuffer.
*/
void __always_inline lcd_draw_line(struct gb_s* gb, const uint8_t pixels[160], const uint_fast8_t y) {
// memcpy((uint32_t *)SCREEN[y], (uint32_t *)pixels, 160);
// screen[y][x] = palette[(pixels[x] & LCD_PALETTE_ALL) >> 4][pixels[x] & 3];
if (gb->cgb.cgbMode) {
memcpy((uint32_t *)SCREEN[y], (uint32_t *)pixels, 160);
}
else {
for (unsigned int x = 0; x < LCD_WIDTH; x++)
SCREEN[y][x] = palette[(pixels[x] & LCD_PALETTE_ALL) >> 4][pixels[x] & 3];
}
}
/**
* Load a save file from the SD card
*/
void read_cart_ram_file(struct gb_s* gb) {
char filename[24];
uint_fast32_t save_size;
UINT br;
gb_get_rom_name(gb, filename);
save_size = gb_get_save_size(gb);
if (save_size > 0) {
FIL fil;
FRESULT fr = f_open(&fil, filename, FA_READ);
if (fr == FR_OK) {
f_read(&fil, ram, f_size(&fil), &br);
}
else {
printf("E f_open(%s) error: %s (%d)\n", filename, FRESULT_str(fr), fr);
}
fr = f_close(&fil);
if (fr != FR_OK) {
printf("E f_close error: %s (%d)\n", FRESULT_str(fr), fr);
}
}
printf("I read_cart_ram_file(%s) COMPLETE (%u bytes)\n", filename, save_size);
}
/**
* Write a save file to the SD card
*/
void write_cart_ram_file(struct gb_s* gb) {
char filename[16];
uint_fast32_t save_size;
UINT bw;
gb_get_rom_name(gb, filename);
save_size = gb_get_save_size(gb);
if (save_size > 0) {
FRESULT fr = f_mount(&fs, "", 1);
if (FR_OK != fr) {
printf("E f_mount error: %s (%d)\n", FRESULT_str(fr), fr);
return;
}
FIL fil;
fr = f_open(&fil, filename, FA_CREATE_ALWAYS | FA_WRITE);
if (fr == FR_OK) {
f_write(&fil, ram, save_size, &bw);
}
else {
printf("E f_open(%s) error: %s (%d)\n", filename, FRESULT_str(fr), fr);
}
fr = f_close(&fil);
if (fr != FR_OK) {
printf("E f_close error: %s (%d)\n", FRESULT_str(fr), fr);
}
}
printf("I write_cart_ram_file(%s) COMPLETE (%u bytes)\n", filename, save_size);
}
typedef struct __attribute__((__packed__)) {
bool is_directory;
bool is_executable;
size_t size;
char filename[79];
} file_item_t;
constexpr int max_files = 500;
static file_item_t fileItems[max_files];
int compareFileItems(const void* a, const void* b) {
const auto* itemA = (file_item_t *)a;
const auto* itemB = (file_item_t *)b;
// Directories come first
if (itemA->is_directory && !itemB->is_directory)
return -1;
if (!itemA->is_directory && itemB->is_directory)
return 1;
// Sort files alphabetically
return strcmp(itemA->filename, itemB->filename);
}
bool isExecutable(const char pathname[255],const char *extensions) {
char *pathCopy = strdup(pathname);
const char* token = strrchr(pathCopy, '.');
if (token == nullptr) {
return false;
}
token++;
while (token != NULL) {
if (strstr(extensions, token) != NULL) {
free(pathCopy);
return true;
}
token = strtok(NULL, ",");
}
free(pathCopy);
return false;
}
bool __not_in_flash_func(filebrowser_loadfile)(const char pathname[256]) {
UINT bytes_read = 0;
FIL file;
constexpr int window_y = (TEXTMODE_ROWS - 5) / 2;
constexpr int window_x = (TEXTMODE_COLS - 43) / 2;
draw_window("Loading firmware", window_x, window_y, 43, 5);
FILINFO fileinfo;
f_stat(pathname, &fileinfo);
if (16384 - 64 << 10 < fileinfo.fsize) {
draw_text("ERROR: ROM too large! Canceled!!", window_x + 1, window_y + 2, 13, 1);
sleep_ms(5000);
return false;
}
draw_text("Loading...", window_x + 1, window_y + 2, 10, 1);
sleep_ms(500);
multicore_lockout_start_blocking();
auto flash_target_offset = FLASH_TARGET_OFFSET;
const uint32_t ints = save_and_disable_interrupts();
flash_range_erase(flash_target_offset, fileinfo.fsize);
restore_interrupts(ints);
if (FR_OK == f_open(&file, pathname, FA_READ)) {
uint8_t buffer[FLASH_PAGE_SIZE];
do {
f_read(&file, &buffer, FLASH_PAGE_SIZE, &bytes_read);
if (bytes_read) {
const uint32_t ints = save_and_disable_interrupts();
flash_range_program(flash_target_offset, buffer, FLASH_PAGE_SIZE);
restore_interrupts(ints);
gpio_put(PICO_DEFAULT_LED_PIN, flash_target_offset >> 13 & 1);
flash_target_offset += FLASH_PAGE_SIZE;
}
}
while (bytes_read != 0);
gpio_put(PICO_DEFAULT_LED_PIN, true);
}
f_close(&file);
multicore_lockout_end_blocking();
// restore_interrupts(ints);
return true;
}
void __not_in_flash_func(filebrowser)(const char pathname[256], const char executables[11]) {
bool debounce = true;
char basepath[256];
char tmp[TEXTMODE_COLS + 1];
strcpy(basepath, pathname);
constexpr int per_page = TEXTMODE_ROWS - 3;
DIR dir;
FILINFO fileInfo;
if (FR_OK != f_mount(&fs, "SD", 1)) {
draw_text("SD Card not inserted or SD Card error!", 0, 0, 12, 0);
while (true);
}
while (true) {
memset(fileItems, 0, sizeof(file_item_t) * max_files);
int total_files = 0;
snprintf(tmp, TEXTMODE_COLS, "SD:\\%s", basepath);
draw_window(tmp, 0, 0, TEXTMODE_COLS, TEXTMODE_ROWS - 1);
memset(tmp, ' ', TEXTMODE_COLS);
draw_text(tmp, 0, 29, 0, 0);
auto off = 0;
draw_text("START", off, 29, 7, 0);
off += 5;
draw_text(" Run at cursor ", off, 29, 0, 3);
off += 16;
draw_text("SELECT", off, 29, 7, 0);
off += 6;
draw_text(" Run previous ", off, 29, 0, 3);
#ifndef TFT
off += 16;
draw_text("ARROWS", off, 29, 7, 0);
off += 6;
draw_text(" Navigation ", off, 29, 0, 3);
off += 16;
draw_text("A/F10", off, 29, 7, 0);
off += 5;
draw_text(" USB DRV ", off, 29, 0, 3);
#endif
if (FR_OK != f_opendir(&dir, basepath)) {
draw_text("Failed to open directory", 1, 1, 4, 0);
while (true);
}
if (strlen(basepath) > 0) {
strcpy(fileItems[total_files].filename, "..\0");
fileItems[total_files].is_directory = true;
fileItems[total_files].size = 0;
total_files++;
}
while (f_readdir(&dir, &fileInfo) == FR_OK &&
fileInfo.fname[0] != '\0' &&
total_files < max_files
) {
// Set the file item properties
fileItems[total_files].is_directory = fileInfo.fattrib & AM_DIR;
fileItems[total_files].size = fileInfo.fsize;
fileItems[total_files].is_executable = isExecutable(fileInfo.fname, executables);
strncpy(fileItems[total_files].filename, fileInfo.fname, 78);
total_files++;
}
f_closedir(&dir);
qsort(fileItems, total_files, sizeof(file_item_t), compareFileItems);
if (total_files > max_files) {
draw_text(" Too many files!! ", TEXTMODE_COLS - 17, 0, 12, 3);
}
int offset = 0;
int current_item = 0;
while (true) {
sleep_ms(100);
if (!debounce) {
debounce = !(gamepad_bits.start);
}
// ESCAPE
if (gamepad_bits.select) {
return;
}
if (gamepad_bits.down) {
if (offset + (current_item + 1) < total_files) {
if (current_item + 1 < per_page) {
current_item++;
}
else {
offset++;
}
}
}
if (gamepad_bits.up) {
if (current_item > 0) {
current_item--;
}
else if (offset > 0) {
offset--;
}
}
if (gamepad_bits.right) {
offset += per_page;
if (offset + (current_item + 1) > total_files) {
offset = total_files - (current_item + 1);
}
}
if (gamepad_bits.left) {
if (offset > per_page) {
offset -= per_page;
}
else {
offset = 0;
current_item = 0;
}
}
if (debounce && gamepad_bits.start) {
auto file_at_cursor = fileItems[offset + current_item];
if (file_at_cursor.is_directory) {
if (strcmp(file_at_cursor.filename, "..") == 0) {
const char* lastBackslash = strrchr(basepath, '\\');
if (lastBackslash != nullptr) {
const size_t length = lastBackslash - basepath;
basepath[length] = '\0';
}
}
else {
sprintf(basepath, "%s\\%s", basepath, file_at_cursor.filename);
}
debounce = false;
break;
}
if (file_at_cursor.is_executable) {
sprintf(tmp, "%s\\%s", basepath, file_at_cursor.filename);
filebrowser_loadfile(tmp);
return;
}
}
for (int i = 0; i < per_page; i++) {
uint8_t color = 11;
uint8_t bg_color = 1;
if (offset + i < max_files) {
const auto item = fileItems[offset + i];
if (i == current_item) {
color = 0;
bg_color = 3;
memset(tmp, 0xCD, TEXTMODE_COLS - 2);
tmp[TEXTMODE_COLS - 2] = '\0';
draw_text(tmp, 1, per_page + 1, 11, 1);
snprintf(tmp, TEXTMODE_COLS - 2, " Size: %iKb, File %lu of %i ", item.size / 1024,
offset + i + 1,
total_files);
draw_text(tmp, 2, per_page + 1, 14, 3);
}
const auto len = strlen(item.filename);
color = item.is_directory ? 15 : color;
color = item.is_executable ? 10 : color;
//color = strstr((char *)rom_filename, item.filename) != nullptr ? 13 : color;
memset(tmp, ' ', TEXTMODE_COLS - 2);
tmp[TEXTMODE_COLS - 2] = '\0';
memcpy(&tmp, item.filename, len < TEXTMODE_COLS - 2 ? len : TEXTMODE_COLS - 2);
}
else {
memset(tmp, ' ', TEXTMODE_COLS - 2);
}
draw_text(tmp, 1, i + 1, color, bg_color);
}
}
}
}
bool restart = false;
enum menu_type_e {
NONE,
INT,
TEXT,
ARRAY,
SAVE,
LOAD,
ROM_SELECT,
RETURN,
};
typedef bool (*menu_callback_t)();
typedef struct __attribute__((__packed__)) {
const char* text;
menu_type_e type;
const void* value;
menu_callback_t callback;
uint8_t max_value;
char value_list[15][15];
} MenuItem;
static int save_slot = 0;
static uint16_t frequencies[] = { 378, 396, 404, 408, 412, 416, 420, 424, 433 };
static uint8_t frequency_index = 0;
bool overclock() {
#if PICO_RP2350
volatile uint32_t *qmi_m0_timing=(uint32_t *)0x400d000c;
vreg_disable_voltage_limit();
vreg_set_voltage(VREG_VOLTAGE_1_40);
sleep_ms(10);
*qmi_m0_timing = 0x60007204;
set_sys_clock_khz(frequencies[frequency_index] * KHZ, false);
*qmi_m0_timing = 0x60007303;
return true;
#else
hw_set_bits(&vreg_and_chip_reset_hw->vreg, VREG_AND_CHIP_RESET_VREG_VSEL_BITS);
sleep_ms(33);
return set_sys_clock_khz(frequencies[frequency_index] * KHZ, true);
#endif
}
static bool save() {
char pathname[255];
char filename[24];
gb_get_rom_name(&gb, filename);
if (save_slot) {
sprintf(pathname, "%s\\%s_%d.save", HOME_DIR, filename, save_slot);
}
else {
sprintf(pathname, "%s\\%s.save", HOME_DIR, filename);
}
FRESULT fr = f_mount(&fs, "", 1);
FIL fd;
fr = f_open(&fd, pathname, FA_CREATE_ALWAYS | FA_WRITE);
UINT bw;
f_write(&fd, &gb, sizeof(gb), &bw);
f_write(&fd, ram, sizeof(ram), &bw);
f_close(&fd);
return true;
}
static bool load() {
char pathname[255];
char filename[24];
gb_get_rom_name(&gb, filename);
if (save_slot) {
sprintf(pathname, "GB\\%s_%d.save", filename, save_slot);
}
else {
sprintf(pathname, "GB\\%s.save", filename);
}
FRESULT fr = f_mount(&fs, "", 1);
FIL fd;
fr = f_open(&fd, pathname, FA_READ);
UINT br;
f_read(&fd, &gb, sizeof(gb), &br);
f_read(&fd, ram, sizeof(ram), &br);
f_close(&fd);
return true;
}
#if SOFTTV
typedef struct tv_out_mode_t {
// double color_freq;
float color_index;
COLOR_FREQ_t c_freq;
enum graphics_mode_t mode_bpp;
g_out_TV_t tv_system;
NUM_TV_LINES_t N_lines;
bool cb_sync_PI_shift_lines;
bool cb_sync_PI_shift_half_frame;
} tv_out_mode_t;
extern tv_out_mode_t tv_out_mode;
bool color_mode=true;
bool toggle_color() {
color_mode=!color_mode;
if(color_mode) {
tv_out_mode.color_index= 1.0f;
} else {
tv_out_mode.color_index= 0.0f;
}
return true;
}
#endif
const MenuItem menu_items[] = {
//{ "Player 1: %s", ARRAY, &player_1_input, 2, { "Keyboard ", "Gamepad 1", "Gamepad 2" }},
//{ "Player 2: %s", ARRAY, &player_2_input, 2, { "Keyboard ", "Gamepad 1", "Gamepad 2" }},
{ "Swap AB <> BA: %s", ARRAY, &swap_ab, nullptr, 1, {"NO ", "YES"}},
{ "Palette: %s ", ARRAY, &manual_palette_selected, nullptr, 12,
{
"0 - AUTO ",
"1 - yellow-red",
"2 - orange ",
"3 - negative ",
"4 - dark green",
"5 - red ",
"6 - pink ",
"7 - green ",
"8 - dark blue ",
"9 - pastel ",
"10 - blue ",
"11 - yellow ",
"12 - DMG "
}
},
{},
{ "Save state: %i", INT, &save_slot, &save, 8 },
{ "Load state: %i", INT, &save_slot, &load, 8 },
#if SOFTTV
{ "" },
{ "TV system %s", ARRAY, &tv_out_mode.tv_system, nullptr, 1, { "PAL ", "NTSC" } },
{ "TV Lines %s", ARRAY, &tv_out_mode.N_lines, nullptr, 3, { "624", "625", "524", "525" } },
{ "Freq %s", ARRAY, &tv_out_mode.c_freq, nullptr, 1, { "3.579545", "4.433619" } },
{ "Colors: %s", ARRAY, &color_mode, &toggle_color, 1, { "NO ", "YES" } },
{ "Shift lines %s", ARRAY, &tv_out_mode.cb_sync_PI_shift_lines, nullptr, 1, { "NO ", "YES" } },
{ "Shift half frame %s", ARRAY, &tv_out_mode.cb_sync_PI_shift_half_frame, nullptr, 1, { "NO ", "YES" } },
#endif
{},
{
"Overclocking: %s MHz", ARRAY, &frequency_index, &overclock, count_of(frequencies) - 1,
{ "378", "396", "404", "408", "412", "416", "420", "424", "432" }
},
{ "Press START / Enter to apply", NONE },
{ "Reset to ROM select", ROM_SELECT },
{ "Return to game", RETURN }
};
#define MENU_ITEMS_NUMBER (sizeof(menu_items) / sizeof (MenuItem))
static void f_load_conf(void) {
FIL f;
if (f_open(&f, "/GB/gb.conf", FA_READ) == FR_OK) {
UINT br;
f_read(&f, &swap_ab, 1, &br);
f_read(&f, &manual_palette_selected, 1, &br);
f_close(&f);
}
}
static void f_save_conf(void) {
f_mkdir("/GB"); // ничего не делает, если она уже есть
FIL f;
f_open(&f, "/GB/gb.conf", FA_CREATE_ALWAYS | FA_WRITE);
UINT br;
f_write(&f, &swap_ab, 1, &br);
f_write(&f, &manual_palette_selected, 1, &br);
f_close(&f);
}
void menu() {
bool exit = false;
graphics_set_mode(TEXTMODE_DEFAULT);
char footer[TEXTMODE_COLS];
snprintf(footer, TEXTMODE_COLS, ":: %s ::", PICO_PROGRAM_NAME);
draw_text(footer, TEXTMODE_COLS / 2 - strlen(footer) / 2, 0, 11, 1);
snprintf(footer, TEXTMODE_COLS, ":: %s build %s %s ::", PICO_PROGRAM_VERSION_STRING, __DATE__,
__TIME__);
draw_text(footer, TEXTMODE_COLS / 2 - strlen(footer) / 2, TEXTMODE_ROWS - 1, 11, 1);
uint current_item = 0;
while (!exit) {
for (int i = 0; i < MENU_ITEMS_NUMBER; i++) {
uint8_t y = i + (TEXTMODE_ROWS - MENU_ITEMS_NUMBER >> 1);
uint8_t x = TEXTMODE_COLS / 2 - 10;
uint8_t color = 0xFF;
uint8_t bg_color = 0x00;
if (current_item == i) {
color = 0x01;
bg_color = 0xFF;
}
const MenuItem* item = &menu_items[i];
if (i == current_item) {
switch (item->type) {
case INT:
case ARRAY:
if (item->max_value != 0) {
auto* value = (uint8_t *)item->value;
if (gamepad_bits.right && *value < item->max_value) {
(*value)++;
}
if (gamepad_bits.left && *value > 0) {
(*value)--;
}
}
break;
case RETURN:
if (gamepad_bits.start)
exit = true;
break;
case ROM_SELECT:
if (gamepad_bits.start) {
restart = true;
return;
}
break;
default:
break;
}
if (nullptr != item->callback && gamepad_bits.start) {
exit = item->callback();
}
}
static char result[TEXTMODE_COLS];
switch (item->type) {
case INT:
snprintf(result, TEXTMODE_COLS, item->text, *(uint8_t *)item->value);
break;
case ARRAY:
snprintf(result, TEXTMODE_COLS, item->text, item->value_list[*(uint8_t *)item->value]);
break;
case TEXT:
snprintf(result, TEXTMODE_COLS, item->text, item->value);
break;
case NONE:
color = 6;
default:
snprintf(result, TEXTMODE_COLS, "%s", item->text);
}
draw_text(result, x, y, color, bg_color);
}
if (gamepad_bits.down) {
current_item = (current_item + 1) % MENU_ITEMS_NUMBER;
if (menu_items[current_item].type == NONE)
current_item++;
}
if (gamepad_bits.up) {
current_item = (current_item - 1 + MENU_ITEMS_NUMBER) % MENU_ITEMS_NUMBER;
if (menu_items[current_item].type == NONE)
current_item--;
}
sleep_ms(125);
}
if (manual_palette_selected > 0) {
manual_assign_palette(palette16, manual_palette_selected);
} else {
char rom_title[16];
auto_assign_palette(palette16, gb_colour_hash(&gb), gb_get_rom_name(&gb, rom_title));
}
for (int i = 0; i < 3; i++)
for (int j = 0; j < 4; j++) {
graphics_set_palette(i * 4 + j, RGB565_TO_RGB888(palette16[i][j]));
palette[i][j] = i * 4 + j;
}
f_save_conf();
graphics_set_mode(GRAPHICSMODE_DEFAULT);
}
int main() {
overclock();
ps2kbd.init_gpio();
nespad_begin(clock_get_hz(clk_sys) / 1000, NES_GPIO_CLK, NES_GPIO_DATA, NES_GPIO_LAT);
sem_init(&vga_start_semaphore, 0, 1);
multicore_launch_core1(render_core);
sem_release(&vga_start_semaphore);
gpio_init(PICO_DEFAULT_LED_PIN);
gpio_set_dir(PICO_DEFAULT_LED_PIN, GPIO_OUT);
for (int i = 0; i < 6; i++) {
sleep_ms(33);
gpio_put(PICO_DEFAULT_LED_PIN, true);
sleep_ms(33);
gpio_put(PICO_DEFAULT_LED_PIN, false);
}
// Initialize I2S sound driver
i2s_config_t i2s_config = i2s_get_default_config();
i2s_config.sample_freq = AUDIO_SAMPLE_RATE;
i2s_config.dma_trans_count = AUDIO_SAMPLES;
i2s_volume(&i2s_config, 0);
i2s_init(&i2s_config);
// Initialize audio emulation
audio_init();
FRESULT fr = f_mount(&fs, "", 1);
if (FR_OK != fr) {
printf("E f_mount error: %s (%d)\n", FRESULT_str(fr), fr);
/// TODO: error handling
} else {
f_load_conf();
}
while (true) {
/* ROM File selector */
if (FR_OK == fr) {
graphics_set_mode(TEXTMODE_DEFAULT);
filebrowser(HOME_DIR, "gbc,gb");
graphics_set_mode(GRAPHICSMODE_DEFAULT);
}
/* Initialise GB context. */
gb_init_error_e ret = gb_init(&gb, &gb_rom_read, &gb_cart_ram_read,
&gb_cart_ram_write, &gb_error, nullptr);
if (ret != GB_INIT_NO_ERROR) {
while (1) draw_text("error", 1, 1, 1, 2);
}
/* Automatically assign a colour palette to the game */
if (!manual_palette_selected) {
char rom_title[16];
auto_assign_palette(palette16, gb_colour_hash(&gb), gb_get_rom_name(&gb, rom_title));
}
else {
manual_assign_palette(palette16, manual_palette_selected);
}
if (!gb.cgb.cgbMode)
for (int i = 0; i < 3; i++)
for (int j = 0; j < 4; j++) {
graphics_set_palette(i * 4 + j, RGB565_TO_RGB888(palette16[i][j]));
palette[i][j] = i * 4 + j;