add lcemp networking + ps3 support

YES I KNOW ITS GARBAGE, THATS WHY ITS NOT ON MAIN

ILL FIX IT UP IN FUTURE COMMITS THEN MERGE TO MAIN
This commit is contained in:
2026-07-31 22:08:30 +03:00
parent 51ee0d8e57
commit dbd90a75c9
50 changed files with 1958 additions and 96 deletions
+4
View File
@@ -2,6 +2,7 @@
#pragma once
//#include "stdafx.h"
// Note - there are now 3 types of PlayerUID
@@ -19,6 +20,7 @@ class PlayerUID
CellSysutilUserId m_userID; // user logged on to the XMB
public:
ULONGLONG XUID;
class Hash
{
@@ -29,6 +31,8 @@ public:
PlayerUID();
PlayerUID(CellSysutilUserId userID, SceNpOnlineId& onlineID, bool bSignedInPSN, int quadrant);
PlayerUID(std::wstring fromString);
PlayerUID(ULONGLONG xuid) { XUID = xuid; }
operator ULONGLONG() const { return XUID; }
bool operator==(const PlayerUID& rhs) const;
bool operator!=(const PlayerUID& rhs);