xoreos  0.0.5
function_tables.h
Go to the documentation of this file.
1 /* xoreos - A reimplementation of BioWare's Aurora engine
2  *
3  * xoreos is the legal property of its developers, whose names
4  * can be found in the AUTHORS file distributed with this source
5  * distribution.
6  *
7  * xoreos is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 3
10  * of the License, or (at your option) any later version.
11  *
12  * xoreos is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with xoreos. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
25 /* The functions are defined by three tables:
26  * - kFunctionPointers
27  * - kFunctionSignatures
28  * - kFunctionDefaults
29  *
30  * kFunctionPointers provides the ID and name of the engine function, and a
31  * pointer to Functions method doing the actual work. If the function pointer
32  * is 0, a default unimplementedFunction method is used that just prints
33  * the name of the function when it's called.
34  *
35  * kFunctionSignatures defines the signature of the function, i.e. the types
36  * of the return value and its parameters.
37  *
38  * kFunctionDefaults pins default values to parameters. I.e. if a function
39  * Foobar(int mode, int doEverything=FALSE) is called with only one parameters,
40  * the default value FALSE is applied to the doEverything parameters. The
41  * kFunctionDefaults entry for the function then contains a reference to a
42  * false value. Because of ambiguities otherwise, the default values have to be
43  * "aligned" to the right; only the last-most n parameters are allowed to have
44  * default values, with no gaps.
45  *
46  * Please note that all three tables have to be of the same length, and that
47  * the order of the functions have to be the same in all three tables.
48  */
49 
50 #ifndef ENGINES_KOTOR_SCRIPT_FUNCTION_TABLES_H
51 #define ENGINES_KOTOR_SCRIPT_FUNCTION_TABLES_H
52 
55 
56 namespace Engines {
57 
58 namespace KotOR {
59 
69 
70 /* Default values as used by the function parameters, if no explicit value
71  * is given at the time of the calling.
72  */
73 
75 static KotOR::Object kDefaultValueObjectSelf (kObjectTypeSelf);
76 
82 
83 static const Aurora::NWScript::Variable kDefaultFloat0_0 ( 0.0f);
85 static const Aurora::NWScript::Variable kDefaultFloat1_0 ( 1.0f);
88 
89 static const Aurora::NWScript::Variable kDefaultVector0(0.0f, 0.0f, 0.0f);
90 
93 
94 static const Aurora::NWScript::Variable kDefaultObjectInvalid(&kDefaultValueObjectInvalid);
95 static const Aurora::NWScript::Variable kDefaultObjectSelf (&kDefaultValueObjectSelf);
96 
97 // TODO: Add the relevant enums to types.h, and use these values.
98 
117 
118 
121  { 0, "Random" , &Functions::random },
122  { 1, "PrintString" , &Functions::printString },
123  { 2, "PrintFloat" , &Functions::printFloat },
124  { 3, "FloatToString" , &Functions::floatToString },
125  { 4, "PrintInteger" , &Functions::printInteger },
126  { 5, "PrintObject" , &Functions::printObject },
127  { 6, "AssignCommand" , &Functions::assignCommand },
128  { 7, "DelayCommand" , &Functions::delayCommand },
129  { 8, "ExecuteScript" , 0 },
130  { 9, "ClearAllActions" , &Functions::clearAllActions },
131  { 10, "SetFacing" , 0 },
132  { 11, "SwitchPlayerCharacter" , 0 },
133  { 12, "SetTime" , 0 },
134  { 13, "SetPartyLeader" , 0 },
135  { 14, "SetAreaUnescapable" , 0 },
136  { 15, "GetAreaUnescapable" , 0 },
137  { 16, "GetTimeHour" , 0 },
138  { 17, "GetTimeMinute" , 0 },
139  { 18, "GetTimeSecond" , 0 },
140  { 19, "GetTimeMillisecond" , 0 },
141  { 20, "ActionRandomWalk" , 0 },
142  { 21, "ActionMoveToLocation" , 0 },
143  { 22, "ActionMoveToObject" , &Functions::actionMoveToObject },
144  { 23, "ActionMoveAwayFromObject" , 0 },
145  { 24, "GetArea" , &Functions::getArea },
146  { 25, "GetEnteringObject" , &Functions::getEnteringObject },
147  { 26, "GetExitingObject" , &Functions::getExitingObject },
148  { 27, "GetPosition" , 0 },
149  { 28, "GetFacing" , 0 },
150  { 29, "GetItemPossessor" , 0 },
151  { 30, "GetItemPossessedBy" , 0 },
152  { 31, "CreateItemOnObject" , &Functions::createItemOnObject },
153  { 32, "ActionEquipItem" , 0 },
154  { 33, "ActionUnequipItem" , 0 },
155  { 34, "ActionPickUpItem" , 0 },
156  { 35, "ActionPutDownItem" , 0 },
157  { 36, "GetLastAttacker" , 0 },
158  { 37, "ActionAttack" , 0 },
159  { 38, "GetNearestCreature" , 0 },
160  { 39, "ActionSpeakString" , 0 },
161  { 40, "ActionPlayAnimation" , 0 },
162  { 41, "GetDistanceToObject" , 0 },
163  { 42, "GetIsObjectValid" , &Functions::getIsObjectValid },
164  { 43, "ActionOpenDoor" , &Functions::actionOpenDoor },
165  { 44, "ActionCloseDoor" , &Functions::actionCloseDoor },
166  { 45, "SetCameraFacing" , 0 },
167  { 46, "PlaySound" , 0 },
168  { 47, "GetSpellTargetObject" , 0 },
169  { 48, "ActionCastSpellAtObject" , 0 },
170  { 49, "GetCurrentHitPoints" , &Functions::getCurrentHitPoints },
171  { 50, "GetMaxHitPoints" , &Functions::getMaxHitPoints },
172  { 51, "EffectAssuredHit" , 0 },
173  { 52, "GetLastItemEquipped" , 0 },
174  { 53, "GetSubScreenID" , 0 },
175  { 54, "CancelCombat" , 0 },
176  { 55, "GetCurrentForcePoints" , 0 },
177  { 56, "GetMaxForcePoints" , 0 },
178  { 57, "PauseGame" , 0 },
179  { 58, "SetPlayerRestrictMode" , 0 },
180  { 59, "GetStringLength" , &Functions::getStringLength },
181  { 60, "GetStringUpperCase" , &Functions::getStringUpperCase },
182  { 61, "GetStringLowerCase" , &Functions::getStringLowerCase },
183  { 62, "GetStringRight" , &Functions::getStringRight },
184  { 63, "GetStringLeft" , &Functions::getStringLeft },
185  { 64, "InsertString" , &Functions::insertString },
186  { 65, "GetSubString" , &Functions::getSubString },
187  { 66, "FindSubString" , &Functions::findSubString },
188  { 67, "fabs" , &Functions::fabs },
189  { 68, "cos" , &Functions::cos },
190  { 69, "sin" , &Functions::sin },
191  { 70, "tan" , &Functions::tan },
192  { 71, "acos" , &Functions::acos },
193  { 72, "asin" , &Functions::asin },
194  { 73, "atan" , &Functions::atan },
195  { 74, "log" , &Functions::log },
196  { 75, "pow" , &Functions::pow },
197  { 76, "sqrt" , &Functions::sqrt },
198  { 77, "abs" , &Functions::abs },
199  { 78, "EffectHeal" , 0 },
200  { 79, "EffectDamage" , 0 },
201  { 80, "EffectAbilityIncrease" , 0 },
202  { 81, "EffectDamageResistance" , 0 },
203  { 82, "EffectResurrection" , 0 },
204  { 83, "GetPlayerRestrictMode" , 0 },
205  { 84, "GetCasterLevel" , 0 },
206  { 85, "GetFirstEffect" , 0 },
207  { 86, "GetNextEffect" , 0 },
208  { 87, "RemoveEffect" , 0 },
209  { 88, "GetIsEffectValid" , 0 },
210  { 89, "GetEffectDurationType" , 0 },
211  { 90, "GetEffectSubType" , 0 },
212  { 91, "GetEffectCreator" , 0 },
213  { 92, "IntToString" , &Functions::intToString },
214  { 93, "GetFirstObjectInArea" , 0 },
215  { 94, "GetNextObjectInArea" , 0 },
216  { 95, "d2" , &Functions::d2 },
217  { 96, "d3" , &Functions::d3 },
218  { 97, "d4" , &Functions::d4 },
219  { 98, "d6" , &Functions::d6 },
220  { 99, "d8" , &Functions::d8 },
221  { 100, "d10" , &Functions::d10 },
222  { 101, "d12" , &Functions::d12 },
223  { 102, "d20" , &Functions::d20 },
224  { 103, "d100" , &Functions::d100 },
225  { 104, "VectorMagnitude" , &Functions::vectorMagnitude },
226  { 105, "GetMetaMagicFeat" , 0 },
227  { 106, "GetObjectType" , 0 },
228  { 107, "GetRacialType" , &Functions::getRacialType },
229  { 108, "FortitudeSave" , 0 },
230  { 109, "ReflexSave" , 0 },
231  { 110, "WillSave" , 0 },
232  { 111, "GetSpellSaveDC" , 0 },
233  { 112, "MagicalEffect" , 0 },
234  { 113, "SupernaturalEffect" , 0 },
235  { 114, "ExtraordinaryEffect" , 0 },
236  { 115, "EffectACIncrease" , 0 },
237  { 116, "GetAC" , 0 },
238  { 117, "EffectSavingThrowIncrease" , 0 },
239  { 118, "EffectAttackIncrease" , 0 },
240  { 119, "EffectDamageReduction" , 0 },
241  { 120, "EffectDamageIncrease" , 0 },
242  { 121, "RoundsToSeconds" , 0 },
243  { 122, "HoursToSeconds" , 0 },
244  { 123, "TurnsToSeconds" , 0 },
245  { 124, "SoundObjectSetFixedVariance" , 0 },
246  { 125, "GetGoodEvilValue" , 0 },
247  { 126, "GetPartyMemberCount" , 0 },
248  { 127, "GetAlignmentGoodEvil" , 0 },
249  { 128, "GetFirstObjectInShape" , 0 },
250  { 129, "GetNextObjectInShape" , 0 },
251  { 130, "EffectEntangle" , 0 },
252  { 131, "SignalEvent" , &Functions::signalEvent },
253  { 132, "EventUserDefined" , &Functions::eventUserDefined },
254  { 133, "EffectDeath" , 0 },
255  { 134, "EffectKnockdown" , 0 },
256  { 135, "ActionGiveItem" , 0 },
257  { 136, "ActionTakeItem" , 0 },
258  { 137, "VectorNormalize" , &Functions::vectorNormalize },
259  { 138, "GetItemStackSize" , 0 },
260  { 139, "GetAbilityScore" , 0 },
261  { 140, "GetIsDead" , 0 },
262  { 141, "PrintVector" , &Functions::printVector },
263  { 142, "Vector" , &Functions::vector },
264  { 143, "SetFacingPoint" , 0 },
265  { 144, "AngleToVector" , 0 },
266  { 145, "VectorToAngle" , 0 },
267  { 146, "TouchAttackMelee" , 0 },
268  { 147, "TouchAttackRanged" , 0 },
269  { 148, "EffectParalyze" , 0 },
270  { 149, "EffectSpellImmunity" , 0 },
271  { 150, "SetItemStackSize" , 0 },
272  { 151, "GetDistanceBetween" , 0 },
273  { 152, "SetReturnStrref" , &Functions::setReturnStrref },
274  { 153, "EffectForceJump" , 0 },
275  { 154, "EffectSleep" , 0 },
276  { 155, "GetItemInSlot" , &Functions::getItemInSlot },
277  { 156, "EffectTemporaryForcePoints" , 0 },
278  { 157, "EffectConfused" , 0 },
279  { 158, "EffectFrightened" , 0 },
280  { 159, "EffectChoke" , 0 },
281  { 160, "SetGlobalString" , 0 },
282  { 161, "EffectStunned" , 0 },
283  { 162, "SetCommandable" , 0 },
284  { 163, "GetCommandable" , 0 },
285  { 164, "EffectRegenerate" , 0 },
286  { 165, "EffectMovementSpeedIncrease" , 0 },
287  { 166, "GetHitDice" , 0 },
288  { 167, "ActionForceFollowObject" , 0 },
289  { 168, "GetTag" , 0 },
290  { 169, "ResistForce" , 0 },
291  { 170, "GetEffectType" , 0 },
292  { 171, "EffectAreaOfEffect" , 0 },
293  { 172, "GetFactionEqual" , 0 },
294  { 173, "ChangeFaction" , 0 },
295  { 174, "GetIsListening" , 0 },
296  { 175, "SetListening" , 0 },
297  { 176, "SetListenPattern" , 0 },
298  { 177, "TestStringAgainstPattern" , 0 },
299  { 178, "GetMatchedSubstring" , 0 },
300  { 179, "GetMatchedSubstringsCount" , 0 },
301  { 180, "EffectVisualEffect" , 0 },
302  { 181, "GetFactionWeakestMember" , 0 },
303  { 182, "GetFactionStrongestMember" , 0 },
304  { 183, "GetFactionMostDamagedMember" , 0 },
305  { 184, "GetFactionLeastDamagedMember" , 0 },
306  { 185, "GetFactionGold" , 0 },
307  { 186, "GetFactionAverageReputation" , 0 },
308  { 187, "GetFactionAverageGoodEvilAlignment" , 0 },
309  { 188, "SoundObjectGetFixedVariance" , 0 },
310  { 189, "GetFactionAverageLevel" , 0 },
311  { 190, "GetFactionAverageXP" , 0 },
312  { 191, "GetFactionMostFrequentClass" , 0 },
313  { 192, "GetFactionWorstAC" , 0 },
314  { 193, "GetFactionBestAC" , 0 },
315  { 194, "GetGlobalString" , 0 },
316  { 195, "GetListenPatternNumber" , 0 },
317  { 196, "ActionJumpToObject" , 0 },
318  { 197, "GetWaypointByTag" , 0 },
319  { 198, "GetTransitionTarget" , 0 },
320  { 199, "EffectLinkEffects" , 0 },
321  { 200, "GetObjectByTag" , &Functions::getObjectByTag },
322  { 201, "AdjustAlignment" , 0 },
323  { 202, "ActionWait" , 0 },
324  { 203, "SetAreaTransitionBMP" , 0 },
325  { 204, "ActionStartConversation" , &Functions::actionStartConversation },
326  { 205, "ActionPauseConversation" , 0 },
327  { 206, "ActionResumeConversation" , 0 },
328  { 207, "EffectBeam" , 0 },
329  { 208, "GetReputation" , 0 },
330  { 209, "AdjustReputation" , 0 },
331  { 210, "GetModuleFileName" , 0 },
332  { 211, "GetGoingToBeAttackedBy" , 0 },
333  { 212, "EffectForceResistanceIncrease" , 0 },
334  { 213, "GetLocation" , 0 },
335  { 214, "ActionJumpToLocation" , 0 },
336  { 215, "Location" , 0 },
337  { 216, "ApplyEffectAtLocation" , 0 },
338  { 217, "GetIsPC" , &Functions::getIsPC },
339  { 218, "FeetToMeters" , 0 },
340  { 219, "YardsToMeters" , 0 },
341  { 220, "ApplyEffectToObject" , 0 },
342  { 221, "SpeakString" , 0 },
343  { 222, "GetSpellTargetLocation" , 0 },
344  { 223, "GetPositionFromLocation" , 0 },
345  { 224, "EffectBodyFuel" , 0 },
346  { 225, "GetFacingFromLocation" , 0 },
347  { 226, "GetNearestCreatureToLocation" , 0 },
348  { 227, "GetNearestObject" , 0 },
349  { 228, "GetNearestObjectToLocation" , 0 },
350  { 229, "GetNearestObjectByTag" , 0 },
351  { 230, "IntToFloat" , &Functions::intToFloat },
352  { 231, "FloatToInt" , &Functions::floatToInt },
353  { 232, "StringToInt" , &Functions::stringToInt },
354  { 233, "StringToFloat" , &Functions::stringToFloat },
355  { 234, "ActionCastSpellAtLocation" , 0 },
356  { 235, "GetIsEnemy" , 0 },
357  { 236, "GetIsFriend" , 0 },
358  { 237, "GetIsNeutral" , 0 },
359  { 238, "GetPCSpeaker" , &Functions::getPCSpeaker },
360  { 239, "GetStringByStrRef" , &Functions::getStringByStrRef },
361  { 240, "ActionSpeakStringByStrRef" , 0 },
362  { 241, "DestroyObject" , &Functions::destroyObject },
363  { 242, "GetModule" , &Functions::getModule },
364  { 243, "CreateObject" , 0 },
365  { 244, "EventSpellCastAt" , 0 },
366  { 245, "GetLastSpellCaster" , 0 },
367  { 246, "GetLastSpell" , 0 },
368  { 247, "GetUserDefinedEventNumber" , &Functions::getUserDefinedEventNumber },
369  { 248, "GetSpellId" , 0 },
370  { 249, "RandomName" , 0 },
371  { 250, "EffectPoison" , 0 },
372  { 251, "GetLoadFromSaveGame" , 0 },
373  { 252, "EffectAssuredDeflection" , 0 },
374  { 253, "GetName" , 0 },
375  { 254, "GetLastSpeaker" , 0 },
376  { 255, "BeginConversation" , 0 },
377  { 256, "GetLastPerceived" , 0 },
378  { 257, "GetLastPerceptionHeard" , 0 },
379  { 258, "GetLastPerceptionInaudible" , 0 },
380  { 259, "GetLastPerceptionSeen" , 0 },
381  { 260, "GetLastClosedBy" , &Functions::getLastClosedBy },
382  { 261, "GetLastPerceptionVanished" , 0 },
383  { 262, "GetFirstInPersistentObject" , 0 },
384  { 263, "GetNextInPersistentObject" , 0 },
385  { 264, "GetAreaOfEffectCreator" , 0 },
386  { 265, "ShowLevelUpGUI" , 0 },
387  { 266, "SetItemNonEquippable" , 0 },
388  { 267, "GetButtonMashCheck" , 0 },
389  { 268, "SetButtonMashCheck" , 0 },
390  { 269, "EffectForcePushTargeted" , 0 },
391  { 270, "EffectHaste" , 0 },
392  { 271, "GiveItem" , 0 },
393  { 272, "ObjectToString" , &Functions::objectToString },
394  { 273, "EffectImmunity" , 0 },
395  { 274, "GetIsImmune" , 0 },
396  { 275, "EffectDamageImmunityIncrease" , 0 },
397  { 276, "GetEncounterActive" , 0 },
398  { 277, "SetEncounterActive" , 0 },
399  { 278, "GetEncounterSpawnsMax" , 0 },
400  { 279, "SetEncounterSpawnsMax" , 0 },
401  { 280, "GetEncounterSpawnsCurrent" , 0 },
402  { 281, "SetEncounterSpawnsCurrent" , 0 },
403  { 282, "GetModuleItemAcquired" , 0 },
404  { 283, "GetModuleItemAcquiredFrom" , 0 },
405  { 284, "SetCustomToken" , 0 },
406  { 285, "GetHasFeat" , 0 },
407  { 286, "GetHasSkill" , 0 },
408  { 287, "ActionUseFeat" , 0 },
409  { 288, "ActionUseSkill" , 0 },
410  { 289, "GetObjectSeen" , 0 },
411  { 290, "GetObjectHeard" , 0 },
412  { 291, "GetLastPlayerDied" , 0 },
413  { 292, "GetModuleItemLost" , 0 },
414  { 293, "GetModuleItemLostBy" , 0 },
415  { 294, "ActionDoCommand" , 0 },
416  { 295, "EventConversation" , 0 },
417  { 296, "SetEncounterDifficulty" , 0 },
418  { 297, "GetEncounterDifficulty" , 0 },
419  { 298, "GetDistanceBetweenLocations" , 0 },
420  { 299, "GetReflexAdjustedDamage" , 0 },
421  { 300, "PlayAnimation" , 0 },
422  { 301, "TalentSpell" , 0 },
423  { 302, "TalentFeat" , 0 },
424  { 303, "TalentSkill" , 0 },
425  { 304, "GetHasSpellEffect" , 0 },
426  { 305, "GetEffectSpellId" , 0 },
427  { 306, "GetCreatureHasTalent" , 0 },
428  { 307, "GetCreatureTalentRandom" , 0 },
429  { 308, "GetCreatureTalentBest" , 0 },
430  { 309, "ActionUseTalentOnObject" , 0 },
431  { 310, "ActionUseTalentAtLocation" , 0 },
432  { 311, "GetGoldPieceValue" , 0 },
433  { 312, "GetIsPlayableRacialType" , 0 },
434  { 313, "JumpToLocation" , 0 },
435  { 314, "EffectTemporaryHitpoints" , 0 },
436  { 315, "GetSkillRank" , 0 },
437  { 316, "GetAttackTarget" , 0 },
438  { 317, "GetLastAttackType" , 0 },
439  { 318, "GetLastAttackMode" , 0 },
440  { 319, "GetDistanceBetween2D" , 0 },
441  { 320, "GetIsInCombat" , 0 },
442  { 321, "GetLastAssociateCommand" , 0 },
443  { 322, "GiveGoldToCreature" , 0 },
444  { 323, "SetIsDestroyable" , 0 },
445  { 324, "SetLocked" , &Functions::setLocked },
446  { 325, "GetLocked" , &Functions::getLocked },
447  { 326, "GetClickingObject" , &Functions::getClickingObject },
448  { 327, "SetAssociateListenPatterns" , 0 },
449  { 328, "GetLastWeaponUsed" , 0 },
450  { 329, "ActionInteractObject" , 0 },
451  { 330, "GetLastUsedBy" , &Functions::getLastUsedBy },
452  { 331, "GetAbilityModifier" , 0 },
453  { 332, "GetIdentified" , 0 },
454  { 333, "SetIdentified" , 0 },
455  { 334, "GetDistanceBetweenLocations2D" , 0 },
456  { 335, "GetDistanceToObject2D" , 0 },
457  { 336, "GetBlockingDoor" , 0 },
458  { 337, "GetIsDoorActionPossible" , 0 },
459  { 338, "DoDoorAction" , 0 },
460  { 339, "GetFirstItemInInventory" , 0 },
461  { 340, "GetNextItemInInventory" , 0 },
462  { 341, "GetClassByPosition" , &Functions::getClassByPosition },
463  { 342, "GetLevelByPosition" , &Functions::getLevelByPosition },
464  { 343, "GetLevelByClass" , &Functions::getLevelByClass },
465  { 344, "GetDamageDealtByType" , 0 },
466  { 345, "GetTotalDamageDealt" , 0 },
467  { 346, "GetLastDamager" , 0 },
468  { 347, "GetLastDisarmed" , 0 },
469  { 348, "GetLastDisturbed" , 0 },
470  { 349, "GetLastLocked" , 0 },
471  { 350, "GetLastUnlocked" , 0 },
472  { 351, "EffectSkillIncrease" , 0 },
473  { 352, "GetInventoryDisturbType" , 0 },
474  { 353, "GetInventoryDisturbItem" , 0 },
475  { 354, "ShowUpgradeScreen" , 0 },
476  { 355, "VersusAlignmentEffect" , 0 },
477  { 356, "VersusRacialTypeEffect" , 0 },
478  { 357, "VersusTrapEffect" , 0 },
479  { 358, "GetGender" , &Functions::getGender },
480  { 359, "GetIsTalentValid" , 0 },
481  { 360, "ActionMoveAwayFromLocation" , 0 },
482  { 361, "GetAttemptedAttackTarget" , 0 },
483  { 362, "GetTypeFromTalent" , 0 },
484  { 363, "GetIdFromTalent" , 0 },
485  { 364, "PlayPazaak" , 0 },
486  { 365, "GetLastPazaakResult" , 0 },
487  { 366, "DisplayFeedBackText" , 0 },
488  { 367, "AddJournalQuestEntry" , 0 },
489  { 368, "RemoveJournalQuestEntry" , 0 },
490  { 369, "GetJournalEntry" , 0 },
491  { 370, "PlayRumblePattern" , 0 },
492  { 371, "StopRumblePattern" , 0 },
493  { 372, "EffectDamageForcePoints" , 0 },
494  { 373, "EffectHealForcePoints" , 0 },
495  { 374, "SendMessageToPC" , &Functions::sendMessageToPC },
496  { 375, "GetAttemptedSpellTarget" , 0 },
497  { 376, "GetLastOpenedBy" , &Functions::getLastOpenedBy },
498  { 377, "GetHasSpell" , 0 },
499  { 378, "OpenStore" , 0 },
500  { 379, "ActionSurrenderToEnemies" , 0 },
501  { 380, "GetFirstFactionMember" , 0 },
502  { 381, "GetNextFactionMember" , 0 },
503  { 382, "ActionForceMoveToLocation" , 0 },
504  { 383, "ActionForceMoveToObject" , 0 },
505  { 384, "GetJournalQuestExperience" , 0 },
506  { 385, "JumpToObject" , 0 },
507  { 386, "SetMapPinEnabled" , 0 },
508  { 387, "EffectHitPointChangeWhenDying" , 0 },
509  { 388, "PopUpGUIPanel" , 0 },
510  { 389, "AddMultiClass" , 0 },
511  { 390, "GetIsLinkImmune" , 0 },
512  { 391, "EffectDroidStun" , 0 },
513  { 392, "EffectForcePushed" , 0 },
514  { 393, "GiveXPToCreature" , 0 },
515  { 394, "SetXP" , 0 },
516  { 395, "GetXP" , 0 },
517  { 396, "IntToHexString" , &Functions::intToHexString },
518  { 397, "GetBaseItemType" , 0 },
519  { 398, "GetItemHasItemProperty" , 0 },
520  { 399, "ActionEquipMostDamagingMelee" , 0 },
521  { 400, "ActionEquipMostDamagingRanged" , 0 },
522  { 401, "GetItemACValue" , 0 },
523  { 402, "EffectForceResisted" , 0 },
524  { 403, "ExploreAreaForPlayer" , 0 },
525  { 404, "ActionEquipMostEffectiveArmor" , 0 },
526  { 405, "GetIsDay" , 0 },
527  { 406, "GetIsNight" , 0 },
528  { 407, "GetIsDawn" , 0 },
529  { 408, "GetIsDusk" , 0 },
530  { 409, "GetIsEncounterCreature" , 0 },
531  { 410, "GetLastPlayerDying" , 0 },
532  { 411, "GetStartingLocation" , 0 },
533  { 412, "ChangeToStandardFaction" , 0 },
534  { 413, "SoundObjectPlay" , &Functions::soundObjectPlay },
535  { 414, "SoundObjectStop" , &Functions::soundObjectStop },
536  { 415, "SoundObjectSetVolume" , 0 },
537  { 416, "SoundObjectSetPosition" , 0 },
538  { 417, "SpeakOneLinerConversation" , 0 },
539  { 418, "GetGold" , 0 },
540  { 419, "GetLastRespawnButtonPresser" , 0 },
541  { 420, "EffectForceFizzle" , 0 },
542  { 421, "SetLightsaberPowered" , 0 },
543  { 422, "GetIsWeaponEffective" , 0 },
544  { 423, "GetLastSpellHarmful" , 0 },
545  { 424, "EventActivateItem" , 0 },
546  { 425, "MusicBackgroundPlay" , &Functions::musicBackgroundPlay },
547  { 426, "MusicBackgroundStop" , &Functions::musicBackgroundStop },
548  { 427, "MusicBackgroundSetDelay" , 0 },
549  { 428, "MusicBackgroundChangeDay" , &Functions::musicBackgroundChangeDay },
550  { 429, "MusicBackgroundChangeNight" , &Functions::musicBackgroundChangeNight },
551  { 430, "MusicBattlePlay" , 0 },
552  { 431, "MusicBattleStop" , 0 },
553  { 432, "MusicBattleChange" , 0 },
554  { 433, "AmbientSoundPlay" , 0 },
555  { 434, "AmbientSoundStop" , 0 },
556  { 435, "AmbientSoundChangeDay" , 0 },
557  { 436, "AmbientSoundChangeNight" , 0 },
558  { 437, "GetLastKiller" , 0 },
559  { 438, "GetSpellCastItem" , 0 },
560  { 439, "GetItemActivated" , 0 },
561  { 440, "GetItemActivator" , 0 },
562  { 441, "GetItemActivatedTargetLocation" , 0 },
563  { 442, "GetItemActivatedTarget" , 0 },
564  { 443, "GetIsOpen" , &Functions::getIsOpen },
565  { 444, "TakeGoldFromCreature" , 0 },
566  { 445, "GetIsInConversation" , 0 },
567  { 446, "EffectAbilityDecrease" , 0 },
568  { 447, "EffectAttackDecrease" , 0 },
569  { 448, "EffectDamageDecrease" , 0 },
570  { 449, "EffectDamageImmunityDecrease" , 0 },
571  { 450, "EffectACDecrease" , 0 },
572  { 451, "EffectMovementSpeedDecrease" , 0 },
573  { 452, "EffectSavingThrowDecrease" , 0 },
574  { 453, "EffectSkillDecrease" , 0 },
575  { 454, "EffectForceResistanceDecrease" , 0 },
576  { 455, "GetPlotFlag" , 0 },
577  { 456, "SetPlotFlag" , 0 },
578  { 457, "EffectInvisibility" , 0 },
579  { 458, "EffectConcealment" , 0 },
580  { 459, "EffectForceShield" , 0 },
581  { 460, "EffectDispelMagicAll" , 0 },
582  { 461, "SetDialogPlaceableCamera" , 0 },
583  { 462, "GetSoloMode" , 0 },
584  { 463, "EffectDisguise" , 0 },
585  { 464, "GetMaxStealthXP" , 0 },
586  { 465, "EffectTrueSeeing" , 0 },
587  { 466, "EffectSeeInvisible" , 0 },
588  { 467, "EffectTimeStop" , 0 },
589  { 468, "SetMaxStealthXP" , 0 },
590  { 469, "EffectBlasterDeflectionIncrease" , 0 },
591  { 470, "EffectBlasterDeflectionDecrease" , 0 },
592  { 471, "EffectHorrified" , 0 },
593  { 472, "EffectSpellLevelAbsorption" , 0 },
594  { 473, "EffectDispelMagicBest" , 0 },
595  { 474, "GetCurrentStealthXP" , 0 },
596  { 475, "GetNumStackedItems" , 0 },
597  { 476, "SurrenderToEnemies" , 0 },
598  { 477, "EffectMissChance" , 0 },
599  { 478, "SetCurrentStealthXP" , 0 },
600  { 479, "GetCreatureSize" , 0 },
601  { 480, "AwardStealthXP" , 0 },
602  { 481, "GetStealthXPEnabled" , 0 },
603  { 482, "SetStealthXPEnabled" , 0 },
604  { 483, "ActionUnlockObject" , 0 },
605  { 484, "ActionLockObject" , 0 },
606  { 485, "EffectModifyAttacks" , 0 },
607  { 486, "GetLastTrapDetected" , 0 },
608  { 487, "EffectDamageShield" , 0 },
609  { 488, "GetNearestTrapToObject" , 0 },
610  { 489, "GetAttemptedMovementTarget" , 0 },
611  { 490, "GetBlockingCreature" , 0 },
612  { 491, "GetFortitudeSavingThrow" , 0 },
613  { 492, "GetWillSavingThrow" , 0 },
614  { 493, "GetReflexSavingThrow" , 0 },
615  { 494, "GetChallengeRating" , 0 },
616  { 495, "GetFoundEnemyCreature" , 0 },
617  { 496, "GetMovementRate" , 0 },
618  { 497, "GetSubRace" , &Functions::getSubRace },
619  { 498, "GetStealthXPDecrement" , 0 },
620  { 499, "SetStealthXPDecrement" , 0 },
621  { 500, "DuplicateHeadAppearance" , 0 },
622  { 501, "ActionCastFakeSpellAtObject" , 0 },
623  { 502, "ActionCastFakeSpellAtLocation" , 0 },
624  { 503, "CutsceneAttack" , 0 },
625  { 504, "SetCameraMode" , 0 },
626  { 505, "SetLockOrientationInDialog" , 0 },
627  { 506, "SetLockHeadFollowInDialog" , 0 },
628  { 507, "CutsceneMove" , 0 },
629  { 508, "EnableVideoEffect" , 0 },
630  { 509, "StartNewModule" , 0 },
631  { 510, "DisableVideoEffect" , 0 },
632  { 511, "GetWeaponRanged" , 0 },
633  { 512, "DoSinglePlayerAutoSave" , 0 },
634  { 513, "GetGameDifficulty" , 0 },
635  { 514, "GetUserActionsPending" , 0 },
636  { 515, "RevealMap" , 0 },
637  { 516, "SetTutorialWindowsEnabled" , 0 },
638  { 517, "ShowTutorialWindow" , 0 },
639  { 518, "StartCreditSequence" , 0 },
640  { 519, "IsCreditSequenceInProgress" , 0 },
641  { 520, "SWMG_SetLateralAccelerationPerSecond", 0 },
642  { 521, "SWMG_GetLateralAccelerationPerSecond", 0 },
643  { 522, "GetCurrentAction" , 0 },
644  { 523, "GetDifficultyModifier" , 0 },
645  { 524, "GetAppearanceType" , 0 },
646  { 525, "FloatingTextStrRefOnCreature" , 0 },
647  { 526, "FloatingTextStringOnCreature" , 0 },
648  { 527, "GetTrapDisarmable" , 0 },
649  { 528, "GetTrapDetectable" , 0 },
650  { 529, "GetTrapDetectedBy" , 0 },
651  { 530, "GetTrapFlagged" , 0 },
652  { 531, "GetTrapBaseType" , 0 },
653  { 532, "GetTrapOneShot" , 0 },
654  { 533, "GetTrapCreator" , 0 },
655  { 534, "GetTrapKeyTag" , 0 },
656  { 535, "GetTrapDisarmDC" , 0 },
657  { 536, "GetTrapDetectDC" , 0 },
658  { 537, "GetLockKeyRequired" , 0 },
659  { 538, "GetLockKeyTag" , 0 },
660  { 539, "GetLockLockable" , 0 },
661  { 540, "GetLockUnlockDC" , 0 },
662  { 541, "GetLockLockDC" , 0 },
663  { 542, "GetPCLevellingUp" , 0 },
664  { 543, "GetHasFeatEffect" , 0 },
665  { 544, "SetPlaceableIllumination" , 0 },
666  { 545, "GetPlaceableIllumination" , 0 },
667  { 546, "GetIsPlaceableObjectActionPossible" , 0 },
668  { 547, "DoPlaceableObjectAction" , 0 },
669  { 548, "GetFirstPC" , &Functions::getFirstPC },
670  { 549, "GetNextPC" , &Functions::getNextPC },
671  { 550, "SetTrapDetectedBy" , 0 },
672  { 551, "GetIsTrapped" , 0 },
673  { 552, "SetEffectIcon" , 0 },
674  { 553, "FaceObjectAwayFromObject" , 0 },
675  { 554, "PopUpDeathGUIPanel" , 0 },
676  { 555, "SetTrapDisabled" , 0 },
677  { 556, "GetLastHostileActor" , 0 },
678  { 557, "ExportAllCharacters" , 0 },
679  { 558, "MusicBackgroundGetDayTrack" , &Functions::musicBackgroundGetDayTrack },
680  { 559, "MusicBackgroundGetNightTrack" , &Functions::musicBackgroundGetNightTrack },
681  { 560, "WriteTimestampedLogEntry" , &Functions::writeTimestampedLogEntry },
682  { 561, "GetModuleName" , 0 },
683  { 562, "GetFactionLeader" , 0 },
684  { 563, "SWMG_SetSpeedBlurEffect" , 0 },
685  { 564, "EndGame" , 0 },
686  { 565, "GetRunScriptVar" , 0 },
687  { 566, "GetCreatureMovmentType" , 0 },
688  { 567, "AmbientSoundSetDayVolume" , 0 },
689  { 568, "AmbientSoundSetNightVolume" , 0 },
690  { 569, "MusicBackgroundGetBattleTrack" , 0 },
691  { 570, "GetHasInventory" , 0 },
692  { 571, "GetStrRefSoundDuration" , 0 },
693  { 572, "AddToParty" , 0 },
694  { 573, "RemoveFromParty" , 0 },
695  { 574, "AddPartyMember" , 0 },
696  { 575, "RemovePartyMember" , 0 },
697  { 576, "IsObjectPartyMember" , &Functions::isObjectPartyMember },
698  { 577, "GetPartyMemberByIndex" , &Functions::getPartyMemberByIndex },
699  { 578, "GetGlobalBoolean" , &Functions::getGlobalBoolean },
700  { 579, "SetGlobalBoolean" , &Functions::setGlobalBoolean },
701  { 580, "GetGlobalNumber" , &Functions::getGlobalNumber },
702  { 581, "SetGlobalNumber" , &Functions::setGlobalNumber },
703  { 582, "AurPostString" , 0 },
704  { 583, "SWMG_GetLastEvent" , 0 },
705  { 584, "SWMG_GetLastEventModelName" , 0 },
706  { 585, "SWMG_GetObjectByName" , 0 },
707  { 586, "SWMG_PlayAnimation" , 0 },
708  { 587, "SWMG_GetLastBulletHitDamage" , 0 },
709  { 588, "SWMG_GetLastBulletHitTarget" , 0 },
710  { 589, "SWMG_GetLastBulletHitShooter" , 0 },
711  { 590, "SWMG_AdjustFollowerHitPoints" , 0 },
712  { 591, "SWMG_OnBulletHit" , 0 },
713  { 592, "SWMG_OnObstacleHit" , 0 },
714  { 593, "SWMG_GetLastFollowerHit" , 0 },
715  { 594, "SWMG_GetLastObstacleHit" , 0 },
716  { 595, "SWMG_GetLastBulletFiredDamage" , 0 },
717  { 596, "SWMG_GetLastBulletFiredTarget" , 0 },
718  { 597, "SWMG_GetObjectName" , 0 },
719  { 598, "SWMG_OnDeath" , 0 },
720  { 599, "SWMG_IsFollower" , 0 },
721  { 600, "SWMG_IsPlayer" , 0 },
722  { 601, "SWMG_IsEnemy" , 0 },
723  { 602, "SWMG_IsTrigger" , 0 },
724  { 603, "SWMG_IsObstacle" , 0 },
725  { 604, "SWMG_SetFollowerHitPoints" , 0 },
726  { 605, "SWMG_OnDamage" , 0 },
727  { 606, "SWMG_GetLastHPChange" , 0 },
728  { 607, "SWMG_RemoveAnimation" , 0 },
729  { 608, "SWMG_GetCameraNearClip" , 0 },
730  { 609, "SWMG_GetCameraFarClip" , 0 },
731  { 610, "SWMG_SetCameraClip" , 0 },
732  { 611, "SWMG_GetPlayer" , 0 },
733  { 612, "SWMG_GetEnemyCount" , 0 },
734  { 613, "SWMG_GetEnemy" , 0 },
735  { 614, "SWMG_GetObstacleCount" , 0 },
736  { 615, "SWMG_GetObstacle" , 0 },
737  { 616, "SWMG_GetHitPoints" , 0 },
738  { 617, "SWMG_GetMaxHitPoints" , 0 },
739  { 618, "SWMG_SetMaxHitPoints" , 0 },
740  { 619, "SWMG_GetSphereRadius" , 0 },
741  { 620, "SWMG_SetSphereRadius" , 0 },
742  { 621, "SWMG_GetNumLoops" , 0 },
743  { 622, "SWMG_SetNumLoops" , 0 },
744  { 623, "SWMG_GetPosition" , 0 },
745  { 624, "SWMG_GetGunBankCount" , 0 },
746  { 625, "SWMG_GetGunBankBulletModel" , 0 },
747  { 626, "SWMG_GetGunBankGunModel" , 0 },
748  { 627, "SWMG_GetGunBankDamage" , 0 },
749  { 628, "SWMG_GetGunBankTimeBetweenShots" , 0 },
750  { 629, "SWMG_GetGunBankLifespan" , 0 },
751  { 630, "SWMG_GetGunBankSpeed" , 0 },
752  { 631, "SWMG_GetGunBankTarget" , 0 },
753  { 632, "SWMG_SetGunBankBulletModel" , 0 },
754  { 633, "SWMG_SetGunBankGunModel" , 0 },
755  { 634, "SWMG_SetGunBankDamage" , 0 },
756  { 635, "SWMG_SetGunBankTimeBetweenShots" , 0 },
757  { 636, "SWMG_SetGunBankLifespan" , 0 },
758  { 637, "SWMG_SetGunBankSpeed" , 0 },
759  { 638, "SWMG_SetGunBankTarget" , 0 },
760  { 639, "SWMG_GetLastBulletHitPart" , 0 },
761  { 640, "SWMG_IsGunBankTargetting" , 0 },
762  { 641, "SWMG_GetPlayerOffset" , 0 },
763  { 642, "SWMG_GetPlayerInvincibility" , 0 },
764  { 643, "SWMG_GetPlayerSpeed" , 0 },
765  { 644, "SWMG_GetPlayerMinSpeed" , 0 },
766  { 645, "SWMG_GetPlayerAccelerationPerSecond" , 0 },
767  { 646, "SWMG_GetPlayerTunnelPos" , 0 },
768  { 647, "SWMG_SetPlayerOffset" , 0 },
769  { 648, "SWMG_SetPlayerInvincibility" , 0 },
770  { 649, "SWMG_SetPlayerSpeed" , 0 },
771  { 650, "SWMG_SetPlayerMinSpeed" , 0 },
772  { 651, "SWMG_SetPlayerAccelerationPerSecond" , 0 },
773  { 652, "SWMG_SetPlayerTunnelPos" , 0 },
774  { 653, "SWMG_GetPlayerTunnelNeg" , 0 },
775  { 654, "SWMG_SetPlayerTunnelNeg" , 0 },
776  { 655, "SWMG_GetPlayerOrigin" , 0 },
777  { 656, "SWMG_SetPlayerOrigin" , 0 },
778  { 657, "SWMG_GetGunBankHorizontalSpread" , 0 },
779  { 658, "SWMG_GetGunBankVerticalSpread" , 0 },
780  { 659, "SWMG_GetGunBankSensingRadius" , 0 },
781  { 660, "SWMG_GetGunBankInaccuracy" , 0 },
782  { 661, "SWMG_SetGunBankHorizontalSpread" , 0 },
783  { 662, "SWMG_SetGunBankVerticalSpread" , 0 },
784  { 663, "SWMG_SetGunBankSensingRadius" , 0 },
785  { 664, "SWMG_SetGunBankInaccuracy" , 0 },
786  { 665, "SWMG_GetIsInvulnerable" , 0 },
787  { 666, "SWMG_StartInvulnerability" , 0 },
788  { 667, "SWMG_GetPlayerMaxSpeed" , 0 },
789  { 668, "SWMG_SetPlayerMaxSpeed" , 0 },
790  { 669, "AddJournalWorldEntry" , 0 },
791  { 670, "AddJournalWorldEntryStrref" , 0 },
792  { 671, "BarkString" , 0 },
793  { 672, "DeleteJournalWorldAllEntries" , 0 },
794  { 673, "DeleteJournalWorldEntry" , 0 },
795  { 674, "DeleteJournalWorldEntryStrref" , 0 },
796  { 675, "EffectForceDrain" , 0 },
797  { 676, "EffectPsychicStatic" , 0 },
798  { 677, "PlayVisualAreaEffect" , 0 },
799  { 678, "SetJournalQuestEntryPicture" , 0 },
800  { 679, "GetLocalBoolean" , &Functions::getLocalBoolean },
801  { 680, "SetLocalBoolean" , &Functions::setLocalBoolean },
802  { 681, "GetLocalNumber" , &Functions::getLocalNumber },
803  { 682, "SetLocalNumber" , &Functions::setLocalNumber },
804  { 683, "SWMG_GetSoundFrequency" , 0 },
805  { 684, "SWMG_SetSoundFrequency" , 0 },
806  { 685, "SWMG_GetSoundFrequencyIsRandom" , 0 },
807  { 686, "SWMG_SetSoundFrequencyIsRandom" , 0 },
808  { 687, "SWMG_GetSoundVolume" , 0 },
809  { 688, "SWMG_SetSoundVolume" , 0 },
810  { 689, "SoundObjectGetPitchVariance" , 0 },
811  { 690, "SoundObjectSetPitchVariance" , 0 },
812  { 691, "SoundObjectGetVolume" , 0 },
813  { 692, "GetGlobalLocation" , 0 },
814  { 693, "SetGlobalLocation" , 0 },
815  { 694, "AddAvailableNPCByObject" , 0 },
816  { 695, "RemoveAvailableNPC" , 0 },
817  { 696, "IsAvailableCreature" , &Functions::isAvailableCreature },
818  { 697, "AddAvailableNPCByTemplate" , &Functions::addAvailableNPCByTemplate },
819  { 698, "SpawnAvailableNPC" , 0 },
820  { 699, "IsNPCPartyMember" , 0 },
821  { 700, "ActionBarkString" , 0 },
822  { 701, "GetIsConversationActive" , 0 },
823  { 702, "EffectLightsaberThrow" , 0 },
824  { 703, "EffectWhirlWind" , 0 },
825  { 704, "GetPartyAIStyle" , 0 },
826  { 705, "GetNPCAIStyle" , 0 },
827  { 706, "SetPartyAIStyle" , 0 },
828  { 707, "SetNPCAIStyle" , 0 },
829  { 708, "SetNPCSelectability" , 0 },
830  { 709, "GetNPCSelectability" , 0 },
831  { 710, "ClearAllEffects" , 0 },
832  { 711, "GetLastConversation" , 0 },
833  { 712, "ShowPartySelectionGUI" , &Functions::showPartySelectionGUI },
834  { 713, "GetStandardFaction" , 0 },
835  { 714, "GivePlotXP" , 0 },
836  { 715, "GetMinOneHP" , &Functions::getMinOneHP },
837  { 716, "SetMinOneHP" , &Functions::setMinOneHP },
838  { 717, "SWMG_GetPlayerTunnelInfinite" , 0 },
839  { 718, "SWMG_SetPlayerTunnelInfinite" , 0 },
840  { 719, "SetGlobalFadeIn" , &Functions::setGlobalFadeIn },
841  { 720, "SetGlobalFadeOut" , &Functions::setGlobalFadeOut },
842  { 721, "GetLastHostileTarget" , 0 },
843  { 722, "GetLastAttackAction" , 0 },
844  { 723, "GetLastForcePowerUsed" , 0 },
845  { 724, "GetLastCombatFeatUsed" , 0 },
846  { 725, "GetLastAttackResult" , 0 },
847  { 726, "GetWasForcePowerSuccessful" , 0 },
848  { 727, "GetFirstAttacker" , 0 },
849  { 728, "GetNextAttacker" , 0 },
850  { 729, "SetFormation" , 0 },
851  { 730, "ActionFollowLeader" , 0 },
852  { 731, "SetForcePowerUnsuccessful" , 0 },
853  { 732, "GetIsDebilitated" , 0 },
854  { 733, "PlayMovie" , &Functions::playMovie },
855  { 734, "SaveNPCState" , 0 },
856  { 735, "GetCategoryFromTalent" , 0 },
857  { 736, "SurrenderByFaction" , 0 },
858  { 737, "ChangeFactionByFaction" , 0 },
859  { 738, "PlayRoomAnimation" , 0 },
860  { 739, "ShowGalaxyMap" , 0 },
861  { 740, "SetPlanetSelectable" , 0 },
862  { 741, "GetPlanetSelectable" , 0 },
863  { 742, "SetPlanetAvailable" , 0 },
864  { 743, "GetPlanetAvailable" , 0 },
865  { 744, "GetSelectedPlanet" , 0 },
866  { 745, "SoundObjectFadeAndStop" , 0 },
867  { 746, "SetAreaFogColor" , 0 },
868  { 747, "ChangeItemCost" , 0 },
869  { 748, "GetIsLiveContentAvailable" , 0 },
870  { 749, "ResetDialogState" , 0 },
871  { 750, "SetGoodEvilValue" , 0 },
872  { 751, "GetIsPoisoned" , 0 },
873  { 752, "GetSpellTarget" , 0 },
874  { 753, "SetSoloMode" , 0 },
875  { 754, "EffectCutSceneHorrified" , 0 },
876  { 755, "EffectCutSceneParalyze" , 0 },
877  { 756, "EffectCutSceneStunned" , 0 },
878  { 757, "CancelPostDialogCharacterSwitch" , 0 },
879  { 758, "SetMaxHitPoints" , &Functions::setMaxHitPoints },
880  { 759, "NoClicksFor" , 0 },
881  { 760, "HoldWorldFadeInForDialog" , 0 },
882  { 761, "ShipBuild" , 0 },
883  { 762, "SurrenderRetainBuffs" , 0 },
884  { 763, "SuppressStatusSummaryEntry" , 0 },
885  { 764, "GetCheatCode" , 0 },
886  { 765, "SetMusicVolume" , 0 },
887  { 766, "CreateItemOnFloor" , 0 },
888  { 767, "SetAvailableNPCId" , 0 },
889  { 768, "IsMoviePlaying" , 0 },
890  { 769, "QueueMovie" , 0 },
891  { 770, "PlayMovieQueue" , 0 },
892  { 771, "YavinHackCloseDoor" , 0 }
893 };
894 
896 const Functions::FunctionSignature Functions::kFunctionSignatures[] = {
897  { 0, kTypeInt , { kTypeInt } },
898  { 1, kTypeVoid , { kTypeString } },
899  { 2, kTypeVoid , { kTypeFloat, kTypeInt, kTypeInt } },
900  { 3, kTypeString , { kTypeFloat, kTypeInt, kTypeInt } },
901  { 4, kTypeVoid , { kTypeInt } },
902  { 5, kTypeVoid , { kTypeObject } },
903  { 6, kTypeVoid , { kTypeObject, kTypeScriptState } },
904  { 7, kTypeVoid , { kTypeFloat, kTypeScriptState } },
905  { 8, kTypeVoid , { kTypeString, kTypeObject, kTypeInt } },
906  { 9, kTypeVoid , { } },
907  { 10, kTypeVoid , { kTypeFloat } },
908  { 11, kTypeInt , { kTypeInt } },
909  { 12, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt, kTypeInt } },
910  { 13, kTypeInt , { kTypeInt } },
911  { 14, kTypeVoid , { kTypeInt } },
912  { 15, kTypeInt , { } },
913  { 16, kTypeInt , { } },
914  { 17, kTypeInt , { } },
915  { 18, kTypeInt , { } },
916  { 19, kTypeInt , { } },
917  { 20, kTypeVoid , { } },
918  { 21, kTypeVoid , { kTypeEngineType, kTypeInt } },
919  { 22, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
920  { 23, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
921  { 24, kTypeObject , { kTypeObject } },
922  { 25, kTypeObject , { } },
923  { 26, kTypeObject , { } },
924  { 27, kTypeVector , { kTypeObject } },
925  { 28, kTypeFloat , { kTypeObject } },
926  { 29, kTypeObject , { kTypeObject } },
927  { 30, kTypeObject , { kTypeObject, kTypeString } },
929  { 32, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
930  { 33, kTypeVoid , { kTypeObject, kTypeInt } },
931  { 34, kTypeVoid , { kTypeObject } },
932  { 35, kTypeVoid , { kTypeObject } },
933  { 36, kTypeObject , { kTypeObject } },
934  { 37, kTypeVoid , { kTypeObject, kTypeInt } },
936  { 39, kTypeVoid , { kTypeString, kTypeInt } },
937  { 40, kTypeVoid , { kTypeInt, kTypeFloat, kTypeFloat } },
938  { 41, kTypeFloat , { kTypeObject } },
939  { 42, kTypeInt , { kTypeObject } },
940  { 43, kTypeVoid , { kTypeObject } },
941  { 44, kTypeVoid , { kTypeObject } },
942  { 45, kTypeVoid , { kTypeFloat } },
943  { 46, kTypeVoid , { kTypeString } },
944  { 47, kTypeObject , { } },
946  { 49, kTypeInt , { kTypeObject } },
947  { 50, kTypeInt , { kTypeObject } },
948  { 51, kTypeEngineType, { } },
949  { 52, kTypeObject , { } },
950  { 53, kTypeInt , { } },
951  { 54, kTypeVoid , { kTypeObject } },
952  { 55, kTypeInt , { kTypeObject } },
953  { 56, kTypeInt , { kTypeObject } },
954  { 57, kTypeVoid , { kTypeInt } },
955  { 58, kTypeVoid , { kTypeInt } },
956  { 59, kTypeInt , { kTypeString } },
957  { 60, kTypeString , { kTypeString } },
958  { 61, kTypeString , { kTypeString } },
959  { 62, kTypeString , { kTypeString, kTypeInt } },
960  { 63, kTypeString , { kTypeString, kTypeInt } },
962  { 65, kTypeString , { kTypeString, kTypeInt, kTypeInt } },
963  { 66, kTypeInt , { kTypeString, kTypeString } },
964  { 67, kTypeFloat , { kTypeFloat } },
965  { 68, kTypeFloat , { kTypeFloat } },
966  { 69, kTypeFloat , { kTypeFloat } },
967  { 70, kTypeFloat , { kTypeFloat } },
968  { 71, kTypeFloat , { kTypeFloat } },
969  { 72, kTypeFloat , { kTypeFloat } },
970  { 73, kTypeFloat , { kTypeFloat } },
971  { 74, kTypeFloat , { kTypeFloat } },
972  { 75, kTypeFloat , { kTypeFloat, kTypeFloat } },
973  { 76, kTypeFloat , { kTypeFloat } },
974  { 77, kTypeInt , { kTypeInt } },
975  { 78, kTypeEngineType, { kTypeInt } },
976  { 79, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
977  { 80, kTypeEngineType, { kTypeInt, kTypeInt } },
978  { 81, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
979  { 82, kTypeEngineType, { } },
980  { 83, kTypeInt , { kTypeObject } },
981  { 84, kTypeInt , { kTypeObject } },
982  { 85, kTypeEngineType, { kTypeObject } },
983  { 86, kTypeEngineType, { kTypeObject } },
984  { 87, kTypeVoid , { kTypeObject, kTypeEngineType } },
985  { 88, kTypeInt , { kTypeEngineType } },
986  { 89, kTypeInt , { kTypeEngineType } },
987  { 90, kTypeInt , { kTypeEngineType } },
988  { 91, kTypeObject , { kTypeEngineType } },
989  { 92, kTypeString , { kTypeInt } },
990  { 93, kTypeObject , { kTypeObject, kTypeInt } },
991  { 94, kTypeObject , { kTypeObject, kTypeInt } },
992  { 95, kTypeInt , { kTypeInt } },
993  { 96, kTypeInt , { kTypeInt } },
994  { 97, kTypeInt , { kTypeInt } },
995  { 98, kTypeInt , { kTypeInt } },
996  { 99, kTypeInt , { kTypeInt } },
997  { 100, kTypeInt , { kTypeInt } },
998  { 101, kTypeInt , { kTypeInt } },
999  { 102, kTypeInt , { kTypeInt } },
1000  { 103, kTypeInt , { kTypeInt } },
1001  { 104, kTypeFloat , { kTypeVector } },
1002  { 105, kTypeInt , { } },
1003  { 106, kTypeInt , { kTypeObject } },
1004  { 107, kTypeInt , { kTypeObject } },
1005  { 108, kTypeInt , { kTypeObject, kTypeInt, kTypeInt, kTypeObject } },
1006  { 109, kTypeInt , { kTypeObject, kTypeInt, kTypeInt, kTypeObject } },
1007  { 110, kTypeInt , { kTypeObject, kTypeInt, kTypeInt, kTypeObject } },
1008  { 111, kTypeInt , { } },
1009  { 112, kTypeEngineType, { kTypeEngineType } },
1010  { 113, kTypeEngineType, { kTypeEngineType } },
1011  { 114, kTypeEngineType, { kTypeEngineType } },
1012  { 115, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1013  { 116, kTypeInt , { kTypeObject, kTypeInt } },
1014  { 117, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1015  { 118, kTypeEngineType, { kTypeInt, kTypeInt } },
1016  { 119, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1017  { 120, kTypeEngineType, { kTypeInt, kTypeInt } },
1018  { 121, kTypeFloat , { kTypeInt } },
1019  { 122, kTypeFloat , { kTypeInt } },
1020  { 123, kTypeFloat , { kTypeInt } },
1021  { 124, kTypeVoid , { kTypeObject, kTypeFloat } },
1022  { 125, kTypeInt , { kTypeObject } },
1023  { 126, kTypeInt , { } },
1024  { 127, kTypeInt , { kTypeObject } },
1027  { 130, kTypeEngineType, { } },
1028  { 131, kTypeVoid , { kTypeObject, kTypeEngineType } },
1029  { 132, kTypeEngineType, { kTypeInt } },
1030  { 133, kTypeEngineType, { kTypeInt, kTypeInt } },
1031  { 134, kTypeEngineType, { } },
1032  { 135, kTypeVoid , { kTypeObject, kTypeObject } },
1033  { 136, kTypeVoid , { kTypeObject, kTypeObject } },
1034  { 137, kTypeVector , { kTypeVector } },
1035  { 138, kTypeInt , { kTypeObject } },
1036  { 139, kTypeInt , { kTypeObject, kTypeInt } },
1037  { 140, kTypeInt , { kTypeObject } },
1038  { 141, kTypeVoid , { kTypeVector, kTypeInt } },
1039  { 142, kTypeVector , { kTypeFloat, kTypeFloat, kTypeFloat } },
1040  { 143, kTypeVoid , { kTypeVector } },
1041  { 144, kTypeVector , { kTypeFloat } },
1042  { 145, kTypeFloat , { kTypeVector } },
1043  { 146, kTypeInt , { kTypeObject, kTypeInt } },
1044  { 147, kTypeInt , { kTypeObject, kTypeInt } },
1045  { 148, kTypeEngineType, { } },
1046  { 149, kTypeEngineType, { kTypeInt } },
1047  { 150, kTypeVoid , { kTypeObject, kTypeInt } },
1048  { 151, kTypeFloat , { kTypeObject, kTypeObject } },
1049  { 152, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt } },
1050  { 153, kTypeEngineType, { kTypeObject, kTypeInt } },
1051  { 154, kTypeEngineType, { } },
1052  { 155, kTypeObject , { kTypeInt, kTypeObject } },
1053  { 156, kTypeEngineType, { kTypeInt } },
1054  { 157, kTypeEngineType, { } },
1055  { 158, kTypeEngineType, { } },
1056  { 159, kTypeEngineType, { } },
1057  { 160, kTypeVoid , { kTypeString, kTypeString } },
1058  { 161, kTypeEngineType, { } },
1059  { 162, kTypeVoid , { kTypeInt, kTypeObject } },
1060  { 163, kTypeInt , { kTypeObject } },
1061  { 164, kTypeEngineType, { kTypeInt, kTypeFloat } },
1062  { 165, kTypeEngineType, { kTypeInt } },
1063  { 166, kTypeInt , { kTypeObject } },
1064  { 167, kTypeVoid , { kTypeObject, kTypeFloat } },
1065  { 168, kTypeString , { kTypeObject } },
1066  { 169, kTypeInt , { kTypeObject, kTypeObject } },
1067  { 170, kTypeInt , { kTypeEngineType } },
1069  { 172, kTypeInt , { kTypeObject, kTypeObject } },
1070  { 173, kTypeVoid , { kTypeObject, kTypeObject } },
1071  { 174, kTypeInt , { kTypeObject } },
1072  { 175, kTypeVoid , { kTypeObject, kTypeInt } },
1073  { 176, kTypeVoid , { kTypeObject, kTypeString, kTypeInt } },
1074  { 177, kTypeInt , { kTypeString, kTypeString } },
1075  { 178, kTypeString , { kTypeInt } },
1076  { 179, kTypeInt , { } },
1077  { 180, kTypeEngineType, { kTypeInt, kTypeInt } },
1078  { 181, kTypeObject , { kTypeObject, kTypeInt } },
1079  { 182, kTypeObject , { kTypeObject, kTypeInt } },
1080  { 183, kTypeObject , { kTypeObject, kTypeInt } },
1081  { 184, kTypeObject , { kTypeObject, kTypeInt } },
1082  { 185, kTypeInt , { kTypeObject } },
1083  { 186, kTypeInt , { kTypeObject, kTypeObject } },
1084  { 187, kTypeInt , { kTypeObject } },
1085  { 188, kTypeFloat , { kTypeObject } },
1086  { 189, kTypeInt , { kTypeObject } },
1087  { 190, kTypeInt , { kTypeObject } },
1088  { 191, kTypeInt , { kTypeObject } },
1089  { 192, kTypeObject , { kTypeObject, kTypeInt } },
1090  { 193, kTypeObject , { kTypeObject, kTypeInt } },
1091  { 194, kTypeString , { kTypeString } },
1092  { 195, kTypeInt , { } },
1093  { 196, kTypeVoid , { kTypeObject, kTypeInt } },
1094  { 197, kTypeObject , { kTypeString } },
1095  { 198, kTypeObject , { kTypeObject } },
1097  { 200, kTypeObject , { kTypeString, kTypeInt } },
1098  { 201, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1099  { 202, kTypeVoid , { kTypeFloat } },
1100  { 203, kTypeVoid , { kTypeInt, kTypeString } },
1102  { 205, kTypeVoid , { } },
1103  { 206, kTypeVoid , { } },
1105  { 208, kTypeInt , { kTypeObject, kTypeObject } },
1106  { 209, kTypeVoid , { kTypeObject, kTypeObject, kTypeInt } },
1107  { 210, kTypeString , { } },
1108  { 211, kTypeObject , { kTypeObject } },
1109  { 212, kTypeEngineType, { kTypeInt } },
1110  { 213, kTypeEngineType, { kTypeObject } },
1111  { 214, kTypeVoid , { kTypeEngineType } },
1112  { 215, kTypeEngineType, { kTypeVector, kTypeFloat } },
1114  { 217, kTypeInt , { kTypeObject } },
1115  { 218, kTypeFloat , { kTypeFloat } },
1116  { 219, kTypeFloat , { kTypeFloat } },
1118  { 221, kTypeVoid , { kTypeString, kTypeInt } },
1119  { 222, kTypeEngineType, { } },
1120  { 223, kTypeVector , { kTypeEngineType } },
1121  { 224, kTypeEngineType, { } },
1122  { 225, kTypeFloat , { kTypeEngineType } },
1124  { 227, kTypeObject , { kTypeInt, kTypeObject, kTypeInt } },
1125  { 228, kTypeObject , { kTypeInt, kTypeEngineType, kTypeInt } },
1126  { 229, kTypeObject , { kTypeString, kTypeObject, kTypeInt } },
1127  { 230, kTypeFloat , { kTypeInt } },
1128  { 231, kTypeInt , { kTypeFloat } },
1129  { 232, kTypeInt , { kTypeString } },
1130  { 233, kTypeFloat , { kTypeString } },
1132  { 235, kTypeInt , { kTypeObject, kTypeObject } },
1133  { 236, kTypeInt , { kTypeObject, kTypeObject } },
1134  { 237, kTypeInt , { kTypeObject, kTypeObject } },
1135  { 238, kTypeObject , { } },
1136  { 239, kTypeString , { kTypeInt } },
1137  { 240, kTypeVoid , { kTypeInt, kTypeInt } },
1139  { 242, kTypeObject , { } },
1141  { 244, kTypeEngineType, { kTypeObject, kTypeInt, kTypeInt } },
1142  { 245, kTypeObject , { } },
1143  { 246, kTypeInt , { } },
1144  { 247, kTypeInt , { } },
1145  { 248, kTypeInt , { } },
1146  { 249, kTypeString , { } },
1147  { 250, kTypeEngineType, { kTypeInt } },
1148  { 251, kTypeInt , { } },
1149  { 252, kTypeEngineType, { kTypeInt } },
1150  { 253, kTypeString , { kTypeObject } },
1151  { 254, kTypeObject , { } },
1152  { 255, kTypeInt , { kTypeString, kTypeObject } },
1153  { 256, kTypeObject , { } },
1154  { 257, kTypeInt , { } },
1155  { 258, kTypeInt , { } },
1156  { 259, kTypeInt , { } },
1157  { 260, kTypeObject , { } },
1158  { 261, kTypeInt , { } },
1159  { 262, kTypeObject , { kTypeObject, kTypeInt, kTypeInt } },
1160  { 263, kTypeObject , { kTypeObject, kTypeInt, kTypeInt } },
1161  { 264, kTypeObject , { kTypeObject } },
1162  { 265, kTypeInt , { } },
1163  { 266, kTypeVoid , { kTypeObject, kTypeInt } },
1164  { 267, kTypeInt , { } },
1165  { 268, kTypeVoid , { kTypeInt } },
1166  { 269, kTypeEngineType, { kTypeEngineType, kTypeInt } },
1167  { 270, kTypeEngineType, { } },
1168  { 271, kTypeVoid , { kTypeObject, kTypeObject } },
1169  { 272, kTypeString , { kTypeObject } },
1170  { 273, kTypeEngineType, { kTypeInt } },
1171  { 274, kTypeInt , { kTypeObject, kTypeInt, kTypeObject } },
1172  { 275, kTypeEngineType, { kTypeInt, kTypeInt } },
1173  { 276, kTypeInt , { kTypeObject } },
1174  { 277, kTypeVoid , { kTypeInt, kTypeObject } },
1175  { 278, kTypeInt , { kTypeObject } },
1176  { 279, kTypeVoid , { kTypeInt, kTypeObject } },
1177  { 280, kTypeInt , { kTypeObject } },
1178  { 281, kTypeVoid , { kTypeInt, kTypeObject } },
1179  { 282, kTypeObject , { } },
1180  { 283, kTypeObject , { } },
1181  { 284, kTypeVoid , { kTypeInt, kTypeString } },
1182  { 285, kTypeInt , { kTypeInt, kTypeObject } },
1183  { 286, kTypeInt , { kTypeInt, kTypeObject } },
1184  { 287, kTypeVoid , { kTypeInt, kTypeObject } },
1186  { 289, kTypeInt , { kTypeObject, kTypeObject } },
1187  { 290, kTypeInt , { kTypeObject, kTypeObject } },
1188  { 291, kTypeObject , { } },
1189  { 292, kTypeObject , { } },
1190  { 293, kTypeObject , { } },
1191  { 294, kTypeVoid , { kTypeScriptState } },
1192  { 295, kTypeEngineType, { } },
1193  { 296, kTypeVoid , { kTypeInt, kTypeObject } },
1194  { 297, kTypeInt , { kTypeObject } },
1195  { 298, kTypeFloat , { kTypeEngineType, kTypeEngineType } },
1197  { 300, kTypeVoid , { kTypeInt, kTypeFloat, kTypeFloat } },
1198  { 301, kTypeEngineType, { kTypeInt } },
1199  { 302, kTypeEngineType, { kTypeInt } },
1200  { 303, kTypeEngineType, { kTypeInt } },
1201  { 304, kTypeInt , { kTypeInt, kTypeObject } },
1202  { 305, kTypeInt , { kTypeEngineType } },
1203  { 306, kTypeInt , { kTypeEngineType, kTypeObject } },
1204  { 307, kTypeEngineType, { kTypeInt, kTypeObject, kTypeInt } },
1206  { 309, kTypeVoid , { kTypeEngineType, kTypeObject } },
1207  { 310, kTypeVoid , { kTypeEngineType, kTypeEngineType } },
1208  { 311, kTypeInt , { kTypeObject } },
1209  { 312, kTypeInt , { kTypeObject } },
1210  { 313, kTypeVoid , { kTypeEngineType } },
1211  { 314, kTypeEngineType, { kTypeInt } },
1212  { 315, kTypeInt , { kTypeInt, kTypeObject } },
1213  { 316, kTypeObject , { kTypeObject } },
1214  { 317, kTypeInt , { kTypeObject } },
1215  { 318, kTypeInt , { kTypeObject } },
1216  { 319, kTypeFloat , { kTypeObject, kTypeObject } },
1217  { 320, kTypeInt , { kTypeObject } },
1218  { 321, kTypeInt , { kTypeObject } },
1219  { 322, kTypeVoid , { kTypeObject, kTypeInt } },
1220  { 323, kTypeVoid , { kTypeInt, kTypeInt, kTypeInt } },
1221  { 324, kTypeVoid , { kTypeObject, kTypeInt } },
1222  { 325, kTypeInt , { kTypeObject } },
1223  { 326, kTypeObject , { } },
1224  { 327, kTypeVoid , { kTypeObject } },
1225  { 328, kTypeObject , { kTypeObject } },
1226  { 329, kTypeVoid , { kTypeObject } },
1227  { 330, kTypeObject , { } },
1228  { 331, kTypeInt , { kTypeInt, kTypeObject } },
1229  { 332, kTypeInt , { kTypeObject } },
1230  { 333, kTypeVoid , { kTypeObject, kTypeInt } },
1231  { 334, kTypeFloat , { kTypeEngineType, kTypeEngineType } },
1232  { 335, kTypeFloat , { kTypeObject } },
1233  { 336, kTypeObject , { } },
1234  { 337, kTypeInt , { kTypeObject, kTypeInt } },
1235  { 338, kTypeVoid , { kTypeObject, kTypeInt } },
1236  { 339, kTypeObject , { kTypeObject } },
1237  { 340, kTypeObject , { kTypeObject } },
1238  { 341, kTypeInt , { kTypeInt, kTypeObject } },
1239  { 342, kTypeInt , { kTypeInt, kTypeObject } },
1240  { 343, kTypeInt , { kTypeInt, kTypeObject } },
1241  { 344, kTypeInt , { kTypeInt } },
1242  { 345, kTypeInt , { } },
1243  { 346, kTypeObject , { } },
1244  { 347, kTypeObject , { } },
1245  { 348, kTypeObject , { } },
1246  { 349, kTypeObject , { } },
1247  { 350, kTypeObject , { } },
1248  { 351, kTypeEngineType, { kTypeInt, kTypeInt } },
1249  { 352, kTypeInt , { } },
1250  { 353, kTypeObject , { } },
1251  { 354, kTypeVoid , { kTypeObject } },
1253  { 356, kTypeEngineType, { kTypeEngineType, kTypeInt } },
1254  { 357, kTypeEngineType, { kTypeEngineType } },
1255  { 358, kTypeInt , { kTypeObject } },
1256  { 359, kTypeInt , { kTypeEngineType } },
1257  { 360, kTypeVoid , { kTypeEngineType, kTypeInt, kTypeFloat } },
1258  { 361, kTypeObject , { } },
1259  { 362, kTypeInt , { kTypeEngineType } },
1260  { 363, kTypeInt , { kTypeEngineType } },
1262  { 365, kTypeInt , { } },
1263  { 366, kTypeVoid , { kTypeObject, kTypeInt } },
1264  { 367, kTypeVoid , { kTypeString, kTypeInt, kTypeInt } },
1265  { 368, kTypeVoid , { kTypeString } },
1266  { 369, kTypeInt , { kTypeString } },
1267  { 370, kTypeInt , { kTypeInt } },
1268  { 371, kTypeInt , { kTypeInt } },
1269  { 372, kTypeEngineType, { kTypeInt } },
1270  { 373, kTypeEngineType, { kTypeInt } },
1271  { 374, kTypeVoid , { kTypeObject, kTypeString } },
1272  { 375, kTypeObject , { } },
1273  { 376, kTypeObject , { } },
1274  { 377, kTypeInt , { kTypeInt, kTypeObject } },
1276  { 379, kTypeVoid , { } },
1277  { 380, kTypeObject , { kTypeObject, kTypeInt } },
1278  { 381, kTypeObject , { kTypeObject, kTypeInt } },
1279  { 382, kTypeVoid , { kTypeEngineType, kTypeInt, kTypeFloat } },
1281  { 384, kTypeInt , { kTypeString } },
1282  { 385, kTypeVoid , { kTypeObject, kTypeInt } },
1283  { 386, kTypeVoid , { kTypeObject, kTypeInt } },
1284  { 387, kTypeEngineType, { kTypeFloat } },
1285  { 388, kTypeVoid , { kTypeObject, kTypeInt } },
1286  { 389, kTypeVoid , { kTypeInt, kTypeObject } },
1287  { 390, kTypeInt , { kTypeObject, kTypeEngineType } },
1288  { 391, kTypeEngineType, { } },
1289  { 392, kTypeEngineType, { } },
1290  { 393, kTypeVoid , { kTypeObject, kTypeInt } },
1291  { 394, kTypeVoid , { kTypeObject, kTypeInt } },
1292  { 395, kTypeInt , { kTypeObject } },
1293  { 396, kTypeString , { kTypeInt } },
1294  { 397, kTypeInt , { kTypeObject } },
1295  { 398, kTypeInt , { kTypeObject, kTypeInt } },
1296  { 399, kTypeVoid , { kTypeObject, kTypeInt } },
1297  { 400, kTypeVoid , { kTypeObject } },
1298  { 401, kTypeInt , { kTypeObject } },
1299  { 402, kTypeEngineType, { kTypeObject } },
1300  { 403, kTypeVoid , { kTypeObject, kTypeObject } },
1301  { 404, kTypeVoid , { } },
1302  { 405, kTypeInt , { } },
1303  { 406, kTypeInt , { } },
1304  { 407, kTypeInt , { } },
1305  { 408, kTypeInt , { } },
1306  { 409, kTypeInt , { kTypeObject } },
1307  { 410, kTypeObject , { } },
1308  { 411, kTypeEngineType, { } },
1309  { 412, kTypeVoid , { kTypeObject, kTypeInt } },
1310  { 413, kTypeVoid , { kTypeObject } },
1311  { 414, kTypeVoid , { kTypeObject } },
1312  { 415, kTypeVoid , { kTypeObject, kTypeInt } },
1313  { 416, kTypeVoid , { kTypeObject, kTypeVector } },
1314  { 417, kTypeVoid , { kTypeString, kTypeObject } },
1315  { 418, kTypeInt , { kTypeObject } },
1316  { 419, kTypeObject , { } },
1317  { 420, kTypeEngineType, { } },
1318  { 421, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt, kTypeInt } },
1319  { 422, kTypeInt , { kTypeObject, kTypeInt } },
1320  { 423, kTypeInt , { } },
1322  { 425, kTypeVoid , { kTypeObject } },
1323  { 426, kTypeVoid , { kTypeObject } },
1324  { 427, kTypeVoid , { kTypeObject, kTypeInt } },
1325  { 428, kTypeVoid , { kTypeObject, kTypeInt } },
1326  { 429, kTypeVoid , { kTypeObject, kTypeInt } },
1327  { 430, kTypeVoid , { kTypeObject } },
1328  { 431, kTypeVoid , { kTypeObject } },
1329  { 432, kTypeVoid , { kTypeObject, kTypeInt } },
1330  { 433, kTypeVoid , { kTypeObject } },
1331  { 434, kTypeVoid , { kTypeObject } },
1332  { 435, kTypeVoid , { kTypeObject, kTypeInt } },
1333  { 436, kTypeVoid , { kTypeObject, kTypeInt } },
1334  { 437, kTypeObject , { } },
1335  { 438, kTypeObject , { } },
1336  { 439, kTypeObject , { } },
1337  { 440, kTypeObject , { } },
1338  { 441, kTypeEngineType, { } },
1339  { 442, kTypeObject , { } },
1340  { 443, kTypeInt , { kTypeObject } },
1341  { 444, kTypeVoid , { kTypeInt, kTypeObject, kTypeInt } },
1342  { 445, kTypeInt , { kTypeObject } },
1343  { 446, kTypeEngineType, { kTypeInt, kTypeInt } },
1344  { 447, kTypeEngineType, { kTypeInt, kTypeInt } },
1345  { 448, kTypeEngineType, { kTypeInt, kTypeInt } },
1346  { 449, kTypeEngineType, { kTypeInt, kTypeInt } },
1347  { 450, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1348  { 451, kTypeEngineType, { kTypeInt } },
1349  { 452, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1350  { 453, kTypeEngineType, { kTypeInt, kTypeInt } },
1351  { 454, kTypeEngineType, { kTypeInt } },
1352  { 455, kTypeInt , { kTypeObject } },
1353  { 456, kTypeVoid , { kTypeObject, kTypeInt } },
1354  { 457, kTypeEngineType, { kTypeInt } },
1355  { 458, kTypeEngineType, { kTypeInt } },
1356  { 459, kTypeEngineType, { kTypeInt } },
1357  { 460, kTypeEngineType, { kTypeInt } },
1358  { 461, kTypeVoid , { kTypeInt } },
1359  { 462, kTypeInt , { } },
1360  { 463, kTypeEngineType, { kTypeInt } },
1361  { 464, kTypeInt , { } },
1362  { 465, kTypeEngineType, { } },
1363  { 466, kTypeEngineType, { } },
1364  { 467, kTypeEngineType, { } },
1365  { 468, kTypeVoid , { kTypeInt } },
1366  { 469, kTypeEngineType, { kTypeInt } },
1367  { 470, kTypeEngineType, { kTypeInt } },
1368  { 471, kTypeEngineType, { } },
1369  { 472, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1370  { 473, kTypeEngineType, { kTypeInt } },
1371  { 474, kTypeInt , { } },
1372  { 475, kTypeInt , { kTypeObject } },
1373  { 476, kTypeVoid , { } },
1374  { 477, kTypeEngineType, { kTypeInt } },
1375  { 478, kTypeVoid , { kTypeInt } },
1376  { 479, kTypeInt , { kTypeObject } },
1377  { 480, kTypeVoid , { kTypeObject } },
1378  { 481, kTypeInt , { } },
1379  { 482, kTypeVoid , { kTypeInt } },
1380  { 483, kTypeVoid , { kTypeObject } },
1381  { 484, kTypeVoid , { kTypeObject } },
1382  { 485, kTypeEngineType, { kTypeInt } },
1383  { 486, kTypeObject , { kTypeObject } },
1384  { 487, kTypeEngineType, { kTypeInt, kTypeInt, kTypeInt } },
1385  { 488, kTypeObject , { kTypeObject, kTypeInt } },
1386  { 489, kTypeObject , { } },
1387  { 490, kTypeObject , { kTypeObject } },
1388  { 491, kTypeInt , { kTypeObject } },
1389  { 492, kTypeInt , { kTypeObject } },
1390  { 493, kTypeInt , { kTypeObject } },
1391  { 494, kTypeFloat , { kTypeObject } },
1392  { 495, kTypeObject , { kTypeObject } },
1393  { 496, kTypeInt , { kTypeObject } },
1394  { 497, kTypeInt , { kTypeObject } },
1395  { 498, kTypeInt , { } },
1396  { 499, kTypeVoid , { kTypeInt } },
1397  { 500, kTypeVoid , { kTypeObject, kTypeObject } },
1398  { 501, kTypeVoid , { kTypeInt, kTypeObject, kTypeInt } },
1399  { 502, kTypeVoid , { kTypeInt, kTypeEngineType, kTypeInt } },
1400  { 503, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt, kTypeInt } },
1401  { 504, kTypeVoid , { kTypeObject, kTypeInt } },
1402  { 505, kTypeVoid , { kTypeObject, kTypeInt } },
1403  { 506, kTypeVoid , { kTypeObject, kTypeInt } },
1404  { 507, kTypeVoid , { kTypeObject, kTypeVector, kTypeInt } },
1405  { 508, kTypeVoid , { kTypeInt } },
1407  { 510, kTypeVoid , { } },
1408  { 511, kTypeInt , { kTypeObject } },
1409  { 512, kTypeVoid , { } },
1410  { 513, kTypeInt , { } },
1411  { 514, kTypeInt , { } },
1412  { 515, kTypeVoid , { kTypeVector, kTypeInt } },
1413  { 516, kTypeVoid , { kTypeInt } },
1414  { 517, kTypeVoid , { kTypeInt } },
1415  { 518, kTypeVoid , { kTypeInt } },
1416  { 519, kTypeInt , { } },
1417  { 520, kTypeVoid , { kTypeFloat } },
1418  { 521, kTypeFloat , { } },
1419  { 522, kTypeInt , { kTypeObject } },
1420  { 523, kTypeFloat , { } },
1421  { 524, kTypeInt , { kTypeObject } },
1422  { 525, kTypeVoid , { kTypeInt, kTypeObject, kTypeInt } },
1423  { 526, kTypeVoid , { kTypeString, kTypeObject, kTypeInt } },
1424  { 527, kTypeInt , { kTypeObject } },
1425  { 528, kTypeInt , { kTypeObject } },
1426  { 529, kTypeInt , { kTypeObject, kTypeObject } },
1427  { 530, kTypeInt , { kTypeObject } },
1428  { 531, kTypeInt , { kTypeObject } },
1429  { 532, kTypeInt , { kTypeObject } },
1430  { 533, kTypeObject , { kTypeObject } },
1431  { 534, kTypeString , { kTypeObject } },
1432  { 535, kTypeInt , { kTypeObject } },
1433  { 536, kTypeInt , { kTypeObject } },
1434  { 537, kTypeInt , { kTypeObject } },
1435  { 538, kTypeInt , { kTypeObject } },
1436  { 539, kTypeInt , { kTypeObject } },
1437  { 540, kTypeInt , { kTypeObject } },
1438  { 541, kTypeInt , { kTypeObject } },
1439  { 542, kTypeObject , { } },
1440  { 543, kTypeInt , { kTypeInt, kTypeObject } },
1441  { 544, kTypeVoid , { kTypeObject, kTypeInt } },
1442  { 545, kTypeInt , { kTypeObject } },
1443  { 546, kTypeInt , { kTypeObject, kTypeInt } },
1444  { 547, kTypeVoid , { kTypeObject, kTypeInt } },
1445  { 548, kTypeObject , { } },
1446  { 549, kTypeObject , { } },
1447  { 550, kTypeInt , { kTypeObject, kTypeObject } },
1448  { 551, kTypeInt , { kTypeObject } },
1449  { 552, kTypeEngineType, { kTypeEngineType, kTypeInt } },
1450  { 553, kTypeVoid , { kTypeObject, kTypeObject } },
1452  { 555, kTypeVoid , { kTypeObject } },
1453  { 556, kTypeObject , { kTypeObject } },
1454  { 557, kTypeVoid , { } },
1455  { 558, kTypeInt , { kTypeObject } },
1456  { 559, kTypeInt , { kTypeObject } },
1457  { 560, kTypeVoid , { kTypeString } },
1458  { 561, kTypeString , { } },
1459  { 562, kTypeObject , { kTypeObject } },
1460  { 563, kTypeVoid , { kTypeInt, kTypeFloat } },
1461  { 564, kTypeVoid , { kTypeInt } },
1462  { 565, kTypeInt , { } },
1463  { 566, kTypeInt , { kTypeObject } },
1464  { 567, kTypeVoid , { kTypeObject, kTypeInt } },
1465  { 568, kTypeVoid , { kTypeObject, kTypeInt } },
1466  { 569, kTypeInt , { kTypeObject } },
1467  { 570, kTypeInt , { kTypeObject } },
1468  { 571, kTypeFloat , { kTypeInt } },
1469  { 572, kTypeVoid , { kTypeObject, kTypeObject } },
1470  { 573, kTypeVoid , { kTypeObject } },
1471  { 574, kTypeInt , { kTypeInt, kTypeObject } },
1472  { 575, kTypeInt , { kTypeInt } },
1473  { 576, kTypeInt , { kTypeObject } },
1474  { 577, kTypeObject , { kTypeInt } },
1475  { 578, kTypeInt , { kTypeString } },
1476  { 579, kTypeVoid , { kTypeString, kTypeInt } },
1477  { 580, kTypeInt , { kTypeString } },
1478  { 581, kTypeVoid , { kTypeString, kTypeInt } },
1479  { 582, kTypeVoid , { kTypeString, kTypeInt, kTypeInt, kTypeFloat } },
1480  { 583, kTypeString , { } },
1481  { 584, kTypeString , { } },
1482  { 585, kTypeObject , { kTypeString } },
1484  { 587, kTypeInt , { } },
1485  { 588, kTypeInt , { } },
1486  { 589, kTypeObject , { } },
1487  { 590, kTypeInt , { kTypeObject, kTypeInt, kTypeInt } },
1488  { 591, kTypeVoid , { } },
1489  { 592, kTypeVoid , { } },
1490  { 593, kTypeObject , { } },
1491  { 594, kTypeObject , { } },
1492  { 595, kTypeInt , { } },
1493  { 596, kTypeInt , { } },
1494  { 597, kTypeString , { kTypeObject } },
1495  { 598, kTypeVoid , { } },
1496  { 599, kTypeInt , { kTypeObject } },
1497  { 600, kTypeInt , { kTypeObject } },
1498  { 601, kTypeInt , { kTypeObject } },
1499  { 602, kTypeInt , { kTypeObject } },
1500  { 603, kTypeInt , { kTypeObject } },
1501  { 604, kTypeVoid , { kTypeObject, kTypeInt } },
1502  { 605, kTypeVoid , { } },
1503  { 606, kTypeInt , { } },
1504  { 607, kTypeVoid , { kTypeObject, kTypeString } },
1505  { 608, kTypeFloat , { } },
1506  { 609, kTypeFloat , { } },
1507  { 610, kTypeVoid , { kTypeFloat, kTypeFloat } },
1508  { 611, kTypeObject , { } },
1509  { 612, kTypeInt , { } },
1510  { 613, kTypeObject , { kTypeInt } },
1511  { 614, kTypeInt , { } },
1512  { 615, kTypeObject , { kTypeInt } },
1513  { 616, kTypeInt , { kTypeObject } },
1514  { 617, kTypeInt , { kTypeObject } },
1515  { 618, kTypeVoid , { kTypeObject, kTypeInt } },
1516  { 619, kTypeFloat , { kTypeObject } },
1517  { 620, kTypeVoid , { kTypeObject, kTypeFloat } },
1518  { 621, kTypeInt , { kTypeObject } },
1519  { 622, kTypeVoid , { kTypeObject, kTypeInt } },
1520  { 623, kTypeVector , { kTypeObject } },
1521  { 624, kTypeInt , { kTypeObject } },
1522  { 625, kTypeString , { kTypeObject, kTypeInt } },
1523  { 626, kTypeString , { kTypeObject, kTypeInt } },
1524  { 627, kTypeInt , { kTypeObject, kTypeInt } },
1525  { 628, kTypeFloat , { kTypeObject, kTypeInt } },
1526  { 629, kTypeFloat , { kTypeObject, kTypeInt } },
1527  { 630, kTypeFloat , { kTypeObject, kTypeInt } },
1528  { 631, kTypeInt , { kTypeObject, kTypeInt } },
1529  { 632, kTypeVoid , { kTypeObject, kTypeInt, kTypeString } },
1530  { 633, kTypeVoid , { kTypeObject, kTypeInt, kTypeString } },
1531  { 634, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1532  { 635, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1533  { 636, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1534  { 637, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1535  { 638, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1536  { 639, kTypeString , { } },
1537  { 640, kTypeInt , { kTypeObject, kTypeInt } },
1538  { 641, kTypeVector , { } },
1539  { 642, kTypeFloat , { } },
1540  { 643, kTypeFloat , { } },
1541  { 644, kTypeFloat , { } },
1542  { 645, kTypeFloat , { } },
1543  { 646, kTypeVector , { } },
1544  { 647, kTypeVoid , { kTypeVector } },
1545  { 648, kTypeVoid , { kTypeFloat } },
1546  { 649, kTypeVoid , { kTypeFloat } },
1547  { 650, kTypeVoid , { kTypeFloat } },
1548  { 651, kTypeVoid , { kTypeFloat } },
1549  { 652, kTypeVoid , { kTypeVector } },
1550  { 653, kTypeVector , { } },
1551  { 654, kTypeVoid , { kTypeVector } },
1552  { 655, kTypeVector , { } },
1553  { 656, kTypeVoid , { kTypeVector } },
1554  { 657, kTypeFloat , { kTypeObject, kTypeInt } },
1555  { 658, kTypeFloat , { kTypeObject, kTypeInt } },
1556  { 659, kTypeFloat , { kTypeObject, kTypeInt } },
1557  { 660, kTypeFloat , { kTypeObject, kTypeInt } },
1558  { 661, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1559  { 662, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1560  { 663, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1561  { 664, kTypeVoid , { kTypeObject, kTypeInt, kTypeFloat } },
1562  { 665, kTypeInt , { kTypeObject } },
1563  { 666, kTypeVoid , { kTypeObject } },
1564  { 667, kTypeFloat , { } },
1565  { 668, kTypeVoid , { kTypeFloat } },
1566  { 669, kTypeVoid , { kTypeInt, kTypeString, kTypeString } },
1567  { 670, kTypeVoid , { kTypeInt, kTypeInt } },
1568  { 671, kTypeVoid , { kTypeObject, kTypeInt } },
1569  { 672, kTypeVoid , { } },
1570  { 673, kTypeVoid , { kTypeInt } },
1571  { 674, kTypeVoid , { kTypeInt } },
1572  { 675, kTypeEngineType, { kTypeInt } },
1573  { 676, kTypeEngineType, { } },
1574  { 677, kTypeVoid , { kTypeInt, kTypeEngineType } },
1576  { 679, kTypeInt , { kTypeObject, kTypeInt } },
1577  { 680, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1578  { 681, kTypeInt , { kTypeObject, kTypeInt } },
1579  { 682, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1580  { 683, kTypeInt , { kTypeObject, kTypeInt } },
1581  { 684, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1582  { 685, kTypeInt , { kTypeObject, kTypeInt } },
1583  { 686, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1584  { 687, kTypeInt , { kTypeObject, kTypeInt } },
1585  { 688, kTypeVoid , { kTypeObject, kTypeInt, kTypeInt } },
1586  { 689, kTypeFloat , { kTypeObject } },
1587  { 690, kTypeVoid , { kTypeObject, kTypeFloat } },
1588  { 691, kTypeInt , { kTypeObject } },
1589  { 692, kTypeEngineType, { kTypeString } },
1590  { 693, kTypeVoid , { kTypeString, kTypeEngineType } },
1591  { 694, kTypeInt , { kTypeInt, kTypeObject } },
1592  { 695, kTypeInt , { kTypeInt } },
1593  { 696, kTypeInt , { kTypeInt } },
1594  { 697, kTypeInt , { kTypeInt, kTypeString } },
1595  { 698, kTypeObject , { kTypeInt, kTypeEngineType } },
1596  { 699, kTypeInt , { kTypeInt } },
1597  { 700, kTypeVoid , { kTypeInt } },
1598  { 701, kTypeInt , { } },
1600  { 703, kTypeEngineType, { } },
1601  { 704, kTypeInt , { } },
1602  { 705, kTypeInt , { kTypeObject } },
1603  { 706, kTypeVoid , { kTypeInt } },
1604  { 707, kTypeVoid , { kTypeObject, kTypeInt } },
1605  { 708, kTypeVoid , { kTypeInt, kTypeInt } },
1606  { 709, kTypeInt , { kTypeInt } },
1607  { 710, kTypeVoid , { } },
1608  { 711, kTypeString , { } },
1609  { 712, kTypeVoid , { kTypeString, kTypeInt, kTypeInt } },
1610  { 713, kTypeInt , { kTypeObject } },
1611  { 714, kTypeVoid , { kTypeString, kTypeInt } },
1612  { 715, kTypeInt , { kTypeObject } },
1613  { 716, kTypeVoid , { kTypeObject, kTypeInt } },
1614  { 717, kTypeVector , { } },
1615  { 718, kTypeVoid , { kTypeVector } },
1618  { 721, kTypeObject , { kTypeObject } },
1619  { 722, kTypeInt , { kTypeObject } },
1620  { 723, kTypeInt , { kTypeObject } },
1621  { 724, kTypeInt , { kTypeObject } },
1622  { 725, kTypeInt , { kTypeObject } },
1623  { 726, kTypeInt , { kTypeObject } },
1624  { 727, kTypeObject , { kTypeObject } },
1625  { 728, kTypeObject , { kTypeObject } },
1627  { 730, kTypeVoid , { } },
1628  { 731, kTypeVoid , { kTypeInt, kTypeObject } },
1629  { 732, kTypeInt , { kTypeObject } },
1630  { 733, kTypeVoid , { kTypeString } },
1631  { 734, kTypeVoid , { kTypeInt } },
1632  { 735, kTypeInt , { kTypeEngineType } },
1633  { 736, kTypeVoid , { kTypeInt, kTypeInt } },
1634  { 737, kTypeVoid , { kTypeInt, kTypeInt } },
1635  { 738, kTypeVoid , { kTypeString, kTypeInt } },
1636  { 739, kTypeVoid , { kTypeInt } },
1637  { 740, kTypeVoid , { kTypeInt, kTypeInt } },
1638  { 741, kTypeInt , { kTypeInt } },
1639  { 742, kTypeVoid , { kTypeInt, kTypeInt } },
1640  { 743, kTypeInt , { kTypeInt } },
1641  { 744, kTypeInt , { } },
1642  { 745, kTypeVoid , { kTypeObject, kTypeFloat } },
1644  { 747, kTypeVoid , { kTypeString, kTypeFloat } },
1645  { 748, kTypeInt , { kTypeInt } },
1646  { 749, kTypeVoid , { } },
1647  { 750, kTypeVoid , { kTypeObject, kTypeInt } },
1648  { 751, kTypeInt , { kTypeObject } },
1649  { 752, kTypeObject , { kTypeObject } },
1650  { 753, kTypeVoid , { kTypeInt } },
1651  { 754, kTypeEngineType, { } },
1652  { 755, kTypeEngineType, { } },
1653  { 756, kTypeEngineType, { } },
1654  { 757, kTypeVoid , { } },
1655  { 758, kTypeVoid , { kTypeObject, kTypeInt } },
1656  { 759, kTypeVoid , { kTypeFloat } },
1657  { 760, kTypeVoid , { } },
1658  { 761, kTypeInt , { } },
1659  { 762, kTypeVoid , { } },
1660  { 763, kTypeVoid , { kTypeInt } },
1661  { 764, kTypeInt , { kTypeInt } },
1662  { 765, kTypeVoid , { kTypeFloat } },
1664  { 767, kTypeVoid , { kTypeInt, kTypeObject } },
1665  { 768, kTypeInt , { } },
1666  { 769, kTypeVoid , { kTypeString, kTypeInt } },
1667  { 770, kTypeVoid , { kTypeInt } },
1668  { 771, kTypeVoid , { kTypeObject } }
1669 };
1670 
1672 const Functions::FunctionDefaults Functions::kFunctionDefaults[] = {
1673  { 0, { } },
1674  { 1, { } },
1675  { 2, { &kDefaultInt18, &kDefaultInt9 } },
1676  { 3, { &kDefaultInt18, &kDefaultInt9 } },
1677  { 4, { } },
1678  { 5, { } },
1679  { 6, { } },
1680  { 7, { } },
1681  { 8, { &kDefaultIntMinus1 } },
1682  { 9, { } },
1683  { 10, { } },
1684  { 11, { } },
1685  { 12, { } },
1686  { 13, { } },
1687  { 14, { } },
1688  { 15, { } },
1689  { 16, { } },
1690  { 17, { } },
1691  { 18, { } },
1692  { 19, { } },
1693  { 20, { } },
1694  { 21, { &kDefaultFalse } },
1695  { 22, { &kDefaultFalse, &kDefaultFloat1_0 } },
1696  { 23, { &kDefaultFalse, &kDefaultFloat40_0 } },
1697  { 24, { } },
1698  { 25, { } },
1699  { 26, { } },
1700  { 27, { } },
1701  { 28, { } },
1702  { 29, { } },
1703  { 30, { } },
1704  { 31, { &kDefaultObjectSelf, &kDefaultInt1 } },
1705  { 32, { &kDefaultFalse } },
1706  { 33, { &kDefaultFalse } },
1707  { 34, { } },
1708  { 35, { } },
1709  { 36, { &kDefaultObjectSelf } },
1710  { 37, { &kDefaultFalse } },
1711  { 38, { &kDefaultObjectSelf, &kDefaultInt1, &kDefaultIntMinus1, &kDefaultIntMinus1, &kDefaultIntMinus1, &kDefaultIntMinus1 } },
1712  { 39, { &kDefaultTalkVolumeTalk } },
1713  { 40, { &kDefaultFloat1_0, &kDefaultFloat0_0 } },
1714  { 41, { } },
1715  { 42, { } },
1716  { 43, { } },
1717  { 44, { } },
1718  { 45, { } },
1719  { 46, { } },
1720  { 47, { } },
1722  { 49, { &kDefaultObjectSelf } },
1723  { 50, { &kDefaultObjectSelf } },
1724  { 51, { } },
1725  { 52, { } },
1726  { 53, { } },
1727  { 54, { } },
1728  { 55, { &kDefaultObjectSelf } },
1729  { 56, { &kDefaultObjectSelf } },
1730  { 57, { } },
1731  { 58, { } },
1732  { 59, { } },
1733  { 60, { } },
1734  { 61, { } },
1735  { 62, { } },
1736  { 63, { } },
1737  { 64, { } },
1738  { 65, { } },
1739  { 66, { } },
1740  { 67, { } },
1741  { 68, { } },
1742  { 69, { } },
1743  { 70, { } },
1744  { 71, { } },
1745  { 72, { } },
1746  { 73, { } },
1747  { 74, { } },
1748  { 75, { } },
1749  { 76, { } },
1750  { 77, { } },
1751  { 78, { } },
1753  { 80, { } },
1754  { 81, { &kDefaultInt0 } },
1755  { 82, { } },
1756  { 83, { &kDefaultObjectSelf } },
1757  { 84, { } },
1758  { 85, { } },
1759  { 86, { } },
1760  { 87, { } },
1761  { 88, { } },
1762  { 89, { } },
1763  { 90, { } },
1764  { 91, { } },
1765  { 92, { } },
1766  { 93, { &kDefaultObjectInvalid, &kDefaultObjectTypeCreature } },
1767  { 94, { &kDefaultObjectInvalid, &kDefaultObjectTypeCreature } },
1768  { 95, { &kDefaultInt1 } },
1769  { 96, { &kDefaultInt1 } },
1770  { 97, { &kDefaultInt1 } },
1771  { 98, { &kDefaultInt1 } },
1772  { 99, { &kDefaultInt1 } },
1773  { 100, { &kDefaultInt1 } },
1774  { 101, { &kDefaultInt1 } },
1775  { 102, { &kDefaultInt1 } },
1776  { 103, { &kDefaultInt1 } },
1777  { 104, { } },
1778  { 105, { } },
1779  { 106, { } },
1780  { 107, { } },
1781  { 108, { &kDefaultSavingThrowTypeNone, &kDefaultObjectSelf } },
1782  { 109, { &kDefaultSavingThrowTypeNone, &kDefaultObjectSelf } },
1783  { 110, { &kDefaultSavingThrowTypeNone, &kDefaultObjectSelf } },
1784  { 111, { } },
1785  { 112, { } },
1786  { 113, { } },
1787  { 114, { } },
1789  { 116, { &kDefaultInt0 } },
1790  { 117, { &kDefaultSavingThrowTypeAll } },
1791  { 118, { &kDefaultAttackBonusMisc } },
1792  { 119, { &kDefaultInt0 } },
1793  { 120, { &kDefaultDamageTypeUniversal } },
1794  { 121, { } },
1795  { 122, { } },
1796  { 123, { } },
1797  { 124, { } },
1798  { 125, { } },
1799  { 126, { } },
1800  { 127, { } },
1803  { 130, { } },
1804  { 131, { } },
1805  { 132, { } },
1806  { 133, { &kDefaultFalse, &kDefaultTrue } },
1807  { 134, { } },
1808  { 135, { } },
1809  { 136, { } },
1810  { 137, { } },
1811  { 138, { } },
1812  { 139, { } },
1813  { 140, { } },
1814  { 141, { } },
1816  { 143, { } },
1817  { 144, { } },
1818  { 145, { } },
1819  { 146, { &kDefaultTrue } },
1820  { 147, { &kDefaultTrue } },
1821  { 148, { } },
1822  { 149, { &kDefaultForcePowerAllForcePowers } },
1823  { 150, { } },
1824  { 151, { } },
1825  { 152, { &kDefaultInt0, &kDefaultInt0 } },
1826  { 153, { &kDefaultInt0 } },
1827  { 154, { } },
1828  { 155, { &kDefaultObjectSelf } },
1829  { 156, { } },
1830  { 157, { } },
1831  { 158, { } },
1832  { 159, { } },
1833  { 160, { } },
1834  { 161, { } },
1835  { 162, { &kDefaultObjectSelf } },
1836  { 163, { &kDefaultObjectSelf } },
1837  { 164, { } },
1838  { 165, { } },
1839  { 166, { } },
1840  { 167, { &kDefaultFloat0_0 } },
1841  { 168, { } },
1842  { 169, { } },
1843  { 170, { } },
1845  { 172, { &kDefaultObjectSelf } },
1846  { 173, { } },
1847  { 174, { } },
1848  { 175, { } },
1849  { 176, { &kDefaultInt0 } },
1850  { 177, { } },
1851  { 178, { } },
1852  { 179, { } },
1853  { 180, { &kDefaultFalse } },
1854  { 181, { &kDefaultObjectSelf, &kDefaultTrue } },
1855  { 182, { &kDefaultObjectSelf, &kDefaultTrue } },
1856  { 183, { &kDefaultObjectSelf, &kDefaultTrue } },
1857  { 184, { &kDefaultObjectSelf, &kDefaultTrue } },
1858  { 185, { } },
1859  { 186, { } },
1860  { 187, { } },
1861  { 188, { } },
1862  { 189, { } },
1863  { 190, { } },
1864  { 191, { } },
1865  { 192, { &kDefaultObjectSelf, &kDefaultTrue } },
1866  { 193, { &kDefaultObjectSelf, &kDefaultTrue } },
1867  { 194, { } },
1868  { 195, { } },
1869  { 196, { &kDefaultTrue } },
1870  { 197, { } },
1871  { 198, { } },
1872  { 199, { } },
1873  { 200, { &kDefaultInt0 } },
1874  { 201, { } },
1875  { 202, { } },
1876  { 203, { &kDefaultStringEmpty } },
1878  { 205, { } },
1879  { 206, { } },
1880  { 207, { &kDefaultFalse } },
1881  { 208, { } },
1882  { 209, { } },
1883  { 210, { } },
1884  { 211, { } },
1885  { 212, { } },
1886  { 213, { } },
1887  { 214, { } },
1888  { 215, { } },
1889  { 216, { &kDefaultFloat0_0 } },
1890  { 217, { } },
1891  { 218, { } },
1892  { 219, { } },
1893  { 220, { &kDefaultFloat0_0 } },
1894  { 221, { &kDefaultTalkVolumeTalk } },
1895  { 222, { } },
1896  { 223, { } },
1897  { 224, { } },
1898  { 225, { } },
1900  { 227, { &kDefaultObjectTypeAll, &kDefaultObjectSelf, &kDefaultInt1 } },
1901  { 228, { &kDefaultInt1 } },
1902  { 229, { &kDefaultObjectSelf, &kDefaultInt1 } },
1903  { 230, { } },
1904  { 231, { } },
1905  { 232, { } },
1906  { 233, { } },
1908  { 235, { &kDefaultObjectSelf } },
1909  { 236, { &kDefaultObjectSelf } },
1910  { 237, { &kDefaultObjectSelf } },
1911  { 238, { } },
1912  { 239, { } },
1913  { 240, { &kDefaultTalkVolumeTalk } },
1915  { 242, { } },
1916  { 243, { &kDefaultFalse } },
1917  { 244, { &kDefaultTrue } },
1918  { 245, { } },
1919  { 246, { } },
1920  { 247, { } },
1921  { 248, { } },
1922  { 249, { } },
1923  { 250, { } },
1924  { 251, { } },
1925  { 252, { &kDefaultInt0 } },
1926  { 253, { } },
1927  { 254, { } },
1928  { 255, { &kDefaultStringEmpty, &kDefaultObjectInvalid } },
1929  { 256, { } },
1930  { 257, { } },
1931  { 258, { } },
1932  { 259, { } },
1933  { 260, { } },
1934  { 261, { } },
1935  { 262, { &kDefaultObjectSelf, &kDefaultObjectTypeCreature, &kDefaultPersistentZoneActive } },
1936  { 263, { &kDefaultObjectSelf, &kDefaultObjectTypeCreature, &kDefaultPersistentZoneActive } },
1937  { 264, { &kDefaultObjectSelf } },
1938  { 265, { } },
1939  { 266, { } },
1940  { 267, { } },
1941  { 268, { } },
1942  { 269, { &kDefaultInt0 } },
1943  { 270, { } },
1944  { 271, { } },
1945  { 272, { } },
1946  { 273, { } },
1947  { 274, { &kDefaultObjectInvalid } },
1948  { 275, { } },
1949  { 276, { &kDefaultObjectSelf } },
1950  { 277, { &kDefaultObjectSelf } },
1951  { 278, { &kDefaultObjectSelf } },
1952  { 279, { &kDefaultObjectSelf } },
1953  { 280, { &kDefaultObjectSelf } },
1954  { 281, { &kDefaultObjectSelf } },
1955  { 282, { } },
1956  { 283, { } },
1957  { 284, { } },
1958  { 285, { &kDefaultObjectSelf } },
1959  { 286, { &kDefaultObjectSelf } },
1960  { 287, { } },
1961  { 288, { &kDefaultInt0, &kDefaultObjectInvalid } },
1962  { 289, { &kDefaultObjectSelf } },
1963  { 290, { &kDefaultObjectSelf } },
1964  { 291, { } },
1965  { 292, { } },
1966  { 293, { } },
1967  { 294, { } },
1968  { 295, { } },
1969  { 296, { &kDefaultObjectSelf } },
1970  { 297, { &kDefaultObjectSelf } },
1971  { 298, { } },
1972  { 299, { &kDefaultSavingThrowTypeNone, &kDefaultObjectSelf } },
1973  { 300, { &kDefaultFloat1_0, &kDefaultFloat0_0 } },
1974  { 301, { } },
1975  { 302, { } },
1976  { 303, { } },
1977  { 304, { &kDefaultObjectSelf } },
1978  { 305, { } },
1979  { 306, { &kDefaultObjectSelf } },
1980  { 307, { &kDefaultObjectSelf, &kDefaultInt0 } },
1981  { 308, { &kDefaultObjectSelf, &kDefaultInt0, &kDefaultIntMinus1, &kDefaultIntMinus1 } },
1982  { 309, { } },
1983  { 310, { } },
1984  { 311, { } },
1985  { 312, { } },
1986  { 313, { } },
1987  { 314, { } },
1988  { 315, { &kDefaultObjectSelf } },
1989  { 316, { &kDefaultObjectSelf } },
1990  { 317, { &kDefaultObjectSelf } },
1991  { 318, { &kDefaultObjectSelf } },
1992  { 319, { } },
1993  { 320, { &kDefaultObjectSelf } },
1994  { 321, { &kDefaultObjectSelf } },
1995  { 322, { } },
1996  { 323, { &kDefaultTrue, &kDefaultFalse } },
1997  { 324, { } },
1998  { 325, { } },
1999  { 326, { } },
2000  { 327, { &kDefaultObjectSelf } },
2001  { 328, { } },
2002  { 329, { } },
2003  { 330, { } },
2004  { 331, { &kDefaultObjectSelf } },
2005  { 332, { } },
2006  { 333, { } },
2007  { 334, { } },
2008  { 335, { } },
2009  { 336, { } },
2010  { 337, { } },
2011  { 338, { } },
2012  { 339, { &kDefaultObjectSelf } },
2013  { 340, { &kDefaultObjectSelf } },
2014  { 341, { &kDefaultObjectSelf } },
2015  { 342, { &kDefaultObjectSelf } },
2016  { 343, { &kDefaultObjectSelf } },
2017  { 344, { } },
2018  { 345, { } },
2019  { 346, { } },
2020  { 347, { } },
2021  { 348, { } },
2022  { 349, { } },
2023  { 350, { } },
2024  { 351, { } },
2025  { 352, { } },
2026  { 353, { } },
2027  { 354, { &kDefaultObjectInvalid } },
2029  { 356, { } },
2030  { 357, { } },
2031  { 358, { } },
2032  { 359, { } },
2033  { 360, { &kDefaultFalse, &kDefaultFloat40_0 } },
2034  { 361, { } },
2035  { 362, { } },
2036  { 363, { } },
2037  { 364, { &kDefaultFalse, &kDefaultObjectInvalid } },
2038  { 365, { } },
2039  { 366, { } },
2040  { 367, { &kDefaultFalse } },
2041  { 368, { } },
2042  { 369, { } },
2043  { 370, { } },
2044  { 371, { } },
2045  { 372, { } },
2046  { 373, { } },
2047  { 374, { } },
2048  { 375, { } },
2049  { 376, { } },
2050  { 377, { &kDefaultObjectSelf } },
2051  { 378, { &kDefaultInt0, &kDefaultInt0 } },
2052  { 379, { } },
2053  { 380, { &kDefaultTrue } },
2054  { 381, { &kDefaultTrue } },
2055  { 382, { &kDefaultFalse, &kDefaultFloat30_0 } },
2057  { 384, { } },
2058  { 385, { &kDefaultInt1 } },
2059  { 386, { } },
2060  { 387, { } },
2061  { 388, { } },
2062  { 389, { } },
2063  { 390, { } },
2064  { 391, { } },
2065  { 392, { } },
2066  { 393, { } },
2067  { 394, { } },
2068  { 395, { } },
2069  { 396, { } },
2070  { 397, { } },
2071  { 398, { } },
2072  { 399, { &kDefaultObjectInvalid, &kDefaultFalse } },
2073  { 400, { &kDefaultObjectInvalid } },
2074  { 401, { } },
2075  { 402, { } },
2076  { 403, { } },
2077  { 404, { } },
2078  { 405, { } },
2079  { 406, { } },
2080  { 407, { } },
2081  { 408, { } },
2082  { 409, { &kDefaultObjectSelf } },
2083  { 410, { } },
2084  { 411, { } },
2085  { 412, { } },
2086  { 413, { } },
2087  { 414, { } },
2088  { 415, { } },
2089  { 416, { } },
2090  { 417, { &kDefaultStringEmpty, &kDefaultObjectInvalid } },
2091  { 418, { &kDefaultObjectSelf } },
2092  { 419, { } },
2093  { 420, { } },
2094  { 421, { &kDefaultTrue, &kDefaultFalse } },
2095  { 422, { &kDefaultObjectInvalid, &kDefaultFalse } },
2096  { 423, { } },
2097  { 424, { &kDefaultObjectInvalid } },
2098  { 425, { } },
2099  { 426, { } },
2100  { 427, { } },
2101  { 428, { } },
2102  { 429, { } },
2103  { 430, { } },
2104  { 431, { } },
2105  { 432, { } },
2106  { 433, { } },
2107  { 434, { } },
2108  { 435, { } },
2109  { 436, { } },
2110  { 437, { } },
2111  { 438, { } },
2112  { 439, { } },
2113  { 440, { } },
2114  { 441, { } },
2115  { 442, { } },
2116  { 443, { } },
2117  { 444, { &kDefaultFalse } },
2118  { 445, { } },
2119  { 446, { } },
2120  { 447, { &kDefaultAttackBonusMisc } },
2121  { 448, { &kDefaultDamageTypeUniversal } },
2122  { 449, { } },
2124  { 451, { } },
2125  { 452, { &kDefaultSavingThrowTypeAll } },
2126  { 453, { } },
2127  { 454, { } },
2128  { 455, { &kDefaultObjectSelf } },
2129  { 456, { } },
2130  { 457, { } },
2131  { 458, { } },
2132  { 459, { } },
2133  { 460, { } },
2134  { 461, { } },
2135  { 462, { } },
2136  { 463, { } },
2137  { 464, { } },
2138  { 465, { } },
2139  { 466, { } },
2140  { 467, { } },
2141  { 468, { } },
2142  { 469, { } },
2143  { 470, { } },
2144  { 471, { } },
2145  { 472, { &kDefaultInt0, &kDefaultInt0 } },
2146  { 473, { } },
2147  { 474, { } },
2148  { 475, { } },
2149  { 476, { } },
2150  { 477, { } },
2151  { 478, { } },
2152  { 479, { } },
2153  { 480, { } },
2154  { 481, { } },
2155  { 482, { } },
2156  { 483, { } },
2157  { 484, { } },
2158  { 485, { } },
2159  { 486, { &kDefaultObjectSelf } },
2160  { 487, { } },
2161  { 488, { &kDefaultObjectSelf, &kDefaultTrue } },
2162  { 489, { } },
2163  { 490, { &kDefaultObjectSelf } },
2164  { 491, { } },
2165  { 492, { } },
2166  { 493, { } },
2167  { 494, { } },
2168  { 495, { &kDefaultObjectSelf } },
2169  { 496, { } },
2170  { 497, { } },
2171  { 498, { } },
2172  { 499, { } },
2173  { 500, { } },
2174  { 501, { &kDefaultProjectilePathTypeDefault } },
2175  { 502, { &kDefaultProjectilePathTypeDefault } },
2176  { 503, { } },
2177  { 504, { } },
2178  { 505, { } },
2179  { 506, { } },
2180  { 507, { } },
2181  { 508, { } },
2183  { 510, { } },
2184  { 511, { } },
2185  { 512, { } },
2186  { 513, { } },
2187  { 514, { } },
2188  { 515, { &kDefaultVector0, &kDefaultIntMinus1 } },
2189  { 516, { } },
2190  { 517, { } },
2191  { 518, { } },
2192  { 519, { } },
2193  { 520, { } },
2194  { 521, { } },
2195  { 522, { &kDefaultObjectSelf } },
2196  { 523, { } },
2197  { 524, { } },
2198  { 525, { &kDefaultTrue } },
2199  { 526, { &kDefaultTrue } },
2200  { 527, { } },
2201  { 528, { } },
2202  { 529, { } },
2203  { 530, { } },
2204  { 531, { } },
2205  { 532, { } },
2206  { 533, { } },
2207  { 534, { } },
2208  { 535, { } },
2209  { 536, { } },
2210  { 537, { } },
2211  { 538, { } },
2212  { 539, { } },
2213  { 540, { } },
2214  { 541, { } },
2215  { 542, { } },
2216  { 543, { &kDefaultObjectSelf } },
2217  { 544, { &kDefaultObjectSelf, &kDefaultTrue } },
2218  { 545, { &kDefaultObjectSelf } },
2219  { 546, { } },
2220  { 547, { } },
2221  { 548, { } },
2222  { 549, { } },
2223  { 550, { } },
2224  { 551, { } },
2225  { 552, { } },
2226  { 553, { } },
2228  { 555, { } },
2229  { 556, { &kDefaultObjectSelf } },
2230  { 557, { } },
2231  { 558, { } },
2232  { 559, { } },
2233  { 560, { } },
2234  { 561, { } },
2235  { 562, { } },
2236  { 563, { &kDefaultFloat0_75 } },
2237  { 564, { &kDefaultTrue } },
2238  { 565, { } },
2239  { 566, { } },
2240  { 567, { } },
2241  { 568, { } },
2242  { 569, { } },
2243  { 570, { } },
2244  { 571, { } },
2245  { 572, { } },
2246  { 573, { } },
2247  { 574, { } },
2248  { 575, { } },
2249  { 576, { } },
2250  { 577, { } },
2251  { 578, { } },
2252  { 579, { } },
2253  { 580, { } },
2254  { 581, { } },
2255  { 582, { } },
2256  { 583, { } },
2257  { 584, { } },
2258  { 585, { } },
2259  { 586, { &kDefaultInt1, &kDefaultInt0, &kDefaultInt0 } },
2260  { 587, { } },
2261  { 588, { } },
2262  { 589, { } },
2263  { 590, { &kDefaultInt0 } },
2264  { 591, { } },
2265  { 592, { } },
2266  { 593, { } },
2267  { 594, { } },
2268  { 595, { } },
2269  { 596, { } },
2270  { 597, { &kDefaultObjectSelf } },
2271  { 598, { } },
2272  { 599, { &kDefaultObjectSelf } },
2273  { 600, { &kDefaultObjectSelf } },
2274  { 601, { &kDefaultObjectSelf } },
2275  { 602, { &kDefaultObjectSelf } },
2276  { 603, { &kDefaultObjectSelf } },
2277  { 604, { } },
2278  { 605, { } },
2279  { 606, { } },
2280  { 607, { } },
2281  { 608, { } },
2282  { 609, { } },
2283  { 610, { } },
2284  { 611, { } },
2285  { 612, { } },
2286  { 613, { } },
2287  { 614, { } },
2288  { 615, { } },
2289  { 616, { } },
2290  { 617, { } },
2291  { 618, { } },
2292  { 619, { } },
2293  { 620, { } },
2294  { 621, { } },
2295  { 622, { } },
2296  { 623, { } },
2297  { 624, { } },
2298  { 625, { } },
2299  { 626, { } },
2300  { 627, { } },
2301  { 628, { } },
2302  { 629, { } },
2303  { 630, { } },
2304  { 631, { } },
2305  { 632, { } },
2306  { 633, { } },
2307  { 634, { } },
2308  { 635, { } },
2309  { 636, { } },
2310  { 637, { } },
2311  { 638, { } },
2312  { 639, { } },
2313  { 640, { } },
2314  { 641, { } },
2315  { 642, { } },
2316  { 643, { } },
2317  { 644, { } },
2318  { 645, { } },
2319  { 646, { } },
2320  { 647, { } },
2321  { 648, { } },
2322  { 649, { } },
2323  { 650, { } },
2324  { 651, { } },
2325  { 652, { } },
2326  { 653, { } },
2327  { 654, { } },
2328  { 655, { } },
2329  { 656, { } },
2330  { 657, { } },
2331  { 658, { } },
2332  { 659, { } },
2333  { 660, { } },
2334  { 661, { } },
2335  { 662, { } },
2336  { 663, { } },
2337  { 664, { } },
2338  { 665, { } },
2339  { 666, { } },
2340  { 667, { } },
2341  { 668, { } },
2342  { 669, { &kDefaultStringWorldEntry } },
2343  { 670, { } },
2344  { 671, { } },
2345  { 672, { } },
2346  { 673, { } },
2347  { 674, { } },
2348  { 675, { } },
2349  { 676, { } },
2350  { 677, { } },
2351  { 678, { &kDefaultTrue, &kDefaultFalse } },
2352  { 679, { } },
2353  { 680, { } },
2354  { 681, { } },
2355  { 682, { } },
2356  { 683, { } },
2357  { 684, { } },
2358  { 685, { } },
2359  { 686, { } },
2360  { 687, { } },
2361  { 688, { } },
2362  { 689, { } },
2363  { 690, { } },
2364  { 691, { } },
2365  { 692, { } },
2366  { 693, { } },
2367  { 694, { } },
2368  { 695, { } },
2369  { 696, { } },
2370  { 697, { } },
2371  { 698, { } },
2372  { 699, { } },
2373  { 700, { } },
2374  { 701, { } },
2375  { 702, { &kDefaultObjectInvalid, &kDefaultObjectInvalid, &kDefaultInt0 } },
2376  { 703, { } },
2377  { 704, { } },
2378  { 705, { } },
2379  { 706, { } },
2380  { 707, { } },
2381  { 708, { } },
2382  { 709, { } },
2383  { 710, { } },
2384  { 711, { } },
2386  { 713, { } },
2387  { 714, { } },
2388  { 715, { } },
2389  { 716, { } },
2390  { 717, { } },
2391  { 718, { } },
2394  { 721, { &kDefaultObjectSelf } },
2395  { 722, { &kDefaultObjectSelf } },
2396  { 723, { &kDefaultObjectSelf } },
2397  { 724, { &kDefaultObjectSelf } },
2398  { 725, { &kDefaultObjectSelf } },
2399  { 726, { &kDefaultObjectSelf } },
2400  { 727, { &kDefaultObjectSelf } },
2401  { 728, { &kDefaultObjectSelf } },
2402  { 729, { } },
2403  { 730, { } },
2404  { 731, { &kDefaultObjectSelf } },
2405  { 732, { &kDefaultObjectSelf } },
2406  { 733, { } },
2407  { 734, { } },
2408  { 735, { } },
2409  { 736, { } },
2410  { 737, { } },
2411  { 738, { } },
2412  { 739, { } },
2413  { 740, { } },
2414  { 741, { } },
2415  { 742, { } },
2416  { 743, { } },
2417  { 744, { } },
2418  { 745, { } },
2419  { 746, { } },
2420  { 747, { } },
2421  { 748, { } },
2422  { 749, { } },
2423  { 750, { } },
2424  { 751, { } },
2425  { 752, { &kDefaultObjectSelf } },
2426  { 753, { } },
2427  { 754, { } },
2428  { 755, { } },
2429  { 756, { } },
2430  { 757, { } },
2431  { 758, { } },
2432  { 759, { } },
2433  { 760, { } },
2434  { 761, { } },
2435  { 762, { } },
2436  { 763, { &kDefaultInt1 } },
2437  { 764, { } },
2438  { 765, { &kDefaultFloat1_0 } },
2439  { 766, { &kDefaultFalse } },
2440  { 767, { } },
2441  { 768, { } },
2442  { 769, { } },
2443  { 770, { } },
2444  { 771, { } }
2445 };
2446 
2447 } // End of namespace KotOR
2448 
2449 } // End of namespace Engines
2450 
2451 #endif // ENGINES_KOTOR_SCRIPT_TABLES_H
static const Aurora::NWScript::Variable kDefaultFloat40_0(40.0f)
void getUserDefinedEventNumber(Aurora::NWScript::FunctionContext &ctx)
void setLocked(Aurora::NWScript::FunctionContext &ctx)
void actionCloseDoor(Aurora::NWScript::FunctionContext &ctx)
void printObject(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundGetDayTrack(Aurora::NWScript::FunctionContext &ctx)
void createItemOnObject(Aurora::NWScript::FunctionContext &ctx)
void sendMessageToPC(Aurora::NWScript::FunctionContext &ctx)
void atan(Aurora::NWScript::FunctionContext &ctx)
void vectorNormalize(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultACDodgeBonus((int32) 0)
A class holding an UTF-8 string.
Definition: ustring.h:48
void getStringByStrRef(Aurora::NWScript::FunctionContext &ctx)
void floatToInt(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultDamageTypeUniversal((int32) 8)
void insertString(Aurora::NWScript::FunctionContext &ctx)
void getRacialType(Aurora::NWScript::FunctionContext &ctx)
void assignCommand(Aurora::NWScript::FunctionContext &ctx)
void getEnteringObject(Aurora::NWScript::FunctionContext &ctx)
void d6(Aurora::NWScript::FunctionContext &ctx)
void findSubString(Aurora::NWScript::FunctionContext &ctx)
void setLocalBoolean(Aurora::NWScript::FunctionContext &ctx)
void getLocalNumber(Aurora::NWScript::FunctionContext &ctx)
void clearAllActions(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultInt18((int32) 18)
void getIsPC(Aurora::NWScript::FunctionContext &ctx)
void cos(Aurora::NWScript::FunctionContext &ctx)
void getPCSpeaker(Aurora::NWScript::FunctionContext &ctx)
void getMinOneHP(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundPlay(Aurora::NWScript::FunctionContext &ctx)
void getStringRight(Aurora::NWScript::FunctionContext &ctx)
void getNextPC(Aurora::NWScript::FunctionContext &ctx)
void abs(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectTypeInvalid((int32) 32767)
static const Aurora::NWScript::Variable kDefaultACVsDamageTypeAll((int32) 8199)
void getObjectByTag(Aurora::NWScript::FunctionContext &ctx)
void signalEvent(Aurora::NWScript::FunctionContext &ctx)
void log(Aurora::NWScript::FunctionContext &ctx)
void getGlobalBoolean(Aurora::NWScript::FunctionContext &ctx)
void getLocalBoolean(Aurora::NWScript::FunctionContext &ctx)
void destroyObject(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultVector0(0.0f, 0.0f, 0.0f)
void getCurrentHitPoints(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultTalkVolumeTalk((int32) 0)
void intToString(Aurora::NWScript::FunctionContext &ctx)
void getLastOpenedBy(Aurora::NWScript::FunctionContext &ctx)
void setMinOneHP(Aurora::NWScript::FunctionContext &ctx)
void getClassByPosition(Aurora::NWScript::FunctionContext &ctx)
void pow(Aurora::NWScript::FunctionContext &ctx)
void printString(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectTypeCreature((int32) 1)
void d12(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultInt1((int32) 1)
void showPartySelectionGUI(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundGetNightTrack(Aurora::NWScript::FunctionContext &ctx)
static const FunctionSignature kFunctionSignatures[]
The table defining the signature (return type and type of parameters) of each engine function...
Definition: functions.h:72
void d20(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultProjectilePathTypeDefault((int32) 0)
void setGlobalBoolean(Aurora::NWScript::FunctionContext &ctx)
void actionStartConversation(Aurora::NWScript::FunctionContext &ctx)
void getStringUpperCase(Aurora::NWScript::FunctionContext &ctx)
void setGlobalFadeIn(Aurora::NWScript::FunctionContext &ctx)
void intToFloat(Aurora::NWScript::FunctionContext &ctx)
void getLastClosedBy(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat30_0(30.0f)
void setLocalNumber(Aurora::NWScript::FunctionContext &ctx)
void intToHexString(Aurora::NWScript::FunctionContext &ctx)
void getGender(Aurora::NWScript::FunctionContext &ctx)
void getGlobalNumber(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultSavingThrowTypeNone((int32) 0)
void getClickingObject(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultInt9((int32) 9)
void random(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat0_0(0.0f)
static const Aurora::NWScript::Variable kDefaultForcePowerAllForcePowers((int32) - 1)
void eventUserDefined(Aurora::NWScript::FunctionContext &ctx)
void addAvailableNPCByTemplate(Aurora::NWScript::FunctionContext &ctx)
void getLastUsedBy(Aurora::NWScript::FunctionContext &ctx)
void objectToString(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultTrue((int32) 1)
static const Aurora::NWScript::Variable kDefaultFloat0_75(0.75f)
void delayCommand(Aurora::NWScript::FunctionContext &ctx)
void tan(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectTypeAll((int32) 32767)
void getItemInSlot(Aurora::NWScript::FunctionContext &ctx)
void setReturnStrref(Aurora::NWScript::FunctionContext &ctx)
void getSubRace(Aurora::NWScript::FunctionContext &ctx)
void getModule(Aurora::NWScript::FunctionContext &ctx)
void soundObjectPlay(Aurora::NWScript::FunctionContext &ctx)
void getLevelByPosition(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultAttackBonusMisc((int32) 0)
void vector(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultIntMinus1((int32) - 1)
void getPartyMemberByIndex(Aurora::NWScript::FunctionContext &ctx)
void d2(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultConversationTypeCinematic((int32) 0)
void getExitingObject(Aurora::NWScript::FunctionContext &ctx)
void getIsObjectValid(Aurora::NWScript::FunctionContext &ctx)
"effect", "event", "location", "talent"...
Definition: types.h:43
static const Aurora::NWScript::Variable kDefaultFalse((int32) 0)
void floatToString(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultStringWorldEntry(Common::UString("World Entry"))
void writeTimestampedLogEntry(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultStringEmpty(Common::UString(""))
void getStringLength(Aurora::NWScript::FunctionContext &ctx)
void printVector(Aurora::NWScript::FunctionContext &ctx)
void setMaxHitPoints(Aurora::NWScript::FunctionContext &ctx)
void d10(Aurora::NWScript::FunctionContext &ctx)
void stringToFloat(Aurora::NWScript::FunctionContext &ctx)
void sin(Aurora::NWScript::FunctionContext &ctx)
void actionOpenDoor(Aurora::NWScript::FunctionContext &ctx)
void getStringLowerCase(Aurora::NWScript::FunctionContext &ctx)
Fake value to describe the calling object in a script.
Definition: types.h:52
static const FunctionDefaults kFunctionDefaults[]
The table defining the default values for the parameters of each engine function. ...
Definition: functions.h:73
static const Aurora::NWScript::Variable kDefaultSavingThrowTypeAll((int32) 0)
void d100(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectSelf & kDefaultValueObjectSelf
void isAvailableCreature(Aurora::NWScript::FunctionContext &ctx)
Any other type.
Definition: types.h:48
void getMaxHitPoints(Aurora::NWScript::FunctionContext &ctx)
void getFirstPC(Aurora::NWScript::FunctionContext &ctx)
static const FunctionPointer kFunctionPointers[]
The table defining the name and function pointer of each engine function.
Definition: functions.h:71
An object in a Star Wars: Knights of the Old Republic area.
void actionMoveToObject(Aurora::NWScript::FunctionContext &ctx)
void asin(Aurora::NWScript::FunctionContext &ctx)
void getStringLeft(Aurora::NWScript::FunctionContext &ctx)
void getSubString(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundChangeNight(Aurora::NWScript::FunctionContext &ctx)
void d8(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultPersistentZoneActive((int32) 0)
void stringToInt(Aurora::NWScript::FunctionContext &ctx)
void printInteger(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultAlignmentAll((int32) 0)
void printFloat(Aurora::NWScript::FunctionContext &ctx)
void fabs(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultObjectInvalid & kDefaultValueObjectInvalid
void setGlobalNumber(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultFloat1_0(1.0f)
static const Aurora::NWScript::Variable kDefaultDamagePowerNormal((int32) 0)
void soundObjectStop(Aurora::NWScript::FunctionContext &ctx)
void setGlobalFadeOut(Aurora::NWScript::FunctionContext &ctx)
void vectorMagnitude(Aurora::NWScript::FunctionContext &ctx)
void getArea(Aurora::NWScript::FunctionContext &ctx)
void acos(Aurora::NWScript::FunctionContext &ctx)
void d4(Aurora::NWScript::FunctionContext &ctx)
Basic Star Wars: Knights of the Old Republic type definitions.
void getLocked(Aurora::NWScript::FunctionContext &ctx)
void d3(Aurora::NWScript::FunctionContext &ctx)
void playMovie(Aurora::NWScript::FunctionContext &ctx)
void getLevelByClass(Aurora::NWScript::FunctionContext &ctx)
void getIsOpen(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundChangeDay(Aurora::NWScript::FunctionContext &ctx)
static const Aurora::NWScript::Variable kDefaultInt0((int32) 0)
void sqrt(Aurora::NWScript::FunctionContext &ctx)
int32_t int32
Definition: types.h:203
void isObjectPartyMember(Aurora::NWScript::FunctionContext &ctx)
void musicBackgroundStop(Aurora::NWScript::FunctionContext &ctx)