X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=libpcsxcore%2Fpsxcounters.c;h=865b3d8ffbf705832f175bf85f48babb908d824e;hp=1c514e8f174f13cc75b4c9a5b22e9272ff4635a3;hb=61ef5cf48ec7019f10f83017667e681ff8288509;hpb=6c9a982ac534aef9b19b9e7d9033516a0f13485a diff --git a/libpcsxcore/psxcounters.c b/libpcsxcore/psxcounters.c index 1c514e8f..865b3d8f 100644 --- a/libpcsxcore/psxcounters.c +++ b/libpcsxcore/psxcounters.c @@ -22,6 +22,7 @@ */ #include "psxcounters.h" +#include "debug.h" /******************************************************************************/ @@ -66,7 +67,7 @@ static const u32 CountToTarget = 1; static const u32 FrameRate[] = { 60, 50 }; static const u32 VBlankStart[] = { 240, 256 }; -static const u32 HSyncTotal[] = { 262, 312 }; +static const u32 HSyncTotal[] = { 263, 313 }; static const u32 SpuUpdInterval[] = { 23, 22 }; static const s32 VerboseLevel = 0; @@ -77,6 +78,8 @@ static Rcnt rcnts[ CounterQuantity ]; static u32 hSyncCount = 0; static u32 spuSyncCount = 0; +static u32 hsync_steps = 0; +static u32 gpu_wants_hcnt = 0; u32 psxNextCounter = 0, psxNextsCounter = 0; @@ -100,7 +103,7 @@ void verboseLog( s32 level, const char *str, ... ) vsprintf( buf, str, va ); va_end( va ); - printf( buf ); + printf( "%s", buf ); fflush( stdout ); } } @@ -139,7 +142,8 @@ u32 _psxRcntRcount( u32 index ) count = psxRegs.cycle; count -= rcnts[index].cycleStart; - count /= rcnts[index].rate; + if (rcnts[index].rate > 1) + count /= rcnts[index].rate; if( count > 0xffff ) { @@ -191,7 +195,8 @@ void psxRcntReset( u32 index ) { count = psxRegs.cycle; count -= rcnts[index].cycleStart; - count /= rcnts[index].rate; + if (rcnts[index].rate > 1) + count /= rcnts[index].rate; count -= rcnts[index].target; } else @@ -217,7 +222,8 @@ void psxRcntReset( u32 index ) { count = psxRegs.cycle; count -= rcnts[index].cycleStart; - count /= rcnts[index].rate; + if (rcnts[index].rate > 1) + count /= rcnts[index].rate; count -= 0xffff; _psxRcntWcount( index, count ); @@ -267,10 +273,11 @@ void psxRcntUpdate() // rcnt base. if( cycle - rcnts[3].cycleStart >= rcnts[3].cycle ) { - psxRcntReset( 3 ); + u32 leftover_cycles = cycle - rcnts[3].cycleStart - rcnts[3].cycle; + u32 next_vsync, next_lace; - spuSyncCount++; - hSyncCount++; + spuSyncCount += hsync_steps; + hSyncCount += hsync_steps; // Update spu. if( spuSyncCount >= SpuUpdInterval[Config.PsxType] ) @@ -286,7 +293,7 @@ void psxRcntUpdate() // VSync irq. if( hSyncCount == VBlankStart[Config.PsxType] ) { - GPU_vBlank( 1, &hSyncCount ); + GPU_vBlank( 1, &hSyncCount, &gpu_wants_hcnt ); // For the best times. :D //setIrq( 0x01 ); @@ -297,15 +304,32 @@ void psxRcntUpdate() { hSyncCount = 0; - GPU_vBlank( 0, &hSyncCount ); + GPU_vBlank( 0, &hSyncCount, &gpu_wants_hcnt ); setIrq( 0x01 ); EmuUpdate(); GPU_updateLace(); } + + // Schedule next call, in hsyncs + hsync_steps = SpuUpdInterval[Config.PsxType] - spuSyncCount; + next_vsync = VBlankStart[Config.PsxType] - hSyncCount; // ok to overflow + next_lace = HSyncTotal[Config.PsxType] - hSyncCount; + if( next_vsync && next_vsync < hsync_steps ) + hsync_steps = next_vsync; + if( next_lace && next_lace < hsync_steps ) + hsync_steps = next_lace; + if( gpu_wants_hcnt ) + hsync_steps = 1; + + rcnts[3].cycleStart = cycle - leftover_cycles; + rcnts[3].cycle = hsync_steps * rcnts[3].target; + psxRcntSet(); } +#ifndef NDEBUG DebugVSync(); +#endif } /******************************************************************************/ @@ -463,6 +487,7 @@ void psxRcntInit() hSyncCount = 0; spuSyncCount = 0; + hsync_steps = 1; psxRcntSet(); } @@ -477,6 +502,9 @@ s32 psxRcntFreeze( gzFile f, s32 Mode ) gzfreeze( &psxNextCounter, sizeof(psxNextCounter) ); gzfreeze( &psxNextsCounter, sizeof(psxNextsCounter) ); + if (Mode == 0) + hsync_steps = (psxRegs.cycle - rcnts[3].cycleStart) / rcnts[3].target; + return 0; }