WiiFlow_Lite/source/menu/menu_startup.cpp
fix94.1 bdfe989462 -fixed missing background music yet again
@all other devs:
Next time you add a new thing to menu.hpp see if it breaks
background music first, thanks :P
2012-05-19 21:55:58 +00:00

293 lines
9.3 KiB
C++

#include "menu.hpp"
#include <string.h>
#include <gccore.h>
#include "defines.h"
int Startup_curPage;
u8 numPlugins;
// Startup menu
u32 m_startupLblNotice;
u32 m_startupLblPage;
u32 m_startupBtnPageM;
u32 m_startupBtnPageP;
u32 m_startupBtnBack;
u32 m_startupLblTitle;
u32 m_startupBtnSource[20];
u32 m_startupLblUser[4];
STexture m_startupBg;
Config m_startup;
void CMenu::_hideStartup(bool instant)
{
m_btnMgr.hide(m_startupLblTitle, instant);
m_btnMgr.hide(m_startupBtnBack, instant);
m_btnMgr.hide(m_startupLblNotice, instant);
m_btnMgr.hide(m_startupLblPage, instant);
m_btnMgr.hide(m_startupBtnPageM, instant);
m_btnMgr.hide(m_startupBtnPageP, instant);
for (u32 i = 0; i < ARRAY_SIZE(m_startupLblUser); ++i)
{
if (m_startupLblUser[i] != -1u)
m_btnMgr.hide(m_startupLblUser[i], instant);
}
for (int i = 0; i < 20; ++i)
{
m_btnMgr.hide(m_startupBtnSource[i]);
}
}
void CMenu::_showStartup(void)
{
_setBg(m_startupBg, m_startupBg);
for (u32 i = 0; i < ARRAY_SIZE(m_startupLblUser); ++i)
{
if (m_startupLblUser[i] != -1u)
m_btnMgr.show(m_startupLblUser[i]);
}
m_btnMgr.show(m_startupLblTitle);
m_btnMgr.show(m_startupBtnBack);
}
void CMenu::_updateStartupBtns(void)
{
if (numPlugins > 6)
{
m_btnMgr.setText(m_startupLblPage, wfmt(L"%i / 2", Startup_curPage));
m_btnMgr.show(m_startupLblPage);
m_btnMgr.show(m_startupBtnPageM);
m_btnMgr.show(m_startupBtnPageP);
}
for (int i = 0; i < 20; ++i)
m_btnMgr.hide(m_startupBtnSource[i]);
for (int i = 0; i < (numPlugins + 4); ++i)
{
int page = m_startup.getInt("BUTTONS", fmt("button_%i_page", i), (i < 10 ? 1 : 2));
if (page == Startup_curPage)
m_btnMgr.show(m_startupBtnSource[i]);
}
}
void CMenu::_showStartupNotice(void)
{
m_showtimer = 90;
m_btnMgr.show(m_startupLblNotice);
}
void CMenu::_Startup()
{
DIR *pdir;
struct dirent *pent;
if(!m_startup.loaded())
m_startup.load(fmt("%s/%s", m_settingsDir.c_str(), STARTUP_FILENAME));
pdir = opendir(m_pluginsDir.c_str());
Config m_plugin_cfg;
u8 i = 0;
while ((pent = readdir(pdir)) != NULL)
{
if (strcmp(pent->d_name, ".") == 0 || strcmp(pent->d_name, "..") == 0
|| strcasecmp(pent->d_name, "plugins.ini") == 0 || strcasecmp(pent->d_name, "scummvm.ini") == 0)
continue;
if (strcasestr(pent->d_name, ".ini") != NULL)
{
m_plugin_cfg.load(fmt("%s/%s", m_pluginsDir.c_str(), pent->d_name));
if (m_plugin_cfg.loaded())
{
i++;
m_plugin.AddPlugin(m_plugin_cfg);
}
m_plugin_cfg.unload();
}
}
closedir(pdir);
m_plugin.EndAdd();
numPlugins = i;
SetupInput();
bool show_homebrew = !m_cfg.getBool("HOMEBREW", "disable", false);
bool show_channel = !m_cfg.getBool("GENERAL", "hidechannel", false);
bool show_emu = !m_cfg.getBool("EMULATOR", "disable", false);
bool parental_homebrew = m_cfg.getBool("HOMEBREW", "parental", false);
bool pluginSelected = false;
m_showtimer = 0;
Startup_curPage = 1;
_textStartup();
_showStartup();
_updateStartupBtns();
while(true)
{
_mainLoopCommon();
if (BTN_B_PRESSED && m_btnMgr.selected(m_startupBtnSource[1]))
{
if (!show_channel) _showStartupNotice();
else
{
m_current_view = COVERFLOW_CHANNEL;
m_cfg.setBool("NAND", "disable", true);
break;
}
}
if (BTN_HOME_PRESSED || BTN_B_PRESSED)
break;
else if(BTN_UP_PRESSED)
m_btnMgr.up();
else if(BTN_DOWN_PRESSED)
m_btnMgr.down();
if(((BTN_MINUS_PRESSED || BTN_LEFT_PRESSED) && (numPlugins + 4) > 10) || (BTN_A_PRESSED && m_btnMgr.selected(m_startupBtnPageM)))
{
Startup_curPage = Startup_curPage == 1 ? 2 : 1;
if(BTN_LEFT_PRESSED || BTN_MINUS_PRESSED)
m_btnMgr.click(m_startupBtnPageM);
_updateStartupBtns();
}
else if(((BTN_PLUS_PRESSED || BTN_RIGHT_PRESSED) && (numPlugins + 4) > 10) || (BTN_A_PRESSED && m_btnMgr.selected(m_startupBtnPageP)))
{
Startup_curPage = Startup_curPage == 1 ? 2 : 1;
if (BTN_RIGHT_PRESSED || BTN_PLUS_PRESSED)
m_btnMgr.click(m_startupBtnPageP);
_updateStartupBtns();
}
if (BTN_A_PRESSED)
{
if (m_btnMgr.selected(m_startupBtnBack))
break;
if (m_btnMgr.selected(m_startupBtnSource[0]))
{
m_current_view = COVERFLOW_USB;
break;
}
if (m_btnMgr.selected(m_startupBtnSource[2]))
{
if (!m_show_dml) _showStartupNotice();
else
{
m_current_view = COVERFLOW_DML;
break;
}
}
if (m_btnMgr.selected(m_startupBtnSource[1]))
{
if (!show_channel) _showStartupNotice();
else
{
m_current_view = COVERFLOW_CHANNEL;
m_cfg.setBool("NAND", "disable", false);
break;
}
}
if (m_btnMgr.selected(m_startupBtnSource[3]))
{
if (!show_homebrew || (!parental_homebrew && m_locked)) _showStartupNotice();
else
{
m_current_view = COVERFLOW_HOMEBREW;
break;
}
}
for (u8 i = 0; i < numPlugins; ++i)
{
if (m_btnMgr.selected(m_startupBtnSource[i + 4]))
{
if (!show_emu) _showStartupNotice();
else
{
m_current_view = COVERFLOW_EMU;
pluginSelected = true;
for (u8 j = 0; j < numPlugins; ++j)
m_plugin.SetEnablePlugin(m_cfg, j, 1);
m_plugin.SetEnablePlugin(m_cfg, i, 2);
string domain = m_plugin.GetDolName(m_plugin.getPluginMagic(i));
domain.erase(domain.end() - 4, domain.end());
int layout = m_startup.getInt(domain, m_cfg.getString("GENERAL", "theme", "default"), 0);
if (layout != 0)
m_cfg.setInt("EMULATOR", "last_cf_mode", layout);
break;
}
}
}
if (pluginSelected)
{
break;
}
}
if (m_showtimer > 0)
if (--m_showtimer == 0)
m_btnMgr.hide(m_startupLblNotice);
}
_hideStartup(true);
}
void CMenu::_initStartupMenu(CMenu::SThemeData &theme)
{
_addUserLabels(theme, m_startupLblUser, ARRAY_SIZE(m_startupLblUser), "STARTUP");
m_startupBg = _texture(theme.texSet, "STARTUP/BG", "texture", theme.bg);
m_startupLblTitle = _addTitle(theme, "STARTUP/TITLE", theme.titleFont, L"", 20, 30, 600, 60, theme.titleFontColor, FTGX_JUSTIFY_CENTER | FTGX_ALIGN_MIDDLE);
m_startupBtnBack = _addButton(theme, "STARTUP/BACK_BTN", theme.btnFont, L"", 424, 400, 210, 56, theme.btnFontColor);
m_startupLblNotice = _addLabel(theme, "STARTUP/NOTICE", theme.btnFont, L"", 20, 400, 600, 56, theme.btnFontColor, FTGX_JUSTIFY_CENTER | FTGX_ALIGN_TOP);
m_startupLblPage = _addLabel(theme, "STARTUP/PAGE_BTN", theme.btnFont, L"", 62, 400, 98, 56, theme.btnFontColor, FTGX_JUSTIFY_CENTER | FTGX_ALIGN_MIDDLE, theme.btnTexC);
m_startupBtnPageM = _addPicButton(theme, "STARTUP/PAGE_MINUS", theme.btnTexMinus, theme.btnTexMinusS, 10, 400, 52, 56);
m_startupBtnPageP = _addPicButton(theme, "STARTUP/PAGE_PLUS", theme.btnTexPlus, theme.btnTexPlusS, 160, 400, 52, 56);
int row;
int col;
int i = 0;
while (i < 10)
{
row = m_startup.getInt("BUTTONS", fmt("button_%i_row", i), i / 2);
col = m_startup.getInt("BUTTONS", fmt("button_%i_col", i), 0);
m_startupBtnSource[i] = _addButton(theme, fmt("STARTUP/SOURCE_BTN_%i", i), theme.btnFont, L"", (30 + 300 * col), (100 + 58 * row), 280, 56, theme.btnFontColor, true);
row = m_startup.getInt("BUTTONS", fmt("button_%i_row", i + 10), i / 2);
col = m_startup.getInt("BUTTONS", fmt("button_%i_col", i + 10), 0);
m_startupBtnSource[i + 10] = _addButton(theme, fmt("STARTUP/SOURCE_BTN_%i", i + 10), theme.btnFont, L"", (30 + 300 * col), (100 + 58 * row), 280, 56, theme.btnFontColor, true);
i++;
row = m_startup.getInt("BUTTONS", fmt("button_%i_row", i), (i - 1) / 2);
col = m_startup.getInt("BUTTONS", fmt("button_%i_col", i), 1);
m_startupBtnSource[i] = _addButton(theme, fmt("STARTUP/SOURCE_BTN_%i", i), theme.btnFont, L"", (30 + 300 * col), (100 + 58 * row), 280, 56, theme.btnFontColor, true);
row = m_startup.getInt("BUTTONS", fmt("button_%i_row", i + 10), (i - 1) /2);
col = m_startup.getInt("BUTTONS", fmt("button_%i_col", i + 10), 1);
m_startupBtnSource[i + 10] = _addButton(theme, fmt("STARTUP/SOURCE_BTN_%i", i + 10), theme.btnFont, L"", (30 + 300 * col), (100 + 58 * row), 280, 56, theme.btnFontColor, true);
i++;
}
_setHideAnim(m_startupLblTitle, "STARTUP/TITLE", 0, -200, 0.f, 1.f);
_setHideAnim(m_startupLblNotice, "STARTUP/NOTICE", 0, 0, 1.f, 0.f);
_setHideAnim(m_startupLblPage, "STARTUP/PAGE_BTN", 0, 200, 1.f, 0.f);
_setHideAnim(m_startupBtnPageM, "STARTUP/PAGE_MINUS", 0, 200, 1.f, 0.f);
_setHideAnim(m_startupBtnPageP, "STARTUP/PAGE_PLUS", 0, 200, 1.f, 0.f);
_setHideAnim(m_startupBtnBack, "STARTUP/BACK_BTN", 0, 200, 1.f, 0.f);
for(int i = 0; i < 20; ++i)
{
_setHideAnim(m_startupBtnSource[i], fmt("STARTUP/SOURCE_BTN_%i", i), 0, 0, 1.f, 0.f);
}
_hideStartup(true);
}
void CMenu::_textStartup(void)
{
m_btnMgr.setText(m_startupLblTitle, _t("", L"Select Source"));
m_btnMgr.setText(m_startupBtnBack, _t("", L"Exit"));
m_btnMgr.setText(m_startupLblNotice, _t("", L"** DISABLED **"));
m_btnMgr.setText(m_startupBtnSource[0], _t("", L"Wii Games"));
m_btnMgr.setText(m_startupBtnSource[1], _t("", L"VC/WiiWare"));
m_btnMgr.setText(m_startupBtnSource[2], _t("", L"GC Games"));
m_btnMgr.setText(m_startupBtnSource[3], _t("", L"Homebrew"));
if (numPlugins != 0)
{
for(u8 i = 0; i < numPlugins; ++i)
m_btnMgr.setText(m_startupBtnSource[i + 4], m_plugin.GetPluginName(i));
}
}