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