mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
4a566375e0
-added 'noflash' arg for meta.xml if you don't want the flash screen image to appear. and no i can't make it load a image from a folder. it must be compiled in the code. -added 'sdonly' arg for meta.xml for those of you that have everything on SD and hate the 20 second wait for wiiflow to search for usb devices. thanks einsteinx2! -added meta.xml args support. meaning when a homebrew boot.dol or elf is launched the meta.xml (if exist) will be read for arguments and those args sent when the app is launched. this fixes the issue of custom wait images when changing themes. -added spanish translation file 'spanish.ini'. thanks to ravmn for sending it to me! -other minor changes, mainly remarks added for myself.
182 lines
4.7 KiB
C++
182 lines
4.7 KiB
C++
/****************************************************************************
|
|
* Copyright (C) 2012 FIX94
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
****************************************************************************/
|
|
#include <cstdio>
|
|
#include <algorithm>
|
|
#include "MusicPlayer.hpp"
|
|
#include "SoundHandler.hpp"
|
|
#include "list/ListGenerator.hpp"
|
|
#include "gui/text.hpp"
|
|
#include "gecko/gecko.hpp"
|
|
|
|
#define MUSIC_DEPTH 10
|
|
Musicplayer MusicPlayer;
|
|
|
|
static vector<string> FileNames;
|
|
static vector<string>::const_iterator CurrentFileName;
|
|
|
|
void Musicplayer::Cleanup()
|
|
{
|
|
Stop();
|
|
DisplayTime = 0;
|
|
CurrentPosition = 0;
|
|
MusicChanged = false;
|
|
MusicStopped = true;
|
|
FileNames.clear();
|
|
}
|
|
|
|
static inline void FileNameAdder(char *Path)
|
|
{
|
|
/* No need for more checks */
|
|
FileNames.push_back(Path);
|
|
}
|
|
|
|
void Musicplayer::Init(Config &cfg, const string& musicDir, const string& themeMusicDir)
|
|
{
|
|
Cleanup();
|
|
FadeRate = cfg.getInt("GENERAL", "music_fade_rate", 8);
|
|
Volume = cfg.getInt("GENERAL", "sound_volume_music", 255);
|
|
|
|
SetVolume(0);
|
|
MusicFile.SetVoice(0);
|
|
|
|
vector<string> Types = stringToVector(".mp3|.ogg", '|');
|
|
GetFiles(musicDir.c_str(), Types, FileNameAdder, false, MUSIC_DEPTH);
|
|
GetFiles(themeMusicDir.c_str(), Types, FileNameAdder, false, MUSIC_DEPTH);
|
|
if(cfg.getBool("GENERAL", "randomize_music", true) && FileNames.size() > 0)
|
|
{
|
|
srand(unsigned(time(NULL)));
|
|
random_shuffle(FileNames.begin(), FileNames.end());
|
|
}
|
|
OneSong = (FileNames.size() == 1);
|
|
CurrentFileName = FileNames.begin();
|
|
}
|
|
|
|
void Musicplayer::SetMaxVolume(u8 volume)
|
|
{
|
|
Volume = volume;
|
|
SetVolume(volume);
|
|
}
|
|
|
|
void Musicplayer::SetVolume(u8 volume)
|
|
{
|
|
CurrentVolume = volume;
|
|
MusicFile.SetVolume(CurrentVolume);
|
|
}
|
|
|
|
void Musicplayer::Previous()
|
|
{
|
|
if(FileNames.empty() || PosFromPrevFile())
|
|
return;
|
|
|
|
if(CurrentFileName == FileNames.begin())
|
|
CurrentFileName = FileNames.end();
|
|
--CurrentFileName;
|
|
LoadCurrentFile();
|
|
}
|
|
|
|
void Musicplayer::Next()
|
|
{
|
|
if(FileNames.empty() || PosFromPrevFile())
|
|
return;
|
|
|
|
++CurrentFileName;
|
|
if(CurrentFileName == FileNames.end())
|
|
CurrentFileName = FileNames.begin();
|
|
LoadCurrentFile();
|
|
}
|
|
|
|
bool Musicplayer::PosFromPrevFile()
|
|
{
|
|
if(!CurrentPosition)
|
|
return false;
|
|
|
|
MusicFile.Load((*CurrentFileName).c_str());
|
|
SoundHandle.Decoder(MusicFile.GetVoice())->Seek(CurrentPosition);
|
|
SetVolume(CurrentVolume);
|
|
MusicFile.Play();
|
|
CurrentPosition = 0;
|
|
MusicStopped = false;
|
|
MusicChanged = false;
|
|
return true;
|
|
}
|
|
|
|
void Musicplayer::Stop()
|
|
{
|
|
if(!MusicFile.IsPlaying())
|
|
return;
|
|
MusicFile.Pause();
|
|
CurrentPosition = SoundHandle.Decoder(MusicFile.GetVoice())->Tell();
|
|
MusicFile.FreeMemory();
|
|
MusicStopped = true;
|
|
}
|
|
|
|
void Musicplayer::Tick(bool attenuate)// attenuate means fade to zero volume
|
|
{
|
|
if(FileNames.empty())
|
|
return;
|
|
if(!attenuate && CurrentVolume < Volume)
|
|
SetVolume(CurrentVolume + FadeRate > Volume ? Volume : CurrentVolume + FadeRate);
|
|
else if(attenuate && CurrentVolume > 0)
|
|
SetVolume(CurrentVolume - FadeRate < 0 ? 0 : CurrentVolume - FadeRate);
|
|
if(!attenuate && !MusicFile.IsPlaying())
|
|
Next();
|
|
}
|
|
|
|
void Musicplayer::LoadCurrentFile()
|
|
{
|
|
LoadFile(CurrentFileName->c_str());
|
|
}
|
|
|
|
void Musicplayer::LoadFile(const char *name, bool display_change)
|
|
{
|
|
if(FileNames.empty())
|
|
{
|
|
FileNames.push_back(PLUGIN_DOMAIN);
|
|
CurrentFileName = FileNames.begin();
|
|
}
|
|
else if(FileNames.size() == 1 && strcmp(name, PLUGIN_DOMAIN) == 0)
|
|
{
|
|
MusicFile.FreeMemory();// GuiSound is MusicFile in gui_sound.cpp
|
|
MusicStopped = true;
|
|
return;
|
|
}
|
|
MusicFile.Load(name);
|
|
SetVolume(CurrentVolume);
|
|
MusicFile.Play();
|
|
CurrentPosition = 0;
|
|
MusicStopped = false;
|
|
MusicChanged = display_change;
|
|
}
|
|
|
|
/* For our GUI */
|
|
wstringEx Musicplayer::GetFileName()
|
|
{
|
|
wstringEx CurrentFile;
|
|
string CurrentFileStr((*CurrentFileName).begin()+(*CurrentFileName).find_last_of('/')+1,
|
|
(*CurrentFileName).begin()+(*CurrentFileName).find_last_of('.'));
|
|
CurrentFile.fromUTF8(CurrentFileStr.c_str());
|
|
return CurrentFile;
|
|
}
|
|
|
|
bool Musicplayer::SongChanged()
|
|
{
|
|
if(!MusicChanged)
|
|
return false;
|
|
MusicChanged = false;
|
|
return true;
|
|
}
|