mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-03 18:15:06 +01:00
76df2b26b6
*add loading of wii games / nand channels / emu nand channels in all combinations into one list *add button on main view for quick choice between the combinations of the three *add "Real Nand" or "Emulated Nand" text on the game window prompt when starting a channel *removed the need of a cIOS to launch the loader (if anyone uses it with IOS58 for whatever reason). The warning that a cIOS is needed is still present. *removed support for both usb ports at once on hermes cIOS. Each can still be used individually but only one at a time. This is done because of some bugs in the new ehci module which make some games unbootable. The ehcimodule is now reverted to the last working one. Need feedback if the games work fine again. *some preparations for the upcoming stealth mode feature of the d2x cIOS *isfs is now initiated once and deinitated when cleaning up only (instead of the whole init/deinit every single access) *removed choice for emulated nand channel modes. Emulated nand channels always need full emulation which is now always used on emu nand for channels. *removed unused settings for channels from the per game setting *changed default partition to 0 when starting with fresh settings (instead of -1 wtf?)
397 lines
12 KiB
C++
397 lines
12 KiB
C++
/****************************************************************************
|
|
* Copyright (C) 2010
|
|
* by Dimok
|
|
*
|
|
* This software is provided 'as-is', without any express or implied
|
|
* warranty. In no event will the authors be held liable for any
|
|
* damages arising from the use of this software.
|
|
*
|
|
* Permission is granted to anyone to use this software for any
|
|
* purpose, including commercial applications, and to alter it and
|
|
* redistribute it freely, subject to the following restrictions:
|
|
*
|
|
* 1. The origin of this software must not be misrepresented; you
|
|
* must not claim that you wrote the original software. If you use
|
|
* this software in a product, an acknowledgment in the product
|
|
* documentation would be appreciated but is not required.
|
|
*
|
|
* 2. Altered source versions must be plainly marked as such, and
|
|
* must not be misrepresented as being the original software.
|
|
*
|
|
* 3. This notice may not be removed or altered from any source
|
|
* distribution.
|
|
***************************************************************************/
|
|
#include <unistd.h>
|
|
#include "ParentalControlSM.hpp"
|
|
#include "settings/CSettings.h"
|
|
#include "prompts/PromptWindows.h"
|
|
#include "language/gettext.h"
|
|
#include "utils/PasswordCheck.h"
|
|
|
|
static const char * OnOffText[MAX_ON_OFF] =
|
|
{
|
|
trNOOP( "OFF" ),
|
|
trNOOP( "ON" )
|
|
};
|
|
|
|
static const char * LockModeText[] =
|
|
{
|
|
trNOOP( "Locked" ),
|
|
trNOOP( "Unlocked" )
|
|
};
|
|
|
|
static const char * ParentalText[5] =
|
|
{
|
|
trNOOP( "0 (Everyone)" ),
|
|
trNOOP( "1 (Child 7+)" ),
|
|
trNOOP( "2 (Teen 12+)" ),
|
|
trNOOP( "3 (Mature 16+)" ),
|
|
trNOOP( "4 (Adults Only 18+)" )
|
|
};
|
|
|
|
ParentalControlSM::ParentalControlSM()
|
|
: SettingsMenu(tr("Parental Control"), &GuiOptions, MENU_NONE)
|
|
{
|
|
int Idx = 0;
|
|
Options->SetName(Idx++, "%s", tr( "Console" ));
|
|
Options->SetName(Idx++, "%s", tr( "Password" ));
|
|
Options->SetName(Idx++, "%s", tr( "Controllevel" ));
|
|
Options->SetName(Idx++, "%s", tr( "Remember Unlock" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Global Settings" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Gui Settings" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Loader Settings" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Hard Drive Settings" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Feature Settings" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Parental Settings" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Sound Settings" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Theme Downloader" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Theme Menu" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Custom Paths" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Updates" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Reset Settings" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Game Settings" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block HBC Menu" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Title Launcher" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Cover Downloads" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Game Install" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block GameID Change" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Categories Menu" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Categories Modify" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block SD Reload Button" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Priiloader Override" ));
|
|
Options->SetName(Idx++, "%s", tr( "Block Loader Mode Button" ));
|
|
|
|
SetOptionValues();
|
|
}
|
|
|
|
void ParentalControlSM::SetOptionValues()
|
|
{
|
|
int Idx = 0;
|
|
|
|
//! Settings: Console
|
|
Options->SetValue(Idx++, "%s", tr( LockModeText[Settings.godmode] ));
|
|
|
|
if(!Settings.godmode)
|
|
{
|
|
for(int i = Idx; i < Options->GetLength(); ++i)
|
|
Options->SetValue(i, "********");
|
|
|
|
return;
|
|
}
|
|
|
|
//! Settings: Password
|
|
if (strcmp(Settings.unlockCode, "") == 0)
|
|
Options->SetValue(Idx++, "%s", tr( "not set" ));
|
|
else
|
|
Options->SetValue(Idx++, Settings.unlockCode);
|
|
|
|
//! Settings: Controllevel
|
|
Options->SetValue(Idx++, "%s", tr(ParentalText[Settings.parentalcontrol]));
|
|
|
|
//! Settings: Remember Unlock
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[Settings.RememberUnlock]));
|
|
|
|
//! Settings: Block Global Settings
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_GLOBAL_SETTINGS) != 0)]));
|
|
|
|
//! Settings: Block Gui Settings
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_GUI_SETTINGS) != 0)]));
|
|
|
|
//! Settings: Block Loader Settings
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_LOADER_SETTINGS) != 0)]));
|
|
|
|
//! Settings: Block Hard Drive Settings
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_HARD_DRIVE_SETTINGS) != 0)]));
|
|
|
|
//! Settings: Block Feature Settings
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_FEATURE_SETTINGS) != 0)]));
|
|
|
|
//! Settings: Block Parental Settings
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_PARENTAL_SETTINGS) != 0)]));
|
|
|
|
//! Settings: Block Sound Settings
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_SOUND_SETTINGS) != 0)]));
|
|
|
|
//! Settings: Block Theme Downloader
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_THEME_DOWNLOADER) != 0)]));
|
|
|
|
//! Settings: Block Theme Menu
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_THEME_MENU) != 0)]));
|
|
|
|
//! Settings: Block Custom Paths
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_CUSTOMPATH_SETTINGS) != 0)]));
|
|
|
|
//! Settings: Block Updates
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_UPDATES) != 0)]));
|
|
|
|
//! Settings: Block Reset Settings
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_RESET_SETTINGS) != 0)]));
|
|
|
|
//! Settings: Block Game Settings
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_GAME_SETTINGS) != 0)]));
|
|
|
|
//! Settings: Block HBC Menu
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_HBC_MENU) != 0)]));
|
|
|
|
//! Settings: Block Title Launcher
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_TITLE_LAUNCHER_MENU) != 0)]));
|
|
|
|
//! Settings: Block Cover Downloads
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_COVER_DOWNLOADS) != 0)]));
|
|
|
|
//! Settings: Block Game Install
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_GAME_INSTALL) != 0)]));
|
|
|
|
//! Settings: Block GameID Change
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_GAMEID_CHANGE) != 0)]));
|
|
|
|
//! Settings: Block Categories Menu
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_CATEGORIES_MENU) != 0)]));
|
|
|
|
//! Settings: Block Categories Modify
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_CATEGORIES_MOD) != 0)]));
|
|
|
|
//! Settings: Block SD Reload Button
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_SD_RELOAD_BUTTON) != 0)]));
|
|
|
|
//! Settings: Block Priiloader Override
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_PRIILOADER_OVERRIDE) != 0)]));
|
|
|
|
//! Settings: Block Loader Mode Button
|
|
Options->SetValue(Idx++, "%s", tr(OnOffText[((Settings.ParentalBlocks & BLOCK_LOADER_MODE_BUTTON) != 0)]));
|
|
}
|
|
|
|
int ParentalControlSM::GetMenuInternal()
|
|
{
|
|
int ret = optionBrowser->GetClickedOption();
|
|
|
|
if (ret < 0)
|
|
return MENU_NONE;
|
|
|
|
int Idx = -1;
|
|
|
|
//! Settings: Console
|
|
if (ret == ++Idx)
|
|
{
|
|
if (!Settings.godmode)
|
|
{
|
|
//password check to unlock Install,Delete and Format
|
|
SetState(STATE_DISABLED);
|
|
int result = PasswordCheck(Settings.unlockCode);
|
|
SetState(STATE_DEFAULT);
|
|
if (result > 0)
|
|
{
|
|
if(result == 1)
|
|
WindowPrompt( tr( "Correct Password" ), tr( "All the features of USB Loader GX are unlocked." ), tr( "OK" ));
|
|
Settings.godmode = 1;
|
|
}
|
|
else if(result < 0)
|
|
WindowPrompt(tr( "Wrong Password" ), tr( "USB Loader GX is protected" ), tr( "OK" ));
|
|
}
|
|
else
|
|
{
|
|
int choice = WindowPrompt(tr( "Lock Console" ), tr( "Are you sure?" ), tr( "Yes" ), tr( "No" ));
|
|
if (choice == 1)
|
|
{
|
|
WindowPrompt(tr( "Console Locked" ), tr( "USB Loader GX is protected" ), tr( "OK" ));
|
|
Settings.godmode = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
//! General permission check for all following
|
|
else if(!Settings.godmode)
|
|
{
|
|
WindowPrompt(tr( "Permission denied." ), tr( "Console must be unlocked for this option." ), tr( "OK" ));
|
|
}
|
|
|
|
//! Settings: Password
|
|
else if (ret == ++Idx)
|
|
{
|
|
char entered[20];
|
|
SetState(STATE_DISABLED);
|
|
snprintf(entered, sizeof(entered), Settings.unlockCode);
|
|
int result = OnScreenKeyboard(entered, 20, 0);
|
|
SetState(STATE_DEFAULT);
|
|
if (result == 1)
|
|
{
|
|
snprintf(Settings.unlockCode, sizeof(Settings.unlockCode), entered);
|
|
WindowPrompt(tr( "Password Changed" ), tr( "Password has been changed" ), tr( "OK" ));
|
|
}
|
|
}
|
|
|
|
//! Settings: Controllevel
|
|
else if (ret == ++Idx)
|
|
{
|
|
if (++Settings.parentalcontrol >= 5) Settings.parentalcontrol = 0;
|
|
}
|
|
|
|
//! Settings: Remember Unlock
|
|
else if (ret == ++Idx)
|
|
{
|
|
if (++Settings.RememberUnlock >= MAX_ON_OFF) Settings.RememberUnlock = 0;
|
|
}
|
|
|
|
//! Settings: Block Global Settings
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_GLOBAL_SETTINGS;
|
|
}
|
|
|
|
//! Settings: Block Gui Settings
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_GUI_SETTINGS;
|
|
}
|
|
|
|
//! Settings: Block Loader Settings
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_LOADER_SETTINGS;
|
|
}
|
|
|
|
//! Settings: Hard Drive Settings
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_HARD_DRIVE_SETTINGS;
|
|
}
|
|
|
|
//! Settings: Block Feature Settings
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_FEATURE_SETTINGS;
|
|
}
|
|
|
|
//! Settings: Block Parental Settings
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_PARENTAL_SETTINGS;
|
|
}
|
|
|
|
//! Settings: Block Sound Settings
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_SOUND_SETTINGS;
|
|
}
|
|
|
|
//! Settings: Block Theme Downloader
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_THEME_DOWNLOADER;
|
|
}
|
|
|
|
//! Settings: Block Theme Menu
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_THEME_MENU;
|
|
}
|
|
|
|
//! Settings: Block Custom Paths
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_CUSTOMPATH_SETTINGS;
|
|
}
|
|
|
|
//! Settings: Block Updates
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_UPDATES;
|
|
}
|
|
|
|
//! Settings: Block Reset Settings
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_RESET_SETTINGS;
|
|
}
|
|
|
|
//! Settings: Block Game Settings
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_GAME_SETTINGS;
|
|
}
|
|
|
|
//! Settings: Block HBC Menu
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_HBC_MENU;
|
|
}
|
|
|
|
//! Settings: Block Title Launcher
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_TITLE_LAUNCHER_MENU;
|
|
}
|
|
|
|
//! Settings: Block Cover Downloads
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_COVER_DOWNLOADS;
|
|
}
|
|
|
|
//! Settings: Block Game Install
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_GAME_INSTALL;
|
|
}
|
|
|
|
//! Settings: Block GameID Change
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_GAMEID_CHANGE;
|
|
}
|
|
|
|
//! Settings: Block Categories Menu
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_CATEGORIES_MENU;
|
|
}
|
|
|
|
//! Settings: Block Categories Modify
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_CATEGORIES_MOD;
|
|
}
|
|
|
|
//! Settings: Block SD Reload Button
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_SD_RELOAD_BUTTON;
|
|
}
|
|
|
|
//! Settings: Block Priiloader Override
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_PRIILOADER_OVERRIDE;
|
|
}
|
|
|
|
//! Settings: Block Loader Mode Button
|
|
else if (ret == ++Idx)
|
|
{
|
|
Settings.ParentalBlocks ^= BLOCK_LOADER_MODE_BUTTON;
|
|
}
|
|
|
|
SetOptionValues();
|
|
|
|
return MENU_NONE;
|
|
}
|