mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
move module initialization into a module manager, still has some issues like stopping not working and debug crashing add #idef 0 to modules that aren't in the windows project don't double initialize and don't de-initialize for now, since many modules don't expect it and it leads to many errors remove duplicate module lists for empty modules and implemented ones, make Module non-copyable but movable add secondary project, no real use for it now add some memleak config to the emucore and add asmjit path to rpcs3 small rebase error fixed to get it to compile again add filters for emucore re-add the module manager and static file WIP commit, linker errors abound some more abstraction layer stuff fix the remaining linker errors, re-enable platform specific mouse, pad and keyboard handlers rebasing fix memset undefined and re() usage of se_t before declaration Add wxGUI define by default for cmake builds fix copy constructors of Datetime header fix copy constructors of other wx interface classes remove static declarations of global variables make wxGLCanvas constructor non-ambiguous even with wx2.8. compat mode, fix wrong std::exception constructor calls remove duplicate definition for FromUTF8 and ToUTF8 temp changes
90 lines
2.4 KiB
C++
90 lines
2.4 KiB
C++
#include "stdafx.h"
|
|
#include "Emu/ConLog.h"
|
|
#include "Emu/Memory/Memory.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/Cell/PPUThread.h"
|
|
#include "Emu/SysCalls/SC_FUNC.h"
|
|
#include "Emu/SysCalls/Modules.h"
|
|
|
|
#include "cellUserInfo.h"
|
|
|
|
//void cellUserInfo_init();
|
|
//Module cellUserInfo(0x0032, cellUserInfo_init);
|
|
extern Module *cellUserInfo = nullptr;
|
|
|
|
int cellUserInfoGetStat(u32 id, mem_ptr_t<CellUserInfoUserStat> stat)
|
|
{
|
|
cellUserInfo->Warning("cellUserInfoGetStat(id=%d, stat_addr=0x%x)", id, stat.GetAddr());
|
|
|
|
if (!stat.IsGood())
|
|
return CELL_USERINFO_ERROR_PARAM;
|
|
if (id > CELL_USERINFO_USER_MAX)
|
|
return CELL_USERINFO_ERROR_NOUSER;
|
|
|
|
char path [256];
|
|
sprintf(path, "/dev_hdd0/home/%08d", id);
|
|
if (!Emu.GetVFS().ExistsDir(path))
|
|
return CELL_USERINFO_ERROR_NOUSER;
|
|
|
|
sprintf(path, "/dev_hdd0/home/%08d/localusername", id);
|
|
vfsStream* stream = Emu.GetVFS().OpenFile(path, vfsRead);
|
|
if (!stream || !(stream->IsOpened()))
|
|
return CELL_USERINFO_ERROR_INTERNAL;
|
|
|
|
char name [CELL_USERINFO_USERNAME_SIZE];
|
|
memset(name, 0, CELL_USERINFO_USERNAME_SIZE);
|
|
stream->Read(name, CELL_USERINFO_USERNAME_SIZE);
|
|
stream->Close();
|
|
delete stream;
|
|
|
|
stat->id = id;
|
|
memcpy(stat->name, name, CELL_USERINFO_USERNAME_SIZE);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellUserInfoSelectUser_ListType()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellUserInfo);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellUserInfoSelectUser_SetList()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellUserInfo);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellUserInfoEnableOverlay()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellUserInfo);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellUserInfoGetList(mem32_t listNum, mem_ptr_t<CellUserInfoUserList> listBuf, mem32_t currentUserId)
|
|
{
|
|
cellUserInfo->Warning("cellUserInfoGetList(listNum_addr=0x%x, listBuf_addr=0x%x, currentUserId_addr=0x%x)",
|
|
listNum.GetAddr(), listBuf.GetAddr(), currentUserId.GetAddr());
|
|
|
|
// If only listNum is NULL, an error will be returned
|
|
if (listBuf.IsGood() && !listNum.IsGood())
|
|
return CELL_USERINFO_ERROR_PARAM;
|
|
if (listNum.IsGood())
|
|
listNum = 1;
|
|
if (listBuf.IsGood())
|
|
listBuf->userId[0] = 1;
|
|
|
|
if (currentUserId.IsGood())
|
|
currentUserId = 1;
|
|
|
|
return CELL_OK;
|
|
}
|
|
|
|
void cellUserInfo_init()
|
|
{
|
|
cellUserInfo->AddFunc(0x2b761140, cellUserInfoGetStat);
|
|
cellUserInfo->AddFunc(0x3097cc1c, cellUserInfoSelectUser_ListType);
|
|
cellUserInfo->AddFunc(0x55123a25, cellUserInfoSelectUser_SetList);
|
|
cellUserInfo->AddFunc(0xb3516536, cellUserInfoEnableOverlay);
|
|
cellUserInfo->AddFunc(0xc55e338b, cellUserInfoGetList);
|
|
}
|