Merge pull request #282 from Arkshine/gamedata-type-desc

Modify game config parser to support more offset data and reflect changes
This commit is contained in:
Vincent Herbet 2015-09-07 09:10:28 +02:00
commit ac2bcb2d19
764 changed files with 11196 additions and 85 deletions

View File

@ -51,6 +51,8 @@ struct TempSigInfo
} TempSig;
TypeDescription TempType;
static char ParseEngine[32];
static bool DoesGameMatch(const char *value)
@ -63,13 +65,10 @@ static bool DoesEngineMatch(const char* value)
return strcmp(ParseEngine, value) == 0;
}
CGameConfig::CGameConfig(const char *path)
CGameConfig::CGameConfig(const char *path) : m_FoundOffset(false), m_CustomLevel(0), m_CustomHandler(nullptr)
{
strncopy(m_File, path, sizeof(m_File));
strncopy(ParseEngine, IS_DEDICATED_SERVER() ? "engine_ds" : "engine_ls", sizeof(ParseEngine));
m_CustomLevel = 0;
m_CustomHandler = nullptr;
}
CGameConfig::~CGameConfig()
@ -181,9 +180,11 @@ SMCResult CGameConfig::ReadSMC_NewSection(const SMCStates *states, const char *n
case PSTATE_GAMEDEFS_OFFSETS:
{
strncopy(m_Offset, name, sizeof(m_Offset));
TempType.reset();
m_ParseState = PSTATE_GAMEDEFS_OFFSETS_OFFSET;
m_MatchedPlatform = false;
m_FoundOffset = false;
break;
}
case PSTATE_GAMEDEFS_SIGNATURES:
@ -251,26 +252,89 @@ SMCResult CGameConfig::ReadSMC_KeyValue(const SMCStates *states, const char *key
{
case PSTATE_GAMEDEFS_OFFSETS_OFFSET:
{
if (g_LibSys.IsPlatformCompatible(key, &m_MatchedPlatform))
if (!strcmp(key, "type"))
{
if (m_Class[0])
{
auto ic = m_OffsetsByClass.findForAdd(m_Class);
auto type = FieldType::FIELD_NONE;
if (ic.found())
{
ic->value->list.replace(m_Offset, atoi(value));
}
else if (m_OffsetsByClass.add(ic, m_Class))
{
ic->value = new OffsetClass;
ic->value->list.insert(m_Offset, atoi(value));
}
}
else
if (!strcmp(value, "stringint"))
{
m_Offsets.replace(m_Offset, atoi(value));
type = FieldType::FIELD_STRINGINT;
}
else if (!strcmp(value, "stringptr"))
{
type = FieldType::FIELD_STRINGPTR;
}
else if (!strcmp(value, "string"))
{
type = FieldType::FIELD_STRING;
}
else if (!strcmp(value, "classptr"))
{
type = FieldType::FIELD_CLASSPTR;
}
else if (!strcmp(value, "class"))
{
type = FieldType::FIELD_CLASS;
}
else if (!strcmp(value, "ehandle"))
{
type = FieldType::FIELD_EHANDLE;
}
else if (!strcmp(value, "edict"))
{
type = FieldType::FIELD_EDICT;
}
else if (!strcmp(value, "entvars"))
{
type = FieldType::FIELD_ENTVARS;
}
else if (!strcmp(value, "vector"))
{
type = FieldType::FIELD_VECTOR;
}
else if (!strcmp(value, "pointer"))
{
type = FieldType::FIELD_POINTER;
}
else if (!strcmp(value, "integer"))
{
type = FieldType::FIELD_INTEGER;
}
else if (!strcmp(value, "function"))
{
type = FieldType::FIELD_FUNCTION;
}
else if (!strcmp(value, "boolean"))
{
type = FieldType::FIELD_BOOLEAN;
}
else if (!strcmp(value, "short"))
{
type = FieldType::FIELD_SHORT;
}
else if (!strcmp(value, "character"))
{
type = FieldType::FIELD_CHARACTER;
}
else if (!strcmp(value, "float"))
{
type = FieldType::FIELD_FLOAT;
}
TempType.fieldType = type;
}
else if (!strcmp(key, "size"))
{
TempType.fieldSize = ke::Max<int>(0, atoi(value));
}
else if (!strcmp(key, "unsigned"))
{
TempType.fieldUnsigned = !!atoi(value);
}
else if (g_LibSys.IsPlatformCompatible(key, &m_MatchedPlatform))
{
m_FoundOffset = true;
TempType.fieldOffset = atoi(value);
}
break;
}
@ -414,6 +478,28 @@ SMCResult CGameConfig::ReadSMC_LeavingSection(const SMCStates *states)
}
case PSTATE_GAMEDEFS_OFFSETS_OFFSET:
{
if (m_FoundOffset)
{
if (m_Class[0])
{
auto ic = m_OffsetsByClass.findForAdd(m_Class);
if (ic.found())
{
ic->value->list.replace(m_Offset, TempType);
}
else if (m_OffsetsByClass.add(ic, m_Class))
{
ic->value = new OffsetClass;
ic->value->list.insert(m_Offset, TempType);
}
}
else
{
m_Offsets.replace(m_Offset, TempType);
}
}
m_ParseState = PSTATE_GAMEDEFS_OFFSETS;
break;
}
@ -672,12 +758,12 @@ bool CGameConfig::EnterFile(const char *file, char *error, size_t maxlength)
return true;
}
bool CGameConfig::GetOffset(const char *key, int *value)
bool CGameConfig::GetOffset(const char *key, TypeDescription *value)
{
return m_Offsets.retrieve(key, value);
}
bool CGameConfig::GetOffsetByClass(const char *classname, const char *key, int *value)
bool CGameConfig::GetOffsetByClass(const char *classname, const char *key, TypeDescription *value)
{
auto r = m_OffsetsByClass.find(classname);

View File

@ -45,8 +45,8 @@ class CGameConfig
public: // IGameConfig
const char* GetKeyValue(const char *key);
bool GetOffset(const char *key, int *value);
bool GetOffsetByClass(const char *classname, const char *key, int *value);
bool GetOffset(const char *key, TypeDescription *value);
bool GetOffsetByClass(const char *classname, const char *key, TypeDescription *value);
bool GetMemSig(const char *key, void **addr);
bool GetAddress(const char *key, void **addr);
@ -61,15 +61,16 @@ class CGameConfig
struct OffsetClass
{
StringHashMap<int> list;
StringHashMap<TypeDescription> list;
};
typedef StringHashMap<ke::AutoPtr<OffsetClass>> OffsetClassMap;
typedef StringHashMap<TypeDescription> OffsetMap;
char m_File[PLATFORM_MAX_PATH];
char m_CurrentPath[PLATFORM_MAX_PATH];
StringHashMap<int> m_Offsets;
OffsetMap m_Offsets;
OffsetClassMap m_OffsetsByClass;
StringHashMap<ke::AString> m_Keys;
StringHashMap<void*> m_Sigs;
@ -81,6 +82,7 @@ class CGameConfig
char m_Offset[64];
char m_Game[256];
bool m_FoundOffset;
bool m_MatchedClasses;
bool m_ShouldBeReadingDefault;
bool m_HadGame;

View File

@ -54,7 +54,7 @@ static cell AMX_NATIVE_CALL GameConfGetOffset(AMX *amx, cell *params)
}
int length;
int value;
TypeDescription value;
const char *key = get_amxstring(amx, params[2], 0, length);
@ -63,7 +63,7 @@ static cell AMX_NATIVE_CALL GameConfGetOffset(AMX *amx, cell *params)
return -1;
}
return value;
return value.fieldOffset;
}
// native GameConfGetClassOffset(GameConfig:handle, const classname[], const key[]);
@ -78,7 +78,7 @@ static cell AMX_NATIVE_CALL GameConfGetClassOffset(AMX *amx, cell *params)
}
int length;
int value;
TypeDescription value;
const char *classname = get_amxstring(amx, params[2], 0, length);
const char *key = get_amxstring(amx, params[3], 1, length);
@ -88,7 +88,7 @@ static cell AMX_NATIVE_CALL GameConfGetClassOffset(AMX *amx, cell *params)
return -1;
}
return value;
return value.fieldOffset;
}
// native bool:GameConfGetKeyValue(GameConfig:handle, const key[], buffer[], maxlen);

View File

