| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457 | 
							- /* -*- 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      1
 
- #define USE_DEMUOPL          1
 
- #define USE_KEMUOPL          0
 
- #define USE_RESAMPLER        1
 
- #define OPL_SAMPLERATE       49716
 
- #include "resampler.h"
 
- #include "adplug/opl.h"
 
- #include "adplug/emuopl.h"
 
- #if USE_KEMUOPL
 
- #include "adplug/kemuopl.h"
 
- #endif
 
- #if USE_DEMUOPL
 
- #include "adplug/demuopl.h"
 
- #endif
 
- #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;
 
-    void                      *resampler[2];
 
-    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 * sizeof(short) * 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);
 
- 			gpRixPlayer->opl->init();
 
- 			if (gpRixPlayer->resampler[0]) resampler_clear(gpRixPlayer->resampler[0]);
 
- 			if (gpRixPlayer->resampler[1]) resampler_clear(gpRixPlayer->resampler[1]);
 
-             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);
 
- 			   gpRixPlayer->opl->init();
 
- 			   if (gpRixPlayer->resampler[0]) resampler_clear(gpRixPlayer->resampler[0]);
 
- 			   if (gpRixPlayer->resampler[1]) resampler_clear(gpRixPlayer->resampler[1]);
 
- 			}
 
-             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;
 
-             }
 
-          }
 
-           int sample_count = PAL_SAMPLE_RATE / 70;
 
-           if( gpRixPlayer->resampler[0] ) {
 
-               
 
-               unsigned int samples_written = 0;
 
- 			  short tempBuf[64 * PAL_CHANNELS]; // hard code on resampler defination
 
-               short *finalBuf = (short*)gpRixPlayer->buf;
 
-               
 
-               while ( sample_count )
 
-               {
 
-                   int to_write = resampler_get_free_count( gpRixPlayer->resampler[0] );
 
-                   if ( to_write )
 
-                   {
 
-                       gpRixPlayer->opl->update( tempBuf, to_write );
 
-                       for ( int i = 0; i < to_write; i++ )
 
-                       {
 
-                           resampler_write_sample( gpRixPlayer->resampler[0], tempBuf[i * 2] );
 
-                           resampler_write_sample( gpRixPlayer->resampler[1], tempBuf[i * 2 + 1] );
 
-                       }
 
-                   }
 
-                   
 
-                   /* if ( !lanczos_resampler_ready( m_resampler ) ) break; */ /* We assume that by filling the input buffer completely every pass, there will always be samples ready. */
 
-                   
 
-                   //int ls = resampler_get_sample( gpRixPlayer->resampler[0] );
 
-                   //int rs = resampler_get_sample( gpRixPlayer->resampler[1] );
 
-                   //resampler_remove_sample( gpRixPlayer->resampler[0] );
 
-                   //resampler_remove_sample( gpRixPlayer->resampler[1] );
 
-                   
 
-                   finalBuf[samples_written++] = resampler_get_and_remove_sample(gpRixPlayer->resampler[0]);
 
-                   finalBuf[samples_written++] = resampler_get_and_remove_sample(gpRixPlayer->resampler[1]);
 
-                   --sample_count;
 
-               }
 
-               
 
- //              p_chunk.set_data_size( samples_written );
 
- //              p_chunk.set_sample_rate( srate );
 
- //              p_chunk.set_channels( 2, audio_chunk::channel_config_stereo );
 
- //              p_chunk.set_sample_count( samples_written / 2 );
 
- //              
 
- //              audio_math::convert_from_int32( sample_buffer.get_ptr(), samples_written, p_chunk.get_data(), 1 << 8 );
 
-           }else
 
-               gpRixPlayer->opl->update((short *)(gpRixPlayer->buf), sample_count);
 
-       }
 
-       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);
 
-          {
 
-             *(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 PAL_CHANNELS == 2 && !USE_SURROUNDOPL
 
-    const bool opl_stereo = true;
 
- #else
 
-    const bool opl_stereo = false;
 
- #endif
 
- #if USE_DEMUOPL
 
-    typedef CDemuopl COpl;
 
- #elif USE_KEMUOPL
 
-    typedef CKemuopl COpl;
 
- #else
 
-    typedef CEmuopl  COpl;
 
- #endif
 
- #if PAL_CHANNELS == 2 && USE_SURROUNDOPL
 
-    gpRixPlayer->opl = new CSurroundopl(new COpl(OPL_SAMPLERATE, true, false),
 
-                                        new COpl(OPL_SAMPLERATE, true, false), true);
 
- #  if OPL_SAMPLERATE != PAL_SAMPLE_RATE && USE_RESAMPLER
 
-    resampler_init();
 
-    gpRixPlayer->resampler[0] = resampler_create();
 
-    gpRixPlayer->resampler[1] = resampler_create();
 
-    resampler_set_quality( gpRixPlayer->resampler[0], RESAMPLER_QUALITY_MAX );
 
-    resampler_set_quality( gpRixPlayer->resampler[1], RESAMPLER_QUALITY_MAX );
 
-    resampler_set_rate( gpRixPlayer->resampler[0], OPL_SAMPLERATE / (double)PAL_SAMPLE_RATE );
 
-    resampler_set_rate( gpRixPlayer->resampler[1], OPL_SAMPLERATE / (double)PAL_SAMPLE_RATE );
 
- #  else
 
-    gpRixPlayer->resampler[0] = NULL;
 
-    gpRixPlayer->resampler[1] = NULL;
 
- #  endif
 
- #else
 
-    gpRixPlayer->opl = new COpl(OPL_SAMPLERATE, true, opl_stereo);
 
- #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;
 
- }
 
 
  |