2005-02-13 03:21:22 +00:00
|
|
|
/* RageSoundManager - A global singleton to interface RageSound and RageSoundDriver. */
|
|
|
|
|
|
2002-12-13 07:44:34 +00:00
|
|
|
#ifndef RAGE_SOUND_MANAGER_H
|
|
|
|
|
#define RAGE_SOUND_MANAGER_H
|
|
|
|
|
|
|
|
|
|
#include <set>
|
2002-12-21 02:19:37 +00:00
|
|
|
#include <map>
|
2004-03-18 03:04:44 +00:00
|
|
|
#include "RageUtil_CircularBuffer.h"
|
2002-12-13 07:44:34 +00:00
|
|
|
|
|
|
|
|
class RageSound;
|
2004-01-15 02:33:41 +00:00
|
|
|
class RageSoundBase;
|
2003-04-23 19:49:51 +00:00
|
|
|
class RageSoundDriver;
|
2004-02-28 02:09:46 +00:00
|
|
|
struct RageSoundParams;
|
2005-07-18 19:08:28 +00:00
|
|
|
class SoundReader;
|
|
|
|
|
class RageSoundReader_Preload;
|
2002-12-13 07:44:34 +00:00
|
|
|
|
|
|
|
|
class RageSoundManager
|
|
|
|
|
{
|
|
|
|
|
public:
|
2004-05-23 21:13:19 +00:00
|
|
|
RageSoundManager();
|
2002-12-13 07:44:34 +00:00
|
|
|
~RageSoundManager();
|
2004-11-15 05:22:39 +00:00
|
|
|
|
|
|
|
|
/* This may be called when shutting down, in order to stop all sounds. This
|
|
|
|
|
* should be called before shutting down threads that may have running sounds,
|
|
|
|
|
* in order to prevent DirectSound delays and glitches. Further attempts to
|
|
|
|
|
* start sounds will do nothing, and threads may be shut down. */
|
|
|
|
|
void Shutdown();
|
|
|
|
|
|
2005-12-31 02:35:49 +00:00
|
|
|
void Init();
|
2002-12-13 07:44:34 +00:00
|
|
|
|
2005-07-03 04:03:46 +00:00
|
|
|
float GetMixVolume() const { return m_fMixVolume; }
|
2005-10-04 06:51:06 +00:00
|
|
|
void SetMixVolume( float fMixVol );
|
|
|
|
|
bool GetPlayOnlyCriticalSounds() const { return m_bPlayOnlyCriticalSounds; }
|
|
|
|
|
void SetPlayOnlyCriticalSounds( bool bPlayOnlyCriticalSounds );
|
2003-01-19 19:55:24 +00:00
|
|
|
|
2005-07-03 04:03:46 +00:00
|
|
|
void Update( float fDeltaTime );
|
2004-01-15 03:13:26 +00:00
|
|
|
void StartMixing( RageSoundBase *snd ); /* used by RageSound */
|
|
|
|
|
void StopMixing( RageSoundBase *snd ); /* used by RageSound */
|
2005-03-10 22:49:28 +00:00
|
|
|
bool Pause( RageSoundBase *snd, bool bPause ); /* used by RageSound */
|
2004-01-19 22:21:02 +00:00
|
|
|
int64_t GetPosition( const RageSoundBase *snd ) const; /* used by RageSound */
|
2004-05-02 23:54:39 +00:00
|
|
|
void RegisterSound( RageSound *p ); /* used by RageSound */
|
2004-03-18 01:31:34 +00:00
|
|
|
void UnregisterSound( RageSound *p ); /* used by RageSound */
|
2004-05-02 23:54:39 +00:00
|
|
|
int GetUniqueID(); /* used by RageSound */
|
2004-03-18 03:04:44 +00:00
|
|
|
void CommitPlayingPosition( int ID, int64_t frameno, int pos, int got_bytes ); /* used by drivers */
|
2002-12-13 07:44:34 +00:00
|
|
|
float GetPlayLatency() const;
|
2005-07-03 04:03:46 +00:00
|
|
|
int GetDriverSampleRate( int iRate ) const;
|
2002-12-13 07:44:34 +00:00
|
|
|
|
2004-04-16 22:28:01 +00:00
|
|
|
/* When deleting a sound from any thread except the one calling Update(), this
|
|
|
|
|
* must be used to prevent race conditions. */
|
2005-07-03 04:03:46 +00:00
|
|
|
void DeleteSound( RageSound *pSound );
|
2005-01-08 16:58:37 +00:00
|
|
|
void DeleteSoundWhenFinished( RageSound *pSound );
|
2004-04-16 22:28:01 +00:00
|
|
|
|
2005-07-18 19:08:28 +00:00
|
|
|
SoundReader *GetLoadedSound( const CString &sPath );
|
|
|
|
|
void AddLoadedSound( const CString &sPath, RageSoundReader_Preload *pSound );
|
|
|
|
|
|
2002-12-13 07:44:34 +00:00
|
|
|
void PlayOnce( CString sPath );
|
|
|
|
|
|
2005-01-08 16:58:37 +00:00
|
|
|
RageSound *PlaySound( RageSound &snd, const RageSoundParams *params = NULL );
|
|
|
|
|
RageSound *PlayCopyOfSound( RageSound &snd, const RageSoundParams *params = NULL );
|
2004-01-14 08:10:37 +00:00
|
|
|
|
2004-04-13 00:04:09 +00:00
|
|
|
private:
|
2005-02-13 03:21:22 +00:00
|
|
|
/* Set of sounds that we've taken over (and are responsible for deleting
|
|
|
|
|
* when they're finished playing): */
|
|
|
|
|
set<RageSound *> owned_sounds;
|
|
|
|
|
|
|
|
|
|
/* A list of all sounds that currently exist, by ID. */
|
|
|
|
|
map<int,RageSound *> all_sounds;
|
2005-07-18 19:08:28 +00:00
|
|
|
|
|
|
|
|
map<CString, RageSoundReader_Preload *> m_mapPreloadedSounds;
|
|
|
|
|
|
2005-07-03 04:03:46 +00:00
|
|
|
RageSoundDriver *m_pDriver;
|
2005-02-13 03:21:22 +00:00
|
|
|
|
|
|
|
|
/* Prefs: */
|
2005-07-03 04:03:46 +00:00
|
|
|
float m_fMixVolume;
|
2005-10-04 06:51:06 +00:00
|
|
|
bool m_bPlayOnlyCriticalSounds;
|
|
|
|
|
|
2005-02-13 03:21:22 +00:00
|
|
|
struct queued_pos_map_t
|
|
|
|
|
{
|
|
|
|
|
int ID, pos, got_frames;
|
|
|
|
|
int64_t frameno;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
CircBuf<queued_pos_map_t> pos_map_queue;
|
2004-04-13 00:04:09 +00:00
|
|
|
void FlushPosMapQueue();
|
2005-02-13 03:21:22 +00:00
|
|
|
|
2004-04-13 00:04:09 +00:00
|
|
|
RageSound *GetSoundByID( int ID );
|
2002-12-31 01:09:31 +00:00
|
|
|
};
|
|
|
|
|
|
2002-12-13 07:44:34 +00:00
|
|
|
extern RageSoundManager *SOUNDMAN;
|
|
|
|
|
|
|
|
|
|
#endif
|
2004-05-06 02:40:33 +00:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2002-2004 Glenn Maynard
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the
|
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
|
* distribute, and/or sell copies of the Software, and to permit persons to
|
|
|
|
|
* whom the Software is furnished to do so, provided that the above
|
|
|
|
|
* copyright notice(s) and this permission notice appear in all copies of
|
|
|
|
|
* the Software and that both the above copyright notice(s) and this
|
|
|
|
|
* permission notice appear in supporting documentation.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
|
|
|
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
|
|
|
|
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
|
|
|
|
|
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
|
|
|
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
|
|
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*/
|