mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 07:20:49 +00:00
a2c024e454
Removed PARAM stuff, made tests pass with some caveats in that I don't understand what the return values are supposed to be based on the docs and fix a small issue with sceImpose that I created with the last merge
71 lines
2.2 KiB
C++
71 lines
2.2 KiB
C++
// 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"
|
|
|
|
static u32 iLanguage = 0;
|
|
static u32 iButtonValue = 0;
|
|
|
|
u32 sceImposeGetBatteryIconStatus(u32 chargingPtr, u32 iconStatusPtr)
|
|
{
|
|
DEBUG_LOG(HLE,"%i=sceImposeGetBatteryIconStatus(%08x, %08x)", chargingPtr, iconStatusPtr);
|
|
if (Memory::IsValidAddress(chargingPtr))
|
|
Memory::Write_U32(1, chargingPtr);
|
|
if (Memory::IsValidAddress(iconStatusPtr))
|
|
Memory::Write_U32(3, iconStatusPtr);
|
|
return 0;
|
|
}
|
|
|
|
u32 sceImposeSetLanguageMode(u32 languageVal, u32 buttonVal)
|
|
{
|
|
DEBUG_LOG(HLE,"%i=sceImposeSetLanguageMode(%08x, %08x)", languageVal, buttonVal);
|
|
iLanguage = languageVal;
|
|
iButtonValue = buttonVal;
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
u32 sceImposeGetLanguageMode(u32 languagePtr, u32 btnPtr)
|
|
{
|
|
DEBUG_LOG(HLE,"%i=sceImposeGetLanguageMode(%08x, %08x)", languagePtr, btnPtr);
|
|
if (Memory::IsValidAddress(languagePtr))
|
|
Memory::Write_U32(iLanguage, languagePtr);
|
|
if (Memory::IsValidAddress(btnPtr))
|
|
Memory::Write_U32(iButtonValue, btnPtr);
|
|
return 0;
|
|
}
|
|
|
|
//OSD stuff? home button?
|
|
const HLEFunction sceImpose[] =
|
|
{
|
|
{0x36aa6e91, &WrapU_UU<sceImposeSetLanguageMode>, "sceImposeSetLanguageMode"}, // Seen
|
|
{0x381bd9e7, 0, "sceImposeHomeButton"},
|
|
{0x24fd7bcf, &WrapU_UU<sceImposeGetLanguageMode>, "sceImposeGetLanguageMode"},
|
|
{0x8c943191, &WrapU_UU<sceImposeGetBatteryIconStatus>, "sceImposeGetBatteryIconStatus"},
|
|
{0x72189C48, 0, "sceImposeSetUMDPopup"},
|
|
};
|
|
|
|
void Register_sceImpose()
|
|
{
|
|
RegisterModule("sceImpose", ARRAY_SIZE(sceImpose), sceImpose);
|
|
}
|