2016-11-07 16:06:00 +01:00
|
|
|
|
2012-05-11 16:17:39 +02:00
|
|
|
#include "menu.hpp"
|
2012-05-19 23:55:58 +02:00
|
|
|
|
2012-05-25 16:21:43 +02:00
|
|
|
// Source menu
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_sourceLblPage;
|
|
|
|
s16 m_sourceBtnPageM;
|
|
|
|
s16 m_sourceBtnPageP;
|
2013-01-15 14:54:33 +01:00
|
|
|
s16 m_sourceBtnBack;
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_sourceLblTitle;
|
|
|
|
s16 m_sourceBtnSource[12];
|
|
|
|
s16 m_sourceLblUser[4];
|
2012-05-11 16:17:39 +02:00
|
|
|
|
2013-07-23 15:14:51 +02:00
|
|
|
TexData m_sourceBg;
|
|
|
|
|
-updating wiiflow lite to beta 4.3.0
-fixed using categories to hide GC disc 2's. Apparently this has never really worked right for some time or ever.
-fixed deleting the cached cover texture file for plugin games. Delete cover for plugins only deletes the cached texture file (.wfc)
-fixed favorites and adultonly (parental lock) for plugin games. Apparently I may have broke this a few revisions back.
-favorites and adultonly for plugin games now have their own domains in gamecfg1- [FAVORITES_PLUGINS] and [ADULTONLY_PLUGINS]. just makes it more organized.
-only wii, GC, channels are added to [PLAYCOUNT] and [LAST_PLAYED] in gamecfg1.
-now loading gamecfg1 at startup and leaving it loaded till exit. no more loading it and unloading all the time.
-fixed scrolling for game_info synopsis, credits, and help text.
-made source menu buttons wider for wiiflow default. old 80x80, now 100x80. looks better.
-display music info now defaults to off
-screensaver_disabled now defaults to yes
-show GC view button is now on by default no matter what. the only way it is disabled is if you edit wiiflow.ini manually. this is how all the view buttons work.
-removed hiding homebrew button but if wiiflow locked it won't work or in sourceflow it won't show.
-dump_list is now under [GENERAL] instead of each view. Also only works for Wii, GC, and channels.
-sorting only works for Wii, GC, and Channels now. disabled for sourceflow, plugins, homebrew, and combined view.
-now if no games are found a message is shown with the current path so you can see where wiiflow is looking. (except for plugins)
-removed auto create emuNAND for emuNAND view if gamelist is empty. just go to settings>NAND settings if you want to extract or disable it.
-now when no games are found all buttons at bottom are still accessible allowing you to change the view or go to settings and change current partition or path and even extract your NAND to create a EmuNAND. Or go to Home Menu and Install a Wii or GC game.
-removed auto extract NAND to emuNAND when launching a Wii game with EmuNAND save. Now a message is diplayed saying 'emuNAND for saves not found - using real NAND'.
-made the speed at which cover titles fade in/out almost instantly.
-removed update button from Home Menu. online update code is still there but not used and probably won't be used any more as there just isn't a need for it now.
-removed ftp button from Home Menu and all code for the FTP server. I just use WiiXplorer's FTP server. it seems to work better for me.
-disabled keep USB Alive thread for now. i think there's a possibilty it might be the cause of my SD/USB files getting corrupted.
-removed Btn B and - combo to switch partitions. didn't seem useful anymore.
-redid nand emulation settings menu. looks like this now:
pg1
Select EmuNAND
EmuNAND Enulation
Select SaveNAND
SaveNAND Emulation
pg2
Extract Saves All
Missing
Extract NAND
Select Saves Partition
-no longer blocking Select Plugin menu and View icons when using source menu combined view
-now Select Plugins Menu is like switching to plugin view but you get to choose the plugins first
-now [PLUGIN] partition= is the default partition for all plugins. to change individual plugins add 'romPartition=x' to the plugin ini. x is the partition number 0 thru 8 with SD being 0. this is how my usbloadergx plugin mod works.
2016-10-05 01:44:13 +02:00
|
|
|
string source;
|
2013-09-21 18:33:16 +02:00
|
|
|
bool exitSource = false;
|
2020-07-17 22:23:42 +02:00
|
|
|
static u8 i, j;
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
int curPage;
|
|
|
|
int numPages;
|
2020-08-25 00:58:09 +02:00
|
|
|
vector<u8> nonHiddenSources;
|
2013-07-23 15:14:51 +02:00
|
|
|
vector<string> magicNums;
|
2019-10-17 01:22:40 +02:00
|
|
|
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
char btn_selected[16];
|
|
|
|
char current_btn[16];
|
2018-10-01 23:01:43 +02:00
|
|
|
int curflow = 1;
|
|
|
|
bool sm_tier = false;
|
2019-01-09 13:28:59 +01:00
|
|
|
int channels_type;
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
|
2020-02-02 21:25:05 +01:00
|
|
|
static inline int loopNum(int i, int s)
|
|
|
|
{
|
|
|
|
return (i + s) % s;
|
|
|
|
}
|
|
|
|
|
2019-10-21 20:25:35 +02:00
|
|
|
/* this is what happens when a sourceflow cover is clicked on */
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
void CMenu::_sourceFlow()
|
|
|
|
{
|
2019-10-17 01:22:40 +02:00
|
|
|
string numbers;
|
|
|
|
string trs;
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
const dir_discHdr *hdr = CoverFlow.getHdr();
|
2019-10-17 01:22:40 +02:00
|
|
|
|
2022-03-23 15:50:10 +01:00
|
|
|
// save source menu button number for centering coverflow on that cover when we come back to sourceflow.
|
|
|
|
// we use a vector because of the tiers
|
|
|
|
sm_numbers[sm_numbers.size() - 1] = std::to_string(hdr->settings[0]);// hdr->settings[0] is the number of the source menu button.
|
|
|
|
// create string of numbers to save in wiiflow_lite.ini.
|
2019-10-17 01:22:40 +02:00
|
|
|
numbers = sm_numbers[0];
|
2022-06-15 00:54:29 +02:00
|
|
|
for(i = 1; i < sm_numbers.size(); i++)
|
2019-10-17 01:22:40 +02:00
|
|
|
numbers.append(',' + sm_numbers[i]);
|
|
|
|
m_cfg.setString(SOURCEFLOW_DOMAIN, "numbers", numbers);
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
|
|
|
|
memset(btn_selected, 0, 16);
|
|
|
|
strncpy(btn_selected, fmt("BUTTON_%i", hdr->settings[0]), 15);
|
|
|
|
source = m_source.getString(btn_selected, "source", "");
|
2016-12-01 01:05:39 +01:00
|
|
|
|
|
|
|
if(source == "dml")
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
m_current_view = COVERFLOW_GAMECUBE;
|
|
|
|
else if(source == "emunand")
|
|
|
|
{
|
2019-01-09 13:28:59 +01:00
|
|
|
m_cfg.setInt(CHANNEL_DOMAIN, "channels_type", CHANNELS_EMU);
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
m_current_view = COVERFLOW_CHANNEL;
|
|
|
|
}
|
|
|
|
else if(source == "realnand")
|
|
|
|
{
|
2019-01-09 13:28:59 +01:00
|
|
|
m_cfg.setInt(CHANNEL_DOMAIN, "channels_type", CHANNELS_REAL);
|
|
|
|
m_current_view = COVERFLOW_CHANNEL;
|
|
|
|
}
|
|
|
|
else if(source == "bothnand")
|
|
|
|
{
|
|
|
|
m_cfg.setInt(CHANNEL_DOMAIN, "channels_type", CHANNELS_BOTH);
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
m_current_view = COVERFLOW_CHANNEL;
|
|
|
|
}
|
|
|
|
else if(source == "homebrew")
|
2019-03-04 21:29:46 +01:00
|
|
|
m_current_view = COVERFLOW_HOMEBREW;
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
else if(source == "plugin")
|
|
|
|
{
|
|
|
|
magicNums.clear();
|
|
|
|
magicNums = m_source.getStrings(btn_selected, "magic", ',');
|
2018-05-17 01:33:56 +02:00
|
|
|
if(magicNums.size() > 0)
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
{
|
2020-07-17 22:23:42 +02:00
|
|
|
for(u8 pos = 0; m_plugin.PluginExist(pos); pos++)
|
|
|
|
m_plugin.SetEnablePlugin(pos, 1); // force disable all
|
|
|
|
enabledPluginsCount = 0;
|
|
|
|
string enabledMagics;
|
|
|
|
for(i = 0; i < magicNums.size(); i++)
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
{
|
2020-07-17 22:23:42 +02:00
|
|
|
u8 pos = m_plugin.GetPluginPosition(strtoul(magicNums[i].c_str(), NULL, 16));
|
2022-03-23 15:50:10 +01:00
|
|
|
if(pos < 255)// if pos == 255 then it doesn't exist
|
2020-07-17 22:23:42 +02:00
|
|
|
{
|
|
|
|
enabledPluginsCount++;
|
|
|
|
m_plugin.SetEnablePlugin(pos, 2);
|
2020-09-01 01:23:52 +02:00
|
|
|
if(enabledPluginsCount == 1)
|
|
|
|
enabledMagics = magicNums[i];
|
2020-07-17 22:23:42 +02:00
|
|
|
else
|
|
|
|
enabledMagics.append(',' + magicNums[i]);
|
|
|
|
}
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
}
|
2020-07-17 22:23:42 +02:00
|
|
|
m_cfg.setString(PLUGIN_DOMAIN, "enabled_plugins", enabledMagics);
|
|
|
|
m_current_view = COVERFLOW_PLUGIN;
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
}
|
|
|
|
}
|
2018-09-26 19:48:54 +02:00
|
|
|
else if(source =="new_source")
|
|
|
|
{
|
2018-10-02 01:59:13 +02:00
|
|
|
string fn = m_source.getString(btn_selected, "magic", "");
|
|
|
|
if(fsop_FileExist(fmt("%s/%s", m_sourceDir.c_str(), fn.c_str())))
|
2018-09-26 19:48:54 +02:00
|
|
|
{
|
2018-10-02 01:59:13 +02:00
|
|
|
if(fn == SOURCE_FILENAME)
|
2019-04-10 13:16:32 +02:00
|
|
|
{
|
2018-10-01 23:01:43 +02:00
|
|
|
sm_tier = false;
|
2019-04-10 13:16:32 +02:00
|
|
|
tiers.erase(tiers.begin() + 1, tiers.end());
|
2019-10-17 01:22:40 +02:00
|
|
|
sm_numbers.erase(sm_numbers.begin() + 1, sm_numbers.end());
|
2019-04-10 13:16:32 +02:00
|
|
|
}
|
2018-10-01 23:01:43 +02:00
|
|
|
else
|
2019-04-10 13:16:32 +02:00
|
|
|
{
|
2018-10-01 23:01:43 +02:00
|
|
|
sm_tier = true;
|
2019-04-10 13:16:32 +02:00
|
|
|
tiers.push_back(fn);
|
2019-10-17 01:22:40 +02:00
|
|
|
sm_numbers.push_back("0");
|
2019-04-10 13:16:32 +02:00
|
|
|
}
|
2019-10-17 01:22:40 +02:00
|
|
|
trs = tiers[0];
|
|
|
|
numbers = sm_numbers[0];
|
2022-06-15 00:54:29 +02:00
|
|
|
for(i = 1; i < tiers.size(); i++)
|
2019-10-17 01:22:40 +02:00
|
|
|
{
|
|
|
|
trs.append(',' + tiers[i]);
|
|
|
|
numbers.append(',' + sm_numbers[i]);
|
|
|
|
}
|
|
|
|
m_cfg.setString(SOURCEFLOW_DOMAIN, "tiers", trs);
|
|
|
|
m_cfg.setString(SOURCEFLOW_DOMAIN, "numbers", numbers);
|
|
|
|
|
2020-02-02 21:25:05 +01:00
|
|
|
_srcTierLoad(fn);
|
2018-09-26 19:48:54 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 16:59:43 +01:00
|
|
|
else if(source == "back_tier")
|
|
|
|
{
|
|
|
|
_srcTierBack(false);
|
|
|
|
return;
|
|
|
|
}
|
2016-12-01 01:05:39 +01:00
|
|
|
else //(source == "wii")
|
|
|
|
m_current_view = COVERFLOW_WII;
|
|
|
|
m_sourceflow = false;
|
|
|
|
m_cfg.setUInt("GENERAL", "sources", m_current_view);
|
|
|
|
m_source_cnt = 1;
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
_setSrcOptions();
|
|
|
|
}
|
2013-07-23 15:14:51 +02:00
|
|
|
|
2019-10-21 20:25:35 +02:00
|
|
|
/* get sourceflow cover layout number */
|
2018-10-01 23:01:43 +02:00
|
|
|
int CMenu::_getSrcFlow(void)
|
|
|
|
{
|
|
|
|
return curflow;
|
|
|
|
}
|
|
|
|
|
2019-10-21 20:25:35 +02:00
|
|
|
/* set sourceflow cover layout to version number and set it in wiiflow_lite.ini */
|
2018-10-01 23:01:43 +02:00
|
|
|
void CMenu::_setSrcFlow(int version)
|
|
|
|
{
|
|
|
|
curflow = version;
|
2019-04-10 13:16:32 +02:00
|
|
|
string fn = tiers[tiers.size() - 1];
|
|
|
|
fn.replace(fn.find("."), 4, "_flow");
|
|
|
|
m_cfg.setInt(SOURCEFLOW_DOMAIN, fn, curflow);
|
2018-10-01 23:01:43 +02:00
|
|
|
if(!sm_tier)
|
2019-04-10 13:16:32 +02:00
|
|
|
m_cfg.setInt(SOURCEFLOW_DOMAIN, "last_cf_mode", curflow);
|
2022-06-01 00:33:27 +02:00
|
|
|
if(m_source.has("general", "flow"))
|
|
|
|
m_source.setInt("general", "flow", curflow);// saved later when exiting or launching a game.
|
2018-10-01 23:01:43 +02:00
|
|
|
}
|
|
|
|
|
2019-10-21 20:25:35 +02:00
|
|
|
/* return back to previous tier or home base tier */
|
2019-05-19 22:33:21 +02:00
|
|
|
bool CMenu::_srcTierBack(bool home)
|
2018-10-08 20:21:56 +02:00
|
|
|
{
|
|
|
|
if(!sm_tier)
|
2019-05-19 22:33:21 +02:00
|
|
|
return false;
|
2018-10-08 20:21:56 +02:00
|
|
|
string fn;
|
|
|
|
if(home)
|
|
|
|
{
|
|
|
|
fn = tiers[0];
|
|
|
|
tiers.erase(tiers.begin() + 1, tiers.end());
|
2019-10-17 01:22:40 +02:00
|
|
|
sm_numbers.erase(sm_numbers.begin() + 1, sm_numbers.end());
|
2018-10-08 20:21:56 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fn = tiers[tiers.size() - 2];
|
|
|
|
tiers.pop_back();
|
2019-10-17 01:22:40 +02:00
|
|
|
sm_numbers.pop_back();
|
2018-10-08 20:21:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(fn == SOURCE_FILENAME)
|
|
|
|
sm_tier = false;
|
|
|
|
else
|
|
|
|
sm_tier = true;
|
2019-12-23 15:51:43 +01:00
|
|
|
_srcTierLoad(fn);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMenu::_srcTierLoad(string fn)
|
|
|
|
{
|
2018-10-08 20:21:56 +02:00
|
|
|
m_source.unload();
|
|
|
|
m_source.load(fmt("%s/%s", m_sourceDir.c_str(), fn.c_str()));
|
2020-09-01 01:23:52 +02:00
|
|
|
|
2019-04-10 13:16:32 +02:00
|
|
|
fn.replace(fn.find("."), 4, "_flow");
|
2019-11-04 00:49:19 +01:00
|
|
|
if(m_source.has("general", "flow"))
|
|
|
|
curflow = m_source.getInt("general", "flow", 1);
|
|
|
|
else
|
|
|
|
curflow = m_cfg.getInt(SOURCEFLOW_DOMAIN, fn, m_cfg.getInt(SOURCEFLOW_DOMAIN, "last_cf_mode", 1));
|
2020-09-01 01:23:52 +02:00
|
|
|
|
2020-02-02 21:25:05 +01:00
|
|
|
if(m_source.has("general", "box_mode"))
|
|
|
|
m_cfg.setBool(SOURCEFLOW_DOMAIN, "box_mode", m_source.getBool("general", "box_mode", true));
|
|
|
|
if(m_source.has("general", "smallbox"))
|
|
|
|
m_cfg.setBool(SOURCEFLOW_DOMAIN, "smallbox", m_source.getBool("general", "smallbox", false));
|
2020-09-01 01:23:52 +02:00
|
|
|
|
2020-02-02 21:25:05 +01:00
|
|
|
SF_cacheCovers = true;
|
2020-09-01 01:23:52 +02:00
|
|
|
|
2018-10-08 20:21:56 +02:00
|
|
|
/* get max source button # */
|
|
|
|
m_max_source_btn = 0;
|
|
|
|
const char *srcDomain = m_source.firstDomain().c_str();
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
if(strlen(srcDomain) < 2)
|
|
|
|
break;
|
|
|
|
if(strrchr(srcDomain, '_') != NULL)
|
|
|
|
{
|
|
|
|
int srcBtnNumber = atoi(strrchr(srcDomain, '_') + 1);
|
|
|
|
if(srcBtnNumber > m_max_source_btn)
|
|
|
|
m_max_source_btn = srcBtnNumber;
|
|
|
|
}
|
|
|
|
srcDomain = m_source.nextDomain().c_str();
|
|
|
|
}
|
2020-09-01 01:23:52 +02:00
|
|
|
|
2019-12-02 20:43:19 +01:00
|
|
|
if(!m_sourceflow)
|
2019-10-17 01:22:40 +02:00
|
|
|
{
|
2020-08-25 00:58:09 +02:00
|
|
|
nonHiddenSources.clear();
|
|
|
|
for(i = 0; i <= m_max_source_btn; i++)
|
|
|
|
{
|
|
|
|
if(!m_source.getBool(sfmt("BUTTON_%i", i), "hidden", false))
|
|
|
|
nonHiddenSources.push_back(i);
|
|
|
|
}
|
|
|
|
u8 num = stoi(sm_numbers[sm_numbers.size() - 1]);
|
|
|
|
curPage = 1;
|
|
|
|
for(i = 0; i < nonHiddenSources.size(); i++)
|
|
|
|
{
|
|
|
|
if(nonHiddenSources[i] == num)
|
|
|
|
{
|
|
|
|
curPage = i / 12 + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-09-25 13:19:03 +02:00
|
|
|
numPages = ((nonHiddenSources.size() - 1) / 12) + 1;
|
2019-10-17 01:22:40 +02:00
|
|
|
}
|
2019-12-23 15:51:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CMenu::_restoreSrcTiers()
|
|
|
|
{
|
|
|
|
m_cfg.setString(SOURCEFLOW_DOMAIN, "numbers", sm_numbers_backup);// restore if no source chosen
|
|
|
|
m_cfg.setString(SOURCEFLOW_DOMAIN, "tiers", sm_tiers_backup);
|
|
|
|
sm_numbers.clear();
|
|
|
|
tiers.clear();
|
|
|
|
sm_numbers = m_cfg.getStrings(SOURCEFLOW_DOMAIN, "numbers");
|
|
|
|
tiers = m_cfg.getStrings(SOURCEFLOW_DOMAIN, "tiers");
|
|
|
|
sm_tier = false;
|
|
|
|
if(tiers.size() > 1)
|
|
|
|
sm_tier = true;
|
|
|
|
_srcTierLoad(tiers[tiers.size() - 1]);
|
2018-10-13 00:16:52 +02:00
|
|
|
}
|
|
|
|
|
2020-02-02 21:25:05 +01:00
|
|
|
/* get custom sourceflow background image if available */
|
|
|
|
void CMenu::_getSFlowBgTex(void)
|
2018-10-13 00:16:52 +02:00
|
|
|
{
|
2020-02-02 21:25:05 +01:00
|
|
|
curCustBg = loopNum(curCustBg + 1, 2);
|
2018-10-13 00:16:52 +02:00
|
|
|
string fn = m_source.getString("general", "background", "");
|
|
|
|
if(fn.length() > 0)
|
|
|
|
{
|
2019-11-24 00:54:38 +01:00
|
|
|
if(TexHandle.fromImageFile(m_mainCustomBg[curCustBg], fmt("%s/backgrounds/%s/%s", m_sourceDir.c_str(), m_themeName.c_str(), fn.c_str())) != TE_OK)
|
2019-02-04 19:08:18 +01:00
|
|
|
{
|
2019-11-24 00:54:38 +01:00
|
|
|
if(TexHandle.fromImageFile(m_mainCustomBg[curCustBg], fmt("%s/backgrounds/%s", m_sourceDir.c_str(), fn.c_str())) != TE_OK)
|
2019-02-04 19:08:18 +01:00
|
|
|
{
|
2020-02-02 21:25:05 +01:00
|
|
|
curCustBg = loopNum(curCustBg + 1, 2);//reset it
|
|
|
|
customBg = false;
|
2019-02-04 19:08:18 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2020-02-02 21:25:05 +01:00
|
|
|
customBg = true;
|
2018-10-13 00:16:52 +02:00
|
|
|
}
|
|
|
|
else
|
2020-02-02 21:25:05 +01:00
|
|
|
{
|
|
|
|
curCustBg = loopNum(curCustBg + 1, 2);//reset it
|
|
|
|
customBg = false;
|
|
|
|
}
|
2018-10-08 20:21:56 +02:00
|
|
|
}
|
|
|
|
|
2020-08-25 00:58:09 +02:00
|
|
|
// *******************************************************************************************
|
2019-10-21 20:25:35 +02:00
|
|
|
/* end of sourceflow stuff - start of source menu stuff */
|
2012-05-25 16:21:43 +02:00
|
|
|
void CMenu::_hideSource(bool instant)
|
2012-05-11 16:17:39 +02:00
|
|
|
{
|
2012-05-25 16:21:43 +02:00
|
|
|
m_btnMgr.hide(m_sourceLblTitle, instant);
|
|
|
|
m_btnMgr.hide(m_sourceLblPage, instant);
|
|
|
|
m_btnMgr.hide(m_sourceBtnPageM, instant);
|
|
|
|
m_btnMgr.hide(m_sourceBtnPageP, instant);
|
2016-06-20 23:03:40 +02:00
|
|
|
m_btnMgr.hide(m_sourceBtnBack, instant);
|
2012-06-22 15:09:31 +02:00
|
|
|
|
2013-07-29 23:06:50 +02:00
|
|
|
for(i = 0; i < ARRAY_SIZE(m_sourceLblUser); ++i)
|
2012-09-13 16:54:17 +02:00
|
|
|
if(m_sourceLblUser[i] != -1)
|
2012-05-25 16:21:43 +02:00
|
|
|
m_btnMgr.hide(m_sourceLblUser[i], instant);
|
2012-05-11 16:17:39 +02:00
|
|
|
|
2013-07-29 23:06:50 +02:00
|
|
|
for(i = 0; i < 12; ++i)
|
2012-11-30 21:54:02 +01:00
|
|
|
{
|
2012-08-21 16:30:42 +02:00
|
|
|
m_btnMgr.hide(m_sourceBtnSource[i], instant);
|
2012-11-30 21:54:02 +01:00
|
|
|
m_btnMgr.freeBtnTexture(m_sourceBtnSource[i]);
|
|
|
|
}
|
2012-05-11 16:17:39 +02:00
|
|
|
}
|
|
|
|
|
2012-05-25 16:21:43 +02:00
|
|
|
void CMenu::_showSource(void)
|
2012-05-11 16:17:39 +02:00
|
|
|
{
|
2012-05-25 16:21:43 +02:00
|
|
|
_setBg(m_sourceBg, m_sourceBg);
|
2013-07-29 23:06:50 +02:00
|
|
|
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
for(i = 0; i < ARRAY_SIZE(m_sourceLblUser); ++i)
|
2012-09-13 16:54:17 +02:00
|
|
|
if(m_sourceLblUser[i] != -1)
|
2012-05-25 16:21:43 +02:00
|
|
|
m_btnMgr.show(m_sourceLblUser[i]);
|
2012-05-11 16:17:39 +02:00
|
|
|
|
2012-05-25 16:21:43 +02:00
|
|
|
m_btnMgr.show(m_sourceLblTitle);
|
2013-01-15 14:54:33 +01:00
|
|
|
m_btnMgr.show(m_sourceBtnBack);
|
2012-05-11 16:17:39 +02:00
|
|
|
}
|
|
|
|
|
2012-05-25 16:21:43 +02:00
|
|
|
void CMenu::_updateSourceBtns(void)
|
2012-05-11 16:17:39 +02:00
|
|
|
{
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
if(numPages > 1)
|
2012-05-11 16:17:39 +02:00
|
|
|
{
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
m_btnMgr.setText(m_sourceLblPage, wfmt(L"%i / %i", curPage, numPages));
|
2012-05-25 16:21:43 +02:00
|
|
|
m_btnMgr.show(m_sourceLblPage);
|
|
|
|
m_btnMgr.show(m_sourceBtnPageM);
|
|
|
|
m_btnMgr.show(m_sourceBtnPageP);
|
2012-05-11 16:17:39 +02:00
|
|
|
}
|
2018-09-26 19:48:54 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
m_btnMgr.hide(m_sourceLblPage);
|
|
|
|
m_btnMgr.hide(m_sourceBtnPageM);
|
|
|
|
m_btnMgr.hide(m_sourceBtnPageP);
|
|
|
|
}
|
2012-05-18 18:02:36 +02:00
|
|
|
|
2022-06-15 13:24:56 +02:00
|
|
|
for(i = 0; i < 12; ++i)
|
|
|
|
m_btnMgr.hide(m_sourceBtnSource[i], true);
|
|
|
|
|
2018-09-26 19:48:54 +02:00
|
|
|
j = (curPage - 1) * 12;
|
2020-09-01 01:23:52 +02:00
|
|
|
for(i = 0; i < 12; ++i)
|
2012-08-06 15:48:57 +02:00
|
|
|
{
|
2022-06-15 13:24:56 +02:00
|
|
|
if((i + j) < nonHiddenSources.size())
|
2013-01-15 14:54:33 +01:00
|
|
|
{
|
2018-09-26 19:48:54 +02:00
|
|
|
memset(current_btn, 0, 16);
|
2020-09-01 01:23:52 +02:00
|
|
|
strncpy(current_btn, fmt("BUTTON_%i", nonHiddenSources[i + j]), 15);
|
2018-09-26 19:48:54 +02:00
|
|
|
string btnSource = m_source.getString(current_btn, "source", "");
|
|
|
|
if(btnSource == "")
|
|
|
|
continue;
|
2019-10-21 20:25:35 +02:00
|
|
|
|
2018-09-26 19:48:54 +02:00
|
|
|
char btn_image[255];
|
2019-10-21 20:25:35 +02:00
|
|
|
snprintf(btn_image, sizeof(btn_image), "%s", m_source.getString(current_btn,"image", "").c_str());
|
2018-10-08 13:29:08 +02:00
|
|
|
|
2019-10-21 20:25:35 +02:00
|
|
|
char btn_image_s[255];
|
|
|
|
snprintf(btn_image_s, sizeof(btn_image_s), "%s", m_source.getString(current_btn,"image_s", "").c_str());
|
2018-10-08 13:29:08 +02:00
|
|
|
|
2018-09-26 17:28:01 +02:00
|
|
|
TexData texConsoleImg;
|
|
|
|
TexData texConsoleImgs;
|
2019-07-24 19:35:51 +02:00
|
|
|
if(TexHandle.fromImageFile(texConsoleImg, fmt("%s/%s/%s", m_sourceDir.c_str(), m_themeName.c_str(), btn_image)) != TE_OK)
|
2018-09-26 17:28:01 +02:00
|
|
|
{
|
|
|
|
if(TexHandle.fromImageFile(texConsoleImg, fmt("%s/%s", m_sourceDir.c_str(), btn_image)) != TE_OK)
|
|
|
|
TexHandle.fromImageFile(texConsoleImg, fmt("%s/favoriteson.png", m_imgsDir.c_str()));
|
|
|
|
}
|
2019-10-21 20:25:35 +02:00
|
|
|
if(TexHandle.fromImageFile(texConsoleImgs, fmt("%s/%s/%s", m_sourceDir.c_str(), m_themeName.c_str(), btn_image_s)) != TE_OK)
|
2018-09-26 17:28:01 +02:00
|
|
|
{
|
2019-10-21 20:25:35 +02:00
|
|
|
if(TexHandle.fromImageFile(texConsoleImgs, fmt("%s/%s", m_sourceDir.c_str(), btn_image_s)) != TE_OK)
|
2018-09-26 17:28:01 +02:00
|
|
|
TexHandle.fromImageFile(texConsoleImgs, fmt("%s/favoritesons.png", m_imgsDir.c_str()));
|
|
|
|
}
|
2020-09-01 01:23:52 +02:00
|
|
|
m_btnMgr.setBtnTexture(m_sourceBtnSource[i], texConsoleImg, texConsoleImgs);
|
|
|
|
m_btnMgr.show(m_sourceBtnSource[i]);
|
2012-08-06 15:48:57 +02:00
|
|
|
}
|
|
|
|
}
|
2012-05-11 16:17:39 +02:00
|
|
|
}
|
|
|
|
|
2012-06-21 14:25:47 +02:00
|
|
|
bool CMenu::_Source()
|
2012-05-11 16:17:39 +02:00
|
|
|
{
|
2016-06-20 23:03:40 +02:00
|
|
|
bool newSource = false;
|
2013-09-21 18:33:16 +02:00
|
|
|
exitSource = false;
|
2019-01-09 13:28:59 +01:00
|
|
|
channels_type = m_cfg.getInt(CHANNEL_DOMAIN, "channels_type", CHANNELS_REAL);
|
2019-11-20 19:45:17 +01:00
|
|
|
sm_numbers_backup = m_cfg.getString(SOURCEFLOW_DOMAIN, "numbers");//backup for possible restore later
|
|
|
|
sm_tiers_backup = m_cfg.getString(SOURCEFLOW_DOMAIN, "tiers");
|
2022-06-15 00:54:29 +02:00
|
|
|
u8 selected_button = 0;
|
2013-07-29 23:06:50 +02:00
|
|
|
|
|
|
|
SetupInput();
|
2012-05-25 16:21:43 +02:00
|
|
|
_showSource();
|
2016-04-26 02:43:09 +02:00
|
|
|
_updateSourceBtns();
|
2020-04-29 01:03:24 +02:00
|
|
|
_hideWaitMessage();// needed for source menu on start
|
2012-09-09 20:35:15 +02:00
|
|
|
|
|
|
|
while(!m_exit)
|
2012-05-11 16:17:39 +02:00
|
|
|
{
|
|
|
|
_mainLoopCommon();
|
2020-08-25 00:58:09 +02:00
|
|
|
if(BTN_B_PRESSED)
|
2016-04-26 02:43:09 +02:00
|
|
|
{
|
2020-08-25 00:58:09 +02:00
|
|
|
if(!_srcTierBack(false))
|
2019-11-20 19:45:17 +01:00
|
|
|
{
|
2019-12-23 15:51:43 +01:00
|
|
|
_restoreSrcTiers();
|
2019-10-21 20:25:35 +02:00
|
|
|
break;
|
2019-11-20 19:45:17 +01:00
|
|
|
}
|
2019-10-17 01:22:40 +02:00
|
|
|
else
|
|
|
|
_updateSourceBtns();
|
2016-04-26 02:43:09 +02:00
|
|
|
}
|
2020-08-25 00:58:09 +02:00
|
|
|
else if(BTN_HOME_PRESSED)
|
|
|
|
{
|
|
|
|
_hideSource();
|
|
|
|
_SM_Editor();
|
2020-09-25 13:19:03 +02:00
|
|
|
if(m_refreshGameList)// if romdir changed
|
|
|
|
{
|
|
|
|
m_refreshGameList = false;
|
|
|
|
newSource = true;// in case no source is selected and they return via B button
|
|
|
|
}
|
2020-09-01 01:23:52 +02:00
|
|
|
nonHiddenSources.clear();
|
|
|
|
for(i = 0; i <= m_max_source_btn; i++)
|
|
|
|
{
|
|
|
|
if(!m_source.getBool(sfmt("BUTTON_%i", i), "hidden", false))
|
|
|
|
nonHiddenSources.push_back(i);
|
|
|
|
}
|
|
|
|
u8 num = stoi(sm_numbers[sm_numbers.size() - 1]);
|
|
|
|
curPage = 1;
|
|
|
|
for(i = 0; i < nonHiddenSources.size(); i++)
|
|
|
|
{
|
|
|
|
if(nonHiddenSources[i] == num)
|
|
|
|
{
|
|
|
|
curPage = i / 12 + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-09-25 13:19:03 +02:00
|
|
|
numPages = ((nonHiddenSources.size() - 1) / 12) + 1;
|
2020-08-25 00:58:09 +02:00
|
|
|
_showSource();
|
|
|
|
_updateSourceBtns();
|
|
|
|
}
|
|
|
|
else if(BTN_A_PRESSED && m_btnMgr.selected(m_sourceBtnBack))
|
2019-11-20 19:45:17 +01:00
|
|
|
{
|
2019-12-23 15:51:43 +01:00
|
|
|
_restoreSrcTiers();
|
2012-05-11 16:17:39 +02:00
|
|
|
break;
|
2019-11-20 19:45:17 +01:00
|
|
|
}
|
2012-05-11 16:17:39 +02:00
|
|
|
else if(BTN_UP_PRESSED)
|
|
|
|
m_btnMgr.up();
|
|
|
|
else if(BTN_DOWN_PRESSED)
|
|
|
|
m_btnMgr.down();
|
2018-10-08 20:21:56 +02:00
|
|
|
else if((BTN_LEFT_PRESSED && numPages > 1) || (BTN_A_PRESSED && m_btnMgr.selected(m_sourceBtnPageM)))
|
2012-05-11 16:17:39 +02:00
|
|
|
{
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
curPage--;
|
|
|
|
if(curPage < 1)
|
|
|
|
curPage = numPages;
|
2013-09-11 20:11:23 +02:00
|
|
|
if(!BTN_A_PRESSED)
|
2012-05-25 16:21:43 +02:00
|
|
|
m_btnMgr.click(m_sourceBtnPageM);
|
|
|
|
_updateSourceBtns();
|
2012-05-11 16:17:39 +02:00
|
|
|
}
|
2018-10-08 20:21:56 +02:00
|
|
|
else if((BTN_RIGHT_PRESSED && numPages > 1) || (BTN_A_PRESSED && m_btnMgr.selected(m_sourceBtnPageP)))
|
2012-05-11 16:17:39 +02:00
|
|
|
{
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
curPage++;
|
|
|
|
if(curPage > numPages)
|
|
|
|
curPage = 1;
|
|
|
|
if(!BTN_A_PRESSED)
|
2012-05-25 16:21:43 +02:00
|
|
|
m_btnMgr.click(m_sourceBtnPageP);
|
|
|
|
_updateSourceBtns();
|
2012-05-11 16:17:39 +02:00
|
|
|
}
|
2016-06-20 23:03:40 +02:00
|
|
|
else if(BTN_A_PRESSED)
|
2013-07-29 23:06:50 +02:00
|
|
|
{
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
j = (curPage - 1) * 12;
|
2013-07-29 23:06:50 +02:00
|
|
|
for(i = 0; i < 12; ++i)
|
2012-05-18 18:02:36 +02:00
|
|
|
{
|
2012-06-21 14:25:47 +02:00
|
|
|
if(m_btnMgr.selected(m_sourceBtnSource[i]))
|
2012-05-11 16:17:39 +02:00
|
|
|
{
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
memset(btn_selected, 0, 16);
|
2022-06-15 00:54:29 +02:00
|
|
|
selected_button = nonHiddenSources[i + j];
|
|
|
|
strncpy(btn_selected, fmt("BUTTON_%i", selected_button), 15);
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
source = m_source.getString(btn_selected, "source", "");
|
2016-06-20 23:03:40 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-10-21 20:25:35 +02:00
|
|
|
if(i < 12)
|
2016-06-20 23:03:40 +02:00
|
|
|
{
|
|
|
|
exitSource = true;
|
|
|
|
m_catStartPage = 1;
|
|
|
|
if(source == "dml")
|
|
|
|
{
|
2016-11-07 16:06:00 +01:00
|
|
|
m_current_view = COVERFLOW_GAMECUBE;
|
|
|
|
_setSrcOptions();
|
2016-06-20 23:03:40 +02:00
|
|
|
}
|
2019-01-09 13:28:59 +01:00
|
|
|
else if(source == "emunand" || source == "realnand" || source == "bothnand")
|
2016-06-20 23:03:40 +02:00
|
|
|
{
|
2019-01-09 13:28:59 +01:00
|
|
|
if(source == "emunand")
|
|
|
|
channels_type = CHANNELS_EMU;
|
|
|
|
else if(source == "realnand")
|
|
|
|
channels_type = CHANNELS_REAL;
|
|
|
|
else if(source == "bothnand")
|
|
|
|
channels_type = CHANNELS_BOTH;
|
2016-11-07 16:06:00 +01:00
|
|
|
m_current_view = COVERFLOW_CHANNEL;
|
|
|
|
_setSrcOptions();
|
2016-06-20 23:03:40 +02:00
|
|
|
}
|
|
|
|
else if(source == "homebrew")
|
|
|
|
{
|
2019-03-04 21:29:46 +01:00
|
|
|
m_current_view = COVERFLOW_HOMEBREW;
|
|
|
|
_setSrcOptions();
|
2016-06-20 23:03:40 +02:00
|
|
|
}
|
|
|
|
else if(source == "plugin")
|
|
|
|
{
|
2016-11-07 16:06:00 +01:00
|
|
|
magicNums.clear();
|
|
|
|
magicNums = m_source.getStrings(btn_selected, "magic", ',');
|
|
|
|
if(magicNums.size() > 0)
|
2016-06-20 23:03:40 +02:00
|
|
|
{
|
2020-07-17 22:23:42 +02:00
|
|
|
for(u8 pos = 0; m_plugin.PluginExist(pos); pos++)
|
|
|
|
m_plugin.SetEnablePlugin(pos, 1); // force disable all
|
|
|
|
enabledPluginsCount = 0;
|
|
|
|
string enabledMagics;
|
|
|
|
for(i = 0; i < magicNums.size(); i++)
|
2013-09-04 22:58:22 +02:00
|
|
|
{
|
2020-07-17 22:23:42 +02:00
|
|
|
u8 pos = m_plugin.GetPluginPosition(strtoul(magicNums[i].c_str(), NULL, 16));
|
|
|
|
if(pos < 255)
|
|
|
|
{
|
|
|
|
enabledPluginsCount++;
|
|
|
|
m_plugin.SetEnablePlugin(pos, 2);
|
2020-09-01 01:23:52 +02:00
|
|
|
if(enabledPluginsCount == 1)
|
|
|
|
enabledMagics = magicNums[i];
|
2020-07-17 22:23:42 +02:00
|
|
|
else
|
|
|
|
enabledMagics.append(',' + magicNums[i]);
|
|
|
|
}
|
2013-09-04 22:58:22 +02:00
|
|
|
}
|
2020-07-17 22:23:42 +02:00
|
|
|
m_cfg.setString(PLUGIN_DOMAIN, "enabled_plugins", enabledMagics);
|
|
|
|
m_current_view = COVERFLOW_PLUGIN;
|
|
|
|
_setSrcOptions();
|
2016-06-20 23:03:40 +02:00
|
|
|
}
|
|
|
|
}
|
2018-09-26 19:48:54 +02:00
|
|
|
else if(source =="new_source")
|
|
|
|
{
|
2018-10-02 01:59:13 +02:00
|
|
|
string fn = m_source.getString(btn_selected, "magic", "");
|
|
|
|
if(fsop_FileExist(fmt("%s/%s", m_sourceDir.c_str(), fn.c_str())))
|
2018-09-26 19:48:54 +02:00
|
|
|
{
|
2018-10-02 01:59:13 +02:00
|
|
|
if(fn == SOURCE_FILENAME)
|
2019-10-17 01:22:40 +02:00
|
|
|
{
|
2018-10-01 23:01:43 +02:00
|
|
|
sm_tier = false;
|
2019-10-17 01:22:40 +02:00
|
|
|
tiers.erase(tiers.begin() + 1, tiers.end());
|
|
|
|
sm_numbers.erase(sm_numbers.begin() + 1, sm_numbers.end());
|
|
|
|
}
|
2018-10-01 23:01:43 +02:00
|
|
|
else
|
2019-10-17 01:22:40 +02:00
|
|
|
{
|
2018-10-01 23:01:43 +02:00
|
|
|
sm_tier = true;
|
2019-10-17 01:22:40 +02:00
|
|
|
tiers.push_back(fn);
|
|
|
|
sm_numbers.push_back("0");
|
|
|
|
}
|
|
|
|
string trs = tiers[0];
|
|
|
|
string numbers = sm_numbers[0];
|
2022-06-15 00:54:29 +02:00
|
|
|
for(i = 1; i < tiers.size(); i++)
|
2019-10-17 01:22:40 +02:00
|
|
|
{
|
|
|
|
trs.append(',' + tiers[i]);
|
|
|
|
numbers.append(',' + sm_numbers[i]);
|
|
|
|
}
|
|
|
|
m_cfg.setString(SOURCEFLOW_DOMAIN, "tiers", trs);
|
|
|
|
m_cfg.setString(SOURCEFLOW_DOMAIN, "numbers", numbers);
|
|
|
|
|
2018-09-26 19:48:54 +02:00
|
|
|
m_source.unload();
|
2018-10-02 01:59:13 +02:00
|
|
|
m_source.load(fmt("%s/%s", m_sourceDir.c_str(), fn.c_str()));
|
2019-04-10 13:16:32 +02:00
|
|
|
fn.replace(fn.find("."), 4, "_flow");
|
|
|
|
curflow = m_cfg.getInt(SOURCEFLOW_DOMAIN, fn, m_cfg.getInt(SOURCEFLOW_DOMAIN, "last_cf_mode", 1));
|
2018-09-26 19:48:54 +02:00
|
|
|
exitSource = false;
|
|
|
|
/* get max source button # */
|
|
|
|
m_max_source_btn = 0;
|
|
|
|
const char *srcDomain = m_source.firstDomain().c_str();
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
if(strlen(srcDomain) < 2)
|
|
|
|
break;
|
|
|
|
if(strrchr(srcDomain, '_') != NULL)
|
|
|
|
{
|
|
|
|
int srcBtnNumber = atoi(strrchr(srcDomain, '_') + 1);
|
|
|
|
if(srcBtnNumber > m_max_source_btn)
|
|
|
|
m_max_source_btn = srcBtnNumber;
|
|
|
|
}
|
|
|
|
srcDomain = m_source.nextDomain().c_str();
|
|
|
|
}
|
2020-09-01 01:23:52 +02:00
|
|
|
nonHiddenSources.clear();
|
|
|
|
for(i = 0; i <= m_max_source_btn; i++)
|
|
|
|
{
|
|
|
|
if(!m_source.getBool(sfmt("BUTTON_%i", i), "hidden", false))
|
|
|
|
nonHiddenSources.push_back(i);
|
|
|
|
}
|
|
|
|
u8 num = stoi(sm_numbers[sm_numbers.size() - 1]);
|
|
|
|
curPage = 1;
|
|
|
|
for(i = 0; i < nonHiddenSources.size(); i++)
|
|
|
|
{
|
|
|
|
if(nonHiddenSources[i] == num)
|
|
|
|
{
|
|
|
|
curPage = i / 12 + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
numPages = (nonHiddenSources.size() / 12) + 1;
|
2019-10-21 20:25:35 +02:00
|
|
|
_updateSourceBtns();
|
2018-09-26 19:48:54 +02:00
|
|
|
}
|
|
|
|
}
|
2019-11-11 16:59:43 +01:00
|
|
|
else if(source == "back_tier")
|
|
|
|
{
|
|
|
|
exitSource = false;
|
|
|
|
_srcTierBack(false);
|
|
|
|
_updateSourceBtns();
|
|
|
|
}
|
2016-06-20 23:03:40 +02:00
|
|
|
else //if(source == "wii") or source is invalid or empty default to wii
|
|
|
|
{
|
|
|
|
m_current_view = COVERFLOW_WII;
|
|
|
|
_setSrcOptions();
|
|
|
|
}
|
|
|
|
}
|
2013-01-15 14:54:33 +01:00
|
|
|
}
|
2019-12-23 15:51:43 +01:00
|
|
|
if(exitSource)// a new source has been chosen
|
2013-01-15 14:54:33 +01:00
|
|
|
{
|
2019-12-23 15:51:43 +01:00
|
|
|
// save source number for return
|
2022-06-15 00:54:29 +02:00
|
|
|
sm_numbers[sm_numbers.size() - 1] = std::to_string(selected_button);
|
2019-12-23 15:51:43 +01:00
|
|
|
string numbers = sm_numbers[0];
|
2022-06-15 00:54:29 +02:00
|
|
|
for(i = 1; i < sm_numbers.size(); i++)
|
2019-12-23 15:51:43 +01:00
|
|
|
numbers.append(',' + sm_numbers[i]);
|
|
|
|
m_cfg.setString(SOURCEFLOW_DOMAIN, "numbers", numbers);
|
2016-12-01 01:05:39 +01:00
|
|
|
m_cfg.setUInt("GENERAL", "sources", m_current_view);
|
|
|
|
m_source_cnt = 1;
|
2016-06-20 23:03:40 +02:00
|
|
|
newSource = true;
|
2013-07-29 23:06:50 +02:00
|
|
|
break;
|
|
|
|
}
|
2012-05-11 16:17:39 +02:00
|
|
|
}
|
2019-01-09 13:28:59 +01:00
|
|
|
m_cfg.setInt(CHANNEL_DOMAIN, "channels_type", channels_type);
|
2012-05-25 16:21:43 +02:00
|
|
|
_hideSource(true);
|
2016-06-20 23:03:40 +02:00
|
|
|
return newSource;
|
2013-07-29 23:06:50 +02:00
|
|
|
}
|
|
|
|
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
void CMenu::_setSrcOptions(void)
|
|
|
|
{
|
|
|
|
m_catStartPage = m_source.getInt(btn_selected, "cat_page", 1);
|
2016-11-07 16:06:00 +01:00
|
|
|
u8 category = m_source.getInt(btn_selected, "category", 0);
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
if(category > 0)
|
|
|
|
{
|
|
|
|
m_cat.remove("GENERAL", "selected_categories");
|
|
|
|
m_cat.remove("GENERAL", "required_categories");
|
|
|
|
char cCh = static_cast<char>(category + 32);
|
|
|
|
string newSelCats(1, cCh);
|
|
|
|
m_cat.setString("GENERAL", "selected_categories", newSelCats);
|
|
|
|
m_clearCats = false;
|
|
|
|
}
|
|
|
|
/* autoboot */
|
2019-04-08 19:54:26 +02:00
|
|
|
char autoboot[64];
|
|
|
|
autoboot[63] = '\0';
|
|
|
|
strncpy(autoboot, m_source.getString(btn_selected, "autoboot", "").c_str(), sizeof(autoboot) - 1);
|
|
|
|
if(autoboot[0] != '\0')
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
{
|
|
|
|
m_source_autoboot = true;
|
|
|
|
memset(&m_autoboot_hdr, 0, sizeof(dir_discHdr));
|
|
|
|
if(source == "emunand" || source == "realnand")
|
|
|
|
{
|
2018-05-01 00:31:29 +02:00
|
|
|
m_autoboot_hdr.type = TYPE_CHANNEL;
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
memcpy(m_autoboot_hdr.id, autoboot, 4);
|
|
|
|
}
|
|
|
|
else if(source == "wii")
|
|
|
|
{
|
|
|
|
m_autoboot_hdr.type = TYPE_WII_GAME;
|
|
|
|
memcpy(m_autoboot_hdr.id, autoboot, 6);
|
|
|
|
}
|
|
|
|
else if(source == "dml")
|
|
|
|
{
|
|
|
|
m_autoboot_hdr.type = TYPE_GC_GAME;
|
|
|
|
memcpy(m_autoboot_hdr.id, autoboot, 6);
|
|
|
|
}
|
|
|
|
else if(source == "homebrew")
|
|
|
|
{
|
|
|
|
m_autoboot_hdr.type = TYPE_HOMEBREW;
|
|
|
|
mbstowcs(m_autoboot_hdr.title, autoboot, 63);
|
|
|
|
}
|
|
|
|
else if(source == "plugin")
|
|
|
|
{
|
|
|
|
m_autoboot_hdr.type = TYPE_PLUGIN;
|
|
|
|
mbstowcs(m_autoboot_hdr.title, autoboot, 63);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
m_source_autoboot = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-03 20:16:03 +01:00
|
|
|
void CMenu::_initSourceMenu()
|
2012-05-11 16:17:39 +02:00
|
|
|
{
|
2016-04-26 02:43:09 +02:00
|
|
|
m_use_source = false;
|
2018-10-01 23:01:43 +02:00
|
|
|
|
2019-10-17 01:22:40 +02:00
|
|
|
if(!fsop_FileExist(fmt("%s/%s/%s", m_sourceDir.c_str(), m_themeName.c_str(), SOURCE_FILENAME)))// check for source_menu/theme/source_menu.ini
|
2016-04-26 02:43:09 +02:00
|
|
|
{
|
2019-10-17 01:22:40 +02:00
|
|
|
if(!fsop_FileExist(fmt("%s/%s", m_sourceDir.c_str(), SOURCE_FILENAME)))// check for source_menu/source_menu.ini
|
2018-10-15 19:23:02 +02:00
|
|
|
return;// no source_menu.ini so we dont init nor use source menu, just return.
|
2016-04-26 02:43:09 +02:00
|
|
|
}
|
2018-10-01 23:01:43 +02:00
|
|
|
else // if source_menu/theme/source_menu.ini found then change m_sourceDir to source_menu/theme/
|
2019-07-24 19:35:51 +02:00
|
|
|
m_sourceDir = fmt("%s/%s", m_sourceDir.c_str(), m_themeName.c_str());
|
2016-04-26 02:43:09 +02:00
|
|
|
|
2018-10-01 23:01:43 +02:00
|
|
|
/* let wiiflow know source_menu.ini found and we will be using it */
|
2016-04-26 02:43:09 +02:00
|
|
|
m_use_source = true;
|
2018-10-01 23:01:43 +02:00
|
|
|
|
2019-11-20 19:45:17 +01:00
|
|
|
/* Source Menu on start reset tiers before buid menus */
|
|
|
|
if(m_cfg.getBool("GENERAL", "source_on_start", false))
|
|
|
|
{
|
|
|
|
m_cfg.remove(SOURCEFLOW_DOMAIN, "tiers");
|
|
|
|
m_cfg.remove(SOURCEFLOW_DOMAIN, "numbers");
|
|
|
|
}
|
|
|
|
|
2019-10-17 01:22:40 +02:00
|
|
|
sm_numbers.clear();
|
|
|
|
tiers.clear();
|
|
|
|
sm_numbers = m_cfg.getStrings(SOURCEFLOW_DOMAIN, "numbers");
|
|
|
|
tiers = m_cfg.getStrings(SOURCEFLOW_DOMAIN, "tiers");
|
|
|
|
if(tiers.size() == 0)
|
|
|
|
{
|
|
|
|
tiers.push_back(SOURCE_FILENAME);
|
|
|
|
sm_numbers.push_back("0");
|
|
|
|
}
|
|
|
|
sm_tier = false;
|
|
|
|
if(tiers.size() > 1)
|
|
|
|
sm_tier = true;
|
|
|
|
|
|
|
|
string trs = tiers[0];
|
|
|
|
string numbers = sm_numbers[0];
|
|
|
|
for(u8 i = 1; i < tiers.size(); i++)
|
|
|
|
{
|
|
|
|
trs.append(',' + tiers[i]);
|
|
|
|
numbers.append(',' + sm_numbers[i]);
|
|
|
|
}
|
|
|
|
m_cfg.setString(SOURCEFLOW_DOMAIN, "tiers", trs);
|
|
|
|
m_cfg.setString(SOURCEFLOW_DOMAIN, "numbers", numbers);
|
|
|
|
|
2019-12-23 15:51:43 +01:00
|
|
|
_srcTierLoad(tiers[tiers.size() - 1]);
|
2018-10-01 23:01:43 +02:00
|
|
|
|
2012-11-03 20:16:03 +01:00
|
|
|
_addUserLabels(m_sourceLblUser, ARRAY_SIZE(m_sourceLblUser), "SOURCE");
|
|
|
|
m_sourceBg = _texture("SOURCE/BG", "texture", theme.bg, false);
|
2018-12-28 01:47:00 +01:00
|
|
|
m_sourceLblTitle = _addLabel("SOURCE/TITLE", theme.titleFont, L"", 0, 10, 640, 60, theme.titleFontColor, FTGX_JUSTIFY_CENTER | FTGX_ALIGN_MIDDLE);
|
2013-11-04 20:46:23 +01:00
|
|
|
m_sourceLblPage = _addLabel("SOURCE/PAGE_BTN", theme.btnFont, L"", 68, 400, 104, 48, theme.btnFontColor, FTGX_JUSTIFY_CENTER | FTGX_ALIGN_MIDDLE, theme.btnTexC);
|
|
|
|
m_sourceBtnPageM = _addPicButton("SOURCE/PAGE_MINUS", theme.btnTexMinus, theme.btnTexMinusS, 20, 400, 48, 48);
|
|
|
|
m_sourceBtnPageP = _addPicButton("SOURCE/PAGE_PLUS", theme.btnTexPlus, theme.btnTexPlusS, 172, 400, 48, 48);
|
|
|
|
m_sourceBtnBack = _addButton("SOURCE/BACK_BTN", theme.btnFont, L"", 420, 400, 200, 48, theme.btnFontColor);
|
2013-09-03 15:48:30 +02:00
|
|
|
|
2012-05-18 18:02:36 +02:00
|
|
|
int row;
|
|
|
|
int col;
|
- PHASE 2 (finally!)
- New Coverflow theme format. no more emuflow, coverflow, brewflow. now we have coverflow, shortflow, sideflow, and smallflow.
- coverflow is the normal coverflow.
- shortflow is automatically used for plugins if all selected plugins require a short CD style cover such as GB, GBC, GBA, and playstation. if there's more let me know and i can add them.
- sideflow is automatically used for plugins if all selected plugins require a cover on its side such as SNES and Nintendo 64.
- smallflow is used if smallbox is set for homebrew and sourceflow.
- no more need for emuflow= with a source btn in the source menu. it is done automatically now using the plugins magic#
- each flow has its own number of modes/layouts. so now coveflow can have 8, smallfow 1, sideflow, 6, and shortflow 4 or whatever you want.
- adjust coverflow works with no problems. just choose the view first before entering the adjust coverflow menu.
- other minor code changes here and there.
- remember themes are now in themes_lite and the coverflow part is seperated and put in the coverflows folder with the same name as the theme or you can use a default coverflow named default.ini for all themes.
2016-05-11 19:58:36 +02:00
|
|
|
for(i = 0; i < 12; ++i)
|
2012-05-11 16:17:39 +02:00
|
|
|
{
|
2012-12-28 15:19:40 +01:00
|
|
|
TexData texConsoleImg;
|
|
|
|
TexData texConsoleImgs;
|
2018-11-05 12:46:35 +01:00
|
|
|
// use favoriteson.png just to initialize the buttons
|
|
|
|
TexHandle.fromImageFile(texConsoleImg, fmt("%s/favoriteson.png", m_imgsDir.c_str()));
|
|
|
|
TexHandle.fromImageFile(texConsoleImgs, fmt("%s/favoritesons.png", m_imgsDir.c_str()));
|
2012-05-25 16:21:43 +02:00
|
|
|
|
2012-08-06 15:48:57 +02:00
|
|
|
row = i / 4;
|
|
|
|
col = i - (row * 4);
|
-updating wiiflow lite to beta 4.3.0
-fixed using categories to hide GC disc 2's. Apparently this has never really worked right for some time or ever.
-fixed deleting the cached cover texture file for plugin games. Delete cover for plugins only deletes the cached texture file (.wfc)
-fixed favorites and adultonly (parental lock) for plugin games. Apparently I may have broke this a few revisions back.
-favorites and adultonly for plugin games now have their own domains in gamecfg1- [FAVORITES_PLUGINS] and [ADULTONLY_PLUGINS]. just makes it more organized.
-only wii, GC, channels are added to [PLAYCOUNT] and [LAST_PLAYED] in gamecfg1.
-now loading gamecfg1 at startup and leaving it loaded till exit. no more loading it and unloading all the time.
-fixed scrolling for game_info synopsis, credits, and help text.
-made source menu buttons wider for wiiflow default. old 80x80, now 100x80. looks better.
-display music info now defaults to off
-screensaver_disabled now defaults to yes
-show GC view button is now on by default no matter what. the only way it is disabled is if you edit wiiflow.ini manually. this is how all the view buttons work.
-removed hiding homebrew button but if wiiflow locked it won't work or in sourceflow it won't show.
-dump_list is now under [GENERAL] instead of each view. Also only works for Wii, GC, and channels.
-sorting only works for Wii, GC, and Channels now. disabled for sourceflow, plugins, homebrew, and combined view.
-now if no games are found a message is shown with the current path so you can see where wiiflow is looking. (except for plugins)
-removed auto create emuNAND for emuNAND view if gamelist is empty. just go to settings>NAND settings if you want to extract or disable it.
-now when no games are found all buttons at bottom are still accessible allowing you to change the view or go to settings and change current partition or path and even extract your NAND to create a EmuNAND. Or go to Home Menu and Install a Wii or GC game.
-removed auto extract NAND to emuNAND when launching a Wii game with EmuNAND save. Now a message is diplayed saying 'emuNAND for saves not found - using real NAND'.
-made the speed at which cover titles fade in/out almost instantly.
-removed update button from Home Menu. online update code is still there but not used and probably won't be used any more as there just isn't a need for it now.
-removed ftp button from Home Menu and all code for the FTP server. I just use WiiXplorer's FTP server. it seems to work better for me.
-disabled keep USB Alive thread for now. i think there's a possibilty it might be the cause of my SD/USB files getting corrupted.
-removed Btn B and - combo to switch partitions. didn't seem useful anymore.
-redid nand emulation settings menu. looks like this now:
pg1
Select EmuNAND
EmuNAND Enulation
Select SaveNAND
SaveNAND Emulation
pg2
Extract Saves All
Missing
Extract NAND
Select Saves Partition
-no longer blocking Select Plugin menu and View icons when using source menu combined view
-now Select Plugins Menu is like switching to plugin view but you get to choose the plugins first
-now [PLUGIN] partition= is the default partition for all plugins. to change individual plugins add 'romPartition=x' to the plugin ini. x is the partition number 0 thru 8 with SD being 0. this is how my usbloadergx plugin mod works.
2016-10-05 01:44:13 +02:00
|
|
|
m_sourceBtnSource[i] = _addPicButton(fmt("SOURCE/SOURCE_BTN_%i", i), texConsoleImg, texConsoleImgs, (100 + 120 * col), (90 + 100 * row), 100, 80);
|
2013-11-04 20:46:23 +01:00
|
|
|
_setHideAnim(m_sourceBtnSource[i], fmt("SOURCE/SOURCE_BTN_%i", i), 0, 0, -2.f, 0.f);
|
2012-05-11 16:17:39 +02:00
|
|
|
}
|
- Categories update.
- now you can have as many categories as you want.
- copied the idea of selected, hidden, and required categories from USB Loader GX. Thanks Cyan. Checkmark = selected, X = Hidden, and + = Required.
- redid categories.ini layout and renamed it categories_v4.ini so you can copy and paste settings from the old one to the new one. Each view (USB,DML,EMU,NAND,HOMEBREW) has it's own numcategories, category names, and category settings. All games are now seperated based on the view. Don't forget to add 1 to numcategories for the show All mode.
- Replaced All checkbox with CLEAR button which clears all checkboxes so no category is selected and all games will be shown.
- Added features to the Game Selected Categories Menu. Now the title is the title of the current game. You can now press plus(+) and minus(-) on wiimote to go to the next or previous games without going back to previous screen making it easier to setup categories for your games.
- note: all changes will not be saved in categories_v4.ini unless you exit wiiflow or launch a game.
2012-08-31 19:51:49 +02:00
|
|
|
_setHideAnim(m_sourceLblTitle, "SOURCE/TITLE", 0, 0, -2.f, 0.f);
|
2013-11-04 20:46:23 +01:00
|
|
|
_setHideAnim(m_sourceLblPage, "SOURCE/PAGE_BTN", 0, 0, 1.f, -1.f);
|
|
|
|
_setHideAnim(m_sourceBtnPageM, "SOURCE/PAGE_MINUS", 0, 0, 1.f, -1.f);
|
|
|
|
_setHideAnim(m_sourceBtnPageP, "SOURCE/PAGE_PLUS", 0, 0, 1.f, -1.f);
|
|
|
|
_setHideAnim(m_sourceBtnBack, "SOURCE/BACK_BTN", 0, 0, 1.f, -1.f);
|
2012-05-18 18:02:36 +02:00
|
|
|
|
2012-05-25 16:21:43 +02:00
|
|
|
_textSource();
|
|
|
|
_hideSource(true);
|
2012-05-11 16:17:39 +02:00
|
|
|
}
|
|
|
|
|
2012-05-25 16:21:43 +02:00
|
|
|
void CMenu::_textSource(void)
|
2012-05-11 16:17:39 +02:00
|
|
|
{
|
2012-06-18 00:12:03 +02:00
|
|
|
m_btnMgr.setText(m_sourceLblTitle, _t("stup1", L"Select Source"));
|
2013-01-15 14:54:33 +01:00
|
|
|
m_btnMgr.setText(m_sourceBtnBack, _t("cfg10", L"Back"));
|
2012-05-11 16:17:39 +02:00
|
|
|
}
|