diff options
Diffstat (limited to 'src/crepe/SoundSystem.cpp')
-rw-r--r-- | src/crepe/SoundSystem.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/crepe/SoundSystem.cpp b/src/crepe/SoundSystem.cpp new file mode 100644 index 0000000..30b0157 --- /dev/null +++ b/src/crepe/SoundSystem.cpp @@ -0,0 +1,25 @@ +#include "SoundSystem.h" +#include <memory> + +using namespace crepe; + +SoundSystem SoundSystem::instance { }; + +std::unique_ptr<Sound> SoundSystem::sound(const std::string & src) { + auto res = std::make_unique<api::Resource>(src); + return SoundSystem::sound(std::move(res)); +} + +std::unique_ptr<Sound> SoundSystem::sound(std::unique_ptr<api::Resource> res) { + Sound * out = new Sound(std::move(res), SoundSystem::instance); + return std::unique_ptr<Sound>(out); +} + +SoundSystem::SoundSystem() { + engine.init(); +} + +SoundSystem::~SoundSystem() { + engine.deinit(); +} + |