1 // (c) Copyright 2006-2008 notaz, All rights reserved.
\r
2 // Free for non-commercial use.
\r
4 // For commercial use, separate licencing terms must be obtained.
\r
8 #include <sys/time.h>
\r
9 #include <sys/stat.h>
\r
10 #include <sys/types.h>
\r
11 #include <linux/limits.h>
\r
17 #include "../gp2x/emu.h"
\r
18 #include "../gp2x/menu.h"
\r
19 #include "../gp2x/gp2x.h"
\r
20 #include "../common/arm_utils.h"
\r
21 #include "../common/fonts.h"
\r
22 #include "../common/emu.h"
\r
23 #include "../common/config.h"
\r
24 #include "../common/common.h"
\r
25 #include "../common/input.h"
\r
26 #include "../linux/sndout_oss.h"
\r
27 #include "asm_utils.h"
\r
29 #include <pico/pico_int.h>
\r
30 #include <pico/patch.h>
\r
31 #include <pico/sound/mix.h>
\r
32 #include <zlib/zlib.h>
\r
36 //#define USE_320_SCREEN 1
\r
39 #define OSD_FPS_X (800-200)
\r
41 #define OSD_FPS_X (800-120)
\r
45 int select_exits = 0;
\r
47 static short __attribute__((aligned(4))) sndBuffer[2*44100/50];
\r
48 static struct timeval noticeMsgTime = { 0, 0 }; // when started showing
\r
49 static int osd_fps_x;
\r
50 unsigned char *PicoDraw2FB = NULL; // temporary buffer for alt renderer
\r
51 int reset_timing = 0;
\r
53 #define PICO_PEN_ADJUST_X 4
\r
54 #define PICO_PEN_ADJUST_Y 2
\r
55 static int pico_pen_x = SCREEN_WIDTH/2, pico_pen_y = 240/2;
\r
57 static void emu_msg_cb(const char *msg);
\r
58 static void emu_msg_tray_open(void);
\r
61 void emu_noticeMsgUpdated(void)
\r
63 gettimeofday(¬iceMsgTime, 0);
\r
66 int emu_getMainDir(char *dst, int len)
\r
68 extern char **g_argv;
\r
71 strncpy(dst, g_argv[0], len);
\r
72 len -= 32; // reserve
\r
73 if (len < 0) len = 0;
\r
75 for (j = strlen(dst); j > 0; j--)
\r
76 if (dst[j] == '/') { dst[j+1] = 0; break; }
\r
83 // make temp buffer for alt renderer
\r
84 PicoDraw2FB = malloc((8+320)*(8+240+8));
\r
87 printf("PicoDraw2FB == 0\n");
\r
90 // make dirs for saves, cfgs, etc.
\r
97 PicoMessage = emu_msg_cb;
\r
98 PicoMCDopenTray = emu_msg_tray_open;
\r
99 PicoMCDcloseTray = menu_loop_tray;
\r
103 void emu_Deinit(void)
\r
106 if((currentConfig.EmuOpt & 1) && SRam.changed) {
\r
107 emu_SaveLoadGame(0, 1);
\r
111 if (!(currentConfig.EmuOpt & 0x20)) {
\r
112 config_writelrom(PicoConfigFile);
\r
123 void emu_prepareDefaultConfig(void)
\r
125 memset(&defaultConfig, 0, sizeof(defaultConfig));
\r
126 defaultConfig.EmuOpt = 0x8f | 0x00600; // | <- confirm_save, cd_leds
\r
127 defaultConfig.s_PicoOpt = 0x0f | POPT_EXT_FM|POPT_EN_MCD_PCM|POPT_EN_MCD_CDDA|POPT_EN_SVP_DRC;
\r
128 defaultConfig.s_PicoOpt |= POPT_ACC_SPRITES|POPT_EN_MCD_GFX;
\r
129 // defaultConfig.s_PicoOpt &= ~POPT_EN_SVP_DRC; // crashes :(
\r
130 defaultConfig.EmuOpt &= ~8; // no save gzip
\r
131 defaultConfig.s_PsndRate = 44100;
\r
132 defaultConfig.s_PicoRegion = 0;
\r
133 defaultConfig.s_PicoAutoRgnOrder = 0x184; // US, EU, JP
\r
134 defaultConfig.s_PicoCDBuffers = 0;
\r
135 defaultConfig.Frameskip = 0;
\r
136 defaultConfig.CPUclock = 200;
\r
137 defaultConfig.volume = 50;
\r
138 defaultConfig.scaling = 0;
\r
139 defaultConfig.turbo_rate = 15;
\r
142 static void textOut16(int x, int y, const char *text)
\r
144 int i,l,len=strlen(text);
\r
145 unsigned int *screen = (unsigned int *)((unsigned short *)SCREEN_BUFFER + (x&~1) + y*SCREEN_WIDTH);
\r
147 for (i = 0; i < len; i++)
\r
151 unsigned char fd = fontdata8x8[((text[i])*8)+l/2];
\r
152 unsigned int *d = &screen[l*SCREEN_WIDTH/2];
\r
153 if (fd&0x80) d[0]=0xffffffff;
\r
154 if (fd&0x40) d[1]=0xffffffff;
\r
155 if (fd&0x20) d[2]=0xffffffff;
\r
156 if (fd&0x10) d[3]=0xffffffff;
\r
157 if (fd&0x08) d[4]=0xffffffff;
\r
158 if (fd&0x04) d[5]=0xffffffff;
\r
159 if (fd&0x02) d[6]=0xffffffff;
\r
160 if (fd&0x01) d[7]=0xffffffff;
\r
161 l++; d = &screen[l*SCREEN_WIDTH/2];
\r
162 if (fd&0x80) d[0]=0xffffffff;
\r
163 if (fd&0x40) d[1]=0xffffffff;
\r
164 if (fd&0x20) d[2]=0xffffffff;
\r
165 if (fd&0x10) d[3]=0xffffffff;
\r
166 if (fd&0x08) d[4]=0xffffffff;
\r
167 if (fd&0x04) d[5]=0xffffffff;
\r
168 if (fd&0x02) d[6]=0xffffffff;
\r
169 if (fd&0x01) d[7]=0xffffffff;
\r
177 void osd_text(int x, int y, const char *text)
\r
179 int len = strlen(text)*8;
\r
181 if ((PicoOpt&0x10)||!(currentConfig.EmuOpt&0x80)) {
\r
183 x &= ~3; // align x
\r
184 len = (len+3) >> 2;
\r
185 for (h = 0; h < 8; h++) {
\r
186 p = (int *) ((unsigned char *) gp2x_screen+x+SCREEN_WIDTH*(y+h));
\r
187 for (i = len; i; i--, p++) *p = 0xe0e0e0e0;
\r
189 emu_textOut8(x, y, text);
\r
192 x &= ~1; // align x
\r
194 for (h = 0; h < 16; h++) {
\r
195 p = (int *) ((unsigned short *) gp2x_screen+x+SCREEN_WIDTH*(y+h));
\r
196 for (i = len; i; i--, p++) *p = 0;//(*p>>2)&0x39e7;
\r
198 textOut16(x, y, text);
\r
202 static void draw_cd_leds(void)
\r
206 // if (!((Pico_mcd->s68k_regs[0] ^ old_reg) & 3)) return; // no change // mmu hack problems?
\r
207 old_reg = Pico_mcd->s68k_regs[0];
\r
209 if ((PicoOpt&0x10)||!(currentConfig.EmuOpt&0x80)) {
\r
211 unsigned int col_g = (old_reg & 2) ? 0xc0c0c0c0 : 0xe0e0e0e0;
\r
212 unsigned int col_r = (old_reg & 1) ? 0xd0d0d0d0 : 0xe0e0e0e0;
\r
213 *(unsigned int *)((char *)gp2x_screen + SCREEN_WIDTH*2+ 4) =
\r
214 *(unsigned int *)((char *)gp2x_screen + SCREEN_WIDTH*3+ 4) =
\r
215 *(unsigned int *)((char *)gp2x_screen + SCREEN_WIDTH*4+ 4) = col_g;
\r
216 *(unsigned int *)((char *)gp2x_screen + SCREEN_WIDTH*2+12) =
\r
217 *(unsigned int *)((char *)gp2x_screen + SCREEN_WIDTH*3+12) =
\r
218 *(unsigned int *)((char *)gp2x_screen + SCREEN_WIDTH*4+12) = col_r;
\r
221 unsigned int *p = (unsigned int *)((short *)gp2x_screen + SCREEN_WIDTH*2+4);
\r
222 unsigned int col_g = (old_reg & 2) ? 0x06000600 : 0;
\r
223 unsigned int col_r = (old_reg & 1) ? 0xc000c000 : 0;
\r
224 *p++ = col_g; *p++ = col_g; p+=2; *p++ = col_r; *p++ = col_r; p += SCREEN_WIDTH/2 - 12/2;
\r
225 *p++ = col_g; *p++ = col_g; p+=2; *p++ = col_r; *p++ = col_r; p += SCREEN_WIDTH/2 - 12/2;
\r
226 *p++ = col_g; *p++ = col_g; p+=2; *p++ = col_r; *p++ = col_r;
\r
230 static void draw_pico_ptr(void)
\r
232 unsigned short *p = (unsigned short *)gp2x_screen;
\r
234 // only if pen enabled and for 16bit modes
\r
235 if (pico_inp_mode == 0 || (PicoOpt&0x10) || !(currentConfig.EmuOpt&0x80)) return;
\r
237 if (!(Pico.video.reg[12]&1) && !(PicoOpt&POPT_DIS_32C_BORDER))
\r
240 p += SCREEN_WIDTH * (pico_pen_y + PICO_PEN_ADJUST_Y);
\r
241 p += pico_pen_x + PICO_PEN_ADJUST_X;
\r
249 #ifdef USE_320_SCREEN
\r
251 static int EmuScanBegin16(unsigned int num)
\r
253 if (!(Pico.video.reg[1]&8)) num += 8;
\r
254 DrawLineDest = (unsigned short *)gp2x_screen + num*800 + 800/2 - 320/2;
\r
255 //int w = (Pico.video.reg[12]&1) ? 320 : 256;
\r
256 //DrawLineDest = (unsigned short *)gp2x_screen + num*w;
\r
261 #else // USE_320_SCREEN
\r
263 static int EmuScanEnd16(unsigned int num)
\r
265 unsigned char *ps=HighCol+8;
\r
266 unsigned short *pd;
\r
267 unsigned short *pal=HighPal;
\r
268 int sh = Pico.video.reg[0xC]&8;
\r
269 int len, mask = 0xff;
\r
271 if (!(Pico.video.reg[1]&8)) num += 8;
\r
272 pd=(unsigned short *)gp2x_screen + num*800*2 + 800/2 - 320*2/2;
\r
274 if (Pico.m.dirtyPal)
\r
275 PicoDoHighPal555(sh);
\r
277 if (Pico.video.reg[12]&1) {
\r
284 if (!sh && (rendstatus & PDRAW_SPR_LO_ON_HI))
\r
285 mask=0x3f; // messed sprites, upper bits are priority stuff
\r
288 clut_line(pd, ps, pal, (mask<<16) | len);
\r
290 for (; len > 0; len--)
\r
292 unsigned int p = pal[*ps++ & mask];
\r
294 *(unsigned int *)pd = p;
\r
295 *(unsigned int *)(&pd[800]) = p;
\r
303 #endif // USE_320_SCREEN
\r
305 static int EmuScanBegin8(unsigned int num)
\r
307 if (!(Pico.video.reg[1]&8)) num += 8;
\r
308 DrawLineDest = (unsigned char *) gp2x_screen + SCREEN_WIDTH * num;
\r
313 int localPal[0x100];
\r
314 static void (*vidCpyM2)(void *dest, void *src) = NULL;
\r
316 static void blit(const char *fps, const char *notice)
\r
318 int emu_opt = currentConfig.EmuOpt;
\r
322 // 8bit fast renderer
\r
323 if (Pico.m.dirtyPal) {
\r
324 Pico.m.dirtyPal = 0;
\r
325 vidConvCpyRGB32(localPal, Pico.cram, 0x40);
\r
326 // feed new palette to our device
\r
327 gp2x_video_setpalette(localPal, 0x40);
\r
330 if (PicoRead16Hook == PicoSVPRead16)
\r
331 memset32((int *)(PicoDraw2FB+328*8+328*223), 0xe0e0e0e0, 328);
\r
333 vidCpyM2((unsigned char *)gp2x_screen+SCREEN_WIDTH*8, PicoDraw2FB+328*8);
\r
335 else if (!(emu_opt&0x80))
\r
337 // 8bit accurate renderer
\r
338 if (Pico.m.dirtyPal)
\r
341 Pico.m.dirtyPal = 0;
\r
342 if (Pico.video.reg[0xC]&8) // shadow/hilight mode
\r
344 vidConvCpyRGB32(localPal, Pico.cram, 0x40);
\r
345 vidConvCpyRGB32sh(localPal+0x40, Pico.cram, 0x40);
\r
346 vidConvCpyRGB32hi(localPal+0x80, Pico.cram, 0x40);
\r
347 memcpy32(localPal+0xc0, localPal+0x40, 0x40);
\r
350 else if (rendstatus & PDRAW_SONIC_MODE) { // mid-frame palette changes
\r
351 vidConvCpyRGB32(localPal, Pico.cram, 0x40);
\r
352 vidConvCpyRGB32(localPal+0x40, HighPal, 0x40);
\r
353 vidConvCpyRGB32(localPal+0x80, HighPal+0x40, 0x40);
\r
357 vidConvCpyRGB32(localPal, Pico.cram, 0x40);
\r
358 memcpy32(localPal+0x80, localPal, 0x40);
\r
360 if (pallen > 0xc0) {
\r
361 localPal[0xc0] = 0x0000c000;
\r
362 localPal[0xd0] = 0x00c00000;
\r
363 localPal[0xe0] = 0x00000000; // reserved pixels for OSD
\r
364 localPal[0xf0] = 0x00ffffff;
\r
366 gp2x_video_setpalette(localPal, pallen);
\r
370 if (notice || (emu_opt & 2)) {
\r
371 int h = SCREEN_HEIGHT-16;
\r
372 if (currentConfig.scaling == 2 && !(Pico.video.reg[1]&8)) h -= 16;
\r
373 if (notice) osd_text(4, h, notice);
\r
375 osd_text(osd_fps_x, h, fps);
\r
377 if ((emu_opt & 0x400) && (PicoAHW & PAHW_MCD))
\r
379 if (PicoAHW & PAHW_PICO)
\r
383 //memset((char *)gp2x_screen+800*471*2, (u++)>>1, 800*9*2);
\r
386 //gp2x_video_wait_vsync();
\r
391 // clears whole screen or just the notice area (in all buffers)
\r
392 static void clearArea(int full)
\r
394 if ((PicoOpt&0x10)||!(currentConfig.EmuOpt&0x80)) {
\r
396 if (full) gp2x_memset_all_buffers(0, 0xe0, SCREEN_WIDTH*240);
\r
397 else gp2x_memset_all_buffers(SCREEN_WIDTH*232, 0xe0, SCREEN_WIDTH*8);
\r
399 // 16bit accurate renderer
\r
400 if (full) gp2x_memset_all_buffers(0, 0, SCREEN_WIDTH*SCREEN_HEIGHT*2);
\r
401 else gp2x_memset_all_buffers(SCREEN_WIDTH*(SCREEN_HEIGHT-16)*2, 0, SCREEN_WIDTH*16*2);
\r
406 static void vidResetMode(void)
\r
408 if (PicoOpt&0x10) {
\r
409 gp2x_video_changemode(8);
\r
410 } else if (currentConfig.EmuOpt&0x80) {
\r
411 gp2x_video_changemode(16);
\r
412 #ifdef USE_320_SCREEN
\r
413 PicoDrawSetColorFormat(1);
\r
414 PicoScanBegin = EmuScanBegin16;
\r
416 PicoDrawSetColorFormat(-1);
\r
417 PicoScanEnd = EmuScanEnd16;
\r
420 gp2x_video_changemode(8);
\r
421 PicoDrawSetColorFormat(2);
\r
422 PicoScanBegin = EmuScanBegin8;
\r
424 if ((PicoOpt&0x10)||!(currentConfig.EmuOpt&0x80)) {
\r
425 // setup pal for 8-bit modes
\r
426 localPal[0xc0] = 0x0000c000; // MCD LEDs
\r
427 localPal[0xd0] = 0x00c00000;
\r
428 localPal[0xe0] = 0x00000000; // reserved pixels for OSD
\r
429 localPal[0xf0] = 0x00ffffff;
\r
430 gp2x_video_setpalette(localPal, 0x100);
\r
431 gp2x_memset_all_buffers(0, 0xe0, 320*240);
\r
434 Pico.m.dirtyPal = 1;
\r
436 if (currentConfig.scaling == 2 && !(Pico.video.reg[1]&8))
\r
437 gp2x_video_RGB_setscaling(8, (PicoOpt&0x100)&&!(Pico.video.reg[12]&1) ? 256 : 320, 224);
\r
438 else gp2x_video_RGB_setscaling(0, (PicoOpt&0x100)&&!(Pico.video.reg[12]&1) ? 256 : 320, 240);
\r
442 static void emu_msg_cb(const char *msg)
\r
444 if ((PicoOpt&0x10)||!(currentConfig.EmuOpt&0x80)) {
\r
446 gp2x_memset_all_buffers(SCREEN_WIDTH*(SCREEN_HEIGHT-16), 0xe0, SCREEN_WIDTH*16);
\r
447 osd_text(4, SCREEN_HEIGHT-16, msg);
\r
448 gp2x_memcpy_all_buffers((char *)gp2x_screen+SCREEN_WIDTH*(SCREEN_HEIGHT-16),
\r
449 SCREEN_WIDTH*(SCREEN_HEIGHT-16), SCREEN_WIDTH*16);
\r
451 // 16bit accurate renderer
\r
452 gp2x_memset_all_buffers(SCREEN_WIDTH*(SCREEN_HEIGHT-16)*2, 0, SCREEN_WIDTH*16*2);
\r
453 osd_text(4, SCREEN_HEIGHT-16, msg);
\r
454 gp2x_memcpy_all_buffers((char *)gp2x_screen+SCREEN_WIDTH*(SCREEN_HEIGHT-16)*2,
\r
455 SCREEN_WIDTH*(SCREEN_HEIGHT-16)*2, SCREEN_WIDTH*16*2);
\r
457 gettimeofday(¬iceMsgTime, 0);
\r
458 noticeMsgTime.tv_sec -= 2;
\r
460 /* assumption: emu_msg_cb gets called only when something slow is about to happen */
\r
464 static void emu_state_cb(const char *str)
\r
470 static void emu_msg_tray_open(void)
\r
472 strcpy(noticeMsg, "CD tray opened");
\r
473 gettimeofday(¬iceMsgTime, 0);
\r
477 static void RunEventsPico(unsigned int events, unsigned int gp2x_keys)
\r
479 int ret, px, py, lim_x;
\r
480 static int pdown_frames = 0;
\r
482 emu_RunEventsPico(events);
\r
484 if (pico_inp_mode == 0) return;
\r
487 ret = gp2x_touchpad_read(&px, &py);
\r
492 if (pdown_frames++ > 5)
\r
493 PicoPad[0] |= 0x20;
\r
497 if (!(Pico.video.reg[12]&1)) {
\r
499 if (pico_pen_x < 0) pico_pen_x = 0;
\r
500 if (pico_pen_x > 248) pico_pen_x = 248;
\r
502 if (pico_pen_y > 224) pico_pen_y = 224;
\r
508 // PicoPicohw.pen_pos[0] = PicoPicohw.pen_pos[1] = 0x8000;
\r
511 PicoPad[0] &= ~0x0f; // release UDLR
\r
512 if (gp2x_keys & GP2X_UP) pico_pen_y--;
\r
513 if (gp2x_keys & GP2X_DOWN) pico_pen_y++;
\r
514 if (gp2x_keys & GP2X_LEFT) pico_pen_x--;
\r
515 if (gp2x_keys & GP2X_RIGHT) pico_pen_x++;
\r
517 lim_x = (Pico.video.reg[12]&1) ? 319 : 255;
\r
518 if (pico_pen_y < 8) pico_pen_y = 8;
\r
519 if (pico_pen_y > 224-PICO_PEN_ADJUST_Y) pico_pen_y = 224-PICO_PEN_ADJUST_Y;
\r
520 if (pico_pen_x < 0) pico_pen_x = 0;
\r
521 if (pico_pen_x > lim_x-PICO_PEN_ADJUST_X) pico_pen_x = lim_x-PICO_PEN_ADJUST_X;
\r
523 PicoPicohw.pen_pos[0] = pico_pen_x;
\r
524 if (!(Pico.video.reg[12]&1)) PicoPicohw.pen_pos[0] += pico_pen_x/4;
\r
525 PicoPicohw.pen_pos[0] += 0x3c;
\r
526 PicoPicohw.pen_pos[1] = pico_inp_mode == 1 ? (0x2f8 + pico_pen_y) : (0x1fc + pico_pen_y);
\r
530 static void update_volume(int has_changed, int is_up)
\r
532 static int prev_frame = 0, wait_frames = 0;
\r
533 int vol = currentConfig.volume;
\r
537 if (vol < 5 && (PicoOpt&8) && prev_frame == Pico.m.frame_count - 1 && wait_frames < 12)
\r
541 if (vol < 99) vol++;
\r
543 if (vol > 0) vol--;
\r
546 sndout_oss_setvol(vol, vol);
\r
547 currentConfig.volume = vol;
\r
549 sprintf(noticeMsg, "VOL: %02i", vol);
\r
550 gettimeofday(¬iceMsgTime, 0);
\r
551 prev_frame = Pico.m.frame_count;
\r
554 // set the right mixer func
\r
555 if (!(PicoOpt&8)) return; // just use defaults for mono
\r
557 PsndMix_32_to_16l = mix_32_to_16l_stereo;
\r
559 mix_32_to_16l_level = 5 - vol;
\r
560 PsndMix_32_to_16l = mix_32_to_16l_stereo_lvl;
\r
564 static void RunEvents(unsigned int which)
\r
566 if (which & 0x1800) // save or load (but not both)
\r
569 if ( emu_checkSaveFile(state_slot) &&
\r
570 (( (which & 0x1000) && (currentConfig.EmuOpt & 0x800)) || // load
\r
571 (!(which & 0x1000) && (currentConfig.EmuOpt & 0x200))) ) { // save
\r
573 unsigned long keys;
\r
574 blit("", (which & 0x1000) ? "LOAD STATE? (Y=yes, X=no)" : "OVERWRITE SAVE? (Y=yes, X=no)");
\r
575 while ( !((keys = gp2x_joystick_read(1)) & (GP2X_X|GP2X_Y)) )
\r
577 if (keys & GP2X_X) do_it = 0;
\r
578 while ( gp2x_joystick_read(1) & (GP2X_X|GP2X_Y) ) // wait for release
\r
584 osd_text(4, SCREEN_HEIGHT-16, (which & 0x1000) ? "LOADING GAME" : "SAVING GAME");
\r
585 PicoStateProgressCB = emu_state_cb;
\r
586 gp2x_memcpy_all_buffers(gp2x_screen, 0, SCREEN_WIDTH*SCREEN_HEIGHT*2);
\r
587 emu_SaveLoadGame((which & 0x1000) >> 12, 0);
\r
588 PicoStateProgressCB = NULL;
\r
593 if (which & 0x0400) // switch renderer
\r
595 if ( PicoOpt&0x10) { PicoOpt&=~0x10; currentConfig.EmuOpt |= 0x80; }
\r
596 else if (!(currentConfig.EmuOpt&0x80)) PicoOpt|= 0x10;
\r
597 else currentConfig.EmuOpt &= ~0x80;
\r
601 if (PicoOpt&0x10) {
\r
602 strcpy(noticeMsg, " 8bit fast renderer");
\r
603 } else if (currentConfig.EmuOpt&0x80) {
\r
604 strcpy(noticeMsg, "16bit accurate renderer");
\r
606 strcpy(noticeMsg, " 8bit accurate renderer");
\r
609 gettimeofday(¬iceMsgTime, 0);
\r
611 if (which & 0x0300)
\r
615 if(state_slot < 0) state_slot = 9;
\r
618 if(state_slot > 9) state_slot = 0;
\r
620 sprintf(noticeMsg, "SAVE SLOT %i [%s]", state_slot, emu_checkSaveFile(state_slot) ? "USED" : "FREE");
\r
621 gettimeofday(¬iceMsgTime, 0);
\r
623 if (which & 0x0080) {
\r
624 engineState = PGS_Menu;
\r
628 static void updateKeys(void)
\r
630 unsigned int allActions[2] = { 0, 0 }, events;
\r
631 static unsigned int prevEvents = 0;
\r
633 /* FIXME: combos, player2 */
\r
634 allActions[0] = in_update();
\r
636 PicoPad[0] = allActions[0] & 0xfff;
\r
637 PicoPad[1] = allActions[1] & 0xfff;
\r
639 if (allActions[0] & 0x7000) emu_DoTurbo(&PicoPad[0], allActions[0]);
\r
640 if (allActions[1] & 0x7000) emu_DoTurbo(&PicoPad[1], allActions[1]);
\r
642 events = (allActions[0] | allActions[1]) >> 16;
\r
644 // volume is treated in special way and triggered every frame
\r
645 if (events & 0x6000)
\r
646 update_volume(1, events & 0x2000);
\r
648 if ((events ^ prevEvents) & 0x40) {
\r
649 emu_changeFastForward(events & 0x40);
\r
650 update_volume(0, 0);
\r
654 events &= ~prevEvents;
\r
657 if (PicoAHW == PAHW_PICO)
\r
658 RunEventsPico(events, keys);
\r
660 if (events) RunEvents(events);
\r
661 if (movie_data) emu_updateMovie();
\r
663 prevEvents = (allActions[0] | allActions[1]) >> 16;
\r
667 static void updateSound(int len)
\r
669 if (PicoOpt&8) len<<=1;
\r
671 /* avoid writing audio when lagging behind to prevent audio lag */
\r
672 if (PicoSkipFrame != 2)
\r
673 sndout_oss_write(PsndOut, len<<1);
\r
677 static void SkipFrame(int do_audio)
\r
679 PicoSkipFrame=do_audio ? 1 : 2;
\r
685 void emu_forcedFrame(int opts)
\r
687 int po_old = PicoOpt;
\r
688 int eo_old = currentConfig.EmuOpt;
\r
691 PicoOpt |= opts|POPT_ACC_SPRITES; // acc_sprites
\r
692 currentConfig.EmuOpt |= 0x80;
\r
695 #ifdef USE_320_SCREEN
\r
696 PicoDrawSetColorFormat(1);
\r
697 PicoScanBegin = EmuScanBegin16;
\r
699 PicoDrawSetColorFormat(-1);
\r
700 PicoScanEnd = EmuScanEnd16;
\r
702 Pico.m.dirtyPal = 1;
\r
703 PicoFrameDrawOnly();
\r
706 if (!(Pico.video.reg[12]&1)) {
\r
707 vidCpyM2 = vidCpyM2_32col;
\r
709 } else vidCpyM2 = vidCpyM2_40col;
\r
711 vidCpyM2((unsigned char *)gp2x_screen+SCREEN_WIDTH*8, PicoDraw2FB+328*8);
\r
712 vidConvCpyRGB32(localPal, Pico.cram, 0x40);
\r
713 gp2x_video_setpalette(localPal, 0x40);
\r
716 currentConfig.EmuOpt = eo_old;
\r
719 void emu_platformDebugCat(char *str)
\r
724 static void simpleWait(int thissec, int lim_time)
\r
726 struct timeval tval;
\r
728 spend_cycles(1024);
\r
729 gettimeofday(&tval, 0);
\r
730 if (thissec != tval.tv_sec) tval.tv_usec+=1000000;
\r
732 while (tval.tv_usec < lim_time)
\r
734 spend_cycles(1024);
\r
735 gettimeofday(&tval, 0);
\r
736 if (thissec != tval.tv_sec) tval.tv_usec+=1000000;
\r
740 void emu_startSound(void)
\r
742 static int PsndRate_old = 0, PicoOpt_old = 0, pal_old = 0;
\r
743 int target_fps = Pico.m.pal ? 50 : 60;
\r
747 if (currentConfig.EmuOpt & 4)
\r
749 int snd_excess_add;
\r
750 if (PsndRate != PsndRate_old || (PicoOpt&0x20b) != (PicoOpt_old&0x20b) || Pico.m.pal != pal_old)
\r
751 PsndRerate(Pico.m.frame_count ? 1 : 0);
\r
753 snd_excess_add = ((PsndRate - PsndLen*target_fps)<<16) / target_fps;
\r
754 printf("starting audio: %i len: %i (ex: %04x) stereo: %i, pal: %i\n",
\r
755 PsndRate, PsndLen, snd_excess_add, (PicoOpt&8)>>3, Pico.m.pal);
\r
756 sndout_oss_start(PsndRate, 16, (PicoOpt&8)>>3);
\r
757 sndout_oss_setvol(currentConfig.volume, currentConfig.volume);
\r
758 PicoWriteSound = updateSound;
\r
759 update_volume(0, 0);
\r
760 memset(sndBuffer, 0, sizeof(sndBuffer));
\r
761 PsndOut = sndBuffer;
\r
762 PsndRate_old = PsndRate;
\r
763 PicoOpt_old = PicoOpt;
\r
764 pal_old = Pico.m.pal;
\r
768 void emu_endSound(void)
\r
772 /* wait until we can write more sound */
\r
773 void emu_waitSound(void)
\r
775 // don't need to do anything, writes will block by themselves
\r
778 void emu_Loop(void)
\r
780 char fpsbuff[24]; // fps count c string
\r
781 struct timeval tval; // timing
\r
782 int pframes_done, pframes_shown, pthissec; // "period" frames, used for sync
\r
783 int frames_done, frames_shown, thissec; // actual frames
\r
784 int oldmodes = 0, target_fps, target_frametime, lim_time, vsync_offset, i;
\r
787 printf("entered emu_Loop()\n");
\r
791 // make sure we are in correct mode
\r
793 Pico.m.dirtyPal = 1;
\r
794 oldmodes = ((Pico.video.reg[12]&1)<<2) ^ 0xc;
\r
795 emu_findKeyBindCombos();
\r
797 // pal/ntsc might have changed, reset related stuff
\r
798 target_fps = Pico.m.pal ? 50 : 60;
\r
799 target_frametime = 1000000/target_fps;
\r
804 // prepare CD buffer
\r
805 if (PicoAHW & PAHW_MCD) PicoCDBufferInit();
\r
807 // calc vsync offset to sync timing code with vsync
\r
808 if (currentConfig.EmuOpt&0x2000) {
\r
809 gettimeofday(&tval, 0);
\r
810 gp2x_video_wait_vsync();
\r
811 gettimeofday(&tval, 0);
\r
812 vsync_offset = tval.tv_usec;
\r
813 while (vsync_offset >= target_frametime)
\r
814 vsync_offset -= target_frametime;
\r
815 if (!vsync_offset) vsync_offset++;
\r
816 printf("vsync_offset: %i\n", vsync_offset);
\r
820 frames_done = frames_shown = thissec =
\r
821 pframes_done = pframes_shown = pthissec = 0;
\r
824 while (engineState == PGS_Running)
\r
828 gettimeofday(&tval, 0);
\r
829 if (reset_timing) {
\r
831 pthissec = tval.tv_sec;
\r
832 pframes_shown = pframes_done = tval.tv_usec/target_frametime;
\r
835 // show notice message?
\r
836 if (noticeMsgTime.tv_sec)
\r
838 static int noticeMsgSum;
\r
839 if((tval.tv_sec*1000000+tval.tv_usec) - (noticeMsgTime.tv_sec*1000000+noticeMsgTime.tv_usec) > 2000000) { // > 2.0 sec
\r
840 noticeMsgTime.tv_sec = noticeMsgTime.tv_usec = 0;
\r
844 int sum = noticeMsg[0]+noticeMsg[1]+noticeMsg[2];
\r
845 if (sum != noticeMsgSum) { clearArea(0); noticeMsgSum = sum; }
\r
846 notice = noticeMsg;
\r
850 // check for mode changes
\r
851 modes = ((Pico.video.reg[12]&1)<<2)|(Pico.video.reg[1]&8);
\r
852 if (modes != oldmodes)
\r
854 int scalex = SCREEN_WIDTH;
\r
855 osd_fps_x = OSD_FPS_X;
\r
857 vidCpyM2 = vidCpyM2_40col;
\r
859 if (PicoOpt & 0x100) {
\r
860 vidCpyM2 = vidCpyM2_32col_nobord;
\r
862 osd_fps_x = OSD_FPS_X - 64;
\r
864 vidCpyM2 = vidCpyM2_32col;
\r
867 if (currentConfig.scaling == 2 && !(modes&8)) // want vertical scaling and game is not in 240 line mode
\r
868 gp2x_video_RGB_setscaling(8, scalex, 224);
\r
869 else gp2x_video_RGB_setscaling(0, scalex, 240);
\r
875 if (thissec != tval.tv_sec)
\r
878 static int bench = 0, bench_fps = 0, bench_fps_s = 0, bfp = 0, bf[4];
\r
879 if (++bench == 4) {
\r
881 bench_fps_s = bench_fps / 4;
\r
882 bf[bfp++ & 3] = bench_fps / 4;
\r
885 bench_fps += frames_shown;
\r
886 sprintf(fpsbuff, "%3i/%3i/%3i", frames_shown, bench_fps_s, (bf[0]+bf[1]+bf[2]+bf[3])>>2);
\r
887 printf("%s\n", fpsbuff);
\r
889 if (currentConfig.EmuOpt & 2) {
\r
890 sprintf(fpsbuff, "%3i/%3i", frames_shown, frames_done);
\r
891 if (fpsbuff[5] == 0) { fpsbuff[5] = fpsbuff[6] = ' '; fpsbuff[7] = 0; }
\r
894 frames_shown = frames_done = 0;
\r
895 thissec = tval.tv_sec;
\r
898 sprintf(fpsbuff, "%i", Pico.m.frame_count);
\r
901 if (pthissec != tval.tv_sec)
\r
903 if (PsndOut == 0 && currentConfig.Frameskip >= 0) {
\r
904 pframes_done = pframes_shown = 0;
\r
906 // it is quite common for this implementation to leave 1 fame unfinished
\r
907 // when second changes, but we don't want buffer to starve.
\r
908 if(PsndOut && pframes_done < target_fps && pframes_done > target_fps-5) {
\r
910 SkipFrame(1); pframes_done++;
\r
913 pframes_done -= target_fps; if (pframes_done < 0) pframes_done = 0;
\r
914 pframes_shown -= target_fps; if (pframes_shown < 0) pframes_shown = 0;
\r
915 if (pframes_shown > pframes_done) pframes_shown = pframes_done;
\r
917 pthissec = tval.tv_sec;
\r
920 lim_time = (pframes_done+1) * target_frametime + vsync_offset;
\r
921 if (currentConfig.Frameskip >= 0) // frameskip enabled
\r
923 for(i = 0; i < currentConfig.Frameskip; i++) {
\r
925 SkipFrame(1); pframes_done++; frames_done++;
\r
926 if (PsndOut && !reset_timing) { // do framelimitting if sound is enabled
\r
927 gettimeofday(&tval, 0);
\r
928 if (pthissec != tval.tv_sec) tval.tv_usec+=1000000;
\r
929 if (tval.tv_usec < lim_time) { // we are too fast
\r
930 simpleWait(pthissec, lim_time);
\r
933 lim_time += target_frametime;
\r
936 else if (tval.tv_usec > lim_time) // auto frameskip
\r
938 // no time left for this frame - skip
\r
939 if (tval.tv_usec - lim_time >= 300000) {
\r
940 /* something caused a slowdown for us (disk access? cache flush?)
\r
941 * try to recover by resetting timing... */
\r
946 SkipFrame(tval.tv_usec < lim_time+target_frametime*2); pframes_done++; frames_done++;
\r
954 gettimeofday(&tval, 0);
\r
955 if (pthissec != tval.tv_sec) tval.tv_usec+=1000000;
\r
957 if (currentConfig.Frameskip < 0 && tval.tv_usec - lim_time >= 300000) // slowdown detection
\r
960 else if (PsndOut != NULL || currentConfig.Frameskip < 0)
\r
962 // sleep or vsync if we are still too fast
\r
963 // usleep sleeps for ~20ms minimum, so it is not a solution here
\r
964 if (!reset_timing && tval.tv_usec < lim_time)
\r
967 if (vsync_offset) {
\r
968 if (lim_time - tval.tv_usec > target_frametime/2)
\r
969 simpleWait(pthissec, lim_time - target_frametime/4);
\r
970 gp2x_video_wait_vsync();
\r
972 simpleWait(pthissec, lim_time);
\r
977 blit(fpsbuff, notice);
\r
979 pframes_done++; pframes_shown++;
\r
980 frames_done++; frames_shown++;
\r
983 emu_changeFastForward(0);
\r
985 if (PicoAHW & PAHW_MCD) PicoCDBufferFree();
\r
988 if((currentConfig.EmuOpt & 1) && SRam.changed) {
\r
989 emu_state_cb("Writing SRAM/BRAM..");
\r
990 emu_SaveLoadGame(0, 1);
\r
994 // if in 8bit mode, generate 16bit image for menu background
\r
995 if ((PicoOpt&0x10) || !(currentConfig.EmuOpt&0x80))
\r
996 emu_forcedFrame(POPT_EN_SOFTSCALE);
\r
1000 void emu_ResetGame(void)
\r