@ -21,6 +21,8 @@
{
"m_state" // int
{
"type" "integer"
"windows" "480"
"linux" "500"
"mac" "500"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,8 @@
"iShellOn" // int
{
"type" "integer"
"windows" "324"
"linux" "340"
"mac" "340"
@ -35,6 +39,9 @@
"m_usFireAK47" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "328"
"linux" "344"
"mac" "344"

View File

@ -21,6 +21,8 @@
{
"m_flAttenuation" // float
{
"type" "float"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_dpv" // dynpitchvol_t
{
"type" "structure"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_fActive" // BOOL
{
"type" "integer"
"windows" "240"
"linux" "256"
"mac" "256"
@ -42,6 +48,8 @@
"m_fLooping" // BOOL
{
"type" "integer"
"windows" "244"
"linux" "260"
"mac" "260"

View File

@ -21,6 +21,8 @@
{
"m_iItem" // int
{
"type" "integer"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_iCount" // int
{
"type" "integer"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_iInitialCount" // int
{
"type" "integer"
"windows" "144"
"linux" "160"
"mac" "160"
@ -42,6 +48,8 @@
"m_bAlreadyCounted" // bool
{
"type" "boolean"
"windows" "148"
"linux" "164"
"mac" "164"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,8 @@
"iShellOn" // int
{
"type" "integer"
"windows" "324"
"linux" "340"
"mac" "340"
@ -35,6 +39,9 @@
"m_usFireAug" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "328"
"linux" "344"
"mac" "344"

View File

@ -21,6 +21,8 @@
{
"m_globalstate" // int
{
"type" "integer"
"windows" "144"
"linux" "160"
"mac" "160"
@ -28,6 +30,8 @@
"triggerType" // USE_TYPE
{
"type" "integer"
"windows" "148"
"linux" "164"
"mac" "164"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,9 @@
"m_usFireAWP" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "324"
"linux" "340"
"mac" "340"

View File

@ -21,6 +21,8 @@
{
"m_flFrameRate" // float
{
"type" "float"
"windows" "144"
"linux" "160"
"mac" "160"
@ -28,6 +30,8 @@
"m_flGroundSpeed" // float
{
"type" "float"
"windows" "148"
"linux" "164"
"mac" "164"
@ -35,6 +39,8 @@
"m_flLastEventCheck" // float
{
"type" "float"
"windows" "152"
"linux" "168"
"mac" "168"
@ -42,6 +48,8 @@
"m_fSequenceFinished" // BOOL
{
"type" "integer"
"windows" "156"
"linux" "172"
"mac" "172"
@ -49,6 +57,8 @@
"m_fSequenceLoops" // BOOL
{
"type" "integer"
"windows" "160"
"linux" "176"
"mac" "176"

View File

@ -21,6 +21,8 @@
{
"m_fStayPushed" // BOOL
{
"type" "integer"
"windows" "292"
"linux" "312"
"mac" "312"
@ -28,6 +30,8 @@
"m_fRotating" // BOOL
{
"type" "integer"
"windows" "296"
"linux" "316"
"mac" "316"
@ -35,6 +39,8 @@
"m_strChangeTarget" // string_t
{
"type" "stringint"
"windows" "300"
"linux" "320"
"mac" "320"
@ -42,6 +48,8 @@
"m_ls" // locksound_t
{
"type" "structure"
"windows" "304"
"linux" "324"
"mac" "324"
@ -49,6 +57,9 @@
"m_bLockedSound" // BYTE
{
"type" "character"
"unsigned" "1"
"windows" "340"
"linux" "360"
"mac" "360"
@ -56,6 +67,9 @@
"m_bLockedSentence" // BYTE
{
"type" "character"
"unsigned" "1"
"windows" "341"
"linux" "361"
"mac" "361"
@ -63,6 +77,9 @@
"m_bUnlockedSound" // BYTE
{
"type" "character"
"unsigned" "1"
"windows" "342"
"linux" "362"
"mac" "362"
@ -70,6 +87,9 @@
"m_bUnlockedSentence" // BYTE
{
"type" "character"
"unsigned" "1"
"windows" "343"
"linux" "363"
"mac" "363"
@ -77,6 +97,8 @@
"m_sounds" // int
{
"type" "integer"
"windows" "344"
"linux" "364"
"mac" "364"

View File

@ -21,6 +21,8 @@
{
"m_flDelay" // float
{
"type" "float"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_iszKillTarget" // int
{
"type" "integer"
"windows" "140"
"linux" "156"
"mac" "156"

View File

@ -21,6 +21,9 @@
{
"m_bHealthValue" // BYTE
{
"type" "character"
"unsigned" "1"
"windows" "292"
"linux" "312"
"mac" "312"
@ -28,6 +31,9 @@
"m_bMoveSnd" // BYTE
{
"type" "character"
"unsigned" "1"
"windows" "293"
"linux" "313"
"mac" "313"
@ -35,6 +41,9 @@
"m_bStopSnd" // BYTE
{
"type" "character"
"unsigned" "1"
"windows" "294"
"linux" "314"
"mac" "314"
@ -42,6 +51,8 @@
"m_ls" // locksound_t
{
"type" "structure"
"windows" "296"
"linux" "316"
"mac" "316"
@ -49,6 +60,9 @@
"m_bLockedSound" // BYTE
{
"type" "character"
"unsigned" "1"
"windows" "332"
"linux" "352"
"mac" "352"
@ -56,6 +70,9 @@
"m_bLockedSentence" // BYTE
{
"type" "character"
"unsigned" "1"
"windows" "333"
"linux" "353"
"mac" "353"
@ -63,6 +80,9 @@
"m_bUnlockedSound" // BYTE
{
"type" "character"
"unsigned" "1"
"windows" "334"
"linux" "354"
"mac" "354"
@ -70,6 +90,9 @@
"m_bUnlockedSentence" // BYTE
{
"type" "character"
"unsigned" "1"
"windows" "335"
"linux" "355"
"mac" "355"
@ -77,6 +100,8 @@
"m_lastBlockedTimestamp" // float
{
"type" "float"
"windows" "336"
"linux" "356"
"mac" "356"

View File

@ -21,6 +21,8 @@
{
"pev" // entvars_t*
{
"type" "entvars"
"windows" "4"
"linux" "4"
"mac" "4"
@ -28,6 +30,8 @@
"m_pGoalEnt" // CBaseEntity*
{
"type" "classptr"
"windows" "8"
"linux" "8"
"mac" "8"
@ -35,6 +39,8 @@
"m_pLink" // CBaseEntity*
{
"type" "classptr"
"windows" "12"
"linux" "12"
"mac" "12"
@ -42,6 +48,8 @@
"m_pfnThink" // (*__pfn)(CBaseEntity*)
{
"type" "function"
"windows" "16"
"linux" "16"
"mac" "16"
@ -49,6 +57,8 @@
"m_pfnTouch" // (*__pfn)(CBaseEntity*, CBaseEntity*)
{
"type" "function"
"windows" "20"
"linux" "24"
"mac" "24"
@ -56,6 +66,8 @@
"m_pfnUse" // (*__pfn)(CBaseEntity*, CBaseEntity*, CBaseEntity*, USE_TYPE, float)
{
"type" "function"
"windows" "24"
"linux" "32"
"mac" "32"
@ -63,6 +75,8 @@
"m_pfnBlocked" // (*__pfn)(CBaseEntity*, CBaseEntity*)
{
"type" "function"
"windows" "28"
"linux" "40"
"mac" "40"
@ -70,6 +84,8 @@
"current_ammo" // int*
{
"type" "pointer"
"windows" "32"
"linux" "48"
"mac" "48"
@ -77,6 +93,8 @@
"currentammo" // float
{
"type" "float"
"windows" "36"
"linux" "52"
"mac" "52"
@ -84,6 +102,8 @@
"maxammo_buckshot" // int
{
"type" "integer"
"windows" "40"
"linux" "56"
"mac" "56"
@ -91,6 +111,8 @@
"ammo_buckshot" // int
{
"type" "integer"
"windows" "44"
"linux" "60"
"mac" "60"
@ -98,6 +120,8 @@
"maxammo_9mm" // int
{
"type" "integer"
"windows" "48"
"linux" "64"
"mac" "64"
@ -105,6 +129,8 @@
"ammo_9mm" // int
{
"type" "integer"
"windows" "52"
"linux" "68"
"mac" "68"
@ -112,6 +138,8 @@
"maxammo_556nato" // int
{
"type" "integer"
"windows" "56"
"linux" "72"
"mac" "72"
@ -119,6 +147,8 @@
"ammo_556nato" // int
{
"type" "integer"
"windows" "60"
"linux" "76"
"mac" "76"
@ -126,6 +156,8 @@
"maxammo_556natobox" // int
{
"type" "integer"
"windows" "64"
"linux" "80"
"mac" "80"
@ -133,6 +165,8 @@
"ammo_556natobox" // int
{
"type" "integer"
"windows" "68"
"linux" "84"
"mac" "84"
@ -140,6 +174,8 @@
"maxammo_762nato" // int
{
"type" "integer"
"windows" "72"
"linux" "88"
"mac" "88"
@ -147,6 +183,8 @@
"ammo_762nato" // int
{
"type" "integer"
"windows" "76"
"linux" "92"
"mac" "92"
@ -154,6 +192,8 @@
"maxammo_45acp" // int
{
"type" "integer"
"windows" "80"
"linux" "96"
"mac" "96"
@ -161,6 +201,8 @@
"ammo_45acp" // int
{
"type" "integer"
"windows" "84"
"linux" "100"
"mac" "100"
@ -168,6 +210,8 @@
"maxammo_50ae" // int
{
"type" "integer"
"windows" "88"
"linux" "104"
"mac" "104"
@ -175,6 +219,8 @@
"ammo_50ae" // int
{
"type" "integer"
"windows" "92"
"linux" "108"
"mac" "108"
@ -182,6 +228,8 @@
"maxammo_338mag" // int
{
"type" "integer"
"windows" "96"
"linux" "112"
"mac" "112"
@ -189,6 +237,8 @@
"ammo_338mag" // int
{
"type" "integer"
"windows" "100"
"linux" "116"
"mac" "116"
@ -196,6 +246,8 @@
"maxammo_57mm" // int
{
"type" "integer"
"windows" "104"
"linux" "120"
"mac" "120"
@ -203,6 +255,8 @@
"ammo_57mm" // int
{
"type" "integer"
"windows" "108"
"linux" "124"
"mac" "124"
@ -210,6 +264,8 @@
"maxammo_357sig" // int
{
"type" "integer"
"windows" "112"
"linux" "128"
"mac" "128"
@ -217,6 +273,8 @@
"ammo_357sig" // int
{
"type" "integer"
"windows" "116"
"linux" "132"
"mac" "132"
@ -224,6 +282,8 @@
"m_flStartThrow" // float
{
"type" "float"
"windows" "120"
"linux" "136"
"mac" "136"
@ -231,6 +291,8 @@
"m_flReleaseThrow" // float
{
"type" "float"
"windows" "124"
"linux" "140"
"mac" "140"
@ -238,6 +300,8 @@
"m_iSwing" // int
{
"type" "integer"
"windows" "128"
"linux" "144"
"mac" "144"
@ -245,6 +309,8 @@
"has_disconnected" // bool
{
"type" "boolean"
"windows" "132"
"linux" "148"
"mac" "148"

View File

@ -21,6 +21,8 @@
{
"m_NeedGrenadeType" // int
{
"type" "integer"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"sTriggerOnGrenade" // string_t
{
"type" "stringint"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"sDisableOnGrenade" // string_t
{
"type" "stringint"
"windows" "144"
"linux" "160"
"mac" "160"
@ -42,6 +48,8 @@
"m_fSmokeTouching" // bool
{
"type" "boolean"
"windows" "148"
"linux" "164"
"mac" "164"
@ -49,6 +57,8 @@
"m_fFlashTouched" // bool
{
"type" "boolean"
"windows" "149"
"linux" "165"
"mac" "165"

View File

@ -21,6 +21,8 @@
{
"m_Activity" // Activity
{
"type" "integer"
"windows" "292"
"linux" "312"
"mac" "312"
@ -28,6 +30,8 @@
"m_IdealActivity" // Activity
{
"type" "integer"
"windows" "296"
"linux" "316"
"mac" "316"
@ -35,6 +39,8 @@
"m_LastHitGroup" // int
{
"type" "integer"
"windows" "300"
"linux" "320"
"mac" "320"
@ -42,6 +48,8 @@
"m_bitsDamageType" // int
{
"type" "integer"
"windows" "304"
"linux" "324"
"mac" "324"
@ -49,6 +57,10 @@
"m_rgbTimeBasedDamage" // unsigned char[8]
{
"type" "character"
"size" "8"
"unsigned" "1"
"windows" "308"
"linux" "328"
"mac" "328"
@ -56,6 +68,8 @@
"m_MonsterState" // MONSTERSTATE
{
"type" "integer"
"windows" "316"
"linux" "336"
"mac" "336"
@ -63,6 +77,8 @@
"m_IdealMonsterState" // MONSTERSTATE
{
"type" "integer"
"windows" "320"
"linux" "340"
"mac" "340"
@ -70,6 +86,8 @@
"m_afConditions" // int
{
"type" "integer"
"windows" "324"
"linux" "344"
"mac" "344"
@ -77,6 +95,8 @@
"m_afMemory" // int
{
"type" "integer"
"windows" "328"
"linux" "348"
"mac" "348"
@ -84,6 +104,8 @@
"m_flNextAttack" // float
{
"type" "float"
"windows" "332"
"linux" "352"
"mac" "352"
@ -91,6 +113,8 @@
"m_hEnemy" // EHANDLE
{
"type" "ehandle"
"windows" "336"
"linux" "356"
"mac" "356"
@ -98,6 +122,8 @@
"m_hTargetEnt" // EHANDLE
{
"type" "ehandle"
"windows" "344"
"linux" "364"
"mac" "364"
@ -105,6 +131,8 @@
"m_flFieldOfView" // float
{
"type" "float"
"windows" "352"
"linux" "372"
"mac" "372"
@ -112,6 +140,8 @@
"m_bloodColor" // int
{
"type" "integer"
"windows" "356"
"linux" "376"
"mac" "376"
@ -119,6 +149,8 @@
"m_HackedGunPos" // Vector
{
"type" "vector"
"windows" "360"
"linux" "380"
"mac" "380"
@ -126,6 +158,8 @@
"m_vecEnemyLKP" // Vector
{
"type" "vector"
"windows" "372"
"linux" "392"
"mac" "392"

View File

@ -21,6 +21,9 @@
{
"m_bMoveSnd" // BYTE
{
"type" "character"
"unsigned" "1"
"windows" "292"
"linux" "312"
"mac" "312"
@ -28,6 +31,9 @@
"m_bStopSnd" // BYTE
{
"type" "character"
"unsigned" "1"
"windows" "293"
"linux" "313"
"mac" "313"
@ -35,6 +41,8 @@
"m_volume" // float
{
"type" "float"
"windows" "296"
"linux" "316"
"mac" "316"

View File

@ -21,6 +21,8 @@
{
"m_pPlayer" // CBasePlayer*
{
"type" "classptr"
"windows" "164"
"linux" "180"
"mac" "180"
@ -28,6 +30,8 @@
"m_pNext" // CBasePlayerItem*
{
"type" "classptr"
"windows" "168"
"linux" "184"
"mac" "184"
@ -35,6 +39,8 @@
"m_iId" // int
{
"type" "integer"
"windows" "172"
"linux" "188"
"mac" "188"

View File

@ -21,6 +21,8 @@
{
"m_iPlayEmptySound" // int
{
"type" "integer"
"windows" "176"
"linux" "192"
"mac" "192"
@ -28,6 +30,8 @@
"m_fFireOnEmpty" // int
{
"type" "integer"
"windows" "180"
"linux" "196"
"mac" "196"
@ -35,6 +39,8 @@
"m_flNextPrimaryAttack" // float
{
"type" "float"
"windows" "184"
"linux" "200"
"mac" "200"
@ -42,6 +48,8 @@
"m_flNextSecondaryAttack" // float
{
"type" "float"
"windows" "188"
"linux" "204"
"mac" "204"
@ -49,6 +57,8 @@
"m_flTimeWeaponIdle" // float
{
"type" "float"
"windows" "192"
"linux" "208"
"mac" "208"
@ -56,6 +66,8 @@
"m_iPrimaryAmmoType" // int
{
"type" "integer"
"windows" "196"
"linux" "212"
"mac" "212"
@ -63,6 +75,8 @@
"m_iSecondaryAmmoType" // int
{
"type" "integer"
"windows" "200"
"linux" "216"
"mac" "216"
@ -70,6 +84,8 @@
"m_iClip" // int
{
"type" "integer"
"windows" "204"
"linux" "220"
"mac" "220"
@ -77,6 +93,8 @@
"m_iClientClip" // int
{
"type" "integer"
"windows" "208"
"linux" "224"
"mac" "224"
@ -84,6 +102,8 @@
"m_iClientWeaponState" // int
{
"type" "integer"
"windows" "212"
"linux" "228"
"mac" "228"
@ -91,6 +111,8 @@
"m_fInReload" // int
{
"type" "integer"
"windows" "216"
"linux" "232"
"mac" "232"
@ -98,6 +120,8 @@
"m_fInSpecialReload" // int
{
"type" "integer"
"windows" "220"
"linux" "236"
"mac" "236"
@ -105,6 +129,8 @@
"m_iDefaultAmmo" // int
{
"type" "integer"
"windows" "224"
"linux" "240"
"mac" "240"
@ -112,6 +138,8 @@
"m_iShellId" // int
{
"type" "integer"
"windows" "228"
"linux" "244"
"mac" "244"
@ -119,6 +147,8 @@
"m_fMaxSpeed" // float
{
"type" "float"
"windows" "232"
"linux" "248"
"mac" "248"
@ -126,6 +156,8 @@
"m_bDelayFire" // bool
{
"type" "boolean"
"windows" "236"
"linux" "252"
"mac" "252"
@ -133,6 +165,8 @@
"m_iDirection" // int
{
"type" "integer"
"windows" "240"
"linux" "256"
"mac" "256"
@ -140,6 +174,8 @@
"m_bSecondarySilencerOn" // bool
{
"type" "boolean"
"windows" "244"
"linux" "260"
"mac" "260"
@ -147,6 +183,8 @@
"m_flAccuracy" // float
{
"type" "float"
"windows" "248"
"linux" "264"
"mac" "264"
@ -154,6 +192,8 @@
"m_flLastFire" // float
{
"type" "float"
"windows" "252"
"linux" "268"
"mac" "268"
@ -161,6 +201,8 @@
"m_iShotsFired" // int
{
"type" "integer"
"windows" "256"
"linux" "272"
"mac" "272"
@ -168,6 +210,8 @@
"m_vVecAiming" // Vector
{
"type" "vector"
"windows" "260"
"linux" "276"
"mac" "276"
@ -175,6 +219,8 @@
"model_name" // string_t
{
"type" "stringint"
"windows" "272"
"linux" "288"
"mac" "288"
@ -182,6 +228,8 @@
"m_flGlock18Shoot" // float
{
"type" "float"
"windows" "276"
"linux" "292"
"mac" "292"
@ -189,6 +237,8 @@
"m_iGlock18ShotsFired" // int
{
"type" "integer"
"windows" "280"
"linux" "296"
"mac" "296"
@ -196,6 +246,8 @@
"m_flFamasShoot" // float
{
"type" "float"
"windows" "284"
"linux" "300"
"mac" "300"
@ -203,6 +255,8 @@
"m_iFamasShotsFired" // int
{
"type" "integer"
"windows" "288"
"linux" "304"
"mac" "304"
@ -210,6 +264,8 @@
"m_fBurstSpread" // float
{
"type" "float"
"windows" "292"
"linux" "308"
"mac" "308"
@ -217,6 +273,8 @@
"m_iWeaponState" // int
{
"type" "integer"
"windows" "296"
"linux" "312"
"mac" "312"
@ -224,6 +282,8 @@
"m_flNextReload" // float
{
"type" "float"
"windows" "300"
"linux" "316"
"mac" "316"
@ -231,6 +291,8 @@
"m_flDecreaseShotsFired" // float
{
"type" "float"
"windows" "304"
"linux" "320"
"mac" "320"
@ -238,6 +300,9 @@
"m_usFireGlock18" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "308"
"linux" "324"
"mac" "324"
@ -245,6 +310,9 @@
"m_usFireFamas" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "310"
"linux" "326"
"mac" "326"
@ -252,6 +320,8 @@
"m_flPrevPrimaryAttack" // float
{
"type" "float"
"windows" "312"
"linux" "328"
"mac" "328"
@ -259,6 +329,8 @@
"m_flLastFireTime" // float
{
"type" "float"
"windows" "316"
"linux" "332"
"mac" "332"

View File

@ -21,6 +21,8 @@
{
"m_toggle_state" // TOGGLE_STATE
{
"type" "integer"
"windows" "164"
"linux" "180"
"mac" "180"
@ -28,6 +30,8 @@
"m_flActivateFinished" // float
{
"type" "float"
"windows" "168"
"linux" "184"
"mac" "184"
@ -35,6 +39,8 @@
"m_flMoveDistance" // float
{
"type" "float"
"windows" "172"
"linux" "188"
"mac" "188"
@ -42,6 +48,8 @@
"m_flWait" // float
{
"type" "float"
"windows" "176"
"linux" "192"
"mac" "192"
@ -49,6 +57,8 @@
"m_flLip" // float
{
"type" "float"
"windows" "180"
"linux" "196"
"mac" "196"
@ -56,6 +66,8 @@
"m_flTWidth" // float
{
"type" "float"
"windows" "184"
"linux" "200"
"mac" "200"
@ -63,6 +75,8 @@
"m_flTLength" // float
{
"type" "float"
"windows" "188"
"linux" "204"
"mac" "204"
@ -70,6 +84,8 @@
"m_vecPosition1" // Vector
{
"type" "vector"
"windows" "192"
"linux" "208"
"mac" "208"
@ -77,6 +93,8 @@
"m_vecPosition2" // Vector
{
"type" "vector"
"windows" "204"
"linux" "220"
"mac" "220"
@ -84,6 +102,8 @@
"m_vecAngle1" // Vector
{
"type" "vector"
"windows" "216"
"linux" "232"
"mac" "232"
@ -91,6 +111,8 @@
"m_vecAngle2" // Vector
{
"type" "vector"
"windows" "228"
"linux" "244"
"mac" "244"
@ -98,6 +120,8 @@
"m_cTriggersLeft" // int
{
"type" "integer"
"windows" "240"
"linux" "256"
"mac" "256"
@ -105,6 +129,8 @@
"m_flHeight" // float
{
"type" "float"
"windows" "244"
"linux" "260"
"mac" "260"
@ -112,6 +138,8 @@
"m_hActivator" // EHANDLE
{
"type" "ehandle"
"windows" "248"
"linux" "264"
"mac" "264"
@ -119,6 +147,8 @@
"m_pfnCallWhenMoveDone" // (*__pfn)(CBaseToggle*)
{
"type" "function"
"windows" "256"
"linux" "272"
"mac" "272"
@ -126,6 +156,8 @@
"m_vecFinalDest" // Vector
{
"type" "vector"
"windows" "260"
"linux" "280"
"mac" "280"
@ -133,6 +165,8 @@
"m_vecFinalAngle" // Vector
{
"type" "vector"
"windows" "272"
"linux" "292"
"mac" "292"
@ -140,6 +174,8 @@
"m_bitsDamageInflict" // int
{
"type" "integer"
"windows" "284"
"linux" "304"
"mac" "304"
@ -147,6 +183,8 @@
"m_sMaster" // string_t
{
"type" "stringint"
"windows" "288"
"linux" "308"
"mac" "308"

View File

@ -21,6 +21,8 @@
{
"m_lastTime" // float
{
"type" "float"
"windows" "144"
"linux" "160"
"mac" "160"
@ -28,6 +30,8 @@
"m_tmBeepPeriod" // float
{
"type" "float"
"windows" "148"
"linux" "164"
"mac" "164"
@ -35,6 +39,8 @@
"m_bSetModel" // bool
{
"type" "boolean"
"windows" "152"
"linux" "168"
"mac" "168"

View File

@ -21,6 +21,8 @@
{
"m_profile" // const class BotProfile*
{
"type" "pointer"
"windows" "2480"
"linux" "2500"
"mac" "2500"
@ -28,6 +30,9 @@
"m_id" // unsigned int
{
"type" "integer"
"unsigned" "1"
"windows" "2484"
"linux" "2504"
"mac" "2504"
@ -35,6 +40,8 @@
"m_flNextBotThink" // float
{
"type" "float"
"windows" "2488"
"linux" "2508"
"mac" "2508"
@ -42,6 +49,8 @@
"m_flNextFullBotThink" // float
{
"type" "float"
"windows" "2492"
"linux" "2512"
"mac" "2512"
@ -49,6 +58,8 @@
"m_flPreviousCommandTime" // float
{
"type" "float"
"windows" "2496"
"linux" "2516"
"mac" "2516"
@ -56,6 +67,8 @@
"m_isRunning" // bool
{
"type" "boolean"
"windows" "2500"
"linux" "2520"
"mac" "2520"
@ -63,6 +76,8 @@
"m_isCrouching" // bool
{
"type" "boolean"
"windows" "2501"
"linux" "2521"
"mac" "2521"
@ -70,6 +85,8 @@
"m_forwardSpeed" // float
{
"type" "float"
"windows" "2504"
"linux" "2524"
"mac" "2524"
@ -77,6 +94,8 @@
"m_strafeSpeed" // float
{
"type" "float"
"windows" "2508"
"linux" "2528"
"mac" "2528"
@ -84,6 +103,8 @@
"m_verticalSpeed" // float
{
"type" "float"
"windows" "2512"
"linux" "2532"
"mac" "2532"
@ -91,6 +112,9 @@
"m_buttonFlags" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "2516"
"linux" "2536"
"mac" "2536"
@ -98,6 +122,8 @@
"m_jumpTimestamp" // float
{
"type" "float"
"windows" "2520"
"linux" "2540"
"mac" "2540"
@ -105,6 +131,9 @@
"m_postureStack" // struct PostureContext[8]
{
"type" "structure"
"size" "8"
"windows" "2524"
"linux" "2544"
"mac" "2544"
@ -112,6 +141,8 @@
"m_postureStackIndex" // int
{
"type" "integer"
"windows" "2540"
"linux" "2560"
"mac" "2560"

View File

@ -21,6 +21,8 @@
{
"m_Material" // Materials
{
"type" "integer"
"windows" "144"
"linux" "160"
"mac" "160"
@ -28,6 +30,8 @@
"m_Explosion" // Explosions
{
"type" "integer"
"windows" "148"
"linux" "164"
"mac" "164"
@ -35,6 +39,8 @@
"m_idShard" // int
{
"type" "integer"
"windows" "152"
"linux" "168"
"mac" "168"
@ -42,6 +48,8 @@
"m_angle" // float
{
"type" "float"
"windows" "156"
"linux" "172"
"mac" "172"
@ -49,6 +57,8 @@
"m_iszGibModel" // int
{
"type" "integer"
"windows" "160"
"linux" "176"
"mac" "176"
@ -56,6 +66,8 @@
"m_iszSpawnObject" // int
{
"type" "integer"
"windows" "164"
"linux" "180"
"mac" "180"
@ -63,6 +75,8 @@
"m_flHealth" // float
{
"type" "float"
"windows" "168"
"linux" "184"
"mac" "184"

View File

@ -21,6 +21,8 @@
{
"m_density" // int
{
"type" "integer"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_frequency" // int
{
"type" "integer"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_bubbleModel" // int
{
"type" "integer"
"windows" "144"
"linux" "160"
"mac" "160"
@ -42,6 +48,8 @@
"m_state" // int
{
"type" "integer"
"windows" "148"
"linux" "164"
"mac" "164"

View File

@ -21,6 +21,8 @@
{
"m_bStartedArming" // bool
{
"type" "boolean"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,8 @@
"m_bBombPlacedAnimation" // bool
{
"type" "boolean"
"windows" "321"
"linux" "337"
"mac" "337"
@ -35,6 +39,8 @@
"m_fArmedTime" // float
{
"type" "float"
"windows" "324"
"linux" "340"
"mac" "340"
@ -42,6 +48,8 @@
"m_bHasShield" // bool
{
"type" "boolean"
"windows" "328"
"linux" "344"
"mac" "344"

View File

@ -21,6 +21,9 @@
{
"m_szMapName" // char[32]
{
"type" "string"
"size" "32"
"windows" "292"
"linux" "312"
"mac" "312"
@ -28,6 +31,9 @@
"m_szLandmarkName" // char[32]
{
"type" "string"
"size" "32"
"windows" "324"
"linux" "344"
"mac" "344"
@ -35,6 +41,8 @@
"m_changeTarget" // int
{
"type" "integer"
"windows" "356"
"linux" "376"
"mac" "376"
@ -42,6 +50,8 @@
"m_changeTargetDelay" // float
{
"type" "float"
"windows" "360"
"linux" "380"
"mac" "380"

View File

@ -21,6 +21,8 @@
{
"m_iStartDist" // int
{
"type" "integer"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_iEndDist" // int
{
"type" "integer"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_fDensity" // float
{
"type" "float"
"windows" "144"
"linux" "160"
"mac" "160"

View File

@ -21,6 +21,8 @@
{
"m_animate" // int
{
"type" "integer"
"windows" "384"
"linux" "404"
"mac" "404"

View File

@ -21,6 +21,8 @@
{
"m_animate" // int
{
"type" "integer"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_lastTime" // float
{
"type" "float"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_maxFrame" // float
{
"type" "float"
"windows" "144"
"linux" "160"
"mac" "160"
@ -42,6 +48,8 @@
"m_renderfx" // int
{
"type" "integer"
"windows" "148"
"linux" "164"
"mac" "164"
@ -49,6 +57,8 @@
"m_rendermode" // int
{
"type" "integer"
"windows" "152"
"linux" "168"
"mac" "168"
@ -56,6 +66,8 @@
"m_renderamt" // float
{
"type" "float"
"windows" "156"
"linux" "172"
"mac" "172"
@ -63,6 +75,9 @@
"m_rendercolor" // float[3]
{
"type" "float"
"size" "3"
"windows" "160"
"linux" "176"
"mac" "176"

View File

@ -21,6 +21,8 @@
{
"m_iPose" // int
{
"type" "integer"
"windows" "384"
"linux" "404"
"mac" "404"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,9 @@
"m_usFireDeagle" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "324"
"linux" "340"
"mac" "340"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,9 @@
"m_usFireELITE_LEFT" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "324"
"linux" "340"
"mac" "340"
@ -35,6 +40,9 @@
"m_usFireELITE_RIGHT" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "326"
"linux" "342"
"mac" "342"

View File

@ -21,6 +21,8 @@
{
"m_iMagnitude" // int
{
"type" "integer"
"windows" "384"
"linux" "404"
"mac" "404"
@ -28,6 +30,8 @@
"m_spriteScale" // int
{
"type" "integer"
"windows" "388"
"linux" "408"
"mac" "408"

View File

@ -21,6 +21,8 @@
{
"m_iSprite" // int
{
"type" "integer"
"windows" "144"
"linux" "160"
"mac" "160"

View File

@ -21,6 +21,8 @@
{
"m_globalstate" // string_t
{
"type" "stringint"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_triggermode" // int
{
"type" "integer"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_initialstate" // int
{
"type" "integer"
"windows" "144"
"linux" "160"
"mac" "160"

View File

@ -21,6 +21,8 @@
{
"m_flRadius" // float
{
"type" "float"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_flRoomtype" // float
{
"type" "float"
"windows" "140"
"linux" "156"
"mac" "156"

View File

@ -21,6 +21,8 @@
{
"m_flDelay" // float
{
"type" "float"
"windows" "136"
"linux" "152"
"mac" "152"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,8 @@
"iShellOn" // int
{
"type" "integer"
"windows" "324"
"linux" "340"
"mac" "340"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,9 @@
"m_usFireFiveSeven" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "324"
"linux" "340"
"mac" "340"

View File

@ -21,6 +21,8 @@
{
"m_frictionFraction" // float
{
"type" "float"
"windows" "136"
"linux" "152"
"mac" "152"

View File

@ -21,6 +21,8 @@
{
"m_iszXController" // int
{
"type" "integer"
"windows" "292"
"linux" "312"
"mac" "312"
@ -28,6 +30,8 @@
"m_iszYController" // int
{
"type" "integer"
"windows" "296"
"linux" "316"
"mac" "316"
@ -35,6 +39,8 @@
"m_flSpread" // float
{
"type" "float"
"windows" "300"
"linux" "320"
"mac" "320"
@ -42,6 +48,8 @@
"m_flDelay" // float
{
"type" "float"
"windows" "304"
"linux" "324"
"mac" "324"
@ -49,6 +57,8 @@
"m_iCount" // int
{
"type" "integer"
"windows" "308"
"linux" "328"
"mac" "328"
@ -56,6 +66,8 @@
"m_fControl" // int
{
"type" "integer"
"windows" "312"
"linux" "332"
"mac" "332"

View File

@ -21,6 +21,8 @@
{
"m_end" // Vector
{
"type" "vector"
"windows" "300"
"linux" "320"
"mac" "320"
@ -28,6 +30,8 @@
"m_start" // Vector
{
"type" "vector"
"windows" "312"
"linux" "332"
"mac" "332"

View File

@ -21,6 +21,8 @@
{
"m_flFanFriction" // float
{
"type" "float"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_flAttenuation" // float
{
"type" "float"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_flVolume" // float
{
"type" "float"
"windows" "144"
"linux" "160"
"mac" "160"
@ -42,6 +48,8 @@
"m_pitch" // float
{
"type" "float"
"windows" "148"
"linux" "164"
"mac" "164"
@ -49,6 +57,8 @@
"m_sounds" // int
{
"type" "integer"
"windows" "152"
"linux" "168"
"mac" "168"

View File

@ -21,6 +21,8 @@
{
"m_pController" // CBasePlayer*
{
"type" "classptr"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_flNextAttack" // float
{
"type" "float"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_vecControllerUsePos" // Vector
{
"type" "vector"
"windows" "144"
"linux" "160"
"mac" "160"
@ -42,6 +48,8 @@
"m_yawCenter" // float
{
"type" "float"
"windows" "156"
"linux" "172"
"mac" "172"
@ -49,6 +57,8 @@
"m_yawRate" // float
{
"type" "float"
"windows" "160"
"linux" "176"
"mac" "176"
@ -56,6 +66,8 @@
"m_yawRange" // float
{
"type" "float"
"windows" "164"
"linux" "180"
"mac" "180"
@ -63,6 +75,8 @@
"m_yawTolerance" // float
{
"type" "float"
"windows" "168"
"linux" "184"
"mac" "184"
@ -70,6 +84,8 @@
"m_pitchCenter" // float
{
"type" "float"
"windows" "172"
"linux" "188"
"mac" "188"
@ -77,6 +93,8 @@
"m_pitchRate" // float
{
"type" "float"
"windows" "176"
"linux" "192"
"mac" "192"
@ -84,6 +102,8 @@
"m_pitchRange" // float
{
"type" "float"
"windows" "180"
"linux" "196"
"mac" "196"
@ -91,6 +111,8 @@
"m_pitchTolerance" // float
{
"type" "float"
"windows" "184"
"linux" "200"
"mac" "200"
@ -98,6 +120,8 @@
"m_fireLast" // float
{
"type" "float"
"windows" "188"
"linux" "204"
"mac" "204"
@ -105,6 +129,8 @@
"m_fireRate" // float
{
"type" "float"
"windows" "192"
"linux" "208"
"mac" "208"
@ -112,6 +138,8 @@
"m_lastSightTime" // float
{
"type" "float"
"windows" "196"
"linux" "212"
"mac" "212"
@ -119,6 +147,8 @@
"m_persist" // float
{
"type" "float"
"windows" "200"
"linux" "216"
"mac" "216"
@ -126,6 +156,8 @@
"m_minRange" // float
{
"type" "float"
"windows" "204"
"linux" "220"
"mac" "220"
@ -133,6 +165,8 @@
"m_maxRange" // float
{
"type" "float"
"windows" "208"
"linux" "224"
"mac" "224"
@ -140,6 +174,8 @@
"m_barrelPos" // Vector
{
"type" "vector"
"windows" "212"
"linux" "228"
"mac" "228"
@ -147,6 +183,8 @@
"m_spriteScale" // float
{
"type" "float"
"windows" "224"
"linux" "240"
"mac" "240"
@ -154,6 +192,8 @@
"m_iszSpriteSmoke" // int
{
"type" "integer"
"windows" "228"
"linux" "244"
"mac" "244"
@ -161,6 +201,8 @@
"m_iszSpriteFlash" // int
{
"type" "integer"
"windows" "232"
"linux" "248"
"mac" "248"
@ -168,6 +210,8 @@
"m_bulletType" // enum TANKBULLET
{
"type" "integer"
"windows" "236"
"linux" "252"
"mac" "252"
@ -175,6 +219,8 @@
"m_iBulletDamage" // int
{
"type" "integer"
"windows" "240"
"linux" "256"
"mac" "256"
@ -182,6 +228,8 @@
"m_sightOrigin" // Vector
{
"type" "vector"
"windows" "244"
"linux" "260"
"mac" "260"
@ -189,6 +237,8 @@
"m_spread" // int
{
"type" "integer"
"windows" "256"
"linux" "272"
"mac" "272"
@ -196,6 +246,8 @@
"m_iszMaster" // int
{
"type" "integer"
"windows" "260"
"linux" "276"
"mac" "276"

View File

@ -21,6 +21,8 @@
{
"m_pTank" // CFuncTank*
{
"type" "classptr"
"windows" "136"
"linux" "152"
"mac" "152"

View File

@ -21,6 +21,8 @@
{
"m_pLaser" // CLaser*
{
"type" "classptr"
"windows" "264"
"linux" "280"
"mac" "280"
@ -28,6 +30,8 @@
"m_laserTime" // float
{
"type" "float"
"windows" "268"
"linux" "284"
"mac" "284"

View File

@ -21,6 +21,8 @@
{
"m_trackTop" // CPathTrack*
{
"type" "classptr"
"windows" "324"
"linux" "344"
"mac" "344"
@ -28,6 +30,8 @@
"m_trackBottom" // CPathTrack*
{
"type" "classptr"
"windows" "328"
"linux" "348"
"mac" "348"
@ -35,6 +39,8 @@
"m_train" // CFuncTrackTrain*
{
"type" "classptr"
"windows" "332"
"linux" "352"
"mac" "352"
@ -42,6 +48,8 @@
"m_trackTopName" // int
{
"type" "integer"
"windows" "336"
"linux" "356"
"mac" "356"
@ -49,6 +57,8 @@
"m_trackBottomName" // int
{
"type" "integer"
"windows" "340"
"linux" "360"
"mac" "360"
@ -56,6 +66,8 @@
"m_trainName" // int
{
"type" "integer"
"windows" "344"
"linux" "364"
"mac" "364"
@ -63,6 +75,8 @@
"m_code" // TRAIN_CODE
{
"type" "integer"
"windows" "348"
"linux" "368"
"mac" "368"
@ -70,6 +84,8 @@
"m_targetState" // int
{
"type" "integer"
"windows" "352"
"linux" "372"
"mac" "372"
@ -77,6 +93,8 @@
"m_use" // int
{
"type" "integer"
"windows" "356"
"linux" "376"
"mac" "376"

View File

@ -21,6 +21,8 @@
{
"m_ppath" // CPathTrack*
{
"type" "classptr"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_length" // float
{
"type" "float"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_height" // float
{
"type" "float"
"windows" "144"
"linux" "160"
"mac" "160"
@ -42,6 +48,8 @@
"m_speed" // float
{
"type" "float"
"windows" "148"
"linux" "164"
"mac" "164"
@ -49,6 +57,8 @@
"m_dir" // float
{
"type" "float"
"windows" "152"
"linux" "168"
"mac" "168"
@ -56,6 +66,8 @@
"m_startSpeed" // float
{
"type" "float"
"windows" "156"
"linux" "172"
"mac" "172"
@ -63,6 +75,8 @@
"m_controlMins" // Vector
{
"type" "vector"
"windows" "160"
"linux" "176"
"mac" "176"
@ -70,6 +84,8 @@
"m_controlMaxs" // Vector
{
"type" "vector"
"windows" "172"
"linux" "188"
"mac" "188"
@ -77,6 +93,8 @@
"m_soundPlaying" // int
{
"type" "integer"
"windows" "184"
"linux" "200"
"mac" "200"
@ -84,6 +102,8 @@
"m_sounds" // int
{
"type" "integer"
"windows" "188"
"linux" "204"
"mac" "204"
@ -91,6 +111,8 @@
"m_flVolume" // float
{
"type" "float"
"windows" "192"
"linux" "208"
"mac" "208"
@ -98,6 +120,8 @@
"m_flBank" // float
{
"type" "float"
"windows" "196"
"linux" "212"
"mac" "212"
@ -105,6 +129,8 @@
"m_oldSpeed" // float
{
"type" "float"
"windows" "200"
"linux" "216"
"mac" "216"
@ -112,6 +138,8 @@
"m_fTurnAngle" // float
{
"type" "float"
"windows" "204"
"linux" "220"
"mac" "220"
@ -119,6 +147,8 @@
"m_flSteeringWheelDecay" // float
{
"type" "float"
"windows" "208"
"linux" "224"
"mac" "224"
@ -126,6 +156,8 @@
"m_flAcceleratorDecay" // float
{
"type" "float"
"windows" "212"
"linux" "228"
"mac" "228"
@ -133,6 +165,9 @@
"m_usAdjustPitch" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "216"
"linux" "232"
"mac" "232"

View File

@ -21,6 +21,8 @@
{
"m_vStartPosition" // Vector
{
"type" "vector"
"windows" "300"
"linux" "320"
"mac" "320"
@ -28,6 +30,8 @@
"m_pevFirstTarget" // entvars_t*
{
"type" "entvars"
"windows" "312"
"linux" "332"
"mac" "332"
@ -35,6 +39,8 @@
"m_pevCurrentTarget" // entvars_t*
{
"type" "entvars"
"windows" "316"
"linux" "336"
"mac" "336"
@ -42,6 +48,8 @@
"m_sounds" // int
{
"type" "integer"
"windows" "320"
"linux" "340"
"mac" "340"
@ -49,6 +57,8 @@
"m_activated" // BOOL
{
"type" "integer"
"windows" "324"
"linux" "344"
"mac" "344"

View File

@ -21,6 +21,8 @@
{
"m_ppath" // CPathTrack*
{
"type" "classptr"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_length" // float
{
"type" "float"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_width" // float
{
"type" "float"
"windows" "144"
"linux" "160"
"mac" "160"
@ -42,6 +48,8 @@
"m_height" // float
{
"type" "float"
"windows" "148"
"linux" "164"
"mac" "164"
@ -49,6 +57,8 @@
"m_speed" // float
{
"type" "float"
"windows" "152"
"linux" "168"
"mac" "168"
@ -56,6 +66,8 @@
"m_dir" // float
{
"type" "float"
"windows" "156"
"linux" "172"
"mac" "172"
@ -63,6 +75,8 @@
"m_startSpeed" // float
{
"type" "float"
"windows" "160"
"linux" "176"
"mac" "176"
@ -70,6 +84,8 @@
"m_controlMins" // Vector
{
"type" "vector"
"windows" "164"
"linux" "180"
"mac" "180"
@ -77,6 +93,8 @@
"m_controlMaxs" // Vector
{
"type" "vector"
"windows" "176"
"linux" "192"
"mac" "192"
@ -84,6 +102,8 @@
"m_soundPlaying" // int
{
"type" "integer"
"windows" "188"
"linux" "204"
"mac" "204"
@ -91,6 +111,8 @@
"m_sounds" // int
{
"type" "integer"
"windows" "192"
"linux" "208"
"mac" "208"
@ -98,6 +120,8 @@
"m_acceleration" // int
{
"type" "integer"
"windows" "196"
"linux" "212"
"mac" "212"
@ -105,6 +129,8 @@
"m_flVolume" // float
{
"type" "float"
"windows" "200"
"linux" "216"
"mac" "216"
@ -112,6 +138,8 @@
"m_flBank" // float
{
"type" "float"
"windows" "204"
"linux" "220"
"mac" "220"
@ -119,6 +147,8 @@
"m_oldSpeed" // float
{
"type" "float"
"windows" "208"
"linux" "224"
"mac" "224"
@ -126,6 +156,8 @@
"m_iTurnAngle" // int
{
"type" "integer"
"windows" "212"
"linux" "228"
"mac" "228"
@ -133,6 +165,8 @@
"m_flSteeringWheelDecay" // float
{
"type" "float"
"windows" "216"
"linux" "232"
"mac" "232"
@ -140,6 +174,8 @@
"m_flAcceleratorDecay" // float
{
"type" "float"
"windows" "220"
"linux" "236"
"mac" "236"
@ -147,6 +183,8 @@
"m_flTurnStartTime" // float
{
"type" "float"
"windows" "224"
"linux" "240"
"mac" "240"
@ -154,6 +192,8 @@
"m_flLaunchTime" // float
{
"type" "float"
"windows" "228"
"linux" "244"
"mac" "244"
@ -161,6 +201,8 @@
"m_flLastNormalZ" // float
{
"type" "float"
"windows" "232"
"linux" "248"
"mac" "248"
@ -168,6 +210,8 @@
"m_flCanTurnNow" // float
{
"type" "float"
"windows" "236"
"linux" "252"
"mac" "252"
@ -175,6 +219,8 @@
"m_flUpdateSound" // float
{
"type" "float"
"windows" "240"
"linux" "256"
"mac" "256"
@ -182,6 +228,8 @@
"m_vFrontLeft" // Vector
{
"type" "vector"
"windows" "244"
"linux" "260"
"mac" "260"
@ -189,6 +237,8 @@
"m_vFront" // Vector
{
"type" "vector"
"windows" "256"
"linux" "272"
"mac" "272"
@ -196,6 +246,8 @@
"m_vFrontRight" // Vector
{
"type" "vector"
"windows" "268"
"linux" "284"
"mac" "284"
@ -203,6 +255,8 @@
"m_vBackLeft" // Vector
{
"type" "vector"
"windows" "280"
"linux" "296"
"mac" "296"
@ -210,6 +264,8 @@
"m_vBack" // Vector
{
"type" "vector"
"windows" "292"
"linux" "308"
"mac" "308"
@ -217,6 +273,8 @@
"m_vBackRight" // Vector
{
"type" "vector"
"windows" "304"
"linux" "320"
"mac" "320"
@ -224,6 +282,8 @@
"m_vSurfaceNormal" // Vector
{
"type" "vector"
"windows" "316"
"linux" "332"
"mac" "332"
@ -231,6 +291,8 @@
"m_vVehicleDirection" // Vector
{
"type" "vector"
"windows" "328"
"linux" "344"
"mac" "344"
@ -238,6 +300,8 @@
"m_pDriver" // CBasePlayer*
{
"type" "classptr"
"windows" "340"
"linux" "356"
"mac" "356"
@ -245,6 +309,9 @@
"m_usAdjustPitch" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "344"
"linux" "360"
"mac" "360"

View File

@ -21,6 +21,8 @@
{
"sTriggerWithItems" // string_t
{
"type" "stringint"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"sTriggerNoItems" // string_t
{
"type" "stringint"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"sMaster" // string_t
{
"type" "stringint"
"windows" "144"
"linux" "160"
"mac" "160"
@ -42,6 +48,10 @@
"sItemName" // unsigned int[32]
{
"type" "integer"
"size" "32"
"unsigned" "1"
"windows" "148"
"linux" "164"
"mac" "164"
@ -49,6 +59,8 @@
"iItemCount" // int
{
"type" "integer"
"windows" "276"
"linux" "292"
"mac" "292"
@ -56,6 +68,8 @@
"iAnyWeapon" // int
{
"type" "integer"
"windows" "280"
"linux" "296"
"mac" "296"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,9 @@
"m_usFireG3SG1" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "324"
"linux" "340"
"mac" "340"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,8 @@
"iShellOn" // int
{
"type" "integer"
"windows" "324"
"linux" "340"
"mac" "340"
@ -35,6 +39,9 @@
"m_usFireGalil" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "328"
"linux" "344"
"mac" "344"

View File

@ -21,6 +21,10 @@
{
"m_weaponNames" // unsigned int[32]
{
"type" "integer"
"size" "32"
"unsigned" "1"
"windows" "140"
"linux" "156"
"mac" "156"
@ -28,6 +32,9 @@
"m_weaponCount" // int[32]
{
"type" "integer"
"size" "32"
"windows" "268"
"linux" "284"
"mac" "284"

View File

@ -21,6 +21,8 @@
{
"m_iszInTarget" // string_t
{
"type" "stringint"
"windows" "140"
"linux" "156"
"mac" "156"
@ -28,6 +30,8 @@
"m_iszOutTarget" // string_t
{
"type" "stringint"
"windows" "144"
"linux" "160"
"mac" "160"
@ -35,6 +39,8 @@
"m_iszInCount" // string_t
{
"type" "stringint"
"windows" "148"
"linux" "164"
"mac" "164"
@ -42,6 +48,8 @@
"m_iszOutCount" // string_t
{
"type" "stringint"
"windows" "152"
"linux" "168"
"mac" "168"

View File

@ -21,6 +21,8 @@
{
"m_teamIndex" // int
{
"type" "integer"
"windows" "140"
"linux" "156"
"mac" "156"
@ -28,6 +30,8 @@
"triggerType" // USE_TYPE
{
"type" "integer"
"windows" "144"
"linux" "160"
"mac" "160"

View File

@ -21,6 +21,8 @@
{
"m_textParms" // hudtextparms_t
{
"type" "structure"
"windows" "140"
"linux" "156"
"mac" "156"

View File

@ -21,6 +21,8 @@
{
"m_bloodColor" // int
{
"type" "integer"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_cBloodDecals" // int
{
"type" "integer"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_material" // int
{
"type" "integer"
"windows" "144"
"linux" "160"
"mac" "160"
@ -42,6 +48,8 @@
"m_lifeTime" // float
{
"type" "float"
"windows" "148"
"linux" "164"
"mac" "164"

View File

@ -21,6 +21,8 @@
{
"m_iGibs" // int
{
"type" "integer"
"windows" "144"
"linux" "160"
"mac" "160"
@ -28,6 +30,8 @@
"m_iGibCapacity" // int
{
"type" "integer"
"windows" "148"
"linux" "164"
"mac" "164"
@ -35,6 +39,8 @@
"m_iGibMaterial" // int
{
"type" "integer"
"windows" "152"
"linux" "168"
"mac" "168"
@ -42,6 +48,8 @@
"m_iGibModelIndex" // int
{
"type" "integer"
"windows" "156"
"linux" "172"
"mac" "172"
@ -49,6 +57,8 @@
"m_flGibVelocity" // float
{
"type" "float"
"windows" "160"
"linux" "176"
"mac" "176"
@ -56,6 +66,8 @@
"m_flVariance" // float
{
"type" "float"
"windows" "164"
"linux" "180"
"mac" "180"
@ -63,6 +75,8 @@
"m_flGibLife" // float
{
"type" "float"
"windows" "168"
"linux" "184"
"mac" "184"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,8 @@
"m_bBurstFire" // bool
{
"type" "boolean"
"windows" "324"
"linux" "340"
"mac" "340"

View File

@ -21,6 +21,8 @@
{
"m_lastTime" // float
{
"type" "float"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_maxFrame" // float
{
"type" "float"
"windows" "140"
"linux" "156"
"mac" "156"

View File

@ -21,6 +21,8 @@
{
"m_bStartDefuse" // bool
{
"type" "boolean"
"windows" "384"
"linux" "404"
"mac" "404"
@ -28,6 +30,8 @@
"m_bIsC4" // bool
{
"type" "boolean"
"windows" "385"
"linux" "405"
"mac" "405"
@ -35,6 +39,8 @@
"m_pBombDefuser" // EHANDLE
{
"type" "ehandle"
"windows" "388"
"linux" "408"
"mac" "408"
@ -42,6 +48,8 @@
"m_flDefuseCountDown" // float
{
"type" "float"
"windows" "396"
"linux" "416"
"mac" "416"
@ -49,6 +57,8 @@
"m_flC4Blow" // float
{
"type" "float"
"windows" "400"
"linux" "420"
"mac" "420"
@ -56,6 +66,8 @@
"m_flNextFreqInterval" // float
{
"type" "float"
"windows" "404"
"linux" "424"
"mac" "424"
@ -63,6 +75,8 @@
"m_flNextBeep" // float
{
"type" "float"
"windows" "408"
"linux" "428"
"mac" "428"
@ -70,6 +84,8 @@
"m_flNextFreq" // float
{
"type" "float"
"windows" "412"
"linux" "432"
"mac" "432"
@ -77,6 +93,8 @@
"m_sBeepName" // char*
{
"type" "stringptr"
"windows" "416"
"linux" "436"
"mac" "436"
@ -84,6 +102,8 @@
"m_fAttenu" // float
{
"type" "float"
"windows" "420"
"linux" "440"
"mac" "440"
@ -91,6 +111,8 @@
"m_flNextBlink" // float
{
"type" "float"
"windows" "424"
"linux" "444"
"mac" "444"
@ -98,6 +120,8 @@
"m_fNextDefuse" // float
{
"type" "float"
"windows" "428"
"linux" "448"
"mac" "448"
@ -105,6 +129,8 @@
"m_bJustBlew" // bool
{
"type" "boolean"
"windows" "432"
"linux" "452"
"mac" "452"
@ -112,6 +138,8 @@
"m_iTeam" // int
{
"type" "integer"
"windows" "436"
"linux" "456"
"mac" "456"
@ -119,6 +147,8 @@
"m_iCurWave" // int
{
"type" "integer"
"windows" "440"
"linux" "460"
"mac" "460"
@ -126,6 +156,8 @@
"m_pentCurBombTarget" // edict_t*
{
"type" "edict"
"windows" "444"
"linux" "464"
"mac" "464"
@ -133,6 +165,8 @@
"m_SGSmoke" // int
{
"type" "integer"
"windows" "448"
"linux" "468"
"mac" "468"
@ -140,6 +174,8 @@
"m_angle" // int
{
"type" "integer"
"windows" "452"
"linux" "472"
"mac" "472"
@ -147,6 +183,9 @@
"m_usEvent" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "456"
"linux" "476"
"mac" "476"
@ -154,6 +193,8 @@
"m_bLightSmoke" // bool
{
"type" "boolean"
"windows" "458"
"linux" "478"
"mac" "478"
@ -161,6 +202,8 @@
"m_bDetonated" // bool
{
"type" "boolean"
"windows" "459"
"linux" "479"
"mac" "479"
@ -168,6 +211,8 @@
"m_vSmokeDetonate" // Vector
{
"type" "vector"
"windows" "460"
"linux" "480"
"mac" "480"
@ -175,6 +220,8 @@
"m_iBounceCount" // int
{
"type" "integer"
"windows" "472"
"linux" "492"
"mac" "492"
@ -182,6 +229,8 @@
"m_fRegisteredSound" // BOOL
{
"type" "integer"
"windows" "476"
"linux" "496"
"mac" "496"

View File

@ -21,6 +21,8 @@
{
"m_on" // BOOL
{
"type" "integer"
"windows" "384"
"linux" "404"
"mac" "404"

View File

@ -21,6 +21,9 @@
{
"m_usCreateExplosion" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "320"
"linux" "336"
"mac" "336"

View File

@ -21,6 +21,8 @@
{
"m_Activity" // int
{
"type" "integer"
"windows" "384"
"linux" "404"
"mac" "404"
@ -28,6 +30,8 @@
"m_bTouched" // BOOL
{
"type" "integer"
"windows" "388"
"linux" "408"
"mac" "408"
@ -35,6 +39,8 @@
"m_bRescueMe" // BOOL
{
"type" "integer"
"windows" "392"
"linux" "412"
"mac" "412"
@ -42,6 +48,8 @@
"m_flFlinchTime" // float
{
"type" "float"
"windows" "396"
"linux" "416"
"mac" "416"
@ -49,6 +57,8 @@
"m_flNextChange" // float
{
"type" "float"
"windows" "400"
"linux" "420"
"mac" "420"
@ -56,6 +66,8 @@
"m_flMarkPosition" // float
{
"type" "float"
"windows" "404"
"linux" "424"
"mac" "424"
@ -63,6 +75,8 @@
"m_iModel" // int
{
"type" "integer"
"windows" "408"
"linux" "428"
"mac" "428"
@ -70,6 +84,8 @@
"m_iSkin" // int
{
"type" "integer"
"windows" "412"
"linux" "432"
"mac" "432"
@ -77,6 +93,8 @@
"m_flNextRadarTime" // float
{
"type" "float"
"windows" "416"
"linux" "436"
"mac" "436"
@ -84,6 +102,8 @@
"m_State" // enum state
{
"type" "integer"
"windows" "420"
"linux" "440"
"mac" "440"
@ -91,6 +111,8 @@
"m_vStart" // Vector
{
"type" "vector"
"windows" "424"
"linux" "444"
"mac" "444"
@ -98,6 +120,8 @@
"m_vStartAngles" // Vector
{
"type" "vector"
"windows" "436"
"linux" "456"
"mac" "456"
@ -105,6 +129,9 @@
"m_vPathToFollow" // Vector[20]
{
"type" "vector"
"size" "20"
"windows" "448"
"linux" "468"
"mac" "468"
@ -112,6 +139,8 @@
"m_iWaypoint" // int
{
"type" "integer"
"windows" "688"
"linux" "708"
"mac" "708"
@ -119,13 +148,17 @@
"m_target" // CBasePlayer*
{
"type" "classptr"
"windows" "692"
"linux" "712"
"mac" "712"
}
"m_LocalNav" // CLocalNav*
"m_LocalNav" // class CLocalNav*
{
"type" "pointer"
"windows" "696"
"linux" "716"
"mac" "716"
@ -133,6 +166,8 @@
"nTargetNode" // int
{
"type" "integer"
"windows" "700"
"linux" "720"
"mac" "720"
@ -140,6 +175,9 @@
"vecNodes" // Vector[100]
{
"type" "vector"
"size" "100"
"windows" "704"
"linux" "724"
"mac" "724"
@ -147,6 +185,8 @@
"m_hStoppedTargetEnt" // EHANDLE
{
"type" "ehandle"
"windows" "1904"
"linux" "1924"
"mac" "1924"
@ -154,6 +194,8 @@
"m_flNextFullThink" // float
{
"type" "float"
"windows" "1912"
"linux" "1932"
"mac" "1932"
@ -161,6 +203,8 @@
"m_flPathCheckInterval" // float
{
"type" "float"
"windows" "1916"
"linux" "1936"
"mac" "1936"
@ -168,6 +212,8 @@
"m_flLastPathCheck" // float
{
"type" "float"
"windows" "1920"
"linux" "1940"
"mac" "1940"
@ -175,6 +221,8 @@
"m_nPathNodes" // int
{
"type" "integer"
"windows" "1924"
"linux" "1944"
"mac" "1944"
@ -182,6 +230,8 @@
"m_fHasPath" // BOOL
{
"type" "integer"
"windows" "1928"
"linux" "1948"
"mac" "1948"
@ -189,6 +239,8 @@
"m_flPathAcquired" // float
{
"type" "float"
"windows" "1932"
"linux" "1952"
"mac" "1952"
@ -196,6 +248,8 @@
"m_vOldPos" // Vector
{
"type" "vector"
"windows" "1936"
"linux" "1956"
"mac" "1956"
@ -203,6 +257,8 @@
"m_iHostageIndex" // int
{
"type" "integer"
"windows" "1948"
"linux" "1968"
"mac" "1968"
@ -210,6 +266,8 @@
"m_bStuck" // BOOL
{
"type" "integer"
"windows" "1952"
"linux" "1972"
"mac" "1972"
@ -217,13 +275,17 @@
"m_flStuckTime" // float
{
"type" "float"
"windows" "1956"
"linux" "1976"
"mac" "1976"
}
"m_improv" // CHostageImprov*
"m_improv" // class CHostageImprov*
{
"type" "pointer"
"windows" "1960"
"linux" "1980"
"mac" "1980"
@ -231,6 +293,8 @@
"m_whichModel" // enum ModelType
{
"type" "integer"
"windows" "1964"
"linux" "1984"
"mac" "1984"

View File

@ -21,6 +21,8 @@
{
"m_trHit" // TraceResult
{
"type" "structure"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,9 @@
"m_usKnife" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "376"
"linux" "392"
"mac" "392"

View File

@ -21,6 +21,8 @@
{
"m_pSprite" // CSprite*
{
"type" "classptr"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_iszSpriteName" // int
{
"type" "integer"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_firePosition" // Vector
{
"type" "vector"
"windows" "144"
"linux" "160"
"mac" "160"

View File

@ -21,6 +21,8 @@
{
"m_iStyle" // int
{
"type" "integer"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_iszPattern" // int
{
"type" "integer"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_iStartedOff" // int
{
"type" "integer"
"windows" "144"
"linux" "160"
"mac" "160"

View File

@ -21,6 +21,8 @@
{
"m_active" // int
{
"type" "integer"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_iszStartEntity" // int
{
"type" "integer"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_iszEndEntity" // int
{
"type" "integer"
"windows" "144"
"linux" "160"
"mac" "160"
@ -42,6 +48,8 @@
"m_life" // float
{
"type" "float"
"windows" "148"
"linux" "164"
"mac" "164"
@ -49,6 +57,8 @@
"m_boltWidth" // int
{
"type" "integer"
"windows" "152"
"linux" "168"
"mac" "168"
@ -56,6 +66,8 @@
"m_noiseAmplitude" // int
{
"type" "integer"
"windows" "156"
"linux" "172"
"mac" "172"
@ -63,6 +75,8 @@
"m_brightness" // int
{
"type" "integer"
"windows" "160"
"linux" "176"
"mac" "176"
@ -70,6 +84,8 @@
"m_speed" // int
{
"type" "integer"
"windows" "164"
"linux" "180"
"mac" "180"
@ -77,6 +93,8 @@
"m_restrike" // float
{
"type" "float"
"windows" "168"
"linux" "184"
"mac" "184"
@ -84,6 +102,8 @@
"m_spriteTexture" // int
{
"type" "integer"
"windows" "172"
"linux" "188"
"mac" "188"
@ -91,6 +111,8 @@
"m_iszSpriteName" // int
{
"type" "integer"
"windows" "176"
"linux" "192"
"mac" "192"
@ -98,6 +120,8 @@
"m_frameStart" // int
{
"type" "integer"
"windows" "180"
"linux" "196"
"mac" "196"
@ -105,6 +129,8 @@
"m_radius" // float
{
"type" "float"
"windows" "184"
"linux" "200"
"mac" "200"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,8 @@
"iShellOn" // int
{
"type" "integer"
"windows" "324"
"linux" "340"
"mac" "340"
@ -35,6 +39,9 @@
"m_usFireM249" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "328"
"linux" "344"
"mac" "344"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,8 @@
"m_flPumpTime" // float
{
"type" "float"
"windows" "324"
"linux" "340"
"mac" "340"
@ -35,6 +39,9 @@
"m_usFireM3" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "328"
"linux" "344"
"mac" "344"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,8 @@
"iShellOn" // int
{
"type" "integer"
"windows" "324"
"linux" "340"
"mac" "340"
@ -35,6 +39,9 @@
"m_usFireM4A1" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "328"
"linux" "344"
"mac" "344"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,8 @@
"iShellOn" // int
{
"type" "integer"
"windows" "324"
"linux" "340"
"mac" "340"
@ -35,6 +39,9 @@
"m_usFireMAC10" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "328"
"linux" "344"
"mac" "344"

View File

@ -21,6 +21,8 @@
{
"m_iBuyingStatus" // int
{
"type" "integer"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_flBombRadius" // float
{
"type" "float"
"windows" "140"
"linux" "156"
"mac" "156"

View File

@ -21,6 +21,9 @@
{
"m_bMoveSnd" // BYTE
{
"type" "character"
"unsigned" "1"
"windows" "292"
"linux" "312"
"mac" "312"

View File

@ -21,6 +21,8 @@
{
"m_lastUsed" // int
{
"type" "integer"
"windows" "292"
"linux" "312"
"mac" "312"
@ -28,6 +30,8 @@
"m_direction" // int
{
"type" "integer"
"windows" "296"
"linux" "316"
"mac" "316"
@ -35,6 +39,8 @@
"m_returnSpeed" // float
{
"type" "float"
"windows" "300"
"linux" "320"
"mac" "320"
@ -42,6 +48,8 @@
"m_start" // Vector
{
"type" "vector"
"windows" "304"
"linux" "324"
"mac" "324"
@ -49,6 +57,8 @@
"m_end" // Vector
{
"type" "vector"
"windows" "316"
"linux" "336"
"mac" "336"
@ -56,6 +66,8 @@
"m_sounds" // int
{
"type" "integer"
"windows" "328"
"linux" "348"
"mac" "348"

View File

@ -21,6 +21,8 @@
{
"m_spriteTexture" // int
{
"type" "integer"
"windows" "480"
"linux" "500"
"mac" "500"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,8 @@
"iShellOn" // int
{
"type" "integer"
"windows" "324"
"linux" "340"
"mac" "340"
@ -35,6 +39,9 @@
"m_usFireMP5N" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "328"
"linux" "344"
"mac" "344"

View File

@ -21,6 +21,8 @@
{
"m_cTargets" // int
{
"type" "integer"
"windows" "292"
"linux" "312"
"mac" "312"
@ -28,6 +30,8 @@
"m_index" // int
{
"type" "integer"
"windows" "296"
"linux" "316"
"mac" "316"
@ -35,6 +39,8 @@
"m_startTime" // float
{
"type" "float"
"windows" "300"
"linux" "320"
"mac" "320"
@ -42,6 +48,9 @@
"m_iTargetName" // int[16]
{
"type" "integer"
"size" "16"
"windows" "304"
"linux" "324"
"mac" "324"
@ -49,6 +58,9 @@
"m_flTargetDelay" // float[16]
{
"type" "float"
"size" "16"
"windows" "368"
"linux" "388"
"mac" "388"

View File

@ -21,6 +21,9 @@
{
"m_rgEntities" // EHANDLE[32]
{
"type" "ehandle"
"size" "32"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +31,9 @@
"m_rgTriggered" // int[32]
{
"type" "integer"
"size" "32"
"windows" "392"
"linux" "408"
"mac" "408"
@ -35,6 +41,8 @@
"m_iTotal" // int
{
"type" "integer"
"windows" "520"
"linux" "536"
"mac" "536"
@ -42,6 +50,8 @@
"m_globalstate" // string_t
{
"type" "stringint"
"windows" "524"
"linux" "540"
"mac" "540"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,9 @@
"m_usFireP228" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "324"
"linux" "340"
"mac" "340"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,8 @@
"iShellOn" // int
{
"type" "integer"
"windows" "324"
"linux" "340"
"mac" "340"
@ -35,6 +39,9 @@
"m_usFireP90" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "328"
"linux" "344"
"mac" "344"

View File

@ -21,6 +21,8 @@
{
"m_flWait" // float
{
"type" "float"
"windows" "136"
"linux" "152"
"mac" "152"

View File

@ -21,6 +21,8 @@
{
"m_length" // float
{
"type" "float"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_altName" // string_t
{
"type" "stringint"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_pnext" // CPathTrack*
{
"type" "classptr"
"windows" "144"
"linux" "160"
"mac" "160"
@ -42,6 +48,8 @@
"m_pprevious" // CPathTrack*
{
"type" "classptr"
"windows" "148"
"linux" "164"
"mac" "164"
@ -49,6 +57,8 @@
"m_paltpath" // CPathTrack*
{
"type" "classptr"
"windows" "152"
"linux" "168"
"mac" "168"

View File

@ -21,6 +21,8 @@
{
"m_accel" // float
{
"type" "float"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_distance" // float
{
"type" "float"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_time" // float
{
"type" "float"
"windows" "144"
"linux" "160"
"mac" "160"
@ -42,6 +48,8 @@
"m_damp" // float
{
"type" "float"
"windows" "148"
"linux" "164"
"mac" "164"
@ -49,6 +57,8 @@
"m_maxSpeed" // float
{
"type" "float"
"windows" "152"
"linux" "168"
"mac" "168"
@ -56,6 +66,8 @@
"m_dampSpeed" // float
{
"type" "float"
"windows" "156"
"linux" "172"
"mac" "172"
@ -63,6 +75,8 @@
"m_center" // Vector
{
"type" "vector"
"windows" "160"
"linux" "176"
"mac" "176"
@ -70,6 +84,8 @@
"m_start" // Vector
{
"type" "vector"
"windows" "172"
"linux" "188"
"mac" "188"

View File

@ -21,6 +21,8 @@
{
"m_pPlatform" // CFuncPlat*
{
"type" "classptr"
"windows" "136"
"linux" "152"
"mac" "152"

View File

@ -21,6 +21,8 @@
{
"m_lastSound" // int
{
"type" "integer"
"windows" "172"
"linux" "188"
"mac" "188"
@ -28,6 +30,8 @@
"m_maxSpeed" // float
{
"type" "float"
"windows" "176"
"linux" "192"
"mac" "192"
@ -35,6 +39,8 @@
"m_soundTime" // float
{
"type" "float"
"windows" "180"
"linux" "196"
"mac" "196"

View File

@ -21,6 +21,8 @@
{
"m_flNextCharge" // float
{
"type" "float"
"windows" "292"
"linux" "312"
"mac" "312"
@ -28,6 +30,8 @@
"m_iReactivate" // int
{
"type" "integer"
"windows" "296"
"linux" "316"
"mac" "316"
@ -35,6 +39,8 @@
"m_iJuice" // int
{
"type" "integer"
"windows" "300"
"linux" "320"
"mac" "320"
@ -42,6 +48,8 @@
"m_iOn" // int
{
"type" "integer"
"windows" "304"
"linux" "324"
"mac" "324"
@ -49,6 +57,8 @@
"m_flSoundTime" // float
{
"type" "float"
"windows" "308"
"linux" "328"
"mac" "328"

View File

@ -21,6 +21,8 @@
{
"m_messageTime" // float
{
"type" "float"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_loadTime" // float
{
"type" "float"
"windows" "140"
"linux" "156"
"mac" "156"

View File

@ -21,6 +21,8 @@
{
"m_iszMaster" // string_t
{
"type" "stringint"
"windows" "136"
"linux" "152"
"mac" "152"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,9 @@
"m_usFireScout" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "324"
"linux" "340"
"mac" "340"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,9 @@
"m_usFireSG550" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "324"
"linux" "340"
"mac" "340"

View File

@ -21,6 +21,8 @@
{
"m_iShell" // int
{
"type" "integer"
"windows" "320"
"linux" "336"
"mac" "336"
@ -28,6 +30,8 @@
"iShellOn" // int
{
"type" "integer"
"windows" "324"
"linux" "340"
"mac" "340"
@ -35,6 +39,9 @@
"m_usFireSG552" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "328"
"linux" "344"
"mac" "344"

View File

@ -21,6 +21,9 @@
{
"m_usCreateSmoke" // short unsigned int
{
"type" "short"
"unsigned" "1"
"windows" "320"
"linux" "336"
"mac" "336"

View File

@ -21,6 +21,8 @@
{
"m_iFreeSound" // int
{
"type" "integer"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_iActiveSound" // int
{
"type" "integer"
"windows" "140"
"linux" "156"
"mac" "156"
@ -35,6 +39,8 @@
"m_cLastActiveSounds" // int
{
"type" "integer"
"windows" "144"
"linux" "160"
"mac" "160"
@ -42,13 +48,18 @@
"m_fShowReport" // BOOL
{
"type" "integer"
"windows" "148"
"linux" "164"
"mac" "164"
}
"m_SoundPool" // CSound[64]
"m_SoundPool" // class CSound[64]
{
"type" "class"
"size" "64"
"windows" "152"
"linux" "168"
"mac" "168"

View File

@ -21,6 +21,8 @@
{
"m_preset" // int
{
"type" "integer"
"windows" "136"
"linux" "152"
"mac" "152"

View File

@ -21,6 +21,8 @@
{
"m_lastTime" // float
{
"type" "float"
"windows" "136"
"linux" "152"
"mac" "152"
@ -28,6 +30,8 @@
"m_maxFrame" // float
{
"type" "float"
"windows" "140"
"linux" "156"
"mac" "156"

Some files were not shown because too many files have changed in this diff Show More