2012-08-05 15:48:15 +02:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2012-11-03 20:16:03 +01:00
|
|
|
#include <algorithm>
|
2012-01-21 21:57:41 +01:00
|
|
|
#include "menu.hpp"
|
2012-08-05 15:48:15 +02:00
|
|
|
#include "loader/wbfs.h"
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
static const int g_curPage = 2;
|
|
|
|
|
|
|
|
template <class T> static inline T loopNum(T i, T s)
|
|
|
|
{
|
|
|
|
return (i + s) % s;
|
|
|
|
}
|
|
|
|
|
2013-08-08 20:21:11 +02:00
|
|
|
s16 m_configAdvBtnLanguage;
|
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
void CMenu::_hideConfigAdv(bool instant)
|
|
|
|
{
|
2012-05-04 05:46:18 +02:00
|
|
|
_hideConfigCommon(instant);
|
2012-02-17 17:46:05 +01:00
|
|
|
|
2012-12-21 20:51:22 +01:00
|
|
|
m_btnMgr.hide(m_configAdvLblBootChange, instant);
|
|
|
|
m_btnMgr.hide(m_configAdvBtnBootChange, instant);
|
2012-01-21 21:57:41 +01:00
|
|
|
m_btnMgr.hide(m_configAdvLblTheme, instant);
|
|
|
|
m_btnMgr.hide(m_configAdvLblCurTheme, instant);
|
|
|
|
m_btnMgr.hide(m_configAdvBtnCurThemeM, instant);
|
|
|
|
m_btnMgr.hide(m_configAdvBtnCurThemeP, instant);
|
|
|
|
m_btnMgr.hide(m_configAdvLblLanguage, instant);
|
2013-08-08 20:21:11 +02:00
|
|
|
m_btnMgr.hide(m_configAdvBtnLanguage, instant);
|
2012-01-21 21:57:41 +01:00
|
|
|
m_btnMgr.hide(m_configAdvLblCFTheme, instant);
|
|
|
|
m_btnMgr.hide(m_configAdvBtnCFTheme, instant);
|
2012-07-05 15:15:23 +02:00
|
|
|
for(u8 i = 0; i < ARRAY_SIZE(m_configAdvLblUser); ++i)
|
2012-09-13 16:54:17 +02:00
|
|
|
if(m_configAdvLblUser[i] != -1)
|
2012-01-21 21:57:41 +01:00
|
|
|
m_btnMgr.hide(m_configAdvLblUser[i], instant);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMenu::_showConfigAdv(void)
|
|
|
|
{
|
2012-05-04 05:46:18 +02:00
|
|
|
_showConfigCommon(m_configAdvBg, g_curPage);
|
2012-02-17 17:46:05 +01:00
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
m_btnMgr.show(m_configAdvLblCurTheme);
|
|
|
|
m_btnMgr.show(m_configAdvBtnCurThemeM);
|
|
|
|
m_btnMgr.show(m_configAdvBtnCurThemeP);
|
|
|
|
m_btnMgr.show(m_configAdvLblTheme);
|
2012-12-21 20:51:22 +01:00
|
|
|
if(!m_locked)
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
2012-12-21 20:51:22 +01:00
|
|
|
m_btnMgr.show(m_configAdvLblBootChange);
|
|
|
|
m_btnMgr.show(m_configAdvBtnBootChange);
|
2012-01-21 21:57:41 +01:00
|
|
|
m_btnMgr.show(m_configAdvLblLanguage);
|
2013-08-08 20:21:11 +02:00
|
|
|
m_btnMgr.show(m_configAdvBtnLanguage);
|
2012-01-21 21:57:41 +01:00
|
|
|
m_btnMgr.show(m_configAdvLblCFTheme);
|
|
|
|
m_btnMgr.show(m_configAdvBtnCFTheme);
|
|
|
|
}
|
2012-07-05 15:15:23 +02:00
|
|
|
for(u32 i = 0; i < ARRAY_SIZE(m_configAdvLblUser); ++i)
|
2012-09-13 16:54:17 +02:00
|
|
|
if(m_configAdvLblUser[i] != -1)
|
2012-01-21 21:57:41 +01:00
|
|
|
m_btnMgr.show(m_configAdvLblUser[i]);
|
2012-02-17 17:46:05 +01:00
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
m_btnMgr.setText(m_configAdvLblCurTheme, m_cfg.getString("GENERAL", "theme"));
|
|
|
|
}
|
|
|
|
|
2012-05-06 14:03:43 +02:00
|
|
|
static void listThemes(const char * path, vector<string> &themes)
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
|
|
|
DIR *d;
|
|
|
|
struct dirent *dir;
|
|
|
|
bool def = false;
|
|
|
|
|
|
|
|
themes.clear();
|
|
|
|
d = opendir(path);
|
|
|
|
if (d != 0)
|
|
|
|
{
|
|
|
|
dir = readdir(d);
|
|
|
|
while (dir != 0)
|
|
|
|
{
|
2012-06-27 14:31:48 +02:00
|
|
|
string fileName = dir->d_name;
|
|
|
|
def = def || (upperCase(fileName) == "DEFAULT.INI");
|
|
|
|
if (fileName.size() > 4 && fileName.substr(fileName.size() - 4, 4) == ".ini")
|
2012-01-21 21:57:41 +01:00
|
|
|
themes.push_back(fileName.substr(0, fileName.size() - 4));
|
|
|
|
dir = readdir(d);
|
|
|
|
}
|
|
|
|
closedir(d);
|
|
|
|
}
|
|
|
|
if (!def)
|
|
|
|
themes.push_back("DEFAULT");
|
|
|
|
sort(themes.begin(), themes.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
int CMenu::_configAdv(void)
|
|
|
|
{
|
2012-05-04 05:46:18 +02:00
|
|
|
int change = CONFIG_PAGE_NO_CHANGE;
|
2012-05-06 14:03:43 +02:00
|
|
|
vector<string> themes;
|
2012-01-21 21:57:41 +01:00
|
|
|
string prevTheme = m_cfg.getString("GENERAL", "theme");
|
|
|
|
|
|
|
|
bool lang_changed = false;
|
|
|
|
|
|
|
|
listThemes(m_themeDir.c_str(), themes);
|
|
|
|
int curTheme = 0;
|
|
|
|
for (u32 i = 0; i < themes.size(); ++i)
|
|
|
|
if (themes[i] == prevTheme)
|
|
|
|
{
|
|
|
|
curTheme = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
_showConfigAdv();
|
2012-09-09 20:35:15 +02:00
|
|
|
while(!m_exit)
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
2012-05-04 05:46:18 +02:00
|
|
|
change = _configCommon();
|
|
|
|
if (change != CONFIG_PAGE_NO_CHANGE)
|
2012-01-21 21:57:41 +01:00
|
|
|
break;
|
|
|
|
if (BTN_A_PRESSED)
|
|
|
|
{
|
2012-12-21 20:51:22 +01:00
|
|
|
if(m_btnMgr.selected(m_configAdvBtnBootChange))
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
2012-05-04 05:46:18 +02:00
|
|
|
_hideConfigAdv();
|
2013-02-14 22:50:46 +01:00
|
|
|
if(_Boot())
|
|
|
|
break; /* Settings changed */
|
2012-05-04 05:46:18 +02:00
|
|
|
_showConfigAdv();
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
2013-08-09 15:58:06 +02:00
|
|
|
else if(m_btnMgr.selected(m_configAdvBtnCurThemeP) || m_btnMgr.selected(m_configAdvBtnCurThemeM))
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
2012-05-04 05:46:18 +02:00
|
|
|
_cfNeedsUpdate();
|
2012-01-21 21:57:41 +01:00
|
|
|
s8 direction = m_btnMgr.selected(m_configAdvBtnCurThemeP) ? 1 : -1;
|
|
|
|
curTheme = loopNum(curTheme + direction, (int)themes.size());
|
|
|
|
m_cfg.setString("GENERAL", "theme", themes[curTheme]);
|
2012-02-04 22:45:51 +01:00
|
|
|
m_cfg.setInt(_domainFromView(), "last_cf_mode", 1);
|
2012-01-21 21:57:41 +01:00
|
|
|
_showConfigAdv();
|
|
|
|
}
|
2013-08-09 15:58:06 +02:00
|
|
|
else if(m_btnMgr.selected(m_configAdvBtnLanguage))
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
2013-08-04 18:53:15 +02:00
|
|
|
_hideConfigAdv();
|
2013-08-08 20:21:11 +02:00
|
|
|
lang_changed = _LangSettings();
|
2012-01-21 21:57:41 +01:00
|
|
|
_showConfigAdv();
|
|
|
|
}
|
2013-08-09 15:58:06 +02:00
|
|
|
else if(m_btnMgr.selected(m_configAdvBtnCFTheme))
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
2012-05-04 05:46:18 +02:00
|
|
|
_cfNeedsUpdate();
|
2012-01-21 21:57:41 +01:00
|
|
|
_hideConfigAdv();
|
|
|
|
_cfTheme();
|
|
|
|
_showConfigAdv();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_hideConfigAdv();
|
|
|
|
if (m_gameList.empty() || lang_changed)
|
|
|
|
{
|
2012-10-03 23:34:37 +02:00
|
|
|
//if(lang_changed)
|
|
|
|
//m_gameList.SetLanguage(m_loc.getString(m_curLanguage, "gametdb_code", "EN").c_str());
|
2012-02-03 04:00:13 +01:00
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
_loadList();
|
|
|
|
}
|
|
|
|
lang_changed = false;
|
|
|
|
|
2012-05-04 05:46:18 +02:00
|
|
|
return change;
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-11-03 20:16:03 +01:00
|
|
|
void CMenu::_initConfigAdvMenu()
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
2012-11-03 20:16:03 +01:00
|
|
|
_addUserLabels(m_configAdvLblUser, ARRAY_SIZE(m_configAdvLblUser), "CONFIG_ADV");
|
|
|
|
m_configAdvBg = _texture("CONFIG_ADV/BG", "texture", theme.bg, false);
|
|
|
|
m_configAdvLblTheme = _addLabel("CONFIG_ADV/THEME", theme.lblFont, L"", 40, 130, 290, 56, theme.lblFontColor, FTGX_JUSTIFY_LEFT | FTGX_ALIGN_MIDDLE);
|
|
|
|
m_configAdvLblCurTheme = _addLabel("CONFIG_ADV/THEME_BTN", theme.btnFont, L"", 386, 130, 158, 56, theme.btnFontColor, FTGX_JUSTIFY_CENTER | FTGX_ALIGN_MIDDLE, theme.btnTexC);
|
|
|
|
m_configAdvBtnCurThemeM = _addPicButton("CONFIG_ADV/THEME_MINUS", theme.btnTexMinus, theme.btnTexMinusS, 330, 130, 56, 56);
|
|
|
|
m_configAdvBtnCurThemeP = _addPicButton("CONFIG_ADV/THEME_PLUS", theme.btnTexPlus, theme.btnTexPlusS, 544, 130, 56, 56);
|
|
|
|
m_configAdvLblLanguage = _addLabel("CONFIG_ADV/LANGUAGE", theme.lblFont, L"", 40, 190, 290, 56, theme.lblFontColor, FTGX_JUSTIFY_LEFT | FTGX_ALIGN_MIDDLE);
|
2013-08-08 20:21:11 +02:00
|
|
|
m_configAdvBtnLanguage = _addButton("CONFIG_ADV/LANGUAGE_BTN", theme.btnFont, L"", 330, 190, 270, 56, theme.btnFontColor);
|
2012-11-03 20:16:03 +01:00
|
|
|
m_configAdvLblCFTheme = _addLabel("CONFIG_ADV/CUSTOMIZE_CF", theme.lblFont, L"", 40, 250, 290, 56, theme.lblFontColor, FTGX_JUSTIFY_LEFT | FTGX_ALIGN_MIDDLE);
|
|
|
|
m_configAdvBtnCFTheme = _addButton("CONFIG_ADV/CUSTOMIZE_CF_BTN", theme.btnFont, L"", 330, 250, 270, 56, theme.btnFontColor);
|
2012-12-21 20:51:22 +01:00
|
|
|
m_configAdvLblBootChange = _addLabel("CONFIG_ADV/BOOT_CHANGE", theme.lblFont, L"", 40, 310, 290, 56, theme.lblFontColor, FTGX_JUSTIFY_LEFT | FTGX_ALIGN_MIDDLE);
|
|
|
|
m_configAdvBtnBootChange = _addButton("CONFIG_ADV/BOOT_CHANGE_BTN", theme.btnFont, L"", 330, 310, 270, 56, theme.btnFontColor);
|
2012-02-17 17:46:05 +01:00
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
_setHideAnim(m_configAdvLblTheme, "CONFIG_ADV/THEME", 100, 0, -2.f, 0.f);
|
|
|
|
_setHideAnim(m_configAdvLblCurTheme, "CONFIG_ADV/THEME_BTN", 0, 0, 1.f, -1.f);
|
|
|
|
_setHideAnim(m_configAdvBtnCurThemeM, "CONFIG_ADV/THEME_MINUS", 0, 0, 1.f, -1.f);
|
|
|
|
_setHideAnim(m_configAdvBtnCurThemeP, "CONFIG_ADV/THEME_PLUS", 0, 0, 1.f, -1.f);
|
|
|
|
_setHideAnim(m_configAdvLblLanguage, "CONFIG_ADV/LANGUAGE", 100, 0, -2.f, 0.f);
|
2013-08-08 20:21:11 +02:00
|
|
|
_setHideAnim(m_configAdvBtnLanguage, "CONFIG_ADV/LANGUAGE_BTN", 0, 0, 1.f, -1.f);
|
2012-01-21 21:57:41 +01:00
|
|
|
_setHideAnim(m_configAdvLblCFTheme, "CONFIG_ADV/CUSTOMIZE_CF", 100, 0, -2.f, 0.f);
|
|
|
|
_setHideAnim(m_configAdvBtnCFTheme, "CONFIG_ADV/CUSTOMIZE_CF_BTN", 0, 0, 1.f, -1.f);
|
2012-12-21 20:51:22 +01:00
|
|
|
_setHideAnim(m_configAdvLblBootChange, "CONFIG_ADV/BOOT_CHANGE", 100, 0, -2.f, 0.f);
|
|
|
|
_setHideAnim(m_configAdvBtnBootChange, "CONFIG_ADV/BOOT_CHANGE_BTN", 0, 0, 1.f, -1.f);
|
2012-01-21 21:57:41 +01:00
|
|
|
_hideConfigAdv(true);
|
|
|
|
_textConfigAdv();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMenu::_textConfigAdv(void)
|
|
|
|
{
|
|
|
|
m_btnMgr.setText(m_configAdvLblTheme, _t("cfga7", L"Theme"));
|
2013-08-08 20:21:11 +02:00
|
|
|
m_btnMgr.setText(m_configAdvLblLanguage, _t("cfgc9", L"Manage Languages"));
|
|
|
|
m_btnMgr.setText(m_configAdvBtnLanguage, _t("cfgc5", L"Go"));
|
2012-01-21 21:57:41 +01:00
|
|
|
m_btnMgr.setText(m_configAdvLblCFTheme, _t("cfgc4", L"Adjust Coverflow"));
|
|
|
|
m_btnMgr.setText(m_configAdvBtnCFTheme, _t("cfgc5", L"Go"));
|
2012-12-21 20:51:22 +01:00
|
|
|
m_btnMgr.setText(m_configAdvLblBootChange, _t("cfgc8", L"Startup Settings"));
|
|
|
|
m_btnMgr.setText(m_configAdvBtnBootChange, _t("cfgc5", L"Go"));
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|