123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384 |
- /* -*- mode: c++; tab-width: 4; c-basic-offset: 3; c-file-style: "linux" -*- */
- //
- // Copyright (c) 2008, Wei Mingzhi <whistler_wmz@users.sf.net>.
- // All rights reserved.
- //
- // This program 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 "rixplay.h"
- #define USE_SURROUNDOPL 0
- #define USE_DEMUOPL 0
- #include "adplug/opl.h"
- #include "adplug/emuopl.h"
- #include "adplug/demuopl.h"
- #include "adplug/surroundopl.h"
- #include "adplug/rix.h"
- extern "C" BOOL g_fNoMusic;
- extern "C" INT g_iVolume;
- #include "sound.h"
- typedef struct tagRIXPLAYER
- {
- tagRIXPLAYER() : iCurrentMusic(-1) {}
- Copl *opl;
- CrixPlayer *rix;
- INT iCurrentMusic; // current playing music number
- INT iNextMusic; // the next music number to switch to
- DWORD dwStartFadeTime;
- DWORD dwEndFadeTime;
- enum { FADE_IN, FADE_OUT } FadeType; // fade in or fade out ?
- BOOL fLoop;
- BOOL fNextLoop;
- BYTE buf[PAL_SAMPLE_RATE / 70 * 2 * PAL_CHANNELS];
- LPBYTE pos;
- } RIXPLAYER, *LPRIXPLAYER;
- static LPRIXPLAYER gpRixPlayer = NULL;
- VOID
- RIX_FillBuffer(
- LPBYTE stream,
- INT len
- )
- /*++
- Purpose:
- Fill the background music into the sound buffer. Called by the SDL sound
- callback function only (sound.c: SOUND_FillAudio).
- Parameters:
- [OUT] stream - pointer to the stream buffer.
- [IN] len - Length of the buffer.
- Return value:
- None.
- --*/
- {
- INT i, l, oldlen, volume = SDL_MIX_MAXVOLUME / 2;
- UINT t = SDL_GetTicks();
- #ifdef __SYMBIAN32__
- volume = g_iVolume / 2;
- #endif
- oldlen = len;
- if (gpRixPlayer == NULL)
- {
- //
- // Not initialized
- //
- return;
- }
- //
- // fading in or fading out
- //
- if (gpRixPlayer->dwEndFadeTime > 0)
- {
- switch (gpRixPlayer->FadeType)
- {
- case RIXPLAYER::FADE_IN:
- if (t >= gpRixPlayer->dwEndFadeTime)
- {
- gpRixPlayer->dwEndFadeTime = 0;
- }
- else
- {
- volume = (INT)(volume * (t - gpRixPlayer->dwStartFadeTime) /
- (FLOAT)(gpRixPlayer->dwEndFadeTime - gpRixPlayer->dwStartFadeTime));
- }
- break;
- case RIXPLAYER::FADE_OUT:
- if (gpRixPlayer->iCurrentMusic == -1)
- {
- //
- // There is no current playing music. Just start playing the next one.
- //
- gpRixPlayer->iCurrentMusic = gpRixPlayer->iNextMusic;
- gpRixPlayer->fLoop = gpRixPlayer->fNextLoop;
- gpRixPlayer->FadeType = RIXPLAYER::FADE_IN;
- gpRixPlayer->dwEndFadeTime = t +
- (gpRixPlayer->dwEndFadeTime - gpRixPlayer->dwStartFadeTime);
- gpRixPlayer->dwStartFadeTime = t;
- gpRixPlayer->rix->rewind(gpRixPlayer->iCurrentMusic);
- return;
- }
- else if (t >= gpRixPlayer->dwEndFadeTime)
- {
- if (gpRixPlayer->iNextMusic <= 0)
- {
- gpRixPlayer->iCurrentMusic = -1;
- gpRixPlayer->dwEndFadeTime = 0;
- }
- else
- {
- //
- // Fade to the next music
- //
- gpRixPlayer->iCurrentMusic = gpRixPlayer->iNextMusic;
- gpRixPlayer->fLoop = gpRixPlayer->fNextLoop;
- gpRixPlayer->FadeType = RIXPLAYER::FADE_IN;
- gpRixPlayer->dwEndFadeTime = t +
- (gpRixPlayer->dwEndFadeTime - gpRixPlayer->dwStartFadeTime);
- gpRixPlayer->dwStartFadeTime = t;
- gpRixPlayer->rix->rewind(gpRixPlayer->iCurrentMusic);
- }
- return;
- }
- volume = (INT)(volume * (1.0f - (t - gpRixPlayer->dwStartFadeTime) /
- (FLOAT)(gpRixPlayer->dwEndFadeTime - gpRixPlayer->dwStartFadeTime)));
- break;
- }
- }
- if (gpRixPlayer->iCurrentMusic <= 0)
- {
- //
- // No current playing music
- //
- return;
- }
- //
- // Fill the buffer with sound data
- //
- while (len > 0)
- {
- if (gpRixPlayer->pos == NULL ||
- gpRixPlayer->pos - gpRixPlayer->buf >= (int)sizeof(gpRixPlayer->buf))
- {
- gpRixPlayer->pos = gpRixPlayer->buf;
- if (!gpRixPlayer->rix->update())
- {
- if (!gpRixPlayer->fLoop)
- {
- //
- // Not loop, simply terminate the music
- //
- gpRixPlayer->iCurrentMusic = -1;
- return;
- }
- gpRixPlayer->rix->rewind(gpRixPlayer->iCurrentMusic);
- if (!gpRixPlayer->rix->update())
- {
- //
- // Something must be wrong
- //
- gpRixPlayer->iCurrentMusic = -1;
- return;
- }
- }
- gpRixPlayer->opl->update((short *)(gpRixPlayer->buf), PAL_SAMPLE_RATE / 70);
- }
- l = sizeof(gpRixPlayer->buf) - (gpRixPlayer->pos - gpRixPlayer->buf);
- if (len < l)
- {
- l = len;
- }
- //
- // Put audio data into buffer and adjust volume
- // WARNING: for signed 16-bit little-endian only
- //
- for (i = 0; i < (int)(l / sizeof(SHORT)); i++)
- {
- SHORT s = SWAP16((int)(*(SHORT *)(gpRixPlayer->pos)) * volume / SDL_MIX_MAXVOLUME);
- #if !USE_SURROUNDOPL
- for (int j = 0; j < PAL_CHANNELS; j++)
- #endif
- {
- *(SHORT *)(stream) = s;
- stream += sizeof(SHORT);
- }
- gpRixPlayer->pos += sizeof(SHORT);
- }
- len -= l;
- }
- stream -= oldlen;
- }
- INT
- RIX_Init(
- LPCSTR szFileName
- )
- /*++
- Purpose:
- Initialize the RIX player subsystem.
- Parameters:
- [IN] szFileName - Filename of the mus.mkf file.
- Return value:
- 0 if success, -1 if cannot allocate memory, -2 if file not found.
- --*/
- {
- gpRixPlayer = new RIXPLAYER;
- if (gpRixPlayer == NULL)
- {
- return -1;
- }
- #if USE_SURROUNDOPL && (PAL_CHANNELS == 2)
- # if USE_DEMUOPL
- gpRixPlayer->opl = new CSurroundopl(new CDemuopl(PAL_SAMPLE_RATE, true, false),
- new CDemuopl(PAL_SAMPLE_RATE, true, false), true);
- # else
- gpRixPlayer->opl = new CSurroundopl(new CEmuopl(PAL_SAMPLE_RATE, true, false),
- new CEmuopl(PAL_SAMPLE_RATE, true, false), true);
- # endif
- #else
- # if USE_DEMUOPL
- gpRixPlayer->opl = new CDemuopl(PAL_SAMPLE_RATE, true, false);
- # else
- gpRixPlayer->opl = new CEmuopl(PAL_SAMPLE_RATE, true, false);
- # endif
- #endif
- if (gpRixPlayer->opl == NULL)
- {
- delete gpRixPlayer;
- return -1;
- }
- gpRixPlayer->rix = new CrixPlayer(gpRixPlayer->opl);
- if (gpRixPlayer->rix == NULL)
- {
- delete gpRixPlayer->opl;
- delete gpRixPlayer;
- return -1;
- }
- //
- // Load the MKF file.
- //
- if (!gpRixPlayer->rix->load(szFileName, CProvider_Filesystem()))
- {
- delete gpRixPlayer->rix;
- delete gpRixPlayer->opl;
- delete gpRixPlayer;
- gpRixPlayer = NULL;
- return -2;
- }
- //
- // Success.
- //
- gpRixPlayer->iCurrentMusic = -1;
- gpRixPlayer->dwEndFadeTime = 0;
- gpRixPlayer->pos = NULL;
- gpRixPlayer->fLoop = FALSE;
- gpRixPlayer->fNextLoop = FALSE;
- return 0;
- }
- VOID
- RIX_Shutdown(
- VOID
- )
- /*++
- Purpose:
- Shutdown the RIX player subsystem.
- Parameters:
- None.
- Return value:
- None.
- --*/
- {
- if (gpRixPlayer != NULL)
- {
- delete gpRixPlayer->rix;
- delete gpRixPlayer->opl;
- delete gpRixPlayer;
- gpRixPlayer = NULL;
- }
- }
- VOID
- RIX_Play(
- INT iNumRIX,
- BOOL fLoop,
- FLOAT flFadeTime
- )
- /*++
- Purpose:
- Start playing the specified music.
- Parameters:
- [IN] iNumRIX - number of the music. 0 to stop playing current music.
- [IN] fLoop - Whether the music should be looped or not.
- [IN] flFadeTime - the fade in/out time when switching music.
- Return value:
- None.
- --*/
- {
- //
- // Check for NULL pointer.
- //
- if (gpRixPlayer == NULL)
- {
- return;
- }
- //
- // Stop the current CD music.
- //
- SOUND_PlayCDA(-1);
- DWORD t = SDL_GetTicks();
- gpRixPlayer->fNextLoop = fLoop;
- if (iNumRIX == gpRixPlayer->iCurrentMusic && !g_fNoMusic)
- {
- return;
- }
- gpRixPlayer->iNextMusic = iNumRIX;
- gpRixPlayer->dwStartFadeTime = t;
- gpRixPlayer->dwEndFadeTime = t + (DWORD)(flFadeTime * 1000) / 2;
- gpRixPlayer->FadeType = RIXPLAYER::FADE_OUT;
- }
|