move emu loop to common; redo timing; add pollux timer
[picodrive.git] / platform / gizmondo / emu.c
CommitLineData
e5f426aa 1#include <windows.h>
ea8c405f 2#include <string.h>
e5f426aa 3
2ec14aec 4#include <sys/stat.h> // mkdir
5#include <sys/types.h>
6
7#include "kgsdk/Framework.h"
ea8c405f 8#include "kgsdk/Framework2D.h"
9#include "kgsdk/FrameworkAudio.h"
10#include "../common/emu.h"
11#include "../common/lprintf.h"
12#include "../common/arm_utils.h"
84100c0f 13#include "../common/config.h"
e5f426aa 14#include "emu.h"
ea8c405f 15#include "menu.h"
16#include "giz.h"
17#include "asm_utils.h"
e5f426aa 18
efcba75f 19#include <pico/pico_int.h>
ea8c405f 20
21#ifdef BENCHMARK
22#define OSD_FPS_X 220
23#else
24#define OSD_FPS_X 260
25#endif
26
27// main 300K gfx-related buffer. Used by menu and renderers.
28unsigned char gfx_buffer[321*240*2*2];
ea8c405f 29unsigned char *PicoDraw2FB = gfx_buffer; // temporary buffer for alt renderer ( (8+320)*(8+240+8) )
ea8c405f 30
fa283c9a 31static short *snd_cbuff = NULL;
32static int snd_cbuf_samples = 0, snd_all_samples = 0;
ea8c405f 33
34
35static void blit(const char *fps, const char *notice);
36static void clearArea(int full);
37
f2cf8472 38int plat_get_root_dir(char *dst, int len)
ea8c405f 39{
40 if (len > 0) *dst = 0;
ca482e5d 41
42 return 0;
ea8c405f 43}
44
45static void emu_msg_cb(const char *msg)
46{
84100c0f 47 if (giz_screen != NULL) fb_unlock();
48 giz_screen = fb_lock(1);
ea8c405f 49
50 memset32((int *)((char *)giz_screen + 321*232*2), 0, 321*8*2/4);
cc41eb4f 51 emu_text_out16(4, 232, msg);
ea8c405f 52 noticeMsgTime = GetTickCount() - 2000;
53
54 /* assumption: emu_msg_cb gets called only when something slow is about to happen */
55 reset_timing = 1;
c77ca79e 56
84100c0f 57 fb_unlock();
58 giz_screen = fb_lock((currentConfig.EmuOpt&0x8000) ? 0 : 1);
ea8c405f 59}
60
c77ca79e 61void emu_stateCb(const char *str)
ea8c405f 62{
84100c0f 63 if (giz_screen != NULL) fb_unlock();
64 giz_screen = fb_lock(1);
9839d126 65
ea8c405f 66 clearArea(0);
67 blit("", str);
9839d126 68
84100c0f 69 fb_unlock();
9839d126 70 giz_screen = NULL;
da42200b 71
72 Sleep(0); /* yield the CPU, the system may need it */
ea8c405f 73}
74
f2cf8472 75void pemu_prep_defconfig(void)
ea8c405f 76{
84100c0f 77 memset(&defaultConfig, 0, sizeof(defaultConfig));
78 defaultConfig.EmuOpt = 0x1d | 0x680; // | confirm_save, cd_leds, 16bit rend
79 defaultConfig.s_PicoOpt = 0x0f | POPT_EN_MCD_PCM|POPT_EN_MCD_CDDA|POPT_EN_SVP_DRC|POPT_ACC_SPRITES;
80 defaultConfig.s_PsndRate = 22050;
81 defaultConfig.s_PicoRegion = 0; // auto
82 defaultConfig.s_PicoAutoRgnOrder = 0x184; // US, EU, JP
83 defaultConfig.s_PicoCDBuffers = 0;
84 defaultConfig.Frameskip = -1; // auto
85 defaultConfig.volume = 50;
86 defaultConfig.KeyBinds[ 2] = 1<<0; // SACB RLDU
87 defaultConfig.KeyBinds[ 3] = 1<<1;
88 defaultConfig.KeyBinds[ 0] = 1<<2;
89 defaultConfig.KeyBinds[ 1] = 1<<3;
90 defaultConfig.KeyBinds[ 5] = 1<<4;
91 defaultConfig.KeyBinds[ 6] = 1<<5;
92 defaultConfig.KeyBinds[ 7] = 1<<6;
93 defaultConfig.KeyBinds[ 4] = 1<<7;
94 defaultConfig.KeyBinds[13] = 1<<26; // switch rend
95 defaultConfig.KeyBinds[ 8] = 1<<27; // save state
96 defaultConfig.KeyBinds[ 9] = 1<<28; // load state
97 defaultConfig.KeyBinds[12] = 1<<29; // vol up
98 defaultConfig.KeyBinds[11] = 1<<30; // vol down
99 defaultConfig.scaling = 0;
f0f0d2df 100 defaultConfig.turbo_rate = 15;
ea8c405f 101}
102
103
602133e1 104static int EmuScanBegin16(unsigned int num)
ea8c405f 105{
106 if (!(Pico.video.reg[1]&8)) num += 8;
602133e1 107 DrawLineDest = (unsigned short *) giz_screen + 321 * num;
ea8c405f 108
c77ca79e 109 if ((currentConfig.EmuOpt&0x4000) && (num&1) == 0) // (Pico.m.frame_count&1))
a8869ad1 110 return 1; // skip next line
111
ea8c405f 112 return 0;
113}
114
602133e1 115static int EmuScanBegin8(unsigned int num)
ea8c405f 116{
117 // draw like the fast renderer
118 if (!(Pico.video.reg[1]&8)) num += 8;
602133e1 119 HighCol = gfx_buffer + 328 * num;
ea8c405f 120
121 return 0;
122}
123
124static void osd_text(int x, int y, const char *text)
125{
499a0be3 126 int len = strlen(text) * 8 / 2;
127 int *p, h;
ea8c405f 128 for (h = 0; h < 8; h++) {
129 p = (int *) ((unsigned short *) giz_screen+x+321*(y+h));
130 p = (int *) ((int)p & ~3); // align
499a0be3 131 memset32(p, 0, len);
ea8c405f 132 }
cc41eb4f 133 emu_text_out16(x, y, text);
ea8c405f 134}
135
499a0be3 136/*
137void log1(void *p1, void *p2)
138{
139 lprintf("%p %p %p\n", p1, p2, DrawLineDest);
140}
141*/
ea8c405f 142
9839d126 143static void cd_leds(void)
144{
145 static int old_reg = 0;
146 unsigned int col_g, col_r, *p;
147
148 if (!((Pico_mcd->s68k_regs[0] ^ old_reg) & 3)) return; // no change
149 old_reg = Pico_mcd->s68k_regs[0];
150
151 p = (unsigned int *)((short *)giz_screen + 321*2+4+2);
152 col_g = (old_reg & 2) ? 0x06000600 : 0;
153 col_r = (old_reg & 1) ? 0xc000c000 : 0;
154 *p++ = col_g; *p++ = col_g; p+=2; *p++ = col_r; *p++ = col_r; p += 321/2 - 12/2 + 1;
155 *p++ = col_g; p+=3; *p++ = col_r; p += 321/2 - 10/2;
156 *p++ = col_g; *p++ = col_g; p+=2; *p++ = col_r; *p++ = col_r;
157}
158
159
160static short localPal[0x100];
ea8c405f 161
162static void blit(const char *fps, const char *notice)
163{
164 int emu_opt = currentConfig.EmuOpt;
165
9839d126 166 if (PicoOpt&0x10)
167 {
168 int lines_flags = 224;
ea8c405f 169 // 8bit fast renderer
170 if (Pico.m.dirtyPal) {
171 Pico.m.dirtyPal = 0;
172 vidConvCpyRGB565(localPal, Pico.cram, 0x40);
173 }
84100c0f 174 // a hack for VR
175 if (PicoRead16Hook == PicoSVPRead16)
176 memset32((int *)(PicoDraw2FB+328*8+328*223), 0xe0e0e0e0, 328);
a8869ad1 177 if (!(Pico.video.reg[12]&1)) lines_flags|=0x10000;
178 if (currentConfig.EmuOpt&0x4000)
c77ca79e 179 lines_flags|=0x40000; // (Pico.m.frame_count&1)?0x20000:0x40000;
9839d126 180 vidCpy8to16((unsigned short *)giz_screen+321*8, PicoDraw2FB+328*8, localPal, lines_flags);
181 }
182 else if (!(emu_opt&0x80))
183 {
184 int lines_flags;
ea8c405f 185 // 8bit accurate renderer
186 if (Pico.m.dirtyPal) {
187 Pico.m.dirtyPal = 0;
188 vidConvCpyRGB565(localPal, Pico.cram, 0x40);
2ec14aec 189 if (Pico.video.reg[0xC]&8) { // shadow/hilight mode
ea8c405f 190 //vidConvCpyRGB32sh(localPal+0x40, Pico.cram, 0x40);
9839d126 191 //vidConvCpyRGB32hi(localPal+0x80, Pico.cram, 0x40); // TODO?
84100c0f 192 memcpy32((void *)(localPal+0xc0), (void *)(localPal+0x40), 0x40*2/4);
ea8c405f 193 localPal[0xc0] = 0x0600;
194 localPal[0xd0] = 0xc000;
195 localPal[0xe0] = 0x0000; // reserved pixels for OSD
196 localPal[0xf0] = 0xffff;
197 }
198 /* no support
199 else if (rendstatus & 0x20) { // mid-frame palette changes
200 vidConvCpyRGB565(localPal+0x40, HighPal, 0x40);
201 vidConvCpyRGB565(localPal+0x80, HighPal+0x40, 0x40);
202 } */
203 }
9839d126 204 lines_flags = (Pico.video.reg[1]&8) ? 240 : 224;
a8869ad1 205 if (!(Pico.video.reg[12]&1)) lines_flags|=0x10000;
206 if (currentConfig.EmuOpt&0x4000)
c77ca79e 207 lines_flags|=0x40000; // (Pico.m.frame_count&1)?0x20000:0x40000;
9839d126 208 vidCpy8to16((unsigned short *)giz_screen+321*8, PicoDraw2FB+328*8, localPal, lines_flags);
ea8c405f 209 }
210
211 if (notice || (emu_opt & 2)) {
212 int h = 232;
213 if (notice) osd_text(4, h, notice);
9839d126 214 if (emu_opt & 2) osd_text(OSD_FPS_X, h, fps);
ea8c405f 215 }
ea8c405f 216
602133e1 217 if ((emu_opt & 0x400) && (PicoAHW & PAHW_MCD))
9839d126 218 cd_leds();
ea8c405f 219}
220
221// clears whole screen or just the notice area (in all buffers)
222static void clearArea(int full)
223{
224 if (giz_screen == NULL)
84100c0f 225 giz_screen = fb_lock(1);
ea8c405f 226 if (full) memset32(giz_screen, 0, 320*240*2/4);
499a0be3 227 else memset32((int *)((char *)giz_screen + 321*232*2), 0, 321*8*2/4);
c77ca79e 228
229 if (currentConfig.EmuOpt&0x8000) {
84100c0f 230 fb_unlock();
231 giz_screen = fb_lock(0);
c77ca79e 232 if (full) memset32(giz_screen, 0, 320*240*2/4);
233 else memset32((int *)((char *)giz_screen + 321*232*2), 0, 321*8*2/4);
234 }
ea8c405f 235}
236
237static void vidResetMode(void)
238{
84100c0f 239 giz_screen = fb_lock(1);
499a0be3 240
ea8c405f 241 if (PicoOpt&0x10) {
242 } else if (currentConfig.EmuOpt&0x80) {
243 PicoDrawSetColorFormat(1);
602133e1 244 PicoScanBegin = EmuScanBegin16;
ea8c405f 245 } else {
499a0be3 246 PicoDrawSetColorFormat(-1);
602133e1 247 PicoScanBegin = EmuScanBegin8;
ea8c405f 248 }
499a0be3 249 if ((PicoOpt&0x10) || !(currentConfig.EmuOpt&0x80)) {
ea8c405f 250 // setup pal for 8-bit modes
251 localPal[0xc0] = 0x0600;
252 localPal[0xd0] = 0xc000;
253 localPal[0xe0] = 0x0000; // reserved pixels for OSD
254 localPal[0xf0] = 0xffff;
255 }
256 Pico.m.dirtyPal = 1;
499a0be3 257
258 memset32(giz_screen, 0, 321*240*2/4);
c77ca79e 259 if (currentConfig.EmuOpt&0x8000) {
84100c0f 260 fb_unlock();
261 giz_screen = fb_lock(0);
c77ca79e 262 memset32(giz_screen, 0, 321*240*2/4);
263 }
84100c0f 264 fb_unlock();
ea8c405f 265 giz_screen = NULL;
266}
267
da42200b 268/*
fa283c9a 269#include <stdarg.h>
270static void stdbg(const char *fmt, ...)
ea8c405f 271{
fa283c9a 272 static int cnt = 0;
273 va_list vl;
274
275 sprintf(noticeMsg, "%x ", cnt++);
276 va_start(vl, fmt);
277 vsnprintf(noticeMsg+strlen(noticeMsg), sizeof(noticeMsg)-strlen(noticeMsg), fmt, vl);
278 va_end(vl);
279
280 noticeMsgTime = GetTickCount();
281}
da42200b 282*/
fa283c9a 283
284static void updateSound(int len)
285{
286 if (PicoOpt&8) len<<=1;
287
288 snd_all_samples += len;
289 PsndOut += len;
290 if (PsndOut - snd_cbuff >= snd_cbuf_samples)
291 {
da42200b 292 //if (PsndOut - snd_cbuff != snd_cbuf_samples)
293 // stdbg("snd diff is %i, not %i", PsndOut - snd_cbuff, snd_cbuf_samples);
fa283c9a 294 PsndOut = snd_cbuff;
295 }
296}
297
298
299static void SkipFrame(void)
300{
301 PicoSkipFrame=1;
ea8c405f 302 PicoFrame();
303 PicoSkipFrame=0;
304}
305
c77ca79e 306/* forced frame to front buffer */
f2cf8472 307void pemu_forced_frame(int opts)
ea8c405f 308{
fa283c9a 309 int po_old = PicoOpt;
310 int eo_old = currentConfig.EmuOpt;
311
0fc0e241 312 PicoOpt &= ~0x10;
313 PicoOpt |= opts|POPT_ACC_SPRITES;
fa283c9a 314 currentConfig.EmuOpt |= 0x80;
315
316 if (giz_screen == NULL)
84100c0f 317 giz_screen = fb_lock(1);
fa283c9a 318
319 PicoDrawSetColorFormat(1);
602133e1 320 PicoScanBegin = EmuScanBegin16;
fa283c9a 321 Pico.m.dirtyPal = 1;
322 PicoFrameDrawOnly();
323
84100c0f 324 fb_unlock();
fa283c9a 325 giz_screen = NULL;
326
327 PicoOpt = po_old;
328 currentConfig.EmuOpt = eo_old;
ea8c405f 329}
330
fa283c9a 331
9839d126 332static void RunEvents(unsigned int which)
333{
da42200b 334 if (which & 0x1800) // save or load (but not both)
335 {
9839d126 336 int do_it = 1;
da42200b 337
338 if (PsndOut != NULL)
339 FrameworkAudio_SetPause(1);
340 if (giz_screen == NULL)
84100c0f 341 giz_screen = fb_lock(1);
a47dd663 342 if ( emu_check_save_file(state_slot) &&
a8869ad1 343 (( (which & 0x1000) && (currentConfig.EmuOpt & 0x800)) || // load
344 (!(which & 0x1000) && (currentConfig.EmuOpt & 0x200))) ) // save
345 {
9839d126 346 int keys;
347 blit("", (which & 0x1000) ? "LOAD STATE? (PLAY=yes, STOP=no)" : "OVERWRITE SAVE? (PLAY=yes, STOP=no)");
e5ab6faf 348 while( !((keys = Framework_PollGetButtons()) & (PBTN_PLAY|PBTN_STOP)) )
9839d126 349 Sleep(50);
e5ab6faf 350 if (keys & PBTN_STOP) do_it = 0;
351 while( ((keys = Framework_PollGetButtons()) & (PBTN_PLAY|PBTN_STOP)) ) // wait for release
da42200b 352 Sleep(50);
9839d126 353 clearArea(0);
354 }
da42200b 355
356 if (do_it)
357 {
9839d126 358 osd_text(4, 232, (which & 0x1000) ? "LOADING GAME" : "SAVING GAME");
c77ca79e 359 PicoStateProgressCB = emu_stateCb;
a47dd663 360 emu_save_load_game((which & 0x1000) >> 12, 0);
9839d126 361 PicoStateProgressCB = NULL;
da42200b 362 Sleep(0);
9839d126 363 }
364
da42200b 365 if (PsndOut != NULL)
366 FrameworkAudio_SetPause(0);
9839d126 367 reset_timing = 1;
368 }
da42200b 369 if (which & 0x0400) // switch renderer
370 {
a8869ad1 371 if (PicoOpt&0x10) { PicoOpt&=~0x10; currentConfig.EmuOpt |= 0x80; }
372 else { PicoOpt|= 0x10; currentConfig.EmuOpt &= ~0x80; }
9839d126 373
374 vidResetMode();
375
376 if (PicoOpt&0x10) {
377 strcpy(noticeMsg, " 8bit fast renderer");
378 } else if (currentConfig.EmuOpt&0x80) {
379 strcpy(noticeMsg, "16bit accurate renderer");
380 } else {
381 strcpy(noticeMsg, " 8bit accurate renderer");
382 }
383
384 noticeMsgTime = GetTickCount();
385 }
da42200b 386 if (which & 0x0300)
387 {
9839d126 388 if(which&0x0200) {
389 state_slot -= 1;
390 if(state_slot < 0) state_slot = 9;
391 } else {
392 state_slot += 1;
393 if(state_slot > 9) state_slot = 0;
394 }
a47dd663 395 sprintf(noticeMsg, "SAVE SLOT %i [%s]", state_slot, emu_check_save_file(state_slot) ? "USED" : "FREE");
9839d126 396 noticeMsgTime = GetTickCount();
397 }
398}
399
ea8c405f 400static void updateKeys(void)
401{
2ec14aec 402 unsigned int keys, allActions[2] = { 0, 0 }, events;
403 static unsigned int prevEvents = 0;
404 int i;
405
d34a42f9 406 /* FIXME: port to input fw, merge with emu.c:emu_update_input() */
2ec14aec 407 keys = Framework_PollGetButtons();
e5ab6faf 408 if (keys & PBTN_HOME)
2ec14aec 409 engineState = PGS_Menu;
2ec14aec 410
411 keys &= CONFIGURABLE_KEYS;
412
f0f0d2df 413 PicoPad[0] = allActions[0] & 0xfff;
414 PicoPad[1] = allActions[1] & 0xfff;
415
416 if (allActions[0] & 0x7000) emu_DoTurbo(&PicoPad[0], allActions[0]);
417 if (allActions[1] & 0x7000) emu_DoTurbo(&PicoPad[1], allActions[1]);
2ec14aec 418
419 events = (allActions[0] | allActions[1]) >> 16;
420
421 // volume is treated in special way and triggered every frame
fa283c9a 422 if ((events & 0x6000) && PsndOut != NULL)
423 {
2ec14aec 424 int vol = currentConfig.volume;
425 if (events & 0x2000) {
426 if (vol < 100) vol++;
427 } else {
428 if (vol > 0) vol--;
429 }
fa283c9a 430 FrameworkAudio_SetVolume(vol, vol);
c77ca79e 431 sprintf(noticeMsg, "VOL: %02i ", vol);
2ec14aec 432 noticeMsgTime = GetTickCount();
433 currentConfig.volume = vol;
434 }
435
436 events &= ~prevEvents;
9839d126 437 if (events) RunEvents(events);
2ec14aec 438 if (movie_data) emu_updateMovie();
439
440 prevEvents = (allActions[0] | allActions[1]) >> 16;
ea8c405f 441}
442
f2cf8472 443void plat_debug_cat(char *str)
84100c0f 444{
84100c0f 445}
fa283c9a 446
ea8c405f 447static void simpleWait(DWORD until)
448{
9839d126 449 DWORD tval;
450 int diff;
451
452 tval = GetTickCount();
453 diff = (int)until - (int)tval;
454 if (diff >= 2)
455 Sleep(diff - 1);
456
457 while ((tval = GetTickCount()) < until && until - tval < 512) // some simple overflow detection
458 spend_cycles(1024*2);
ea8c405f 459}
460
f2cf8472 461void pemu_loop(void)
ea8c405f 462{
fa283c9a 463 static int PsndRate_old = 0, PicoOpt_old = 0, pal_old = 0;
ea8c405f 464 char fpsbuff[24]; // fps count c string
465 DWORD tval, tval_prev = 0, tval_thissec = 0; // timing
fa283c9a 466 int frames_done = 0, frames_shown = 0, oldmodes = 0, sec_ms = 1000;
ea8c405f 467 int target_fps, target_frametime, lim_time, tval_diff, i;
468 char *notice = NULL;
469
470 lprintf("entered emu_Loop()\n");
471
472 fpsbuff[0] = 0;
473
474 // make sure we are in correct mode
475 vidResetMode();
476 if (currentConfig.scaling) PicoOpt|=0x4000;
477 else PicoOpt&=~0x4000;
478 Pico.m.dirtyPal = 1;
479 oldmodes = ((Pico.video.reg[12]&1)<<2) ^ 0xc;
ea8c405f 480
481 // pal/ntsc might have changed, reset related stuff
482 target_fps = Pico.m.pal ? 50 : 60;
fa283c9a 483 target_frametime = Pico.m.pal ? (1000<<8)/50 : (1000<<8)/60+1;
ea8c405f 484 reset_timing = 1;
485
fa283c9a 486 // prepare CD buffer
602133e1 487 if (PicoAHW & PAHW_MCD) PicoCDBufferInit();
fa283c9a 488
ea8c405f 489 // prepare sound stuff
fa283c9a 490 PsndOut = NULL;
491 if (currentConfig.EmuOpt & 4)
492 {
da42200b 493 int ret, snd_excess_add, stereo;
ea8c405f 494 if (PsndRate != PsndRate_old || (PicoOpt&0x0b) != (PicoOpt_old&0x0b) || Pico.m.pal != pal_old) {
9d917eea 495 PsndRerate(Pico.m.frame_count ? 1 : 0);
ea8c405f 496 }
da42200b 497 stereo=(PicoOpt&8)>>3;
ea8c405f 498 snd_excess_add = ((PsndRate - PsndLen*target_fps)<<16) / target_fps;
fa283c9a 499 snd_cbuf_samples = (PsndRate<<stereo) * 16 / target_fps;
ea8c405f 500 lprintf("starting audio: %i len: %i (ex: %04x) stereo: %i, pal: %i\n",
f3d1de29 501 PsndRate, PsndLen, snd_excess_add, stereo, Pico.m.pal);
fa283c9a 502 ret = FrameworkAudio_Init(PsndRate, snd_cbuf_samples, stereo);
503 if (ret != 0) {
504 lprintf("FrameworkAudio_Init() failed: %i\n", ret);
505 sprintf(noticeMsg, "sound init failed (%i), snd disabled", ret);
506 noticeMsgTime = GetTickCount();
507 currentConfig.EmuOpt &= ~4;
508 } else {
509 FrameworkAudio_SetVolume(currentConfig.volume, currentConfig.volume);
510 PicoWriteSound = updateSound;
511 snd_cbuff = FrameworkAudio_56448Buffer();
512 PsndOut = snd_cbuff + snd_cbuf_samples / 2; // start writing at the middle
513 snd_all_samples = 0;
514 PsndRate_old = PsndRate;
515 PicoOpt_old = PicoOpt;
516 pal_old = Pico.m.pal;
517 }
ea8c405f 518 }
519
ea8c405f 520 // loop?
521 while (engineState == PGS_Running)
522 {
523 int modes;
524
525 tval = GetTickCount();
526 if (reset_timing || tval < tval_prev) {
da42200b 527 //stdbg("timing reset");
ea8c405f 528 reset_timing = 0;
529 tval_thissec = tval;
530 frames_shown = frames_done = 0;
531 }
532
533 // show notice message?
534 if (noticeMsgTime) {
535 static int noticeMsgSum;
536 if (tval - noticeMsgTime > 2000) { // > 2.0 sec
537 noticeMsgTime = 0;
538 clearArea(0);
539 notice = 0;
540 } else {
541 int sum = noticeMsg[0]+noticeMsg[1]+noticeMsg[2];
542 if (sum != noticeMsgSum) { clearArea(0); noticeMsgSum = sum; }
543 notice = noticeMsg;
544 }
545 }
546
547 // check for mode changes
548 modes = ((Pico.video.reg[12]&1)<<2)|(Pico.video.reg[1]&8);
549 if (modes != oldmodes) {
ea8c405f 550 oldmodes = modes;
551 clearArea(1);
552 }
553
554 // second passed?
fa283c9a 555 if (tval - tval_thissec >= sec_ms)
ea8c405f 556 {
557#ifdef BENCHMARK
558 static int bench = 0, bench_fps = 0, bench_fps_s = 0, bfp = 0, bf[4];
559 if(++bench == 10) {
560 bench = 0;
561 bench_fps_s = bench_fps;
562 bf[bfp++ & 3] = bench_fps;
563 bench_fps = 0;
564 }
565 bench_fps += frames_shown;
566 sprintf(fpsbuff, "%02i/%02i/%02i", frames_shown, bench_fps_s, (bf[0]+bf[1]+bf[2]+bf[3])>>2);
567#else
568 if(currentConfig.EmuOpt & 2)
569 sprintf(fpsbuff, "%02i/%02i", frames_shown, frames_done);
570#endif
fa283c9a 571 //tval_thissec += 1000;
572 tval_thissec += sec_ms;
ea8c405f 573
fa283c9a 574 if (PsndOut != NULL)
575 {
f3d1de29 576 /* some code which tries to sync things to audio clock, the dirty way */
577 static int audio_skew_prev = 0;
578 int audio_skew, adj, co = 9, shift = 7;
fa283c9a 579 audio_skew = snd_all_samples*2 - FrameworkAudio_BufferPos();
f3d1de29 580 if (PsndRate == 22050) co = 10;
581 if (PsndRate > 22050) co = 11;
582 if (PicoOpt&8) shift++;
583 if (audio_skew < 0) {
584 adj = -((-audio_skew) >> shift);
585 if (audio_skew > -(6<<co)) adj>>=1;
586 if (audio_skew > -(4<<co)) adj>>=1;
587 if (audio_skew > -(2<<co)) adj>>=1;
588 if (audio_skew > audio_skew_prev) adj>>=2; // going up already
589 } else {
590 adj = audio_skew >> shift;
591 if (audio_skew < (6<<co)) adj>>=1;
592 if (audio_skew < (4<<co)) adj>>=1;
593 if (audio_skew < (2<<co)) adj>>=1;
594 if (audio_skew < audio_skew_prev) adj>>=2;
595 }
596 audio_skew_prev = audio_skew;
fa283c9a 597 target_frametime += adj;
598 sec_ms = (target_frametime * target_fps) >> 8;
da42200b 599 //stdbg("%i %i %i", audio_skew, adj, sec_ms);
ea8c405f 600 frames_done = frames_shown = 0;
fa283c9a 601 }
602 else if (currentConfig.Frameskip < 0) {
ea8c405f 603 frames_done -= target_fps; if (frames_done < 0) frames_done = 0;
604 frames_shown -= target_fps; if (frames_shown < 0) frames_shown = 0;
605 if (frames_shown > frames_done) frames_shown = frames_done;
fa283c9a 606 } else {
607 frames_done = frames_shown = 0;
ea8c405f 608 }
609 }
610#ifdef PFRAMES
611 sprintf(fpsbuff, "%i", Pico.m.frame_count);
612#endif
613
614 tval_prev = tval;
615 lim_time = (frames_done+1) * target_frametime;
616 if (currentConfig.Frameskip >= 0) // frameskip enabled
617 {
618 for (i = 0; i < currentConfig.Frameskip; i++) {
619 updateKeys();
fa283c9a 620 SkipFrame(); frames_done++;
ea8c405f 621 if (PsndOut) { // do framelimitting if sound is enabled
622 int tval_diff;
623 tval = GetTickCount();
624 tval_diff = (int)(tval - tval_thissec) << 8;
625 if (tval_diff < lim_time) // we are too fast
626 simpleWait(tval + ((lim_time - tval_diff)>>8));
627 }
628 lim_time += target_frametime;
629 }
630 }
631 else // auto frameskip
632 {
633 int tval_diff;
634 tval = GetTickCount();
635 tval_diff = (int)(tval - tval_thissec) << 8;
636 if (tval_diff > lim_time)
637 {
638 // no time left for this frame - skip
639 if (tval_diff - lim_time >= (300<<8)) {
640 /* something caused a slowdown for us (disk access? cache flush?)
641 * try to recover by resetting timing... */
642 reset_timing = 1;
643 continue;
644 }
645 updateKeys();
fa283c9a 646 SkipFrame(); frames_done++;
ea8c405f 647 continue;
648 }
649 }
650
651 updateKeys();
652
c77ca79e 653 if (currentConfig.EmuOpt&0x80)
654 /* be sure correct framebuffer is locked */
84100c0f 655 giz_screen = fb_lock((currentConfig.EmuOpt&0x8000) ? 0 : 1);
c77ca79e 656
ea8c405f 657 PicoFrame();
499a0be3 658
659 if (giz_screen == NULL)
84100c0f 660 giz_screen = fb_lock((currentConfig.EmuOpt&0x8000) ? 0 : 1);
499a0be3 661
ea8c405f 662 blit(fpsbuff, notice);
663
664 if (giz_screen != NULL) {
84100c0f 665 fb_unlock();
ea8c405f 666 giz_screen = NULL;
667 }
668
c77ca79e 669 if (currentConfig.EmuOpt&0x2000)
670 Framework2D_WaitVSync();
671
672 if (currentConfig.EmuOpt&0x8000)
84100c0f 673 fb_flip();
c77ca79e 674
ea8c405f 675 // check time
676 tval = GetTickCount();
677 tval_diff = (int)(tval - tval_thissec) << 8;
678
679 if (currentConfig.Frameskip < 0 && tval_diff - lim_time >= (300<<8)) // slowdown detection
680 reset_timing = 1;
681 else if (PsndOut != NULL || currentConfig.Frameskip < 0)
682 {
683 // sleep if we are still too fast
684 if (tval_diff < lim_time)
685 {
686 // we are too fast
687 simpleWait(tval + ((lim_time - tval_diff) >> 8));
688 }
689 }
690
691 frames_done++; frames_shown++;
692 }
693
694
602133e1 695 if (PicoAHW & PAHW_MCD) PicoCDBufferFree();
ea8c405f 696
fa283c9a 697 if (PsndOut != NULL) {
698 PsndOut = snd_cbuff = NULL;
699 FrameworkAudio_Close();
700 }
701
ea8c405f 702 // save SRAM
703 if ((currentConfig.EmuOpt & 1) && SRam.changed) {
c77ca79e 704 emu_stateCb("Writing SRAM/BRAM..");
a47dd663 705 emu_save_load_game(0, 1);
ea8c405f 706 SRam.changed = 0;
707 }
708}
709