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