key combos for new input code
[libpicofe.git] / gp2x / emu.c
CommitLineData
6ab2f79c 1// (c) Copyright 2006-2007 notaz, All rights reserved.\r
720ee7f6 2// Free for non-commercial use.\r
3\r
4// For commercial use, separate licencing terms must be obtained.\r
5\r
6#include <stdio.h>\r
7#include <stdlib.h>\r
8#include <sys/time.h>\r
4ffd2858 9#include <sys/stat.h>\r
10#include <sys/types.h>\r
720ee7f6 11#include <linux/limits.h>\r
12#include <ctype.h>\r
13#include <unistd.h>\r
14\r
15#include <stdarg.h>\r
16\r
17#include "emu.h"\r
18#include "gp2x.h"\r
720ee7f6 19#include "menu.h"\r
c7a4ff64 20#include "../common/arm_utils.h"\r
21#include "../common/fonts.h"\r
f013066e 22#include "../common/emu.h"\r
0ae25549 23#include "../common/config.h"\r
bc0420cd 24#include "../common/input.h"\r
b3972d82 25#include "../linux/sndout_oss.h"\r
720ee7f6 26#include "cpuctrl.h"\r
049a6b3e 27#include "version.h"\r
720ee7f6 28\r
f11bad75 29#include <pico/pico_int.h>\r
30#include <pico/patch.h>\r
31#include <pico/sound/mix.h>\r
70d2ecc5 32#include <zlib/zlib.h>\r
720ee7f6 33\r
4327ec37 34//#define PFRAMES\r
720ee7f6 35\r
36#ifdef BENCHMARK\r
37#define OSD_FPS_X 220\r
38#else\r
39#define OSD_FPS_X 260\r
40#endif\r
41\r
720ee7f6 42\r
720ee7f6 43int select_exits = 0;\r
720ee7f6 44\r
720ee7f6 45extern int crashed_940;\r
46\r
6245d5a0 47static short __attribute__((aligned(4))) sndBuffer[2*44100/50];\r
720ee7f6 48static struct timeval noticeMsgTime = { 0, 0 }; // when started showing\r
8f1b51ef 49static int osd_fps_x;\r
720ee7f6 50static int gp2x_old_gamma = 100;\r
c7a4ff64 51unsigned char *PicoDraw2FB = NULL; // temporary buffer for alt renderer\r
8f1b51ef 52int reset_timing = 0;\r
720ee7f6 53\r
2b395ee0 54#define PICO_PEN_ADJUST_X 4\r
55#define PICO_PEN_ADJUST_Y 2\r
8a091e48 56static int pico_pen_x = 320/2, pico_pen_y = 240/2;\r
e1cd546f 57\r
f013066e 58static void emu_msg_cb(const char *msg);\r
59static void emu_msg_tray_open(void);\r
720ee7f6 60\r
720ee7f6 61\r
f013066e 62void emu_noticeMsgUpdated(void)\r
720ee7f6 63{\r
f013066e 64 gettimeofday(&noticeMsgTime, 0);\r
720ee7f6 65}\r
66\r
36f6fd5a 67int emu_getMainDir(char *dst, int len)\r
25fced50 68{\r
f013066e 69 extern char **g_argv;\r
70 int j;\r
25fced50 71\r
f013066e 72 strncpy(dst, g_argv[0], len);\r
73 len -= 32; // reserve\r
74 if (len < 0) len = 0;\r
75 dst[len] = 0;\r
76 for (j = strlen(dst); j > 0; j--)\r
77 if (dst[j] == '/') { dst[j+1] = 0; break; }\r
36f6fd5a 78\r
79 return j + 1;\r
25fced50 80}\r
81\r
720ee7f6 82void emu_Init(void)\r
83{\r
84 // make temp buffer for alt renderer\r
c7a4ff64 85 PicoDraw2FB = malloc((8+320)*(8+240+8));\r
86 if (!PicoDraw2FB)\r
720ee7f6 87 {\r
c7a4ff64 88 printf("PicoDraw2FB == 0\n");\r
720ee7f6 89 }\r
90\r
4ffd2858 91 // make dirs for saves, cfgs, etc.\r
92 mkdir("mds", 0777);\r
93 mkdir("srm", 0777);\r
94 mkdir("brm", 0777);\r
95 mkdir("cfg", 0777);\r
96\r
720ee7f6 97 PicoInit();\r
dfa4c846 98 PicoMessage = emu_msg_cb;\r
5e2e14f2 99 PicoMCDopenTray = emu_msg_tray_open;\r
100 PicoMCDcloseTray = menu_loop_tray;\r
720ee7f6 101}\r
102\r
103\r
f013066e 104static void scaling_update(void)\r
79cad122 105{\r
106 PicoOpt &= ~0x4100;\r
107 switch (currentConfig.scaling) {\r
108 default: break; // off\r
109 case 1: // hw hor\r
110 case 2: PicoOpt |= 0x0100; break; // hw hor+vert\r
111 case 3: PicoOpt |= 0x4000; break; // sw hor\r
112 }\r
113}\r
114\r
115\r
720ee7f6 116void emu_Deinit(void)\r
117{\r
118 // save SRAM\r
119 if((currentConfig.EmuOpt & 1) && SRam.changed) {\r
120 emu_SaveLoadGame(0, 1);\r
121 SRam.changed = 0;\r
122 }\r
123\r
7f3b59cf 124 if (!(currentConfig.EmuOpt & EOPT_NO_AUTOSVCFG))\r
125 emu_writelrom();\r
79cad122 126\r
c7a4ff64 127 free(PicoDraw2FB);\r
720ee7f6 128\r
129 PicoExit();\r
720ee7f6 130\r
131 // restore gamma\r
132 if (gp2x_old_gamma != 100)\r
55a951dd 133 set_gamma(100, 0);\r
720ee7f6 134}\r
135\r
0ae25549 136void emu_prepareDefaultConfig(void)\r
137{\r
138 memset(&defaultConfig, 0, sizeof(defaultConfig));\r
100ae778 139 defaultConfig.EmuOpt = 0x9d | 0x00700; // | <- ram_tmng, confirm_save, cd_leds\r
84e21f25 140 defaultConfig.s_PicoOpt = 0x0f | POPT_EXT_FM|POPT_EN_MCD_PCM|POPT_EN_MCD_CDDA|POPT_EN_SVP_DRC|POPT_ACC_SPRITES;\r
0ae25549 141 defaultConfig.s_PsndRate = 44100;\r
142 defaultConfig.s_PicoRegion = 0; // auto\r
143 defaultConfig.s_PicoAutoRgnOrder = 0x184; // US, EU, JP\r
88bfc63d 144 defaultConfig.s_PicoCDBuffers = 0;\r
0ae25549 145 defaultConfig.Frameskip = -1; // auto\r
146 defaultConfig.CPUclock = 200;\r
147 defaultConfig.volume = 50;\r
148 defaultConfig.KeyBinds[ 0] = 1<<0; // SACB RLDU\r
149 defaultConfig.KeyBinds[ 4] = 1<<1;\r
150 defaultConfig.KeyBinds[ 2] = 1<<2;\r
151 defaultConfig.KeyBinds[ 6] = 1<<3;\r
152 defaultConfig.KeyBinds[14] = 1<<4;\r
153 defaultConfig.KeyBinds[13] = 1<<5;\r
154 defaultConfig.KeyBinds[12] = 1<<6;\r
155 defaultConfig.KeyBinds[ 8] = 1<<7;\r
156 defaultConfig.KeyBinds[15] = 1<<26; // switch rend\r
157 defaultConfig.KeyBinds[10] = 1<<27; // save state\r
158 defaultConfig.KeyBinds[11] = 1<<28; // load state\r
159 defaultConfig.KeyBinds[23] = 1<<29; // vol up\r
160 defaultConfig.KeyBinds[22] = 1<<30; // vol down\r
161 defaultConfig.gamma = 100;\r
162 defaultConfig.scaling = 0;\r
6589c840 163 defaultConfig.turbo_rate = 15;\r
0ae25549 164}\r
165\r
0805b5b4 166void osd_text(int x, int y, const char *text)\r
720ee7f6 167{\r
168 int len = strlen(text)*8;\r
e31266dd 169 int *p, i, h, offs;\r
720ee7f6 170\r
171 if ((PicoOpt&0x10)||!(currentConfig.EmuOpt&0x80)) {\r
720ee7f6 172 len = (len+3) >> 2;\r
173 for (h = 0; h < 8; h++) {\r
e31266dd 174 offs = (x + g_screen_width * (y+h)) & ~3;\r
175 p = (int *) ((char *)g_screen_ptr + offs);\r
176 for (i = len; i; i--, p++)\r
177 *p = 0xe0e0e0e0;\r
720ee7f6 178 }\r
f013066e 179 emu_textOut8(x, y, text);\r
720ee7f6 180 } else {\r
720ee7f6 181 len = (len+1) >> 1;\r
182 for (h = 0; h < 8; h++) {\r
e31266dd 183 offs = (x + g_screen_width * (y+h)) & ~1;\r
184 p = (int *) ((short *)g_screen_ptr + offs);\r
185 for (i = len; i; i--, p++)\r
186 *p = (*p >> 2) & 0x39e7;\r
720ee7f6 187 }\r
f013066e 188 emu_textOut16(x, y, text);\r
720ee7f6 189 }\r
190}\r
191\r
2b395ee0 192static void draw_cd_leds(void)\r
daf91588 193{\r
8dfb9fd5 194// static\r
195 int old_reg;\r
8ede36b9 196// if (!((Pico_mcd->s68k_regs[0] ^ old_reg) & 3)) return; // no change // mmu hack problems?\r
daf91588 197 old_reg = Pico_mcd->s68k_regs[0];\r
198\r
199 if ((PicoOpt&0x10)||!(currentConfig.EmuOpt&0x80)) {\r
200 // 8-bit modes\r
201 unsigned int col_g = (old_reg & 2) ? 0xc0c0c0c0 : 0xe0e0e0e0;\r
202 unsigned int col_r = (old_reg & 1) ? 0xd0d0d0d0 : 0xe0e0e0e0;\r
e31266dd 203 *(unsigned int *)((char *)g_screen_ptr + 320*2+ 4) =\r
204 *(unsigned int *)((char *)g_screen_ptr + 320*3+ 4) =\r
205 *(unsigned int *)((char *)g_screen_ptr + 320*4+ 4) = col_g;\r
206 *(unsigned int *)((char *)g_screen_ptr + 320*2+12) =\r
207 *(unsigned int *)((char *)g_screen_ptr + 320*3+12) =\r
208 *(unsigned int *)((char *)g_screen_ptr + 320*4+12) = col_r;\r
daf91588 209 } else {\r
210 // 16-bit modes\r
e31266dd 211 unsigned int *p = (unsigned int *)((short *)g_screen_ptr + 320*2+4);\r
daf91588 212 unsigned int col_g = (old_reg & 2) ? 0x06000600 : 0;\r
213 unsigned int col_r = (old_reg & 1) ? 0xc000c000 : 0;\r
49fe50f0 214 *p++ = col_g; *p++ = col_g; p+=2; *p++ = col_r; *p++ = col_r; p += 320/2 - 12/2;\r
215 *p++ = col_g; *p++ = col_g; p+=2; *p++ = col_r; *p++ = col_r; p += 320/2 - 12/2;\r
8ede36b9 216 *p++ = col_g; *p++ = col_g; p+=2; *p++ = col_r; *p++ = col_r;\r
daf91588 217 }\r
218}\r
219\r
2b395ee0 220static void draw_pico_ptr(void)\r
221{\r
e31266dd 222 unsigned short *p = (unsigned short *)g_screen_ptr;\r
2b395ee0 223\r
224 // only if pen enabled and for 16bit modes\r
225 if (pico_inp_mode == 0 || (PicoOpt&0x10) || !(currentConfig.EmuOpt&0x80)) return;\r
226\r
227 if (!(Pico.video.reg[12]&1) && !(PicoOpt&POPT_DIS_32C_BORDER))\r
228 p += 32;\r
229\r
230 p += 320 * (pico_pen_y + PICO_PEN_ADJUST_Y);\r
231 p += pico_pen_x + PICO_PEN_ADJUST_X;\r
232 p[0] ^= 0xffff;\r
233 p[319] ^= 0xffff;\r
234 p[320] ^= 0xffff;\r
235 p[321] ^= 0xffff;\r
236 p[640] ^= 0xffff;\r
237}\r
238\r
dd5fd477 239static int EmuScanBegin16(unsigned int num)\r
720ee7f6 240{\r
241 if (!(Pico.video.reg[1]&8)) num += 8;\r
e31266dd 242 DrawLineDest = (unsigned short *) g_screen_ptr + g_screen_width * num;\r
720ee7f6 243\r
244 return 0;\r
245}\r
246\r
dd5fd477 247static int EmuScanBegin8(unsigned int num)\r
720ee7f6 248{\r
249 if (!(Pico.video.reg[1]&8)) num += 8;\r
e31266dd 250 DrawLineDest = (unsigned char *) g_screen_ptr + g_screen_width * num;\r
720ee7f6 251\r
252 return 0;\r
253}\r
254\r
e5d315a5 255int localPal[0x100];\r
720ee7f6 256static void (*vidCpyM2)(void *dest, void *src) = NULL;\r
257\r
0805b5b4 258static void blit(const char *fps, const char *notice)\r
720ee7f6 259{\r
daf91588 260 int emu_opt = currentConfig.EmuOpt;\r
261\r
b3818d1e 262 if (PicoOpt&0x10)\r
263 {\r
720ee7f6 264 // 8bit fast renderer\r
265 if (Pico.m.dirtyPal) {\r
266 Pico.m.dirtyPal = 0;\r
267 vidConvCpyRGB32(localPal, Pico.cram, 0x40);\r
268 // feed new palette to our device\r
269 gp2x_video_setpalette(localPal, 0x40);\r
270 }\r
b3818d1e 271 // a hack for VR\r
272 if (PicoRead16Hook == PicoSVPRead16)\r
273 memset32((int *)(PicoDraw2FB+328*8+328*223), 0xe0e0e0e0, 328);\r
274 // do actual copy\r
e31266dd 275 vidCpyM2((unsigned char *)g_screen_ptr+320*8, PicoDraw2FB+328*8);\r
b3818d1e 276 }\r
277 else if (!(emu_opt&0x80))\r
278 {\r
720ee7f6 279 // 8bit accurate renderer\r
dd5fd477 280 if (Pico.m.dirtyPal)\r
281 {\r
61f66fe0 282 int pallen = 0xc0;\r
720ee7f6 283 Pico.m.dirtyPal = 0;\r
b13a934c 284 if (Pico.video.reg[0xC]&8) // shadow/hilight mode\r
285 {\r
720ee7f6 286 vidConvCpyRGB32(localPal, Pico.cram, 0x40);\r
287 vidConvCpyRGB32sh(localPal+0x40, Pico.cram, 0x40);\r
288 vidConvCpyRGB32hi(localPal+0x80, Pico.cram, 0x40);\r
67dfdf5f 289 memcpy32(localPal+0xc0, localPal+0x40, 0x40);\r
b13a934c 290 pallen = 0x100;\r
291 }\r
b13a934c 292 else if (rendstatus & PDRAW_SONIC_MODE) { // mid-frame palette changes\r
720ee7f6 293 vidConvCpyRGB32(localPal, Pico.cram, 0x40);\r
294 vidConvCpyRGB32(localPal+0x40, HighPal, 0x40);\r
295 vidConvCpyRGB32(localPal+0x80, HighPal+0x40, 0x40);\r
b13a934c 296 }\r
297 else {\r
720ee7f6 298 vidConvCpyRGB32(localPal, Pico.cram, 0x40);\r
61f66fe0 299 memcpy32(localPal+0x80, localPal, 0x40); // for spr prio mess\r
720ee7f6 300 }\r
b13a934c 301 if (pallen > 0xc0) {\r
302 localPal[0xc0] = 0x0000c000;\r
303 localPal[0xd0] = 0x00c00000;\r
304 localPal[0xe0] = 0x00000000; // reserved pixels for OSD\r
305 localPal[0xf0] = 0x00ffffff;\r
306 }\r
307 gp2x_video_setpalette(localPal, pallen);\r
720ee7f6 308 }\r
309 }\r
310\r
79cad122 311 if (notice || (emu_opt & 2)) {\r
312 int h = 232;\r
313 if (currentConfig.scaling == 2 && !(Pico.video.reg[1]&8)) h -= 8;\r
314 if (notice) osd_text(4, h, notice);\r
315 if (emu_opt & 2)\r
316 osd_text(osd_fps_x, h, fps);\r
317 }\r
dd5fd477 318 if ((emu_opt & 0x400) && (PicoAHW & PAHW_MCD))\r
2b395ee0 319 draw_cd_leds();\r
320 if (PicoAHW & PAHW_PICO)\r
321 draw_pico_ptr();\r
720ee7f6 322\r
323 //gp2x_video_wait_vsync();\r
324 gp2x_video_flip();\r
325\r
326 if (!(PicoOpt&0x10)) {\r
327 if (!(Pico.video.reg[1]&8)) {\r
328 if (currentConfig.EmuOpt&0x80) {\r
e31266dd 329 DrawLineDest = (unsigned short *) g_screen_ptr + 320*8;\r
720ee7f6 330 } else {\r
e31266dd 331 DrawLineDest = (unsigned char *) g_screen_ptr + 320*8;\r
720ee7f6 332 }\r
333 } else {\r
e31266dd 334 DrawLineDest = g_screen_ptr;\r
720ee7f6 335 }\r
336 }\r
337}\r
338\r
339\r
340// clears whole screen or just the notice area (in all buffers)\r
341static void clearArea(int full)\r
342{\r
daf91588 343 if ((PicoOpt&0x10)||!(currentConfig.EmuOpt&0x80)) {\r
344 // 8-bit renderers\r
345 if (full) gp2x_memset_all_buffers(0, 0xe0, 320*240);\r
346 else gp2x_memset_all_buffers(320*232, 0xe0, 320*8);\r
347 } else {\r
720ee7f6 348 // 16bit accurate renderer\r
349 if (full) gp2x_memset_all_buffers(0, 0, 320*240*2);\r
350 else gp2x_memset_all_buffers(320*232*2, 0, 320*8*2);\r
720ee7f6 351 }\r
352}\r
353\r
354\r
355static void vidResetMode(void)\r
356{\r
357 if (PicoOpt&0x10) {\r
720ee7f6 358 gp2x_video_changemode(8);\r
720ee7f6 359 } else if (currentConfig.EmuOpt&0x80) {\r
13059a60 360 gp2x_video_changemode(16);\r
720ee7f6 361 PicoDrawSetColorFormat(1);\r
dd5fd477 362 PicoScanBegin = EmuScanBegin16;\r
720ee7f6 363 } else {\r
daf91588 364 gp2x_video_changemode(8);\r
365 PicoDrawSetColorFormat(2);\r
dd5fd477 366 PicoScanBegin = EmuScanBegin8;\r
daf91588 367 }\r
368 if ((PicoOpt&0x10)||!(currentConfig.EmuOpt&0x80)) {\r
369 // setup pal for 8-bit modes\r
370 localPal[0xc0] = 0x0000c000; // MCD LEDs\r
371 localPal[0xd0] = 0x00c00000;\r
720ee7f6 372 localPal[0xe0] = 0x00000000; // reserved pixels for OSD\r
373 localPal[0xf0] = 0x00ffffff;\r
720ee7f6 374 gp2x_video_setpalette(localPal, 0x100);\r
375 gp2x_memset_all_buffers(0, 0xe0, 320*240);\r
376 gp2x_video_flip();\r
720ee7f6 377 }\r
378 Pico.m.dirtyPal = 1;\r
379 // reset scaling\r
79cad122 380 if (currentConfig.scaling == 2 && !(Pico.video.reg[1]&8))\r
381 gp2x_video_RGB_setscaling(8, (PicoOpt&0x100)&&!(Pico.video.reg[12]&1) ? 256 : 320, 224);\r
382 else gp2x_video_RGB_setscaling(0, (PicoOpt&0x100)&&!(Pico.video.reg[12]&1) ? 256 : 320, 240);\r
720ee7f6 383}\r
384\r
385\r
dfa4c846 386static void emu_msg_cb(const char *msg)\r
387{\r
388 if ((PicoOpt&0x10)||!(currentConfig.EmuOpt&0x80)) {\r
389 // 8-bit renderers\r
390 gp2x_memset_all_buffers(320*232, 0xe0, 320*8);\r
391 osd_text(4, 232, msg);\r
e31266dd 392 gp2x_memcpy_all_buffers((char *)g_screen_ptr+320*232, 320*232, 320*8);\r
dfa4c846 393 } else {\r
394 // 16bit accurate renderer\r
395 gp2x_memset_all_buffers(320*232*2, 0, 320*8*2);\r
396 osd_text(4, 232, msg);\r
e31266dd 397 gp2x_memcpy_all_buffers((char *)g_screen_ptr+320*232*2, 320*232*2, 320*8*2);\r
dfa4c846 398 }\r
399 gettimeofday(&noticeMsgTime, 0);\r
400 noticeMsgTime.tv_sec -= 2;\r
e5589947 401\r
402 /* assumption: emu_msg_cb gets called only when something slow is about to happen */\r
403 reset_timing = 1;\r
dfa4c846 404}\r
405\r
1078e544 406static void emu_state_cb(const char *str)\r
407{\r
408 clearArea(0);\r
409 blit("", str);\r
410}\r
411\r
5e2e14f2 412static void emu_msg_tray_open(void)\r
413{\r
414 strcpy(noticeMsg, "CD tray opened");\r
415 gettimeofday(&noticeMsgTime, 0);\r
416}\r
417\r
e1cd546f 418static void RunEventsPico(unsigned int events, unsigned int gp2x_keys)\r
419{\r
6589c840 420 int ret, px, py, lim_x;\r
3f2aaff2 421 static int pdown_frames = 0;\r
422\r
8a091e48 423 emu_RunEventsPico(events);\r
424\r
6589c840 425 if (pico_inp_mode == 0) return;\r
3f2aaff2 426\r
427 // for F200\r
428 ret = gp2x_touchpad_read(&px, &py);\r
6589c840 429 if (ret >= 0)\r
430 {\r
431 if (ret > 35000)\r
432 {\r
3f2aaff2 433 if (pdown_frames++ > 5)\r
434 PicoPad[0] |= 0x20;\r
435\r
436 pico_pen_x = px;\r
437 pico_pen_y = py;\r
438 if (!(Pico.video.reg[12]&1)) {\r
439 pico_pen_x -= 32;\r
440 if (pico_pen_x < 0) pico_pen_x = 0;\r
441 if (pico_pen_x > 248) pico_pen_x = 248;\r
442 }\r
443 if (pico_pen_y > 224) pico_pen_y = 224;\r
444 }\r
445 else\r
6589c840 446 pdown_frames = 0;\r
3f2aaff2 447\r
448 //if (ret == 0)\r
449 // PicoPicohw.pen_pos[0] = PicoPicohw.pen_pos[1] = 0x8000;\r
450 }\r
6589c840 451\r
452 PicoPad[0] &= ~0x0f; // release UDLR\r
453 if (gp2x_keys & GP2X_UP) pico_pen_y--;\r
454 if (gp2x_keys & GP2X_DOWN) pico_pen_y++;\r
455 if (gp2x_keys & GP2X_LEFT) pico_pen_x--;\r
456 if (gp2x_keys & GP2X_RIGHT) pico_pen_x++;\r
457\r
458 lim_x = (Pico.video.reg[12]&1) ? 319 : 255;\r
459 if (pico_pen_y < 8) pico_pen_y = 8;\r
460 if (pico_pen_y > 224-PICO_PEN_ADJUST_Y) pico_pen_y = 224-PICO_PEN_ADJUST_Y;\r
461 if (pico_pen_x < 0) pico_pen_x = 0;\r
462 if (pico_pen_x > lim_x-PICO_PEN_ADJUST_X) pico_pen_x = lim_x-PICO_PEN_ADJUST_X;\r
463\r
464 PicoPicohw.pen_pos[0] = pico_pen_x;\r
465 if (!(Pico.video.reg[12]&1)) PicoPicohw.pen_pos[0] += pico_pen_x/4;\r
466 PicoPicohw.pen_pos[0] += 0x3c;\r
467 PicoPicohw.pen_pos[1] = pico_inp_mode == 1 ? (0x2f8 + pico_pen_y) : (0x1fc + pico_pen_y);\r
e1cd546f 468}\r
469\r
0480e6c9 470static void update_volume(int has_changed, int is_up)\r
471{\r
472 static int prev_frame = 0, wait_frames = 0;\r
473 int vol = currentConfig.volume;\r
474\r
475 if (has_changed)\r
476 {\r
477 if (vol < 5 && (PicoOpt&8) && prev_frame == Pico.m.frame_count - 1 && wait_frames < 12)\r
478 wait_frames++;\r
479 else {\r
480 if (is_up) {\r
481 if (vol < 99) vol++;\r
482 } else {\r
483 if (vol > 0) vol--;\r
484 }\r
485 wait_frames = 0;\r
b3972d82 486 sndout_oss_setvol(vol, vol);\r
0480e6c9 487 currentConfig.volume = vol;\r
488 }\r
489 sprintf(noticeMsg, "VOL: %02i", vol);\r
490 gettimeofday(&noticeMsgTime, 0);\r
491 prev_frame = Pico.m.frame_count;\r
492 }\r
493\r
494 // set the right mixer func\r
495 if (!(PicoOpt&8)) return; // just use defaults for mono\r
496 if (vol >= 5)\r
497 PsndMix_32_to_16l = mix_32_to_16l_stereo;\r
498 else {\r
499 mix_32_to_16l_level = 5 - vol;\r
500 PsndMix_32_to_16l = mix_32_to_16l_stereo_lvl;\r
501 }\r
502}\r
503\r
720ee7f6 504static void RunEvents(unsigned int which)\r
505{\r
0480e6c9 506 if (which & 0x1800) // save or load (but not both)\r
507 {\r
720ee7f6 508 int do_it = 1;\r
f013066e 509 if ( emu_checkSaveFile(state_slot) &&\r
46ede6a6 510 (( (which & 0x1000) && (currentConfig.EmuOpt & 0x800)) || // load\r
511 (!(which & 0x1000) && (currentConfig.EmuOpt & 0x200))) ) { // save\r
720ee7f6 512 unsigned long keys;\r
46ede6a6 513 blit("", (which & 0x1000) ? "LOAD STATE? (Y=yes, X=no)" : "OVERWRITE SAVE? (Y=yes, X=no)");\r
30d5518a 514 while ( !((keys = gp2x_joystick_read(1)) & (GP2X_X|GP2X_Y)) )\r
720ee7f6 515 usleep(50*1024);\r
516 if (keys & GP2X_X) do_it = 0;\r
30d5518a 517 while ( gp2x_joystick_read(1) & (GP2X_X|GP2X_Y) ) // wait for release\r
518 usleep(50*1024);\r
720ee7f6 519 clearArea(0);\r
520 }\r
521 if (do_it) {\r
0805b5b4 522 osd_text(4, 232, (which & 0x1000) ? "LOADING GAME" : "SAVING GAME");\r
1078e544 523 PicoStateProgressCB = emu_state_cb;\r
e31266dd 524 gp2x_memcpy_all_buffers(g_screen_ptr, 0, 320*240*2);\r
0805b5b4 525 emu_SaveLoadGame((which & 0x1000) >> 12, 0);\r
1078e544 526 PicoStateProgressCB = NULL;\r
720ee7f6 527 }\r
528\r
529 reset_timing = 1;\r
530 }\r
0480e6c9 531 if (which & 0x0400) // switch renderer\r
532 {\r
720ee7f6 533 if ( PicoOpt&0x10) { PicoOpt&=~0x10; currentConfig.EmuOpt |= 0x80; }\r
534 else if (!(currentConfig.EmuOpt&0x80)) PicoOpt|= 0x10;\r
535 else currentConfig.EmuOpt &= ~0x80;\r
536\r
537 vidResetMode();\r
538\r
539 if (PicoOpt&0x10) {\r
540 strcpy(noticeMsg, " 8bit fast renderer");\r
541 } else if (currentConfig.EmuOpt&0x80) {\r
542 strcpy(noticeMsg, "16bit accurate renderer");\r
543 } else {\r
544 strcpy(noticeMsg, " 8bit accurate renderer");\r
545 }\r
546\r
547 gettimeofday(&noticeMsgTime, 0);\r
548 }\r
0480e6c9 549 if (which & 0x0300)\r
550 {\r
720ee7f6 551 if(which&0x0200) {\r
552 state_slot -= 1;\r
553 if(state_slot < 0) state_slot = 9;\r
554 } else {\r
555 state_slot += 1;\r
556 if(state_slot > 9) state_slot = 0;\r
557 }\r
f013066e 558 sprintf(noticeMsg, "SAVE SLOT %i [%s]", state_slot, emu_checkSaveFile(state_slot) ? "USED" : "FREE");\r
720ee7f6 559 gettimeofday(&noticeMsgTime, 0);\r
560 }\r
0480e6c9 561 if (which & 0x0080) {\r
720ee7f6 562 engineState = PGS_Menu;\r
563 }\r
564}\r
565\r
720ee7f6 566static void updateKeys(void)\r
567{\r
e1cd546f 568 unsigned int keys, keys2, allActions[2] = { 0, 0 }, events;\r
569 static unsigned int prevEvents = 0;\r
720ee7f6 570\r
571 keys = gp2x_joystick_read(0);\r
e31266dd 572 if (keys & GP2X_SELECT)\r
720ee7f6 573 engineState = select_exits ? PGS_Quit : PGS_Menu;\r
720ee7f6 574\r
575 keys &= CONFIGURABLE_KEYS;\r
e1cd546f 576 keys2 = keys;\r
720ee7f6 577\r
2c600560 578 /* FIXME: player2 */\r
fce20e73 579 allActions[0] = in_update();\r
720ee7f6 580\r
6589c840 581 PicoPad[0] = allActions[0] & 0xfff;\r
582 PicoPad[1] = allActions[1] & 0xfff;\r
583\r
584 if (allActions[0] & 0x7000) emu_DoTurbo(&PicoPad[0], allActions[0]);\r
585 if (allActions[1] & 0x7000) emu_DoTurbo(&PicoPad[1], allActions[1]);\r
720ee7f6 586\r
587 events = (allActions[0] | allActions[1]) >> 16;\r
588\r
589 // volume is treated in special way and triggered every frame\r
0480e6c9 590 if (events & 0x6000)\r
591 update_volume(1, events & 0x2000);\r
592\r
8a091e48 593 if ((events ^ prevEvents) & 0x40) {\r
594 emu_changeFastForward(events & 0x40);\r
595 update_volume(0, 0);\r
596 reset_timing = 1;\r
597 }\r
720ee7f6 598\r
599 events &= ~prevEvents;\r
e1cd546f 600\r
601 if (PicoAHW == PAHW_PICO)\r
602 RunEventsPico(events, keys);\r
720ee7f6 603 if (events) RunEvents(events);\r
f013066e 604 if (movie_data) emu_updateMovie();\r
720ee7f6 605\r
606 prevEvents = (allActions[0] | allActions[1]) >> 16;\r
607}\r
608\r
720ee7f6 609\r
3ef975c9 610static void updateSound(int len)\r
720ee7f6 611{\r
3ef975c9 612 if (PicoOpt&8) len<<=1;\r
720ee7f6 613\r
d9a18943 614 /* avoid writing audio when lagging behind to prevent audio lag */\r
615 if (PicoSkipFrame != 2)\r
b3972d82 616 sndout_oss_write(PsndOut, len<<1);\r
720ee7f6 617}\r
618\r
725d7f6c 619void emu_startSound(void)\r
620{\r
621 static int PsndRate_old = 0, PicoOpt_old = 0, pal_old = 0;\r
622 int target_fps = Pico.m.pal ? 50 : 60;\r
623\r
624 PsndOut = NULL;\r
625\r
626 // prepare sound stuff\r
627 if (currentConfig.EmuOpt & 4)\r
628 {\r
629 int snd_excess_add;\r
630 if (PsndRate != PsndRate_old || (PicoOpt&0x20b) != (PicoOpt_old&0x20b) || Pico.m.pal != pal_old ||\r
631 ((PicoOpt&0x200) && crashed_940)) {\r
632 PsndRerate(Pico.m.frame_count ? 1 : 0);\r
633 }\r
634 snd_excess_add = ((PsndRate - PsndLen*target_fps)<<16) / target_fps;\r
635 printf("starting audio: %i len: %i (ex: %04x) stereo: %i, pal: %i\n",\r
636 PsndRate, PsndLen, snd_excess_add, (PicoOpt&8)>>3, Pico.m.pal);\r
b3972d82 637 sndout_oss_start(PsndRate, 16, (PicoOpt&8)>>3);\r
638 sndout_oss_setvol(currentConfig.volume, currentConfig.volume);\r
725d7f6c 639 PicoWriteSound = updateSound;\r
640 update_volume(0, 0);\r
641 memset(sndBuffer, 0, sizeof(sndBuffer));\r
642 PsndOut = sndBuffer;\r
643 PsndRate_old = PsndRate;\r
644 PicoOpt_old = PicoOpt;\r
645 pal_old = Pico.m.pal;\r
646 }\r
647}\r
648\r
649void emu_endSound(void)\r
650{\r
651}\r
652\r
653/* wait until we can write more sound */\r
654void emu_waitSound(void)\r
655{\r
656 // don't need to do anything, writes will block by themselves\r
657}\r
658\r
720ee7f6 659\r
d9a18943 660static void SkipFrame(int do_audio)\r
720ee7f6 661{\r
d9a18943 662 PicoSkipFrame=do_audio ? 1 : 2;\r
720ee7f6 663 PicoFrame();\r
664 PicoSkipFrame=0;\r
720ee7f6 665}\r
666\r
667\r
84e21f25 668void emu_forcedFrame(int opts)\r
4ffd2858 669{\r
670 int po_old = PicoOpt;\r
13059a60 671 int eo_old = currentConfig.EmuOpt;\r
672\r
84e21f25 673 PicoOpt &= ~0x10;\r
674 PicoOpt |= opts|POPT_ACC_SPRITES; // acc_sprites\r
13059a60 675 currentConfig.EmuOpt |= 0x80;\r
4ffd2858 676\r
13059a60 677 //vidResetMode();\r
678 PicoDrawSetColorFormat(1);\r
dd5fd477 679 PicoScanBegin = EmuScanBegin16;\r
13059a60 680 Pico.m.dirtyPal = 1;\r
681 PicoFrameDrawOnly();\r
4ffd2858 682\r
13059a60 683/*\r
4ffd2858 684 if (!(Pico.video.reg[12]&1)) {\r
dccc2bd0 685 vidCpyM2 = vidCpyM2_32col;\r
4ffd2858 686 clearArea(1);\r
dccc2bd0 687 } else vidCpyM2 = vidCpyM2_40col;\r
4ffd2858 688\r
e31266dd 689 vidCpyM2((unsigned char *)g_screen_ptr+320*8, PicoDraw2FB+328*8);\r
4ffd2858 690 vidConvCpyRGB32(localPal, Pico.cram, 0x40);\r
691 gp2x_video_setpalette(localPal, 0x40);\r
13059a60 692*/\r
e1aa0fa7 693 PicoOpt = po_old;\r
13059a60 694 currentConfig.EmuOpt = eo_old;\r
4ffd2858 695}\r
696\r
7443ecd9 697void emu_platformDebugCat(char *str)\r
698{\r
699 // nothing\r
700}\r
701\r
720ee7f6 702static void simpleWait(int thissec, int lim_time)\r
703{\r
704 struct timeval tval;\r
705\r
706 spend_cycles(1024);\r
707 gettimeofday(&tval, 0);\r
450dab6f 708 if (thissec != tval.tv_sec) tval.tv_usec+=1000000;\r
720ee7f6 709\r
450dab6f 710 while (tval.tv_usec < lim_time)\r
720ee7f6 711 {\r
712 spend_cycles(1024);\r
713 gettimeofday(&tval, 0);\r
450dab6f 714 if (thissec != tval.tv_sec) tval.tv_usec+=1000000;\r
720ee7f6 715 }\r
716}\r
717\r
718\r
450dab6f 719#if 0\r
720static void tga_dump(void)\r
721{\r
722#define BYTE unsigned char\r
723#define WORD unsigned short\r
724 struct\r
725 {\r
726 BYTE IDLength; /* 00h Size of Image ID field */\r
727 BYTE ColorMapType; /* 01h Color map type */\r
728 BYTE ImageType; /* 02h Image type code */\r
729 WORD CMapStart; /* 03h Color map origin */\r
730 WORD CMapLength; /* 05h Color map length */\r
731 BYTE CMapDepth; /* 07h Depth of color map entries */\r
732 WORD XOffset; /* 08h X origin of image */\r
733 WORD YOffset; /* 0Ah Y origin of image */\r
734 WORD Width; /* 0Ch Width of image */\r
735 WORD Height; /* 0Eh Height of image */\r
736 BYTE PixelDepth; /* 10h Image pixel size */\r
737 BYTE ImageDescriptor; /* 11h Image descriptor byte */\r
738 } __attribute__((packed)) TGAHEAD;\r
739 static unsigned short oldscr[320*240];\r
740 FILE *f; char name[128]; int i;\r
741\r
742 memset(&TGAHEAD, 0, sizeof(TGAHEAD));\r
743 TGAHEAD.ImageType = 2;\r
744 TGAHEAD.Width = 320;\r
745 TGAHEAD.Height = 240;\r
746 TGAHEAD.PixelDepth = 16;\r
747 TGAHEAD.ImageDescriptor = 2<<4; // image starts at top-left\r
748\r
749#define CONV(X) (((X>>1)&0x7fe0)|(X&0x1f)) // 555?\r
750\r
751 for (i = 0; i < 320*240; i++)\r
e31266dd 752 if(oldscr[i] != CONV(((unsigned short *)g_screen_ptr)[i])) break;\r
450dab6f 753 if (i < 320*240)\r
754 {\r
755 for (i = 0; i < 320*240; i++)\r
e31266dd 756 oldscr[i] = CONV(((unsigned short *)g_screen_ptr)[i]);\r
450dab6f 757 sprintf(name, "%05i.tga", Pico.m.frame_count);\r
758 f = fopen(name, "wb");\r
759 if (!f) { printf("!f\n"); exit(1); }\r
760 fwrite(&TGAHEAD, 1, sizeof(TGAHEAD), f);\r
761 fwrite(oldscr, 1, 320*240*2, f);\r
762 fclose(f);\r
763 }\r
764}\r
765#endif\r
766\r
767\r
720ee7f6 768void emu_Loop(void)\r
769{\r
725d7f6c 770 static int gp2x_old_clock = 200, EmuOpt_old = 0;\r
720ee7f6 771 char fpsbuff[24]; // fps count c string\r
772 struct timeval tval; // timing\r
450dab6f 773 int pframes_done, pframes_shown, pthissec; // "period" frames, used for sync\r
774 int frames_done, frames_shown, thissec; // actual frames\r
775 int oldmodes = 0, target_fps, target_frametime, lim_time, vsync_offset, i;\r
720ee7f6 776 char *notice = 0;\r
777\r
778 printf("entered emu_Loop()\n");\r
779\r
780 if (gp2x_old_clock != currentConfig.CPUclock) {\r
781 printf("changing clock to %i...", currentConfig.CPUclock); fflush(stdout);\r
782 set_FCLK(currentConfig.CPUclock);\r
783 gp2x_old_clock = currentConfig.CPUclock;\r
784 printf(" done\n");\r
785 }\r
786\r
55a951dd 787 if (gp2x_old_gamma != currentConfig.gamma || (EmuOpt_old&0x1000) != (currentConfig.EmuOpt&0x1000)) {\r
788 set_gamma(currentConfig.gamma, !!(currentConfig.EmuOpt&0x1000));\r
720ee7f6 789 gp2x_old_gamma = currentConfig.gamma;\r
55a951dd 790 printf("updated gamma to %i, A_SN's curve: %i\n", currentConfig.gamma, !!(currentConfig.EmuOpt&0x1000));\r
720ee7f6 791 }\r
792\r
59d0f042 793 if ((EmuOpt_old&0x2000) != (currentConfig.EmuOpt&0x2000)) {\r
794 if (currentConfig.EmuOpt&0x2000)\r
795 set_LCD_custom_rate(Pico.m.pal ? LCDR_100 : LCDR_120);\r
796 else unset_LCD_custom_rate();\r
797 }\r
798\r
799 EmuOpt_old = currentConfig.EmuOpt;\r
720ee7f6 800 fpsbuff[0] = 0;\r
801\r
802 // make sure we are in correct mode\r
803 vidResetMode();\r
f013066e 804 scaling_update();\r
e5d315a5 805 Pico.m.dirtyPal = 1;\r
720ee7f6 806 oldmodes = ((Pico.video.reg[12]&1)<<2) ^ 0xc;\r
720ee7f6 807\r
808 // pal/ntsc might have changed, reset related stuff\r
809 target_fps = Pico.m.pal ? 50 : 60;\r
810 target_frametime = 1000000/target_fps;\r
811 reset_timing = 1;\r
812\r
725d7f6c 813 emu_startSound();\r
720ee7f6 814\r
5f9922e6 815 // prepare CD buffer\r
dd5fd477 816 if (PicoAHW & PAHW_MCD) PicoCDBufferInit();\r
5f9922e6 817\r
59d0f042 818 // calc vsync offset to sync timing code with vsync\r
819 if (currentConfig.EmuOpt&0x2000) {\r
820 gettimeofday(&tval, 0);\r
821 gp2x_video_wait_vsync();\r
822 gettimeofday(&tval, 0);\r
823 vsync_offset = tval.tv_usec;\r
824 while (vsync_offset >= target_frametime)\r
825 vsync_offset -= target_frametime;\r
826 if (!vsync_offset) vsync_offset++;\r
827 printf("vsync_offset: %i\n", vsync_offset);\r
828 } else\r
829 vsync_offset = 0;\r
830\r
450dab6f 831 frames_done = frames_shown = thissec =\r
832 pframes_done = pframes_shown = pthissec = 0;\r
833\r
834 // loop\r
720ee7f6 835 while (engineState == PGS_Running)\r
836 {\r
837 int modes;\r
838\r
839 gettimeofday(&tval, 0);\r
0480e6c9 840 if (reset_timing) {\r
720ee7f6 841 reset_timing = 0;\r
450dab6f 842 pthissec = tval.tv_sec;\r
843 pframes_shown = pframes_done = tval.tv_usec/target_frametime;\r
720ee7f6 844 }\r
845\r
846 // show notice message?\r
0480e6c9 847 if (noticeMsgTime.tv_sec)\r
848 {\r
720ee7f6 849 static int noticeMsgSum;\r
850 if((tval.tv_sec*1000000+tval.tv_usec) - (noticeMsgTime.tv_sec*1000000+noticeMsgTime.tv_usec) > 2000000) { // > 2.0 sec\r
851 noticeMsgTime.tv_sec = noticeMsgTime.tv_usec = 0;\r
852 clearArea(0);\r
853 notice = 0;\r
854 } else {\r
855 int sum = noticeMsg[0]+noticeMsg[1]+noticeMsg[2];\r
856 if (sum != noticeMsgSum) { clearArea(0); noticeMsgSum = sum; }\r
857 notice = noticeMsg;\r
858 }\r
859 }\r
860\r
861 // check for mode changes\r
862 modes = ((Pico.video.reg[12]&1)<<2)|(Pico.video.reg[1]&8);\r
0480e6c9 863 if (modes != oldmodes)\r
864 {\r
720ee7f6 865 int scalex = 320;\r
866 osd_fps_x = OSD_FPS_X;\r
867 if (modes & 4) {\r
868 vidCpyM2 = vidCpyM2_40col;\r
869 } else {\r
870 if (PicoOpt & 0x100) {\r
871 vidCpyM2 = vidCpyM2_32col_nobord;\r
872 scalex = 256;\r
873 osd_fps_x = OSD_FPS_X - 64;\r
874 } else {\r
875 vidCpyM2 = vidCpyM2_32col;\r
876 }\r
877 }\r
79cad122 878 if (currentConfig.scaling == 2 && !(modes&8)) // want vertical scaling and game is not in 240 line mode\r
879 gp2x_video_RGB_setscaling(8, scalex, 224);\r
880 else gp2x_video_RGB_setscaling(0, scalex, 240);\r
720ee7f6 881 oldmodes = modes;\r
882 clearArea(1);\r
883 }\r
884\r
885 // second changed?\r
0480e6c9 886 if (thissec != tval.tv_sec)\r
887 {\r
720ee7f6 888#ifdef BENCHMARK\r
889 static int bench = 0, bench_fps = 0, bench_fps_s = 0, bfp = 0, bf[4];\r
0480e6c9 890 if (++bench == 10) {\r
720ee7f6 891 bench = 0;\r
892 bench_fps_s = bench_fps;\r
893 bf[bfp++ & 3] = bench_fps;\r
894 bench_fps = 0;\r
895 }\r
896 bench_fps += frames_shown;\r
897 sprintf(fpsbuff, "%02i/%02i/%02i", frames_shown, bench_fps_s, (bf[0]+bf[1]+bf[2]+bf[3])>>2);\r
898#else\r
55c7b464 899 if (currentConfig.EmuOpt & 2) {\r
720ee7f6 900 sprintf(fpsbuff, "%02i/%02i", frames_shown, frames_done);\r
55c7b464 901 if (fpsbuff[5] == 0) { fpsbuff[5] = fpsbuff[6] = ' '; fpsbuff[7] = 0; }\r
902 }\r
720ee7f6 903#endif\r
450dab6f 904 frames_shown = frames_done = 0;\r
720ee7f6 905 thissec = tval.tv_sec;\r
450dab6f 906 }\r
907#ifdef PFRAMES\r
908 sprintf(fpsbuff, "%i", Pico.m.frame_count);\r
909#endif\r
720ee7f6 910\r
450dab6f 911 if (pthissec != tval.tv_sec)\r
912 {\r
0480e6c9 913 if (PsndOut == 0 && currentConfig.Frameskip >= 0) {\r
450dab6f 914 pframes_done = pframes_shown = 0;\r
720ee7f6 915 } else {\r
916 // it is quite common for this implementation to leave 1 fame unfinished\r
917 // when second changes, but we don't want buffer to starve.\r
450dab6f 918 if(PsndOut && pframes_done < target_fps && pframes_done > target_fps-5) {\r
720ee7f6 919 updateKeys();\r
450dab6f 920 SkipFrame(1); pframes_done++;\r
720ee7f6 921 }\r
922\r
450dab6f 923 pframes_done -= target_fps; if (pframes_done < 0) pframes_done = 0;\r
924 pframes_shown -= target_fps; if (pframes_shown < 0) pframes_shown = 0;\r
925 if (pframes_shown > pframes_done) pframes_shown = pframes_done;\r
720ee7f6 926 }\r
450dab6f 927 pthissec = tval.tv_sec;\r
720ee7f6 928 }\r
59d0f042 929\r
450dab6f 930 lim_time = (pframes_done+1) * target_frametime + vsync_offset;\r
931 if (currentConfig.Frameskip >= 0) // frameskip enabled\r
932 {\r
720ee7f6 933 for(i = 0; i < currentConfig.Frameskip; i++) {\r
934 updateKeys();\r
450dab6f 935 SkipFrame(1); pframes_done++; frames_done++;\r
0480e6c9 936 if (PsndOut && !reset_timing) { // do framelimitting if sound is enabled\r
720ee7f6 937 gettimeofday(&tval, 0);\r
450dab6f 938 if (pthissec != tval.tv_sec) tval.tv_usec+=1000000;\r
939 if (tval.tv_usec < lim_time) { // we are too fast\r
940 simpleWait(pthissec, lim_time);\r
720ee7f6 941 }\r
942 }\r
943 lim_time += target_frametime;\r
944 }\r
450dab6f 945 }\r
946 else if (tval.tv_usec > lim_time) // auto frameskip\r
947 {\r
720ee7f6 948 // no time left for this frame - skip\r
f013066e 949 if (tval.tv_usec - lim_time >= 300000) {\r
d032c15a 950 /* something caused a slowdown for us (disk access? cache flush?)\r
951 * try to recover by resetting timing... */\r
952 reset_timing = 1;\r
953 continue;\r
954 }\r
720ee7f6 955 updateKeys();\r
450dab6f 956 SkipFrame(tval.tv_usec < lim_time+target_frametime*2); pframes_done++; frames_done++;\r
720ee7f6 957 continue;\r
958 }\r
959\r
960 updateKeys();\r
961 PicoFrame();\r
962\r
963 // check time\r
964 gettimeofday(&tval, 0);\r
450dab6f 965 if (pthissec != tval.tv_sec) tval.tv_usec+=1000000;\r
720ee7f6 966\r
f013066e 967 if (currentConfig.Frameskip < 0 && tval.tv_usec - lim_time >= 300000) // slowdown detection\r
d032c15a 968 reset_timing = 1;\r
969 else if (PsndOut != NULL || currentConfig.Frameskip < 0)\r
720ee7f6 970 {\r
59d0f042 971 // sleep or vsync if we are still too fast\r
720ee7f6 972 // usleep sleeps for ~20ms minimum, so it is not a solution here\r
0480e6c9 973 if (!reset_timing && tval.tv_usec < lim_time)\r
720ee7f6 974 {\r
975 // we are too fast\r
59d0f042 976 if (vsync_offset) {\r
977 if (lim_time - tval.tv_usec > target_frametime/2)\r
450dab6f 978 simpleWait(pthissec, lim_time - target_frametime/4);\r
59d0f042 979 gp2x_video_wait_vsync();\r
980 } else {\r
450dab6f 981 simpleWait(pthissec, lim_time);\r
59d0f042 982 }\r
720ee7f6 983 }\r
984 }\r
985\r
986 blit(fpsbuff, notice);\r
987\r
450dab6f 988 pframes_done++; pframes_shown++;\r
989 frames_done++; frames_shown++;\r
720ee7f6 990 }\r
991\r
8a091e48 992 emu_changeFastForward(0);\r
5f9922e6 993\r
dd5fd477 994 if (PicoAHW & PAHW_MCD) PicoCDBufferFree();\r
5f9922e6 995\r
720ee7f6 996 // save SRAM\r
997 if((currentConfig.EmuOpt & 1) && SRam.changed) {\r
6ab2f79c 998 emu_state_cb("Writing SRAM/BRAM..");\r
720ee7f6 999 emu_SaveLoadGame(0, 1);\r
1000 SRam.changed = 0;\r
1001 }\r
e5d315a5 1002\r
13059a60 1003 // if in 8bit mode, generate 16bit image for menu background\r
1004 if ((PicoOpt&0x10) || !(currentConfig.EmuOpt&0x80))\r
84e21f25 1005 emu_forcedFrame(POPT_EN_SOFTSCALE);\r
720ee7f6 1006}\r
1007\r
1008\r
1009void emu_ResetGame(void)\r
1010{\r
8d5cb10d 1011 PicoReset();\r
720ee7f6 1012 reset_timing = 1;\r
1013}\r
1014\r
049a6b3e 1015const char *plat_get_credits(void)\r
1016{\r
1017 return "PicoDrive v" VERSION " (c) notaz, 2006-2009\n\n\n"\r
1018 "Credits:\n"\r
1019 "fDave: Cyclone 68000 core,\n"\r
1020 " base code of PicoDrive\n"\r
1021 "Reesy & FluBBa: DrZ80 core\n"\r
1022 "MAME devs: YM2612 and SN76496 cores\n"\r
1023 "rlyeh and others: minimal SDK\n"\r
1024 "Squidge: squidgehack\n"\r
1025 "Dzz: ARM940 sample\n"\r
1026 "GnoStiC / Puck2099: USB joy code\n"\r
1027 "craigix: GP2X hardware\n"\r
1028 "ketchupgun: skin design\n"\r
1029 "\n"\r
1030 "special thanks (for docs, ideas):\n"\r
1031 " Charles MacDonald, Haze,\n"\r
1032 " Stephane Dallongeville,\n"\r
1033 " Lordus, Exophase, Rokas,\n"\r
1034 " Nemesis, Tasco Deluxe";\r
1035}\r