2004-07-28 03:14:07 +00:00
|
|
|
#ifndef _FAKEMETA_INCLUDE_H
|
|
|
|
#define _FAKEMETA_INCLUDE_H
|
|
|
|
|
|
|
|
#include "sdk/amxxmodule.h"
|
|
|
|
#include "CVector.h"
|
|
|
|
#include "engfunc.h"
|
|
|
|
#include "dllfunc.h"
|
|
|
|
#include "pev.h"
|
|
|
|
#include "forward.h"
|
2004-09-14 06:16:52 +00:00
|
|
|
#include "fm_tr.h"
|
2004-07-28 03:14:07 +00:00
|
|
|
|
2004-08-05 20:57:03 +00:00
|
|
|
extern edict_t *g_player_edicts[33];
|
|
|
|
|
|
|
|
inline edict_t* INDEXENT2( int iEdictNum )
|
|
|
|
{
|
|
|
|
if (iEdictNum >= 1 && iEdictNum <= gpGlobals->maxClients)
|
|
|
|
return g_player_edicts[iEdictNum];
|
|
|
|
|
|
|
|
else
|
|
|
|
return (*g_engfuncs.pfnPEntityOfEntIndex)(iEdictNum);
|
|
|
|
}
|
|
|
|
#define CHECK_ENTITY(x) if (x != 0 && (FNullEnt(INDEXENT2(x)) || x < 0 || x > gpGlobals->maxEntities)) { MF_RaiseAmxError(amx,AMX_ERR_NATIVE); return 0; }
|
2004-07-28 03:14:07 +00:00
|
|
|
|
|
|
|
extern AMX_NATIVE_INFO engfunc_natives[];
|
|
|
|
extern AMX_NATIVE_INFO dllfunc_natives[];
|
|
|
|
extern AMX_NATIVE_INFO pev_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[];
|
2004-09-14 06:16:52 +00:00
|
|
|
extern AMX_NATIVE_INFO tr_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;
|
|
|
|
|
2004-07-28 03:14:07 +00:00
|
|
|
|
2004-08-22 12:40:24 +00:00
|
|
|
#endif //_FAKEMETA_INCLUDE_H
|
|
|
|
|