2016-10-31 18:35:25 +00:00
|
|
|
/*
|
|
|
|
VitaShell
|
2017-01-12 16:45:52 +00:00
|
|
|
Copyright (C) 2015-2017, TheFloW
|
2016-10-31 18:35:25 +00:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "main.h"
|
2016-11-02 18:54:40 +00:00
|
|
|
#include "config.h"
|
2016-10-31 18:35:25 +00:00
|
|
|
#include "init.h"
|
|
|
|
#include "theme.h"
|
|
|
|
#include "language.h"
|
|
|
|
#include "settings.h"
|
2016-11-01 15:34:15 +00:00
|
|
|
#include "message_dialog.h"
|
2016-10-31 18:35:25 +00:00
|
|
|
#include "ime_dialog.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
#include "henkaku_config.h"
|
|
|
|
|
2016-10-31 19:31:44 +00:00
|
|
|
/*
|
2016-11-01 15:49:27 +00:00
|
|
|
* HENkaku settings *
|
2016-10-31 19:31:44 +00:00
|
|
|
- Enable PSN spoofing
|
|
|
|
- Enable unsafe homebrew
|
|
|
|
- Enable version spoofing
|
|
|
|
- Spoofed version
|
|
|
|
|
|
|
|
* Main *
|
|
|
|
- Language
|
|
|
|
- Theme
|
2016-11-02 18:54:40 +00:00
|
|
|
- CPU
|
|
|
|
- Disable auto-update
|
2016-10-31 19:31:44 +00:00
|
|
|
|
|
|
|
* FTP *
|
|
|
|
- Auto-start
|
|
|
|
|
|
|
|
* Status bar *
|
|
|
|
- Display battery percentage
|
|
|
|
*/
|
2016-10-31 18:35:25 +00:00
|
|
|
|
2016-12-12 18:56:02 +00:00
|
|
|
int taiReloadConfig();
|
2016-12-11 21:30:07 +00:00
|
|
|
int henkaku_reload_config();
|
|
|
|
|
2016-11-28 20:35:38 +00:00
|
|
|
void taihenReloadConfig();
|
2016-11-01 17:25:42 +00:00
|
|
|
void henkakuRestoreDefaultSettings();
|
|
|
|
void rebootDevice();
|
|
|
|
void shutdownDevice();
|
|
|
|
void suspendDevice();
|
|
|
|
|
2016-11-02 18:54:40 +00:00
|
|
|
static int changed = 0;
|
|
|
|
|
2016-10-31 19:31:44 +00:00
|
|
|
static HENkakuConfig henkaku_config;
|
2016-10-31 18:35:25 +00:00
|
|
|
|
2016-11-01 17:25:42 +00:00
|
|
|
static char spoofed_version[6];
|
2016-10-31 18:35:25 +00:00
|
|
|
|
2016-10-31 19:31:44 +00:00
|
|
|
static SettingsMenuEntry *settings_menu_entries = NULL;
|
|
|
|
static int n_settings_entries = 0;
|
2016-10-31 18:35:25 +00:00
|
|
|
|
2017-01-12 16:45:52 +00:00
|
|
|
static char *select_button_options[2];
|
|
|
|
|
2016-11-02 18:54:40 +00:00
|
|
|
static ConfigEntry settings_entries[] = {
|
2017-01-12 16:45:52 +00:00
|
|
|
{ "SELECT_BUTTON", CONFIG_TYPE_DECIMAL, (int *)&vitashell_config.select_button },
|
|
|
|
{ "DISABLE_AUTOUPDATE", CONFIG_TYPE_BOOLEAN, (int *)&vitashell_config.disable_autoupdate },
|
2016-11-02 18:54:40 +00:00
|
|
|
};
|
|
|
|
|
2016-11-01 15:49:27 +00:00
|
|
|
SettingsMenuOption henkaku_settings[] = {
|
2017-01-12 16:45:52 +00:00
|
|
|
{ HENKAKU_ENABLE_PSN_SPOOFING, SETTINGS_OPTION_TYPE_BOOLEAN, NULL, NULL, 0, NULL, 0, &henkaku_config.use_psn_spoofing },
|
|
|
|
{ HENKAKU_ENABLE_UNSAFE_HOMEBREW, SETTINGS_OPTION_TYPE_BOOLEAN, NULL, NULL, 0, NULL, 0, &henkaku_config.allow_unsafe_hb },
|
|
|
|
{ HENKAKU_ENABLE_VERSION_SPOOFING, SETTINGS_OPTION_TYPE_BOOLEAN, NULL, NULL, 0, NULL, 0, &henkaku_config.use_spoofed_version },
|
|
|
|
{ HENKAKU_SPOOFED_VERSION, SETTINGS_OPTION_TYPE_STRING, NULL, spoofed_version, sizeof(spoofed_version) - 1, NULL, 0, NULL },
|
|
|
|
{ HENKAKU_RESTORE_DEFAULT_SETTINGS, SETTINGS_OPTION_TYPE_CALLBACK, (void *)henkakuRestoreDefaultSettings, NULL, 0, NULL, 0, NULL },
|
|
|
|
{ HENKAKU_RELOAD_CONFIG, SETTINGS_OPTION_TYPE_CALLBACK, (void *)taihenReloadConfig, NULL, 0, NULL, 0, NULL },
|
2016-10-31 18:35:25 +00:00
|
|
|
};
|
|
|
|
|
2016-11-01 15:49:27 +00:00
|
|
|
SettingsMenuOption main_settings[] = {
|
2017-01-12 16:45:52 +00:00
|
|
|
// { VITASHELL_SETTINGS_LANGUAGE, SETTINGS_OPTION_TYPE_BOOLEAN, NULL, NULL, 0, NULL, 0, &language },
|
|
|
|
// { VITASHELL_SETTINGS_THEME, SETTINGS_OPTION_TYPE_BOOLEAN, NULL, NULL, 0, NULL, 0, &theme },
|
|
|
|
|
|
|
|
{ VITASHELL_SETTINGS_SELECT_BUTTON, SETTINGS_OPTION_TYPE_OPTIONS, NULL, NULL, 0,
|
|
|
|
select_button_options, sizeof(select_button_options) / sizeof(char **),
|
|
|
|
&vitashell_config.select_button },
|
|
|
|
{ VITASHELL_SETTINGS_NO_AUTO_UPDATE, SETTINGS_OPTION_TYPE_BOOLEAN, NULL, NULL, 0, NULL, 0, &vitashell_config.disable_autoupdate },
|
2016-11-01 17:25:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
SettingsMenuOption power_settings[] = {
|
2017-01-12 16:45:52 +00:00
|
|
|
{ VITASHELL_SETTINGS_REBOOT, SETTINGS_OPTION_TYPE_CALLBACK, (void *)rebootDevice, NULL, 0, NULL, 0, NULL },
|
|
|
|
{ VITASHELL_SETTINGS_POWEROFF, SETTINGS_OPTION_TYPE_CALLBACK, (void *)shutdownDevice, NULL, 0, NULL, 0, NULL },
|
|
|
|
{ VITASHELL_SETTINGS_STANDBY, SETTINGS_OPTION_TYPE_CALLBACK, (void *)suspendDevice, NULL, 0, NULL, 0, NULL },
|
2016-10-31 19:31:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
SettingsMenuEntry molecularshell_settings_menu_entries[] = {
|
2016-11-01 15:49:27 +00:00
|
|
|
{ HENKAKU_SETTINGS, henkaku_settings, sizeof(henkaku_settings) / sizeof(SettingsMenuOption) },
|
2016-11-02 18:54:40 +00:00
|
|
|
{ VITASHELL_SETTINGS_MAIN, main_settings, sizeof(main_settings) / sizeof(SettingsMenuOption) },
|
2016-11-01 17:25:42 +00:00
|
|
|
{ VITASHELL_SETTINGS_POWER, power_settings, sizeof(power_settings) / sizeof(SettingsMenuOption) },
|
2016-10-31 18:35:25 +00:00
|
|
|
};
|
|
|
|
|
2016-10-31 19:31:44 +00:00
|
|
|
SettingsMenuEntry vitashell_settings_menu_entries[] = {
|
2016-11-02 18:54:40 +00:00
|
|
|
{ VITASHELL_SETTINGS_MAIN, main_settings, sizeof(main_settings) / sizeof(SettingsMenuOption) },
|
2016-11-01 17:25:42 +00:00
|
|
|
{ VITASHELL_SETTINGS_POWER, power_settings, sizeof(power_settings) / sizeof(SettingsMenuOption) },
|
2016-10-31 19:31:44 +00:00
|
|
|
};
|
2016-10-31 18:35:25 +00:00
|
|
|
|
2016-10-31 19:31:44 +00:00
|
|
|
static SettingsMenu settings_menu;
|
2016-10-31 18:35:25 +00:00
|
|
|
|
|
|
|
static float easeOut(float x0, float x1, float a) {
|
|
|
|
float dx = (x1 - x0);
|
|
|
|
return ((dx * a) > 0.01f) ? (dx * a) : dx;
|
|
|
|
}
|
|
|
|
|
2016-11-02 18:54:40 +00:00
|
|
|
void loadSettingsConfig() {
|
|
|
|
// Load settings config file
|
|
|
|
memset(&vitashell_config, 0, sizeof(VitaShellConfig));
|
|
|
|
readConfig("ux0:VitaShell/settings.txt", settings_entries, sizeof(settings_entries) / sizeof(ConfigEntry));
|
|
|
|
}
|
|
|
|
|
|
|
|
void saveSettingsConfig() {
|
|
|
|
// Save settings config file
|
|
|
|
writeConfig("ux0:VitaShell/settings.txt", settings_entries, sizeof(settings_entries) / sizeof(ConfigEntry));
|
|
|
|
}
|
|
|
|
|
2016-11-01 17:25:42 +00:00
|
|
|
void rebootDevice() {
|
|
|
|
closeSettingsMenu();
|
|
|
|
scePowerRequestColdReset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void shutdownDevice() {
|
|
|
|
closeSettingsMenu();
|
|
|
|
scePowerRequestStandby();
|
|
|
|
}
|
|
|
|
|
|
|
|
void suspendDevice() {
|
|
|
|
closeSettingsMenu();
|
|
|
|
scePowerRequestSuspend();
|
|
|
|
}
|
|
|
|
|
|
|
|
void henkakuRestoreDefaultSettings() {
|
|
|
|
memset(&henkaku_config, 0, sizeof(HENkakuConfig));
|
2016-11-05 23:29:27 +00:00
|
|
|
henkaku_config.use_psn_spoofing = 1;
|
|
|
|
henkaku_config.use_spoofed_version = 1;
|
2016-11-01 17:25:42 +00:00
|
|
|
strcpy(spoofed_version, HENKAKU_DEFAULT_VERSION_STRING);
|
2016-11-28 20:35:38 +00:00
|
|
|
changed = 1;
|
|
|
|
|
|
|
|
infoDialog(language_container[HENKAKU_RESTORE_DEFAULT_MESSAGE]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void taihenReloadConfig() {
|
|
|
|
taiReloadConfig();
|
|
|
|
infoDialog(language_container[HENKAKU_RELOAD_CONFIG_MESSAGE]);
|
2016-11-01 17:25:42 +00:00
|
|
|
}
|
|
|
|
|
2016-10-31 18:35:25 +00:00
|
|
|
void initSettingsMenu() {
|
|
|
|
memset(&settings_menu, 0, sizeof(SettingsMenu));
|
|
|
|
settings_menu.status = SETTINGS_MENU_CLOSED;
|
|
|
|
|
2016-10-31 19:31:44 +00:00
|
|
|
if (is_molecular_shell) {
|
|
|
|
n_settings_entries = sizeof(molecularshell_settings_menu_entries) / sizeof(SettingsMenuEntry);
|
|
|
|
settings_menu_entries = molecularshell_settings_menu_entries;
|
|
|
|
} else {
|
|
|
|
n_settings_entries = sizeof(vitashell_settings_menu_entries) / sizeof(SettingsMenuEntry);
|
|
|
|
settings_menu_entries = vitashell_settings_menu_entries;
|
|
|
|
}
|
|
|
|
|
2016-10-31 18:35:25 +00:00
|
|
|
int i;
|
2016-10-31 19:31:44 +00:00
|
|
|
for (i = 0; i < n_settings_entries; i++)
|
2016-10-31 18:35:25 +00:00
|
|
|
settings_menu.n_options += settings_menu_entries[i].n_options;
|
2017-01-12 16:45:52 +00:00
|
|
|
|
|
|
|
select_button_options[0] = language_container[VITASHELL_SETTINGS_SELECT_BUTTON_USB];
|
|
|
|
select_button_options[1] = language_container[VITASHELL_SETTINGS_SELECT_BUTTON_FTP];
|
2016-10-31 18:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void openSettingsMenu() {
|
|
|
|
settings_menu.status = SETTINGS_MENU_OPENING;
|
2016-10-31 19:31:44 +00:00
|
|
|
settings_menu.entry_sel = 0;
|
|
|
|
settings_menu.option_sel = 0;
|
2016-10-31 18:35:25 +00:00
|
|
|
|
2016-10-31 19:31:44 +00:00
|
|
|
if (is_molecular_shell) {
|
2016-11-05 23:29:27 +00:00
|
|
|
memset(&henkaku_config, 0, sizeof(HENkakuConfig));
|
|
|
|
int res = ReadFile(henkaku_config_path, &henkaku_config, sizeof(HENkakuConfig));
|
2016-11-01 15:34:15 +00:00
|
|
|
|
2016-11-06 09:32:47 +00:00
|
|
|
if (res != sizeof(HENkakuConfig) || henkaku_config.magic != HENKAKU_CONFIG_MAGIC || henkaku_config.version != HENKAKU_VERSION) {
|
2016-11-01 15:34:15 +00:00
|
|
|
memset(&henkaku_config, 0, sizeof(HENkakuConfig));
|
2016-11-05 23:29:27 +00:00
|
|
|
henkaku_config.use_psn_spoofing = 1;
|
|
|
|
henkaku_config.use_spoofed_version = 1;
|
2016-11-01 15:34:15 +00:00
|
|
|
}
|
2016-10-31 18:35:25 +00:00
|
|
|
|
2016-11-06 09:32:47 +00:00
|
|
|
char a = (henkaku_config.spoofed_version >> 24) & 0xF;
|
|
|
|
char b = (henkaku_config.spoofed_version >> 20) & 0xF;
|
|
|
|
char c = (henkaku_config.spoofed_version >> 16) & 0xF;
|
|
|
|
char d = (henkaku_config.spoofed_version >> 12) & 0xF;
|
2016-10-31 18:35:25 +00:00
|
|
|
|
2016-10-31 19:31:44 +00:00
|
|
|
memset(spoofed_version, 0, sizeof(spoofed_version));
|
2016-10-31 18:35:25 +00:00
|
|
|
|
2016-10-31 19:31:44 +00:00
|
|
|
if (a || b || c || d) {
|
|
|
|
spoofed_version[0] = '0' + a;
|
|
|
|
spoofed_version[1] = '.';
|
|
|
|
spoofed_version[2] = '0' + b;
|
|
|
|
spoofed_version[3] = '0' + c;
|
|
|
|
spoofed_version[4] = '\0';
|
2016-10-31 18:35:25 +00:00
|
|
|
|
2016-10-31 19:31:44 +00:00
|
|
|
if (d) {
|
|
|
|
spoofed_version[4] = '0' + d;
|
|
|
|
spoofed_version[5] = '\0';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
strcpy(spoofed_version, HENKAKU_DEFAULT_VERSION_STRING);
|
2016-10-31 18:35:25 +00:00
|
|
|
}
|
|
|
|
}
|
2016-11-02 18:54:40 +00:00
|
|
|
|
|
|
|
changed = 0;
|
2016-10-31 18:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void closeSettingsMenu() {
|
|
|
|
settings_menu.status = SETTINGS_MENU_CLOSING;
|
|
|
|
|
2016-11-02 18:54:40 +00:00
|
|
|
if (changed) {
|
|
|
|
if (is_molecular_shell) {
|
|
|
|
if (IS_DIGIT(spoofed_version[0]) && spoofed_version[1] == '.' && IS_DIGIT(spoofed_version[2]) && IS_DIGIT(spoofed_version[3])) {
|
|
|
|
char a = spoofed_version[0] - '0';
|
|
|
|
char b = spoofed_version[2] - '0';
|
|
|
|
char c = spoofed_version[3] - '0';
|
|
|
|
char d = IS_DIGIT(spoofed_version[4]) ? spoofed_version[4] - '0' : '\0';
|
2016-10-31 18:38:16 +00:00
|
|
|
|
2016-11-06 09:32:47 +00:00
|
|
|
henkaku_config.spoofed_version = ((a << 24) | (b << 20) | (c << 16) | (d << 12));
|
2016-11-02 18:54:40 +00:00
|
|
|
} else {
|
|
|
|
henkaku_config.spoofed_version = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
henkaku_config.magic = HENKAKU_CONFIG_MAGIC;
|
|
|
|
henkaku_config.version = HENKAKU_VERSION;
|
2016-10-31 18:35:25 +00:00
|
|
|
|
2016-11-02 18:54:40 +00:00
|
|
|
WriteFile(henkaku_config_path, &henkaku_config, sizeof(HENkakuConfig));
|
2016-11-26 17:03:59 +00:00
|
|
|
|
|
|
|
henkaku_reload_config();
|
2016-11-02 18:54:40 +00:00
|
|
|
}
|
2016-11-01 08:53:35 +00:00
|
|
|
|
2016-11-02 18:54:40 +00:00
|
|
|
saveSettingsConfig();
|
2016-10-31 19:31:44 +00:00
|
|
|
}
|
2016-10-31 18:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int getSettingsMenuStatus() {
|
|
|
|
return settings_menu.status;
|
|
|
|
}
|
|
|
|
|
|
|
|
void drawSettingsMenu() {
|
|
|
|
if (settings_menu.status == SETTINGS_MENU_CLOSED)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Closing settings menu
|
|
|
|
if (settings_menu.status == SETTINGS_MENU_CLOSING) {
|
|
|
|
if (settings_menu.cur_pos > 0.0f) {
|
|
|
|
settings_menu.cur_pos -= easeOut(0.0f, settings_menu.cur_pos, 0.25f);
|
|
|
|
} else {
|
|
|
|
settings_menu.status = SETTINGS_MENU_CLOSED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Opening settings menu
|
|
|
|
if (settings_menu.status == SETTINGS_MENU_OPENING) {
|
|
|
|
if (settings_menu.cur_pos < SCREEN_HEIGHT) {
|
|
|
|
settings_menu.cur_pos += easeOut(settings_menu.cur_pos, SCREEN_HEIGHT, 0.25f);
|
|
|
|
} else {
|
|
|
|
settings_menu.status = SETTINGS_MENU_OPENED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draw settings menu
|
|
|
|
vita2d_draw_texture(settings_image, 0.0f, SCREEN_HEIGHT - settings_menu.cur_pos);
|
|
|
|
|
|
|
|
float y = SCREEN_HEIGHT - settings_menu.cur_pos + START_Y;
|
|
|
|
|
|
|
|
int i;
|
2016-10-31 19:31:44 +00:00
|
|
|
for (i = 0; i < n_settings_entries; i++) {
|
2016-10-31 18:35:25 +00:00
|
|
|
// Title
|
|
|
|
float x = vita2d_pgf_text_width(font, FONT_SIZE, language_container[settings_menu_entries[i].name]);
|
|
|
|
pgf_draw_text(ALIGN_CENTER(SCREEN_WIDTH, x), y, SETTINGS_MENU_TITLE_COLOR, FONT_SIZE, language_container[settings_menu_entries[i].name]);
|
|
|
|
|
|
|
|
y += FONT_Y_SPACE;
|
|
|
|
|
|
|
|
SettingsMenuOption *options = settings_menu_entries[i].options;
|
|
|
|
|
|
|
|
int j;
|
|
|
|
for (j = 0; j < settings_menu_entries[i].n_options; j++) {
|
|
|
|
// Focus
|
2016-10-31 19:31:44 +00:00
|
|
|
if (settings_menu.entry_sel == i && settings_menu.option_sel == j)
|
2016-10-31 18:35:25 +00:00
|
|
|
vita2d_draw_rectangle(SHELL_MARGIN_X, y + 3.0f, MARK_WIDTH, FONT_Y_SPACE, SETTINGS_MENU_FOCUS_COLOR);
|
|
|
|
|
2016-11-01 17:25:42 +00:00
|
|
|
if (options[j].type == SETTINGS_OPTION_TYPE_CALLBACK) {
|
|
|
|
// Item
|
|
|
|
float x = vita2d_pgf_text_width(font, FONT_SIZE, language_container[options[j].name]);
|
|
|
|
pgf_draw_text(ALIGN_CENTER(SCREEN_WIDTH, x), y, SETTINGS_MENU_ITEM_COLOR, FONT_SIZE, language_container[options[j].name]);
|
|
|
|
} else {
|
|
|
|
// Item
|
|
|
|
float x = vita2d_pgf_text_width(font, FONT_SIZE, language_container[options[j].name]);
|
|
|
|
pgf_draw_text(ALIGN_RIGHT(SCREEN_HALF_WIDTH - 10.0f, x), y, SETTINGS_MENU_ITEM_COLOR, FONT_SIZE, language_container[options[j].name]);
|
|
|
|
|
|
|
|
// Option
|
2017-01-12 16:45:52 +00:00
|
|
|
switch (options[j].type) {
|
|
|
|
case SETTINGS_OPTION_TYPE_BOOLEAN:
|
|
|
|
pgf_draw_text(SCREEN_HALF_WIDTH + 10.0f, y, SETTINGS_MENU_OPTION_COLOR, FONT_SIZE, *(options[j].value) ? language_container[ON] : language_container[OFF]);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SETTINGS_OPTION_TYPE_STRING:
|
|
|
|
pgf_draw_text(SCREEN_HALF_WIDTH + 10.0f, y, SETTINGS_MENU_OPTION_COLOR, FONT_SIZE, options[j].string);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SETTINGS_OPTION_TYPE_OPTIONS:
|
|
|
|
{
|
|
|
|
int value = *(options[j].value);
|
|
|
|
pgf_draw_text(SCREEN_HALF_WIDTH + 10.0f, y, SETTINGS_MENU_OPTION_COLOR, FONT_SIZE, options[j].options[value]);
|
|
|
|
break;
|
|
|
|
}
|
2016-11-01 17:25:42 +00:00
|
|
|
}
|
2016-10-31 18:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
y += FONT_Y_SPACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
y += FONT_Y_SPACE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-01 15:34:15 +00:00
|
|
|
static int agreement = SETTINGS_AGREEMENT_NONE;
|
|
|
|
|
|
|
|
void settingsAgree() {
|
|
|
|
agreement = SETTINGS_AGREEMENT_AGREE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void settingsDisagree() {
|
|
|
|
agreement = SETTINGS_AGREEMENT_DISAGREE;
|
|
|
|
}
|
|
|
|
|
2016-10-31 18:35:25 +00:00
|
|
|
void settingsMenuCtrl() {
|
2016-11-01 15:34:15 +00:00
|
|
|
SettingsMenuOption *option = &settings_menu_entries[settings_menu.entry_sel].options[settings_menu.option_sel];
|
|
|
|
|
|
|
|
// Agreement
|
|
|
|
if (agreement != SETTINGS_AGREEMENT_NONE) {
|
|
|
|
agreement = SETTINGS_AGREEMENT_NONE;
|
|
|
|
|
|
|
|
if (option->name == HENKAKU_ENABLE_UNSAFE_HOMEBREW) {
|
|
|
|
*(option->value) = !*(option->value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change options
|
|
|
|
if (pressed_buttons & (SCE_CTRL_ENTER | SCE_CTRL_LEFT | SCE_CTRL_RIGHT)) {
|
2016-11-02 18:54:40 +00:00
|
|
|
changed = 1;
|
|
|
|
|
2016-11-01 15:34:15 +00:00
|
|
|
if (option->name == HENKAKU_ENABLE_UNSAFE_HOMEBREW) {
|
|
|
|
if (*(option->value) == 0) {
|
|
|
|
initMessageDialog(SCE_MSG_DIALOG_BUTTON_TYPE_OK, language_container[HENKAKU_UNSAFE_HOMEBREW_MESSAGE]);
|
|
|
|
dialog_step = DIALOG_STEP_SETTINGS_AGREEMENT;
|
|
|
|
} else {
|
|
|
|
*(option->value) = !*(option->value);
|
|
|
|
}
|
|
|
|
} else {
|
2017-01-12 16:45:52 +00:00
|
|
|
switch (option->type) {
|
|
|
|
case SETTINGS_OPTION_TYPE_BOOLEAN:
|
|
|
|
*(option->value) = !*(option->value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SETTINGS_OPTION_TYPE_STRING:
|
|
|
|
initImeDialog(language_container[option->name], option->string, option->size_string, SCE_IME_TYPE_EXTENDED_NUMBER, 0);
|
|
|
|
dialog_step = DIALOG_STEP_SETTINGS_STRING;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SETTINGS_OPTION_TYPE_CALLBACK:
|
|
|
|
option->callback(&option);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SETTINGS_OPTION_TYPE_OPTIONS:
|
|
|
|
{
|
|
|
|
if (pressed_buttons & SCE_CTRL_LEFT) {
|
|
|
|
if (*(option->value) > 0)
|
|
|
|
(*(option->value))--;
|
|
|
|
else
|
|
|
|
*(option->value) = option->n_options-1;
|
|
|
|
} else if (pressed_buttons & (SCE_CTRL_ENTER | SCE_CTRL_RIGHT)) {
|
|
|
|
if (*(option->value) < option->n_options-1)
|
|
|
|
(*(option->value))++;
|
|
|
|
else
|
|
|
|
*(option->value) = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2016-11-01 15:34:15 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-31 18:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Move
|
|
|
|
if (hold_buttons & SCE_CTRL_UP || hold2_buttons & SCE_CTRL_LEFT_ANALOG_UP) {
|
2016-10-31 19:31:44 +00:00
|
|
|
if (settings_menu.option_sel > 0) {
|
|
|
|
settings_menu.option_sel--;
|
|
|
|
} else if (settings_menu.entry_sel > 0) {
|
|
|
|
settings_menu.entry_sel--;
|
2017-01-12 16:45:52 +00:00
|
|
|
settings_menu.option_sel = settings_menu_entries[settings_menu.entry_sel].n_options-1;
|
2016-10-31 19:31:44 +00:00
|
|
|
}
|
2016-10-31 18:35:25 +00:00
|
|
|
} else if (hold_buttons & SCE_CTRL_DOWN || hold2_buttons & SCE_CTRL_LEFT_ANALOG_DOWN) {
|
2017-01-12 16:45:52 +00:00
|
|
|
if (settings_menu.option_sel < settings_menu_entries[settings_menu.entry_sel].n_options-1) {
|
2016-10-31 19:31:44 +00:00
|
|
|
settings_menu.option_sel++;
|
2017-01-12 16:45:52 +00:00
|
|
|
} else if (settings_menu.entry_sel < n_settings_entries-1) {
|
2016-10-31 19:31:44 +00:00
|
|
|
settings_menu.entry_sel++;
|
|
|
|
settings_menu.option_sel = 0;
|
|
|
|
}
|
2016-10-31 18:35:25 +00:00
|
|
|
}
|
|
|
|
|
2016-11-01 15:34:15 +00:00
|
|
|
// Close
|
|
|
|
if (pressed_buttons & (SCE_CTRL_CANCEL | SCE_CTRL_START)) {
|
|
|
|
closeSettingsMenu();
|
2016-10-31 18:35:25 +00:00
|
|
|
}
|
|
|
|
}
|