Quake-III-Arena

Quake III Arena GPL Source Release
Log | Files | Refs

g_syscalls.asm (6236B)


      1 code
      2 
      3 equ	trap_Printf				-1
      4 equ	trap_Error				-2
      5 equ	trap_Milliseconds		-3
      6 equ	trap_Cvar_Register		-4
      7 equ	trap_Cvar_Update		-5
      8 equ	trap_Cvar_Set			-6
      9 equ	trap_Cvar_VariableIntegerValue	-7
     10 equ	trap_Cvar_VariableStringBuffer	-8
     11 equ	trap_Argc				-9
     12 equ	trap_Argv				-10
     13 equ	trap_FS_FOpenFile		-11
     14 equ	trap_FS_Read			-12
     15 equ	trap_FS_Write			-13
     16 equ	trap_FS_FCloseFile		-14
     17 equ	trap_SendConsoleCommand	-15
     18 equ	trap_LocateGameData		-16
     19 equ	trap_DropClient			-17
     20 equ	trap_SendServerCommand	-18
     21 equ	trap_SetConfigstring	-19
     22 equ	trap_GetConfigstring	-20
     23 equ	trap_GetUserinfo		-21
     24 equ	trap_SetUserinfo		-22
     25 equ	trap_GetServerinfo		-23
     26 equ	trap_SetBrushModel		-24
     27 equ	trap_Trace				-25
     28 equ	trap_PointContents		-26
     29 equ trap_InPVS				-27
     30 equ	trap_InPVSIgnorePortals	-28
     31 equ	trap_AdjustAreaPortalState	-29
     32 equ	trap_AreasConnected		-30
     33 equ	trap_LinkEntity			-31
     34 equ	trap_UnlinkEntity		-32
     35 equ	trap_EntitiesInBox		-33
     36 equ	trap_EntityContact		-34
     37 equ	trap_BotAllocateClient	-35
     38 equ	trap_BotFreeClient		-36
     39 equ	trap_GetUsercmd			-37
     40 equ	trap_GetEntityToken		-38
     41 equ	trap_FS_GetFileList		-39
     42 equ trap_DebugPolygonCreate	-40
     43 equ trap_DebugPolygonDelete	-41
     44 equ trap_RealTime			-42
     45 equ trap_SnapVector			-43
     46 equ trap_TraceCapsule		-44
     47 equ trap_EntityContactCapsule	-45
     48 equ trap_FS_Seek -46
     49 
     50 equ	memset					-101
     51 equ	memcpy					-102
     52 equ	strncpy					-103
     53 equ	sin						-104
     54 equ	cos						-105
     55 equ	atan2					-106
     56 equ	sqrt					-107
     57 equ floor					-111
     58 equ	ceil					-112
     59 equ	testPrintInt			-113
     60 equ	testPrintFloat			-114
     61 
     62 
     63 
     64 equ trap_BotLibSetup					-201
     65 equ trap_BotLibShutdown					-202
     66 equ trap_BotLibVarSet					-203
     67 equ trap_BotLibVarGet					-204
     68 equ trap_BotLibDefine					-205
     69 equ trap_BotLibStartFrame				-206
     70 equ trap_BotLibLoadMap					-207
     71 equ trap_BotLibUpdateEntity				-208
     72 equ trap_BotLibTest						-209
     73 
     74 equ trap_BotGetSnapshotEntity			-210
     75 equ trap_BotGetServerCommand		-211
     76 equ trap_BotUserCommand					-212
     77 
     78 
     79 
     80 equ trap_AAS_EnableRoutingArea		-301
     81 equ trap_AAS_BBoxAreas				-302
     82 equ trap_AAS_AreaInfo				-303
     83 equ trap_AAS_EntityInfo					-304
     84 
     85 equ trap_AAS_Initialized				-305
     86 equ trap_AAS_PresenceTypeBoundingBox	-306
     87 equ trap_AAS_Time						-307
     88 
     89 equ trap_AAS_PointAreaNum				-308
     90 equ trap_AAS_TraceAreas					-309
     91 
     92 equ trap_AAS_PointContents				-310
     93 equ trap_AAS_NextBSPEntity				-311
     94 equ trap_AAS_ValueForBSPEpairKey		-312
     95 equ trap_AAS_VectorForBSPEpairKey		-313
     96 equ trap_AAS_FloatForBSPEpairKey		-314
     97 equ trap_AAS_IntForBSPEpairKey			-315
     98 
     99 equ trap_AAS_AreaReachability			-316
    100 
    101 equ trap_AAS_AreaTravelTimeToGoalArea	-317
    102 
    103 equ trap_AAS_Swimming					-318
    104 equ trap_AAS_PredictClientMovement		-319
    105 
    106 
    107 
    108 equ trap_EA_Say							-401
    109 equ trap_EA_SayTeam						-402
    110 equ trap_EA_Command						-403
    111 
    112 equ trap_EA_Action						-404
    113 equ trap_EA_Gesture						-405
    114 equ trap_EA_Talk						-406
    115 equ trap_EA_Attack						-407
    116 equ trap_EA_Use							-408
    117 equ trap_EA_Respawn						-409
    118 equ trap_EA_Crouch						-410
    119 equ trap_EA_MoveUp						-411
    120 equ trap_EA_MoveDown					-412
    121 equ trap_EA_MoveForward					-413
    122 equ trap_EA_MoveBack					-414
    123 equ trap_EA_MoveLeft					-415
    124 equ trap_EA_MoveRight					-416
    125 
    126 equ trap_EA_SelectWeapon				-417
    127 equ trap_EA_Jump						-418
    128 equ trap_EA_DelayedJump					-419
    129 equ trap_EA_Move						-420
    130 equ trap_EA_View						-421
    131 
    132 equ trap_EA_EndRegular					-422
    133 equ trap_EA_GetInput					-423
    134 equ trap_EA_ResetInput					-424
    135 
    136 
    137 
    138 equ trap_BotLoadCharacter				-501
    139 equ trap_BotFreeCharacter				-502
    140 equ trap_Characteristic_Float			-503
    141 equ trap_Characteristic_BFloat			-504
    142 equ trap_Characteristic_Integer			-505
    143 equ trap_Characteristic_BInteger		-506
    144 equ trap_Characteristic_String			-507
    145 
    146 equ trap_BotAllocChatState				-508
    147 equ trap_BotFreeChatState				-509
    148 equ trap_BotQueueConsoleMessage			-510
    149 equ trap_BotRemoveConsoleMessage		-511
    150 equ trap_BotNextConsoleMessage			-512
    151 equ trap_BotNumConsoleMessages			-513
    152 equ trap_BotInitialChat					-514
    153 equ trap_BotReplyChat					-515
    154 equ trap_BotChatLength					-516
    155 equ trap_BotEnterChat					-517
    156 equ trap_StringContains					-518
    157 equ trap_BotFindMatch					-519
    158 equ trap_BotMatchVariable				-520
    159 equ trap_UnifyWhiteSpaces				-521
    160 equ trap_BotReplaceSynonyms				-522
    161 equ trap_BotLoadChatFile				-523
    162 equ trap_BotSetChatGender				-524
    163 equ trap_BotSetChatName					-525
    164 
    165 equ trap_BotResetGoalState				-526
    166 equ trap_BotResetAvoidGoals				-527
    167 equ trap_BotPushGoal					-528
    168 equ trap_BotPopGoal						-529
    169 equ trap_BotEmptyGoalStack				-530
    170 equ trap_BotDumpAvoidGoals				-531
    171 equ trap_BotDumpGoalStack				-532
    172 equ trap_BotGoalName					-533
    173 equ trap_BotGetTopGoal					-534
    174 equ trap_BotGetSecondGoal				-535
    175 equ trap_BotChooseLTGItem				-536
    176 equ trap_BotChooseNBGItem				-537
    177 equ trap_BotTouchingGoal				-538
    178 equ trap_BotItemGoalInVisButNotVisible	-539
    179 equ trap_BotGetLevelItemGoal			-540
    180 equ trap_BotAvoidGoalTime				-541
    181 equ trap_BotInitLevelItems				-542
    182 equ trap_BotUpdateEntityItems			-543
    183 equ trap_BotLoadItemWeights				-544
    184 equ trap_BotFreeItemWeights				-546
    185 equ trap_BotSaveGoalFuzzyLogic			-546
    186 equ trap_BotAllocGoalState				-547
    187 equ trap_BotFreeGoalState				-548
    188 
    189 equ trap_BotResetMoveState				-549
    190 equ trap_BotMoveToGoal					-550
    191 equ trap_BotMoveInDirection				-551
    192 equ trap_BotResetAvoidReach				-552
    193 equ trap_BotResetLastAvoidReach			-553
    194 equ trap_BotReachabilityArea			-554
    195 equ trap_BotMovementViewTarget			-555
    196 equ trap_BotAllocMoveState				-556
    197 equ trap_BotFreeMoveState				-557
    198 equ trap_BotInitMoveState				-558
    199 
    200 equ trap_BotChooseBestFightWeapon		-559
    201 equ trap_BotGetWeaponInfo				-560
    202 equ trap_BotLoadWeaponWeights			-561
    203 equ trap_BotAllocWeaponState			-562
    204 equ trap_BotFreeWeaponState				-563
    205 equ trap_BotResetWeaponState			-564
    206 equ trap_GeneticParentsAndChildSelection -565
    207 equ trap_BotInterbreedGoalFuzzyLogic	-566
    208 equ trap_BotMutateGoalFuzzyLogic		-567
    209 equ trap_BotGetNextCampSpotGoal			-568
    210 equ trap_BotGetMapLocationGoal			-569
    211 equ trap_BotNumInitialChats				-570
    212 equ trap_BotGetChatMessage				-571
    213 equ trap_BotRemoveFromAvoidGoals		-572
    214 equ trap_BotPredictVisiblePosition		-573
    215 equ trap_BotSetAvoidGoalTime			-574
    216 equ trap_BotAddAvoidSpot				-575
    217 equ trap_AAS_AlternativeRouteGoals		-576
    218 equ trap_AAS_PredictRoute				-577
    219 equ trap_AAS_PointReachabilityAreaIndex	-578
    220 
    221 equ trap_BotLibLoadSource				-579
    222 equ trap_BotLibFreeSource				-580
    223 equ trap_BotLibReadToken				-581
    224 equ trap_BotLibSourceFileAndLine		-582
    225