aboutsummaryrefslogtreecommitdiff
path: root/mwe/audio/soloud/main.cpp
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2024-10-01 11:05:42 +0200
committerheavydemon21 <nielsstunnebrink1@gmail.com>2024-10-01 11:05:42 +0200
commit8e66301577551bc5b8a2e169be173e71de2f5e4e (patch)
tree52797ebfe53007eaf502c9cf9aafbd34817f5d0b /mwe/audio/soloud/main.cpp
parent2d13805218eb34b6e06205c1b65c341ebcdad504 (diff)
parentf4560e02f703f1c6f857c8e5af63fa9fc4ca6438 (diff)
Merge branch 'master' into niels/resource-manager
Diffstat (limited to 'mwe/audio/soloud/main.cpp')
-rw-r--r--mwe/audio/soloud/main.cpp48
1 files changed, 48 insertions, 0 deletions
diff --git a/mwe/audio/soloud/main.cpp b/mwe/audio/soloud/main.cpp
new file mode 100644
index 0000000..25ba003
--- /dev/null
+++ b/mwe/audio/soloud/main.cpp
@@ -0,0 +1,48 @@
+#include <soloud.h>
+#include <soloud_wav.h>
+#include <soloud_wavstream.h>
+
+#include <chrono>
+#include <thread>
+
+using namespace std;
+using namespace std::chrono_literals;
+
+int main() {
+ SoLoud::Soloud soloud;
+ soloud.init();
+
+ // load background track
+ SoLoud::WavStream bgm;
+ bgm.load("../bgm.ogg");
+ // NOTE: SoLoud::Wav is poorly named as it also supports FLAC, MP3 and OGG
+
+ // load three short samples
+ SoLoud::Wav sfx[3];
+ sfx[0].load("../sfx1.wav");
+ sfx[1].load("../sfx2.wav");
+ sfx[2].load("../sfx3.wav");
+
+ // start the background track
+ SoLoud::handle bgm_handle = soloud.play(bgm);
+
+ // play each sample sequentially
+ this_thread::sleep_for(500ms);
+ soloud.play(sfx[0]);
+ this_thread::sleep_for(500ms);
+ soloud.play(sfx[1]);
+ soloud.setPause(bgm_handle, true);
+ this_thread::sleep_for(500ms);
+ soloud.play(sfx[2]);
+ soloud.setPause(bgm_handle, false);
+ this_thread::sleep_for(500ms);
+
+ // play all samples simultaniously
+ for (unsigned i = 0; i < 3; i++)
+ soloud.play(sfx[i]);
+ this_thread::sleep_for(1000ms);
+
+ // stop all audio and exit
+ soloud.deinit();
+ return 0;
+}