mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-03 18:15:06 +01:00
973d8b2005
*Converted every 4 spaces to a tab to make the source consistent on those
41 lines
786 B
C++
41 lines
786 B
C++
/****************************************************************************
|
|
* SettingsPrompts
|
|
* USB Loader GX 2009
|
|
*
|
|
* Backgroundmusic
|
|
***************************************************************************/
|
|
|
|
#ifndef _BGM_H_
|
|
#define _BGM_H_
|
|
|
|
#include <vector>
|
|
#include "gui_sound.h"
|
|
|
|
enum
|
|
{
|
|
ONCE = 0, LOOP, RANDOM_BGM, DIR_LOOP
|
|
};
|
|
|
|
class GuiBGM: public GuiSound
|
|
{
|
|
public:
|
|
GuiBGM(const u8 *s, int l, int v);
|
|
virtual ~GuiBGM();
|
|
bool Load(const char *path);
|
|
bool LoadStandard();
|
|
bool ParsePath(const char * folderpath);
|
|
bool PlayNext();
|
|
bool PlayPrevious();
|
|
bool PlayRandom();
|
|
void UpdateState();
|
|
protected:
|
|
void AddEntrie(const char * filename);
|
|
void ClearList();
|
|
|
|
int currentPlaying;
|
|
char * currentPath;
|
|
std::vector<char *> PlayList;
|
|
};
|
|
|
|
#endif
|