You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
494 B
22 lines
494 B
3 weeks ago
|
#pragma once
|
||
|
#include <string>
|
||
|
#include <filesystem>
|
||
|
#include <unordered_map>
|
||
|
#include <SFML/Audio.hpp>
|
||
|
|
||
|
struct SoundPair {
|
||
|
sf::SoundBuffer buffer;
|
||
|
sf::Sound sound;
|
||
|
};
|
||
|
|
||
|
struct SoundManager {
|
||
|
std::filesystem::path $base_path;
|
||
|
std::unordered_map<std::string, SoundPair*> $sounds;
|
||
|
|
||
|
SoundManager(std::string base_path);
|
||
|
|
||
|
void load(const std::string name, const std::string path);
|
||
|
void play(const std::string name);
|
||
|
void playAt(const std::string name, float x, float y, float z);
|
||
|
};
|