libgui/include/gui/sounds/SoundHandler.hpp

99 lines
2.6 KiB
C++
Raw Normal View History

2017-10-29 10:28:14 +01:00
/***************************************************************************
* Copyright (C) 2010
* by Dimok
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any
* damages arising from the use of this software.
*
* Permission is granted to anyone to use this software for any
* purpose, including commercial applications, and to alter it and
* redistribute it freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you
* must not claim that you wrote the original software. If you use
* this software in a product, an acknowledgment in the product
* documentation would be appreciated but is not required.
*
* 2. Altered source versions must be plainly marked as such, and
* must not be misrepresented as being the original software.
*
* 3. This notice may not be removed or altered from any source
* distribution.
*
* for WiiXplorer 2010
***************************************************************************/
#ifndef SOUNDHANDLER_H_
#define SOUNDHANDLER_H_
#include <vector>
2019-08-14 23:24:55 +02:00
#include <gui/sounds/SoundDecoder.hpp>
#include <gui/sounds/Voice.h>
2022-02-05 14:28:08 +01:00
#include <gui/system/CThread.h>
2018-06-21 20:44:58 +02:00
#include <sndcore2/voice.h>
2017-10-29 10:28:14 +01:00
2022-02-05 14:28:08 +01:00
#define MAX_DECODERS 16 // can be increased up to 96
2017-10-29 10:28:14 +01:00
2018-06-21 20:44:58 +02:00
class SoundHandler : public CThread {
2017-10-29 10:28:14 +01:00
public:
2020-08-13 12:38:07 +02:00
static SoundHandler *instance() {
2020-08-13 12:58:19 +02:00
if (!handlerInstance) {
2017-10-29 10:28:14 +01:00
handlerInstance = new SoundHandler();
2020-08-13 12:58:19 +02:00
}
2017-10-29 10:28:14 +01:00
return handlerInstance;
}
2018-06-21 20:44:58 +02:00
static void DestroyInstance() {
delete handlerInstance;
handlerInstance = NULL;
}
2017-10-29 10:28:14 +01:00
2020-08-13 12:38:07 +02:00
void AddDecoder(int32_t voice, const char *filepath);
void AddDecoder(int32_t voice, const uint8_t *snd, int32_t len);
2018-06-21 20:44:58 +02:00
void RemoveDecoder(int32_t voice);
2017-10-29 10:28:14 +01:00
2020-08-13 12:38:07 +02:00
SoundDecoder *getDecoder(int32_t i) {
2018-06-21 20:44:58 +02:00
return ((i < 0 || i >= MAX_DECODERS) ? NULL : DecoderList[i]);
};
2020-08-13 12:38:07 +02:00
Voice *getVoice(int32_t i) {
2018-06-21 20:44:58 +02:00
return ((i < 0 || i >= MAX_DECODERS) ? NULL : voiceList[i]);
};
2017-10-29 10:28:14 +01:00
2018-06-21 20:44:58 +02:00
void ThreadSignal() {
resumeThread();
};
2020-08-13 12:38:07 +02:00
2018-06-21 20:44:58 +02:00
bool IsDecoding() {
return Decoding;
};
2022-02-05 14:28:08 +01:00
2017-10-29 10:28:14 +01:00
protected:
2018-06-21 20:44:58 +02:00
SoundHandler();
2020-08-13 12:38:07 +02:00
2018-06-21 20:44:58 +02:00
~SoundHandler();
2017-10-29 10:28:14 +01:00
static void axFrameCallback(void);
void executeThread(void);
2020-08-13 12:38:07 +02:00
2018-06-21 20:44:58 +02:00
void ClearDecoderList();
2017-10-29 10:28:14 +01:00
2020-08-13 12:38:07 +02:00
SoundDecoder *GetSoundDecoder(const char *filepath);
SoundDecoder *GetSoundDecoder(const uint8_t *sound, int32_t length);
2017-10-29 10:28:14 +01:00
2020-08-13 12:38:07 +02:00
static SoundHandler *handlerInstance;
2017-10-29 10:28:14 +01:00
2018-06-21 20:44:58 +02:00
bool Decoding;
bool ExitRequested;
2017-10-29 10:28:14 +01:00
2020-08-13 12:38:07 +02:00
Voice *voiceList[MAX_DECODERS];
SoundDecoder *DecoderList[MAX_DECODERS];
2017-10-29 10:28:14 +01:00
};
#endif