X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fgizmondo%2Femu.c;h=e4fdab2c7729d24ae9973c2a2e8bc4325040e5d5;hb=da42200b24749eee63cccf49d87781b861146e9f;hp=d404d554679538d1a6ce4c7ce7d6be745f80558d;hpb=f3d1de29dacce5e79cc644ce05064da9bc44af62;p=picodrive.git diff --git a/platform/gizmondo/emu.c b/platform/gizmondo/emu.c index d404d55..e4fdab2 100644 --- a/platform/gizmondo/emu.c +++ b/platform/gizmondo/emu.c @@ -73,6 +73,8 @@ static void emu_state_cb(const char *str) Framework2D_UnlockBuffer(); giz_screen = NULL; + + Sleep(0); /* yield the CPU, the system may need it */ } static void emu_msg_tray_open(void) @@ -140,6 +142,7 @@ void emu_setDefaultConfig(void) currentConfig.KeyBinds[ 6] = 1<<5; currentConfig.KeyBinds[ 7] = 1<<6; currentConfig.KeyBinds[ 4] = 1<<7; + currentConfig.KeyBinds[13] = 1<<26; // switch rend currentConfig.KeyBinds[ 8] = 1<<27; // save state currentConfig.KeyBinds[ 9] = 1<<28; // load state currentConfig.KeyBinds[12] = 1<<29; // vol up @@ -154,6 +157,9 @@ static int EmuScan16(unsigned int num, void *sdata) if (!(Pico.video.reg[1]&8)) num += 8; DrawLineDest = (unsigned short *) giz_screen + 321*(num+1); + if ((currentConfig.EmuOpt&0x4000) && (num&1) == (Pico.m.frame_count&1)) + return 1; // skip next line + return 0; } @@ -216,7 +222,9 @@ static void blit(const char *fps, const char *notice) Pico.m.dirtyPal = 0; vidConvCpyRGB565(localPal, Pico.cram, 0x40); } - if (!(Pico.video.reg[12]&1)) lines_flags|=0x100; + if (!(Pico.video.reg[12]&1)) lines_flags|=0x10000; + if (currentConfig.EmuOpt&0x4000) + lines_flags|=(Pico.m.frame_count&1)?0x20000:0x40000; vidCpy8to16((unsigned short *)giz_screen+321*8, PicoDraw2FB+328*8, localPal, lines_flags); } else if (!(emu_opt&0x80)) @@ -242,7 +250,9 @@ static void blit(const char *fps, const char *notice) } */ } lines_flags = (Pico.video.reg[1]&8) ? 240 : 224; - if (!(Pico.video.reg[12]&1)) lines_flags|=0x100; + if (!(Pico.video.reg[12]&1)) lines_flags|=0x10000; + if (currentConfig.EmuOpt&0x4000) + lines_flags|=(Pico.m.frame_count&1)?0x20000:0x40000; vidCpy8to16((unsigned short *)giz_screen+321*8, PicoDraw2FB+328*8, localPal, lines_flags); } @@ -291,7 +301,7 @@ static void vidResetMode(void) giz_screen = NULL; } - +/* #include static void stdbg(const char *fmt, ...) { @@ -305,7 +315,7 @@ static void stdbg(const char *fmt, ...) noticeMsgTime = GetTickCount(); } - +*/ static void updateSound(int len) { @@ -315,8 +325,8 @@ static void updateSound(int len) PsndOut += len; if (PsndOut - snd_cbuff >= snd_cbuf_samples) { - if (PsndOut - snd_cbuff != snd_cbuf_samples) - stdbg("snd diff is %i, not %i", PsndOut - snd_cbuff, snd_cbuf_samples); + //if (PsndOut - snd_cbuff != snd_cbuf_samples) + // stdbg("snd diff is %i, not %i", PsndOut - snd_cbuff, snd_cbuf_samples); PsndOut = snd_cbuff; } } @@ -357,31 +367,45 @@ void emu_forcedFrame(void) static void RunEvents(unsigned int which) { - if (which & 0x1800) { // save or load (but not both) + if (which & 0x1800) // save or load (but not both) + { int do_it = 1; + + if (PsndOut != NULL) + FrameworkAudio_SetPause(1); + if (giz_screen == NULL) + giz_screen = Framework2D_LockBuffer(); if ( emu_checkSaveFile(state_slot) && - (( (which & 0x1000) && (currentConfig.EmuOpt & 0x800)) || // load - (!(which & 0x1000) && (currentConfig.EmuOpt & 0x200))) ) { // save + (( (which & 0x1000) && (currentConfig.EmuOpt & 0x800)) || // load + (!(which & 0x1000) && (currentConfig.EmuOpt & 0x200))) ) // save + { int keys; blit("", (which & 0x1000) ? "LOAD STATE? (PLAY=yes, STOP=no)" : "OVERWRITE SAVE? (PLAY=yes, STOP=no)"); while( !((keys = Framework_PollGetButtons()) & (BTN_PLAY|BTN_STOP)) ) Sleep(50); if (keys & BTN_STOP) do_it = 0; + while( ((keys = Framework_PollGetButtons()) & (BTN_PLAY|BTN_STOP)) ) // wait for release + Sleep(50); clearArea(0); } - if (do_it) { + + if (do_it) + { osd_text(4, 232, (which & 0x1000) ? "LOADING GAME" : "SAVING GAME"); PicoStateProgressCB = emu_state_cb; emu_SaveLoadGame((which & 0x1000) >> 12, 0); PicoStateProgressCB = NULL; + Sleep(0); } + if (PsndOut != NULL) + FrameworkAudio_SetPause(0); reset_timing = 1; } - if (which & 0x0400) { // switch renderer - if ( PicoOpt&0x10) { PicoOpt&=~0x10; currentConfig.EmuOpt |= 0x80; } - else if (!(currentConfig.EmuOpt&0x80)) PicoOpt|= 0x10; - else currentConfig.EmuOpt &= ~0x80; + if (which & 0x0400) // switch renderer + { + if (PicoOpt&0x10) { PicoOpt&=~0x10; currentConfig.EmuOpt |= 0x80; } + else { PicoOpt|= 0x10; currentConfig.EmuOpt &= ~0x80; } vidResetMode(); @@ -395,7 +419,8 @@ static void RunEvents(unsigned int which) noticeMsgTime = GetTickCount(); } - if (which & 0x0300) { + if (which & 0x0300) + { if(which&0x0200) { state_slot -= 1; if(state_slot < 0) state_slot = 9; @@ -550,10 +575,11 @@ void emu_Loop(void) PsndOut = NULL; if (currentConfig.EmuOpt & 4) { - int ret, snd_excess_add, stereo=(PicoOpt&8)>>3; + int ret, snd_excess_add, stereo; if (PsndRate != PsndRate_old || (PicoOpt&0x0b) != (PicoOpt_old&0x0b) || Pico.m.pal != pal_old) { sound_rerate(Pico.m.frame_count ? 1 : 0); } + stereo=(PicoOpt&8)>>3; snd_excess_add = ((PsndRate - PsndLen*target_fps)<<16) / target_fps; snd_cbuf_samples = (PsndRate<> 8; - stdbg("%i %i %i", audio_skew, adj, sec_ms); + //stdbg("%i %i %i", audio_skew, adj, sec_ms); frames_done = frames_shown = 0; } else if (currentConfig.Frameskip < 0) { @@ -716,6 +742,9 @@ void emu_Loop(void) PicoFrame(); + if (currentConfig.EmuOpt&0x2000) + Framework2D_WaitVSync(); + if (giz_screen == NULL) giz_screen = Framework2D_LockBuffer();