mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
265 lines
7.2 KiB
C++
265 lines
7.2 KiB
C++
#include "stdafx.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/PSP2/ARMv7Module.h"
|
|
|
|
#include "sceNpMatching.h"
|
|
|
|
logs::channel sceNpMatching("sceNpMatching");
|
|
|
|
// Functions
|
|
|
|
s32 sceNpMatching2Init(u32 poolSize, s32 threadPriority, s32 cpuAffinityMask, u32 threadStackSize)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2Term()
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2CreateContext(
|
|
vm::cptr<SceNpId> npId,
|
|
vm::cptr<SceNpCommunicationId> commId,
|
|
vm::cptr<SceNpCommunicationPassphrase> passPhrase,
|
|
vm::ptr<u16> ctxId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2DestroyContext(u16 ctxId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2ContextStart(u16 ctxId, u64 timeout)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2AbortContextStart(u16 ctxId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2ContextStop(u16 ctxId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2SetDefaultRequestOptParam(u16 ctxId, vm::cptr<SceNpMatching2RequestOptParam> optParam)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2RegisterRoomEventCallback(u16 ctxId, vm::ptr<SceNpMatching2RoomEventCallback> cbFunc, vm::ptr<void> cbFuncArg)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2RegisterRoomMessageCallback(u16 ctxId, vm::ptr<SceNpMatching2RoomMessageCallback> cbFunc, vm::ptr<void> cbFuncArg)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2RegisterSignalingCallback(u16 ctxId, vm::ptr<SceNpMatching2SignalingCallback> cbFunc, vm::ptr<void> cbFuncArg)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2RegisterContextCallback(vm::ptr<SceNpMatching2ContextCallback> cbFunc, vm::ptr<void> cbFuncArg)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2AbortRequest(u16 ctxId, u32 reqId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2GetMemoryInfo(vm::ptr<SceNpMatching2MemoryInfo> memInfo)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2GetServerLocal(u16 ctxId, vm::ptr<SceNpMatching2Server> server)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2GetWorldInfoList(
|
|
u16 ctxId,
|
|
vm::cptr<SceNpMatching2GetWorldInfoListRequest> reqParam,
|
|
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
|
vm::ptr<u32> assignedReqId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2CreateJoinRoom(
|
|
u16 ctxId,
|
|
vm::cptr<SceNpMatching2CreateJoinRoomRequest> reqParam,
|
|
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
|
vm::ptr<u32> assignedReqId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2SearchRoom(
|
|
u16 ctxId,
|
|
vm::cptr<SceNpMatching2SearchRoomRequest> reqParam,
|
|
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
|
vm::ptr<u32> assignedReqId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2JoinRoom(
|
|
u16 ctxId,
|
|
vm::cptr<SceNpMatching2JoinRoomRequest> reqParam,
|
|
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
|
vm::ptr<u32> assignedReqId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2LeaveRoom(
|
|
u16 ctxId,
|
|
vm::cptr<SceNpMatching2LeaveRoomRequest> reqParam,
|
|
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
|
vm::ptr<u32> assignedReqId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2GetSignalingOptParamLocal(
|
|
u16 ctxId,
|
|
u64 roomId,
|
|
vm::ptr<SceNpMatching2SignalingOptParam> signalingOptParam)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2SetRoomDataExternal(
|
|
u16 ctxId,
|
|
vm::cptr<SceNpMatching2SetRoomDataExternalRequest> reqParam,
|
|
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
|
vm::ptr<u32> assignedReqId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2KickoutRoomMember(
|
|
u16 ctxId,
|
|
vm::cptr<SceNpMatching2KickoutRoomMemberRequest> reqParam,
|
|
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
|
vm::ptr<u32> assignedReqId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2SendRoomChatMessage(
|
|
u16 ctxId,
|
|
vm::cptr<SceNpMatching2SendRoomChatMessageRequest> reqParam,
|
|
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
|
vm::ptr<u32> assignedReqId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2SendRoomMessage(
|
|
u16 ctxId,
|
|
vm::cptr<SceNpMatching2SendRoomMessageRequest> reqParam,
|
|
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
|
vm::ptr<u32> assignedReqId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2SignalingGetConnectionStatus(
|
|
u16 ctxId,
|
|
u64 roomId,
|
|
u16 memberId,
|
|
vm::ptr<s32> connStatus,
|
|
vm::ptr<SceNetInAddr> peerAddr,
|
|
vm::ptr<u16> peerPort)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2SignalingGetConnectionInfo(
|
|
u16 ctxId,
|
|
u64 roomId,
|
|
u16 memberId,
|
|
s32 code,
|
|
vm::ptr<SceNpMatching2SignalingConnectionInfo> info)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2SignalingGetLocalNetInfo(vm::ptr<SceNpMatching2SignalingNetInfo> netinfo)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2SignalingGetPeerNetInfo(
|
|
u16 ctxId,
|
|
u64 roomId,
|
|
u16 memberId,
|
|
vm::ptr<u32> reqId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2SignalingCancelPeerNetInfo(
|
|
u16 ctxId,
|
|
u32 reqId)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 sceNpMatching2SignalingGetPeerNetInfoResult(
|
|
u16 ctxId,
|
|
u32 reqId,
|
|
vm::ptr<SceNpMatching2SignalingNetInfo> netinfo)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
#define REG_FUNC(nid, name) REG_FNID(SceNpMatching2, nid, name)
|
|
|
|
DECLARE(arm_module_manager::SceNpMatching)("SceNpMatching2", []()
|
|
{
|
|
REG_FUNC(0xEBB1FE74, sceNpMatching2Init);
|
|
REG_FUNC(0x0124641C, sceNpMatching2Term);
|
|
REG_FUNC(0xADF578E1, sceNpMatching2CreateContext);
|
|
REG_FUNC(0x368AA759, sceNpMatching2DestroyContext);
|
|
REG_FUNC(0xBB2E7559, sceNpMatching2ContextStart);
|
|
REG_FUNC(0xF2847E3B, sceNpMatching2AbortContextStart);
|
|
REG_FUNC(0x506454DE, sceNpMatching2ContextStop);
|
|
REG_FUNC(0xF3A43C50, sceNpMatching2SetDefaultRequestOptParam);
|
|
REG_FUNC(0xF486991B, sceNpMatching2RegisterRoomEventCallback);
|
|
REG_FUNC(0xFA51949B, sceNpMatching2RegisterRoomMessageCallback);
|
|
REG_FUNC(0xF9E35566, sceNpMatching2RegisterContextCallback);
|
|
REG_FUNC(0x74EB6CE9, sceNpMatching2AbortRequest);
|
|
REG_FUNC(0x7BD39E50, sceNpMatching2GetMemoryInfo);
|
|
REG_FUNC(0x65C0FEED, sceNpMatching2GetServerLocal);
|
|
REG_FUNC(0xC086B560, sceNpMatching2GetWorldInfoList);
|
|
REG_FUNC(0x818A9499, sceNpMatching2CreateJoinRoom);
|
|
REG_FUNC(0xD48BAF13, sceNpMatching2SearchRoom);
|
|
REG_FUNC(0x33F7D5AE, sceNpMatching2JoinRoom);
|
|
REG_FUNC(0xC8B0C9EE, sceNpMatching2LeaveRoom);
|
|
REG_FUNC(0x495D2B46, sceNpMatching2GetSignalingOptParamLocal);
|
|
REG_FUNC(0xE0BE0510, sceNpMatching2SendRoomChatMessage);
|
|
REG_FUNC(0x7B908D99, sceNpMatching2SendRoomMessage);
|
|
REG_FUNC(0x4E4C55BD, sceNpMatching2SignalingGetConnectionStatus);
|
|
REG_FUNC(0x20598618, sceNpMatching2SignalingGetConnectionInfo);
|
|
REG_FUNC(0x79310806, sceNpMatching2SignalingGetLocalNetInfo);
|
|
REG_FUNC(0xF0CB1DD3, sceNpMatching2SignalingGetPeerNetInfo);
|
|
REG_FUNC(0xADCD102C, sceNpMatching2SignalingCancelPeerNetInfo);
|
|
REG_FUNC(0xFDC7B2C9, sceNpMatching2SignalingGetPeerNetInfoResult);
|
|
REG_FUNC(0x1C60BC5B, sceNpMatching2RegisterSignalingCallback);
|
|
REG_FUNC(0x8F88AC7E, sceNpMatching2SetRoomDataExternal);
|
|
REG_FUNC(0xA8021394, sceNpMatching2KickoutRoomMember);
|
|
});
|