// Copyright (c) 2012- PPSSPP Project. // 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, version 2.0 or later versions. // 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 2.0 for more details. // A copy of the GPL 2.0 should have been included with the program. // If not, see http://www.gnu.org/licenses/ // Official git repository and contact information can be found at // https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/. #include "HLE.h" #include "FunctionWrappers.h" #include "../MIPS/MIPS.h" #include "../Config.h" #include "ChunkFile.h" #include "sceUtility.h" const int PSP_UMD_POPUP_DISABLE = 0; const int PSP_UMD_POPUP_ENABLE = 1; #define PSP_IMPOSE_BATTICON_NONE 0x80000000 #define PSP_IMPOSE_BATTICON_VISIBLE 0x00000000 #define PSP_IMPOSE_BATTICON_BLINK 0x00000001 static u32 language = PSP_SYSTEMPARAM_LANGUAGE_ENGLISH; static u32 buttonValue = PSP_SYSTEMPARAM_BUTTON_CIRCLE; static u32 umdPopup = PSP_UMD_POPUP_DISABLE; static u32 backlightOffTime; void __ImposeInit() { language = g_Config.ilanguage; buttonValue = g_Config.bButtonPreference?PSP_SYSTEMPARAM_BUTTON_CROSS:PSP_SYSTEMPARAM_BUTTON_CIRCLE; umdPopup = PSP_UMD_POPUP_DISABLE; backlightOffTime = 0; } void __ImposeDoState(PointerWrap &p) { p.Do(language); p.Do(buttonValue); p.Do(umdPopup); p.Do(backlightOffTime); p.DoMarker("sceImpose"); } u32 sceImposeGetBatteryIconStatus(u32 chargingPtr, u32 iconStatusPtr) { DEBUG_LOG(HLE, "sceImposeGetBatteryIconStatus(%08x, %08x)", chargingPtr, iconStatusPtr); if (Memory::IsValidAddress(chargingPtr)) Memory::Write_U32(PSP_IMPOSE_BATTICON_NONE, chargingPtr); if (Memory::IsValidAddress(iconStatusPtr)) Memory::Write_U32(3, iconStatusPtr); return 0; } u32 sceImposeSetLanguageMode(u32 languageVal, u32 buttonVal) { DEBUG_LOG(HLE, "sceImposeSetLanguageMode(%08x, %08x)", languageVal, buttonVal); language = languageVal; buttonValue = buttonVal; return 0; } u32 sceImposeGetLanguageMode(u32 languagePtr, u32 btnPtr) { DEBUG_LOG(HLE, "sceImposeGetLanguageMode(%08x, %08x)", languagePtr, btnPtr); if (Memory::IsValidAddress(languagePtr)) Memory::Write_U32(language, languagePtr); if (Memory::IsValidAddress(btnPtr)) Memory::Write_U32(buttonValue, btnPtr); return 0; } u32 sceImposeSetUMDPopup(int mode) { DEBUG_LOG(HLE, "sceImposeSetUMDPopup(%i)", mode); umdPopup = mode; return 0; } u32 sceImposeGetUMDPopup() { DEBUG_LOG(HLE, "sceImposeGetUMDPopup()"); return umdPopup; } u32 sceImposeSetBacklightOffTime(int time) { DEBUG_LOG(HLE, "sceImposeSetBacklightOffTime(%i)", time); backlightOffTime = time; return 0; } u32 sceImposeGetBacklightOffTime() { DEBUG_LOG(HLE, "sceImposeGetBacklightOffTime()"); return backlightOffTime; } //OSD stuff? home button? const HLEFunction sceImpose[] = { {0x36aa6e91, WrapU_UU, "sceImposeSetLanguageMode"}, // Seen {0x381bd9e7, 0, "sceImposeHomeButton"}, {0x0F341BE4, 0, "sceImposeGetHomePopup"}, {0x5595A71A, 0, "sceImposeSetHomePopup"}, {0x24fd7bcf, WrapU_UU, "sceImposeGetLanguageMode"}, {0x8c943191, WrapU_UU, "sceImposeGetBatteryIconStatus"}, {0x72189C48, WrapU_I, "sceImposeSetUMDPopup"}, {0xE0887BC8, WrapU_V, "sceImposeGetUMDPopup"}, {0x8F6E3518, WrapU_V, "sceImposeGetBacklightOffTime"}, {0x967F6D4A, WrapU_I, "sceImposeSetBacklightOffTime"}, }; void Register_sceImpose() { RegisterModule("sceImpose", ARRAY_SIZE(sceImpose), sceImpose); }