X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Pico%2Fsound%2Fsound.c;h=7d418604d3544497cdaaa393ae73f15ae82d930b;hb=69996cb7c62468cd97842e35bdd2b74006a28dba;hp=6ea966bb49b1a90e71f302f948a57a9f9cb712d5;hpb=4f265db77684ec33f9533e7c76734498df03bba4;p=picodrive.git diff --git a/Pico/sound/sound.c b/Pico/sound/sound.c index 6ea966b..7d41860 100644 --- a/Pico/sound/sound.c +++ b/Pico/sound/sound.c @@ -8,14 +8,9 @@ #include -#include "sound.h" #include "ym2612.h" #include "sn76496.h" -#ifndef __GNUC__ -#pragma warning (disable:4244) -#endif - #if defined(_USE_MZ80) #include "../../cpu/mz80/mz80.h" #elif defined(_USE_DRZ80) @@ -29,15 +24,14 @@ // master int buffer to mix to static int PsndBuffer[2*44100/50]; -//int z80CycleAim = 0; - // dac -short *dac_out; -unsigned short dac_info[312]; // pppppppp ppppllll, p - pos in buff, l - length to write for this sample +static unsigned short dac_info[312]; // pppppppp ppppllll, p - pos in buff, l - length to write for this sample // for Pico int PsndRate=0; int PsndLen=0; // number of mono samples, multiply by 2 for stereo +int PsndLen_exc_add=0; // this is for non-integer sample counts per line, eg. 22050/60 +int PsndLen_exc_cnt=0; short *PsndOut=NULL; // PCM data buffer // from ym2612.c @@ -49,13 +43,13 @@ void YM2612TimerHandler(int c,int cnt); extern int *sn76496_regs; -static void dac_recalculate() +static void dac_recalculate(void) { int i, dac_cnt, pos, len, lines = Pico.m.pal ? 312 : 262, mid = Pico.m.pal ? 68 : 93; if(PsndLen <= lines) { // shrinking algo - dac_cnt = 0;//lines - PsndLen; + dac_cnt = -PsndLen; len=1; pos=0; dac_info[225] = 1; @@ -72,7 +66,7 @@ static void dac_recalculate() } } else { // stretching - dac_cnt = PsndLen/2; + dac_cnt = PsndLen; pos=0; for(i = 225; i != 224; i++) { if (i >= lines) i = 0; @@ -92,72 +86,82 @@ static void dac_recalculate() } // last sample for(len = 0, i = pos; i < PsndLen; i++) len++; + if (PsndLen_exc_add) len++; dac_info[224] = (pos<<4)|len; } -// dprintf("rate is %i, len %i", PsndRate, PsndLen); -// for(i=0; i < lines; i++) -// dprintf("%03i : %03i : %i", i, dac_info[i]>>4, dac_info[i]&0xf); -//exit(8); + //for(i=len=0; i < lines; i++) { + // printf("%03i : %03i : %i\n", i, dac_info[i]>>4, dac_info[i]&0xf); + // len+=dac_info[i]&0xf; + //} + //printf("rate is %i, len %f\n", PsndRate, (double)PsndRate/(Pico.m.pal ? 50.0 : 60.0)); + //printf("len total: %i, last pos: %i\n", len, pos); + //exit(8); } -void sound_reset() +PICO_INTERNAL void sound_reset(void) { - extern int z80stopCycle; void *ym2612_regs; - // init even if we are not going to use them, just in case we ever enable it - YM2612Init(Pico.m.pal ? OSC_PAL/7 : OSC_NTSC/7, PsndRate); // also clear the internal registers+addr line ym2612_regs = YM2612GetRegs(); memset(ym2612_regs, 0, 0x200+4); + // setting these to 0 might confuse timing code, + // so better set to something like this instead + z80startCycle = z80stopCycle = 0x01000000; - SN76496_init(Pico.m.pal ? OSC_PAL/15 : OSC_NTSC/15, PsndRate); - - // calculate PsndLen - PsndLen=PsndRate/(Pico.m.pal ? 50 : 60); - - // recalculate dac info - dac_recalculate(); - z80stopCycle = 0; + sound_rerate(0); } // to be called after changing sound rate or chips -void sound_rerate() +void sound_rerate(int preserve_state) { unsigned int state[28]; + int target_fps = Pico.m.pal ? 50 : 60; - // not all rates are supported in MCD mode due to mp3 decoder + // not all rates are supported in MCD mode due to mp3 decoder limitations if (PicoMCD & 1) { if (PsndRate != 11025 && PsndRate != 22050 && PsndRate != 44100) PsndRate = 22050; - if (!(PicoOpt & 8)) PicoOpt |= 8; + PicoOpt |= 8; // force stereo } - if ((PicoMCD & 1) && Pico_mcd->m.audio_track) Pico_mcd->m.audio_offset = mp3_get_offset(); + if (preserve_state) { + if ((PicoMCD & 1) && Pico_mcd->m.audio_track) + Pico_mcd->m.audio_offset = mp3_get_offset(); + } YM2612Init(Pico.m.pal ? OSC_PAL/7 : OSC_NTSC/7, PsndRate); - // feed it back it's own registers, just like after loading state - YM2612PicoStateLoad(); - if ((PicoMCD & 1) && Pico_mcd->m.audio_track) - mp3_start_play(Pico_mcd->TOC.Tracks[Pico_mcd->m.audio_track].F, Pico_mcd->m.audio_offset); + if (preserve_state) { + // feed it back it's own registers, just like after loading state + YM2612PicoStateLoad(); + if ((PicoMCD & 1) && Pico_mcd->m.audio_track) + mp3_start_play(Pico_mcd->TOC.Tracks[Pico_mcd->m.audio_track].F, Pico_mcd->m.audio_offset); + } - memcpy(state, sn76496_regs, 28*4); // remember old state + if (preserve_state) memcpy(state, sn76496_regs, 28*4); // remember old state SN76496_init(Pico.m.pal ? OSC_PAL/15 : OSC_NTSC/15, PsndRate); - memcpy(sn76496_regs, state, 28*4); // restore old state + if (preserve_state) memcpy(sn76496_regs, state, 28*4); // restore old state // calculate PsndLen - PsndLen=PsndRate/(Pico.m.pal ? 50 : 60); + PsndLen=PsndRate / target_fps; + PsndLen_exc_add=((PsndRate - PsndLen*target_fps)<<16) / target_fps; + PsndLen_exc_cnt=0; // recalculate dac info dac_recalculate(); if (PicoMCD & 1) pcm_set_rate(PsndRate); + + // clear all buffers + memset32(PsndBuffer, 0, sizeof(PsndBuffer)/4); + if (PsndOut) + sound_clear(); } // This is called once per raster (aka line), but not necessarily for every line -void sound_timers_and_dac(int raster) +PICO_INTERNAL void sound_timers_and_dac(int raster) { int pos, len; int do_dac = PsndOut && (PicoOpt&1) && *ym2612_dacen; @@ -181,22 +185,16 @@ void sound_timers_and_dac(int raster) d[0] = dout; if (len > 1) { d[2] = dout; - if (len > 2) { + if (len > 2) d[4] = dout; - if (len > 3) - d[6] = dout; - } } } else { short *d = PsndOut + pos; d[0] = dout; if (len > 1) { d[1] = dout; - if (len > 2) { + if (len > 2) d[2] = dout; - if (len > 3) - d[3] = dout; - } } } } @@ -211,43 +209,61 @@ void sound_timers_and_dac(int raster) } -void sound_clear(void) +PICO_INTERNAL void sound_clear(void) { - if (PicoOpt & 8) memset32((int *) PsndOut, 0, PsndLen); - else memset(PsndOut, 0, PsndLen<<1); -// memset(PsndBuffer, 0, (PicoOpt & 8) ? (PsndLen<<3) : (PsndLen<<2)); + int len = PsndLen; + if (PsndLen_exc_add) len++; + if (PicoOpt & 8) memset32((int *) PsndOut, 0, len); // clear both channels at once + else memset(PsndOut, 0, len<<1); } -int sound_render(int offset, int length) +PICO_INTERNAL int sound_render(int offset, int length) { + int buf32_updated = 0; int *buf32 = PsndBuffer+offset; int stereo = (PicoOpt & 8) >> 3; // emulating CD && PCM option enabled && PCM chip on && have enabled channels int do_pcm = (PicoMCD&1) && (PicoOpt&0x400) && (Pico_mcd->pcm.control & 0x80) && Pico_mcd->pcm.enabled; offset <<= stereo; + if (offset == 0) { // should happen once per frame + // compensate for float part of PsndLen + PsndLen_exc_cnt += PsndLen_exc_add; + if (PsndLen_exc_cnt >= 0x10000) { + PsndLen_exc_cnt -= 0x10000; + length++; + } + } + // PSG if (PicoOpt & 2) SN76496Update(PsndOut+offset, length, stereo); // Add in the stereo FM buffer - if (PicoOpt & 1) - YM2612UpdateOne(buf32, length, stereo, 1); + if (PicoOpt & 1) { + buf32_updated = YM2612UpdateOne(buf32, length, stereo, 1); + } else + memset32(buf32, 0, length<