12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058 |
- /* -*- mode: c; tab-width: 4; c-basic-offset: 3; c-file-style: "linux" -*- */
- //
- // Copyright (c) 2009, Wei Mingzhi <whistler_wmz@users.sf.net>.
- // All rights reserved.
- //
- // This file is part of SDLPAL.
- //
- // SDLPAL is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- #include "palcommon.h"
- #include "global.h"
- #include "sound.h"
- #include "players.h"
- #include "util.h"
- #include "resampler.h"
- #include "midi.h"
- #include <math.h>
- #if PAL_HAS_OGG
- #include <vorbis/codec.h>
- #endif
- static BOOL gSndOpened = FALSE;
- BOOL g_fNoSound = FALSE;
- BOOL g_fNoMusic = FALSE;
- #ifdef PAL_CLASSIC
- int g_iCurrChannel = 0;
- #endif
- #define PAL_CDTRACK_BASE 10000
- typedef LPCBYTE(*FNLoadSoundData)(LPCBYTE, DWORD, SDL_AudioSpec *);
- typedef struct tagSNDPLAYER
- {
- FILE *mkf;
- SDL_AudioSpec spec;
- SDL_mutex *mtx;
- LPBYTE buf[2], pos[2];
- INT audio_len[2];
- void *resampler;
- MUSICPLAYER *pMusPlayer;
- MUSICPLAYER *pCDPlayer;
- #if PAL_HAS_SDLCD
- SDL_CD *pCD;
- #endif
- FNLoadSoundData LoadSoundData;
- } SNDPLAYER;
- static SNDPLAYER gSndPlayer;
- typedef struct tagRIFFHEADER
- {
- DWORD riff_sig; /* 'RIFF' */
- DWORD data_length; /* Total length minus eight, little-endian */
- DWORD riff_type; /* 'WAVE' */
- } RIFFHEADER, *LPRIFFHEADER;
- typedef const RIFFHEADER *LPCRIFFHEADER;
- typedef struct tagRIFFCHUNK
- {
- DWORD chunk_type; /* 'fmt ' and so on */
- DWORD chunk_length; /* Total chunk length minus eight, little-endian */
- } RIFFCHUNK, *LPRIFFCHUNK;
- typedef const RIFFCHUNK *LPCRIFFCHUNK;
- typedef struct tagWAVEFORMATPCM
- {
- WORD wFormatTag; /* format type */
- WORD nChannels; /* number of channels (i.e. mono, stereo, etc.) */
- DWORD nSamplesPerSec; /* sample rate */
- DWORD nAvgBytesPerSec; /* for buffer estimation */
- WORD nBlockAlign; /* block size of data */
- WORD wBitsPerSample;
- } WAVEFORMATPCM, *LPWAVEFORMATPCM;
- typedef const WAVEFORMATPCM *LPCWAVEFORMATPCM;
- static LPCBYTE
- SOUND_LoadWAVEData(
- LPCBYTE lpData,
- DWORD dwLen,
- SDL_AudioSpec *lpSpec
- )
- /*++
- Purpose:
- Return the WAVE data pointer inside the input buffer.
- Parameters:
- [IN] lpData - pointer to the buffer of the WAVE file.
- [IN] dwLen - length of the buffer of the WAVE file.
- [OUT] lpSpec - pointer to the SDL_AudioSpec structure, which contains
- some basic information about the WAVE file.
- Return value:
- Pointer to the WAVE data inside the input buffer, NULL if failed.
- --*/
- {
- #if SDL_BYTEORDER == SDL_BIG_ENDIAN
- # define RIFF 'RIFF'
- # define WAVE 'WAVE'
- # define FMT 'fmt '
- # define DATA 'data'
- # define PCM 0x0100
- #else
- # define RIFF 'FFIR'
- # define WAVE 'EVAW'
- # define FMT ' tmf'
- # define DATA 'atad'
- # define PCM 0x0001
- #endif
- LPCRIFFHEADER lpRiff = (LPCRIFFHEADER)lpData;
- LPCRIFFCHUNK lpChunk;
- LPCWAVEFORMATPCM lpFormat = NULL;
- LPCBYTE lpWaveData = NULL;
- DWORD len;
- if (dwLen < sizeof(RIFFHEADER) || lpRiff->riff_sig != RIFF || lpRiff->riff_type != WAVE || dwLen < SDL_SwapLE32(lpRiff->data_length) + 8)
- {
- return NULL;
- }
- lpChunk = (LPCRIFFCHUNK)(lpRiff + 1); dwLen -= sizeof(RIFFHEADER);
- while (dwLen >= sizeof(RIFFCHUNK))
- {
- len = SDL_SwapLE32(lpChunk->chunk_length);
- if (dwLen >= sizeof(RIFFCHUNK) + len)
- dwLen -= sizeof(RIFFCHUNK) + len;
- else
- return NULL;
- switch (lpChunk->chunk_type)
- {
- case FMT:
- lpFormat = (LPCWAVEFORMATPCM)(lpChunk + 1);
- if (len != sizeof(WAVEFORMATPCM) || lpFormat->wFormatTag != PCM)
- {
- return NULL;
- }
- break;
- case DATA:
- lpWaveData = (LPCBYTE)(lpChunk + 1);
- dwLen = 0;
- break;
- }
- lpChunk = (LPCRIFFCHUNK)((LPCBYTE)(lpChunk + 1) + len);
- }
- if (lpFormat == NULL || lpWaveData == NULL)
- {
- return NULL;
- }
- lpSpec->channels = lpFormat->nChannels;
- lpSpec->format = (lpFormat->wBitsPerSample == 16) ? AUDIO_S16 : AUDIO_U8;
- lpSpec->freq = lpFormat->nSamplesPerSec;
- lpSpec->size = len;
- return lpWaveData;
- #undef RIFF
- #undef WAVE
- #undef FMT
- }
- typedef struct tagVOCHEADER
- {
- char signature[0x14]; /* "Creative Voice File\x1A" */
- WORD data_offset; /* little endian */
- WORD version;
- WORD version_checksum;
- } VOCHEADER, *LPVOCHEADER;
- typedef const VOCHEADER *LPCVOCHEADER;
- static LPCBYTE
- SOUND_LoadVOCData(
- LPCBYTE lpData,
- DWORD dwLen,
- SDL_AudioSpec *lpSpec
- )
- /*++
- Purpose:
- Return the VOC data pointer inside the input buffer. Currently supports type 01 block only.
- Parameters:
- [IN] lpData - pointer to the buffer of the VOC file.
- [IN] dwLen - length of the buffer of the VOC file.
- [OUT] lpSpec - pointer to the SDL_AudioSpec structure, which contains
- some basic information about the VOC file.
- Return value:
- Pointer to the WAVE data inside the input buffer, NULL if failed.
- Reference: http://sox.sourceforge.net/AudioFormats-11.html
- --*/
- {
- LPCVOCHEADER lpVOC = (LPCVOCHEADER)lpData;
- if (dwLen < sizeof(VOCHEADER) || memcmp(lpVOC->signature, "Creative Voice File\x1A", 0x14) || SDL_SwapLE16(lpVOC->data_offset) >= dwLen)
- {
- return NULL;
- }
- lpData += SDL_SwapLE16(lpVOC->data_offset);
- dwLen -= SDL_SwapLE16(lpVOC->data_offset);
- while (dwLen && *lpData)
- {
- DWORD len;
- if (dwLen >= 4)
- {
- len = lpData[1] | (lpData[2] << 8) | (lpData[3] << 16);
- if (dwLen >= len + 4)
- dwLen -= len + 4;
- else
- return NULL;
- }
- else
- {
- return NULL;
- }
- if (*lpData == 0x01)
- {
- if (lpData[5] != 0) return NULL; /* Only 8-bit is supported */
- lpSpec->format = AUDIO_U8;
- lpSpec->channels = 1;
- lpSpec->freq = ((1000000 / (256 - lpData[4]) + 99) / 100) * 100; /* Round to next 100Hz */
- lpSpec->size = len - 2;
- return lpData + 6;
- }
- else
- {
- lpData += len + 4;
- }
- }
- return NULL;
- }
- static void
- SOUND_ResampleU8(
- LPCBYTE lpData,
- const SDL_AudioSpec *lpSpec,
- LPBYTE lpBuffer,
- DWORD dwLen,
- void *resampler
- )
- /*++
- Purpose:
- Resample 8-bit unsigned PCM data into 16-bit signed (little-endian) PCM data.
- Parameters:
- [IN] lpData - pointer to the buffer of the input PCM data.
- [IN] lpSpec - pointer to the SDL_AudioSpec structure, which contains
- some basic information about the input PCM data.
- [IN] lpBuffer - pointer of the buffer of the output PCM data.
- [IN] dwLen - length of the buffer of the output PCM data, should be exactly
- the number of bytes needed of the resampled data.
- [IN] resampler - pointer of the resampler instance.
- Return value:
- None.
- --*/
- {
- int src_samples = lpSpec->size / lpSpec->channels, i;
- for (i = 0; i < lpSpec->channels; i++)
- {
- LPCBYTE src = lpData + i;
- short *dst = (short *)lpBuffer + i;
- int channel_len = dwLen / lpSpec->channels, total_bytes = 0;
- resampler_clear(resampler);
- while (total_bytes < channel_len && src_samples > 0)
- {
- int to_write, j;
- to_write = resampler_get_free_count(resampler);
- if (to_write > src_samples) to_write = src_samples;
- for (j = 0; j < to_write; j++)
- {
- resampler_write_sample(resampler, (*src ^ 0x80) << 8);
- src += lpSpec->channels;
- }
- src_samples -= to_write;
- while (total_bytes < channel_len && resampler_get_sample_count(resampler) > 0)
- {
- *dst = SDL_SwapLE16(resampler_get_and_remove_sample(resampler));
- dst += lpSpec->channels; total_bytes += (SDL_AUDIO_BITSIZE(AUDIO_S16) >> 3);
- }
- }
- /* Flush resampler's output buffer */
- while (total_bytes < channel_len)
- {
- int j, to_write = resampler_get_free_count(resampler);
- for (j = 0; j < to_write; j++)
- resampler_write_sample(resampler, (src[-lpSpec->channels] ^ 0x80) << 8);
- while (total_bytes < channel_len && resampler_get_sample_count(resampler) > 0)
- {
- *dst = SDL_SwapLE16(resampler_get_and_remove_sample(resampler));
- dst += lpSpec->channels; total_bytes += (SDL_AUDIO_BITSIZE(AUDIO_S16) >> 3);
- }
- }
- }
- }
- static void
- SOUND_ResampleS16(
- LPCBYTE lpData,
- const SDL_AudioSpec *lpSpec,
- LPBYTE lpBuffer,
- DWORD dwLen,
- void *resampler
- )
- /*++
- Purpose:
- Resample 16-bit signed (little-endian) PCM data into 16-bit signed (little-endian) PCM data.
- Parameters:
- [IN] lpData - pointer to the buffer of the input PCM data.
- [IN] lpSpec - pointer to the SDL_AudioSpec structure, which contains
- some basic information about the input PCM data.
- [IN] lpBuffer - pointer of the buffer of the output PCM data.
- [IN] dwLen - length of the buffer of the output PCM data, should be exactly
- the number of bytes needed of the resampled data.
- [IN] resampler - pointer of the resampler instance.
- Return value:
- None.
- --*/
- {
- int src_samples = lpSpec->size / lpSpec->channels / 2, i;
- for (i = 0; i < lpSpec->channels; i++)
- {
- const short *src = (short *)lpData + i;
- short *dst = (short *)lpBuffer + i;
- int channel_len = dwLen / lpSpec->channels, total_bytes = 0;
- resampler_clear(resampler);
- while (total_bytes < channel_len && src_samples > 0)
- {
- int to_write, j;
- to_write = resampler_get_free_count(resampler);
- if (to_write > src_samples) to_write = src_samples;
- for (j = 0; j < to_write; j++)
- {
- resampler_write_sample(resampler, SDL_SwapLE16(*src));
- src += lpSpec->channels;
- }
- src_samples -= to_write;
- while (total_bytes < channel_len && resampler_get_sample_count(resampler) > 0)
- {
- *dst = SDL_SwapLE16(resampler_get_and_remove_sample(resampler));
- dst += lpSpec->channels; total_bytes += (SDL_AUDIO_BITSIZE(AUDIO_S16) >> 3);
- }
- }
- /* Flush resampler's output buffer */
- while (total_bytes < channel_len)
- {
- int j, to_write = resampler_get_free_count(resampler);
- short val = SDL_SwapLE16(src[-lpSpec->channels]);
- for (j = 0; j < to_write; j++)
- resampler_write_sample(resampler, val);
- while (total_bytes < channel_len && resampler_get_sample_count(resampler) > 0)
- {
- *dst = SDL_SwapLE16(resampler_get_and_remove_sample(resampler));
- dst += lpSpec->channels; total_bytes += (SDL_AUDIO_BITSIZE(AUDIO_S16) >> 3);
- }
- }
- }
- }
- static VOID SDLCALL
- SOUND_FillAudio(
- LPVOID udata,
- LPBYTE stream,
- INT len
- )
- /*++
- Purpose:
- SDL sound callback function.
- Parameters:
- [IN] udata - pointer to user-defined parameters (Not used).
- [OUT] stream - pointer to the stream buffer.
- [IN] len - Length of the buffer.
- Return value:
- None.
- --*/
- {
- int i;
- #if SDL_VERSION_ATLEAST(2,0,0)
- memset(stream, 0, len);
- #endif
- //
- // Play music
- //
- if (!g_fNoMusic)
- {
- SDL_mutexP(gSndPlayer.mtx);
- if (gSndPlayer.pMusPlayer)
- {
- gSndPlayer.pMusPlayer->FillBuffer(gSndPlayer.pMusPlayer, stream, len);
- }
- if (gSndPlayer.pCDPlayer)
- {
- gSndPlayer.pCDPlayer->FillBuffer(gSndPlayer.pCDPlayer, stream, len);
- }
- SDL_mutexV(gSndPlayer.mtx);
- }
- //
- // No current playing sound
- //
- if (g_fNoSound)
- {
- return;
- }
- SDL_mutexP(gSndPlayer.mtx);
- for (i = 0; i < 2; i++)
- {
- //
- // Only play if we have data left
- //
- if (gSndPlayer.buf[i] == NULL)
- {
- continue;
- }
- if (gSndPlayer.audio_len[i] == 0)
- {
- //
- // Delete the audio buffer from memory
- //
- free(gSndPlayer.buf[i]);
- gSndPlayer.buf[i] = NULL;
- continue;
- }
- //
- // Mix as much data as possible
- //
- len = (len > gSndPlayer.audio_len[i]) ? gSndPlayer.audio_len[i] : len;
- SDL_MixAudio(stream, gSndPlayer.pos[i], len, gConfig.iVolume);
- gSndPlayer.pos[i] += len;
- gSndPlayer.audio_len[i] -= len;
- }
- SDL_mutexV(gSndPlayer.mtx);
- }
- static VOID
- SOUND_LoadMKF(
- VOID
- )
- /*++
- Purpose:
- Load MKF contents into memory.
- Parameters:
- None.
- Return value:
- None.
- --*/
- {
- char *mkfs[2];
- FNLoadSoundData func[2];
- int i;
- if (gConfig.fIsWIN95)
- {
- mkfs[0] = "sounds.mkf"; func[0] = SOUND_LoadWAVEData;
- mkfs[1] = "voc.mkf"; func[1] = SOUND_LoadVOCData;
- }
- else
- {
- mkfs[0] = "voc.mkf"; func[0] = SOUND_LoadVOCData;
- mkfs[1] = "sounds.mkf"; func[1] = SOUND_LoadWAVEData;
- }
- for (i = 0; i < 2; i++)
- {
- gSndPlayer.mkf = UTIL_OpenFile(mkfs[i]);
- if (gSndPlayer.mkf)
- {
- gSndPlayer.LoadSoundData = func[i];
- break;
- }
- }
- }
- INT
- SOUND_OpenAudio(
- VOID
- )
- /*++
- Purpose:
- Initialize the audio subsystem.
- Parameters:
- None.
- Return value:
- 0 if succeed, others if failed.
- --*/
- {
- SDL_AudioSpec spec;
- if (gSndOpened)
- {
- //
- // Already opened
- //
- return -1;
- }
- gSndOpened = FALSE;
- //
- // Load the MKF file.
- //
- SOUND_LoadMKF();
- if (gSndPlayer.mkf == NULL)
- {
- return -2;
- }
- //
- // Initialize the resampler
- //
- resampler_init();
- gSndPlayer.resampler = resampler_create();
- //
- // Open the sound subsystem.
- //
- gSndPlayer.spec.freq = gConfig.iSampleRate;
- gSndPlayer.spec.format = AUDIO_S16;
- gSndPlayer.spec.channels = gConfig.iAudioChannels;
- gSndPlayer.spec.samples = gConfig.wAudioBufferSize;
- gSndPlayer.spec.callback = SOUND_FillAudio;
- if (SDL_OpenAudio(&gSndPlayer.spec, &spec) < 0)
- {
- //
- // Failed
- //
- return -3;
- }
- memcpy(&gSndPlayer.spec, &spec, sizeof(SDL_AudioSpec));
- gSndPlayer.buf[0] = NULL;
- gSndPlayer.pos[0] = NULL;
- gSndPlayer.audio_len[0] = 0;
- gSndPlayer.buf[1] = NULL;
- gSndPlayer.pos[1] = NULL;
- gSndPlayer.audio_len[1] = 0;
- gSndPlayer.mtx = SDL_CreateMutex();
- gSndOpened = TRUE;
- //
- // Initialize the music subsystem.
- //
- switch (gConfig.eMusicType)
- {
- case MUSIC_RIX:
- if (!(gSndPlayer.pMusPlayer = RIX_Init(va("%s%s", gConfig.pszGamePath, "mus.mkf"))))
- {
- gSndPlayer.pMusPlayer = RIX_Init(va("%s%s", gConfig.pszGamePath, "MUS.MKF"));
- }
- break;
- case MUSIC_MP3:
- #if PAL_HAS_MP3
- gSndPlayer.pMusPlayer = MP3_Init(NULL);
- #else
- gSndPlayer.pMusPlayer = NULL;
- #endif
- break;
- case MUSIC_OGG:
- #if PAL_HAS_OGG
- gSndPlayer.pMusPlayer = OGG_Init(NULL);
- #else
- gSndPlayer.pMusPlayer = NULL;
- #endif
- break;
- case MUSIC_MIDI:
- gSndPlayer.pMusPlayer = NULL;
- break;
- }
- //
- // Initialize the CD audio.
- //
- switch (gConfig.eCDType)
- {
- case MUSIC_SDLCD:
- {
- #if PAL_HAS_SDLCD
- int i;
- gSndPlayer.pCD = NULL;
- for (i = 0; i < SDL_CDNumDrives(); i++)
- {
- gSndPlayer.pCD = SDL_CDOpen(i);
- if (gSndPlayer.pCD != NULL)
- {
- if (!CD_INDRIVE(SDL_CDStatus(gSndPlayer.pCD)))
- {
- SDL_CDClose(gSndPlayer.pCD);
- gSndPlayer.pCD = NULL;
- }
- else
- {
- break;
- }
- }
- }
- #endif
- gSndPlayer.pCDPlayer = NULL;
- break;
- }
- case MUSIC_MP3:
- #if PAL_HAS_MP3
- gSndPlayer.pCDPlayer = MP3_Init(NULL);
- #else
- gSndPlayer.pCDPlayer = NULL;
- #endif
- break;
- case MUSIC_OGG:
- #if PAL_HAS_OGG
- gSndPlayer.pCDPlayer = OGG_Init(NULL);
- #else
- gSndPlayer.pCDPlayer = NULL;
- #endif
- break;
- }
- //
- // Let the callback function run so that musics will be played.
- //
- SDL_PauseAudio(0);
- return 0;
- }
- VOID
- SOUND_CloseAudio(
- VOID
- )
- /*++
- Purpose:
- Close the audio subsystem.
- Parameters:
- None.
- Return value:
- None.
- --*/
- {
- SDL_CloseAudio();
- SDL_mutexP(gSndPlayer.mtx);
- if (gSndPlayer.buf[0] != NULL)
- {
- free(gSndPlayer.buf[0]);
- gSndPlayer.buf[0] = NULL;
- }
- if (gSndPlayer.buf[1] != NULL)
- {
- free(gSndPlayer.buf[1]);
- gSndPlayer.buf[1] = NULL;
- }
- if (gSndPlayer.mkf != NULL)
- {
- fclose(gSndPlayer.mkf);
- gSndPlayer.mkf = NULL;
- }
- if (gSndPlayer.pMusPlayer)
- {
- gSndPlayer.pMusPlayer->Shutdown(gSndPlayer.pMusPlayer);
- gSndPlayer.pMusPlayer = NULL;
- }
- if (gSndPlayer.pCDPlayer)
- {
- gSndPlayer.pCDPlayer->Shutdown(gSndPlayer.pCDPlayer);
- gSndPlayer.pCDPlayer = NULL;
- }
- #if PAL_HAS_SDLCD
- if (gSndPlayer.pCD != NULL)
- {
- SOUND_PlayCDA(-1);
- SDL_CDClose(gSndPlayer.pCD);
- }
- #endif
- if (gConfig.eMusicType == MUSIC_MIDI) MIDI_Play(0, FALSE);
- if (gSndPlayer.resampler)
- {
- resampler_delete(gSndPlayer.resampler);
- gSndPlayer.resampler = NULL;
- }
- SDL_mutexV(gSndPlayer.mtx);
- SDL_DestroyMutex(gSndPlayer.mtx);
- }
- SDL_AudioSpec*
- SOUND_GetAudioSpec(
- VOID
- )
- {
- return &gSndPlayer.spec;
- }
- VOID
- SOUND_AdjustVolume(
- INT iDirection
- )
- /*++
- Purpose:
- SDL sound volume adjust function.
- Parameters:
- [IN] iDirection - value, Increase (>0) or decrease (<=0) 3% volume.
- Return value:
- None.
- --*/
- {
- if (iDirection > 0)
- {
- gConfig.iVolume += SDL_MIX_MAXVOLUME * 0.03;
- if (gConfig.iVolume > SDL_MIX_MAXVOLUME)
- {
- gConfig.iVolume = SDL_MIX_MAXVOLUME;
- }
- }
- else
- {
- gConfig.iVolume -= SDL_MIX_MAXVOLUME * 0.03;
- if (gConfig.iVolume < 0)
- {
- gConfig.iVolume = 0;
- }
- }
- }
- VOID
- SOUND_PlayChannel(
- INT iSoundNum,
- INT iChannel
- )
- /*++
- Purpose:
- Play a sound in voc.mkf file.
- Parameters:
- [IN] iSoundNum - number of the sound.
- [IN] iChannel - the number of channel (0 or 1).
- Return value:
- None.
- --*/
- {
- SDL_AudioCVT wavecvt;
- SDL_AudioSpec wavespec;
- LPBYTE buf, bufdec;
- LPCBYTE bufsrc;
- int len;
- if (!gSndOpened || g_fNoSound)
- {
- return;
- }
- //
- // Stop playing current sound.
- //
- SDL_mutexP(gSndPlayer.mtx);
- if (gSndPlayer.buf[iChannel] != NULL)
- {
- free(gSndPlayer.buf[iChannel]);
- gSndPlayer.buf[iChannel] = NULL;
- }
- SDL_mutexV(gSndPlayer.mtx);
- if (iSoundNum < 0)
- {
- return;
- }
- //
- // Get the length of the sound file.
- //
- len = PAL_MKFGetChunkSize(iSoundNum, gSndPlayer.mkf);
- if (len <= 0)
- {
- return;
- }
- buf = (LPBYTE)malloc(len);
- if (buf == NULL)
- {
- return;
- }
- //
- // Read the sound file from the MKF archive.
- //
- PAL_MKFReadChunk(buf, len, iSoundNum, gSndPlayer.mkf);
- bufsrc = gSndPlayer.LoadSoundData(buf, len, &wavespec);
- if (bufsrc == NULL)
- {
- free(buf);
- return;
- }
- if (wavespec.freq != gSndPlayer.spec.freq)
- {
- /* Resampler is needed */
- resampler_set_quality(gSndPlayer.resampler, SOUND_IsIntegerConversion(wavespec.freq) ? RESAMPLER_QUALITY_MIN : gConfig.iResampleQuality);
- resampler_set_rate(gSndPlayer.resampler, (double)wavespec.freq / (double)gSndPlayer.spec.freq);
- len = (int)ceil(wavespec.size * (double)gSndPlayer.spec.freq / (double)wavespec.freq) * (SDL_AUDIO_BITSIZE(AUDIO_S16) / SDL_AUDIO_BITSIZE(wavespec.format));
- if (len >= wavespec.channels * 2 && (bufdec = malloc(len)))
- {
- if (wavespec.format == AUDIO_S16)
- SOUND_ResampleS16(bufsrc, &wavespec, bufdec, len, gSndPlayer.resampler);
- else
- SOUND_ResampleU8(bufsrc, &wavespec, bufdec, len, gSndPlayer.resampler);
- /* Free the original buffer and reset the pointer for simpler later operations */
- free(buf); buf = bufdec;
- wavespec.format = AUDIO_S16;
- wavespec.freq = gSndPlayer.spec.freq;
- }
- else
- {
- free(buf);
- return;
- }
- }
- else
- {
- bufdec = (LPBYTE)bufsrc;
- len = wavespec.size;
- }
- //
- // Build the audio converter and create conversion buffers
- //
- if (SDL_BuildAudioCVT(&wavecvt, wavespec.format, wavespec.channels, wavespec.freq,
- gSndPlayer.spec.format, gSndPlayer.spec.channels, gSndPlayer.spec.freq) < 0)
- {
- free(buf);
- return;
- }
- wavecvt.len = len & ~((SDL_AUDIO_BITSIZE(wavespec.format) >> 3) * wavespec.channels - 1);
- wavecvt.buf = (LPBYTE)malloc(wavecvt.len * wavecvt.len_mult);
- if (wavecvt.buf == NULL)
- {
- free(buf);
- return;
- }
- memcpy(wavecvt.buf, bufdec, len);
- free(buf);
- //
- // Run the audio converter
- //
- if (SDL_ConvertAudio(&wavecvt) < 0)
- {
- free(wavecvt.buf);
- return;
- }
- SDL_mutexP(gSndPlayer.mtx);
- if (gSndPlayer.buf[iChannel] != NULL)
- {
- free(gSndPlayer.buf[iChannel]);
- gSndPlayer.buf[iChannel] = NULL;
- }
- gSndPlayer.buf[iChannel] = wavecvt.buf;
- gSndPlayer.audio_len[iChannel] = wavecvt.len * wavecvt.len_mult;
- gSndPlayer.pos[iChannel] = wavecvt.buf;
- SDL_mutexV(gSndPlayer.mtx);
- }
- VOID
- SOUND_PlayMUS(
- INT iNumRIX,
- BOOL fLoop,
- FLOAT flFadeTime
- )
- {
- SDL_mutexP(gSndPlayer.mtx);
- if (gConfig.eMusicType == MUSIC_MIDI)
- {
- MIDI_Play(iNumRIX, fLoop);
- }
- else if (gSndPlayer.pMusPlayer)
- {
- gSndPlayer.pMusPlayer->Play(gSndPlayer.pMusPlayer, iNumRIX, fLoop, flFadeTime);
- }
- SDL_mutexV(gSndPlayer.mtx);
- }
- BOOL
- SOUND_PlayCDA(
- INT iNumTrack
- )
- /*++
- Purpose:
- Play a CD Audio Track.
- Parameters:
- [IN] iNumTrack - number of the CD Audio Track.
- Return value:
- TRUE if the track can be played, FALSE if not.
- --*/
- {
- BOOL ret = FALSE;
- #if PAL_HAS_SDLCD
- if (gSndPlayer.pCD != NULL)
- {
- if (CD_INDRIVE(SDL_CDStatus(gSndPlayer.pCD)))
- {
- SDL_CDStop(gSndPlayer.pCD);
- if (iNumTrack != -1)
- {
- SOUND_PlayMUS(-1, FALSE, 0);
- if (SDL_CDPlayTracks(gSndPlayer.pCD, iNumTrack - 1, 0, 1, 0) == 0)
- {
- return TRUE;
- }
- }
- }
- }
- #endif
- SDL_mutexP(gSndPlayer.mtx);
- if (gSndPlayer.pCDPlayer)
- {
- if (iNumTrack != -1)
- {
- SOUND_PlayMUS(-1, FALSE, 0);
- ret = gSndPlayer.pCDPlayer->Play(gSndPlayer.pCDPlayer, PAL_CDTRACK_BASE + iNumTrack, TRUE, 0);
- }
- else
- {
- ret = gSndPlayer.pCDPlayer->Play(gSndPlayer.pCDPlayer, -1, FALSE, 0);
- }
- }
- SDL_mutexV(gSndPlayer.mtx);
- return ret;
- }
- #ifdef PSP
- void
- SOUND_Reload(
- void
- )
- {
- fclose(gSndPlayer.mkf);
- SOUND_LoadMKF();
- }
- #endif
|