2014-08-04 10:10:06 +00:00
|
|
|
// vim: set ts=4 sw=4 tw=99 noet:
|
|
|
|
//
|
|
|
|
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
|
|
|
|
// Copyright (C) The AMX Mod X Development Team.
|
|
|
|
//
|
|
|
|
// This software is licensed under the GNU General Public License, version 3 or higher.
|
|
|
|
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
|
|
|
|
// https://alliedmods.net/amxmodx-license
|
|
|
|
|
|
|
|
//
|
|
|
|
// Fakemeta Module
|
|
|
|
//
|
|
|
|
|
2004-07-28 03:14:07 +00:00
|
|
|
#ifndef _FAKEMETA_INCLUDE_H
|
|
|
|
#define _FAKEMETA_INCLUDE_H
|
|
|
|
|
2014-08-09 18:50:45 +00:00
|
|
|
#include "amxxmodule.h"
|
2006-04-30 07:27:14 +00:00
|
|
|
#include <entity_state.h>
|
|
|
|
#include <usercmd.h>
|
2004-07-28 03:14:07 +00:00
|
|
|
#include "engfunc.h"
|
|
|
|
#include "dllfunc.h"
|
|
|
|
#include "pev.h"
|
|
|
|
#include "forward.h"
|
2004-09-14 06:16:52 +00:00
|
|
|
#include "fm_tr.h"
|
2006-03-14 16:55:06 +00:00
|
|
|
#include "glb.h"
|
2015-09-30 17:08:39 +00:00
|
|
|
#include <amtl/am-string.h>
|
|
|
|
#include <amtl/am-vector.h>
|
2015-08-13 19:08:11 +00:00
|
|
|
#include <IGameConfigs.h>
|
|
|
|
#include <HLTypeConversion.h>
|
2004-07-28 03:14:07 +00:00
|
|
|
|
2004-10-20 14:24:54 +00:00
|
|
|
#ifdef DONT_TOUCH_THIS_AGAIN_BAIL
|
2004-10-04 06:14:30 +00:00
|
|
|
#define CHECK_ENTITY(x) \
|
|
|
|
if (x < 0 || x > gpGlobals->maxEntities) { \
|
|
|
|
MF_LogError(amx, AMX_ERR_NATIVE, "Entity out of range (%d)", x); \
|
|
|
|
return 0; \
|
|
|
|
} else { \
|
|
|
|
if (x <= gpGlobals->maxClients) { \
|
|
|
|
if (!MF_IsPlayerIngame(x)) { \
|
|
|
|
MF_LogError(amx, AMX_ERR_NATIVE, "Invalid player %d (not in-game)", x); \
|
|
|
|
return 0; \
|
|
|
|
} \
|
|
|
|
} else { \
|
2015-10-06 21:53:01 +00:00
|
|
|
if (x != 0 && FNullEnt(TypeConversion.id_to_edict(x))) { \
|
2004-10-04 06:14:30 +00:00
|
|
|
MF_LogError(amx, AMX_ERR_NATIVE, "Invalid entity %d", x); \
|
|
|
|
return 0; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
}
|
2004-10-20 14:24:54 +00:00
|
|
|
#endif
|
2004-07-28 03:14:07 +00:00
|
|
|
|
2015-08-13 19:08:11 +00:00
|
|
|
#define CHECK_ENTITY(x) if (x != 0 && (FNullEnt(TypeConversion.id_to_edict(x)) || x < 0 || x > gpGlobals->maxEntities)) { MF_LogError(amx, AMX_ERR_NATIVE, "Invalid entity"); return 0; }
|
2013-07-02 14:05:39 +00:00
|
|
|
#define CHECK_OFFSET(x) if (x < 0) { MF_LogError(amx, AMX_ERR_NATIVE, "Invalid offset"); return 0; }
|
|
|
|
|
2004-07-28 03:14:07 +00:00
|
|
|
extern AMX_NATIVE_INFO engfunc_natives[];
|
|
|
|
extern AMX_NATIVE_INFO dllfunc_natives[];
|
2004-08-06 00:56:48 +00:00
|
|
|
extern AMX_NATIVE_INFO forward_natives[];
|
2004-08-11 05:06:27 +00:00
|
|
|
extern AMX_NATIVE_INFO pdata_natives[];
|
2015-08-13 19:08:11 +00:00
|
|
|
extern AMX_NATIVE_INFO pdata_gc_natives[];
|
2004-09-14 06:16:52 +00:00
|
|
|
extern AMX_NATIVE_INFO tr_Natives[];
|
2005-07-19 16:08:00 +00:00
|
|
|
extern AMX_NATIVE_INFO pev_natives[];
|
2006-03-14 16:55:06 +00:00
|
|
|
extern AMX_NATIVE_INFO glb_natives[];
|
2006-05-10 11:19:24 +00:00
|
|
|
extern AMX_NATIVE_INFO misc_natives[];
|
2004-07-28 03:14:07 +00:00
|
|
|
extern TraceResult g_tr;
|
|
|
|
|
2004-08-06 00:56:48 +00:00
|
|
|
/* Wouldnt modifying the table AFTER it's memcpy'd be ... pointless?
|
2004-07-28 03:14:07 +00:00
|
|
|
extern enginefuncs_t g_EngineFuncs_Table;
|
|
|
|
extern enginefuncs_t g_EngineFuncs_Post_Table;
|
2004-08-06 00:56:48 +00:00
|
|
|
*/
|
|
|
|
// mark down pointers when the calls are made instead (this means amxxmodule.cpp needs to be changed slightly for this module)
|
|
|
|
extern DLL_FUNCTIONS *g_pFunctionTable;
|
|
|
|
extern DLL_FUNCTIONS *g_pFunctionTable_Post;
|
|
|
|
extern enginefuncs_t *g_pengfuncsTable;
|
|
|
|
extern enginefuncs_t *g_pengfuncsTable_Post;
|
2005-08-18 09:33:51 +00:00
|
|
|
extern NEW_DLL_FUNCTIONS *g_pNewFunctionsTable;
|
|
|
|
extern NEW_DLL_FUNCTIONS *g_pNewFunctionsTable_Post;
|
2004-07-28 03:14:07 +00:00
|
|
|
|
2015-08-13 19:08:11 +00:00
|
|
|
extern IGameConfig *CommonConfig;
|
2015-10-09 09:01:12 +00:00
|
|
|
extern IGameConfig *GamerulesConfig;
|
2015-08-13 19:08:11 +00:00
|
|
|
extern IGameConfigManager *ConfigManager;
|
|
|
|
|
|
|
|
extern HLTypeConversion TypeConversion;
|
2015-10-09 09:01:12 +00:00
|
|
|
extern void *GameRulesAddress;
|
2015-08-13 19:08:11 +00:00
|
|
|
|
2004-08-22 12:40:24 +00:00
|
|
|
#endif //_FAKEMETA_INCLUDE_H
|
|
|
|
|