574 lines
15 KiB
C
Raw Normal View History

/*
* This file is part of Luma3DS
2022-03-13 18:00:00 +00:00
* Copyright (C) 2016-2022 Aurora Wright, TuxSH
*
* 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/>.
*
* Additional Terms 7.b and 7.c of GPLv3 apply to this file:
* * Requiring preservation of specified reasonable legal notices or
* author attributions in that material or in the Appropriate Legal
* Notices displayed by works containing it.
* * Prohibiting misrepresentation of the origin of that material,
* or requiring that modified versions of such material be marked in
* reasonable ways as different from the original version.
*/
#include <3ds.h>
#include "menu.h"
#include "draw.h"
#include "fmt.h"
#include "memory.h"
#include "ifile.h"
#include "menus.h"
#include "utils.h"
#include "luma_config.h"
#include "menus/n3ds.h"
2017-12-21 20:14:04 +03:00
#include "menus/cheats.h"
#include "minisoc.h"
#include "plugin.h"
#include "menus/screen_filters.h"
#include "shell.h"
u32 menuCombo = 0;
bool isHidInitialized = false;
u32 mcuFwVersion = 0;
u8 mcuInfoTable[9] = {0};
bool mcuInfoTableRead = false;
const char *topScreenType = NULL;
const char *bottomScreenType = NULL;
bool areScreenTypesInitialized = false;
// libctru redefinition:
bool hidShouldUseIrrst(void)
{
// ir:rst exposes only two sessions :(
return false;
}
2020-05-15 02:06:52 +01:00
static inline u32 convertHidKeys(u32 keys)
{
2020-05-15 02:06:52 +01:00
// Nothing to do yet
return keys;
}
u32 waitInputWithTimeout(s32 msec)
{
s32 n = 0;
u32 keys;
do
{
svcSleepThread(1 * 1000 * 1000LL);
2020-05-15 02:06:52 +01:00
Draw_Lock();
2020-05-15 20:00:13 +01:00
if (!isHidInitialized || menuShouldExit)
2020-05-15 02:06:52 +01:00
{
keys = 0;
Draw_Unlock();
break;
}
n++;
hidScanInput();
keys = convertHidKeys(hidKeysDown()) | (convertHidKeys(hidKeysDownRepeat()) & DIRECTIONAL_KEYS);
2020-05-15 02:06:52 +01:00
Draw_Unlock();
2020-05-15 20:00:13 +01:00
} while (keys == 0 && !menuShouldExit && isHidInitialized && (msec < 0 || n < msec));
return keys;
}
u32 waitInputWithTimeoutEx(u32 *outHeldKeys, s32 msec)
{
s32 n = 0;
u32 keys;
do
{
svcSleepThread(1 * 1000 * 1000LL);
Draw_Lock();
if (!isHidInitialized || menuShouldExit)
{
keys = 0;
Draw_Unlock();
break;
}
n++;
hidScanInput();
keys = convertHidKeys(hidKeysDown()) | (convertHidKeys(hidKeysDownRepeat()) & DIRECTIONAL_KEYS);
*outHeldKeys = convertHidKeys(hidKeysHeld());
Draw_Unlock();
} while (keys == 0 && !menuShouldExit && isHidInitialized && (msec < 0 || n < msec));
return keys;
}
u32 waitInput(void)
{
return waitInputWithTimeout(-1);
}
2020-05-15 02:06:52 +01:00
static u32 scanHeldKeys(void)
{
u32 keys;
Draw_Lock();
2020-05-15 20:00:13 +01:00
if (!isHidInitialized || menuShouldExit)
2020-05-15 02:06:52 +01:00
keys = 0;
else
{
hidScanInput();
keys = convertHidKeys(hidKeysHeld());
}
Draw_Unlock();
return keys;
}
u32 waitComboWithTimeout(s32 msec)
2017-06-06 01:21:52 +02:00
{
s32 n = 0;
2020-05-15 02:06:52 +01:00
u32 keys = 0;
u32 tempKeys = 0;
2017-06-06 01:21:52 +02:00
2020-05-15 02:06:52 +01:00
// Wait for nothing to be pressed
2020-05-15 20:00:13 +01:00
while (scanHeldKeys() != 0 && !menuShouldExit && isHidInitialized && (msec < 0 || n < msec))
2020-05-15 02:06:52 +01:00
{
svcSleepThread(1 * 1000 * 1000LL);
n++;
}
2020-05-15 20:00:13 +01:00
if (menuShouldExit || !isHidInitialized || !(msec < 0 || n < msec))
2020-05-15 02:06:52 +01:00
return 0;
2017-06-06 01:21:52 +02:00
do
{
svcSleepThread(1 * 1000 * 1000LL);
2020-05-15 02:06:52 +01:00
n++;
tempKeys = scanHeldKeys();
for (u32 i = 0x10000; i > 0; i--)
{
if (tempKeys != scanHeldKeys()) break;
if (i == 1) keys = tempKeys;
}
}
2020-05-15 20:00:13 +01:00
while((keys == 0 || scanHeldKeys() != 0) && !menuShouldExit && isHidInitialized && (msec < 0 || n < msec));
2017-06-06 01:21:52 +02:00
return keys;
2017-06-06 01:21:52 +02:00
}
u32 waitCombo(void)
{
return waitComboWithTimeout(-1);
2017-06-06 01:21:52 +02:00
}
static MyThread menuThread;
2023-10-31 18:38:40 +01:00
static u8 CTR_ALIGN(8) menuThreadStack[0x3000];
static float batteryPercentage;
static float batteryVoltage;
static u8 batteryTemperature;
static Result menuUpdateMcuInfo(void)
{
Result res = 0;
u8 data[4];
if (!isServiceUsable("mcu::HWC"))
return -1;
Handle *mcuHwcHandlePtr = mcuHwcGetSessionHandle();
*mcuHwcHandlePtr = 0;
res = srvGetServiceHandle(mcuHwcHandlePtr, "mcu::HWC");
// Try to steal the handle if some other process is using the service (custom SVC)
if (R_FAILED(res))
res = svcControlService(SERVICEOP_STEAL_CLIENT_SESSION, mcuHwcHandlePtr, "mcu::HWC");
if (res != 0)
return res;
2021-01-11 01:02:12 +00:00
// Read single-byte mcu regs 0x0A to 0x0D directly
res = MCUHWC_ReadRegister(0xA, data, 4);
if (R_SUCCEEDED(res))
{
batteryTemperature = data[0];
// The battery percentage isn't very precise... its precision ranges from 0.09% to 0.14% approx
// Round to 0.1%
batteryPercentage = data[1] + data[2] / 256.0f;
batteryPercentage = (u32)((batteryPercentage + 0.05f) * 10.0f) / 10.0f;
// Round battery voltage to 0.01V
batteryVoltage = 0.02f * data[3];
batteryVoltage = (u32)((batteryVoltage + 0.005f) * 100.0f) / 100.0f;
}
// Read mcu fw version if not already done
if (mcuFwVersion == 0)
{
u8 minor = 0, major = 0;
MCUHWC_GetFwVerHigh(&major);
MCUHWC_GetFwVerLow(&minor);
// If it has failed, mcuFwVersion will be set to 0 again
mcuFwVersion = SYSTEM_VERSION(major - 0x10, minor, 0);
}
if (!mcuInfoTableRead)
mcuInfoTableRead = R_SUCCEEDED(MCUHWC_ReadRegister(0x7F, mcuInfoTable, sizeof(mcuInfoTable)));
svcCloseHandle(*mcuHwcHandlePtr);
return res;
}
static const char *menuGetScreenTypeStr(u8 vendorId)
{
switch (vendorId)
{
case 1: return "IPS"; // SHARP
case 12: return "TN"; // JDN
default: return "unknown";
}
}
static void menuReadScreenTypes(void)
{
if (areScreenTypesInitialized)
return;
if (!isN3DS)
{
// Old3DS never have IPS screens and GetVendors is not implemented
topScreenType = "TN";
bottomScreenType = "TN";
areScreenTypesInitialized = true;
}
else
{
srvSetBlockingPolicy(false);
Result res = gspLcdInit();
if (R_SUCCEEDED(res))
{
u8 vendors = 0;
if (R_SUCCEEDED(GSPLCD_GetVendors(&vendors)))
{
topScreenType = menuGetScreenTypeStr(vendors >> 4);
bottomScreenType = menuGetScreenTypeStr(vendors & 0xF);
areScreenTypesInitialized = true;
}
gspLcdExit();
}
srvSetBlockingPolicy(true);
}
}
2020-05-17 16:42:44 +01:00
static inline u32 menuAdvanceCursor(u32 pos, u32 numItems, s32 displ)
{
return (pos + numItems + displ) % numItems;
}
static inline bool menuItemIsHidden(const MenuItem *item)
{
return item->visibility != NULL && !item->visibility();
}
bool menuCheckN3ds(void)
{
return isN3DS;
}
u32 menuCountItems(const Menu *menu)
{
u32 n;
for (n = 0; menu->items[n].action_type != MENU_END; n++);
return n;
}
MyThread *menuCreateThread(void)
{
if(R_FAILED(MyThread_Create(&menuThread, menuThreadMain, menuThreadStack, 0x3000, 52, CORE_SYSTEM)))
svcBreak(USERBREAK_PANIC);
return &menuThread;
}
u32 menuCombo;
u32 g_blockMenuOpen = 0;
void menuThreadMain(void)
{
2020-05-17 16:42:44 +01:00
if(isN3DS)
N3DSMenu_UpdateStatus();
while (!isServiceUsable("ac:u") || !isServiceUsable("hid:USER") || !isServiceUsable("gsp::Gpu") || !isServiceUsable("gsp::Lcd") || !isServiceUsable("cdc:CHK"))
svcSleepThread(250 * 1000 * 1000LL);
handleShellOpened();
hidInit(); // assume this doesn't fail
isHidInitialized = true;
menuReadScreenTypes();
2020-05-15 20:00:13 +01:00
while(!preTerminationRequested)
{
svcSleepThread(50 * 1000 * 1000LL);
2020-05-15 20:00:13 +01:00
if (menuShouldExit)
continue;
Cheat_ApplyCheats();
if(((scanHeldKeys() & menuCombo) == menuCombo) && !g_blockMenuOpen)
2017-12-21 20:14:04 +03:00
{
menuEnter();
if(isN3DS) N3DSMenu_UpdateStatus();
PluginLoader__UpdateMenu();
menuShow(&rosalinaMenu);
menuLeave();
2017-12-21 20:14:04 +03:00
}
if (saveSettingsRequest) {
LumaConfig_SaveSettings();
saveSettingsRequest = false;
}
}
}
static s32 menuRefCount = 0;
void menuEnter(void)
{
Draw_Lock();
2020-05-15 20:00:13 +01:00
if(!menuShouldExit && menuRefCount == 0)
{
2020-05-15 20:00:13 +01:00
menuRefCount++;
svcKernelSetState(0x10000, 2 | 1);
svcSleepThread(5 * 1000 * 100LL);
if (R_FAILED(Draw_AllocateFramebufferCache(FB_BOTTOM_SIZE)))
{
// Oops
menuRefCount = 0;
svcKernelSetState(0x10000, 2 | 1);
svcSleepThread(5 * 1000 * 100LL);
}
else
Draw_SetupFramebuffer();
}
Draw_Unlock();
}
void menuLeave(void)
{
svcSleepThread(50 * 1000 * 1000);
Draw_Lock();
if(--menuRefCount == 0)
{
Draw_RestoreFramebuffer();
Draw_FreeFramebufferCache();
svcKernelSetState(0x10000, 2 | 1);
}
Draw_Unlock();
}
static void menuDraw(Menu *menu, u32 selected)
{
char versionString[16];
s64 out;
u32 version, commitHash;
bool isRelease;
Result mcuInfoRes = menuUpdateMcuInfo();
svcGetSystemInfo(&out, 0x10000, 0);
version = (u32)out;
svcGetSystemInfo(&out, 0x10000, 1);
commitHash = (u32)out;
svcGetSystemInfo(&out, 0x10000, 0x200);
isRelease = (bool)out;
if(GET_VERSION_REVISION(version) == 0)
sprintf(versionString, "v%lu.%lu", GET_VERSION_MAJOR(version), GET_VERSION_MINOR(version));
else
sprintf(versionString, "v%lu.%lu.%lu", GET_VERSION_MAJOR(version), GET_VERSION_MINOR(version), GET_VERSION_REVISION(version));
Draw_DrawString(10, 10, COLOR_TITLE, menu->title);
2020-05-17 16:42:44 +01:00
u32 numItems = menuCountItems(menu);
u32 dispY = 0;
2020-05-17 16:42:44 +01:00
for(u32 i = 0; i < numItems; i++)
{
2020-05-17 16:42:44 +01:00
if (menuItemIsHidden(&menu->items[i]))
continue;
Draw_DrawString(30, 30 + dispY, COLOR_WHITE, menu->items[i].title);
Draw_DrawCharacter(10, 30 + dispY, COLOR_TITLE, i == selected ? '>' : ' ');
dispY += SPACING_Y;
}
if(miniSocEnabled)
{
char ipBuffer[17];
u32 ip = socGethostid();
u8 *addr = (u8 *)&ip;
int n = sprintf(ipBuffer, "%hhu.%hhu.%hhu.%hhu", addr[0], addr[1], addr[2], addr[3]);
Draw_DrawString(SCREEN_BOT_WIDTH - 10 - SPACING_X * n, 10, COLOR_WHITE, ipBuffer);
}
#if 0
else if (areScreenTypesInitialized)
{
char screenTypesBuffer[32];
int n = sprintf(screenTypesBuffer, "T: %s | B: %s", topScreenType, bottomScreenType);
Draw_DrawString(SCREEN_BOT_WIDTH - 10 - SPACING_X * n, 10, COLOR_WHITE, screenTypesBuffer);
}
#endif
else
Draw_DrawFormattedString(SCREEN_BOT_WIDTH - 10 - SPACING_X * 15, 10, COLOR_WHITE, "%15s", "");
if(mcuInfoRes == 0)
{
u32 voltageInt = (u32)batteryVoltage;
u32 voltageFrac = (u32)(batteryVoltage * 100.0f) % 100u;
u32 percentageInt = (u32)batteryPercentage;
u32 percentageFrac = (u32)(batteryPercentage * 10.0f) % 10u;
char buf[32];
int n = sprintf(
buf, " %02hhu\xF8""C %lu.%02luV %lu.%lu%%", batteryTemperature, // CP437
voltageInt, voltageFrac,
percentageInt, percentageFrac
);
Draw_DrawString(SCREEN_BOT_WIDTH - 10 - SPACING_X * n, SCREEN_BOT_HEIGHT - 20, COLOR_WHITE, buf);
}
else
Draw_DrawFormattedString(SCREEN_BOT_WIDTH - 10 - SPACING_X * 19, SCREEN_BOT_HEIGHT - 20, COLOR_WHITE, "%19s", "");
if(isRelease)
Draw_DrawFormattedString(10, SCREEN_BOT_HEIGHT - 20, COLOR_TITLE, "Luma3DS %s", versionString);
else
Draw_DrawFormattedString(10, SCREEN_BOT_HEIGHT - 20, COLOR_TITLE, "Luma3DS %s-%08lx", versionString, commitHash);
Draw_FlushFramebuffer();
}
void menuShow(Menu *root)
{
u32 selectedItem = 0;
Menu *currentMenu = root;
u32 nbPreviousMenus = 0;
Menu *previousMenus[0x80];
2017-08-16 23:46:36 +02:00
u32 previousSelectedItems[0x80];
2020-05-17 16:42:44 +01:00
u32 numItems = menuCountItems(currentMenu);
if (menuItemIsHidden(&currentMenu->items[selectedItem]))
selectedItem = menuAdvanceCursor(selectedItem, numItems, 1);
Draw_Lock();
Draw_ClearFramebuffer();
Draw_FlushFramebuffer();
2020-05-15 02:06:52 +01:00
hidSetRepeatParameters(0, 0);
menuDraw(currentMenu, selectedItem);
Draw_Unlock();
2020-05-15 02:06:52 +01:00
bool menuComboReleased = false;
do
{
u32 pressed = waitInputWithTimeout(1000);
2020-05-17 16:42:44 +01:00
numItems = menuCountItems(currentMenu);
2020-05-15 02:06:52 +01:00
if(!menuComboReleased && (scanHeldKeys() & menuCombo) != menuCombo)
{
menuComboReleased = true;
Draw_Lock();
hidSetRepeatParameters(200, 100);
Draw_Unlock();
}
if(pressed & KEY_A)
{
Draw_Lock();
Draw_ClearFramebuffer();
Draw_FlushFramebuffer();
Draw_Unlock();
switch(currentMenu->items[selectedItem].action_type)
{
case METHOD:
if(currentMenu->items[selectedItem].method != NULL)
currentMenu->items[selectedItem].method();
break;
case MENU:
2017-08-16 23:46:36 +02:00
previousSelectedItems[nbPreviousMenus] = selectedItem;
previousMenus[nbPreviousMenus++] = currentMenu;
currentMenu = currentMenu->items[selectedItem].menu;
selectedItem = 0;
break;
2020-05-17 16:42:44 +01:00
default:
__builtin_trap(); // oops
break;
}
Draw_Lock();
Draw_ClearFramebuffer();
Draw_FlushFramebuffer();
Draw_Unlock();
}
2020-05-15 02:06:52 +01:00
else if(pressed & KEY_B)
{
while (nbPreviousMenus == 0 && (scanHeldKeys() & KEY_B)); // wait a bit before exiting rosalina
Draw_Lock();
Draw_ClearFramebuffer();
Draw_FlushFramebuffer();
Draw_Unlock();
if(nbPreviousMenus > 0)
2017-08-16 23:46:36 +02:00
{
currentMenu = previousMenus[--nbPreviousMenus];
2017-08-16 23:46:36 +02:00
selectedItem = previousSelectedItems[nbPreviousMenus];
}
else
break;
}
2020-05-15 02:06:52 +01:00
else if(pressed & KEY_DOWN)
{
2020-05-17 16:42:44 +01:00
selectedItem = menuAdvanceCursor(selectedItem, numItems, 1);
if (menuItemIsHidden(&currentMenu->items[selectedItem]))
selectedItem = menuAdvanceCursor(selectedItem, numItems, 1);
}
2020-05-15 02:06:52 +01:00
else if(pressed & KEY_UP)
{
2020-05-17 16:42:44 +01:00
selectedItem = menuAdvanceCursor(selectedItem, numItems, -1);
if (menuItemIsHidden(&currentMenu->items[selectedItem]))
selectedItem = menuAdvanceCursor(selectedItem, numItems, -1);
}
Draw_Lock();
menuDraw(currentMenu, selectedItem);
Draw_Unlock();
}
2020-05-15 20:00:13 +01:00
while(!menuShouldExit);
}