mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Comment regarding persistence and hardcoded variables.
This commit is contained in:
parent
d5a466f7be
commit
55b708c9fe
@ -9,6 +9,8 @@
|
||||
void HEbisuSDK_Init()
|
||||
{
|
||||
#ifdef DEDICATED
|
||||
// TODO: Don't hardcode!
|
||||
// Also add cross-season support?
|
||||
*(char*)g_bEbisuSDKInitialized = (char)0x1; // <- 1st EbisuSDK
|
||||
*(char*)g_bEbisuSDKCvarInitialized = (char)0x1; // <- 2nd EbisuSDK
|
||||
*(char*)g_qEbisuSDKCvarInitialized = (char)0x1; // <- 3rd EbisuSDK
|
||||
|
@ -3,7 +3,7 @@
|
||||
#include "ebisusdk/EbisuSDK.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose:
|
||||
// Purpose:
|
||||
//-----------------------------------------------------------------------------
|
||||
void* HIApplication_Main(void* a1, void* a2)
|
||||
{
|
||||
@ -12,12 +12,13 @@ void* HIApplication_Main(void* a1, void* a2)
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose:
|
||||
// Purpose:
|
||||
//-----------------------------------------------------------------------------
|
||||
bool HIApplication_Create(void* a1)
|
||||
{
|
||||
#ifdef DEDICATED
|
||||
// TODO: Don't hardcode!
|
||||
// Also add cross-season support?
|
||||
* (uintptr_t*)0x162C61208 = 0x1; // g_bDedicated
|
||||
#endif // DEDICATED
|
||||
return IAppSystem_Create(a1);
|
||||
|
@ -15,6 +15,14 @@
|
||||
//-----------------------------------------------------------------------------
|
||||
bool HIVEngineServer_PersistenceAvailable(void* entidx, int clientidx)
|
||||
{
|
||||
/* I don't know if permanently setting persistence to ready is a solution
|
||||
* We might wanna re-think that and handle persistence properly by also removing it on client disconnect.
|
||||
* Doing it for when we kick someone or ban someone is already a good start. Though we need to figure out how to handle timeouts?
|
||||
* Maybe NetChan::Shutdown gets called then anyway.
|
||||
* Then we might need to check ReturnAddress to make sure its not a local disconnect due to local server usage.
|
||||
* A lot of things to be considered..
|
||||
* - Pix
|
||||
*/
|
||||
CClient* pClient = g_pClient->GetClientInstance(clientidx); // Get client instance.
|
||||
*(char*)((std::uintptr_t)pClient + g_dwPersistenceVar) = (char)0x5; // Set the client instance to 'ready'.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user