mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Add modelinfo vftable pointers
This commit is contained in:
parent
79961687bd
commit
07ef57536d
17
r5dev/engine/modelinfo.cpp
Normal file
17
r5dev/engine/modelinfo.cpp
Normal file
@ -0,0 +1,17 @@
|
||||
//===== Copyright (c) 1996-2005, Valve Corporation, All rights reserved. =====//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $Workfile: $
|
||||
// $NoKeywords: $
|
||||
//===========================================================================//
|
||||
#include "core/stdafx.h"
|
||||
#include "modelinfo.h"
|
||||
|
||||
#ifndef CLIENT_DLL
|
||||
CModelInfoServer* g_pModelInfoServer = nullptr;
|
||||
#endif // CLIENT_DLL
|
||||
|
||||
#ifndef DEDICATED
|
||||
CModelInfoClient* g_pModelInfoClient = nullptr;
|
||||
#endif // DEDICATED
|
71
r5dev/engine/modelinfo.h
Normal file
71
r5dev/engine/modelinfo.h
Normal file
@ -0,0 +1,71 @@
|
||||
//===== Copyright (c) 1996-2005, Valve Corporation, All rights reserved. =====//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $Workfile: $
|
||||
// $NoKeywords: $
|
||||
//===========================================================================//
|
||||
#ifndef ENGINE_MODELINFO_H
|
||||
#define ENGINE_MODELINFO_H
|
||||
#include "public/engine/IVModelInfo.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// shared implementation of IVModelInfo
|
||||
//-----------------------------------------------------------------------------
|
||||
class CModelInfo : public IVModelInfoClient
|
||||
{};
|
||||
|
||||
#ifndef CLIENT_DLL
|
||||
//-----------------------------------------------------------------------------
|
||||
// implementation of IVModelInfo for server
|
||||
//-----------------------------------------------------------------------------
|
||||
class CModelInfoServer : public CModelInfo
|
||||
{};
|
||||
extern CModelInfoServer* g_pModelInfoServer;
|
||||
inline CModelInfoServer* g_pModelInfoServer_VFTable;
|
||||
#endif // CLIENT_DLL
|
||||
|
||||
#ifndef DEDICATED
|
||||
//-----------------------------------------------------------------------------
|
||||
// implementation of IVModelInfo for client
|
||||
//-----------------------------------------------------------------------------
|
||||
class CModelInfoClient : public CModelInfo
|
||||
{};
|
||||
extern CModelInfoClient* g_pModelInfoClient;
|
||||
inline CModelInfoClient* g_pModelInfoClient_VFTable;
|
||||
#endif // DEDICATED
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
class VModelInfo : public IDetour
|
||||
{
|
||||
virtual void GetAdr(void) const
|
||||
{
|
||||
#ifndef CLIENT_DLL
|
||||
spdlog::debug("| FUN: g_pModelInfoServer : {:#18x} |\n", reinterpret_cast<uintptr_t>(g_pModelInfoServer));
|
||||
#endif // CLIENT_DLL
|
||||
#ifndef DEDICATED
|
||||
spdlog::debug("| FUN: g_pModelInfoClient : {:#18x} |\n", reinterpret_cast<uintptr_t>(g_pModelInfoClient));
|
||||
#endif // DEDICATED
|
||||
spdlog::debug("+----------------------------------------------------------------+\n");
|
||||
}
|
||||
virtual void GetFun(void) const { }
|
||||
virtual void GetVar(void) const
|
||||
{
|
||||
#ifndef CLIENT_DLL
|
||||
g_pModelInfoServer_VFTable = g_GameDll.GetVirtualMethodTable(".?AVCModelInfoServer@@").RCast<CModelInfoServer*>();
|
||||
g_pModelInfoServer = reinterpret_cast<CModelInfoServer*>(&g_pModelInfoServer_VFTable);
|
||||
#endif // CLIENT_DLL
|
||||
#ifndef DEDICATED
|
||||
g_pModelInfoClient_VFTable = g_GameDll.GetVirtualMethodTable(".?AVCModelInfoClient@@").RCast<CModelInfoClient*>();
|
||||
g_pModelInfoClient = reinterpret_cast<CModelInfoClient*>(&g_pModelInfoClient_VFTable);
|
||||
#endif // DEDICATED
|
||||
}
|
||||
virtual void GetCon(void) const { }
|
||||
virtual void Attach(void) const { }
|
||||
virtual void Detach(void) const { }
|
||||
};
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
REGISTER(VModelInfo);
|
||||
|
||||
#endif // ENGINE_MODELINFO_H
|
@ -2,6 +2,7 @@
|
||||
#define ANIMATION_H
|
||||
#include "mathlib/vector.h"
|
||||
#include "public/baseentity.h"
|
||||
#include "public/studio.h"
|
||||
|
||||
class CAnimationLayer
|
||||
{
|
||||
|
29
r5dev/public/engine/IVModelInfo.h
Normal file
29
r5dev/public/engine/IVModelInfo.h
Normal file
@ -0,0 +1,29 @@
|
||||
//===== Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ======//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//===========================================================================//
|
||||
|
||||
#ifndef IVMODELINFO_H
|
||||
#define IVMODELINFO_H
|
||||
|
||||
#ifdef _WIN32
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
struct model_t;
|
||||
|
||||
class IVModelInfo
|
||||
{
|
||||
public:
|
||||
virtual ~IVModelInfo(void) { }
|
||||
virtual const model_t* GetModel(int modelindex) const = 0;
|
||||
|
||||
// !TODO: The rest if it ever becomes necessary.
|
||||
};
|
||||
|
||||
class IVModelInfoClient : public IVModelInfo
|
||||
{};
|
||||
|
||||
#endif // IVMODELINFO_H
|
@ -44,6 +44,7 @@
|
||||
<ClCompile Include="..\engine\host_cmd.cpp" />
|
||||
<ClCompile Include="..\engine\host_state.cpp" />
|
||||
<ClCompile Include="..\engine\matsys_interface.cpp" />
|
||||
<ClCompile Include="..\engine\modelinfo.cpp" />
|
||||
<ClCompile Include="..\engine\modelloader.cpp" />
|
||||
<ClCompile Include="..\engine\net.cpp" />
|
||||
<ClCompile Include="..\engine\networkstringtable.cpp" />
|
||||
@ -212,6 +213,7 @@
|
||||
<ClInclude Include="..\engine\host_cmd.h" />
|
||||
<ClInclude Include="..\engine\host_state.h" />
|
||||
<ClInclude Include="..\engine\matsys_interface.h" />
|
||||
<ClInclude Include="..\engine\modelinfo.h" />
|
||||
<ClInclude Include="..\engine\modelloader.h" />
|
||||
<ClInclude Include="..\engine\net.h" />
|
||||
<ClInclude Include="..\engine\networkstringtable.h" />
|
||||
@ -297,6 +299,7 @@
|
||||
<ClInclude Include="..\public\eiface.h" />
|
||||
<ClInclude Include="..\public\engine\ICollideable.h" />
|
||||
<ClInclude Include="..\public\engine\IEngineTrace.h" />
|
||||
<ClInclude Include="..\public\engine\IVModelInfo.h" />
|
||||
<ClInclude Include="..\public\gametrace.h" />
|
||||
<ClInclude Include="..\public\iengine.h" />
|
||||
<ClInclude Include="..\public\client_class.h" />
|
||||
|
@ -666,6 +666,9 @@
|
||||
<ClCompile Include="..\game\shared\util_shared.cpp">
|
||||
<Filter>sdk\game\shared</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\engine\modelinfo.cpp">
|
||||
<Filter>sdk\engine</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\client\cdll_engine_int.h">
|
||||
@ -1967,6 +1970,12 @@
|
||||
<ClInclude Include="..\public\bspflags.h">
|
||||
<Filter>sdk\public</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\public\engine\IVModelInfo.h">
|
||||
<Filter>sdk\public\engine</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\engine\modelinfo.h">
|
||||
<Filter>sdk\engine</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="..\shared\resource\lockedserver.png">
|
||||
|
@ -158,6 +158,7 @@
|
||||
<ClInclude Include="..\engine\host.h" />
|
||||
<ClInclude Include="..\engine\host_cmd.h" />
|
||||
<ClInclude Include="..\engine\host_state.h" />
|
||||
<ClInclude Include="..\engine\modelinfo.h" />
|
||||
<ClInclude Include="..\engine\modelloader.h" />
|
||||
<ClInclude Include="..\engine\net.h" />
|
||||
<ClInclude Include="..\engine\networkstringtable.h" />
|
||||
@ -247,6 +248,7 @@
|
||||
<ClInclude Include="..\public\eiface.h" />
|
||||
<ClInclude Include="..\public\engine\ICollideable.h" />
|
||||
<ClInclude Include="..\public\engine\IEngineTrace.h" />
|
||||
<ClInclude Include="..\public\engine\IVModelInfo.h" />
|
||||
<ClInclude Include="..\public\gametrace.h" />
|
||||
<ClInclude Include="..\public\iengine.h" />
|
||||
<ClInclude Include="..\public\client_class.h" />
|
||||
@ -543,6 +545,7 @@
|
||||
<ClCompile Include="..\engine\host.cpp" />
|
||||
<ClCompile Include="..\engine\host_cmd.cpp" />
|
||||
<ClCompile Include="..\engine\host_state.cpp" />
|
||||
<ClCompile Include="..\engine\modelinfo.cpp" />
|
||||
<ClCompile Include="..\engine\modelloader.cpp" />
|
||||
<ClCompile Include="..\engine\net.cpp" />
|
||||
<ClCompile Include="..\engine\networkstringtable.cpp" />
|
||||
@ -560,6 +563,7 @@
|
||||
<ClCompile Include="..\game\server\ai_network.cpp" />
|
||||
<ClCompile Include="..\game\server\ai_networkmanager.cpp" />
|
||||
<ClCompile Include="..\game\server\ai_utility.cpp" />
|
||||
<ClCompile Include="..\game\server\baseanimating.cpp" />
|
||||
<ClCompile Include="..\game\server\gameinterface.cpp" />
|
||||
<ClCompile Include="..\game\server\movehelper_server.cpp" />
|
||||
<ClCompile Include="..\game\server\networkproperty.cpp" />
|
||||
|
@ -1392,6 +1392,12 @@
|
||||
<ClInclude Include="..\public\bspflags.h">
|
||||
<Filter>sdk\public</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\public\engine\IVModelInfo.h">
|
||||
<Filter>sdk\public\engine</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\engine\modelinfo.h">
|
||||
<Filter>sdk\engine</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common\opcodes.cpp">
|
||||
@ -1757,6 +1763,12 @@
|
||||
<ClCompile Include="..\game\shared\util_shared.cpp">
|
||||
<Filter>sdk\game\shared</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\game\server\baseanimating.cpp">
|
||||
<Filter>sdk\game\server</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\engine\modelinfo.cpp">
|
||||
<Filter>sdk\engine</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\Dedicated.def" />
|
||||
|
@ -45,6 +45,7 @@
|
||||
<ClCompile Include="..\engine\host_cmd.cpp" />
|
||||
<ClCompile Include="..\engine\host_state.cpp" />
|
||||
<ClCompile Include="..\engine\matsys_interface.cpp" />
|
||||
<ClCompile Include="..\engine\modelinfo.cpp" />
|
||||
<ClCompile Include="..\engine\modelloader.cpp" />
|
||||
<ClCompile Include="..\engine\net.cpp" />
|
||||
<ClCompile Include="..\engine\networkstringtable.cpp" />
|
||||
@ -69,6 +70,7 @@
|
||||
<ClCompile Include="..\game\server\ai_network.cpp" />
|
||||
<ClCompile Include="..\game\server\ai_networkmanager.cpp" />
|
||||
<ClCompile Include="..\game\server\ai_utility.cpp" />
|
||||
<ClCompile Include="..\game\server\baseanimating.cpp" />
|
||||
<ClCompile Include="..\game\server\gameinterface.cpp" />
|
||||
<ClCompile Include="..\game\server\movehelper_server.cpp" />
|
||||
<ClCompile Include="..\game\server\networkproperty.cpp" />
|
||||
@ -230,6 +232,7 @@
|
||||
<ClInclude Include="..\engine\host_cmd.h" />
|
||||
<ClInclude Include="..\engine\host_state.h" />
|
||||
<ClInclude Include="..\engine\matsys_interface.h" />
|
||||
<ClInclude Include="..\engine\modelinfo.h" />
|
||||
<ClInclude Include="..\engine\modelloader.h" />
|
||||
<ClInclude Include="..\engine\net.h" />
|
||||
<ClInclude Include="..\engine\networkstringtable.h" />
|
||||
@ -339,6 +342,7 @@
|
||||
<ClInclude Include="..\public\eiface.h" />
|
||||
<ClInclude Include="..\public\engine\ICollideable.h" />
|
||||
<ClInclude Include="..\public\engine\IEngineTrace.h" />
|
||||
<ClInclude Include="..\public\engine\IVModelInfo.h" />
|
||||
<ClInclude Include="..\public\gametrace.h" />
|
||||
<ClInclude Include="..\public\iengine.h" />
|
||||
<ClInclude Include="..\public\client_class.h" />
|
||||
|
@ -723,6 +723,12 @@
|
||||
<ClCompile Include="..\game\shared\util_shared.cpp">
|
||||
<Filter>sdk\game\shared</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\game\server\baseanimating.cpp">
|
||||
<Filter>sdk\game\server</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\engine\modelinfo.cpp">
|
||||
<Filter>sdk\engine</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\client\cdll_engine_int.h">
|
||||
@ -2123,6 +2129,12 @@
|
||||
<ClInclude Include="..\public\bspflags.h">
|
||||
<Filter>sdk\public</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\public\engine\IVModelInfo.h">
|
||||
<Filter>sdk\public\engine</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\engine\modelinfo.h">
|
||||
<Filter>sdk\engine</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="..\shared\resource\lockedserver.png">
|
||||
|
Loading…
x
Reference in New Issue
Block a user