322 lines
14 KiB
C++
322 lines
14 KiB
C++
#pragma once
|
|
|
|
#define WEAK __declspec(selectany)
|
|
|
|
namespace game {
|
|
// Com
|
|
WEAK symbol<void(int channel, const char* fmt, ...)> Com_Printf{0x41BD20};
|
|
WEAK symbol<void(int channel, const char* fmt, ...)> Com_PrintWarning{0x406320};
|
|
WEAK symbol<void(int channel, const char* fmt, ...)> Com_PrintError{0x4C6980};
|
|
WEAK symbol<void(int channel, const char* fmt, ...)> Com_DPrintf{0x42B1F0};
|
|
WEAK symbol<void(int channel, const char* msg, int error)> Com_PrintMessage{
|
|
0x456B70};
|
|
WEAK symbol<void(errorParm_t code, const char* fmt, ...)> Com_Error{0x43DD90};
|
|
WEAK symbol<void()> Com_OpenLogFile{0x603030};
|
|
WEAK symbol<int(char* data_p)> Com_Compress{0x4316A0};
|
|
WEAK symbol<void()> Com_EventLoop{0x4987C0};
|
|
WEAK symbol<void()> Com_ServerPacketEvent{0x47FD30};
|
|
WEAK symbol<void(const char* filename)> Com_BeginParseSession{0x4A5C90};
|
|
WEAK symbol<void()> Com_EndParseSession{0x4D12C0};
|
|
WEAK symbol<const char*(const char** data_p)> Com_Parse{0x486600};
|
|
|
|
WEAK symbol<const char*(const char* fmt, ...)> va{0x4869F0};
|
|
|
|
// Con
|
|
WEAK symbol<bool(const char* cmd)> Con_IsDvarCommand{0x4B6610};
|
|
|
|
// Sys
|
|
WEAK symbol<void(const char* exeName)> Sys_QuitAndStartProcess{0x4D69A0};
|
|
WEAK symbol<void(CriticalSection critSect)> Sys_EnterCriticalSection{0x4A4CD0};
|
|
WEAK symbol<void(CriticalSection critSect)> Sys_LeaveCriticalSection{0x4F78E0};
|
|
WEAK symbol<void(TempPriority*)> Sys_TempPriorityEnd{0x4FB800};
|
|
WEAK symbol<void(FastCriticalSection* critSect)> Sys_LockWrite{0x43C1D0};
|
|
WEAK symbol<int()> Sys_Milliseconds{0x44E130};
|
|
WEAK symbol<bool()> Sys_IsMainThread{0x42FA00};
|
|
WEAK symbol<bool()> Sys_IsServerThread{0x4590E0};
|
|
WEAK symbol<bool()> Sys_IsDatabaseThread{0x4C9380};
|
|
WEAK symbol<void(int valueIndex, void* data)> Sys_SetValue{0x483310};
|
|
WEAK symbol<void(int msec)> Sys_Sleep{0x4CFBE0};
|
|
WEAK symbol<void(const char* error, ...)> Sys_Error{0x40BFF0};
|
|
|
|
WEAK symbol<short(short l)> BigShort{0x40E7E0};
|
|
WEAK symbol<short(short l)> ShortNoSwap{0x4261A0};
|
|
|
|
WEAK symbol<int(int size)> LargeLocalBegin{0x43fA50};
|
|
WEAK symbol<int(int size)> LargeLocalBeginRight{0x6317D0};
|
|
|
|
// CL
|
|
WEAK symbol<int(int localClientNum)> CL_IsCgameInitialized{0x4EEA50};
|
|
WEAK symbol<void()> CL_CoOpConnect{0x57D240};
|
|
|
|
// BG
|
|
WEAK symbol<WeaponCompleteDef*(const char* name, const char* folder)>
|
|
BG_LoadWeaponVariantDefInternal{0x4F5AF0};
|
|
|
|
// Game
|
|
WEAK symbol<int()> G_GetTime{0x4E94E0};
|
|
|
|
WEAK symbol<void(int, const char* text)> Cbuf_AddText{0x4A1090};
|
|
WEAK symbol<void(int localClientNum, int controllerIndex, const char* text)>
|
|
Cmd_ExecuteSingleCommand{0x46AFD0};
|
|
WEAK symbol<void(const char* cmdName, void(*function),
|
|
cmd_function_s* allocedCmd, int isKey)>
|
|
Cmd_AddCommand{0x4478A0};
|
|
WEAK symbol<void(const char* cmdName, const char* dir, const char* ext)>
|
|
Cmd_SetAutoComplete{0x48A880};
|
|
|
|
// Dvars
|
|
WEAK symbol<dvar_t*(const char* dvarName)> Dvar_FindVar{0x4B29D0};
|
|
WEAK symbol<const dvar_t*(const char* dvarName, const char* value,
|
|
unsigned __int16 flags, const char* description)>
|
|
Dvar_RegisterString{0x49E0B0};
|
|
WEAK symbol<const dvar_t*(const char* dvarName, bool value,
|
|
unsigned __int16 flags, const char* description)>
|
|
Dvar_RegisterBool{0x429390};
|
|
WEAK symbol<const dvar_t*(const char* dvarName, const char** valueList,
|
|
int defaultIndex, unsigned __int16 flags,
|
|
const char* description)>
|
|
Dvar_RegisterEnum{0x4CB7C0};
|
|
WEAK symbol<const dvar_t*(const char* dvarName, float value, float min,
|
|
float max, unsigned __int16 flags,
|
|
const char* description)>
|
|
Dvar_RegisterFloat{0x4051D0};
|
|
WEAK symbol<const dvar_t*(const char* dvarName, int value, int min, int max,
|
|
unsigned __int16 flags, const char* description)>
|
|
Dvar_RegisterInt{0x4E9490};
|
|
|
|
WEAK symbol<void(const char* dvarName, double value)> Dvar_SetFloatByName{
|
|
0x497250};
|
|
WEAK symbol<void(const char* dvarName, const char* value)> Dvar_SetStringByName{
|
|
0x440C60};
|
|
WEAK symbol<void(const dvar_t* dvar, int value)> Dvar_SetInt{0x4FA540};
|
|
WEAK symbol<void(const dvar_t* dvar, bool value)> Dvar_SetBool{0x4E57E0};
|
|
WEAK symbol<void(const dvar_t* dvar, const char* value)> Dvar_SetString{
|
|
0x480E70};
|
|
WEAK symbol<const char*(const char* dvarName)> Dvar_GetString{0x411F50};
|
|
WEAK symbol<bool(const char* dvarName)> Dvar_GetBool{0x481010};
|
|
|
|
// Script
|
|
WEAK symbol<void(const char* error)> Scr_Error{0x4E9C50};
|
|
WEAK symbol<void(const char* error)> Scr_ObjectError{0x470600};
|
|
WEAK symbol<void(unsigned int paramIndex, const char* error)> Scr_ParamError{
|
|
0x42C880};
|
|
WEAK symbol<void()> Scr_ShutdownAllocNode{0x486BC0};
|
|
WEAK symbol<unsigned int(const char* filename)> Scr_CreateCanonicalFilename{
|
|
0x43A5E0};
|
|
|
|
WEAK symbol<unsigned int(unsigned int parentId, unsigned int unsignedValue)>
|
|
FindVariable{0x4B78B0};
|
|
WEAK symbol<void(unsigned int parentId, unsigned int unsignedValue)>
|
|
RemoveVariable{0x4C2DD0};
|
|
WEAK symbol<unsigned int(unsigned int parentId, unsigned int id)> FindObject{
|
|
0x49A980};
|
|
WEAK symbol<gentity_s*(scr_entref_t entref)> GetEntity{0x4678C0};
|
|
WEAK symbol<unsigned int(unsigned int parentId, unsigned int unsignedValue)>
|
|
GetVariable{0x482290};
|
|
WEAK symbol<unsigned int(unsigned int parentId, unsigned int unsignedValue)>
|
|
GetNewVariable{0x4F1990};
|
|
WEAK symbol<unsigned int(unsigned int parentId, unsigned int id)> GetObject{
|
|
0x4370B0};
|
|
|
|
WEAK symbol<unsigned int()> Scr_GetNumParam{0x4443F0};
|
|
WEAK symbol<void()> Scr_ClearOutParams{0x4A3A00};
|
|
WEAK symbol<const char*(unsigned int index)> Scr_GetTypeName{0x4CE240};
|
|
WEAK symbol<const char*(unsigned int index)> Scr_GetString{0x4D39C0};
|
|
WEAK symbol<void(const char* value)> Scr_AddString{0x4CD670};
|
|
WEAK symbol<unsigned int(unsigned int index)> Scr_GetConstString{0x4AF1B0};
|
|
WEAK symbol<void(unsigned int value)> Scr_AddConstString{0x404CF0};
|
|
WEAK symbol<int(unsigned int index)> Scr_GetInt{0x454520};
|
|
WEAK symbol<void(int value)> Scr_AddInt{0x4865B0};
|
|
WEAK symbol<float(unsigned int index)> Scr_GetFloat{0x4AE590};
|
|
WEAK symbol<void(float value)> Scr_AddFloat{0x4986E0};
|
|
WEAK symbol<int(unsigned int index)> Scr_GetType{0x464EE0};
|
|
WEAK symbol<void(int func, const char* name)> Scr_RegisterFunction{0x4F59C0};
|
|
WEAK symbol<unsigned int(unsigned int index)> Scr_GetFunc{0x438E10};
|
|
WEAK symbol<int(const char* pos)> Scr_IsInOpcodeMemory{0x47D1D0};
|
|
|
|
WEAK symbol<char*(const char* filename, const char* extFilename,
|
|
const char* codePos, bool archive)>
|
|
Scr_AddSourceBuffer{0x4173C0};
|
|
WEAK symbol<unsigned int(const char* filename)> Scr_LoadScript{0x46CD90};
|
|
WEAK symbol<int(const char* filename, const char* name)> Scr_GetFunctionHandle{
|
|
0x462750};
|
|
WEAK symbol<int(int handle, unsigned int paramcount)> Scr_ExecThread{0x41A2C0};
|
|
WEAK symbol<void(unsigned __int16 handle)> Scr_FreeThread{0x4C44A0};
|
|
|
|
WEAK symbol<void(sval_u* parseData, unsigned char user)> ScriptParse{0x4956B0};
|
|
WEAK symbol<void(sval_u* val, unsigned int filePosId, unsigned int fileCountId,
|
|
unsigned int scriptId, PrecacheEntry* entries,
|
|
int entriesCount)>
|
|
ScriptCompile{0x4FFDA0};
|
|
|
|
WEAK symbol<char*(int len)> TempMalloc{0x4EA7C0};
|
|
|
|
// SL
|
|
WEAK symbol<const char*(unsigned int stringValue)> SL_ConvertToString{0x40E990};
|
|
WEAK symbol<void(unsigned int stringValue)> SL_AddRefToString{0x4C4BD0};
|
|
WEAK symbol<void(unsigned int stringValue)> SL_RemoveRefToString{0x4698E0};
|
|
|
|
// NET
|
|
WEAK symbol<const char*(netadr_t a)> NET_AdrToString{0x4BF490};
|
|
WEAK symbol<const char*()> NET_ErrorString{0x430390};
|
|
|
|
// Memory
|
|
WEAK symbol<void*(int size)> Hunk_AllocateTempMemory{0x492DF0};
|
|
WEAK symbol<void*(int size, int alignment)> Hunk_AllocAlignInternal{0x486C40};
|
|
WEAK symbol<void*(int size)> Hunk_AllocateTempMemoryHigh{0x403B40};
|
|
WEAK symbol<HunkUser*(int maxSize, const char* name, bool fixed, int type)>
|
|
Hunk_UserCreate{0x4F1A10};
|
|
WEAK symbol<void*(HunkUser* user, int size, int alignment)> Hunk_UserAlloc{
|
|
0x469410};
|
|
|
|
WEAK symbol<void(Statement_s* statement)> free_expression{0x436260};
|
|
|
|
WEAK symbol<void(void*)> _free{0x674BC5};
|
|
|
|
// Zone
|
|
WEAK symbol<void*(int size)> Z_VirtualAllocInternal{0x4D9CF0};
|
|
WEAK symbol<void*(int size, const char* name)> Z_TryVirtualAllocInternal{
|
|
0x4D9590};
|
|
WEAK symbol<void(void* ptr)> Z_VirtualFreeInternal{0x4FE260};
|
|
|
|
// DB
|
|
WEAK symbol<XAssetHeader(XAssetType type, const char* name)>
|
|
DB_FindXAssetHeader{0x40B200};
|
|
WEAK symbol<int(XAssetType type, const char* name)> DB_IsXAssetDefault{
|
|
0x41AB70};
|
|
WEAK symbol<void(RawFile* rawfile, char* buffer, int size)> DB_GetRawBuffer{
|
|
0x4345E0};
|
|
WEAK symbol<void(XZoneInfo* zoneInfo, unsigned int zoneCount,
|
|
unsigned int syncMode)>
|
|
DB_LoadXAssets{0x4CFC90};
|
|
WEAK symbol<char*(const char* filename, char* buf, int size)> DB_ReadRawFile{
|
|
0x46DA60};
|
|
WEAK symbol<int(RawFile* rawfile)> DB_GetRawFileLen{0x4D2E60};
|
|
|
|
// FS
|
|
WEAK symbol<int(const char* qpath, void** buffer)> _FS_ReadFile{0x4A5480};
|
|
WEAK symbol<unsigned int(void* buffer, int len, int h)> FS_Read{0x42EDC0};
|
|
WEAK symbol<int(const void* buffer, int len, int h)> FS_Write{0x449FA0};
|
|
WEAK symbol<void(int h)> FS_FCloseFile{0x44E0A0};
|
|
WEAK symbol<int(const char* qpath, int* f, fsMode_t mode)> FS_FOpenFileByMode{
|
|
0x41DF70};
|
|
WEAK symbol<int(const char* filename, int* file)> FS_FOpenFileRead{0x48DD10};
|
|
WEAK symbol<const char**(const char* path, const char* extension,
|
|
FsListBehavior_e behavior, int* numfiles,
|
|
int allocTrackType)>
|
|
FS_ListFiles{0x4448F0};
|
|
WEAK symbol<void(const char** list, int allocTrackType)> FS_FreeFileList{
|
|
0x41C7A0};
|
|
WEAK symbol<void(const char* base, const char* game, const char* qpath,
|
|
char* ospath)>
|
|
FS_BuildOSPath{0x4E48F0};
|
|
WEAK symbol<void(const char* gameName)> FS_Startup{0x47AF20};
|
|
|
|
// UI
|
|
WEAK symbol<Font_s*(const ScreenPlacement* scrPlace, int fontEnum, float scale)>
|
|
UI_GetFontHandle{0x4C2600};
|
|
WEAK symbol<int(const char* text, int maxChars, Font_s* font, float scale)>
|
|
UI_TextWidth{0x4F5070};
|
|
WEAK symbol<int(Font_s* font, float scale)> UI_TextHeight{0x407710};
|
|
WEAK symbol<void(const ScreenPlacement* scrPlace, const char* text,
|
|
int maxChars, Font_s* font, float x, float y, int horzAlign,
|
|
int vertAlign, float scale, const float* color, int style)>
|
|
UI_DrawText{0x40FC70};
|
|
|
|
// PC
|
|
WEAK symbol<int(source_s* source)> PC_Directive_define{0x4F8CF0};
|
|
WEAK symbol<void(define_s* define)> PC_FreeDefine{0x464F40};
|
|
WEAK symbol<token_s*(token_s* token)> PC_CopyToken{0x4D3670};
|
|
WEAK symbol<int(int handle, pc_token_s* pc_token)> PC_ReadTokenHandle{0x46C3B0};
|
|
WEAK symbol<void(int handle, const char* format, ...)> PC_SourceError{0x43A6D0};
|
|
|
|
WEAK symbol<void*(unsigned int size)> GetMemory{0x441880};
|
|
WEAK symbol<void*(unsigned int size)> GetClearedMemory{0x41BCD0};
|
|
WEAK symbol<void(void* ptr)> FreeMemory{0x4A7D20};
|
|
|
|
// PM
|
|
WEAK symbol<void(pmove_t* pm, trace_t* results, const float* start,
|
|
const float* end, const Bounds* bounds, int passEntityNum,
|
|
int contentMask)>
|
|
PM_trace{0x4B7A20};
|
|
WEAK symbol<void(pmove_t* pm, trace_t* results, const float* start,
|
|
const float* end, const Bounds* bounds, int passEntityNum,
|
|
int contentMask)>
|
|
PM_playerTrace{0x447B90};
|
|
WEAK symbol<bool(const playerState_s* ps)> PM_IsSprinting{0x47CF70};
|
|
|
|
// Live
|
|
WEAK symbol<const char*(int controllerIndex)> Live_GetLocalClientName{0x492EF0};
|
|
|
|
// Info
|
|
WEAK symbol<int(const char* s)> Info_Validate{0x425530};
|
|
|
|
// IW functions, could use Microsoft specific functions but who cares
|
|
WEAK symbol<int(const char* s0, const char* s1)> I_stricmp{0x409B80};
|
|
WEAK symbol<int(const char* s0, const char* s1, int n)> I_strnicmp{0x491E60};
|
|
|
|
WEAK symbol<void(field_t* edit)> Field_Clear{0x45C350};
|
|
|
|
// String
|
|
WEAK symbol<int(const char* string)> StringTable_HashString{0x498080};
|
|
|
|
// Vec3
|
|
WEAK symbol<void(const float* v, float scale, const float* result)> Vec3Scale{
|
|
0x429220};
|
|
|
|
// Variables
|
|
WEAK symbol<CmdArgs> cmd_args{0x144FED0};
|
|
WEAK symbol<CmdArgs> sv_cmd_args{0x145ABA0};
|
|
WEAK symbol<gentity_s> g_entities{0xEAAC38};
|
|
WEAK symbol<gclient_s> g_clients{0x10911E8};
|
|
|
|
WEAK symbol<scrVmPub_t> scrVmPub{0x190DDF0};
|
|
WEAK symbol<scrVarPub_t> scrVarPub{0x18E7508};
|
|
WEAK symbol<scrCompilePub_t> scrCompilePub{0x156BF88};
|
|
WEAK symbol<scrCompileGlob_t> scrCompileGlob{0x158CFC8};
|
|
WEAK symbol<scrAnimPub_t> scrAnimPub{0x156BB68};
|
|
|
|
WEAK symbol<bool> g_loadedImpureScript{0x168F308};
|
|
WEAK symbol<char> g_EndPos{0x1912598};
|
|
|
|
WEAK symbol<unsigned char*> g_largeLocalBuf{0x195AAF8};
|
|
|
|
WEAK symbol<int> g_largeLocalPos{0x1963998};
|
|
WEAK symbol<int> g_maxLargeLocalPos{0x195AAFC};
|
|
|
|
WEAK symbol<int> g_largeLocalRightPos{0x195AAE8};
|
|
WEAK symbol<int> g_minLargeLocalRightPos{0x195AB00};
|
|
|
|
WEAK symbol<unsigned long> g_dwTlsIndex{0x1BFC750};
|
|
|
|
WEAK symbol<int> com_frameTime{0x145EC7C};
|
|
|
|
WEAK symbol<bool> cin_skippable{0x73264C};
|
|
|
|
WEAK symbol<int> com_fixedConsolePosition{0x145EC10};
|
|
|
|
WEAK symbol<field_t> g_consoleField{0x88C700};
|
|
WEAK symbol<ConDrawInputGlob> conDrawInputGlob{0x86E788};
|
|
WEAK symbol<Console> con{0x86ED88};
|
|
WEAK symbol<float> g_console_char_height{0x732658};
|
|
WEAK symbol<int> g_console_field_width{0x732654};
|
|
WEAK symbol<ScreenPlacementMode> activeScreenPlacementMode{0x93AAF4};
|
|
WEAK symbol<ScreenPlacement> scrPlaceFullUnsafe{0x93AB70};
|
|
|
|
WEAK symbol<int> logfile{0x145EC6C};
|
|
|
|
WEAK symbol<level_locals_t> level{0x10A7190};
|
|
|
|
WEAK symbol<RTL_CRITICAL_SECTION> s_criticalSection{0x19FBA28};
|
|
WEAK symbol<SOCKET> ip_socket{0x1A040C8};
|
|
|
|
WEAK symbol<source_s*> sourceFiles{0x7440E8};
|
|
WEAK symbol<int> numtokens{0x7441F0};
|
|
|
|
WEAK symbol<uiInfo_s> uiInfoArray{0x1920470};
|
|
|
|
WEAK symbol<void*> DB_GetXAssetSizeHandlers{0x733408};
|
|
WEAK symbol<void*> DB_XAssetPool{0x7337F8};
|
|
WEAK symbol<unsigned int> g_poolSize{0x733510};
|
|
} // namespace game
|