From 5b240060467d980d93521b7bbae0e81b06316b63 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Fri, 18 Aug 2023 22:30:50 +0300 Subject: [PATCH] Fix discrepancy between ConfigMem::BatteryLevel and PTM --- include/memory.hpp | 7 +++++-- include/services/service_manager.hpp | 2 +- src/core/memory.cpp | 16 ++++++++++++++-- src/emulator.cpp | 2 +- 4 files changed, 21 insertions(+), 6 deletions(-) diff --git a/include/memory.hpp b/include/memory.hpp index 2ae4cb28..4ad3d982 100644 --- a/include/memory.hpp +++ b/include/memory.hpp @@ -5,9 +5,11 @@ #include #include #include + +#include "config.hpp" #include "crypto/aes_engine.hpp" -#include "helpers.hpp" #include "handles.hpp" +#include "helpers.hpp" #include "loader/ncsd.hpp" #include "services/region_codes.hpp" #include "services/shared_font.hpp" @@ -154,13 +156,14 @@ private: static constexpr FirmwareInfo firm{.unk = 0, .revision = 0, .minor = 0x34, .major = 2, .syscoreVer = 2, .sdkVer = 0x0000F297}; // Adjusted upon loading a ROM based on the ROM header. Used by CFG::SecureInfoGetArea to get past region locks Regions region = Regions::USA; + const EmulatorConfig& config; public: u16 kernelVersion = 0; u32 usedUserMemory = u32(0_MB); // How much of the APPLICATION FCRAM range is used (allocated to the appcore) u32 usedSystemMemory = u32(0_MB); // Similar for the SYSTEM range (reserved for the syscore) - Memory(u64& cpuTicks); + Memory(u64& cpuTicks, const EmulatorConfig& config); void reset(); void* getReadPointer(u32 address); void* getWritePointer(u32 address); diff --git a/include/services/service_manager.hpp b/include/services/service_manager.hpp index fb12c946..823ad5fa 100644 --- a/include/services/service_manager.hpp +++ b/include/services/service_manager.hpp @@ -33,7 +33,7 @@ #include "services/ssl.hpp" #include "services/y2r.hpp" -class EmulatorConfig; +struct EmulatorConfig; // More circular dependencies!! class Kernel; diff --git a/src/core/memory.cpp b/src/core/memory.cpp index 39c8520d..8ea67191 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -6,10 +6,11 @@ #include "config_mem.hpp" #include "resource_limits.hpp" +#include "services/ptm.hpp" using namespace KernelMemoryTypes; -Memory::Memory(u64& cpuTicks) : cpuTicks(cpuTicks) { +Memory::Memory(u64& cpuTicks, const EmulatorConfig& config) : cpuTicks(cpuTicks), config(config) { fcram = new uint8_t[FCRAM_SIZE](); dspRam = new uint8_t[DSP_RAM_SIZE](); @@ -85,7 +86,18 @@ u8 Memory::read8(u32 vaddr) { return *(u8*)(pointer + offset); } else { switch (vaddr) { - case ConfigMem::BatteryState: return getBatteryState(true, true, BatteryLevel::FourBars); + case ConfigMem::BatteryState: { + // Set by the PTM module + // Charger plugged: Shows whether the charger is plugged + // Charging: Shows whether the charger is plugged and the console is actually charging, ie the battery is not full + // BatteryLevel: A battery level calculated via PTM::GetBatteryLevel + // These are all assembled into a bitfield and returned via config memory + const bool chargerPlugged = config.chargerPlugged; + const bool charging = config.chargerPlugged && (config.batteryPercentage < 100); + const auto batteryLevel = static_cast(PTMService::batteryPercentToLevel(config.batteryPercentage)); + + return getBatteryState(chargerPlugged, charging, batteryLevel); + } case ConfigMem::EnvInfo: return envInfo; case ConfigMem::HardwareType: return ConfigMem::HardwareCodes::Product; case ConfigMem::KernelVersionMinor: return u8(kernelVersion & 0xff); diff --git a/src/emulator.cpp b/src/emulator.cpp index 3e02f9f5..c667e13a 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -13,7 +13,7 @@ __declspec(dllexport) DWORD AmdPowerXpressRequestHighPerformance = 1; Emulator::Emulator() : config(std::filesystem::current_path() / "config.toml"), kernel(cpu, memory, gpu, config), cpu(memory, kernel), gpu(memory, config), - memory(cpu.getTicksRef()), cheats(memory, kernel.getServiceManager().getHID()), running(false), programRunning(false) + memory(cpu.getTicksRef(), config), cheats(memory, kernel.getServiceManager().getHID()), running(false), programRunning(false) #ifdef PANDA3DS_ENABLE_HTTP_SERVER , httpServer(this) #endif