mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
92 lines
1.8 KiB
C++
92 lines
1.8 KiB
C++
//
|
|
// Sound.h
|
|
//
|
|
// Higher-level audio functions.
|
|
// Reading theme sound setings, playing audio samples etc.
|
|
//
|
|
|
|
#pragma once
|
|
#ifndef ES_CORE_SOUND_H
|
|
#define ES_CORE_SOUND_H
|
|
|
|
#if defined(__linux__) || defined(_WIN64)
|
|
#include <SDL2/SDL_audio.h>
|
|
#else
|
|
#include "SDL_audio.h"
|
|
#endif
|
|
|
|
#if defined(__APPLE__)
|
|
#include <sstream>
|
|
#endif
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
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;
|
|
Uint32 getLengthMS() const;
|
|
|
|
private:
|
|
Sound(const std::string & path = "");
|
|
static std::map< std::string, std::shared_ptr<Sound> > sMap;
|
|
};
|
|
|
|
enum NavigationSoundsID {
|
|
SYSTEMBROWSESOUND,
|
|
QUICKSYSSELECTSOUND,
|
|
SELECTSOUND,
|
|
BACKSOUND,
|
|
SCROLLSOUND,
|
|
FAVORITESOUND,
|
|
LAUNCHSOUND
|
|
};
|
|
|
|
class NavigationSounds
|
|
{
|
|
public:
|
|
static NavigationSounds* getInstance();
|
|
|
|
void deinit();
|
|
void loadThemeNavigationSounds(const std::shared_ptr<ThemeData>& theme);
|
|
void playThemeNavigationSound(NavigationSoundsID soundID);
|
|
bool isPlayingThemeNavigationSound(NavigationSoundsID soundID);
|
|
|
|
private:
|
|
static NavigationSounds* sInstance;
|
|
std::vector<std::shared_ptr<Sound>> navigationSounds;
|
|
};
|
|
|
|
extern NavigationSounds navigationsounds;
|
|
|
|
#endif // ES_CORE_SOUND_H
|