2012-01-21 21:57:41 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <gccore.h>
|
|
|
|
|
|
|
|
#include "menu.hpp"
|
2012-08-05 15:48:15 +02:00
|
|
|
#include "lockMutex.hpp"
|
|
|
|
#include "gui/text.hpp"
|
|
|
|
#include "network/http.h"
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
#define GECKOURL "http://geckocodes.org/codes/%c/%s.txt"
|
|
|
|
#define CHEATSPERPAGE 4
|
|
|
|
|
2012-09-13 16:54:17 +02:00
|
|
|
u8 m_cheatSettingsPage = 0;
|
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
void CMenu::_hideCheatDownload(bool instant)
|
|
|
|
{
|
|
|
|
m_btnMgr.hide(m_downloadBtnCancel, instant);
|
|
|
|
m_btnMgr.hide(m_downloadPBar, instant);
|
|
|
|
m_btnMgr.hide(m_downloadLblMessage[0], 0, 0, -2.f, 0.f, instant);
|
|
|
|
m_btnMgr.hide(m_downloadLblMessage[1], 0, 0, -2.f, 0.f, instant);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMenu::_showCheatDownload(void)
|
|
|
|
{
|
|
|
|
_setBg(m_downloadBg, m_downloadBg);
|
|
|
|
m_btnMgr.show(m_downloadBtnCancel);
|
|
|
|
m_btnMgr.show(m_downloadPBar);
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 CMenu::_downloadCheatFileAsync(void *obj)
|
|
|
|
{
|
|
|
|
CMenu *m = (CMenu *)obj;
|
2012-05-13 17:13:33 +02:00
|
|
|
if (!m->m_thrdWorking)
|
|
|
|
return 0;
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
m->m_thrdStop = false;
|
|
|
|
|
|
|
|
LWP_MutexLock(m->m_mutex);
|
|
|
|
m->_setThrdMsg(m->_t("cfgg23", L"Downloading cheat file..."), 0);
|
|
|
|
LWP_MutexUnlock(m->m_mutex);
|
|
|
|
|
|
|
|
if (m->_initNetwork() < 0)
|
|
|
|
{
|
|
|
|
m->m_thrdWorking = false;
|
|
|
|
return -1;
|
|
|
|
}
|
2012-05-13 17:13:33 +02:00
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
u32 bufferSize = 0x080000; // Maximum download size 512kb
|
2012-11-03 20:16:03 +01:00
|
|
|
u8 *buffer = (u8*)MEM2_alloc(bufferSize);
|
|
|
|
if(buffer == NULL)
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
|
|
|
m->m_thrdWorking = false;
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
2012-12-27 21:22:40 +01:00
|
|
|
const char *id = CoverFlow.getId();
|
2012-01-21 21:57:41 +01:00
|
|
|
char type = id[0] == 'S' ? 'R' : id[0];
|
|
|
|
|
2012-12-27 21:22:40 +01:00
|
|
|
block cheatfile = downloadfile(buffer, bufferSize, fmt(GECKOURL, type, id), CMenu::_downloadProgress, m);
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
if (cheatfile.data != NULL && cheatfile.size > 65 && cheatfile.data[0] != '<')
|
|
|
|
{
|
2013-06-30 20:40:49 +02:00
|
|
|
fsop_WriteFile(fmt("%s/%s.txt", m->m_txtCheatDir.c_str(), id), cheatfile.data, cheatfile.size);
|
|
|
|
free(buffer);
|
|
|
|
m->m_thrdWorking = false;
|
|
|
|
return 0;
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
2012-11-03 20:16:03 +01:00
|
|
|
free(buffer);
|
2012-01-21 21:57:41 +01:00
|
|
|
m->m_thrdWorking = false;
|
|
|
|
return -3;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMenu::_CheatSettings()
|
|
|
|
{
|
|
|
|
SetupInput();
|
|
|
|
|
2012-12-27 21:22:40 +01:00
|
|
|
const char *id = CoverFlow.getId();
|
2012-03-10 20:02:59 +01:00
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
m_cheatSettingsPage = 1;
|
2012-12-27 21:22:40 +01:00
|
|
|
int txtavailable = m_cheatfile.openTxtfile(fmt("%s/%s.txt", m_txtCheatDir.c_str(), id));
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
_showCheatSettings();
|
|
|
|
_textCheatSettings();
|
|
|
|
|
|
|
|
if (txtavailable)
|
2012-11-01 17:39:42 +01:00
|
|
|
m_btnMgr.setText(m_cheatLblTitle, m_cheatfile.getGameName());
|
2012-01-21 21:57:41 +01:00
|
|
|
else
|
2012-11-01 17:39:42 +01:00
|
|
|
m_btnMgr.setText(m_cheatLblTitle, L"");
|
2012-01-21 21:57:41 +01:00
|
|
|
|
2012-09-09 20:35:15 +02:00
|
|
|
while(!m_exit)
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
|
|
|
_mainLoopCommon();
|
2012-09-09 20:35:15 +02:00
|
|
|
if(BTN_HOME_PRESSED || BTN_B_PRESSED)
|
2012-01-21 21:57:41 +01:00
|
|
|
break;
|
|
|
|
else if (BTN_UP_PRESSED)
|
|
|
|
m_btnMgr.up();
|
|
|
|
else if (BTN_DOWN_PRESSED)
|
|
|
|
m_btnMgr.down();
|
|
|
|
else if (txtavailable && (BTN_MINUS_PRESSED || BTN_LEFT_PRESSED || (BTN_A_PRESSED && m_btnMgr.selected(m_cheatBtnPageM))))
|
|
|
|
{
|
|
|
|
_hideCheatSettings();
|
|
|
|
if (m_cheatSettingsPage == 1)
|
|
|
|
m_cheatSettingsPage = (m_cheatfile.getCnt()+CHEATSPERPAGE-1)/CHEATSPERPAGE;
|
|
|
|
else if (m_cheatSettingsPage > 1)
|
|
|
|
--m_cheatSettingsPage;
|
|
|
|
if(BTN_LEFT_PRESSED || BTN_MINUS_PRESSED) m_btnMgr.click(m_cheatBtnPageM);
|
|
|
|
_showCheatSettings();
|
|
|
|
}
|
|
|
|
else if (txtavailable && (BTN_PLUS_PRESSED || BTN_RIGHT_PRESSED || (BTN_A_PRESSED && m_btnMgr.selected(m_cheatBtnPageP))))
|
|
|
|
{
|
|
|
|
_hideCheatSettings();
|
|
|
|
if (m_cheatSettingsPage == (m_cheatfile.getCnt()+CHEATSPERPAGE-1)/CHEATSPERPAGE)
|
|
|
|
m_cheatSettingsPage = 1;
|
|
|
|
else if (m_cheatSettingsPage < (m_cheatfile.getCnt()+CHEATSPERPAGE-1)/CHEATSPERPAGE)
|
|
|
|
++m_cheatSettingsPage;
|
|
|
|
if(BTN_RIGHT_PRESSED || BTN_PLUS_PRESSED) m_btnMgr.click(m_cheatBtnPageP);
|
|
|
|
_showCheatSettings();
|
|
|
|
}
|
|
|
|
else if ((WBTN_2_HELD && WBTN_1_PRESSED) || (WBTN_1_HELD && WBTN_2_PRESSED))
|
|
|
|
{
|
2013-06-27 19:14:11 +02:00
|
|
|
fsop_deleteFile(fmt("%s/%s.gct", m_cheatDir.c_str(), id));
|
|
|
|
fsop_deleteFile(fmt("%s/%s.txt", m_txtCheatDir.c_str(), id));
|
2012-03-10 20:02:59 +01:00
|
|
|
m_gcfg2.remove(id, "cheat");
|
|
|
|
m_gcfg2.remove(id, "hooktype");
|
2012-01-21 21:57:41 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (BTN_A_PRESSED)
|
|
|
|
{
|
|
|
|
if (m_btnMgr.selected(m_cheatBtnBack))
|
|
|
|
break;
|
|
|
|
for (int i = 0; i < CHEATSPERPAGE; ++i)
|
|
|
|
if (m_btnMgr.selected(m_cheatBtnItem[i]))
|
|
|
|
{
|
|
|
|
// handling code for clicked cheat
|
|
|
|
m_cheatfile.sCheatSelected[(m_cheatSettingsPage-1)*CHEATSPERPAGE + i] = !m_cheatfile.sCheatSelected[(m_cheatSettingsPage-1)*CHEATSPERPAGE + i];
|
|
|
|
_showCheatSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_btnMgr.selected(m_cheatBtnApply))
|
|
|
|
{
|
|
|
|
bool selected = false;
|
|
|
|
//checks if at least one cheat is selected
|
|
|
|
for (unsigned int i=0; i < m_cheatfile.getCnt(); ++i)
|
|
|
|
{
|
|
|
|
if (m_cheatfile.sCheatSelected[i] == true)
|
|
|
|
{
|
|
|
|
selected = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (selected)
|
|
|
|
{
|
2012-12-27 21:22:40 +01:00
|
|
|
m_cheatfile.createGCT(fmt("%s/%s.gct", m_cheatDir.c_str(), id));
|
2012-03-10 20:02:59 +01:00
|
|
|
m_gcfg2.setOptBool(id, "cheat", 1);
|
|
|
|
m_gcfg2.setInt(id, "hooktype", m_gcfg2.getInt(id, "hooktype", 1));
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-06-27 19:14:11 +02:00
|
|
|
fsop_deleteFile(fmt("%s/%s.gct", m_cheatDir.c_str(), id));
|
2012-03-10 20:02:59 +01:00
|
|
|
m_gcfg2.remove(id, "cheat");
|
|
|
|
m_gcfg2.remove(id, "hooktype");
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
2012-12-27 21:22:40 +01:00
|
|
|
m_cheatfile.createTXT(fmt("%s/%s.txt", m_txtCheatDir.c_str(), id));
|
2012-01-21 21:57:41 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (m_btnMgr.selected(m_cheatBtnDownload))
|
|
|
|
{
|
|
|
|
int msg = 0;
|
|
|
|
wstringEx prevMsg;
|
|
|
|
|
|
|
|
// Download cheat code
|
|
|
|
m_btnMgr.setProgress(m_downloadPBar, 0.f);
|
|
|
|
_hideCheatSettings();
|
|
|
|
_showCheatDownload();
|
|
|
|
m_btnMgr.setText(m_downloadBtnCancel, _t("dl1", L"Cancel"));
|
|
|
|
m_thrdStop = false;
|
|
|
|
m_thrdMessageAdded = false;
|
|
|
|
|
|
|
|
m_thrdWorking = true;
|
|
|
|
lwp_t thread = LWP_THREAD_NULL;
|
|
|
|
LWP_CreateThread(&thread, (void *(*)(void *))CMenu::_downloadCheatFileAsync, (void *)this, 0, 8192, 40);
|
2012-09-09 20:35:15 +02:00
|
|
|
while(m_thrdWorking)
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
2012-09-09 20:35:15 +02:00
|
|
|
_mainLoopCommon();
|
2012-01-21 21:57:41 +01:00
|
|
|
if ((BTN_HOME_PRESSED || BTN_B_PRESSED) && !m_thrdWorking)
|
|
|
|
break;
|
|
|
|
if (BTN_A_PRESSED && !(m_thrdWorking && m_thrdStop))
|
|
|
|
{
|
|
|
|
if (m_btnMgr.selected(m_downloadBtnCancel))
|
|
|
|
{
|
|
|
|
LockMutex lock(m_mutex);
|
|
|
|
m_thrdStop = true;
|
|
|
|
m_thrdMessageAdded = true;
|
|
|
|
m_thrdMessage = _t("dlmsg6", L"Canceling...");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Sys_Exiting())
|
|
|
|
{
|
|
|
|
LockMutex lock(m_mutex);
|
|
|
|
m_thrdStop = true;
|
|
|
|
m_thrdMessageAdded = true;
|
|
|
|
m_thrdMessage = _t("dlmsg6", L"Canceling...");
|
|
|
|
m_thrdWorking = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_thrdMessageAdded)
|
|
|
|
{
|
|
|
|
LockMutex lock(m_mutex);
|
|
|
|
m_thrdMessageAdded = false;
|
|
|
|
m_btnMgr.setProgress(m_downloadPBar, m_thrdProgress);
|
|
|
|
if (m_thrdProgress >= 1.f) {
|
|
|
|
// m_btnMgr.setText(m_downloadBtnCancel, _t("dl2", L"Back"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (prevMsg != m_thrdMessage)
|
|
|
|
{
|
|
|
|
prevMsg = m_thrdMessage;
|
|
|
|
m_btnMgr.setText(m_downloadLblMessage[msg], m_thrdMessage, false);
|
|
|
|
m_btnMgr.hide(m_downloadLblMessage[msg], 0, 0, -1.f, -1.f, true);
|
|
|
|
m_btnMgr.show(m_downloadLblMessage[msg]);
|
|
|
|
msg ^= 1;
|
|
|
|
m_btnMgr.hide(m_downloadLblMessage[msg], 0, 0, -1.f, -1.f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (m_thrdStop && !m_thrdWorking)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (thread != LWP_THREAD_NULL)
|
|
|
|
{
|
|
|
|
LWP_JoinThread(thread, NULL);
|
|
|
|
thread = LWP_THREAD_NULL;
|
|
|
|
}
|
|
|
|
_hideCheatDownload();
|
|
|
|
|
2012-12-27 21:22:40 +01:00
|
|
|
txtavailable = m_cheatfile.openTxtfile(fmt("%s/%s.txt", m_txtCheatDir.c_str(), id));
|
2012-01-21 21:57:41 +01:00
|
|
|
_showCheatSettings();
|
|
|
|
|
2012-11-01 17:39:42 +01:00
|
|
|
if(txtavailable)
|
|
|
|
m_btnMgr.setText(m_cheatLblTitle, m_cheatfile.getGameName());
|
2012-01-21 21:57:41 +01:00
|
|
|
else
|
2012-11-01 17:39:42 +01:00
|
|
|
m_btnMgr.setText(m_cheatLblTitle, L"");
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
if (m_cheatfile.getCnt() == 0)
|
|
|
|
{
|
|
|
|
// cheat code not found, show result
|
2012-03-10 20:02:59 +01:00
|
|
|
char type = id[0] == 'S' ? 'R' : id[0];
|
2012-01-21 21:57:41 +01:00
|
|
|
m_btnMgr.setText(m_cheatLblItem[0], _t("cheat4", L"Download not found."));
|
2012-12-27 21:22:40 +01:00
|
|
|
m_btnMgr.setText(m_cheatLblItem[1], sfmt(GECKOURL, type, id));
|
2012-01-21 21:57:41 +01:00
|
|
|
m_btnMgr.show(m_cheatLblItem[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_hideCheatSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMenu::_hideCheatSettings(bool instant)
|
|
|
|
{
|
|
|
|
m_btnMgr.hide(m_cheatBtnBack, instant);
|
|
|
|
m_btnMgr.hide(m_cheatBtnApply, instant);
|
|
|
|
m_btnMgr.hide(m_cheatBtnDownload, instant);
|
|
|
|
m_btnMgr.hide(m_cheatLblTitle, instant);
|
|
|
|
|
|
|
|
m_btnMgr.hide(m_cheatLblPage, instant);
|
|
|
|
m_btnMgr.hide(m_cheatBtnPageM, instant);
|
|
|
|
m_btnMgr.hide(m_cheatBtnPageP, instant);
|
|
|
|
|
|
|
|
for (int i=0;i<CHEATSPERPAGE;++i) {
|
|
|
|
m_btnMgr.hide(m_cheatBtnItem[i], instant);
|
|
|
|
m_btnMgr.hide(m_cheatLblItem[i], instant);
|
|
|
|
}
|
|
|
|
|
2012-07-05 15:15:23 +02:00
|
|
|
for(u8 i = 0; i < ARRAY_SIZE(m_cheatLblUser); ++i)
|
2012-09-13 16:54:17 +02:00
|
|
|
if(m_cheatLblUser[i] != -1)
|
2012-01-21 21:57:41 +01:00
|
|
|
m_btnMgr.hide(m_cheatLblUser[i], instant);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMenu::_showCheatSettings(void)
|
|
|
|
{
|
|
|
|
_setBg(m_cheatBg, m_cheatBg);
|
|
|
|
m_btnMgr.show(m_cheatBtnBack);
|
|
|
|
m_btnMgr.show(m_cheatLblTitle);
|
|
|
|
|
2012-07-05 15:15:23 +02:00
|
|
|
for(u8 i = 0; i < ARRAY_SIZE(m_cheatLblUser); ++i)
|
2012-09-13 16:54:17 +02:00
|
|
|
if(m_cheatLblUser[i] != -1)
|
2012-01-21 21:57:41 +01:00
|
|
|
m_btnMgr.show(m_cheatLblUser[i]);
|
|
|
|
|
|
|
|
if (m_cheatfile.getCnt() > 0)
|
|
|
|
{
|
|
|
|
// cheat found, show apply
|
|
|
|
m_btnMgr.show(m_cheatBtnApply);
|
|
|
|
m_btnMgr.show(m_cheatLblPage);
|
|
|
|
m_btnMgr.show(m_cheatBtnPageM);
|
|
|
|
m_btnMgr.show(m_cheatBtnPageP);
|
|
|
|
m_btnMgr.setText(m_cheatLblPage, wfmt(L"%i / %i", m_cheatSettingsPage, (m_cheatfile.getCnt()+CHEATSPERPAGE-1)/CHEATSPERPAGE));
|
|
|
|
|
|
|
|
// Show cheats if available, else hide
|
|
|
|
for (u32 i=0; i < CHEATSPERPAGE; ++i)
|
|
|
|
{
|
|
|
|
// cheat in range?
|
|
|
|
if (((m_cheatSettingsPage-1)*CHEATSPERPAGE + i + 1) <= m_cheatfile.getCnt())
|
|
|
|
{
|
2012-11-01 17:39:42 +01:00
|
|
|
m_btnMgr.setText(m_cheatLblItem[i], m_cheatfile.getCheatName((m_cheatSettingsPage-1)*CHEATSPERPAGE + i));
|
2012-01-21 21:57:41 +01:00
|
|
|
m_btnMgr.setText(m_cheatBtnItem[i], _optBoolToString(m_cheatfile.sCheatSelected[(m_cheatSettingsPage-1)*CHEATSPERPAGE + i]));
|
|
|
|
|
|
|
|
m_btnMgr.show(m_cheatLblItem[i], true);
|
|
|
|
m_btnMgr.show(m_cheatBtnItem[i], true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// cheat out of range, hide elements
|
|
|
|
m_btnMgr.hide(m_cheatLblItem[i], true);
|
|
|
|
m_btnMgr.hide(m_cheatBtnItem[i], true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// no cheat found, allow downloading
|
|
|
|
m_btnMgr.show(m_cheatBtnDownload);
|
|
|
|
m_btnMgr.setText(m_cheatLblItem[0], _t("cheat3", L"Cheat file for game not found."));
|
|
|
|
m_btnMgr.show(m_cheatLblItem[0]);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-03 20:16:03 +01:00
|
|
|
void CMenu::_initCheatSettingsMenu()
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
2012-11-03 20:16:03 +01:00
|
|
|
_addUserLabels(m_cheatLblUser, ARRAY_SIZE(m_cheatLblUser), "CHEAT");
|
|
|
|
m_cheatBg = _texture("CHEAT/BG", "texture", theme.bg, false);
|
2013-06-29 16:48:02 +02:00
|
|
|
m_cheatLblTitle = _addTitle("CHEAT/TITLE", theme.titleFont, L"Cheats", 20, 30, 600, 60, theme.titleFontColor, FTGX_JUSTIFY_CENTER | FTGX_ALIGN_MIDDLE);
|
2012-11-03 20:16:03 +01:00
|
|
|
m_cheatBtnBack = _addButton("CHEAT/BACK_BTN", theme.btnFont, L"", 460, 400, 150, 56, theme.btnFontColor);
|
|
|
|
m_cheatBtnApply = _addButton("CHEAT/APPLY_BTN", theme.btnFont, L"", 240, 400, 150, 56, theme.btnFontColor);
|
|
|
|
m_cheatBtnDownload = _addButton("CHEAT/DOWNLOAD_BTN", theme.btnFont, L"", 240, 400, 200, 56, theme.btnFontColor);
|
2012-01-21 21:57:41 +01:00
|
|
|
|
2012-11-03 20:16:03 +01:00
|
|
|
m_cheatLblPage = _addLabel("CHEAT/PAGE_BTN", theme.btnFont, L"", 76, 400, 100, 56, theme.btnFontColor, FTGX_JUSTIFY_CENTER | FTGX_ALIGN_MIDDLE, theme.btnTexC);
|
|
|
|
m_cheatBtnPageM = _addPicButton("CHEAT/PAGE_MINUS", theme.btnTexMinus, theme.btnTexMinusS, 20, 400, 56, 56);
|
|
|
|
m_cheatBtnPageP = _addPicButton("CHEAT/PAGE_PLUS", theme.btnTexPlus, theme.btnTexPlusS, 176, 400, 56, 56);
|
2012-01-21 21:57:41 +01:00
|
|
|
|
2012-11-03 20:16:03 +01:00
|
|
|
m_cheatLblItem[0] = _addLabel("CHEAT/ITEM_0", theme.lblFont, L"", 40, 100, 460, 56, theme.lblFontColor, FTGX_JUSTIFY_LEFT | FTGX_ALIGN_MIDDLE);
|
|
|
|
m_cheatBtnItem[0] = _addButton("CHEAT/ITEM_0_BTN", theme.btnFont, L"", 500, 100, 120, 56, theme.btnFontColor);
|
|
|
|
m_cheatLblItem[1] = _addLabel("CHEAT/ITEM_1", theme.lblFont, L"", 40, 160, 460, 56, theme.lblFontColor, FTGX_JUSTIFY_LEFT | FTGX_ALIGN_MIDDLE);
|
|
|
|
m_cheatBtnItem[1] = _addButton("CHEAT/ITEM_1_BTN", theme.btnFont, L"", 500, 160, 120, 56, theme.btnFontColor);
|
|
|
|
m_cheatLblItem[2] = _addLabel("CHEAT/ITEM_2", theme.lblFont, L"", 40, 220, 460, 56, theme.lblFontColor, FTGX_JUSTIFY_LEFT | FTGX_ALIGN_MIDDLE);
|
|
|
|
m_cheatBtnItem[2] = _addButton("CHEAT/ITEM_2_BTN", theme.btnFont, L"", 500, 220, 120, 56, theme.btnFontColor);
|
|
|
|
m_cheatLblItem[3] = _addLabel("CHEAT/ITEM_3", theme.lblFont, L"", 40, 280, 460, 56, theme.lblFontColor, FTGX_JUSTIFY_LEFT | FTGX_ALIGN_MIDDLE);
|
|
|
|
m_cheatBtnItem[3] = _addButton("CHEAT/ITEM_3_BTN", theme.btnFont, L"", 500, 280, 120, 56, theme.btnFontColor);
|
2012-01-21 21:57:41 +01:00
|
|
|
|
2012-02-10 19:45:42 +01:00
|
|
|
_setHideAnim(m_cheatLblTitle, "CHEAT/TITLE", 0, 100, 0.f, 0.f);
|
|
|
|
_setHideAnim(m_cheatBtnApply, "CHEAT/APPLY_BTN", 0, 0, 1.f, -1.f);
|
|
|
|
_setHideAnim(m_cheatBtnBack, "CHEAT/BACK_BTN", 0, 0, 1.f, -1.f);
|
|
|
|
_setHideAnim(m_cheatBtnDownload, "CHEAT/DOWNLOAD_BTN", 0, 0, 1.f, -1.f);
|
|
|
|
_setHideAnim(m_cheatLblPage, "CHEAT/PAGE_BTN", 0, 0, 1.f, -1.f);
|
|
|
|
_setHideAnim(m_cheatBtnPageM, "CHEAT/PAGE_MINUS", 0, 0, 1.f, -1.f);
|
|
|
|
_setHideAnim(m_cheatBtnPageP, "CHEAT/PAGE_PLUS", 0, 0, 1.f, -1.f);
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
for (int i=0;i<CHEATSPERPAGE;++i) {
|
2012-05-04 14:30:43 +02:00
|
|
|
_setHideAnim(m_cheatLblItem[i], fmt("CHEAT/ITEM_%i", i), -200, 0, 1.f, 0.f);
|
|
|
|
_setHideAnim(m_cheatBtnItem[i], fmt("CHEAT/ITEM_%i_BTN", i), 200, 0, 1.f, 0.f);
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
_hideCheatSettings();
|
|
|
|
_textCheatSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMenu::_textCheatSettings(void)
|
|
|
|
{
|
|
|
|
m_btnMgr.setText(m_cheatBtnBack, _t("cheat1", L"Back"));
|
|
|
|
m_btnMgr.setText(m_cheatBtnApply, _t("cheat2", L"Apply"));
|
|
|
|
m_btnMgr.setText(m_cheatBtnDownload, _t("cfg4", L"Download"));
|
|
|
|
}
|