ES-DE/es-core/src/Sound.h

47 lines
908 B
C
Raw Normal View History

#ifndef _SOUND_H_
#define _SOUND_H_
#include <string>
#include <map>
#include <memory>
#include "SDL_audio.h"
class ThemeData;
class Sound
{
std::string mPath;
SDL_AudioSpec mSampleFormat;
Uint8 * mSampleData;
Uint32 mSamplePos;
Uint32 mSampleLength;
bool playing;
public:
static std::shared_ptr<Sound> get(const std::string& path);
static std::shared_ptr<Sound> getFromTheme(const std::shared_ptr<ThemeData>& theme, const std::string& view, const std::string& elem);
~Sound();
void init();
void deinit();
void loadFile(const std::string & path);
void play();
bool isPlaying() const;
void stop();
const Uint8 * getData() const;
Uint32 getPosition() const;
void setPosition(Uint32 newPosition);
Uint32 getLength() const;
2013-08-06 13:15:20 +00:00
Uint32 getLengthMS() const;
private:
Sound(const std::string & path = "");
static std::map< std::string, std::shared_ptr<Sound> > sMap;
};
#endif