3 * (c) Copyright Dave, 2004
\r
4 * (C) notaz, 2006-2009
\r
6 * This work is licensed under the terms of MAME license.
\r
7 * See COPYING file in the top-level directory.
\r
12 #include "sn76496.h"
\r
13 #include "../pico_int.h"
\r
14 #include "../cd/cue.h"
\r
17 void (*PsndMix_32_to_16l)(short *dest, int *src, int count) = mix_32_to_16l_stereo;
\r
19 // master int buffer to mix to
\r
20 static int PsndBuffer[2*(44100+100)/50];
\r
23 static unsigned short dac_info[312+4]; // pos in sample buffer
\r
25 // cdda output buffer
\r
26 short cdda_out_buffer[2*1152];
\r
30 int PsndLen=0; // number of mono samples, multiply by 2 for stereo
\r
31 int PsndLen_exc_add=0; // this is for non-integer sample counts per line, eg. 22050/60
\r
32 int PsndLen_exc_cnt=0;
\r
33 int PsndDacLine, PsndPsgLine;
\r
34 short *PsndOut=NULL; // PCM data buffer
\r
35 static int PsndLen_use;
\r
38 int timer_a_next_oflow, timer_a_step; // in z80 cycles
\r
39 int timer_b_next_oflow, timer_b_step;
\r
42 extern int *sn76496_regs;
\r
45 static void dac_recalculate(void)
\r
47 int i, dac_cnt, pos, len, lines = Pico.m.pal ? 313 : 262, mid = Pico.m.pal ? 68 : 93;
\r
49 if (PsndLen <= lines)
\r
56 for(i=226; i != 225; i++)
\r
58 if (i >= lines) i = 0;
\r
72 for(i = 225; i != 224; i++)
\r
74 if (i >= lines) i = 0;
\r
76 while(dac_cnt >= 0) {
\r
80 if (i == mid) // midpoint
\r
81 while(pos+len < PsndLen/2) {
\r
90 for (i = lines; i < sizeof(dac_info) / sizeof(dac_info[0]); i++)
\r
91 dac_info[i] = dac_info[0];
\r
95 PICO_INTERNAL void PsndReset(void)
\r
97 // PsndRerate calls YM2612Init, which also resets
\r
103 // to be called after changing sound rate or chips
\r
104 void PsndRerate(int preserve_state)
\r
106 void *state = NULL;
\r
107 int target_fps = Pico.m.pal ? 50 : 60;
\r
109 if (preserve_state) {
\r
110 state = malloc(0x204);
\r
111 if (state == NULL) return;
\r
112 ym2612_pack_state();
\r
113 memcpy(state, YM2612GetRegs(), 0x204);
\r
115 YM2612Init(Pico.m.pal ? OSC_PAL/7 : OSC_NTSC/7, PsndRate);
\r
116 if (preserve_state) {
\r
117 // feed it back it's own registers, just like after loading state
\r
118 memcpy(YM2612GetRegs(), state, 0x204);
\r
119 ym2612_unpack_state();
\r
122 if (preserve_state) memcpy(state, sn76496_regs, 28*4); // remember old state
\r
123 SN76496_init(Pico.m.pal ? OSC_PAL/15 : OSC_NTSC/15, PsndRate);
\r
124 if (preserve_state) memcpy(sn76496_regs, state, 28*4); // restore old state
\r
129 // calculate PsndLen
\r
130 PsndLen=PsndRate / target_fps;
\r
131 PsndLen_exc_add=((PsndRate - PsndLen*target_fps)<<16) / target_fps;
\r
134 // recalculate dac info
\r
137 // clear all buffers
\r
138 memset32(PsndBuffer, 0, sizeof(PsndBuffer)/4);
\r
139 memset(cdda_out_buffer, 0, sizeof(cdda_out_buffer));
\r
144 PsndMix_32_to_16l = (PicoIn.opt & POPT_EN_STEREO) ? mix_32_to_16l_stereo : mix_32_to_16_mono;
\r
146 if (PicoIn.AHW & PAHW_PICO)
\r
151 PICO_INTERNAL void PsndStartFrame(void)
\r
153 // compensate for float part of PsndLen
\r
154 PsndLen_use = PsndLen;
\r
155 PsndLen_exc_cnt += PsndLen_exc_add;
\r
156 if (PsndLen_exc_cnt >= 0x10000) {
\r
157 PsndLen_exc_cnt -= 0x10000;
\r
161 PsndDacLine = PsndPsgLine = 0;
\r
162 Pico.m.status &= ~1;
\r
163 dac_info[224] = PsndLen_use;
\r
166 PICO_INTERNAL void PsndDoDAC(int line_to)
\r
168 int pos, pos1, len;
\r
169 int dout = ym2612.dacout;
\r
170 int line_from = PsndDacLine;
\r
172 if (line_to >= 313)
\r
175 pos = dac_info[line_from];
\r
176 pos1 = dac_info[line_to + 1];
\r
181 PsndDacLine = line_to + 1;
\r
186 if (PicoIn.opt & POPT_EN_STEREO) {
\r
187 short *d = PsndOut + pos*2;
\r
188 for (; len > 0; len--, d+=2) *d += dout;
\r
190 short *d = PsndOut + pos;
\r
191 for (; len > 0; len--, d++) *d += dout;
\r
195 PICO_INTERNAL void PsndDoPSG(int line_to)
\r
197 int line_from = PsndPsgLine;
\r
198 int pos, pos1, len;
\r
201 if (line_to >= 313)
\r
204 pos = dac_info[line_from];
\r
205 pos1 = dac_info[line_to + 1];
\r
207 //elprintf(EL_STATUS, "%3d %3d %3d %3d %3d",
\r
208 // pos, pos1, len, line_from, line_to);
\r
212 PsndPsgLine = line_to + 1;
\r
214 if (!PsndOut || !(PicoIn.opt & POPT_EN_PSG))
\r
217 if (PicoIn.opt & POPT_EN_STEREO) {
\r
221 SN76496Update(PsndOut + pos, len, stereo);
\r
225 static void cdda_raw_update(int *buffer, int length)
\r
227 int ret, cdda_bytes, mult = 1;
\r
229 cdda_bytes = length*4;
\r
230 if (PsndRate <= 22050 + 100) mult = 2;
\r
231 if (PsndRate < 22050 - 100) mult = 4;
\r
232 cdda_bytes *= mult;
\r
234 ret = pm_read(cdda_out_buffer, cdda_bytes, Pico_mcd->cdda_stream);
\r
235 if (ret < cdda_bytes) {
\r
236 memset((char *)cdda_out_buffer + ret, 0, cdda_bytes - ret);
\r
237 Pico_mcd->cdda_stream = NULL;
\r
243 case 1: mix_16h_to_32(buffer, cdda_out_buffer, length*2); break;
\r
244 case 2: mix_16h_to_32_s1(buffer, cdda_out_buffer, length*2); break;
\r
245 case 4: mix_16h_to_32_s2(buffer, cdda_out_buffer, length*2); break;
\r
249 void cdda_start_play(int lba_base, int lba_offset, int lb_len)
\r
251 if (Pico_mcd->cdda_type == CT_MP3)
\r
256 pos1024 = lba_offset * 1024 / lb_len;
\r
258 mp3_start_play(Pico_mcd->cdda_stream, pos1024);
\r
262 pm_seek(Pico_mcd->cdda_stream, (lba_base + lba_offset) * 2352, SEEK_SET);
\r
263 if (Pico_mcd->cdda_type == CT_WAV)
\r
265 // skip headers, assume it's 44kHz stereo uncompressed
\r
266 pm_seek(Pico_mcd->cdda_stream, 44, SEEK_CUR);
\r
271 PICO_INTERNAL void PsndClear(void)
\r
274 if (PsndLen_exc_add) len++;
\r
275 if (PicoIn.opt & POPT_EN_STEREO)
\r
276 memset32((int *) PsndOut, 0, len); // assume PsndOut to be aligned
\r
278 short *out = PsndOut;
\r
279 if ((long)out & 2) { *out++ = 0; len--; }
\r
280 memset32((int *) out, 0, len/2);
\r
281 if (len & 1) out[len-1] = 0;
\r
286 static int PsndRender(int offset, int length)
\r
288 int buf32_updated = 0;
\r
289 int *buf32 = PsndBuffer+offset;
\r
290 int stereo = (PicoIn.opt & 8) >> 3;
\r
294 pprof_start(sound);
\r
296 if (PicoIn.AHW & PAHW_PICO) {
\r
297 PicoPicoPCMUpdate(PsndOut+offset, length, stereo);
\r
301 // Add in the stereo FM buffer
\r
302 if (PicoIn.opt & POPT_EN_FM) {
\r
303 buf32_updated = YM2612UpdateOne(buf32, length, stereo, 1);
\r
305 memset32(buf32, 0, length<<stereo);
\r
307 //printf("active_chs: %02x\n", buf32_updated);
\r
308 (void)buf32_updated;
\r
311 if (PicoIn.AHW & PAHW_MCD) {
\r
312 pcd_pcm_update(buf32, length, stereo);
\r
313 //buf32_updated = 1;
\r
317 // CD mode, cdda enabled, not data track, CDC is reading
\r
318 if ((PicoIn.AHW & PAHW_MCD) && (PicoIn.opt & POPT_EN_MCD_CDDA)
\r
319 && Pico_mcd->cdda_stream != NULL
\r
320 && !(Pico_mcd->s68k_regs[0x36] & 1))
\r
322 // note: only 44, 22 and 11 kHz supported, with forced stereo
\r
323 if (Pico_mcd->cdda_type == CT_MP3)
\r
324 mp3_update(buf32, length, stereo);
\r
326 cdda_raw_update(buf32, length);
\r
329 if ((PicoIn.AHW & PAHW_32X) && (PicoIn.opt & POPT_EN_PWM))
\r
330 p32x_pwm_update(buf32, length, stereo);
\r
332 // convert + limit to normal 16bit output
\r
333 PsndMix_32_to_16l(PsndOut+offset, buf32, length);
\r
340 // to be called on 224 or line_sample scanlines only
\r
341 PICO_INTERNAL void PsndGetSamples(int y)
\r
343 static int curr_pos = 0;
\r
345 if (ym2612.dacen && PsndDacLine < y)
\r
351 if (Pico.m.status & 2)
\r
352 curr_pos += PsndRender(curr_pos, PsndLen-PsndLen/2);
\r
353 else curr_pos = PsndRender(0, PsndLen_use);
\r
354 if (Pico.m.status & 1)
\r
355 Pico.m.status |= 2;
\r
356 else Pico.m.status &= ~2;
\r
357 if (PicoWriteSound)
\r
358 PicoWriteSound(curr_pos * ((PicoIn.opt & POPT_EN_STEREO) ? 4 : 2));
\r
359 // clear sound buffer
\r
364 else if (Pico.m.status & 3) {
\r
365 Pico.m.status |= 2;
\r
366 Pico.m.status &= ~1;
\r
367 curr_pos = PsndRender(0, PsndLen/2);
\r
371 PICO_INTERNAL void PsndGetSamplesMS(void)
\r
373 int stereo = (PicoIn.opt & 8) >> 3;
\r
374 int length = PsndLen_use;
\r
377 if (PicoIn.opt & POPT_EN_PSG)
\r
378 SN76496Update(PsndOut, length, stereo);
\r
380 // upmix to "stereo" if needed
\r
383 for (i = length, p = (void *)PsndOut; i > 0; i--, p++)
\r
387 if (PicoWriteSound != NULL)
\r
388 PicoWriteSound(length * ((PicoIn.opt & POPT_EN_STEREO) ? 4 : 2));
\r
392 // vim:shiftwidth=2:ts=2:expandtab
\r