101 lines
4.6 KiB
C++
101 lines
4.6 KiB
C++
#include "offset.h"
|
|
|
|
namespace Offset {
|
|
uint64_t GameResourceServicePtr;
|
|
uint64_t FireEventServerSidePtr;
|
|
uint64_t CGameEventManagerPtr;
|
|
uint64_t Host_SayPtr;
|
|
uint64_t Module_tier0;
|
|
uint64_t MaxPlayerNumsPtr;
|
|
HashFunction_t FnServerHashFunction;
|
|
StateChanged_t FnStateChanged;
|
|
NetworkStateChanged_t FnNetworkStateChanged;
|
|
namespace InterFaces {
|
|
CSchemaSystem* SchemaSystem;
|
|
IGameEventManager2* GameEventManager;
|
|
CGameEventManager* CGameEventManger;
|
|
CGameResourceService* GameResourceServiceServer;
|
|
IServerGameClients* IServerGameClient;
|
|
IVEngineServer2* IVEngineServer;
|
|
ISource2Server* ISource2ServerInterFace;
|
|
CLocalize* ILocalize;
|
|
INetworkServerService* INetworkServerServiceInteFace;
|
|
}; // namespace InterFaces
|
|
auto Init() -> bool {
|
|
CModule server("server.dll");
|
|
CModule schemasystem("schemasystem.dll");
|
|
CModule engine("engine2.dll");
|
|
CModule localize("localize.dll");
|
|
|
|
// engine.dll
|
|
engine.FindPattern(pattern_MaxPlayerNumsPtr).ToAbsolute(3, 0).Get(MaxPlayerNumsPtr);
|
|
|
|
// server.dll
|
|
server.FindPattern(pattern_FireEventServerSide).Get(FireEventServerSidePtr);
|
|
server.FindPattern(pattern_NetworkStateChanged).Get(FnNetworkStateChanged);
|
|
server.FindPattern(pattern_FnStateChangedPtr).Get(FnStateChanged);
|
|
|
|
// 48 8D 05 4A 30 82 00 lea rax, ??_7CGameEventManager@@6B@
|
|
server.FindPattern(pattern_CGameEventManager)
|
|
.ToAbsolute(3, 0)
|
|
.Get(CGameEventManagerPtr);
|
|
server.FindPattern(pattern_fnHost_SayPtr).Get(Host_SayPtr);
|
|
server.FindPattern(pattern_ServerHashFunctionPtr).Get(FnServerHashFunction);
|
|
InterFaces::SchemaSystem = reinterpret_cast<CSchemaSystem*>(
|
|
schemasystem.FindInterface("SchemaSystem_001").Get());
|
|
//InterFaces::GameEventManager = reinterpret_cast<IGameEventManager2*>(
|
|
// engine.FindInterface("GameEventSystemServerV001").Get());
|
|
InterFaces::ILocalize = reinterpret_cast<CLocalize*>(localize.FindInterface("Localize_001").Get());
|
|
InterFaces::GameResourceServiceServer =
|
|
reinterpret_cast<CGameResourceService*>(
|
|
engine.FindInterface("GameResourceServiceServerV001").Get());
|
|
InterFaces::IVEngineServer = reinterpret_cast<IVEngineServer2*>(
|
|
engine.FindInterface("Source2EngineToServer001").Get());
|
|
InterFaces::INetworkServerServiceInteFace = reinterpret_cast<INetworkServerService*>(
|
|
engine.FindInterface("NetworkServerService_001").Get());
|
|
InterFaces::IServerGameClient = reinterpret_cast<IServerGameClients*>(
|
|
server.FindInterface("Source2GameClients001").Get());
|
|
InterFaces::ISource2ServerInterFace = reinterpret_cast<ISource2Server*>(
|
|
server.FindInterface("Source2Server001").Get());
|
|
if (InterFaces::ISource2ServerInterFace) {
|
|
InterFaces::GameEventManager = (IGameEventManager2*)(CALL_VIRTUAL(uintptr_t, 91, InterFaces::ISource2ServerInterFace) - 8);
|
|
}
|
|
InterFaces::CGameEventManger =
|
|
reinterpret_cast<CGameEventManager*>(CGameEventManagerPtr);
|
|
|
|
//global::MaxPlayers = *(int*)((char*)MaxPlayerNumsPtr + 2);
|
|
// client.FindPattern(pattern_FireEventServerSide).Get(FireEventServerSidePtr);
|
|
global::MaxPlayers = 64;
|
|
|
|
LOG("[huoji]FireEventServerSidePtr : %llx \n", FireEventServerSidePtr);
|
|
LOG("[huoji]Host_SayPtr : %llx \n", Host_SayPtr);
|
|
LOG("[huoji]FnNetworkStateChanged : %llx \n", FnNetworkStateChanged);
|
|
LOG("[huoji]FnServerHashFunction : %llx \n", FnServerHashFunction);
|
|
LOG("[huoji]FnStateChanged : %llx \n", FnStateChanged);
|
|
LOG("[huoji]MaxGlobals : %d \n", global::MaxPlayers);
|
|
|
|
LOG("[huoji]InterFaces::SchemaSystem : %llx \n", InterFaces::SchemaSystem);
|
|
LOG("[huoji]InterFaces::GameEventManager : %llx \n",
|
|
InterFaces::GameEventManager);
|
|
LOG("[huoji]InterFaces::CGameEventManger : %llx \n",
|
|
InterFaces::CGameEventManger);
|
|
LOG("[huoji]InterFaces::GameResourceServiceServer : %llx \n",
|
|
InterFaces::GameResourceServiceServer);
|
|
LOG("[huoji]InterFaces::IServerGameClient : %llx \n",
|
|
InterFaces::IServerGameClient);
|
|
LOG("[huoji]InterFaces::IVEngineServer : %llx \n",
|
|
InterFaces::IVEngineServer);
|
|
LOG("[huoji]InterFaces::ISource2ServerInterFace : %llx \n",
|
|
InterFaces::ISource2ServerInterFace);
|
|
|
|
// GetOffsets();
|
|
LOG("init offset success !\n");
|
|
//LOG("FnServerHashFunction: %llx \n", FnServerHashFunction("here", sizeof("here") - 1, 0x31415926));
|
|
return FnServerHashFunction && Host_SayPtr && InterFaces::IVEngineServer &&
|
|
InterFaces::GameResourceServiceServer &&
|
|
InterFaces::IServerGameClient && InterFaces::GameEventManager &&
|
|
InterFaces::SchemaSystem && FireEventServerSidePtr &&
|
|
FnNetworkStateChanged;
|
|
}
|
|
} // namespace Offset
|