Files
itgmania212121/stepmania/src/RageSoundManager.h
T

86 lines
3.0 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;
2006-11-29 02:20:10 +00:00
class RageSoundReader;
2005-07-18 19:08:28 +00:00
class RageSoundReader_Preload;
class RageTimer;
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 );
2006-08-21 00:20:14 +00:00
void Update();
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( RageTimer *pTimer ) const; /* used by RageSound */
2002-12-13 07:44:34 +00:00
float GetPlayLatency() const;
2006-12-13 09:15:29 +00:00
int GetDriverSampleRate() const;
2002-12-13 07:44:34 +00:00
2006-11-29 02:20:10 +00:00
RageSoundReader *GetLoadedSound( const RString &sPath );
2006-01-22 01:00:06 +00:00
void AddLoadedSound( const RString &sPath, RageSoundReader_Preload *pSound );
2005-07-18 19:08:28 +00:00
private:
2006-01-22 01:00:06 +00:00
map<RString, RageSoundReader_Preload *> m_mapPreloadedSounds;
2005-07-18 19:08:28 +00:00
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;
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.
*/