further unification and refactoring
[libpicofe.git] / psp / emu.c
CommitLineData
63b796ca 1// (c) Copyright 2007 notaz, All rights reserved.
2// Free for non-commercial use.
3
4// For commercial use, separate licencing terms must be obtained.
5
2951214e 6#include <sys/stat.h>
7#include <sys/types.h>
8#include <sys/syslimits.h> // PATH_MAX
9
703e4c7b 10#include <pspthreadman.h>
2b90fc61 11#include <pspdisplay.h>
db298784 12#include <psputils.h>
13#include <pspgu.h>
0953046b 14#include <pspaudio.h>
703e4c7b 15
16#include "psp.h"
17#include "menu.h"
18#include "emu.h"
5ecedd0c 19#include "mp3.h"
93c0d147 20#include "asm_utils.h"
703e4c7b 21#include "../common/emu.h"
960a8e27 22#include "../common/config.h"
703e4c7b 23#include "../common/lprintf.h"
f11bad75 24#include <pico/pico_int.h>
25#include <pico/cd/cue.h>
2951214e 26
f3f1615e 27#define OSD_FPS_X 432
703e4c7b 28
0953046b 29// additional pspaudio imports, credits to crazyc
30int sceAudio_38553111(unsigned short samples, unsigned short freq, char unknown); // play with conversion?
31int sceAudio_5C37C0AE(void); // end play?
32int sceAudio_E0727056(int volume, void *buffer); // blocking output
33int sceAudioOutput2GetRestSample();
34
35
db298784 36unsigned char *PicoDraw2FB = (unsigned char *)VRAM_CACHED_STUFF + 8; // +8 to be able to skip border with 1 quadword..
049a6b3e 37int engineStateSuspend;
2951214e 38
703e4c7b 39static unsigned int noticeMsgTime = 0;
703e4c7b 40
8a091e48 41#define PICO_PEN_ADJUST_X 4
42#define PICO_PEN_ADJUST_Y 2
43static int pico_pen_x = 320/2, pico_pen_y = 240/2;
703e4c7b 44
0953046b 45static void sound_init(void);
46static void sound_deinit(void);
4b8f4f3c 47static void blit2(const char *fps, const char *notice, int lagging_behind);
703e4c7b 48static void clearArea(int full);
2951214e 49
388947f3 50void plat_status_msg(const char *format, ...)
2951214e 51{
388947f3 52 va_list vl;
53
54 va_start(vl, format);
55 vsnprintf(noticeMsg, sizeof(noticeMsg), fmt, vl);
56 va_end(vl);
57
703e4c7b 58 noticeMsgTime = sceKernelGetSystemTimeLow();
2951214e 59}
60
93c18cb4 61int plat_get_root_dir(char *dst, int len)
2951214e 62{
703e4c7b 63 if (len > 0) *dst = 0;
36f6fd5a 64 return 0;
2951214e 65}
66
60a10527 67static void osd_text(int x, const char *text, int is_active, int clear_all)
2951214e 68{
6f748c47 69 unsigned short *screen = is_active ? psp_video_get_active_fb() : psp_screen;
60a10527 70 int len = clear_all ? (480 / 2) : (strlen(text) * 8 / 2);
6f748c47 71 int *p, h;
72 void *tmp;
73 for (h = 0; h < 8; h++) {
74 p = (int *) (screen+x+512*(264+h));
75 p = (int *) ((int)p & ~3); // align
5ecedd0c 76 memset32_uncached(p, 0, len);
6f748c47 77 }
78 if (is_active) { tmp = psp_screen; psp_screen = screen; } // nasty pointer tricks
79 emu_textOut16(x, 264, text);
80 if (is_active) psp_screen = tmp;
81}
703e4c7b 82
6f748c47 83void emu_msg_cb(const char *msg)
84{
60a10527 85 osd_text(4, msg, 1, 1);
703e4c7b 86 noticeMsgTime = sceKernelGetSystemTimeLow() - 2000000;
87
88 /* assumption: emu_msg_cb gets called only when something slow is about to happen */
89 reset_timing = 1;
2951214e 90}
91
93c18cb4 92/* FIXME: move to plat */
2951214e 93void emu_Init(void)
94{
0953046b 95 sound_init();
2951214e 96}
97
98void emu_Deinit(void)
99{
0953046b 100 sound_deinit();
2951214e 101}
102
93c18cb4 103void pemu_prep_defconfig(void)
960a8e27 104{
105 memset(&defaultConfig, 0, sizeof(defaultConfig));
106 defaultConfig.EmuOpt = 0x1d | 0x680; // | <- confirm_save, cd_leds, acc rend
8a091e48 107 defaultConfig.s_PicoOpt = 0x0f | POPT_EN_MCD_PCM|POPT_EN_MCD_CDDA|POPT_EN_MCD_GFX|POPT_ACC_SPRITES;
960a8e27 108 defaultConfig.s_PsndRate = 22050;
109 defaultConfig.s_PicoRegion = 0; // auto
110 defaultConfig.s_PicoAutoRgnOrder = 0x184; // US, EU, JP
111 defaultConfig.s_PicoCDBuffers = 64;
112 defaultConfig.Frameskip = -1; // auto
113 defaultConfig.CPUclock = 333;
114 defaultConfig.KeyBinds[ 4] = 1<<0; // SACB RLDU
115 defaultConfig.KeyBinds[ 6] = 1<<1;
116 defaultConfig.KeyBinds[ 7] = 1<<2;
117 defaultConfig.KeyBinds[ 5] = 1<<3;
118 defaultConfig.KeyBinds[14] = 1<<4;
119 defaultConfig.KeyBinds[13] = 1<<5;
120 defaultConfig.KeyBinds[15] = 1<<6;
121 defaultConfig.KeyBinds[ 3] = 1<<7;
122 defaultConfig.KeyBinds[12] = 1<<26; // switch rnd
123 defaultConfig.KeyBinds[ 8] = 1<<27; // save state
124 defaultConfig.KeyBinds[ 9] = 1<<28; // load state
125 defaultConfig.KeyBinds[28] = 1<<0; // num "buttons"
126 defaultConfig.KeyBinds[30] = 1<<1;
127 defaultConfig.KeyBinds[31] = 1<<2;
128 defaultConfig.KeyBinds[29] = 1<<3;
129 defaultConfig.scaling = 1; // bilinear filtering for psp
130 defaultConfig.scale = 1.20; // fullscreen
131 defaultConfig.hscale40 = 1.25;
132 defaultConfig.hscale32 = 1.56;
6589c840 133 defaultConfig.turbo_rate = 15;
960a8e27 134}
135
703e4c7b 136
6f748c47 137extern void amips_clut(unsigned short *dst, unsigned char *src, unsigned short *pal, int count);
b13a934c 138extern void amips_clut_6bit(unsigned short *dst, unsigned char *src, unsigned short *pal, int count);
139
8a091e48 140static void (*amips_clut_f)(unsigned short *dst, unsigned char *src, unsigned short *pal, int count) = NULL;
db298784 141
142struct Vertex
143{
144 short u,v;
145 short x,y,z;
146};
147
6f748c47 148static struct Vertex __attribute__((aligned(4))) g_vertices[2];
149static unsigned short __attribute__((aligned(16))) localPal[0x100];
150static int dynamic_palette = 0, need_pal_upload = 0, blit_16bit_mode = 0;
151static int fbimg_offs = 0;
152
153static void set_scaling_params(void)
db298784 154{
5ecedd0c 155 int src_width, fbimg_width, fbimg_height, fbimg_xoffs, fbimg_yoffs, border_hack = 0;
6f748c47 156 g_vertices[0].x = g_vertices[0].y =
157 g_vertices[0].z = g_vertices[1].z = 0;
158
159 fbimg_height = (int)(240.0 * currentConfig.scale + 0.5);
160 if (Pico.video.reg[12] & 1) {
161 fbimg_width = (int)(320.0 * currentConfig.scale * currentConfig.hscale40 + 0.5);
162 src_width = 320;
163 } else {
164 fbimg_width = (int)(256.0 * currentConfig.scale * currentConfig.hscale32 + 0.5);
165 src_width = 256;
166 }
db298784 167
5ecedd0c 168 if (fbimg_width & 1) fbimg_width++; // make even
169 if (fbimg_height & 1) fbimg_height++;
170
6f748c47 171 if (fbimg_width >= 480) {
172 g_vertices[0].u = (fbimg_width-480)/2;
5ecedd0c 173 g_vertices[1].u = src_width - (fbimg_width-480)/2 - 1;
6f748c47 174 fbimg_width = 480;
175 fbimg_xoffs = 0;
176 } else {
177 g_vertices[0].u = 0;
178 g_vertices[1].u = src_width;
179 fbimg_xoffs = 240 - fbimg_width/2;
180 }
c6334564 181 if (fbimg_width > 320 && fbimg_width <= 480) border_hack = 1;
6f748c47 182
183 if (fbimg_height >= 272) {
184 g_vertices[0].v = (fbimg_height-272)/2;
185 g_vertices[1].v = 240 - (fbimg_height-272)/2;
186 fbimg_height = 272;
187 fbimg_yoffs = 0;
188 } else {
189 g_vertices[0].v = 0;
190 g_vertices[1].v = 240;
191 fbimg_yoffs = 136 - fbimg_height/2;
192 }
193
194 g_vertices[1].x = fbimg_width;
195 g_vertices[1].y = fbimg_height;
196 if (fbimg_xoffs < 0) fbimg_xoffs = 0;
197 if (fbimg_yoffs < 0) fbimg_yoffs = 0;
5ecedd0c 198 if (border_hack) {
199 g_vertices[0].u++;
200 g_vertices[0].x++;
201 g_vertices[1].u--;
202 g_vertices[1].x--;
203 }
6f748c47 204 fbimg_offs = (fbimg_yoffs*512 + fbimg_xoffs) * 2; // dst is always 16bit
205
a52e1f62 206 /*
6f748c47 207 lprintf("set_scaling_params:\n");
208 lprintf("offs: %i, %i\n", fbimg_xoffs, fbimg_yoffs);
209 lprintf("xy0, xy1: %i, %i; %i, %i\n", g_vertices[0].x, g_vertices[0].y, g_vertices[1].x, g_vertices[1].y);
210 lprintf("uv0, uv1: %i, %i; %i, %i\n", g_vertices[0].u, g_vertices[0].v, g_vertices[1].u, g_vertices[1].v);
a52e1f62 211 */
db298784 212}
213
b13a934c 214static void do_pal_update(int allow_sh, int allow_as)
703e4c7b 215{
6f748c47 216 unsigned int *dpal=(void *)localPal;
217 int i;
db298784 218
93c0d147 219 //for (i = 0x3f/2; i >= 0; i--)
220 // dpal[i] = ((spal[i]&0x000f000f)<< 1)|((spal[i]&0x00f000f0)<<3)|((spal[i]&0x0f000f00)<<4);
960a8e27 221 do_pal_convert(localPal, Pico.cram, currentConfig.gamma, currentConfig.gamma2);
db298784 222
b13a934c 223 Pico.m.dirtyPal = 0;
224 need_pal_upload = 1;
225
a52e1f62 226 if (allow_sh && (Pico.video.reg[0xC]&8)) // shadow/hilight?
6f748c47 227 {
228 // shadowed pixels
db298784 229 for (i = 0x3f/2; i >= 0; i--)
93c0d147 230 dpal[0x20|i] = dpal[0x60|i] = (dpal[i]>>1)&0x7bcf7bcf;
6f748c47 231 // hilighted pixels
232 for (i = 0x3f; i >= 0; i--) {
93c0d147 233 int t=localPal[i]&0xf79e;t+=0x4208;
234 if (t&0x20) t|=0x1e;
235 if (t&0x800) t|=0x780;
236 if (t&0x10000) t|=0xf000;
237 t&=0xf79e;
6f748c47 238 localPal[0x80|i]=(unsigned short)t;
239 }
240 localPal[0xe0] = 0;
8a091e48 241 localPal[0xf0] = 0x001f;
db298784 242 }
61f66fe0 243 else if (allow_as && (rendstatus & PDRAW_SPR_LO_ON_HI))
b13a934c 244 {
7443ecd9 245 memcpy32((int *)dpal+0x80/2, (void *)localPal, 0x40*2/4);
b13a934c 246 }
6f748c47 247}
db298784 248
6f748c47 249static void do_slowmode_lines(int line_to)
250{
251 int line = 0, line_len = (Pico.video.reg[12]&1) ? 320 : 256;
252 unsigned short *dst = (unsigned short *)VRAM_STUFF + 512*240/2;
253 unsigned char *src = (unsigned char *)VRAM_CACHED_STUFF + 16;
254 if (!(Pico.video.reg[1]&8)) { line = 8; dst += 512*8; src += 512*8; }
db298784 255
6f748c47 256 for (; line < line_to; line++, dst+=512, src+=512)
b13a934c 257 amips_clut_f(dst, src, localPal, line_len);
6f748c47 258}
db298784 259
6f748c47 260static void EmuScanPrepare(void)
261{
262 HighCol = (unsigned char *)VRAM_CACHED_STUFF + 8;
263 if (!(Pico.video.reg[1]&8)) HighCol += 8*512;
db298784 264
366747cc 265 if (dynamic_palette > 0)
266 dynamic_palette--;
7443ecd9 267
6f748c47 268 if (Pico.m.dirtyPal)
b13a934c 269 do_pal_update(1, 1);
61f66fe0 270 if ((rendstatus & PDRAW_SPR_LO_ON_HI) && !(Pico.video.reg[0xC]&8))
b13a934c 271 amips_clut_f = amips_clut_6bit;
272 else amips_clut_f = amips_clut;
6f748c47 273}
274
960a8e27 275static int EmuScanSlowBegin(unsigned int num)
276{
277 if (!(Pico.video.reg[1]&8)) num += 8;
278
279 if (!dynamic_palette)
280 HighCol = (unsigned char *)VRAM_CACHED_STUFF + num * 512 + 8;
281
282 return 0;
283}
284
285static int EmuScanSlowEnd(unsigned int num)
6f748c47 286{
287 if (!(Pico.video.reg[1]&8)) num += 8;
288
289 if (Pico.m.dirtyPal) {
290 if (!dynamic_palette) {
291 do_slowmode_lines(num);
366747cc 292 dynamic_palette = 3; // last for 2 more frames
6f748c47 293 }
7443ecd9 294 do_pal_update(1, 1);
6f748c47 295 }
296
297 if (dynamic_palette) {
298 int line_len = (Pico.video.reg[12]&1) ? 320 : 256;
299 void *dst = (char *)VRAM_STUFF + 512*240 + 512*2*num;
b13a934c 300 amips_clut_f(dst, HighCol + 8, localPal, line_len);
960a8e27 301 }
db298784 302
703e4c7b 303 return 0;
304}
305
6f748c47 306static void blitscreen_clut(void)
db298784 307{
6f748c47 308 int offs = fbimg_offs;
309 offs += (psp_screen == VRAM_FB0) ? VRAMOFFS_FB0 : VRAMOFFS_FB1;
db298784 310
db298784 311 sceGuSync(0,0); // sync with prev
312 sceGuStart(GU_DIRECT, guCmdList);
6f748c47 313 sceGuDrawBuffer(GU_PSM_5650, (void *)offs, 512); // point to back buffer
db298784 314
6f748c47 315 if (dynamic_palette)
316 {
8a091e48 317 if (!blit_16bit_mode) { // the current mode is not 16bit
6f748c47 318 sceGuTexMode(GU_PSM_5650, 0, 0, 0);
319 sceGuTexImage(0,512,512,512,(char *)VRAM_STUFF + 512*240);
db298784 320
6f748c47 321 blit_16bit_mode = 1;
322 }
db298784 323 }
6f748c47 324 else
db298784 325 {
6f748c47 326 if (blit_16bit_mode) {
327 sceGuClutMode(GU_PSM_5650,0,0xff,0);
328 sceGuTexMode(GU_PSM_T8,0,0,0); // 8-bit image
329 sceGuTexImage(0,512,512,512,(char *)VRAM_STUFF + 16);
330 blit_16bit_mode = 0;
331 }
db298784 332
6f748c47 333 if ((PicoOpt&0x10) && Pico.m.dirtyPal)
b13a934c 334 do_pal_update(0, 0);
a52e1f62 335
336 sceKernelDcacheWritebackAll();
db298784 337
6f748c47 338 if (need_pal_upload) {
339 need_pal_upload = 0;
340 sceGuClutLoad((256/8), localPal); // upload 32*8 entries (256)
341 }
342 }
703e4c7b 343
6f748c47 344#if 1
345 if (g_vertices[0].u == 0 && g_vertices[1].u == g_vertices[1].x)
346 {
347 struct Vertex* vertices;
348 int x;
703e4c7b 349
6f748c47 350 #define SLICE_WIDTH 32
351 for (x = 0; x < g_vertices[1].x; x += SLICE_WIDTH)
352 {
353 // render sprite
354 vertices = (struct Vertex*)sceGuGetMemory(2 * sizeof(struct Vertex));
355 memcpy(vertices, g_vertices, 2 * sizeof(struct Vertex));
356 vertices[0].u = vertices[0].x = x;
357 vertices[1].u = vertices[1].x = x + SLICE_WIDTH;
358 sceGuDrawArray(GU_SPRITES,GU_TEXTURE_16BIT|GU_VERTEX_16BIT|GU_TRANSFORM_2D,2,0,vertices);
359 }
360 // lprintf("listlen: %iB\n", sceGuCheckList()); // ~480 only
703e4c7b 361 }
6f748c47 362 else
363#endif
364 sceGuDrawArray(GU_SPRITES,GU_TEXTURE_16BIT|GU_VERTEX_16BIT|GU_TRANSFORM_2D,2,0,g_vertices);
365
366 sceGuFinish();
703e4c7b 367}
368
369
370static void cd_leds(void)
371{
16e89bed 372 unsigned int reg, col_g, col_r, *p;
703e4c7b 373
16e89bed 374 reg = Pico_mcd->s68k_regs[0];
703e4c7b 375
376 p = (unsigned int *)((short *)psp_screen + 512*2+4+2);
16e89bed 377 col_g = (reg & 2) ? 0x06000600 : 0;
378 col_r = (reg & 1) ? 0x00180018 : 0;
703e4c7b 379 *p++ = col_g; *p++ = col_g; p+=2; *p++ = col_r; *p++ = col_r; p += 512/2 - 12/2;
380 *p++ = col_g; *p++ = col_g; p+=2; *p++ = col_r; *p++ = col_r; p += 512/2 - 12/2;
381 *p++ = col_g; *p++ = col_g; p+=2; *p++ = col_r; *p++ = col_r;
382}
383
8a091e48 384static void draw_pico_ptr(void)
385{
386 unsigned char *p = (unsigned char *)VRAM_STUFF + 16;
387
388 // only if pen enabled and for 8bit mode
389 if (pico_inp_mode == 0 || blit_16bit_mode) return;
390
391 p += 512 * (pico_pen_y + PICO_PEN_ADJUST_Y);
392 p += pico_pen_x + PICO_PEN_ADJUST_X;
393 p[ -1] = 0xe0; p[ 0] = 0xf0; p[ 1] = 0xe0;
394 p[ 511] = 0xf0; p[ 512] = 0xf0; p[ 513] = 0xf0;
395 p[1023] = 0xe0; p[1024] = 0xf0; p[1025] = 0xe0;
396}
397
398
5ecedd0c 399#if 0
6f748c47 400static void dbg_text(void)
703e4c7b 401{
6f748c47 402 int *p, h, len;
403 char text[128];
703e4c7b 404
6f748c47 405 sprintf(text, "sl: %i, 16b: %i", g_vertices[0].u == 0 && g_vertices[1].u == g_vertices[1].x, blit_16bit_mode);
406 len = strlen(text) * 8 / 2;
407 for (h = 0; h < 8; h++) {
408 p = (int *) ((unsigned short *) psp_screen+2+512*(256+h));
409 p = (int *) ((int)p & ~3); // align
5ecedd0c 410 memset32_uncached(p, 0, len);
703e4c7b 411 }
6f748c47 412 emu_textOut16(2, 256, text);
413}
5ecedd0c 414#endif
6f748c47 415
416/* called after rendering is done, but frame emulation is not finished */
417void blit1(void)
418{
419 if (PicoOpt&0x10)
703e4c7b 420 {
6f748c47 421 int i;
422 unsigned char *pd;
423 // clear top and bottom trash
424 for (pd = PicoDraw2FB+8, i = 8; i > 0; i--, pd += 512)
425 memset32((int *)pd, 0xe0e0e0e0, 320/4);
426 for (pd = PicoDraw2FB+512*232+8, i = 8; i > 0; i--, pd += 512)
427 memset32((int *)pd, 0xe0e0e0e0, 320/4);
703e4c7b 428 }
6f748c47 429
8a091e48 430 if (PicoAHW & PAHW_PICO)
431 draw_pico_ptr();
432
6f748c47 433 blitscreen_clut();
434}
435
436
4b8f4f3c 437static void blit2(const char *fps, const char *notice, int lagging_behind)
6f748c47 438{
4b8f4f3c 439 int vsync = 0, emu_opt = currentConfig.EmuOpt;
703e4c7b 440
441 if (notice || (emu_opt & 2)) {
60a10527 442 if (notice) osd_text(4, notice, 0, 0);
443 if (emu_opt & 2) osd_text(OSD_FPS_X, fps, 0, 0);
703e4c7b 444 }
445
5ecedd0c 446 //dbg_text();
6f748c47 447
dd5fd477 448 if ((emu_opt & 0x400) && (PicoAHW & PAHW_MCD))
703e4c7b 449 cd_leds();
450
4b8f4f3c 451 if (currentConfig.EmuOpt & 0x2000) { // want vsync
452 if (!(currentConfig.EmuOpt & 0x10000) || !lagging_behind) vsync = 1;
453 }
454
455 psp_video_flip(vsync);
703e4c7b 456}
457
458// clears whole screen or just the notice area (in all buffers)
459static void clearArea(int full)
460{
461 if (full) {
5ecedd0c 462 memset32_uncached(psp_screen, 0, 512*272*2/4);
703e4c7b 463 psp_video_flip(0);
5ecedd0c 464 memset32_uncached(psp_screen, 0, 512*272*2/4);
6f748c47 465 memset32(VRAM_CACHED_STUFF, 0xe0e0e0e0, 512*240/4);
466 memset32((int *)VRAM_CACHED_STUFF+512*240/4, 0, 512*240*2/4);
703e4c7b 467 } else {
468 void *fb = psp_video_get_active_fb();
5ecedd0c 469 memset32_uncached((int *)((char *)psp_screen + 512*264*2), 0, 512*8*2/4);
470 memset32_uncached((int *)((char *)fb + 512*264*2), 0, 512*8*2/4);
703e4c7b 471 }
472}
473
474static void vidResetMode(void)
475{
db298784 476 // setup GU
477 sceGuSync(0,0); // sync with prev
478 sceGuStart(GU_DIRECT, guCmdList);
479
480 sceGuClutMode(GU_PSM_5650,0,0xff,0);
db298784 481 sceGuTexMode(GU_PSM_T8,0,0,0); // 8-bit image
482 sceGuTexFunc(GU_TFX_REPLACE,GU_TCC_RGB);
6f748c47 483 if (currentConfig.scaling)
484 sceGuTexFilter(GU_LINEAR, GU_LINEAR);
485 else sceGuTexFilter(GU_NEAREST, GU_NEAREST);
db298784 486 sceGuTexScale(1.0f,1.0f);
487 sceGuTexOffset(0.0f,0.0f);
db298784 488
6f748c47 489 sceGuTexImage(0,512,512,512,(char *)VRAM_STUFF + 16);
db298784 490
6f748c47 491 // slow rend.
492 PicoDrawSetColorFormat(-1);
960a8e27 493 PicoScanBegin = EmuScanSlowBegin;
494 PicoScanEnd = EmuScanSlowEnd;
db298784 495
6f748c47 496 localPal[0xe0] = 0;
8a091e48 497 localPal[0xf0] = 0x001f;
703e4c7b 498 Pico.m.dirtyPal = 1;
6f748c47 499 blit_16bit_mode = dynamic_palette = 0;
703e4c7b 500
db298784 501 sceGuFinish();
6f748c47 502 set_scaling_params();
db298784 503 sceGuSync(0,0);
703e4c7b 504}
6f748c47 505
93c18cb4 506void plat_debug_cat(char *str)
7443ecd9 507{
508 strcat(str, blit_16bit_mode ? "soft clut\n" : "hard clut\n");
509}
510
0953046b 511
512/* sound stuff */
b9342840 513#define SOUND_BLOCK_SIZE_NTSC (1470*2) // 1024 // 1152
514#define SOUND_BLOCK_SIZE_PAL (1764*2)
a6df06b7 515#define SOUND_BLOCK_COUNT 8
0953046b 516
2aea862d 517static short __attribute__((aligned(4))) sndBuffer[SOUND_BLOCK_SIZE_PAL*SOUND_BLOCK_COUNT + 44100/50*2];
518static short *snd_playptr = NULL, *sndBuffer_endptr = NULL;
519static int samples_made = 0, samples_done = 0, samples_block = 0;
0953046b 520static int sound_thread_exit = 0;
521static SceUID sound_sem = -1;
522
523static void writeSound(int len);
524
525static int sound_thread(SceSize args, void *argp)
703e4c7b 526{
a6df06b7 527 int ret = 0;
0953046b 528
ae1bf35c 529 lprintf("sthr: started, priority %i\n", sceKernelGetThreadCurrentPriority());
0953046b 530
531 while (!sound_thread_exit)
532 {
533 if (samples_made - samples_done < samples_block) {
b9342840 534 // wait for data (use at least 2 blocks)
fe9e3b25 535 //lprintf("sthr: wait... (%i)\n", samples_made - samples_done);
b9342840 536 while (samples_made - samples_done <= samples_block*2 && !sound_thread_exit)
537 ret = sceKernelWaitSema(sound_sem, 1, 0);
a6df06b7 538 if (ret < 0) lprintf("sthr: sceKernelWaitSema: %i\n", ret);
0953046b 539 continue;
540 }
541
a6df06b7 542 // lprintf("sthr: got data: %i\n", samples_made - samples_done);
0953046b 543
544 ret = sceAudio_E0727056(PSP_AUDIO_VOLUME_MAX, snd_playptr);
545
546 samples_done += samples_block;
547 snd_playptr += samples_block;
2aea862d 548 if (snd_playptr >= sndBuffer_endptr)
0953046b 549 snd_playptr = sndBuffer;
fe9e3b25 550 // 1.5 kernel returns 0, newer ones return # of samples queued
551 if (ret < 0)
552 lprintf("sthr: sceAudio_E0727056: %08x; pos %i/%i\n", ret, samples_done, samples_made);
b9342840 553
554 // shouln't happen, but just in case
555 if (samples_made - samples_done >= samples_block*3) {
6d741b32 556 //lprintf("sthr: block skip (%i)\n", samples_made - samples_done);
b9342840 557 samples_done += samples_block; // skip
558 snd_playptr += samples_block;
559 }
560
0953046b 561 }
562
563 lprintf("sthr: exit\n");
564 sceKernelExitDeleteThread(0);
565 return 0;
566}
567
568static void sound_init(void)
569{
570 SceUID thid;
fe9e3b25 571 int ret;
0953046b 572
573 sound_sem = sceKernelCreateSema("sndsem", 0, 0, 1, NULL);
574 if (sound_sem < 0) lprintf("sceKernelCreateSema() failed: %i\n", sound_sem);
575
ae1bf35c 576 samples_made = samples_done = 0;
577 samples_block = SOUND_BLOCK_SIZE_NTSC; // make sure it goes to sema
0953046b 578 sound_thread_exit = 0;
579 thid = sceKernelCreateThread("sndthread", sound_thread, 0x12, 0x10000, 0, NULL);
580 if (thid >= 0)
581 {
fe9e3b25 582 ret = sceKernelStartThread(thid, 0, 0);
583 if (ret < 0) lprintf("sound_init: sceKernelStartThread returned %08x\n", ret);
0953046b 584 }
585 else
586 lprintf("sceKernelCreateThread failed: %i\n", thid);
587}
588
93c18cb4 589void pemu_sound_start(void)
0953046b 590{
591 static int PsndRate_old = 0, PicoOpt_old = 0, pal_old = 0;
592 int ret, stereo;
593
594 samples_made = samples_done = 0;
595
596 if (PsndRate != PsndRate_old || (PicoOpt&0x0b) != (PicoOpt_old&0x0b) || Pico.m.pal != pal_old) {
c4f2f371 597 PsndRerate(Pico.m.frame_count ? 1 : 0);
0953046b 598 }
599 stereo=(PicoOpt&8)>>3;
2aea862d 600
601 samples_block = Pico.m.pal ? SOUND_BLOCK_SIZE_PAL : SOUND_BLOCK_SIZE_NTSC;
b9342840 602 if (PsndRate <= 22050) samples_block /= 2;
2aea862d 603 sndBuffer_endptr = &sndBuffer[samples_block*SOUND_BLOCK_COUNT];
0953046b 604
605 lprintf("starting audio: %i, len: %i, stereo: %i, pal: %i, block samples: %i\n",
606 PsndRate, PsndLen, stereo, Pico.m.pal, samples_block);
607
60a10527 608 // while (sceAudioOutput2GetRestSample() > 0) psp_msleep(100);
609 // sceAudio_5C37C0AE();
2aea862d 610 ret = sceAudio_38553111(samples_block/2, PsndRate, 2); // seems to not need that stupid 64byte alignment
0953046b 611 if (ret < 0) {
612 lprintf("sceAudio_38553111() failed: %i\n", ret);
388947f3 613 plat_status_msg("sound init failed (%i), snd disabled", ret);
614 currentConfig.EmuOpt &= ~EOPT_EN_SOUND;
0953046b 615 } else {
0953046b 616 PicoWriteSound = writeSound;
617 memset32((int *)(void *)sndBuffer, 0, sizeof(sndBuffer)/4);
2aea862d 618 snd_playptr = sndBuffer_endptr - samples_block;
619 samples_made = samples_block; // send 1 empty block first..
0953046b 620 PsndOut = sndBuffer;
621 PsndRate_old = PsndRate;
622 PicoOpt_old = PicoOpt;
623 pal_old = Pico.m.pal;
624 }
625}
626
93c18cb4 627void pemu_sound_stop(void)
0953046b 628{
60a10527 629 int i;
630 if (samples_done == 0)
631 {
632 // if no data is written between sceAudio_38553111 and sceAudio_5C37C0AE calls,
633 // we get a deadlock on next sceAudio_38553111 call
634 // so this is yet another workaround:
635 memset32((int *)(void *)sndBuffer, 0, samples_block*4/4);
636 samples_made = samples_block * 3;
637 sceKernelSignalSema(sound_sem, 1);
638 }
639 sceKernelDelayThread(100*1000);
a52e1f62 640 samples_made = samples_done = 0;
60a10527 641 for (i = 0; sceAudioOutput2GetRestSample() > 0 && i < 16; i++)
2aea862d 642 psp_msleep(100);
643 sceAudio_5C37C0AE();
0953046b 644}
645
725d7f6c 646/* wait until we can write more sound */
93c18cb4 647void pemu_sound_wait(void)
725d7f6c 648{
649 // TODO: test this
650 while (!sound_thread_exit && samples_made - samples_done > samples_block * 4)
651 psp_msleep(10);
652}
653
0953046b 654static void sound_deinit(void)
655{
656 sound_thread_exit = 1;
657 sceKernelSignalSema(sound_sem, 1);
a52e1f62 658 sceKernelDeleteSema(sound_sem);
659 sound_sem = -1;
0953046b 660}
661
662static void writeSound(int len)
663{
664 int ret;
703e4c7b 665 if (PicoOpt&8) len<<=1;
666
0953046b 667 PsndOut += len;
2aea862d 668 /*if (PsndOut > sndBuffer_endptr) {
0953046b 669 memcpy32((int *)(void *)sndBuffer, (int *)endptr, (PsndOut - endptr + 1) / 2);
670 PsndOut = &sndBuffer[PsndOut - endptr];
2aea862d 671 lprintf("mov\n");
0953046b 672 }
2aea862d 673 else*/
a6df06b7 674 if (PsndOut > sndBuffer_endptr) lprintf("snd oflow %i!\n", PsndOut - sndBuffer_endptr);
2aea862d 675 if (PsndOut >= sndBuffer_endptr)
676 PsndOut = sndBuffer;
0953046b 677
678 // signal the snd thread
679 samples_made += len;
b9342840 680 if (samples_made - samples_done > samples_block*2) {
2aea862d 681 // lprintf("signal, %i/%i\n", samples_done, samples_made);
0953046b 682 ret = sceKernelSignalSema(sound_sem, 1);
a6df06b7 683 //if (ret < 0) lprintf("snd signal ret %08x\n", ret);
0953046b 684 }
703e4c7b 685}
0953046b 686
703e4c7b 687
688static void SkipFrame(void)
689{
690 PicoSkipFrame=1;
691 PicoFrame();
692 PicoSkipFrame=0;
693}
694
93c18cb4 695void pemu_forced_frame(int opts)
703e4c7b 696{
697 int po_old = PicoOpt;
698 int eo_old = currentConfig.EmuOpt;
699
84e21f25 700 PicoOpt &= ~0x10;
8a091e48 701 PicoOpt |= opts|POPT_ACC_SPRITES;
703e4c7b 702 currentConfig.EmuOpt |= 0x80;
703
6f748c47 704 vidResetMode();
705 memset32(VRAM_CACHED_STUFF, 0xe0e0e0e0, 512*8/4); // borders
706 memset32((int *)VRAM_CACHED_STUFF + 512*232/4, 0xe0e0e0e0, 512*8/4);
5ecedd0c 707 memset32_uncached((int *)psp_screen + 512*264*2/4, 0, 512*8*2/4);
6f748c47 708
709 PicoDrawSetColorFormat(-1);
960a8e27 710 PicoScanBegin = EmuScanSlowBegin;
711 PicoScanEnd = EmuScanSlowEnd;
db298784 712 EmuScanPrepare();
703e4c7b 713 PicoFrameDrawOnly();
6f748c47 714 blit1();
715 sceGuSync(0,0);
703e4c7b 716
717 PicoOpt = po_old;
718 currentConfig.EmuOpt = eo_old;
719}
720
721
8a091e48 722static void RunEventsPico(unsigned int events, unsigned int keys)
723{
724 emu_RunEventsPico(events);
725
726 if (pico_inp_mode != 0)
727 {
728 PicoPad[0] &= ~0x0f; // release UDLR
b3972d82 729 if (keys & PBTN_UP) { pico_pen_y--; if (pico_pen_y < 8) pico_pen_y = 8; }
730 if (keys & PBTN_DOWN) { pico_pen_y++; if (pico_pen_y > 224-PICO_PEN_ADJUST_Y) pico_pen_y = 224-PICO_PEN_ADJUST_Y; }
731 if (keys & PBTN_LEFT) { pico_pen_x--; if (pico_pen_x < 0) pico_pen_x = 0; }
732 if (keys & PBTN_RIGHT) {
8a091e48 733 int lim = (Pico.video.reg[12]&1) ? 319 : 255;
734 pico_pen_x++;
735 if (pico_pen_x > lim-PICO_PEN_ADJUST_X)
736 pico_pen_x = lim-PICO_PEN_ADJUST_X;
737 }
738 PicoPicohw.pen_pos[0] = pico_pen_x;
739 if (!(Pico.video.reg[12]&1)) PicoPicohw.pen_pos[0] += pico_pen_x/4;
740 PicoPicohw.pen_pos[0] += 0x3c;
741 PicoPicohw.pen_pos[1] = pico_inp_mode == 1 ? (0x2f8 + pico_pen_y) : (0x1fc + pico_pen_y);
742 }
743}
744
703e4c7b 745static void RunEvents(unsigned int which)
746{
747 if (which & 0x1800) // save or load (but not both)
748 {
749 int do_it = 1;
750
751 if ( emu_checkSaveFile(state_slot) &&
752 (( (which & 0x1000) && (currentConfig.EmuOpt & 0x800)) || // load
753 (!(which & 0x1000) && (currentConfig.EmuOpt & 0x200))) ) // save
754 {
755 int keys;
4b8f4f3c 756 sceGuSync(0,0);
757 blit2("", (which & 0x1000) ? "LOAD STATE? (X=yes, O=no)" : "OVERWRITE SAVE? (X=yes, O=no)", 0);
b3972d82 758 while( !((keys = psp_pad_read(1)) & (PBTN_X|PBTN_CIRCLE)) )
703e4c7b 759 psp_msleep(50);
b3972d82 760 if (keys & PBTN_CIRCLE) do_it = 0;
761 while( ((keys = psp_pad_read(1)) & (PBTN_X|PBTN_CIRCLE)) ) // wait for release
703e4c7b 762 psp_msleep(50);
763 clearArea(0);
764 }
765
766 if (do_it)
767 {
60a10527 768 osd_text(4, (which & 0x1000) ? "LOADING GAME" : "SAVING GAME", 1, 0);
6f748c47 769 PicoStateProgressCB = emu_msg_cb;
703e4c7b 770 emu_SaveLoadGame((which & 0x1000) >> 12, 0);
771 PicoStateProgressCB = NULL;
772 psp_msleep(0);
773 }
774
775 reset_timing = 1;
776 }
777 if (which & 0x0400) // switch renderer
778 {
779 if (PicoOpt&0x10) { PicoOpt&=~0x10; currentConfig.EmuOpt |= 0x80; }
780 else { PicoOpt|= 0x10; currentConfig.EmuOpt &= ~0x80; }
781
782 vidResetMode();
783
388947f3 784 if (PicoOpt & POPT_ALT_RENDERER)
785 plat_status_msg("fast renderer");
ae1bf35c 786 else if (currentConfig.EmuOpt&0x80)
388947f3 787 plat_status_msg("accurate renderer");
703e4c7b 788 }
789 if (which & 0x0300)
790 {
791 if(which&0x0200) {
792 state_slot -= 1;
793 if(state_slot < 0) state_slot = 9;
794 } else {
795 state_slot += 1;
796 if(state_slot > 9) state_slot = 0;
797 }
388947f3 798 plat_status_msg("SAVE SLOT %i [%s]", state_slot,
799 emu_checkSaveFile(state_slot) ? "USED" : "FREE");
703e4c7b 800 }
801}
802
803static void updateKeys(void)
804{
805 unsigned int keys, allActions[2] = { 0, 0 }, events;
806 static unsigned int prevEvents = 0;
807 int i;
808
388947f3 809 /* FIXME: port to input fw, merge with emu.c:emu_update_input() */
703e4c7b 810 keys = psp_pad_read(0);
2b90fc61 811 if (keys & PSP_CTRL_HOME)
812 sceDisplayWaitVblankStart();
813
b3972d82 814 if (keys & PBTN_SELECT)
703e4c7b 815 engineState = PGS_Menu;
816
817 keys &= CONFIGURABLE_KEYS;
818
6589c840 819 PicoPad[0] = allActions[0] & 0xfff;
820 PicoPad[1] = allActions[1] & 0xfff;
821
822 if (allActions[0] & 0x7000) emu_DoTurbo(&PicoPad[0], allActions[0]);
823 if (allActions[1] & 0x7000) emu_DoTurbo(&PicoPad[1], allActions[1]);
703e4c7b 824
825 events = (allActions[0] | allActions[1]) >> 16;
826
8a091e48 827 if ((events ^ prevEvents) & 0x40) {
828 emu_changeFastForward(events & 0x40);
829 reset_timing = 1;
830 }
831
703e4c7b 832 events &= ~prevEvents;
8a091e48 833
834 if (PicoAHW == PAHW_PICO)
835 RunEventsPico(events, keys);
703e4c7b 836 if (events) RunEvents(events);
837 if (movie_data) emu_updateMovie();
838
839 prevEvents = (allActions[0] | allActions[1]) >> 16;
840}
841
703e4c7b 842
843static void simpleWait(unsigned int until)
844{
845 unsigned int tval;
846 int diff;
847
848 tval = sceKernelGetSystemTimeLow();
849 diff = (int)until - (int)tval;
850 if (diff >= 512 && diff < 100*1024)
851 sceKernelDelayThread(diff);
852}
853
93c18cb4 854void pemu_loop(void)
703e4c7b 855{
fe9e3b25 856 static int mp3_init_done = 0;
703e4c7b 857 char fpsbuff[24]; // fps count c string
960a8e27 858 unsigned int tval, tval_thissec = 0; // timing
859 int target_fps, target_frametime, lim_time, tval_diff, i, oldmodes = 0;
860 int pframes_done, pframes_shown; // "period" frames, used for sync
861 int frames_done, frames_shown, tval_fpsc = 0; // actual frames
703e4c7b 862 char *notice = NULL;
863
864 lprintf("entered emu_Loop()\n");
865
866 fpsbuff[0] = 0;
867
2b90fc61 868 if (currentConfig.CPUclock != psp_get_cpu_clock()) {
869 lprintf("setting cpu clock to %iMHz... ", currentConfig.CPUclock);
870 i = psp_set_cpu_clock(currentConfig.CPUclock);
871 lprintf(i ? "failed\n" : "done\n");
872 currentConfig.CPUclock = psp_get_cpu_clock();
873 }
874
703e4c7b 875 // make sure we are in correct mode
876 vidResetMode();
6f748c47 877 clearArea(1);
703e4c7b 878 Pico.m.dirtyPal = 1;
879 oldmodes = ((Pico.video.reg[12]&1)<<2) ^ 0xc;
703e4c7b 880
881 // pal/ntsc might have changed, reset related stuff
882 target_fps = Pico.m.pal ? 50 : 60;
883 target_frametime = Pico.m.pal ? (1000000<<8)/50 : (1000000<<8)/60+1;
884 reset_timing = 1;
885
dd5fd477 886 if (PicoAHW & PAHW_MCD) {
fe9e3b25 887 // prepare CD buffer
888 PicoCDBufferInit();
889 // mp3...
890 if (!mp3_init_done) {
891 i = mp3_init();
892 mp3_init_done = 1;
893 if (i) { engineState = PGS_Menu; return; }
894 }
895 }
703e4c7b 896
897 // prepare sound stuff
898 PsndOut = NULL;
93c18cb4 899 if (currentConfig.EmuOpt & EOPT_EN_SOUND)
703e4c7b 900 {
93c18cb4 901 pemu_sound_start();
703e4c7b 902 }
703e4c7b 903
c93fb19e 904 sceDisplayWaitVblankStart();
960a8e27 905 pframes_shown = pframes_done =
906 frames_shown = frames_done = 0;
907
908 tval_fpsc = sceKernelGetSystemTimeLow();
c93fb19e 909
703e4c7b 910 // loop?
911 while (engineState == PGS_Running)
912 {
913 int modes;
914
915 tval = sceKernelGetSystemTimeLow();
960a8e27 916 if (reset_timing || tval < tval_fpsc) {
703e4c7b 917 //stdbg("timing reset");
918 reset_timing = 0;
919 tval_thissec = tval;
960a8e27 920 pframes_shown = pframes_done = 0;
703e4c7b 921 }
922
923 // show notice message?
924 if (noticeMsgTime) {
925 static int noticeMsgSum;
926 if (tval - noticeMsgTime > 2000000) { // > 2.0 sec
927 noticeMsgTime = 0;
928 clearArea(0);
929 notice = 0;
930 } else {
931 int sum = noticeMsg[0]+noticeMsg[1]+noticeMsg[2];
932 if (sum != noticeMsgSum) { clearArea(0); noticeMsgSum = sum; }
933 notice = noticeMsg;
934 }
935 }
936
937 // check for mode changes
938 modes = ((Pico.video.reg[12]&1)<<2)|(Pico.video.reg[1]&8);
939 if (modes != oldmodes) {
940 oldmodes = modes;
941 clearArea(1);
6f748c47 942 set_scaling_params();
703e4c7b 943 }
944
945 // second passed?
960a8e27 946 if (tval - tval_fpsc >= 1000000)
947 {
948 if (currentConfig.EmuOpt & 2)
949 sprintf(fpsbuff, "%02i/%02i ", frames_shown, frames_done);
950 frames_done = frames_shown = 0;
951 tval_fpsc += 1000000;
952 }
953
703e4c7b 954 if (tval - tval_thissec >= 1000000)
955 {
2aea862d 956 // missing 1 frame?
960a8e27 957 if (currentConfig.Frameskip < 0 && pframes_done < target_fps) {
958 SkipFrame(); pframes_done++; frames_done++;
703e4c7b 959 }
2aea862d 960
703e4c7b 961 tval_thissec += 1000000;
962
963 if (currentConfig.Frameskip < 0) {
960a8e27 964 pframes_done -= target_fps; if (pframes_done < 0) pframes_done = 0;
965 pframes_shown -= target_fps; if (pframes_shown < 0) pframes_shown = 0;
966 if (pframes_shown > pframes_done) pframes_shown = pframes_done;
703e4c7b 967 } else {
960a8e27 968 pframes_done = pframes_shown = 0;
703e4c7b 969 }
970 }
971#ifdef PFRAMES
972 sprintf(fpsbuff, "%i", Pico.m.frame_count);
973#endif
974
960a8e27 975 lim_time = (pframes_done+1) * target_frametime;
703e4c7b 976 if (currentConfig.Frameskip >= 0) // frameskip enabled
977 {
978 for (i = 0; i < currentConfig.Frameskip; i++) {
979 updateKeys();
960a8e27 980 SkipFrame(); pframes_done++; frames_done++;
c6334564 981 if (!(currentConfig.EmuOpt&0x40000)) { // do framelimitting if needed
703e4c7b 982 int tval_diff;
983 tval = sceKernelGetSystemTimeLow();
984 tval_diff = (int)(tval - tval_thissec) << 8;
985 if (tval_diff < lim_time) // we are too fast
986 simpleWait(tval + ((lim_time - tval_diff)>>8));
987 }
988 lim_time += target_frametime;
989 }
990 }
991 else // auto frameskip
992 {
993 int tval_diff;
994 tval = sceKernelGetSystemTimeLow();
995 tval_diff = (int)(tval - tval_thissec) << 8;
960a8e27 996 if (tval_diff > lim_time && (pframes_done/16 < pframes_shown))
703e4c7b 997 {
998 // no time left for this frame - skip
999 if (tval_diff - lim_time >= (300000<<8)) {
703e4c7b 1000 reset_timing = 1;
1001 continue;
1002 }
1003 updateKeys();
960a8e27 1004 SkipFrame(); pframes_done++; frames_done++;
703e4c7b 1005 continue;
1006 }
1007 }
1008
1009 updateKeys();
1010
1011 if (!(PicoOpt&0x10))
db298784 1012 EmuScanPrepare();
703e4c7b 1013
1014 PicoFrame();
1015
4b8f4f3c 1016 sceGuSync(0,0);
703e4c7b 1017
1018 // check time
1019 tval = sceKernelGetSystemTimeLow();
1020 tval_diff = (int)(tval - tval_thissec) << 8;
1021
4b8f4f3c 1022 blit2(fpsbuff, notice, tval_diff > lim_time);
1023
960a8e27 1024 if (currentConfig.Frameskip < 0 && tval_diff - lim_time >= (300000<<8)) { // slowdown detection
703e4c7b 1025 reset_timing = 1;
960a8e27 1026 }
c6334564 1027 else if (!(currentConfig.EmuOpt&0x40000) || currentConfig.Frameskip < 0)
703e4c7b 1028 {
1029 // sleep if we are still too fast
1030 if (tval_diff < lim_time)
1031 {
1032 // we are too fast
1033 simpleWait(tval + ((lim_time - tval_diff) >> 8));
1034 }
1035 }
1036
960a8e27 1037 pframes_done++; pframes_shown++;
1038 frames_done++; frames_shown++;
703e4c7b 1039 }
1040
1041
8a091e48 1042 emu_changeFastForward(0);
1043
dd5fd477 1044 if (PicoAHW & PAHW_MCD) PicoCDBufferFree();
0953046b 1045
703e4c7b 1046 if (PsndOut != NULL) {
93c18cb4 1047 pemu_sound_stop();
0953046b 1048 PsndOut = NULL;
703e4c7b 1049 }
0953046b 1050
703e4c7b 1051 // save SRAM
1052 if ((currentConfig.EmuOpt & 1) && SRam.changed) {
6f748c47 1053 emu_msg_cb("Writing SRAM/BRAM..");
703e4c7b 1054 emu_SaveLoadGame(0, 1);
1055 SRam.changed = 0;
1056 }
0953046b 1057
a52e1f62 1058 // clear fps counters and stuff
5ecedd0c 1059 memset32_uncached((int *)psp_video_get_active_fb() + 512*264*2/4, 0, 512*8*2/4);
703e4c7b 1060}
1061
677b5dd8 1062void emu_HandleResume(void)
1063{
dd5fd477 1064 if (!(PicoAHW & PAHW_MCD)) return;
677b5dd8 1065
dfa8d77a 1066 // reopen first CD track
677b5dd8 1067 if (Pico_mcd->TOC.Tracks[0].F != NULL)
1068 {
049a6b3e 1069 char *fname = rom_fname_reload;
1070 int len = strlen(rom_fname_reload);
dfa8d77a 1071 cue_data_t *cue_data = NULL;
1072
1073 if (len > 4 && strcasecmp(fname + len - 4, ".cue") == 0)
1074 {
049a6b3e 1075 cue_data = cue_parse(rom_fname_reload);
dfa8d77a 1076 if (cue_data != NULL)
1077 fname = cue_data->tracks[1].fname;
1078 }
1079
1080 lprintf("emu_HandleResume: reopen %s\n", fname);
677b5dd8 1081 pm_close(Pico_mcd->TOC.Tracks[0].F);
dfa8d77a 1082 Pico_mcd->TOC.Tracks[0].F = pm_open(fname);
677b5dd8 1083 lprintf("reopen %s\n", Pico_mcd->TOC.Tracks[0].F != NULL ? "ok" : "failed");
dfa8d77a 1084
1085 if (cue_data != NULL) cue_destroy(cue_data);
677b5dd8 1086 }
1087
1088 mp3_reopen_file();
dfa8d77a 1089
1090 if (!(Pico_mcd->s68k_regs[0x36] & 1) && (Pico_mcd->scd.Status_CDC & 1))
1091 cdda_start_play();
677b5dd8 1092}
1093