mirror of
https://github.com/ChronosX88/mta-mono.git
synced 2024-11-22 10:12:20 +00:00
Lua functions (CLuaFunctionDefinitions)
This commit is contained in:
parent
2bc3b40824
commit
9de5c26385
@ -77,11 +77,10 @@ bool CMonoFunctions::Config::Set( MonoString *msKey, MonoString *msValue )
|
|||||||
{
|
{
|
||||||
if( RESOURCE )
|
if( RESOURCE )
|
||||||
{
|
{
|
||||||
string
|
const char* szKey = mono_string_to_utf8( msKey );
|
||||||
sKey = mono_string_to_utf8( msKey ),
|
const char* szValue = mono_string_to_utf8( msValue );
|
||||||
sValue = mono_string_to_utf8( msValue );
|
|
||||||
|
|
||||||
return CLuaFunctionDefinitions::Set( RESOURCE->GetLua(), sKey, sValue );
|
return CLuaFunctionDefinitions::Set( RESOURCE->GetLua(), szKey, szValue );
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
@ -91,18 +90,15 @@ MonoObject* CMonoFunctions::Element::GetPosition( unsigned int element )
|
|||||||
{
|
{
|
||||||
if( RESOURCE )
|
if( RESOURCE )
|
||||||
{
|
{
|
||||||
float
|
Vector3 vecPosition;
|
||||||
fX = 0.0f,
|
|
||||||
fY = 0.0f,
|
|
||||||
fZ = 0.0f;
|
|
||||||
|
|
||||||
if( CLuaFunctionDefinitions::GetElementPosition( RESOURCE->GetLua(), (void*)element, fX, fY, fZ ) )
|
if( CLuaFunctionDefinitions::GetElementPosition( RESOURCE->GetLua(), (void*)element, vecPosition ) )
|
||||||
{
|
{
|
||||||
CMonoClass* pClass = RESOURCE->GetClassFromName( "MultiTheftAuto", "Vector3" );
|
CMonoClass* pClass = RESOURCE->GetClassFromName( "MultiTheftAuto", "Vector3" );
|
||||||
|
|
||||||
if( pClass )
|
if( pClass )
|
||||||
{
|
{
|
||||||
void *args[] = { &fX, &fY, &fZ };
|
void *args[] = { &vecPosition.fX, &vecPosition.fY, &vecPosition.fZ };
|
||||||
|
|
||||||
CMonoObject* pObject = pClass->New( mono_domain_get(), args, 3 );
|
CMonoObject* pObject = pClass->New( mono_domain_get(), args, 3 );
|
||||||
|
|
||||||
|
@ -35,7 +35,10 @@ extern "C"
|
|||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
|
#pragma warning( push )
|
||||||
|
#pragma warning( disable: 4996 )
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
#pragma warning( pop )
|
||||||
|
|
||||||
#include <mono/jit/jit.h>
|
#include <mono/jit/jit.h>
|
||||||
#include <mono/metadata/assembly.h>
|
#include <mono/metadata/assembly.h>
|
||||||
@ -73,4 +76,209 @@ namespace FunctionArgumentType
|
|||||||
TYPE_TABLE = 6
|
TYPE_TABLE = 6
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct SHeatHazeSettings
|
||||||
|
{
|
||||||
|
SHeatHazeSettings( void )
|
||||||
|
: ucIntensity( 0 )
|
||||||
|
, ucRandomShift( 0 )
|
||||||
|
, usSpeedMin( 1 )
|
||||||
|
, usSpeedMax( 1 )
|
||||||
|
, sScanSizeX( 1 )
|
||||||
|
, sScanSizeY( 1 )
|
||||||
|
, usRenderSizeX( 1 )
|
||||||
|
, usRenderSizeY( 1 )
|
||||||
|
, bInsideBuilding( false )
|
||||||
|
{}
|
||||||
|
|
||||||
|
unsigned char ucIntensity; // 0 to 255
|
||||||
|
unsigned char ucRandomShift; // 0 to 255
|
||||||
|
unsigned short usSpeedMin; // 0 to 1000
|
||||||
|
unsigned short usSpeedMax; // 0 to 1000
|
||||||
|
short sScanSizeX; // -1000 to 1000
|
||||||
|
short sScanSizeY; // -1000 to 1000
|
||||||
|
unsigned short usRenderSizeX; // 0 to 1000
|
||||||
|
unsigned short usRenderSizeY; // 0 to 1000
|
||||||
|
bool bInsideBuilding;
|
||||||
|
};
|
||||||
|
|
||||||
|
//
|
||||||
|
// SColor
|
||||||
|
//
|
||||||
|
// Encapsulates the most common usage of 4 byte color storage.
|
||||||
|
// Casts to and from a DWORD as 0xAARRGGBB
|
||||||
|
//
|
||||||
|
class SColor
|
||||||
|
{
|
||||||
|
// No shifting allowed to access the color channel information
|
||||||
|
void operator >> ( int ) const;
|
||||||
|
void operator << ( int ) const;
|
||||||
|
void operator >>= ( int );
|
||||||
|
void operator <<= ( int );
|
||||||
|
|
||||||
|
public:
|
||||||
|
union
|
||||||
|
{
|
||||||
|
struct
|
||||||
|
{
|
||||||
|
unsigned char B, G, R, A;
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned long ulARGB;
|
||||||
|
};
|
||||||
|
|
||||||
|
SColor() {}
|
||||||
|
SColor( unsigned long ulValue )
|
||||||
|
{
|
||||||
|
ulARGB = ulValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
operator unsigned long() const
|
||||||
|
{
|
||||||
|
return ulARGB;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
//
|
||||||
|
// SColorARGB
|
||||||
|
//
|
||||||
|
// Make an SColor from A,R,G,B
|
||||||
|
//
|
||||||
|
class SColorARGB : public SColor
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
SColorARGB( unsigned char ucA, unsigned char ucR, unsigned char ucG, unsigned char ucB )
|
||||||
|
{
|
||||||
|
A = ucA;
|
||||||
|
R = ucR;
|
||||||
|
G = ucG;
|
||||||
|
B = ucB;
|
||||||
|
}
|
||||||
|
|
||||||
|
template < class T, class U, class V, class W >
|
||||||
|
SColorARGB ( T a, U r, V g, W b )
|
||||||
|
{
|
||||||
|
A = Clamp < unsigned char >( 0, static_cast <unsigned char> ( a ), 255 );
|
||||||
|
R = Clamp < unsigned char >( 0, static_cast <unsigned char> ( r ), 255 );
|
||||||
|
G = Clamp < unsigned char >( 0, static_cast <unsigned char> ( g ), 255 );
|
||||||
|
B = Clamp < unsigned char >( 0, static_cast <unsigned char> ( b ), 255 );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
//
|
||||||
|
// SColorRGBA
|
||||||
|
//
|
||||||
|
// Make an SColor from R,G,B,A
|
||||||
|
//
|
||||||
|
class SColorRGBA : public SColor
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
SColorRGBA ( unsigned char ucR, unsigned char ucG, unsigned char ucB, unsigned char ucA )
|
||||||
|
{
|
||||||
|
A = ucA; R = ucR; G = ucG; B = ucB;
|
||||||
|
}
|
||||||
|
|
||||||
|
template < class T, class U, class V, class W >
|
||||||
|
SColorRGBA ( T r, U g, V b, W a )
|
||||||
|
{
|
||||||
|
A = Clamp < unsigned char > ( 0, static_cast < unsigned char > ( a ), 255 );
|
||||||
|
R = Clamp < unsigned char > ( 0, static_cast < unsigned char > ( r ), 255 );
|
||||||
|
G = Clamp < unsigned char > ( 0, static_cast < unsigned char > ( g ), 255 );
|
||||||
|
B = Clamp < unsigned char > ( 0, static_cast < unsigned char > ( b ), 255 );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
//
|
||||||
|
// Things to make it simpler to use SColor with the source code as it stands
|
||||||
|
//
|
||||||
|
typedef SColor RGBA;
|
||||||
|
|
||||||
|
inline unsigned char COLOR_RGBA_R ( SColor color ) { return color.R; }
|
||||||
|
inline unsigned char COLOR_RGBA_G ( SColor color ) { return color.G; }
|
||||||
|
inline unsigned char COLOR_RGBA_B ( SColor color ) { return color.B; }
|
||||||
|
inline unsigned char COLOR_RGBA_A ( SColor color ) { return color.A; }
|
||||||
|
inline unsigned char COLOR_ARGB_A ( SColor color ) { return color.A; }
|
||||||
|
|
||||||
|
inline SColor COLOR_RGBA ( unsigned char R, unsigned char G, unsigned char B, unsigned char A ) { return SColorRGBA ( R, G, B, A ); }
|
||||||
|
inline SColor COLOR_ARGB ( unsigned char A, unsigned char R, unsigned char G, unsigned char B ) { return SColorRGBA ( R, G, B, A ); }
|
||||||
|
inline SColor COLOR_ABGR ( unsigned char A, unsigned char B, unsigned char G, unsigned char R ) { return SColorRGBA ( R, G, B, A ); }
|
||||||
|
|
||||||
|
enum eWeaponType
|
||||||
|
{
|
||||||
|
WEAPONTYPE_UNARMED=0,
|
||||||
|
WEAPONTYPE_BRASSKNUCKLE,
|
||||||
|
WEAPONTYPE_GOLFCLUB,
|
||||||
|
WEAPONTYPE_NIGHTSTICK,
|
||||||
|
WEAPONTYPE_KNIFE,
|
||||||
|
WEAPONTYPE_BASEBALLBAT,
|
||||||
|
WEAPONTYPE_SHOVEL,
|
||||||
|
WEAPONTYPE_POOL_CUE,
|
||||||
|
WEAPONTYPE_KATANA,
|
||||||
|
WEAPONTYPE_CHAINSAW,
|
||||||
|
|
||||||
|
// gifts
|
||||||
|
WEAPONTYPE_DILDO1, // 10
|
||||||
|
WEAPONTYPE_DILDO2,
|
||||||
|
WEAPONTYPE_VIBE1,
|
||||||
|
WEAPONTYPE_VIBE2,
|
||||||
|
WEAPONTYPE_FLOWERS,
|
||||||
|
WEAPONTYPE_CANE,
|
||||||
|
|
||||||
|
WEAPONTYPE_GRENADE,
|
||||||
|
WEAPONTYPE_TEARGAS,
|
||||||
|
WEAPONTYPE_MOLOTOV,
|
||||||
|
WEAPONTYPE_ROCKET,
|
||||||
|
WEAPONTYPE_ROCKET_HS, // 20
|
||||||
|
WEAPONTYPE_FREEFALL_BOMB,
|
||||||
|
|
||||||
|
// FIRST SKILL WEAPON
|
||||||
|
WEAPONTYPE_PISTOL, // handguns
|
||||||
|
WEAPONTYPE_PISTOL_SILENCED,
|
||||||
|
WEAPONTYPE_DESERT_EAGLE,
|
||||||
|
WEAPONTYPE_SHOTGUN, // shotguns
|
||||||
|
WEAPONTYPE_SAWNOFF_SHOTGUN, // one handed
|
||||||
|
WEAPONTYPE_SPAS12_SHOTGUN,
|
||||||
|
WEAPONTYPE_MICRO_UZI, // submachine guns
|
||||||
|
WEAPONTYPE_MP5,
|
||||||
|
WEAPONTYPE_AK47, // 30 // machine guns
|
||||||
|
WEAPONTYPE_M4,
|
||||||
|
WEAPONTYPE_TEC9, // this uses stat from the micro_uzi
|
||||||
|
// END SKILL WEAPONS
|
||||||
|
|
||||||
|
WEAPONTYPE_COUNTRYRIFLE, // rifles
|
||||||
|
WEAPONTYPE_SNIPERRIFLE,
|
||||||
|
WEAPONTYPE_ROCKETLAUNCHER, // specials
|
||||||
|
WEAPONTYPE_ROCKETLAUNCHER_HS,
|
||||||
|
WEAPONTYPE_FLAMETHROWER,
|
||||||
|
WEAPONTYPE_MINIGUN,
|
||||||
|
WEAPONTYPE_REMOTE_SATCHEL_CHARGE,
|
||||||
|
WEAPONTYPE_DETONATOR, // 40 // plastic explosive
|
||||||
|
WEAPONTYPE_SPRAYCAN,
|
||||||
|
WEAPONTYPE_EXTINGUISHER,
|
||||||
|
WEAPONTYPE_CAMERA,
|
||||||
|
WEAPONTYPE_NIGHTVISION,
|
||||||
|
WEAPONTYPE_INFRARED,
|
||||||
|
WEAPONTYPE_PARACHUTE,
|
||||||
|
WEAPONTYPE_LAST_WEAPONTYPE,
|
||||||
|
|
||||||
|
WEAPONTYPE_ARMOUR,
|
||||||
|
// these are possible ways to die
|
||||||
|
WEAPONTYPE_RAMMEDBYCAR,
|
||||||
|
WEAPONTYPE_RUNOVERBYCAR, // 50
|
||||||
|
WEAPONTYPE_EXPLOSION,
|
||||||
|
WEAPONTYPE_UZI_DRIVEBY,
|
||||||
|
WEAPONTYPE_DROWNING,
|
||||||
|
WEAPONTYPE_FALL,
|
||||||
|
WEAPONTYPE_UNIDENTIFIED, // Used for damage being done
|
||||||
|
WEAPONTYPE_ANYMELEE,
|
||||||
|
WEAPONTYPE_ANYWEAPON,
|
||||||
|
WEAPONTYPE_FLARE,
|
||||||
|
|
||||||
|
// Added by us
|
||||||
|
WEAPONTYPE_TANK_GRENADE,
|
||||||
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -24,16 +24,20 @@ class CLuaFunctionDefinitions;
|
|||||||
class CLuaFunctionDefinitions
|
class CLuaFunctionDefinitions
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static string Get ( lua_State* pLuaVM, const string &sKey );
|
// All-Seeing Eye related Functions
|
||||||
static bool Set ( lua_State* pLuaVM, const string &sKey, const string &sValue );
|
static bool SetGameType ( lua_State* pLuaVM, const char* szGameType );
|
||||||
static string GetGameType ( lua_State* pLuaVM );
|
static bool SetMapName ( lua_State* pLuaVM, const char* szMapName );
|
||||||
static string GetMapName ( lua_State* pLuaVM );
|
static string GetRuleValue ( lua_State* pLuaVM, const char* szKey );
|
||||||
static string GetRuleValue ( lua_State* pLuaVM, const string &sKey );
|
static bool SetRuleValue ( lua_State* pLuaVM, const char* szKey, const char* szValue );
|
||||||
static bool RemoveRuleValue ( lua_State* pLuaVM, const string &sKey );
|
static bool RemoveRuleValue ( lua_State* pLuaVM, const char* szKey );
|
||||||
static bool SetGameType ( lua_State* pLuaVM, const string &sType );
|
static string GetPlayerAnnounceValue ( lua_State* pLuaVM, void* pElement, const string& strKey );
|
||||||
static bool SetMapName ( lua_State* pLuaVM, const string &sName );
|
static string SetPlayerAnnounceValue ( lua_State* pLuaVM, void* pElement, const string& strKey );
|
||||||
static bool SetRuleValue ( lua_State* pLuaVM, const string &sKey, const string &sValue );
|
|
||||||
|
static string Get ( lua_State* pLuaVM, const char* szKey );
|
||||||
|
static bool Set ( lua_State* pLuaVM, const char* szKey, const char* szValue );
|
||||||
|
static string GetGameType ( lua_State* pLuaVM );
|
||||||
|
static string GetMapName ( lua_State* pLuaVM );
|
||||||
|
|
||||||
// static int CallRemote ( lua_State* luaVM );
|
// static int CallRemote ( lua_State* luaVM );
|
||||||
// static int FetchRemote ( lua_State* luaVM );
|
// static int FetchRemote ( lua_State* luaVM );
|
||||||
|
|
||||||
@ -53,14 +57,14 @@ public:
|
|||||||
// static int CancelLatentEvent ( lua_State* luaVM );
|
// static int CancelLatentEvent ( lua_State* luaVM );
|
||||||
|
|
||||||
// Element create/destroy
|
// Element create/destroy
|
||||||
static void* CreateElement ( lua_State* pLuaVM, string sType, string sID );
|
static void* CreateElement ( lua_State* pLuaVM, const char* szTypeName, const char* szID );
|
||||||
static bool DestroyElement ( lua_State* pLuaVM, void* pUserData );
|
static bool DestroyElement ( lua_State* pLuaVM, void* pUserData );
|
||||||
static void* CloneElement ( lua_State* pLuaVM, void* pUserData, float fX = 0.0f, float fY = 0.0f, float fZ = 0.0f, bool bCloneChildren = false );
|
static void* CloneElement ( lua_State* pLuaVM, void* pUserData, const Vector3& vecPosition, bool bCloneElement );
|
||||||
|
|
||||||
// Element get funcs
|
// Element get funcs
|
||||||
static bool IsElement ( lua_State* pLuaVM, void* pUserData );
|
static bool IsElement ( lua_State* pLuaVM, void* pUserData );
|
||||||
static string GetElementType ( lua_State* pLuaVM, void* pUserData );
|
static string GetElementType ( lua_State* pLuaVM, void* pUserData );
|
||||||
static void* GetElementByID ( lua_State* pLuaVM, string sID );
|
static void* GetElementByID ( lua_State* pLuaVM, const char* szID, unsigned int uiIndex );
|
||||||
static void* GetElementByIndex ( lua_State* pLuaVM, int iIndex );
|
static void* GetElementByIndex ( lua_State* pLuaVM, int iIndex );
|
||||||
static void* GetElementChild ( lua_State* pLuaVM, void* pUserData, int iIndex );
|
static void* GetElementChild ( lua_State* pLuaVM, void* pUserData, int iIndex );
|
||||||
static int GetElementChildrenCount ( lua_State* pLuaVM, void* pUserData );
|
static int GetElementChildrenCount ( lua_State* pLuaVM, void* pUserData );
|
||||||
@ -68,9 +72,9 @@ public:
|
|||||||
static CLuaArgument* GetElementData ( lua_State* pLuaVM, void* pUserData, string sKey, bool bInherit = true );
|
static CLuaArgument* GetElementData ( lua_State* pLuaVM, void* pUserData, string sKey, bool bInherit = true );
|
||||||
static CLuaArguments* GetAllElementData ( lua_State* pLuaVM, void* pUserData );
|
static CLuaArguments* GetAllElementData ( lua_State* pLuaVM, void* pUserData );
|
||||||
static void* GetElementParent ( lua_State* pLuaVM, void* pUserData );
|
static void* GetElementParent ( lua_State* pLuaVM, void* pUserData );
|
||||||
static bool GetElementPosition ( lua_State* pLuaVM, void* pUserData, float &fX, float &fY, float &fZ );
|
static bool GetElementPosition ( lua_State* pLuaVM, void* pUserData, Vector3& vecPosition );
|
||||||
static bool GetElementRotation ( lua_State* pLuaVM, void* pUserData, float &fX, float &fY, float &fZ );
|
static bool GetElementRotation ( lua_State* pLuaVM, void* pUserData, Vector3& vecRotation );
|
||||||
static bool GetElementVelocity ( lua_State* pLuaVM, void* pUserData, float &fX, float &fY, float &fZ );
|
static bool GetElementVelocity ( lua_State* pLuaVM, void* pUserData, Vector3& vecVelocity );
|
||||||
static int GetElementInterior ( lua_State* pLuaVM, void* pUserData );
|
static int GetElementInterior ( lua_State* pLuaVM, void* pUserData );
|
||||||
static bool IsElementWithinColShape ( lua_State* pLuaVM, void* pUserData );
|
static bool IsElementWithinColShape ( lua_State* pLuaVM, void* pUserData );
|
||||||
static bool IsElementWithinMarker ( lua_State* pLuaVM, void* pUserData );
|
static bool IsElementWithinMarker ( lua_State* pLuaVM, void* pUserData );
|
||||||
@ -84,7 +88,7 @@ public:
|
|||||||
static float GetElementHealth ( lua_State* pLuaVM, void* pUserData );
|
static float GetElementHealth ( lua_State* pLuaVM, void* pUserData );
|
||||||
static int GetElementModel ( lua_State* pLuaVM, void* pUserData );
|
static int GetElementModel ( lua_State* pLuaVM, void* pUserData );
|
||||||
static bool IsElementInWater ( lua_State* pLuaVM, void* pUserData );
|
static bool IsElementInWater ( lua_State* pLuaVM, void* pUserData );
|
||||||
static bool GetElementAttachedOffsets ( lua_State* pLuaVM, void* pUserData, float &fX, float &fY, float &fZ, float &fRX, float &fRY, float &fRZ );
|
static bool GetElementAttachedOffsets ( lua_State* pLuaVM, void* pUserData, Vector3& vecPosition, Vector3& vecRotation );
|
||||||
static void* GetElementSyncer ( lua_State* pLuaVM, void* pUserData );
|
static void* GetElementSyncer ( lua_State* pLuaVM, void* pUserData );
|
||||||
static bool GetElementCollisionsEnabled ( lua_State* pLuaVM, void* pUserData );
|
static bool GetElementCollisionsEnabled ( lua_State* pLuaVM, void* pUserData );
|
||||||
static bool IsElementFrozen ( lua_State* pLuaVM, void* pUserData );
|
static bool IsElementFrozen ( lua_State* pLuaVM, void* pUserData );
|
||||||
@ -97,19 +101,19 @@ public:
|
|||||||
static bool SetElementData ( lua_State* pLuaVM, void* pUserData, string sKey, const CLuaArgument& Variable );
|
static bool SetElementData ( lua_State* pLuaVM, void* pUserData, string sKey, const CLuaArgument& Variable );
|
||||||
static bool RemoveElementData ( lua_State* pLuaVM, void* pUserData, string sKey );
|
static bool RemoveElementData ( lua_State* pLuaVM, void* pUserData, string sKey );
|
||||||
static bool SetElementParent ( lua_State* pLuaVM, void* pUserData, void* pTarget );
|
static bool SetElementParent ( lua_State* pLuaVM, void* pUserData, void* pTarget );
|
||||||
static bool SetElementPosition ( lua_State* pLuaVM, void* pUserData, float fX, float fY, float fZ );
|
static bool SetElementPosition ( lua_State* pLuaVM, void* pUserData, const Vector3& vecPosition, bool bWarp = true );
|
||||||
static bool SetElementRotation ( lua_State* pLuaVM, void* pUserData, float fX, float fY, float fZ );
|
static bool SetElementRotation ( lua_State* pLuaVM, void* pUserData, const Vector3& vecRotation, const char* szRotationOrder = "default", bool bNewWay = false );
|
||||||
static bool SetElementVelocity ( lua_State* pLuaVM, void* pUserData, float fX, float fY, float fZ );
|
static bool SetElementVelocity ( lua_State* pLuaVM, void* pUserData, const Vector3& vecVelocity );
|
||||||
static bool SetElementVisibleTo ( lua_State* pLuaVM, void* pUserData, void* pTarget, bool bVisible );
|
static bool SetElementVisibleTo ( lua_State* pLuaVM, void* pUserData, void* pTarget, bool bVisible );
|
||||||
static bool SetElementInterior ( lua_State* pLuaVM, void* pUserData, int iInterior );
|
static bool SetElementInterior ( lua_State* pLuaVM, void* pUserData, int iInterior );
|
||||||
static bool SetElementDimension ( lua_State* pLuaVM, void* pUserData, int iDimension );
|
static bool SetElementDimension ( lua_State* pLuaVM, void* pUserData, int iDimension );
|
||||||
static bool AttachElements ( lua_State* pLuaVM, void* pUserData, void* pTarget, float fX = 0.0f, float fY = 0.0f, float fZ = 0.0f, float fRX = 0.0f, float fRY = 0.0f, float fRZ = 0.0f );
|
static bool AttachElements ( lua_State* pLuaVM, void* pUserData, void* pTarget, Vector3& vecPosition, Vector3& vecRotation );
|
||||||
static bool DetachElements ( lua_State* pLuaVM, void* pUserData, void* pTarget = NULL );
|
static bool DetachElements ( lua_State* pLuaVM, void* pUserData, void* pTarget = NULL );
|
||||||
static bool SetElementAlpha ( lua_State* pLuaVM, void* pUserData, int iAlpha );
|
static bool SetElementAlpha ( lua_State* pLuaVM, void* pUserData, int iAlpha );
|
||||||
static bool SetElementDoubleSided ( lua_State* pLuaVM, void* pUserData, bool bDoubleSided );
|
static bool SetElementDoubleSided ( lua_State* pLuaVM, void* pUserData, bool bDoubleSided );
|
||||||
static bool SetElementHealth ( lua_State* pLuaVM, void* pUserData, float fHealth );
|
static bool SetElementHealth ( lua_State* pLuaVM, void* pUserData, float fHealth );
|
||||||
static bool SetElementModel ( lua_State* pLuaVM, void* pUserData, int iModel );
|
static bool SetElementModel ( lua_State* pLuaVM, void* pUserData, int iModel );
|
||||||
static bool SetElementAttachedOffsets ( lua_State* pLuaVM, void* pUserData, float fX, float fY, float fZ, float fRX, float fRY, float fRZ );
|
static bool SetElementAttachedOffsets ( lua_State* pLuaVM, void* pUserData, Vector3& vecPosition, Vector3& vecRotation );
|
||||||
static bool SetElementSyncer ( lua_State* pLuaVM, void* pUserData, void* pPlayer );
|
static bool SetElementSyncer ( lua_State* pLuaVM, void* pUserData, void* pPlayer );
|
||||||
static bool SetElementCollisionsEnabled ( lua_State* pLuaVM, void* pUserData, bool bEnabled );
|
static bool SetElementCollisionsEnabled ( lua_State* pLuaVM, void* pUserData, bool bEnabled );
|
||||||
static bool SetElementFrozen ( lua_State* pLuaVM, void* pUserData, bool bFrozen );
|
static bool SetElementFrozen ( lua_State* pLuaVM, void* pUserData, bool bFrozen );
|
||||||
@ -144,7 +148,7 @@ public:
|
|||||||
static bool SetPlayerMoney ( lua_State* pLuaVM, void* pUserData, int iAmount, bool bInstant = false );
|
static bool SetPlayerMoney ( lua_State* pLuaVM, void* pUserData, int iAmount, bool bInstant = false );
|
||||||
static bool GivePlayerMoney ( lua_State* pLuaVM, void* pUserData, int iAmount );
|
static bool GivePlayerMoney ( lua_State* pLuaVM, void* pUserData, int iAmount );
|
||||||
static bool TakePlayerMoney ( lua_State* pLuaVM, void* pUserData, int iAmount );
|
static bool TakePlayerMoney ( lua_State* pLuaVM, void* pUserData, int iAmount );
|
||||||
static bool SpawnPlayer ( lua_State* pLuaVM, void* pUserData, float fX, float fY, float fZ, int iRotation = 0, int iSkinID = 0, int iInterior = 0, int iDimension = 0, void* theTeam = NULL );
|
static bool SpawnPlayer ( lua_State* pLuaVM, void* pUserData, Vector3& vecPosition, int iRotation = 0, int iSkinID = 0, int iInterior = 0, int iDimension = 0, void* theTeam = NULL );
|
||||||
static bool ShowPlayerHudComponent ( lua_State* pLuaVM, void* pUserData, string sComponent, bool bShow );
|
static bool ShowPlayerHudComponent ( lua_State* pLuaVM, void* pUserData, string sComponent, bool bShow );
|
||||||
static bool SetPlayerWantedLevel ( lua_State* pLuaVM, void* pUserData, int iLevel );
|
static bool SetPlayerWantedLevel ( lua_State* pLuaVM, void* pUserData, int iLevel );
|
||||||
static bool ForcePlayerMap ( lua_State* pLuaVM, void* pUserData, bool bForceOn );
|
static bool ForcePlayerMap ( lua_State* pLuaVM, void* pUserData, bool bForceOn );
|
||||||
@ -159,7 +163,7 @@ public:
|
|||||||
static bool TakePlayerScreenShot ( lua_State* pLuaVM, void* pUserData, int iWidth, int iHeight, string sTag = "", int iQuality = 30, int iMaxBandwith = 5000 );
|
static bool TakePlayerScreenShot ( lua_State* pLuaVM, void* pUserData, int iWidth, int iHeight, string sTag = "", int iQuality = 30, int iMaxBandwith = 5000 );
|
||||||
|
|
||||||
// Ped get functions
|
// Ped get functions
|
||||||
static void* CreatePed ( lua_State* pLuaVM, int iModelid, float fX, float fY, float fZ, float fRot = 0.0, bool bSynced = true );
|
static void* CreatePed ( lua_State* pLuaVM, int iModelid, const Vector3& vecPosition, float fRot = 0.0, bool bSynced = true );
|
||||||
static float GetPedArmor ( lua_State* pLuaVM, void* pUserData );
|
static float GetPedArmor ( lua_State* pLuaVM, void* pUserData );
|
||||||
static bool IsPedChoking ( lua_State* pLuaVM, void* pUserData );
|
static bool IsPedChoking ( lua_State* pLuaVM, void* pUserData );
|
||||||
static bool IsPedDead ( lua_State* pLuaVM, void* pUserData );
|
static bool IsPedDead ( lua_State* pLuaVM, void* pUserData );
|
||||||
@ -313,76 +317,76 @@ public:
|
|||||||
static bool SetVehiclePlateText ( lua_State* pLuaVM, void* pUserData, const char* szName );
|
static bool SetVehiclePlateText ( lua_State* pLuaVM, void* pUserData, const char* szName );
|
||||||
|
|
||||||
// Marker create/destroy functions
|
// Marker create/destroy functions
|
||||||
static void* CreateMarker ( lua_State* pLuaVM, float fX, float fY, float fZ, const char* szType, float fSize, unsigned char iRed, unsigned char iGreen, unsigned char iBlue, void* pVisibleTo );
|
static void* CreateMarker ( lua_State* pLuaVM, const Vector3& vecPosition, const char* szType, float fSize, const SColor color, void* pVisibleTo );
|
||||||
|
|
||||||
// Marker get functions
|
// Marker get functions
|
||||||
static unsigned int GetMarkerCount ( lua_State* pLuaVM, void* pUserData );
|
static bool GetMarkerCount ( lua_State* pLuaVM, unsigned int& uiCount );
|
||||||
static const char* GetMarkerType ( lua_State* pLuaVM, void* pUserData );
|
static bool GetMarkerType ( lua_State* pLuaVM, void* pUserData, char* szType );
|
||||||
static float GetMarkerSize ( lua_State* pLuaVM, void* pUserData );
|
static bool GetMarkerSize ( lua_State* pLuaVM, void* pUserData, float& fSize );
|
||||||
static bool GetMarkerColor ( lua_State* pLuaVM, void* pUserData, unsigned char& ucRed, unsigned char& ucGreen, unsigned char& ucBlue );
|
static bool GetMarkerColor ( lua_State* pLuaVM, void* pUserData, SColor& outColor );
|
||||||
static int GetMarkerTarget ( lua_State* pLuaVM, void* pUserData, float& fX, float& fY, float& fZ );
|
static bool GetMarkerTarget ( lua_State* pLuaVM, void* pUserData, Vector3& vecTarget );
|
||||||
static const char* GetMarkerIcon ( lua_State* pLuaVM, void* pUserData );
|
static bool GetMarkerIcon ( lua_State* pLuaVM, void* pUserData, char* szIcon );
|
||||||
|
|
||||||
// Marker set functions
|
// Marker set functions
|
||||||
static bool SetMarkerType ( lua_State* pLuaVM, void* pUserData, const char* szType );
|
static bool SetMarkerType ( lua_State* pLuaVM, void* pUserData, const char* szType );
|
||||||
static bool SetMarkerSize ( lua_State* pLuaVM, void* pUserData, float fSize );
|
static bool SetMarkerSize ( lua_State* pLuaVM, void* pUserData, float fSize );
|
||||||
static bool SetMarkerColor ( lua_State* pLuaVM, void* pUserData, unsigned char ucRed, unsigned char ucGreen, unsigned char ucBlue );
|
static bool SetMarkerColor ( lua_State* pLuaVM, void* pUserData, const SColor color );
|
||||||
static bool SetMarkerTarget ( lua_State* pLuaVM, void* pUserData, void* pTarget );
|
static bool SetMarkerTarget ( lua_State* pLuaVM, void* pUserData, const Vector3* pTarget );
|
||||||
static bool SetMarkerIcon ( lua_State* pLuaVM, void* pUserData, const char* szIcon );
|
static bool SetMarkerIcon ( lua_State* pLuaVM, void* pUserData, const char* szIcon );
|
||||||
|
|
||||||
// Blip create/destroy functions
|
// Blip create/destroy functions
|
||||||
static void* CreateBlip ( lua_State* pLuaVM, void* pUserData, float fX, float fY, float fZ, unsigned char ucIcon, unsigned char ucSize, unsigned char ucRed, unsigned char ucGreen, unsigned char ucBlue, unsigned char ucAlpha, short sOrdering, unsigned short usVisibleDistance, void* pVisibleTo = NULL );
|
static void* CreateBlip ( lua_State* pLuaVM, const Vector3& vecPosition, unsigned char ucIcon, unsigned char ucSize, const SColor color, short sOrdering, unsigned short usVisibleDistance, void* pVisibleTo = NULL );
|
||||||
static void* CreateBlipAttachedTo ( lua_State* pLuaVM, void* pUserData, void* pTarget, unsigned char ucIcon, unsigned char ucSize, unsigned char ucRed, unsigned char ucGreen, unsigned char ucBlue, unsigned char ucAlpha, short sOrdering, unsigned short usVisibleDistance, void* pVisibleTo = NULL );
|
static void* CreateBlipAttachedTo ( lua_State* pLuaVM, void* pTarget, unsigned char ucIcon, unsigned char ucSize, const SColor color, short sOrdering, unsigned short usVisibleDistance, void* pVisibleTo = NULL );
|
||||||
|
|
||||||
// Blip get functions
|
// Blip get functions
|
||||||
static unsigned char GetBlipIcon ( lua_State* pLuaVM, void* pUserData );
|
static bool GetBlipIcon ( lua_State* pLuaVM, void* pUserData, unsigned char& ucIcon );
|
||||||
static unsigned char GetBlipSize ( lua_State* pLuaVM, void* pUserData );
|
static bool GetBlipSize ( lua_State* pLuaVM, void* pUserData, unsigned char& ucSize );
|
||||||
static bool GetBlipColor ( lua_State* pLuaVM, void* pUserData, unsigned char& ucRed, unsigned char& ucGreen, unsigned char& ucBlue, unsigned char& ucAlpha );
|
static bool GetBlipColor ( lua_State* pLuaVM, void* pUserData, SColor& outColor );
|
||||||
static short GetBlipOrdering ( lua_State* pLuaVM, void* pUserData );
|
static bool GetBlipOrdering ( lua_State* pLuaVM, void* pUserData, short& sOrdering );
|
||||||
static unsigned short GetBlipVisibleDistance ( lua_State* pLuaVM, void* pUserData );
|
static bool GetBlipVisibleDistance ( lua_State* pLuaVM, void* pUserData, unsigned short& usVisibleDistance );
|
||||||
|
|
||||||
// Blip set functions
|
// Blip set functions
|
||||||
static bool SetBlipIcon ( lua_State* pLuaVM, void* pUserData, unsigned char ucIcon );
|
static bool SetBlipIcon ( lua_State* pLuaVM, void* pUserData, unsigned char ucIcon );
|
||||||
static bool SetBlipSize ( lua_State* pLuaVM, void* pUserData, unsigned char ucSize );
|
static bool SetBlipSize ( lua_State* pLuaVM, void* pUserData, unsigned char ucSize );
|
||||||
static bool SetBlipColor ( lua_State* pLuaVM, void* pUserData, unsigned char ucRed, unsigned char ucGreen, unsigned char ucBlue, unsigned char ucAlpha );
|
static bool SetBlipColor ( lua_State* pLuaVM, void* pUserData, const SColor color );
|
||||||
static bool SetBlipOrdering ( lua_State* pLuaVM, void* pUserData, short sOrdering );
|
static bool SetBlipOrdering ( lua_State* pLuaVM, void* pUserData, short sOrdering );
|
||||||
static bool SetBlipVisibleDistance ( lua_State* pLuaVM, void* pUserData, unsigned short usVisibleDistance );
|
static bool SetBlipVisibleDistance ( lua_State* pLuaVM, void* pUserData, unsigned short usVisibleDistance );
|
||||||
|
|
||||||
// Object create/destroy functions
|
// Object create/destroy functions
|
||||||
static void* CreateObject ( lua_State* pLuaVM, unsigned short usModelID, float fX, float fY, float fZ, float fRX = 0.0f, float fRY = 0.0f, float fRZ = 0.0f, bool bIsLowLod = false );
|
static void* CreateObject ( lua_State* pLuaVM, unsigned short usModelID, const Vector3& vecPosition, const Vector3& vecRotation, bool bIsLowLod );
|
||||||
|
|
||||||
// Object get functions
|
// Object get functions
|
||||||
static float GetObjectScale ( lua_State* pLuaVM, void* pUserData );
|
static bool GetObjectScale ( lua_State* pLuaVM, void* pUserData, Vector3& vecScale );
|
||||||
|
|
||||||
// Object set functions
|
// Object set functions
|
||||||
static bool SetObjectScale ( lua_State* pLuaVM, void* pUserData, float fScale );
|
static bool SetObjectScale ( lua_State* pLuaVM, void* pUserData, const Vector3& vecScale );
|
||||||
static bool MoveObject ( lua_State* pLuaVM, void* pUserData, unsigned long ulTime, float fX, float fY, float fZ, float fRX = 0.0f, float fRY = 0.0f, float fRZ = 0.0f, const char* strEasingType = "Linear", float fEasingPeriod = 0.3f, float fEasingAmplitude = 1.0f, float fEasingOvershoot = 1.701f );
|
static bool MoveObject ( lua_State* pLuaVM, void* pUserData, unsigned long ulTime, const Vector3& vecPosition, const Vector3& vecRotation, const char* szEasingType, float fEasingPeriod, float fEasingAmplitude, float fEasingOvershoot );
|
||||||
static bool StopObject ( lua_State* pLuaVM, void* pUserData );
|
static bool StopObject ( lua_State* pLuaVM, void* pUserData );
|
||||||
|
|
||||||
// Radar area create/destroy funcs
|
// Radar area create/destroy funcs
|
||||||
static void* CreateRadarArea ( lua_State* pLuaVM, float fX, float fY, float fZ, float fSizeX = 0.0f, float fSizeY = 0.0f, unsigned char ucRed = 255, unsigned char ucGreen = 0, unsigned char ucBlue = 0, unsigned char ucAlpha = 255, void* pVisibleTo = NULL );
|
static void* CreateRadarArea ( lua_State* pLuaVM, const Vector2& vecPosition, const Vector2& vecSize, const SColor color, void* pVisibleTo = NULL );
|
||||||
|
|
||||||
// Radar area get funcs
|
// Radar area get funcs
|
||||||
static bool GetRadarAreaSize ( lua_State* pLuaVM, void* pUserData, float& fSizeX, float& fSizeY );
|
static bool GetRadarAreaSize ( lua_State* pLuaVM, void* pUserData, Vector2& vecSize );
|
||||||
static bool GetRadarAreaColor ( lua_State* pLuaVM, void* pUserData, unsigned char& ucRed, unsigned char& ucGreen, unsigned char& ucBlue, unsigned char& ucAlpha );
|
static bool GetRadarAreaColor ( lua_State* pLuaVM, void* pUserData, SColor& outColor );
|
||||||
static bool IsRadarAreaFlashing ( lua_State* pLuaVM, void* pUserData );
|
static bool IsRadarAreaFlashing ( lua_State* pLuaVM, void* pUserData );
|
||||||
static bool IsInsideRadarArea ( lua_State* pLuaVM, void* pUserData );
|
static bool IsInsideRadarArea ( lua_State* pLuaVM, void* pUserData, const Vector2& vecPosition, bool& bInside );
|
||||||
|
|
||||||
// Radar area set funcs
|
// Radar area set funcs
|
||||||
static bool SetRadarAreaSize ( lua_State* pLuaVM, void* pUserData, float fSizeX, float fSizeY );
|
static bool SetRadarAreaSize ( lua_State* pLuaVM, void* pUserData, const Vector2& vecSize );
|
||||||
static bool SetRadarAreaColor ( lua_State* pLuaVM, void* pUserData, unsigned char ucRed, unsigned char ucGreen, unsigned char ucBlue, unsigned char ucAlpha );
|
static bool SetRadarAreaColor ( lua_State* pLuaVM, void* pUserData, const SColor color );
|
||||||
static bool SetRadarAreaFlashing ( lua_State* pLuaVM, void* pUserData, bool bFlashing );
|
static bool SetRadarAreaFlashing ( lua_State* pLuaVM, void* pUserData, bool bFlashing );
|
||||||
|
|
||||||
// Pickup create/destroy funcs
|
// Pickup create/destroy funcs
|
||||||
static void* CreatePickup ( lua_State* pLuaVM, float fX, float fY, float fZ, unsigned char ucType, double dFive, unsigned long ulRespawnInterval = 30000, double dSix = 50 );
|
static void* CreatePickup ( lua_State* pLuaVM, const Vector3& vecPosition, unsigned char ucType, double dFive, unsigned long ulRespawnInterval = 30000, double dSix = 50 );
|
||||||
|
|
||||||
// Pickup get funcs
|
// Pickup get funcs
|
||||||
static unsigned char GetPickupType ( lua_State* pLuaVM, void* pUserData );
|
static bool GetPickupType ( lua_State* pLuaVM, void* pUserData, unsigned char& ucType );
|
||||||
static unsigned char GetPickupWeapon ( lua_State* pLuaVM, void* pUserData );
|
static bool GetPickupWeapon ( lua_State* pLuaVM, void* pUserData, unsigned char& ucWeapon );
|
||||||
static float GetPickupAmount ( lua_State* pLuaVM, void* pUserData );
|
static bool GetPickupAmount ( lua_State* pLuaVM, void* pUserData, float& fAmount );
|
||||||
static unsigned short GetPickupAmmo ( lua_State* pLuaVM, void* pUserData );
|
static bool GetPickupAmmo ( lua_State* pLuaVM, void* pUserData, unsigned short& ucAmmo );
|
||||||
static unsigned long GetPickupRespawnInterval ( lua_State* pLuaVM, void* pUserData );
|
static bool GetPickupRespawnInterval ( lua_State* pLuaVM, void* pUserData, unsigned long& ulInterval );
|
||||||
static bool IsPickupSpawned ( lua_State* pLuaVM, void* pUserData );
|
static bool IsPickupSpawned ( lua_State* pLuaVM, void* pUserData, bool& bSpawned );
|
||||||
|
|
||||||
// Pickup set funcs
|
// Pickup set funcs
|
||||||
static bool SetPickupType ( lua_State* pLuaVM, void* pUserData, unsigned char ucType, double dThree, double dFour );
|
static bool SetPickupType ( lua_State* pLuaVM, void* pUserData, unsigned char ucType, double dThree, double dFour );
|
||||||
@ -397,80 +401,237 @@ public:
|
|||||||
static void* CreateColPolygon ( lua_State* pLuaVM, const vector< Vector2 >& vecPointList );
|
static void* CreateColPolygon ( lua_State* pLuaVM, const vector< Vector2 >& vecPointList );
|
||||||
static void* CreateColTube ( lua_State* pLuaVM, const Vector3& vecPosition, float fRadius, float fHeight );
|
static void* CreateColTube ( lua_State* pLuaVM, const Vector3& vecPosition, float fRadius, float fHeight );
|
||||||
|
|
||||||
// Explosion funcs
|
// Explosion funcs
|
||||||
// static int CreateExplosion ( lua_State* luaVM );
|
static bool CreateExplosion ( lua_State* pLuaVM, const Vector3& vecPosition, unsigned char ucType, void* pCreator = NULL );
|
||||||
|
|
||||||
// Fire funcs
|
// Fire funcs
|
||||||
// static int CreateFire ( lua_State* luaVM );
|
// static int CreateFire ( lua_State* pLuaVM );
|
||||||
|
|
||||||
// Audio funcs
|
// Audio funcs
|
||||||
// static int PlaySoundFrontEnd ( lua_State* luaVM );
|
static bool PlaySoundFrontEnd ( lua_State* pLuaVM, void* pElement, unsigned char ucSound );
|
||||||
// static int PlayMissionAudio ( lua_State* luaVM );
|
static bool PlayMissionAudio ( lua_State* pLuaVM, void* pElement, Vector3& vecPosition, unsigned short usSlot );
|
||||||
// static int PreloadMissionAudio ( lua_State* luaVM );
|
|
||||||
|
|
||||||
// Ped body funcs?
|
// Ped body?
|
||||||
// static int GetBodyPartName ( lua_State* luaVM );
|
static bool GetBodyPartName ( lua_State* pLuaVM, unsigned char ucID, char* szName );
|
||||||
// static int GetClothesByTypeIndex ( lua_State* luaVM );
|
static bool GetClothesByTypeIndex ( lua_State* pLuaVM, unsigned char ucType, unsigned char ucIndex, char* szTextureReturn, char* szModelReturn );
|
||||||
// static int GetTypeIndexFromClothes ( lua_State* luaVM );
|
static bool GetTypeIndexFromClothes ( lua_State* pLuaVM, const char* szTexture, const char* szModel, unsigned char& ucTypeReturn, unsigned char& ucIndexReturn );
|
||||||
// static int GetClothesTypeName ( lua_State* luaVM );
|
static bool GetClothesTypeName ( lua_State* pLuaVM, unsigned char ucType, char* szNameReturn );
|
||||||
|
|
||||||
// Key bind funcs
|
// Input funcs
|
||||||
// static int BindKey ( lua_State* luaVM );
|
// static bool BindKey ( lua_State* pLuaVM, void* pPlayer, const char* szKey, const char* szHitState, const CLuaFunctionRef& iLuaFunction, CLuaArguments& Arguments );
|
||||||
// static int UnbindKey ( lua_State* luaVM );
|
static bool BindKey ( lua_State* pLuaVM, void* pPlayer, const char* szKey, const char* szHitState, const char* szCommandName, const char* szArguments );
|
||||||
// static int IsKeyBound ( lua_State* luaVM );
|
// static bool UnbindKey ( lua_State* pLuaVM, void* pPlayer, const char* szKey, const char* szHitState = NULL, const CLuaFunctionRef& iLuaFunction = CLuaFunctionRef() );
|
||||||
// static int GetFunctionsBoundToKey ( lua_State* luaVM );
|
static bool UnbindKey ( lua_State* pLuaVM, void* pPlayer, const char* szKey, const char* szHitState, const char* szCommandName );
|
||||||
// static int GetKeyBoundToFunction ( lua_State* luaVM );
|
// static bool IsKeyBound ( lua_State* pLuaVM, void* pPlayer, const char* szKey, const char* szHitState, const CLuaFunctionRef& iLuaFunction, bool& bBound );
|
||||||
// static int GetControlState ( lua_State* luaVM );
|
static bool GetControlState ( lua_State* pLuaVM, void* pPlayer, const char* szControl, bool& bState );
|
||||||
// static int IsControlEnabled ( lua_State* luaVM );
|
static bool IsControlEnabled ( lua_State* pLuaVM, void* pPlayer, const char* szControl, bool& bEnabled );
|
||||||
//
|
|
||||||
// static int SetControlState ( lua_State* luaVM );
|
|
||||||
// static int ToggleControl ( lua_State* luaVM );
|
|
||||||
// static int ToggleAllControls ( lua_State* luaVM );
|
|
||||||
|
|
||||||
// Team get funcs
|
static bool SetControlState ( lua_State* pLuaVM, void* pPlayer, const char* szControl, bool bState );
|
||||||
// static int CreateTeam ( lua_State* luaVM );
|
static bool ToggleControl ( lua_State* pLuaVM, void* pPlayer, const char* szControl, bool bEnabled );
|
||||||
// static int GetTeamFromName ( lua_State* luaVM );
|
static bool ToggleAllControls ( lua_State* pLuaVM, void* pPlayer, bool bGTAControls, bool bMTAControls, bool bEnabled );
|
||||||
// static int GetTeamName ( lua_State* luaVM );
|
|
||||||
// static int GetTeamColor ( lua_State* luaVM );
|
|
||||||
// static int GetTeamFriendlyFire ( lua_State* luaVM );
|
|
||||||
// static int GetPlayersInTeam ( lua_State* luaVM );
|
|
||||||
// static int CountPlayersInTeam ( lua_State* luaVM );
|
|
||||||
|
|
||||||
// Team set funcs
|
// Team get funcs
|
||||||
// static int SetPlayerTeam ( lua_State* luaVM );
|
static void* CreateTeam ( lua_State* pLuaVM, const char* szTeamName, unsigned char ucRed, unsigned char ucGreen, unsigned char ucBlue );
|
||||||
// static int SetTeamName ( lua_State* luaVM );
|
static void* GetTeamFromName ( lua_State* pLuaVM, const char* szTeamName );
|
||||||
// static int SetTeamColor ( lua_State* luaVM );
|
static bool GetTeamName ( lua_State* pLuaVM, void* pTeam, string& strOutName );
|
||||||
// static int SetTeamFriendlyFire ( lua_State* luaVM );
|
static bool GetTeamColor ( lua_State* pLuaVM, void* pTeam, unsigned char& ucRed, unsigned char& ucGreen, unsigned char& ucBlue );
|
||||||
|
static bool CountPlayersInTeam ( lua_State* pLuaVM, void* pTeam, unsigned int& uiCount );
|
||||||
|
static bool GetTeamFriendlyFire ( lua_State* pLuaVM, void* pTeam, bool& bFriendlyFire );
|
||||||
|
|
||||||
// Water funcs
|
// Team set funcs
|
||||||
// static int CreateWater ( lua_State* luaVM );
|
static bool SetTeamName ( lua_State* pLuaVM, void* pTeam, const char* szTeamName );
|
||||||
// static int SetWaterLevel ( lua_State* luaVM );
|
static bool SetTeamColor ( lua_State* pLuaVM, void* pTeam, unsigned char ucRed, unsigned char ucGreen, unsigned char ucBlue );
|
||||||
// static int ResetWaterLevel ( lua_State* luaVM );
|
static bool SetPlayerTeam ( lua_State* pLuaVM, void* pPlayer, void* pTeam );
|
||||||
// static int GetWaterVertexPosition ( lua_State* luaVM );
|
static bool SetTeamFriendlyFire ( lua_State* pLuaVM, void* pTeam, bool bFriendlyFire );
|
||||||
// static int SetWaterVertexPosition ( lua_State* luaVM );
|
|
||||||
// static int GetWaterColor ( lua_State* luaVM );
|
|
||||||
// static int SetWaterColor ( lua_State* luaVM );
|
|
||||||
// static int ResetWaterColor ( lua_State* luaVM );
|
|
||||||
|
|
||||||
// Weapon funcs
|
// Water funcs
|
||||||
// static int CreateWeapon ( lua_State* luaVM );
|
static void* CreateWater ( lua_State* pLuaVM, Vector3* pV1, Vector3* pV2, Vector3* pV3, Vector3* pV4 );
|
||||||
// static int GetWeaponNameFromID ( lua_State* luaVM );
|
static bool SetElementWaterLevel ( lua_State* pLuaVM, void* pWater, float fLevel );
|
||||||
// static int GetWeaponIDFromName ( lua_State* luaVM );
|
static bool SetAllElementWaterLevel ( lua_State* pLuaVM, float fLevel );
|
||||||
// static int FireWeapon ( lua_State* luaVM );
|
static bool SetWorldWaterLevel ( lua_State* pLuaVM, float fLevel, bool bIncludeWorldNonSeaLevel );
|
||||||
// static int SetWeaponState ( lua_State* luaVM );
|
static bool ResetWorldWaterLevel ( lua_State* pLuaVM );
|
||||||
// static int GetWeaponState ( lua_State* luaVM );
|
static bool GetWaterVertexPosition ( lua_State* pLuaVM, void* pWater, int iVertexIndex, Vector3& vecPosition );
|
||||||
// static int SetWeaponTarget ( lua_State* luaVM );
|
static bool SetWaterVertexPosition ( lua_State* pLuaVM, void* pWater, int iVertexIndex, Vector3& vecPosition );
|
||||||
// static int GetWeaponTarget ( lua_State* luaVM );
|
static bool GetWaterColor ( lua_State* pLuaVM, unsigned char& ucRed, unsigned char& ucGreen, unsigned char& ucBlue, unsigned char& ucAlpha );
|
||||||
// static int SetWeaponOwner ( lua_State* luaVM );
|
static bool SetWaterColor ( lua_State* pLuaVM, unsigned char ucRed, unsigned char ucGreen, unsigned char ucBlue, unsigned char ucAlpha );
|
||||||
// static int GetWeaponOwner ( lua_State* luaVM );
|
static bool ResetWaterColor ( lua_State* pLuaVM );
|
||||||
// static int SetWeaponFlags ( lua_State* luaVM );
|
|
||||||
// static int GetWeaponFlags ( lua_State* luaVM );
|
// Standard server functions
|
||||||
// static int SetWeaponFiringRate ( lua_State* luaVM );
|
static unsigned int GetMaxPlayers ( lua_State* pLuaVM );
|
||||||
// static int GetWeaponFiringRate ( lua_State* luaVM );
|
static bool SetMaxPlayers ( lua_State* pLuaVM, unsigned int uiMax );
|
||||||
// static int ResetWeaponFiringRate ( lua_State* luaVM );
|
static bool OutputChatBox ( lua_State* pLuaVM, const char* szText, void* pElement, unsigned char ucRed, unsigned char ucGreen, unsigned char ucBlue, bool bColorCoded );
|
||||||
// static int GetWeaponAmmo ( lua_State* luaVM );
|
static bool OutputConsole ( lua_State* pLuaVM, const char* szText, void* pElement );
|
||||||
// static int GetWeaponClipAmmo ( lua_State* luaVM );
|
static bool SetServerPassword ( lua_State* pLuaVM, const string& strPassword, bool bSave );
|
||||||
// static int SetWeaponClipAmmo ( lua_State* luaVM );
|
|
||||||
|
// General world get funcs
|
||||||
|
static bool GetTime ( lua_State* pLuaVM, unsigned char& ucHour, unsigned char& ucMinute );
|
||||||
|
static bool GetWeather ( lua_State* pLuaVM, unsigned char& ucWeather, unsigned char& ucWeatherBlendingTo );
|
||||||
|
static bool GetZoneName ( lua_State* pLuaVM, Vector3& vecPosition, string& strOutName, bool bCitiesOnly = false );
|
||||||
|
static bool GetGravity ( lua_State* pLuaVM, float& fGravity );
|
||||||
|
static bool GetGameSpeed ( lua_State* pLuaVM, float& fSpeed );
|
||||||
|
static bool GetWaveHeight ( lua_State* pLuaVM, float& fHeight );
|
||||||
|
static bool GetFPSLimit ( lua_State* pLuaVM, unsigned short& usLimit );
|
||||||
|
static bool GetMinuteDuration ( lua_State* pLuaVM, unsigned long& ulDuration );
|
||||||
|
static bool IsGarageOpen ( lua_State* pLuaVM, unsigned char ucGarageID, bool& bIsOpen );
|
||||||
|
static bool GetTrafficLightState ( lua_State* pLuaVM, unsigned char& ucState );
|
||||||
|
static bool GetTrafficLightsLocked ( lua_State* pLuaVM, bool& bLocked );
|
||||||
|
static bool GetJetpackMaxHeight ( lua_State* pLuaVM, float& fMaxHeight );
|
||||||
|
static bool GetAircraftMaxVelocity ( lua_State* pLuaVM, float& fVelocity );
|
||||||
|
static bool GetInteriorSoundsEnabled ( lua_State* pLuaVM, bool& bEnabled );
|
||||||
|
static bool GetRainLevel ( lua_State* pLuaVM, float& fRainLevel );
|
||||||
|
static bool GetSunSize ( lua_State* pLuaVM, float& fSunSize );
|
||||||
|
static bool GetSunColor ( lua_State* pLuaVM, unsigned char& ucCoreR, unsigned char& ucCoreG, unsigned char& ucCoreB, unsigned char& ucCoronaR, unsigned char& ucCoronaG, unsigned char& ucCoronaB );
|
||||||
|
static bool GetWindVelocity ( lua_State* pLuaVM, float& fVelX, float& fVelY, float& fVelZ );
|
||||||
|
static bool GetFarClipDistance ( lua_State* pLuaVM, float& fFarClip );
|
||||||
|
static bool GetFogDistance ( lua_State* pLuaVM, float& fFogDist );
|
||||||
|
static bool GetAircraftMaxHeight ( lua_State* pLuaVM, float& fMaxHeight );
|
||||||
|
static bool GetOcclusionsEnabled ( lua_State* pLuaVM, bool& bEnabled );
|
||||||
|
static bool GetMoonSize ( lua_State* pLuaVM, int& iSize );
|
||||||
|
|
||||||
|
// General world set funcs
|
||||||
|
static bool SetTime ( lua_State* pLuaVM, unsigned char ucHour, unsigned char ucMinute );
|
||||||
|
static bool SetWeather ( lua_State* pLuaVM, unsigned char ucWeather );
|
||||||
|
static bool SetWeatherBlended ( lua_State* pLuaVM, unsigned char ucWeather );
|
||||||
|
static bool SetGravity ( lua_State* pLuaVM, float fGravity );
|
||||||
|
static bool SetGameSpeed ( lua_State* pLuaVM, float fSpeed );
|
||||||
|
static bool SetWaveHeight ( lua_State* pLuaVM, float fHeight );
|
||||||
|
static bool GetSkyGradient ( lua_State* pLuaVM, unsigned char& ucTopRed, unsigned char& ucTopGreen, unsigned char& ucTopBlue, unsigned char& ucBottomRed, unsigned char& ucBottomGreen, unsigned char& ucBottomBlue );
|
||||||
|
static bool SetSkyGradient ( lua_State* pLuaVM, unsigned char ucTopRed, unsigned char ucTopGreen, unsigned char ucTopBlue, unsigned char ucBottomRed, unsigned char ucBottomGreen, unsigned char ucBottomBlue );
|
||||||
|
static bool ResetSkyGradient ( lua_State* pLuaVM );
|
||||||
|
static bool GetHeatHaze ( lua_State* pLuaVM, SHeatHazeSettings& heatHazeSettings );
|
||||||
|
static bool SetHeatHaze ( lua_State* pLuaVM, const SHeatHazeSettings& heatHazeSettings );
|
||||||
|
static bool ResetHeatHaze ( lua_State* pLuaVM );
|
||||||
|
static bool SetFPSLimit ( lua_State* pLuaVM, unsigned short usLimit, bool bSave );
|
||||||
|
static bool SetMinuteDuration ( lua_State* pLuaVM, unsigned long ulDuration );
|
||||||
|
static bool SetGarageOpen ( lua_State* pLuaVM, unsigned char ucGarageID, bool bIsOpen );
|
||||||
|
static bool SetGlitchEnabled ( lua_State* pLuaVM, const string& strGlitchName, bool bEnabled );
|
||||||
|
static bool IsGlitchEnabled ( lua_State* pLuaVM, const string& strGlitchName );
|
||||||
|
static bool GetJetpackWeaponEnabled ( lua_State* pLuaVM, eWeaponType weaponType );
|
||||||
|
static bool SetJetpackWeaponEnabled ( lua_State* pLuaVM, eWeaponType weaponType, bool bEnabled );
|
||||||
|
static bool SetCloudsEnabled ( lua_State* pLuaVM, bool bEnabled );
|
||||||
|
static bool GetCloudsEnabled ( lua_State* pLuaVM );
|
||||||
|
static bool SetTrafficLightState ( lua_State* pLuaVM, unsigned char ucState, bool bForced = false );
|
||||||
|
static bool SetTrafficLightsLocked ( lua_State* pLuaVM, bool bLocked );
|
||||||
|
static bool SetJetpackMaxHeight ( lua_State* pLuaVM, float fMaxHeight );
|
||||||
|
static bool SetInteriorSoundsEnabled ( lua_State* pLuaVM, bool bEnable );
|
||||||
|
static bool SetRainLevel ( lua_State* pLuaVM, float fRainLevel );
|
||||||
|
static bool SetSunSize ( lua_State* pLuaVM, float fSunSize );
|
||||||
|
static bool SetSunColor ( lua_State* pLuaVM, unsigned char ucCoreR, unsigned char ucCoreG, unsigned char ucCoreB, unsigned char ucCoronaR, unsigned char ucCoronaG, unsigned char ucCoronaB );
|
||||||
|
static bool SetWindVelocity ( lua_State* pLuaVM, float fVelX, float fVelY, float fVelZ );
|
||||||
|
static bool SetFarClipDistance ( lua_State* pLuaVM, float fFarClip );
|
||||||
|
static bool SetFogDistance ( lua_State* pLuaVM, float fFogDist );
|
||||||
|
static bool SetAircraftMaxHeight ( lua_State* pLuaVM, float fMaxHeight );
|
||||||
|
static bool SetAircraftMaxVelocity ( lua_State* pLuaVM, float fVelocity );
|
||||||
|
static bool SetOcclusionsEnabled ( lua_State* pLuaVM, bool bEnabled );
|
||||||
|
static bool ResetRainLevel ( lua_State* pLuaVM );
|
||||||
|
static bool ResetSunSize ( lua_State* pLuaVM );
|
||||||
|
static bool ResetSunColor ( lua_State* pLuaVM );
|
||||||
|
static bool ResetWindVelocity ( lua_State* pLuaVM );
|
||||||
|
static bool ResetFarClipDistance ( lua_State* pLuaVM );
|
||||||
|
static bool ResetFogDistance ( lua_State* pLuaVM );
|
||||||
|
static bool RemoveWorldModel ( lua_State* pLuaVM, unsigned short usModel, float fRadius, const Vector3& vecPosition, char cInterior );
|
||||||
|
static bool RestoreWorldModel ( lua_State* pLuaVM, unsigned short usModel, float fRadius, const Vector3& vecPosition, char cInterior );
|
||||||
|
static bool RestoreAllWorldModels ( lua_State* pLuaVM );
|
||||||
|
static bool SendSyncIntervals ( lua_State* pLuaVM, void* pPlayer = NULL );
|
||||||
|
static bool SetPedTargetingMarkerEnabled ( lua_State* pLuaVM, bool bEnabled );
|
||||||
|
static bool IsPedTargetingMarkerEnabled ( lua_State* pLuaVM );
|
||||||
|
static bool SetMoonSize ( lua_State* pLuaVM, int iMoonSize );
|
||||||
|
static bool ResetMoonSize ( lua_State* pLuaVM );
|
||||||
|
|
||||||
|
// Loaded Map Functions
|
||||||
|
static void* GetRootElement ( lua_State* pLuaVM );
|
||||||
|
// static void* LoadMapData ( lua_State* pLuaVM, void* pParent, CXMLNode* pNode );
|
||||||
|
// static void* SaveMapData ( lua_State* pLuaVM, void* pElement, CXMLNode* pNode, bool bChildren );
|
||||||
|
|
||||||
|
// Account get funcs
|
||||||
|
static void* GetAccount ( lua_State* pLuaVM, const char* szName, const char* szPassword );
|
||||||
|
static bool GetAccounts ( lua_State* pLuaVM );
|
||||||
|
static void* GetAccountPlayer ( lua_State* pLuaVM, void* pAccount );
|
||||||
|
static bool IsGuestAccount ( lua_State* pLuaVM, void* pAccount, bool& bGuest );
|
||||||
|
static CLuaArgument* GetAccountData ( lua_State* pLuaVM, void* pAccount, const char* szKey );
|
||||||
|
static bool GetAllAccountData ( lua_State* pLuaVM, void* pAccount );
|
||||||
|
static bool GetAccountSerial ( lua_State* pLuaVM, void* pAccount, string& strSerial );
|
||||||
|
static bool GetAccountsBySerial ( lua_State* pLuaVM, const string& strSerial, std::vector<void*>& outAccounts );
|
||||||
|
|
||||||
|
// Account set funcs
|
||||||
|
static void* AddAccount ( lua_State* pLuaVM, const char* szName, const char* szPassword );
|
||||||
|
static bool RemoveAccount ( lua_State* pLuaVM, void* pAccount );
|
||||||
|
static bool SetAccountPassword ( lua_State* pLuaVM, void* pAccount, const char* szPassword );
|
||||||
|
static bool SetAccountData ( lua_State* pLuaVM, void* pAccount, const char* szKey, CLuaArgument* pArgument );
|
||||||
|
static bool CopyAccountData ( lua_State* pLuaVM, void* pAccount, void* pFromAccount );
|
||||||
|
|
||||||
|
// Log in/out funcs
|
||||||
|
static bool LogIn ( lua_State* pLuaVM, void* pPlayer, void* pAccount, const char* szPassword );
|
||||||
|
static bool LogOut ( lua_State* pLuaVM, void* pPlayer );
|
||||||
|
|
||||||
|
// Admin funcs
|
||||||
|
static bool KickPlayer ( lua_State* pLuaVM, void* pPlayer, string strResponsible = "Console", string strReason = "" );
|
||||||
|
static void* BanPlayer ( lua_State* pLuaVM, void* pPlayer, bool bIP, bool bUsername, bool bSerial, void* pResponsible = NULL, string strResponsible = "Console", string strReason = "", time_t tUnban = 0 );
|
||||||
|
|
||||||
|
static void* AddBan ( lua_State* pLuaVM, string strIP, string strUsername, string strSerial, void* pResponsible = NULL, string strResponsible = "Console", string strReason = "", time_t tUnban = 0 );
|
||||||
|
static bool RemoveBan ( lua_State* pLuaVM, void* pBan, void* pResponsible = NULL );
|
||||||
|
|
||||||
|
static bool GetBans ( lua_State* pLuaVM );
|
||||||
|
static bool ReloadBanList ( lua_State* pLuaVM );
|
||||||
|
|
||||||
|
static bool GetBanIP ( lua_State* pLuaVM, void* pBan, string& strOutIP );
|
||||||
|
static bool GetBanSerial ( lua_State* pLuaVM, void* pBan, string& strOutSerial );
|
||||||
|
static bool GetBanUsername ( lua_State* pLuaVM, void* pBan, string& strOutUsername );
|
||||||
|
static bool GetBanNick ( lua_State* pLuaVM, void* pBan, string& strOutNick );
|
||||||
|
static bool GetBanReason ( lua_State* pLuaVM, void* pBan, string& strOutReason );
|
||||||
|
static bool GetBanAdmin ( lua_State* pLuaVM, void* pBan, string& strOutAdmin );
|
||||||
|
|
||||||
|
static bool GetBanTime ( lua_State* pLuaVM, void* pBan, time_t& time );
|
||||||
|
static bool GetUnbanTime ( lua_State* pLuaVM, void* pBan, time_t& time );
|
||||||
|
|
||||||
|
static bool SetUnbanTime ( lua_State* pLuaVM, void* pBan, time_t time);
|
||||||
|
static bool SetBanReason ( lua_State* pLuaVM, void* pBan, const string& strReason );
|
||||||
|
static bool SetBanAdmin ( lua_State* pLuaVM, void* pBan, const string& strAdminName );
|
||||||
|
|
||||||
|
// Cursor get funcs
|
||||||
|
static bool IsCursorShowing ( lua_State* pLuaVM, void* pPlayer, bool& bShowing );
|
||||||
|
|
||||||
|
// Cursor set funcs
|
||||||
|
static bool ShowCursor ( lua_State* pLuaVM, void* pElement, bool bShow, bool bToggleControls );
|
||||||
|
|
||||||
|
// Chat funcs
|
||||||
|
static bool ShowChat ( lua_State* pLuaVM, void* pElement, bool bShow );
|
||||||
|
|
||||||
|
// Misc funcs
|
||||||
|
static bool ResetMapInfo ( lua_State* pLuaVM, void* pElement );
|
||||||
|
|
||||||
|
// Resource funcs
|
||||||
|
static void* GetResourceMapRootElement ( lua_State* pLuaVM, const char* szMap );
|
||||||
|
// static CXMLNode* AddResourceMap ( lua_State* pLuaVM, const string& strFilePath, const std::string& strMapName, int iDimension );
|
||||||
|
// static CXMLNode* AddResourceConfig ( lua_State* pLuaVM, const string& strFilePath, const std::string& strConfigName, int iType );
|
||||||
|
static bool RemoveResourceFile ( lua_State* pLuaVM, const char* szFilename );
|
||||||
|
|
||||||
|
// Version funcs
|
||||||
|
// static unsigned long GetVersion ( lua_State* pLuaVM );
|
||||||
|
// static const char* GetVersionString ( lua_State* pLuaVM );
|
||||||
|
// static const char* GetVersionName ( lua_State* pLuaVM );
|
||||||
|
// static string GetVersionBuildType ( lua_State* pLuaVM );
|
||||||
|
// static unsigned long GetNetcodeVersion ( lua_State* pLuaVM );
|
||||||
|
// static const char* GetOperatingSystemName ( lua_State* pLuaVM );
|
||||||
|
// static const char* GetVersionBuildTag ( lua_State* pLuaVM );
|
||||||
|
// static string GetVersionSortable ( lua_State* pLuaVM );
|
||||||
|
|
||||||
|
// Camera get functions
|
||||||
|
static bool GetCameraMatrix ( lua_State* pLuaVM, void* pPlayer, Vector3& vecPosition, Vector3& vecLookAt, float& fRoll, float& fFOV );
|
||||||
|
static void* GetCameraTarget ( lua_State* pLuaVM, void* pPlayer );
|
||||||
|
static bool GetCameraInterior ( lua_State* pLuaVM, void* pPlayer, unsigned char & ucInterior );
|
||||||
|
|
||||||
|
// Camera set functions
|
||||||
|
static bool SetCameraMatrix ( lua_State* pLuaVM, void* pElement, const Vector3& vecPosition, Vector3* pvecLookAt, float fRoll, float fFOV );
|
||||||
|
static bool SetCameraTarget ( lua_State* pLuaVM, void* pElement, void* pTarget );
|
||||||
|
static bool SetCameraInterior ( lua_State* pLuaVM, void* pElement, unsigned char ucInterior );
|
||||||
|
static bool FadeCamera ( lua_State* pLuaVM, void* pElement, bool bFadeIn, float fFadeTime, unsigned char ucRed, unsigned char ucGreen, unsigned char ucBlue );
|
||||||
|
|
||||||
|
// Weapon give/take functions
|
||||||
|
static bool GiveWeapon ( lua_State* pLuaVM, void* pElement, unsigned char ucWeaponID, unsigned short usAmmo, bool bSetAsCurrent = false );
|
||||||
|
static bool TakeWeapon ( lua_State* pLuaVM, void* pElement, unsigned char ucWeaponID, unsigned short usAmmo = 9999 );
|
||||||
|
static bool TakeAllWeapons ( lua_State* pLuaVM, void* pElement );
|
||||||
|
static bool SetWeaponAmmo ( lua_State* pLuaVM, void* pElement, unsigned char ucWeaponID, unsigned short usAmmo, unsigned short usAmmoInClip );
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
Loading…
Reference in New Issue
Block a user