-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathemu.c
1534 lines (1317 loc) · 37.2 KB
/
emu.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
/*
* PicoDrive
* (C) notaz, 2007-2010
*
* This work is licensed under the terms of MAME license.
* See COPYING file in the top-level directory.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#ifdef __GP2X__
#include <unistd.h>
#endif
#include "../libpicofe/posix.h"
#include "../libpicofe/input.h"
#include "../libpicofe/fonts.h"
#include "../libpicofe/sndout.h"
#include "../libpicofe/lprintf.h"
#include "../libpicofe/plat.h"
#include "emu.h"
#include "input_pico.h"
#include "menu_pico.h"
#include "config_file.h"
#include <pico/pico_int.h>
#include <pico/patch.h>
#if defined(__GNUC__) && __GNUC__ >= 7
#pragma GCC diagnostic ignored "-Wformat-truncation"
#endif
#ifndef _WIN32
#define PATH_SEP "/"
#define PATH_SEP_C '/'
#else
#define PATH_SEP "\\"
#define PATH_SEP_C '\\'
#endif
#define STATUS_MSG_TIMEOUT 2000
void *g_screen_ptr;
int g_screen_width = 320;
int g_screen_height = 240;
int g_screen_ppitch = 320; // pitch in pixels
const char *PicoConfigFile = "config2.cfg";
currentConfig_t currentConfig, defaultConfig;
int state_slot = 0;
int config_slot = 0, config_slot_current = 0;
int pico_pen_x = 320/2, pico_pen_y = 240/2;
int pico_inp_mode;
int flip_after_sync;
int engineState = PGS_Menu;
static short __attribute__((aligned(4))) sndBuffer[2*44100/50];
/* tmp buff to reduce stack usage for plats with small stack */
static char static_buff[512];
const char *rom_fname_reload;
char rom_fname_loaded[512];
int reset_timing = 0;
static unsigned int notice_msg_time; /* when started showing */
static char noticeMsg[40];
unsigned char *movie_data = NULL;
static int movie_size = 0;
/* don't use tolower() for easy old glibc binary compatibility */
static void strlwr_(char *string)
{
char *p;
for (p = string; *p; p++)
if ('A' <= *p && *p <= 'Z')
*p += 'a' - 'A';
}
static int try_rfn_cut(char *fname)
{
FILE *tmp;
char *p;
p = fname + strlen(fname) - 1;
for (; p > fname; p--)
if (*p == '.') break;
*p = 0;
if((tmp = fopen(fname, "rb"))) {
fclose(tmp);
return 1;
}
return 0;
}
static void get_ext(const char *file, char *ext)
{
const char *p;
p = file + strlen(file) - 4;
if (p < file) p = file;
strncpy(ext, p, 4);
ext[4] = 0;
strlwr_(ext);
}
static void fname_ext(char *dst, int dstlen, const char *prefix, const char *ext, const char *fname)
{
int prefix_len = 0;
const char *p;
*dst = 0;
if (prefix) {
int len = plat_get_root_dir(dst, dstlen);
strcpy(dst + len, prefix);
prefix_len = len + strlen(prefix);
}
p = fname + strlen(fname) - 1;
for (; p >= fname && *p != PATH_SEP_C; p--)
;
p++;
strncpy(dst + prefix_len, p, dstlen - prefix_len - 1);
dst[dstlen - 8] = 0;
if (dst[strlen(dst) - 4] == '.')
dst[strlen(dst) - 4] = 0;
if (ext)
strcat(dst, ext);
}
static void romfname_ext(char *dst, int dstlen, const char *prefix, const char *ext)
{
fname_ext(dst, dstlen, prefix, ext, rom_fname_loaded);
}
void emu_status_msg(const char *format, ...)
{
va_list vl;
int ret;
va_start(vl, format);
ret = vsnprintf(noticeMsg, sizeof(noticeMsg), format, vl);
va_end(vl);
/* be sure old text gets overwritten */
for (; ret < 28; ret++)
noticeMsg[ret] = ' ';
noticeMsg[ret] = 0;
notice_msg_time = plat_get_ticks_ms();
}
static const char * const biosfiles_us[] = {
"us_scd2_9306", "SegaCDBIOS9303", "us_scd1_9210", "bios_CD_U"
};
static const char * const biosfiles_eu[] = {
"eu_mcd2_9306", "eu_mcd2_9303", "eu_mcd1_9210", "bios_CD_E"
};
static const char * const biosfiles_jp[] = {
"jp_mcd2_921222", "jp_mcd1_9112", "jp_mcd1_9111", "bios_CD_J"
};
static const char *find_bios(int *region, const char *cd_fname)
{
int i, count;
const char * const *files;
FILE *f = NULL;
int ret;
// we need to have config loaded at this point
ret = emu_read_config(cd_fname, 0);
if (!ret) emu_read_config(NULL, 0);
if (PicoIn.regionOverride) {
*region = PicoIn.regionOverride;
lprintf("override region to %s\n", *region != 4 ?
(*region == 8 ? "EU" : "JAP") : "USA");
}
if (*region == 4) { // US
files = biosfiles_us;
count = sizeof(biosfiles_us) / sizeof(char *);
} else if (*region == 8) { // EU
files = biosfiles_eu;
count = sizeof(biosfiles_eu) / sizeof(char *);
} else if (*region == 1 || *region == 2) {
files = biosfiles_jp;
count = sizeof(biosfiles_jp) / sizeof(char *);
} else {
return 0;
}
for (i = 0; i < count; i++)
{
emu_make_path(static_buff, files[i], sizeof(static_buff) - 4);
strcat(static_buff, ".bin");
f = fopen(static_buff, "rb");
if (f) break;
static_buff[strlen(static_buff) - 4] = 0;
strcat(static_buff, ".zip");
f = fopen(static_buff, "rb");
if (f) break;
}
if (f) {
lprintf("using bios: %s\n", static_buff);
fclose(f);
return static_buff;
} else {
sprintf(static_buff, "no %s BIOS files found, read docs",
*region != 4 ? (*region == 8 ? "EU" : "JAP") : "USA");
menu_update_msg(static_buff);
return NULL;
}
}
/* check if the name begins with BIOS name */
/*
static int emu_isBios(const char *name)
{
int i;
for (i = 0; i < sizeof(biosfiles_us)/sizeof(biosfiles_us[0]); i++)
if (strstr(name, biosfiles_us[i]) != NULL) return 1;
for (i = 0; i < sizeof(biosfiles_eu)/sizeof(biosfiles_eu[0]); i++)
if (strstr(name, biosfiles_eu[i]) != NULL) return 1;
for (i = 0; i < sizeof(biosfiles_jp)/sizeof(biosfiles_jp[0]); i++)
if (strstr(name, biosfiles_jp[i]) != NULL) return 1;
return 0;
}
*/
static int extract_text(char *dest, const unsigned char *src, int len, int swab)
{
char *p = dest;
int i;
if (swab) swab = 1;
for (i = len - 1; i >= 0; i--)
{
if (src[i^swab] != ' ') break;
}
len = i + 1;
for (i = 0; i < len; i++)
{
unsigned char s = src[i^swab];
if (s >= 0x20 && s < 0x7f && s != '#' && s != '|' &&
s != '[' && s != ']' && s != '\\')
{
*p++ = s;
}
else
{
sprintf(p, "\\%02x", s);
p += 3;
}
}
return p - dest;
}
static char *emu_make_rom_id(const char *fname)
{
static char id_string[3+0xe*3+0x3*3+0x30*3+3];
int pos, swab = 1;
if (PicoIn.AHW & PAHW_MCD) {
strcpy(id_string, "CD|");
swab = 0;
}
else if (PicoIn.AHW & PAHW_SMS)
strcpy(id_string, "MS|");
else strcpy(id_string, "MD|");
pos = 3;
if (!(PicoIn.AHW & PAHW_SMS)) {
pos += extract_text(id_string + pos, media_id_header + 0x80, 0x0e, swab); // serial
id_string[pos] = '|'; pos++;
pos += extract_text(id_string + pos, media_id_header + 0xf0, 0x03, swab); // region
id_string[pos] = '|'; pos++;
pos += extract_text(id_string + pos, media_id_header + 0x50, 0x30, swab); // overseas name
id_string[pos] = 0;
if (pos > 5)
return id_string;
pos = 3;
}
// can't find name in ROM, use filename
fname_ext(id_string + 3, sizeof(id_string) - 3, NULL, NULL, fname);
return id_string;
}
// buffer must be at least 150 byte long
void emu_get_game_name(char *str150)
{
int ret, swab = (PicoIn.AHW & PAHW_MCD) ? 0 : 1;
char *s, *d;
ret = extract_text(str150, media_id_header + 0x50, 0x30, swab); // overseas name
for (s = d = str150 + 1; s < str150+ret; s++)
{
if (*s == 0) break;
if (*s != ' ' || d[-1] != ' ')
*d++ = *s;
}
*d = 0;
}
static void system_announce(void)
{
const char *sys_name, *tv_standard, *extra = "";
int fps;
if (PicoIn.AHW & PAHW_SMS) {
sys_name = "Master System";
#ifdef NO_SMS
extra = " [no support]";
#endif
} else if (PicoIn.AHW & PAHW_PICO) {
sys_name = "Pico";
} else if ((PicoIn.AHW & (PAHW_32X|PAHW_MCD)) == (PAHW_32X|PAHW_MCD)) {
sys_name = "32X + Mega CD";
if ((Pico.m.hardware & 0xc0) == 0x80)
sys_name = "32X + Sega CD";
} else if (PicoIn.AHW & PAHW_MCD) {
sys_name = "Mega CD";
if ((Pico.m.hardware & 0xc0) == 0x80)
sys_name = "Sega CD";
} else if (PicoIn.AHW & PAHW_32X) {
sys_name = "32X";
} else {
sys_name = "MegaDrive";
if ((Pico.m.hardware & 0xc0) == 0x80)
sys_name = "Genesis";
}
tv_standard = Pico.m.pal ? "PAL" : "NTSC";
fps = Pico.m.pal ? 50 : 60;
emu_status_msg("%s %s / %dFPS%s", tv_standard, sys_name, fps, extra);
}
static void do_region_override(const char *media_fname)
{
// we only need to override region if config tells us so
int ret = emu_read_config(media_fname, 0);
if (!ret) emu_read_config(NULL, 0);
}
int emu_reload_rom(const char *rom_fname_in)
{
// use setting before rom config is loaded
int autoload = g_autostateld_opt;
char *rom_fname = NULL;
char ext[5];
enum media_type_e media_type;
int menu_romload_started = 0;
char carthw_path[512];
int retval = 0;
lprintf("emu_ReloadRom(%s)\n", rom_fname_in);
rom_fname = strdup(rom_fname_in);
if (rom_fname == NULL)
return 0;
get_ext(rom_fname, ext);
// early cleanup
PicoPatchUnload();
if (movie_data) {
free(movie_data);
movie_data = 0;
}
if (!strcmp(ext, ".gmv"))
{
// check for both gmv and rom
int dummy;
FILE *movie_file = fopen(rom_fname, "rb");
if (!movie_file) {
menu_update_msg("Failed to open movie.");
goto out;
}
fseek(movie_file, 0, SEEK_END);
movie_size = ftell(movie_file);
fseek(movie_file, 0, SEEK_SET);
if (movie_size < 64+3) {
menu_update_msg("Invalid GMV file.");
fclose(movie_file);
goto out;
}
movie_data = malloc(movie_size);
if (movie_data == NULL) {
menu_update_msg("low memory.");
fclose(movie_file);
goto out;
}
dummy = fread(movie_data, 1, movie_size, movie_file);
fclose(movie_file);
if (strncmp((char *)movie_data, "Gens Movie TEST", 15) != 0) {
menu_update_msg("Invalid GMV file.");
goto out;
}
dummy = try_rfn_cut(rom_fname) || try_rfn_cut(rom_fname);
if (!dummy) {
menu_update_msg("Could't find a ROM for movie.");
goto out;
}
get_ext(rom_fname, ext);
lprintf("gmv loaded for %s\n", rom_fname);
}
else if (!strcmp(ext, ".pat"))
{
int dummy;
PicoPatchLoad(rom_fname);
dummy = try_rfn_cut(rom_fname) || try_rfn_cut(rom_fname);
if (!dummy) {
menu_update_msg("Could't find a ROM to patch.");
goto out;
}
get_ext(rom_fname, ext);
}
menu_romload_prepare(rom_fname); // also CD load
menu_romload_started = 1;
emu_make_path(carthw_path, "carthw.cfg", sizeof(carthw_path));
media_type = PicoLoadMedia(rom_fname, carthw_path,
find_bios, do_region_override);
switch (media_type) {
case PM_BAD_DETECT:
menu_update_msg("Not a ROM/CD img selected.");
goto out;
case PM_BAD_CD:
menu_update_msg("Invalid CD image");
goto out;
case PM_BAD_CD_NO_BIOS:
// find_bios() prints a message
goto out;
case PM_ERROR:
menu_update_msg("Load error");
goto out;
default:
break;
}
// make quirks visible in UI
if (PicoIn.quirks & PQUIRK_FORCE_6BTN)
currentConfig.input_dev0 = PICO_INPUT_PAD_6BTN;
menu_romload_end();
menu_romload_started = 0;
if (PicoPatches) {
PicoPatchPrepare();
PicoPatchApply();
}
// additional movie stuff
if (movie_data)
{
enum input_device indev = (movie_data[0x14] == '6') ?
PICO_INPUT_PAD_6BTN : PICO_INPUT_PAD_3BTN;
PicoSetInputDevice(0, indev);
PicoSetInputDevice(1, indev);
PicoIn.opt |= POPT_DIS_VDP_FIFO; // no VDP fifo timing
if (movie_data[0xF] >= 'A') {
if (movie_data[0x16] & 0x80) {
PicoIn.regionOverride = 8;
} else {
PicoIn.regionOverride = 4;
}
PicoReset();
// TODO: bits 6 & 5
}
movie_data[0x18+30] = 0;
emu_status_msg("MOVIE: %s", (char *) &movie_data[0x18]);
}
else
{
system_announce();
PicoIn.opt &= ~POPT_DIS_VDP_FIFO;
}
strncpy(rom_fname_loaded, rom_fname, sizeof(rom_fname_loaded)-1);
rom_fname_loaded[sizeof(rom_fname_loaded)-1] = 0;
// load SRAM for this ROM
if (currentConfig.EmuOpt & EOPT_EN_SRAM)
emu_save_load_game(1, 1);
// state autoload?
if (autoload) {
int time, newest = 0, newest_slot = -1;
int slot;
for (slot = 0; slot < 10; slot++) {
if (emu_check_save_file(slot, &time)) {
if (time > newest) {
newest = time;
newest_slot = slot;
}
}
}
if (newest_slot >= 0) {
lprintf("autoload slot %d\n", newest_slot);
state_slot = newest_slot;
emu_save_load_game(1, 0);
}
else {
lprintf("no save to autoload.\n");
}
}
retval = 1;
out:
if (menu_romload_started)
menu_romload_end();
free(rom_fname);
return retval;
}
int emu_swap_cd(const char *fname)
{
enum cd_img_type cd_type;
int ret = -1;
cd_type = PicoCdCheck(fname, NULL);
if (cd_type != CIT_NOT_CD)
ret = cdd_load(fname, cd_type);
if (ret != 0) {
menu_update_msg("Load failed, invalid CD image?");
return 0;
}
strncpy(rom_fname_loaded, fname, sizeof(rom_fname_loaded)-1);
rom_fname_loaded[sizeof(rom_fname_loaded) - 1] = 0;
return 1;
}
// <base dir><end>
void emu_make_path(char *buff, const char *end, int size)
{
int pos, end_len;
end_len = strlen(end);
pos = plat_get_root_dir(buff, size);
strncpy(buff + pos, end, size - pos);
buff[size - 1] = 0;
if (pos + end_len > size - 1)
lprintf("Warning: path truncated: %s\n", buff);
}
static void make_config_cfg(char *cfg_buff_512)
{
emu_make_path(cfg_buff_512, PicoConfigFile, 512-6);
if (config_slot != 0)
{
char *p = strrchr(cfg_buff_512, '.');
if (p == NULL)
p = cfg_buff_512 + strlen(cfg_buff_512);
sprintf(p, ".%i.cfg", config_slot);
}
cfg_buff_512[511] = 0;
}
void emu_prep_defconfig(void)
{
memset(&defaultConfig, 0, sizeof(defaultConfig));
defaultConfig.EmuOpt = 0x9d | EOPT_EN_CD_LEDS;
defaultConfig.s_PicoOpt = POPT_EN_STEREO|POPT_EN_FM|POPT_EN_PSG|POPT_EN_Z80 |
POPT_EN_MCD_PCM|POPT_EN_MCD_CDDA|POPT_EN_MCD_GFX |
POPT_EN_DRC|POPT_ACC_SPRITES |
POPT_EN_32X|POPT_EN_PWM;
defaultConfig.s_PsndRate = 44100;
defaultConfig.s_PicoRegion = 0; // auto
defaultConfig.s_PicoAutoRgnOrder = 0x184; // US, EU, JP
defaultConfig.s_PicoCDBuffers = 0;
defaultConfig.confirm_save = EOPT_CONFIRM_SAVE;
defaultConfig.Frameskip = -1; // auto
defaultConfig.input_dev0 = PICO_INPUT_PAD_3BTN;
defaultConfig.input_dev1 = PICO_INPUT_PAD_3BTN;
defaultConfig.volume = 50;
defaultConfig.gamma = 100;
defaultConfig.scaling = 0;
defaultConfig.turbo_rate = 15;
defaultConfig.msh2_khz = PICO_MSH2_HZ / 1000;
defaultConfig.ssh2_khz = PICO_SSH2_HZ / 1000;
// platform specific overrides
pemu_prep_defconfig();
}
void emu_set_defconfig(void)
{
memcpy(¤tConfig, &defaultConfig, sizeof(currentConfig));
PicoIn.opt = currentConfig.s_PicoOpt;
PicoIn.sndRate = currentConfig.s_PsndRate;
PicoIn.regionOverride = currentConfig.s_PicoRegion;
PicoIn.autoRgnOrder = currentConfig.s_PicoAutoRgnOrder;
}
int emu_read_config(const char *rom_fname, int no_defaults)
{
char cfg[512];
int ret;
if (!no_defaults)
emu_set_defconfig();
if (rom_fname == NULL)
{
// global config
make_config_cfg(cfg);
ret = config_readsect(cfg, NULL);
}
else
{
char ext[16];
int vol;
if (config_slot != 0)
snprintf(ext, sizeof(ext), ".%i.cfg", config_slot);
else
strcpy(ext, ".cfg");
fname_ext(cfg, sizeof(cfg), "cfg"PATH_SEP, ext, rom_fname);
// read user's config
vol = currentConfig.volume;
ret = config_readsect(cfg, NULL);
currentConfig.volume = vol; // make vol global (bah)
if (ret != 0)
{
// read global config, and apply game_def.cfg on top
make_config_cfg(cfg);
config_readsect(cfg, NULL);
emu_make_path(cfg, "game_def.cfg", sizeof(cfg));
ret = config_readsect(cfg, emu_make_rom_id(rom_fname));
}
}
pemu_validate_config();
PicoIn.overclockM68k = currentConfig.overclock_68k;
// some sanity checks
#ifdef PSP
/* TODO: mv to plat_validate_config() */
if (currentConfig.CPUclock < 10 || currentConfig.CPUclock > 4096) currentConfig.CPUclock = 200;
if (currentConfig.gamma < -4 || currentConfig.gamma > 16) currentConfig.gamma = 0;
if (currentConfig.gamma2 < 0 || currentConfig.gamma2 > 2) currentConfig.gamma2 = 0;
#endif
if (currentConfig.volume < 0 || currentConfig.volume > 99)
currentConfig.volume = 50;
if (ret == 0)
config_slot_current = config_slot;
return (ret == 0);
}
int emu_write_config(int is_game)
{
char cfg[512];
int ret, write_lrom = 0;
if (!is_game)
{
make_config_cfg(cfg);
write_lrom = 1;
} else {
char ext[16];
if (config_slot != 0)
snprintf(ext, sizeof(ext), ".%i.cfg", config_slot);
else
strcpy(ext, ".cfg");
romfname_ext(cfg, sizeof(cfg), "cfg"PATH_SEP, ext);
}
lprintf("emu_write_config: %s ", cfg);
ret = config_write(cfg);
if (write_lrom) config_writelrom(cfg);
#ifdef __GP2X__
sync();
#endif
lprintf((ret == 0) ? "(ok)\n" : "(failed)\n");
if (ret == 0) config_slot_current = config_slot;
return ret == 0;
}
/* always using built-in font */
#define mk_text_out(name, type, val, topleft, step_x, step_y) \
void name(int x, int y, const char *text) \
{ \
int i, l, len = strlen(text); \
type *screen = (type *)(topleft) + x * step_x + y * step_y; \
\
for (i = 0; i < len; i++, screen += 8 * step_x) \
{ \
for (l = 0; l < 8; l++) \
{ \
unsigned char fd = fontdata8x8[text[i] * 8 + l];\
type *s = screen + l * step_y; \
if (fd&0x80) s[step_x * 0] = val; \
if (fd&0x40) s[step_x * 1] = val; \
if (fd&0x20) s[step_x * 2] = val; \
if (fd&0x10) s[step_x * 3] = val; \
if (fd&0x08) s[step_x * 4] = val; \
if (fd&0x04) s[step_x * 5] = val; \
if (fd&0x02) s[step_x * 6] = val; \
if (fd&0x01) s[step_x * 7] = val; \
} \
} \
}
mk_text_out(emu_text_out8, unsigned char, 0xf0, g_screen_ptr, 1, g_screen_ppitch)
mk_text_out(emu_text_out16, unsigned short, 0xffff, g_screen_ptr, 1, g_screen_ppitch)
mk_text_out(emu_text_out8_rot, unsigned char, 0xf0,
(char *)g_screen_ptr + (g_screen_ppitch - 1) * g_screen_height, -g_screen_height, 1)
mk_text_out(emu_text_out16_rot, unsigned short, 0xffff,
(short *)g_screen_ptr + (g_screen_ppitch - 1) * g_screen_height, -g_screen_height, 1)
#undef mk_text_out
void emu_osd_text16(int x, int y, const char *text)
{
int len = strlen(text) * 8;
int i, h;
len++;
if (x + len > g_screen_width)
len = g_screen_width - x;
for (h = 0; h < 8; h++) {
unsigned short *p;
p = (unsigned short *)g_screen_ptr
+ x + g_screen_ppitch * (y + h);
for (i = len; i > 0; i--, p++)
*p = (*p >> 2) & 0x39e7;
}
emu_text_out16(x, y, text);
}
static void update_movie(void)
{
int offs = Pico.m.frame_count*3 + 0x40;
if (offs+3 > movie_size) {
free(movie_data);
movie_data = 0;
emu_status_msg("END OF MOVIE.");
lprintf("END OF MOVIE.\n");
} else {
// MXYZ SACB RLDU
PicoIn.pad[0] = ~movie_data[offs] & 0x8f; // ! SCBA RLDU
if(!(movie_data[offs] & 0x10)) PicoIn.pad[0] |= 0x40; // C
if(!(movie_data[offs] & 0x20)) PicoIn.pad[0] |= 0x10; // A
if(!(movie_data[offs] & 0x40)) PicoIn.pad[0] |= 0x20; // B
PicoIn.pad[1] = ~movie_data[offs+1] & 0x8f; // ! SCBA RLDU
if(!(movie_data[offs+1] & 0x10)) PicoIn.pad[1] |= 0x40; // C
if(!(movie_data[offs+1] & 0x20)) PicoIn.pad[1] |= 0x10; // A
if(!(movie_data[offs+1] & 0x40)) PicoIn.pad[1] |= 0x20; // B
PicoIn.pad[0] |= (~movie_data[offs+2] & 0x0A) << 8; // ! MZYX
if(!(movie_data[offs+2] & 0x01)) PicoIn.pad[0] |= 0x0400; // X
if(!(movie_data[offs+2] & 0x04)) PicoIn.pad[0] |= 0x0100; // Z
PicoIn.pad[1] |= (~movie_data[offs+2] & 0xA0) << 4; // ! MZYX
if(!(movie_data[offs+2] & 0x10)) PicoIn.pad[1] |= 0x0400; // X
if(!(movie_data[offs+2] & 0x40)) PicoIn.pad[1] |= 0x0100; // Z
}
}
static int try_ropen_file(const char *fname, int *time)
{
struct stat st;
FILE *f;
f = fopen(fname, "rb");
if (f) {
if (time != NULL) {
*time = 0;
if (fstat(fileno(f), &st) == 0)
*time = (int)st.st_mtime;
}
fclose(f);
return 1;
}
return 0;
}
char *emu_get_save_fname(int load, int is_sram, int slot, int *time)
{
char *saveFname = static_buff;
char ext[16];
if (is_sram)
{
strcpy(ext, (PicoIn.AHW & PAHW_MCD) ? ".brm" : ".srm");
romfname_ext(saveFname, sizeof(static_buff),
(PicoIn.AHW & PAHW_MCD) ? "brm"PATH_SEP : "srm"PATH_SEP, ext);
if (!load)
return saveFname;
if (try_ropen_file(saveFname, time))
return saveFname;
romfname_ext(saveFname, sizeof(static_buff), NULL, ext);
if (try_ropen_file(saveFname, time))
return saveFname;
}
else
{
const char *ext_main = (currentConfig.EmuOpt & EOPT_GZIP_SAVES) ? ".mds.gz" : ".mds";
const char *ext_othr = (currentConfig.EmuOpt & EOPT_GZIP_SAVES) ? ".mds" : ".mds.gz";
ext[0] = 0;
if (slot > 0 && slot < 10)
sprintf(ext, ".%i", slot);
strcat(ext, ext_main);
if (!load) {
romfname_ext(saveFname, sizeof(static_buff), "mds" PATH_SEP, ext);
return saveFname;
}
else {
romfname_ext(saveFname, sizeof(static_buff), "mds" PATH_SEP, ext);
if (try_ropen_file(saveFname, time))
return saveFname;
romfname_ext(saveFname, sizeof(static_buff), NULL, ext);
if (try_ropen_file(saveFname, time))
return saveFname;
// try the other ext
ext[0] = 0;
if (slot > 0 && slot < 10)
sprintf(ext, ".%i", slot);
strcat(ext, ext_othr);
romfname_ext(saveFname, sizeof(static_buff), "mds"PATH_SEP, ext);
if (try_ropen_file(saveFname, time))
return saveFname;
}
}
return NULL;
}
int emu_check_save_file(int slot, int *time)
{
return emu_get_save_fname(1, 0, slot, time) ? 1 : 0;
}
int emu_save_load_game(int load, int sram)
{
int ret = 0;
char *saveFname;
// make save filename
saveFname = emu_get_save_fname(load, sram, state_slot, NULL);
if (saveFname == NULL) {
if (!sram)
emu_status_msg(load ? "LOAD FAILED (missing file)" : "SAVE FAILED");
return -1;
}
lprintf("saveLoad (%i, %i): %s\n", load, sram, saveFname);
if (sram)
{
FILE *sramFile;
int sram_size;
unsigned char *sram_data;
int truncate = 1;
if (PicoIn.AHW & PAHW_MCD)
{
if (PicoIn.opt & POPT_EN_MCD_RAMCART) {
sram_size = 0x12000;
sram_data = Pico.sv.data;
if (sram_data)
memcpy(sram_data, Pico_mcd->bram, 0x2000);
} else {
sram_size = 0x2000;
sram_data = Pico_mcd->bram;
truncate = 0; // the .brm may contain RAM cart data after normal brm
}
} else {
sram_size = Pico.sv.size;
sram_data = Pico.sv.data;
}
if (sram_data == NULL)
return 0; // cart saves forcefully disabled for this game
if (load)
{
sramFile = fopen(saveFname, "rb");
if (!sramFile)
return -1;
ret = fread(sram_data, 1, sram_size, sramFile);
ret = ret > 0 ? 0 : -1;
fclose(sramFile);
if ((PicoIn.AHW & PAHW_MCD) && (PicoIn.opt&POPT_EN_MCD_RAMCART))
memcpy(Pico_mcd->bram, sram_data, 0x2000);
} else {
// sram save needs some special processing
// see if we have anything to save
for (; sram_size > 0; sram_size--)
if (sram_data[sram_size-1]) break;
if (sram_size) {
sramFile = fopen(saveFname, truncate ? "wb" : "r+b");
if (!sramFile) sramFile = fopen(saveFname, "wb"); // retry
if (!sramFile) return -1;
ret = fwrite(sram_data, 1, sram_size, sramFile);
ret = (ret != sram_size) ? -1 : 0;
fclose(sramFile);
#ifdef __GP2X__
sync();
#endif
}
}
return ret;
}
else
{
ret = PicoState(saveFname, !load);
if (!ret) {
#ifdef __GP2X__
if (!load) sync();
#endif
emu_status_msg(load ? "STATE LOADED" : "STATE SAVED");
} else {
emu_status_msg(load ? "LOAD FAILED" : "SAVE FAILED");
ret = -1;
}
return ret;
}
}
void emu_set_fastforward(int set_on)
{
static void *set_PsndOut = NULL;
static int set_Frameskip, set_EmuOpt, is_on = 0;
if (set_on && !is_on) {
set_PsndOut = PicoIn.sndOut;
set_Frameskip = currentConfig.Frameskip;
set_EmuOpt = currentConfig.EmuOpt;
PicoIn.sndOut = NULL;
currentConfig.Frameskip = 8;
currentConfig.EmuOpt &= ~4;
currentConfig.EmuOpt |= 0x40000;
is_on = 1;
emu_status_msg("FAST FORWARD");
}
else if (!set_on && is_on) {
PicoIn.sndOut = set_PsndOut;
currentConfig.Frameskip = set_Frameskip;
currentConfig.EmuOpt = set_EmuOpt;
PsndRerate(1);
is_on = 0;
// mainly to unbreak pcm
if (PicoIn.AHW & PAHW_MCD)
pcd_state_loaded();
}
}
static void emu_tray_open(void)
{
engineState = PGS_TrayMenu;
}
static void emu_tray_close(void)
{
emu_status_msg("CD tray closed.");
}
void emu_32x_startup(void)
{
plat_video_toggle_renderer(0, 0); // HACK