66d7d39bee
Doesn't build on windows for some retarded reason
55 lines
1.0 KiB
C
55 lines
1.0 KiB
C
#ifndef CELLTOTYPE_H
|
|
#define CELLTOTYPE_H
|
|
|
|
#include <extdll.h>
|
|
#include "sdk/amxxmodule.h"
|
|
|
|
#include "CVector.h"
|
|
|
|
#include "hook.h"
|
|
#include "forward.h"
|
|
|
|
#include "ham_const.h"
|
|
#include "ham_utils.h"
|
|
|
|
inline void CellToType(const AMX*& amx, const cell& in, int& out)
|
|
{
|
|
out=static_cast<int>(in);
|
|
}
|
|
|
|
inline void CellToType(const AMX*& amx, const cell& in, float& out)
|
|
{
|
|
out=amx_ctof2(in);
|
|
}
|
|
|
|
inline void CellToType(const AMX*& amx, const cell& in, edict_t*& out)
|
|
{
|
|
out=INDEXENT_NEW(in);
|
|
}
|
|
|
|
inline void CellToType(const AMX*& amx, const cell& in, entvars_t*& out)
|
|
{
|
|
out=&(INDEXENT_NEW(in)->v);
|
|
}
|
|
|
|
inline void CellToType(const AMX*& amx, const cell& in, HLBaseEntity*& out)
|
|
{
|
|
out=(HLBaseEntity *)(INDEXENT_NEW(in)->pvPrivateData);
|
|
}
|
|
|
|
inline void CellToType(const AMX*& amx, const cell& in, Vector& out)
|
|
{
|
|
float *v=(float *)MF_GetAmxAddr(amx, in);
|
|
|
|
out.x=v[0];
|
|
out.y=v[1];
|
|
out.z=v[2];
|
|
}
|
|
|
|
inline void CellToType(const AMX*& amx, const cell& in, TraceResult*& out)
|
|
{
|
|
out=reinterpret_cast<TraceResult*>(in);
|
|
}
|
|
|
|
#endif
|