123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735 |
- /* -*- 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 "common.h"
- #include "sound.h"
- #include "rixplay.h"
- #include "util.h"
- #ifdef PAL_HAS_NATIVEMIDI
- #include "midi.h"
- #endif
- #ifdef PAL_HAS_MP3
- #include "libmad/music_mad.h"
- #endif
- static BOOL gSndOpened = FALSE;
- BOOL g_fNoSound = FALSE;
- BOOL g_fNoMusic = FALSE;
- #ifdef PAL_HAS_NATIVEMIDI
- BOOL g_fUseMidi = FALSE;
- #endif
- static BOOL g_fUseWav = FALSE;
- #ifdef __SYMBIAN32__
- INT g_iVolume = SDL_MIX_MAXVOLUME * 0.1;
- #endif
- typedef struct tagSNDPLAYER
- {
- FILE *mkf;
- SDL_AudioSpec spec;
- LPBYTE buf[2], pos[2];
- INT audio_len[2];
- #ifdef PAL_HAS_CD
- SDL_CD *pCD;
- #endif
- #ifdef PAL_HAS_MP3
- mad_data *pMP3;
- BOOL fMP3Loop;
- INT iCurrentMP3;
- SDL_mutex *lock;
- #endif
- } SNDPLAYER;
- static SNDPLAYER gSndPlayer;
- static SDL_AudioSpec *
- SOUND_LoadVOCFromBuffer(
- LPCBYTE lpVOC,
- DWORD dwLen,
- SDL_AudioSpec *lpSpec,
- LPBYTE *lppBuffer
- )
- /*++
- Purpose:
- Load a VOC file in a buffer. Currently supports type 01 block only.
- Parameters:
- [IN] lpVOC - 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.
- [OUT] lppBuffer - the output buffer.
- Return value:
- Pointer to the SDL_AudioSpec structure, NULL if failed.
- --*/
- {
- INT freq, len, x, i, l;
- SDL_RWops *rw;
- if (g_fUseWav)
- {
- rw = SDL_RWFromConstMem(lpVOC, dwLen);
- if (rw == NULL) return NULL;
- len = dwLen;
- SDL_LoadWAV_RW(rw, 1, lpSpec, lppBuffer, (Uint32 *)&len);
- lpSpec->size = len;
- return lpSpec;
- }
- else
- {
- //
- // Skip header
- //
- lpVOC += 0x1B;
- //
- // Length is 3 bytes long
- //
- len = (lpVOC[0] | (lpVOC[1] << 8) | (lpVOC[2] << 16)) - 2;
- lpVOC += 3;
- //
- // One byte for frequency
- //
- freq = 1000000 / (256 - *lpVOC);
- #if 1
- lpVOC += 2;
- //
- // Convert the sample manually, as SDL doesn't like "strange" sample rates.
- //
- x = (INT)(len * ((FLOAT)PAL_SAMPLE_RATE / freq));
- *lppBuffer = (LPBYTE)calloc(1, x);
- if (*lppBuffer == NULL)
- {
- return NULL;
- }
- for (i = 0; i < x; i++)
- {
- l = (INT)(i * (freq / (FLOAT)PAL_SAMPLE_RATE));
- if (l >= len)
- {
- l = len - 1;
- }
- (*lppBuffer)[i] = lpVOC[l];
- }
- lpSpec->channels = 1;
- lpSpec->format = AUDIO_U8;
- lpSpec->freq = PAL_SAMPLE_RATE;
- lpSpec->size = x;
- #else
- *lppBuffer = (unsigned char *)malloc(len);
- if (*lppBuffer == NULL)
- {
- return NULL;
- }
- lpSpec->channels = 1;
- lpSpec->format = AUDIO_U8;
- lpSpec->freq = freq;
- lpSpec->size = len;
- lpVOC += 2;
- memcpy(*lppBuffer, lpVOC, len);
- #endif
- return lpSpec;
- }
- }
- 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)
- {
- #ifdef PAL_HAS_MP3
- if (gSndPlayer.pMP3 != NULL)
- {
- SDL_mutexP(gSndPlayer.lock);
- mad_getSamples(gSndPlayer.pMP3, stream, len);
- if (!mad_isPlaying(gSndPlayer.pMP3) && gSndPlayer.fMP3Loop)
- {
- mad_seek(gSndPlayer.pMP3, 0);
- mad_start(gSndPlayer.pMP3);
- mad_getSamples(gSndPlayer.pMP3, stream, len);
- }
- SDL_mutexV(gSndPlayer.lock);
- }
- #endif
- RIX_FillBuffer(stream, len);
- }
- //
- // No current playing sound
- //
- if (g_fNoSound)
- {
- return;
- }
- 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;
- #ifdef __SYMBIAN32__
- SDL_MixAudio(stream, gSndPlayer.pos[i], len, g_iVolume);
- #else
- SDL_MixAudio(stream, gSndPlayer.pos[i], len, SDL_MIX_MAXVOLUME);
- #endif
- gSndPlayer.pos[i] += len;
- gSndPlayer.audio_len[i] -= len;
- }
- }
- 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.
- //
- gSndPlayer.mkf = fopen(va("%s%s", PAL_PREFIX, "voc.mkf"), "rb");
- if (gSndPlayer.mkf == NULL)
- {
- gSndPlayer.mkf = fopen(va("%s%s", PAL_PREFIX, "sounds.mkf"), "rb");
- if (gSndPlayer.mkf == NULL)
- {
- return -2;
- }
- g_fUseWav = TRUE;
- }
- else
- {
- g_fUseWav = FALSE;
- }
- //
- // Open the sound subsystem.
- //
- gSndPlayer.spec.freq = PAL_SAMPLE_RATE;
- gSndPlayer.spec.format = AUDIO_S16;
- gSndPlayer.spec.channels = PAL_CHANNELS;
- gSndPlayer.spec.samples = 1024;
- 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;
- gSndOpened = TRUE;
- //
- // Initialize the music subsystem.
- //
- RIX_Init(va("%s%s", PAL_PREFIX, "mus.mkf"));
- #ifdef PAL_HAS_CD
- //
- // Initialize the CD audio.
- //
- {
- 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
- #ifdef PAL_HAS_MP3
- gSndPlayer.iCurrentMP3 = -1;
- gSndPlayer.lock = SDL_CreateMutex();
- #endif
- //
- // Let the callback function run so that musics will be played.
- //
- SDL_PauseAudio(0);
- return 0;
- }
- #ifdef PSP
- void
- SOUND_ReloadVOC(
- void
- )
- {
- fclose(gSndPlayer.mkf);
- gSndPlayer.mkf = fopen(va("%s%s", PAL_PREFIX, "voc.mkf"), "rb");
- g_fUseWav = FALSE;
- }
- #endif
- VOID
- SOUND_CloseAudio(
- VOID
- )
- /*++
- Purpose:
- Close the audio subsystem.
- Parameters:
- None.
- Return value:
- None.
- --*/
- {
- SDL_CloseAudio();
- 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;
- }
- #ifdef PAL_HAS_MP3
- SDL_mutexP(gSndPlayer.lock);
- if (gSndPlayer.pMP3 != NULL)
- {
- mad_stop(gSndPlayer.pMP3);
- mad_closeFile(gSndPlayer.pMP3);
- gSndPlayer.pMP3 = NULL;
- }
- SDL_DestroyMutex(gSndPlayer.lock);
- #endif
- RIX_Shutdown();
- #ifdef PAL_HAS_CD
- if (gSndPlayer.pCD != NULL)
- {
- SOUND_PlayCDA(-1);
- SDL_CDClose(gSndPlayer.pCD);
- }
- #endif
- #ifdef PAL_HAS_NATIVEMIDI
- MIDI_Play(0, FALSE);
- #endif
- }
- #ifdef __SYMBIAN32__
- VOID
- SOUND_AdjustVolume(
- INT iDirectory
- )
- /*++
- Purpose:
- SDL sound volume adjust function.
- Parameters:
- [IN] iDirectory - value, Increase (>0) or decrease (<=0) 3% volume.
- Return value:
- None.
- --*/
- {
- if (iDirectory > 0)
- {
- if (g_iVolume <= SDL_MIX_MAXVOLUME)
- {
- g_iVolume += SDL_MIX_MAXVOLUME * 0.03;
- }
- else
- {
- g_iVolume = SDL_MIX_MAXVOLUME;
- }
- }
- else
- {
- if (g_iVolume > 0)
- {
- g_iVolume -= SDL_MIX_MAXVOLUME * 0.03;
- }
- else
- {
- g_iVolume = 0;
- }
- }
- }
- #endif
- 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;
- UINT samplesize;
- int len;
- if (!gSndOpened || g_fNoSound)
- {
- return;
- }
- //
- // Stop playing current sound.
- //
- if (gSndPlayer.buf[iChannel] != NULL)
- {
- LPBYTE p = gSndPlayer.buf[iChannel];
- gSndPlayer.buf[iChannel] = NULL;
- free(p);
- }
- if (iSoundNum < 0)
- {
- return;
- }
- //
- // Get the length of the sound file.
- //
- len = PAL_MKFGetChunkSize(iSoundNum, gSndPlayer.mkf);
- if (len <= 0)
- {
- return;
- }
- buf = (LPBYTE)calloc(len, 1);
- if (buf == NULL)
- {
- return;
- }
- //
- // Read the sound file from the MKF archive.
- //
- PAL_MKFReadChunk(buf, len, iSoundNum, gSndPlayer.mkf);
- SOUND_LoadVOCFromBuffer(buf, len, &wavespec, &bufdec);
- free(buf);
- //
- // 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(bufdec);
- return;
- }
- samplesize = ((wavespec.format & 0xFF) / 8) * wavespec.channels;
- wavecvt.len = wavespec.size & ~(samplesize - 1);
- wavecvt.buf = (LPBYTE)malloc(wavecvt.len * wavecvt.len_mult);
- if (wavecvt.buf == NULL)
- {
- free(bufdec);
- return;
- }
- memcpy(wavecvt.buf, bufdec, wavespec.size);
- free(bufdec);
- //
- // Run the audio converter
- //
- if (SDL_ConvertAudio(&wavecvt) < 0)
- {
- return;
- }
- gSndPlayer.buf[iChannel] = wavecvt.buf;
- gSndPlayer.audio_len[iChannel] = wavecvt.len * wavecvt.len_mult;
- gSndPlayer.pos[iChannel] = wavecvt.buf;
- }
- VOID
- PAL_PlayMUS(
- INT iNumRIX,
- BOOL fLoop,
- FLOAT flFadeTime
- )
- {
- #ifdef PAL_HAS_NATIVEMIDI
- if (g_fUseMidi)
- {
- MIDI_Play(iNumRIX, fLoop);
- return;
- }
- #endif
- #ifdef PAL_HAS_MP3
- if (gSndPlayer.pMP3 != NULL)
- {
- if (iNumRIX == gSndPlayer.iCurrentMP3 && !g_fNoMusic)
- {
- return;
- }
- SDL_mutexP(gSndPlayer.lock);
- mad_stop(gSndPlayer.pMP3);
- mad_closeFile(gSndPlayer.pMP3);
- gSndPlayer.pMP3 = NULL;
- SDL_mutexV(gSndPlayer.lock);
- }
- gSndPlayer.iCurrentMP3 = -1;
- if (iNumRIX > 0)
- {
- SDL_mutexP(gSndPlayer.lock);
- gSndPlayer.pMP3 = mad_openFile(va("%s/mp3/%.2d.mp3", PAL_PREFIX, iNumRIX), &gSndPlayer.spec);
- if (gSndPlayer.pMP3 != NULL)
- {
- RIX_Play(0, FALSE, flFadeTime);
- mad_start(gSndPlayer.pMP3);
- gSndPlayer.fMP3Loop = fLoop;
- gSndPlayer.iCurrentMP3 = iNumRIX;
- SDL_mutexV(gSndPlayer.lock);
- return;
- }
- SDL_mutexV(gSndPlayer.lock);
- }
- #endif
- RIX_Play(iNumRIX, fLoop, flFadeTime);
- }
- 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.
- --*/
- {
- #ifdef PAL_HAS_CD
- if (gSndPlayer.pCD != NULL)
- {
- if (CD_INDRIVE(SDL_CDStatus(gSndPlayer.pCD)))
- {
- SDL_CDStop(gSndPlayer.pCD);
- if (iNumTrack != -1)
- {
- PAL_PlayMUS(-1, FALSE, 0);
- if (SDL_CDPlayTracks(gSndPlayer.pCD, iNumTrack - 1, 0, 1, 0) == 0)
- {
- return TRUE;
- }
- }
- }
- }
- #endif
- return FALSE;
- }
|