mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Move interface types to public header
This commit is contained in:
parent
67180e51ff
commit
5056d8f040
39
r5dev/public/interface.h
Normal file
39
r5dev/public/interface.h
Normal file
@ -0,0 +1,39 @@
|
||||
#ifndef INTERFACE_H
|
||||
#define INTERFACE_H
|
||||
|
||||
enum class InterfaceStatus_t : int
|
||||
{
|
||||
IFACE_OK = 0,
|
||||
IFACE_FAILED
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Mapping of interface string to globals
|
||||
//-----------------------------------------------------------------------------
|
||||
typedef void* (*CreateInterfaceFn)(const char* pName, int* pReturnCode);
|
||||
typedef void* (*InstantiateInterfaceFn)();
|
||||
typedef HINSTANCE CSysModule;
|
||||
|
||||
struct InterfaceGlobals_t
|
||||
{
|
||||
InstantiateInterfaceFn m_pInterfacePtr;
|
||||
const char* m_pInterfaceName;
|
||||
InterfaceGlobals_t* m_pNextInterfacePtr;
|
||||
};
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
struct FactoryInfo_t
|
||||
{
|
||||
CMemory m_pFactoryPtr;
|
||||
string m_szFactoryFullName;
|
||||
string m_szFactoryName;
|
||||
string m_szFactoryVersion;
|
||||
|
||||
FactoryInfo_t() : m_szFactoryFullName(string()), m_szFactoryName(string()), m_szFactoryVersion(string()), m_pFactoryPtr(nullptr) {}
|
||||
FactoryInfo_t(string factoryFullName, string factoryName, string factoryVersion, uintptr_t factoryPtr) :
|
||||
m_szFactoryFullName(factoryFullName), m_szFactoryName(factoryName), m_szFactoryVersion(factoryVersion), m_pFactoryPtr(factoryPtr) {}
|
||||
FactoryInfo_t(string factoryFullName, uintptr_t factoryPtr) :
|
||||
m_szFactoryFullName(factoryFullName), m_szFactoryName(string()), m_szFactoryVersion(string()), m_pFactoryPtr(factoryPtr) {}
|
||||
};
|
||||
|
||||
#endif // INTERFACE_H
|
@ -1,10 +1,10 @@
|
||||
#pragma once
|
||||
#include "public/interface.h"
|
||||
|
||||
/*-----------------------------------------------------------------------------
|
||||
* _interfaces.h
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
||||
// Maybe make them constexpr.
|
||||
#define VENGINE_LAUNCHER_API_VERSION "VENGINE_LAUNCHER_API_VERSION004"
|
||||
#define VENGINE_GAMEUIFUNCS_VERSION "VENGINE_GAMEUIFUNCS_VERSION005"
|
||||
|
||||
@ -41,42 +41,6 @@
|
||||
#define FACTORY_INTERFACE_VERSION "VFactorySystem001"
|
||||
#define FILESYSTEM_INTERFACE_VERSION "VFileSystem017"
|
||||
#define BASEFILESYSTEM_INTERFACE_VERSION "VBaseFileSystem011"
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
enum class InterfaceStatus_t : int
|
||||
{
|
||||
IFACE_OK = 0,
|
||||
IFACE_FAILED
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Mapping of interface string to globals
|
||||
//-----------------------------------------------------------------------------
|
||||
typedef void* (*CreateInterfaceFn)(const char* pName, int* pReturnCode);
|
||||
typedef void* (*InstantiateInterfaceFn)();
|
||||
typedef HINSTANCE CSysModule;
|
||||
|
||||
struct InterfaceGlobals_t
|
||||
{
|
||||
InstantiateInterfaceFn m_pInterfacePtr;
|
||||
const char* m_pInterfaceName;
|
||||
InterfaceGlobals_t* m_pNextInterfacePtr;
|
||||
};
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
struct FactoryInfo_t
|
||||
{
|
||||
CMemory m_pFactoryPtr;
|
||||
string m_szFactoryFullName;
|
||||
string m_szFactoryName;
|
||||
string m_szFactoryVersion;
|
||||
|
||||
FactoryInfo_t() : m_szFactoryFullName(string()), m_szFactoryName(string()), m_szFactoryVersion(string()), m_pFactoryPtr(nullptr) {}
|
||||
FactoryInfo_t(string factoryFullName, string factoryName, string factoryVersion, uintptr_t factoryPtr) :
|
||||
m_szFactoryFullName(factoryFullName), m_szFactoryName(factoryName), m_szFactoryVersion(factoryVersion), m_pFactoryPtr(factoryPtr) {}
|
||||
FactoryInfo_t(string factoryFullName, uintptr_t factoryPtr) :
|
||||
m_szFactoryFullName(factoryFullName), m_szFactoryName(string()), m_szFactoryVersion(string()), m_pFactoryPtr(factoryPtr) {}
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Class to hold all factories (interfaces)
|
||||
|
@ -342,6 +342,7 @@
|
||||
<ClInclude Include="..\public\inetchannel.h" />
|
||||
<ClInclude Include="..\public\inetmessage.h" />
|
||||
<ClInclude Include="..\public\inetmsghandler.h" />
|
||||
<ClInclude Include="..\public\interface.h" />
|
||||
<ClInclude Include="..\public\ipackedstore.h" />
|
||||
<ClInclude Include="..\public\isnapshotmgr.h" />
|
||||
<ClInclude Include="..\public\isurfacesystem.h" />
|
||||
|
@ -1688,6 +1688,9 @@
|
||||
<ClInclude Include="..\thirdparty\imgui\misc\imgui_utility.h">
|
||||
<Filter>thirdparty\imgui\misc</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\public\interface.h">
|
||||
<Filter>sdk\public</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="..\shared\resource\lockedserver.png">
|
||||
|
@ -336,6 +336,7 @@
|
||||
<ClInclude Include="..\public\inetchannel.h" />
|
||||
<ClInclude Include="..\public\inetmessage.h" />
|
||||
<ClInclude Include="..\public\inetmsghandler.h" />
|
||||
<ClInclude Include="..\public\interface.h" />
|
||||
<ClInclude Include="..\public\ipackedstore.h" />
|
||||
<ClInclude Include="..\public\iserver.h" />
|
||||
<ClInclude Include="..\public\iserverentity.h" />
|
||||
|
@ -1095,6 +1095,9 @@
|
||||
<ClInclude Include="..\tier1\utlstring.h">
|
||||
<Filter>sdk\tier1</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\public\interface.h">
|
||||
<Filter>sdk\public</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common\opcodes.cpp">
|
||||
|
@ -390,6 +390,7 @@
|
||||
<ClInclude Include="..\public\inetchannel.h" />
|
||||
<ClInclude Include="..\public\inetmessage.h" />
|
||||
<ClInclude Include="..\public\inetmsghandler.h" />
|
||||
<ClInclude Include="..\public\interface.h" />
|
||||
<ClInclude Include="..\public\ipackedstore.h" />
|
||||
<ClInclude Include="..\public\iserver.h" />
|
||||
<ClInclude Include="..\public\iserverentity.h" />
|
||||
|
@ -1859,6 +1859,9 @@
|
||||
<ClInclude Include="..\thirdparty\imgui\misc\imgui_utility.h">
|
||||
<Filter>thirdparty\imgui\misc</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\public\interface.h">
|
||||
<Filter>sdk\public</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="..\shared\resource\lockedserver.png">
|
||||
|
Loading…
x
Reference in New Issue
Block a user