Files
itgmania212121/stepmania/src/RageSoundManager.h
T

117 lines
4.1 KiB
C++
Raw Normal View History

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>
#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;
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:
RageSoundManager();
2002-12-13 07:44:34 +00:00
~RageSoundManager();
/* 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; }
void SetMixVolume( float fMixVol );
bool GetPlayOnlyCriticalSounds() const { return m_bPlayOnlyCriticalSounds; }
void SetPlayOnlyCriticalSounds( bool bPlayOnlyCriticalSounds );
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 */
bool Pause( RageSoundBase *snd, bool bPause ); /* used by RageSound */
int64_t GetPosition( const RageSoundBase *snd ) const; /* used by RageSound */
void RegisterSound( RageSound *p ); /* used by RageSound */
2004-03-18 01:31:34 +00:00
void UnregisterSound( RageSound *p ); /* used by RageSound */
int GetUniqueID(); /* used by RageSound */
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 );
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 );
RageSound *PlaySound( RageSound &snd, const RageSoundParams *params = NULL );
RageSound *PlayCopyOfSound( RageSound &snd, const RageSoundParams *params = NULL );
2004-01-14 08:10:37 +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;
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;
void FlushPosMapQueue();
2005-02-13 03:21:22 +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.
*/