2020-01-01 21:29:24 +01:00
|
|
|
#include "SoundSystem.h"
|
2020-07-19 21:43:29 +02:00
|
|
|
|
|
|
|
#include <SDL.h>
|
|
|
|
|
2020-01-01 21:29:24 +01:00
|
|
|
#include "FileSystemUtils.h"
|
2021-02-24 00:21:29 +01:00
|
|
|
#include "Vlogging.h"
|
2020-01-01 21:29:24 +01:00
|
|
|
|
|
|
|
MusicTrack::MusicTrack(const char* fileName)
|
|
|
|
{
|
2021-09-07 03:56:39 +02:00
|
|
|
m_music = Mix_LoadMUS(fileName);
|
|
|
|
m_isValid = true;
|
|
|
|
if(m_music == NULL)
|
|
|
|
{
|
|
|
|
vlog_error("Unable to load Ogg Music file: %s", Mix_GetError());
|
|
|
|
m_isValid = false;
|
|
|
|
}
|
2020-01-01 21:29:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
MusicTrack::MusicTrack(SDL_RWops *rw)
|
|
|
|
{
|
2021-09-07 03:56:39 +02:00
|
|
|
m_music = Mix_LoadMUS_RW(rw, 1);
|
|
|
|
m_isValid = true;
|
|
|
|
if(m_music == NULL)
|
|
|
|
{
|
|
|
|
vlog_error("Unable to load Magic Binary Music file: %s", Mix_GetError());
|
|
|
|
m_isValid = false;
|
|
|
|
}
|
2020-01-01 21:29:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SoundTrack::SoundTrack(const char* fileName)
|
|
|
|
{
|
2021-09-07 03:56:39 +02:00
|
|
|
unsigned char *mem;
|
|
|
|
size_t length;
|
2021-04-18 19:22:06 +02:00
|
|
|
|
2021-09-07 03:56:39 +02:00
|
|
|
sound = NULL;
|
2021-04-18 19:22:06 +02:00
|
|
|
|
2021-09-07 03:56:39 +02:00
|
|
|
FILESYSTEM_loadAssetToMemory(fileName, &mem, &length, false);
|
|
|
|
if (mem == NULL)
|
|
|
|
{
|
|
|
|
vlog_error("Unable to load WAV file %s", fileName);
|
|
|
|
SDL_assert(0 && "WAV file missing!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SDL_RWops *fileIn = SDL_RWFromConstMem(mem, length);
|
|
|
|
sound = Mix_LoadWAV_RW(fileIn, 1);
|
|
|
|
FILESYSTEM_freeMemory(&mem);
|
2020-01-01 21:29:24 +01:00
|
|
|
|
2021-09-07 03:56:39 +02:00
|
|
|
if (sound == NULL)
|
|
|
|
{
|
|
|
|
vlog_error("Unable to load WAV file: %s", Mix_GetError());
|
|
|
|
}
|
2020-01-01 21:29:24 +01:00
|
|
|
}
|
|
|
|
|
Explicitly declare void for all void parameter functions (#628)
Apparently in C, if you have `void test();`, it's completely okay to do
`test(2);`. The function will take in the argument, but just discard it
and throw it away. It's like a trash can, and a rude one at that. If you
declare it like `void test(void);`, this is prevented.
This is not a problem in C++ - doing `void test();` and `test(2);` is
guaranteed to result in a compile error (this also means that right now,
at least in all `.cpp` files, nobody is ever calling a void parameter
function with arguments and having their arguments be thrown away).
However, we may not be using C++ in the future, so I just want to lay
down the precedent that if a function takes in no arguments, you must
explicitly declare it as such.
I would've added `-Wstrict-prototypes`, but it produces an annoying
warning message saying it doesn't work in C++ mode if you're compiling
in C++ mode. So it can be added later.
2021-02-25 23:23:59 +01:00
|
|
|
SoundSystem::SoundSystem(void)
|
2020-01-01 21:29:24 +01:00
|
|
|
{
|
2021-09-07 03:56:39 +02:00
|
|
|
int audio_rate = 44100;
|
|
|
|
Uint16 audio_format = AUDIO_S16SYS;
|
|
|
|
int audio_channels = 2;
|
|
|
|
int audio_buffers = 1024;
|
2020-01-01 21:29:24 +01:00
|
|
|
|
2021-09-07 03:56:39 +02:00
|
|
|
if (Mix_OpenAudio(audio_rate, audio_format, audio_channels, audio_buffers) != 0)
|
|
|
|
{
|
|
|
|
vlog_error("Unable to initialize audio: %s", Mix_GetError());
|
|
|
|
SDL_assert(0 && "Unable to initialize audio!");
|
|
|
|
}
|
2020-01-01 21:29:24 +01:00
|
|
|
}
|