]> git.lizzy.rs Git - nothing.git/blobdiff - src/main.c
(#135) Play sounds on a free channel
[nothing.git] / src / main.c
index b5b5f01d3ef60bd7589a0af43ab804fdb4222af3..e2e8127a0bcf56f067d6fc5032e47e781420d3c3 100644 (file)
 #include "./game.h"
 #include "./lt.h"
 #include "./path.h"
+#include "./point.h"
+#include "./sound_medium.h"
 
 #define SCREEN_WIDTH 800
 #define SCREEN_HEIGHT 600
 #define GAME_FPS 60
 
+/* LT module adapter for Mix_CloseAudio */
+static void Mix_CloseAudio_lt(void* ignored)
+{
+    (void) ignored;
+    Mix_CloseAudio();
+}
+
 /* LT module adapter for SDL_Quit */
 static void SDL_Quit_lt(void* ignored)
 {
@@ -92,14 +101,34 @@ int main(int argc, char *argv[])
         fprintf(stderr, "[WARNING] Could not find any Sticks of the Joy\n");
     }
 
+    if (Mix_OpenAudio(
+            MIX_DEFAULT_FREQUENCY,
+            MIX_DEFAULT_FORMAT,
+            2,
+            1024) < 0) {
+        print_error_msg(ERROR_TYPE_SDL2_MIXER, "Could not initialize the audio\n");
+        RETURN_LT(lt, -1);
+    }
+    PUSH_LT(lt, 42, Mix_CloseAudio_lt);
+
+    Mix_Chunk * sound_samples[] = {
+        PUSH_LT(lt, Mix_LoadWAV("./sounds/nothing.wav"), Mix_FreeChunk),
+        PUSH_LT(lt, Mix_LoadWAV("./sounds/something.wav"), Mix_FreeChunk)
+    };
+    const size_t sound_samples_count = sizeof(sound_samples) / sizeof(Mix_Chunk*);
+
+    sound_medium_t *sound_medium =
+        PUSH_LT(lt, create_sound_medium(sound_samples, sound_samples_count), destroy_sound_medium);
+
     // ------------------------------
 
     char *sounds_folder = PUSH_LT(lt, base_path_folder("sounds"), free);
     if (sounds_folder == NULL) {
+        print_current_error_msg("Could not get the sounds folder");
         RETURN_LT(lt, -1);
     }
 
-    game_t *const game = PUSH_LT(lt, create_game(argv[1], sounds_folder), destroy_game);
+    game_t *const game = PUSH_LT(lt, create_game(argv[1], sound_medium), destroy_game);
     if (game == NULL) {
         print_current_error_msg("Could not create the game object");
         RETURN_LT(lt, -1);