mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-09 00:14:56 +00:00
PSP2
This commit is contained in:
parent
5c52521a0a
commit
38c444cfa1
133 changed files with 767 additions and 478 deletions
109
rpcs3/Emu/PSP2/Modules/sceMotion.cpp
Normal file
109
rpcs3/Emu/PSP2/Modules/sceMotion.cpp
Normal file
|
|
@ -0,0 +1,109 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/PSP2/ARMv7Module.h"
|
||||
|
||||
#include "sceMotion.h"
|
||||
|
||||
logs::channel sceMotion("sceMotion", logs::level::notice);
|
||||
|
||||
s32 sceMotionGetState(vm::ptr<SceMotionState> motionState)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMotionGetSensorState(vm::ptr<SceMotionSensorState> sensorState, s32 numRecords)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMotionGetBasicOrientation(vm::ptr<SceFVector3> basicOrientation)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMotionRotateYaw(const float radians)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMotionGetTiltCorrection()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMotionSetTiltCorrection(s32 setValue)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMotionGetDeadband()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMotionSetDeadband(s32 setValue)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMotionSetAngleThreshold(const float angle)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
float sceMotionGetAngleThreshold()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMotionReset()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMotionMagnetometerOn()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMotionMagnetometerOff()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMotionGetMagnetometerState()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMotionStartSampling()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMotionStopSampling()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
#define REG_FUNC(nid, name) REG_FNID(SceMotion, nid, name)
|
||||
|
||||
DECLARE(arm_module_manager::SceMotion)("SceMotion", []()
|
||||
{
|
||||
REG_FUNC(0xBDB32767, sceMotionGetState);
|
||||
REG_FUNC(0x47D679EA, sceMotionGetSensorState);
|
||||
REG_FUNC(0xC1652201, sceMotionGetTiltCorrection);
|
||||
REG_FUNC(0xAF09FCDB, sceMotionSetTiltCorrection);
|
||||
REG_FUNC(0x112E0EAE, sceMotionGetDeadband);
|
||||
REG_FUNC(0x917EA390, sceMotionSetDeadband);
|
||||
//REG_FUNC(0x20F00078, sceMotionRotateYaw);
|
||||
REG_FUNC(0x0FD2CDA2, sceMotionReset);
|
||||
REG_FUNC(0x28034AC9, sceMotionStartSampling);
|
||||
REG_FUNC(0xAF32CB1D, sceMotionStopSampling);
|
||||
//REG_FUNC(0xDACB2A41, sceMotionSetAngleThreshold);
|
||||
//REG_FUNC(0x499B6C87, sceMotionGetAngleThreshold);
|
||||
REG_FUNC(0x4F28BFE0, sceMotionGetBasicOrientation);
|
||||
REG_FUNC(0x122A79F8, sceMotionMagnetometerOn);
|
||||
REG_FUNC(0xC1A7395A, sceMotionMagnetometerOff);
|
||||
REG_FUNC(0x3D4813AE, sceMotionGetMagnetometerState);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue