rpcsx/rpcs3/Emu/PSP2/Modules/sceMotion.cpp

110 lines
2.4 KiB
C++
Raw Normal View History

#include "stdafx.h"
#include "Emu/System.h"
2016-05-13 12:17:26 +02:00
#include "Emu/PSP2/ARMv7Module.h"
2015-06-21 01:04:01 +02:00
#include "sceMotion.h"
2017-05-13 20:30:37 +02:00
logs::channel sceMotion("sceMotion");
2016-02-01 22:53:16 +01:00
2015-06-21 01:04:01 +02:00
s32 sceMotionGetState(vm::ptr<SceMotionState> motionState)
2015-01-30 00:58:53 +01:00
{
fmt::throw_exception("Unimplemented" HERE);
2015-06-21 01:04:01 +02:00
}
2015-01-30 00:58:53 +01:00
2015-06-21 01:04:01 +02:00
s32 sceMotionGetSensorState(vm::ptr<SceMotionSensorState> sensorState, s32 numRecords)
2015-01-30 00:58:53 +01:00
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 00:58:53 +01:00
}
2015-06-21 01:04:01 +02:00
s32 sceMotionGetBasicOrientation(vm::ptr<SceFVector3> basicOrientation)
2015-01-30 00:58:53 +01:00
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 00:58:53 +01:00
}
2015-06-21 01:04:01 +02:00
s32 sceMotionRotateYaw(const float radians)
2015-01-30 00:58:53 +01:00
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 00:58:53 +01:00
}
s32 sceMotionGetTiltCorrection()
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 00:58:53 +01:00
}
s32 sceMotionSetTiltCorrection(s32 setValue)
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 00:58:53 +01:00
}
s32 sceMotionGetDeadband()
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 00:58:53 +01:00
}
s32 sceMotionSetDeadband(s32 setValue)
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 00:58:53 +01:00
}
2015-06-21 01:04:01 +02:00
s32 sceMotionSetAngleThreshold(const float angle)
{
fmt::throw_exception("Unimplemented" HERE);
2015-06-21 01:04:01 +02:00
}
2015-01-30 00:58:53 +01:00
2015-06-21 01:04:01 +02:00
float sceMotionGetAngleThreshold()
{
fmt::throw_exception("Unimplemented" HERE);
2015-06-21 01:04:01 +02:00
}
2015-01-30 00:58:53 +01:00
s32 sceMotionReset()
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 00:58:53 +01:00
}
s32 sceMotionMagnetometerOn()
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 00:58:53 +01:00
}
s32 sceMotionMagnetometerOff()
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 00:58:53 +01:00
}
s32 sceMotionGetMagnetometerState()
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 00:58:53 +01:00
}
s32 sceMotionStartSampling()
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 00:58:53 +01:00
}
s32 sceMotionStopSampling()
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 00:58:53 +01:00
}
2016-02-01 22:53:16 +01:00
#define REG_FUNC(nid, name) REG_FNID(SceMotion, nid, name)
2016-02-01 22:53:16 +01:00
DECLARE(arm_module_manager::SceMotion)("SceMotion", []()
{
2015-01-30 00:58:53 +01:00
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);
2015-01-30 00:58:53 +01:00
REG_FUNC(0x0FD2CDA2, sceMotionReset);
REG_FUNC(0x28034AC9, sceMotionStartSampling);
REG_FUNC(0xAF32CB1D, sceMotionStopSampling);
//REG_FUNC(0xDACB2A41, sceMotionSetAngleThreshold);
//REG_FUNC(0x499B6C87, sceMotionGetAngleThreshold);
2015-01-30 00:58:53 +01:00
REG_FUNC(0x4F28BFE0, sceMotionGetBasicOrientation);
REG_FUNC(0x122A79F8, sceMotionMagnetometerOn);
REG_FUNC(0xC1A7395A, sceMotionMagnetometerOff);
REG_FUNC(0x3D4813AE, sceMotionGetMagnetometerState);
});