1 #define INDEPENDENT_ATTACK_FINISHED
3 noref float require_spawnfunc_prefix; // if this float exists, only functions with spawnfunc_ name prefix qualify as spawn functions
5 #define BUTTON_ATCK button0
6 #define BUTTON_JUMP button2
7 #define BUTTON_ATCK2 button3
8 #define BUTTON_ZOOM button4
9 #define BUTTON_CROUCH button5
10 #define BUTTON_HOOK button6
11 #define BUTTON_INFO button7
12 #define BUTTON_CHAT buttonchat
13 #define BUTTON_USE buttonuse
14 #define BUTTON_DRAG button8
15 #define BUTTON_ZOOMSCRIPT button9
19 float ctf_score_value(string parameter);
21 float g_dm, g_domination, g_ctf, g_tdm, g_keyhunt, g_onslaught, g_assault, g_arena, g_ca, g_lms, g_runematch, g_race, g_nexball, g_cts, g_freezetag, g_keepaway;
22 float g_cloaked, g_footsteps, g_jump_grunt, g_grappling_hook, g_midair, g_minstagib, g_pinata, g_norecoil, g_minstagib_invis_alpha, g_bloodloss;
24 float g_warmup_allguns;
25 float g_warmup_allow_timeout;
27 float g_ctf_ignore_frags;
29 float g_race_qualifying;
31 float g_pickup_respawntime_weapon;
32 float g_pickup_respawntime_ammo;
33 float g_pickup_respawntime_short;
34 float g_pickup_respawntime_medium;
35 float g_pickup_respawntime_long;
36 float g_pickup_respawntime_powerup;
37 float g_pickup_respawntimejitter_weapon;
38 float g_pickup_respawntimejitter_ammo;
39 float g_pickup_respawntimejitter_short;
40 float g_pickup_respawntimejitter_medium;
41 float g_pickup_respawntimejitter_long;
42 float g_pickup_respawntimejitter_powerup;
53 float bots_would_leave;
54 float lms_lowest_lives;
56 float LMS_NewPlayerLives();
58 void UpdateFrags(entity player, float f);
61 float team1_score, team2_score, team3_score, team4_score;
67 .void(entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force) event_damage;
88 .float pain_finished; //Added by Supajoe
89 .float pain_frame; //"
90 .float statdraintime; // record the one-second intervals between draining health and armour when they're over 100
91 .float crouch; // Crouching or not?
93 .float strength_finished;
94 //.float speed_finished;
95 .float invincible_finished;
96 //.float slowmo_finished;
98 .vector finaldest, finalangle; //plat.qc stuff
101 .float t_length, t_width;
103 .vector destvec; // for rain
104 .float cnt; // for rain
114 // player animation state
115 .float animstate_startframe;
116 .float animstate_numframes;
117 .float animstate_framerate;
118 .float animstate_starttime;
119 .float animstate_endtime;
120 .float animstate_override;
121 .float animstate_looping;
123 // player animation data for this model
124 // each vector is as follows:
128 .vector anim_die1; // player dies
129 .vector anim_die2; // player dies differently
130 .vector anim_draw; // player pulls out a weapon
131 // .vector anim_duck; // player crouches (from idle to duckidle)
132 .vector anim_duckwalk; // player walking while crouching
133 .vector anim_duckjump; // player jumping from a crouch
134 .vector anim_duckidle; // player idling while crouching
135 .vector anim_idle; // player standing
136 .vector anim_jump; // player jump
137 .vector anim_pain1; // player flinches from pain
138 .vector anim_pain2; // player flinches from pain, differently
139 .vector anim_shoot; // player shoots
140 .vector anim_taunt; // player taunts others (FIXME: no code references this)
141 .vector anim_run; // player running forward
142 .vector anim_runbackwards; // player running backward
143 .vector anim_strafeleft; // player shuffling left quickly
144 .vector anim_straferight; // player shuffling right quickly
145 .vector anim_dead1; // player dead (must be identical to last frame of die1)
146 .vector anim_dead2; // player dead (must be identical to last frame of die2)
147 .vector anim_forwardright; // player running forward and right
148 .vector anim_forwardleft; // player running forward and left
149 .vector anim_backright; // player running backward and right
150 .vector anim_backleft; // player running back and left
151 .vector anim_melee; // player doing the melee action
152 .vector anim_duck; // player doing the melee action
153 .vector anim_duckwalkbackwards;
154 .vector anim_duckwalkstrafeleft;
155 .vector anim_duckwalkstraferight;
156 .vector anim_duckwalkforwardright;
157 .vector anim_duckwalkforwardleft;
158 .vector anim_duckwalkbackright;
159 .vector anim_duckwalkbackleft;
161 // weapon animation vectors:
167 void() player_setupanimsformodel;
168 void setanim(entity e, vector anim, float looping, float override, float restart);
178 .float respawntimejitter;
181 .float damageforcescale;
187 // for railgun damage (hitting multiple enemies)
189 .float railgunhitsolidbackup;
190 .vector railgunhitloc;
196 .float hitsound, typehitsound;
198 .float watersound_finished;
200 .float damagedbycontents;
203 .float pauseregen_finished;
204 .float pauserothealth_finished;
205 .float pauserotarmor_finished;
206 .float pauserotfuel_finished;
207 .string item_pickupsound;
209 // definitions for weaponsystem
211 .entity weaponentity;
212 .entity exteriorweaponentity;
213 .vector weaponentity_glowmod;
215 //.float weapon; // current weapon
216 .float switchweapon; // weapon requested to switch to
217 .float switchingweapon; // weapon currently being switched to (is copied from switchweapon once switch is possible)
218 .string weaponname; // name of .weapon
221 float weapon_action(float wpn, float wrequest);
222 float client_hasweapon(entity cl, float wpn, float andammo, float complain);
225 // VorteX: standalone think for weapons, so normal think on weaponentity can be reserved by weaponflashes (which needs update even player dies)
226 .float weapon_nextthink;
227 .void() weapon_think;
229 //float PLAYER_WEAPONSELECTION_DELAY = );
230 float PLAYER_WEAPONSELECTION_SPEED = 18;
231 vector PLAYER_WEAPONSELECTION_RANGE = '0 20 -40';
233 // weapon states (self.weaponentity.state)
234 float WS_CLEAR = 0; // no weapon selected
235 float WS_RAISE = 1; // raise frame
236 float WS_DROP = 2; // deselecting frame
237 float WS_INUSE = 3; // fire state
238 float WS_READY = 4; // idle frame
240 // there is 2 weapon tics that can run in one server frame
241 #define W_TICSPERFRAME 2
243 void weapon_defaultspawnfunc(float wpn);
245 string w_deathtypestring;
247 .vector dest1, dest2;
250 float intermission_running;
251 float intermission_exittime;
252 float alreadychangedlevel;
257 // Keys player is holding
259 // message delay for func_door locked by keys and key locks
260 // this field is used on player entities
261 .float key_door_messagetime;
267 .float jump_interval; // laser refire
270 .float in_swamp; // bool
271 .entity swampslug; // Uses this to release from swamp ("untouch" fix)
277 #define RESTART_COUNTDOWN 10
278 float restart_mapalreadyrestarted; //bool, indicates whether reset_map() was already executed
280 void restartTimer_Think();
281 float blockSpectators; //if set, new or existing spectators or observers will be removed unless they become a player within g_maxplayers_spectator_blocktime seconds
282 .float spectatortime; //point in time since the client is spectating or observing
283 void checkSpectatorBlock();
286 .float jointime; // time of joining
287 .float alivetime; // time of being alive
289 float nJoinAllowed(float includeMe);
290 #define PREVENT_JOIN_TEXT "^1You may not join the game at this time.\n\nThe player limit reached maximum capacity."
292 //sv_timeout: pauses the game by setting the gamespeed to a really low value (see TIMEOUT_SLOWMO_VALUE)
293 #define TIMEOUT_SLOWMO_VALUE 0.0001
294 float sys_frametime; // gets initialised in worlspawn, saves the value from autocvar_sys_ticrate
295 float remainingTimeoutTime; // contains the time in seconds that the active timeout has left
296 float remainingLeadTime; // contains the number of seconds left of the leadtime (before the timeout starts)
297 float timeoutStatus; // (values: 0, 1, 2) contains whether a timeout is not active (0), was called but still at leadtime (1) or is active (2)
298 .float allowedTimeouts; // contains the number of allowed timeouts for each player
299 entity timeoutInitiator; // contains the entity of the player who started the last timeout
300 float orig_slowmo; // contains the value of autocvar_slowmo so that, after timeout finished, it isn't set to slowmo 1 necessarily
301 .vector lastV_angle; //used when pausing the game in order to force the player to keep his old view angle fixed
302 entity timeoutHandler; //responsible for centerprinting the timeout countdowns and playing sounds
303 void timeoutHandler_Think();
304 void evaluateTimeout();
305 void evaluateTimein();
307 .float spawnshieldtime;
309 .float lms_nextcheck;
310 .float lms_traveled_distance;
318 .float noalign; // if set to 1, the item or spawnpoint won't be dropped to the floor
322 .vector death_origin;
323 .vector killer_origin;
325 float default_player_alpha;
326 float default_weapon_alpha;
328 .float() customizeentityforclient;
329 .float cvar_cl_handicap;
330 .float cvar_cl_playerdetailreduction;
331 .float cvar_cl_clippedspectating;
332 .float cvar_cl_autoscreenshot;
333 .float cvar_cl_movement_track_canjump;
334 .float cvar_cl_newusekeysupported;
336 .string cvar_g_xonoticversion;
337 .string cvar_cl_weaponpriority;
338 .string cvar_cl_weaponpriorities[10];
339 #ifdef ALLOW_FORCEMODELS
340 .float cvar_cl_forceplayermodels;
341 .float cvar_cl_forceplayermodelsfromxonotic;
342 float sv_clforceplayermodels;
344 float sv_loddistance1;
345 float sv_loddistance2;
346 .float cvar_cl_gunalign;
347 .float cvar_cl_noantilag;
349 .string weaponorder_byimpulse;
351 .float cvar_cl_allow_uid2name;
352 .float cvar_cl_allow_uidtracking;
353 .string stored_netname;
355 void Announce(string snd);
356 void AnnounceTo(entity e, string snd);
358 .float version_nagtime;
360 .float modelindex_lod0;
361 .float modelindex_lod0_from_xonotic;
363 .float modelindex_lod1;
364 .float modelindex_lod2;
366 #define NUM_JUMPPADSUSED 3
368 .entity jumppadsused[NUM_JUMPPADSUSED];
370 string gamemode_name;
372 float startitem_failed;
374 void DropFlag(entity flag, entity penalty_receiver, entity attacker);
375 void DropBall(entity ball, vector org, vector vel);
376 void DropAllRunes(entity pl);
379 typedef .float floatfield;
380 floatfield Item_CounterField(float it);
382 float W_AmmoItemCode(float wpn);
383 float W_WeaponBit(float wpn);
384 string W_Name(float weaponid);
386 void FixIntermissionClient(entity e);
387 void FixClientCvars(entity e);
391 .float respawn_countdown; // next number to count
393 float bot_waypoints_for_items;
395 .float attack_finished_for[WEP_MAXCOUNT];
396 .float attack_finished_single;
397 #ifdef INDEPENDENT_ATTACK_FINISHED
398 #define ATTACK_FINISHED_FOR(ent,w) ((ent).(attack_finished_for[(w) - WEP_FIRST]))
400 #define ATTACK_FINISHED_FOR(ent,w) ((ent).attack_finished_single)
402 #define ATTACK_FINISHED(ent) ATTACK_FINISHED_FOR(ent,(ent).weapon)
404 // assault game mode: Which team is attacking in this round?
405 float assault_attacker_team;
407 // speedrun: when 1, player auto teleports back when capture timeout happens
416 float some_spawn_has_been_used;
417 float have_team_spawns; // 0 = no team spawns requested, -1 = team spawns requested but none found, 1 = team spawns requested and found
418 float have_team_spawns_forteam[17]; // 0 = this team has no spawns, 1 = this team has spawns; team 0 is the "no-team"
420 // set when showing a kill countdown
421 .entity killindicator;
422 .float killindicator_teamchange;
424 void Damage (entity targ, entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force);
428 .float parm_idlesince;
430 float sv_maxidle_spectatorsareidle;
432 float tracebox_hits_trigger_hurt(vector start, vector mi, vector ma, vector end);
438 .float(entity to, float sendflags) SendEntity;
440 // player sounds, voice messages
441 // TODO implemented fall and falling
442 #define ALLPLAYERSOUNDS \
455 #define ALLVOICEMSGS \
457 _VOICEMSG(attackinfive) \
460 _VOICEMSG(freelance) \
461 _VOICEMSG(incoming) \
463 _VOICEMSG(needhelp) \
464 _VOICEMSG(seenflag) \
468 #define _VOICEMSG(m) .string playersound_##m;
473 // reserved sound names for the future (some models lack sounds for them):
474 // _VOICEMSG(flagcarriertakingdamage) \
475 // _VOICEMSG(getflag) \
476 // reserved sound names for the future (ALL models lack sounds for them):
477 // _VOICEMSG(affirmative) \
478 // _VOICEMSG(attacking) \
479 // _VOICEMSG(defending) \
480 // _VOICEMSG(roaming) \
481 // _VOICEMSG(onmyway) \
482 // _VOICEMSG(droppedflag) \
483 // _VOICEMSG(negative) \
484 // _VOICEMSG(seenenemy) \
486 string globalsound_fall;
487 string globalsound_metalfall;
488 string globalsound_step;
489 string globalsound_metalstep;
491 #define VOICETYPE_PLAYERSOUND 10
492 #define VOICETYPE_TEAMRADIO 11
493 #define VOICETYPE_LASTATTACKER 12
494 #define VOICETYPE_LASTATTACKER_ONLY 13
495 #define VOICETYPE_AUTOTAUNT 14
496 #define VOICETYPE_TAUNT 15
498 void PrecachePlayerSounds(string f);
499 void PrecacheGlobalSound(string samplestring);
500 void UpdatePlayerSounds();
501 void ClearPlayerSounds();
502 void PlayerSound(.string samplefield, float channel, float voicetype);
503 void GlobalSound(string samplestring, float channel, float voicetype);
504 void FakeGlobalSound(string samplestring, float channel, float voicetype);
505 void VoiceMessage(string type, string message);
506 float GetPlayerSoundSampleField_notFound;
507 .string GetVoiceMessageSampleField(string type)
510 .float cvar_cl_autotaunt;
511 .float cvar_cl_voice_directional;
512 .float cvar_cl_voice_directional_taunt_attenuation;
514 .float version_mismatch;
516 float independent_players;
517 #define INDEPENDENT_PLAYERS (autocvar__independent_players ? (autocvar__independent_players > 0) : independent_players)
518 #define IS_INDEPENDENT_PLAYER(e) ((e).solid == SOLID_TRIGGER)
519 #define MAKE_INDEPENDENT_PLAYER(e) (((e).solid = SOLID_TRIGGER) + ((e).frags = FRAGS_PLAYER_NONSOLID))
520 // we're using + here instead of , because fteqcc sucks
527 .float porto_forbidden;
532 string cvar_purechanges;
533 float cvar_purechanges_count;
535 float game_starttime; //point in time when the countdown is over
536 .float stat_game_starttime;
538 .float stat_sv_airaccel_qw;
539 .float stat_sv_airstrafeaccel_qw;
540 .float stat_sv_airspeedlimit_nonqw;
541 .float stat_sv_maxspeed;
543 void W_Porto_Remove (entity p);
545 .float projectiledeathtype;
549 vector railgun_start, railgun_end; // filled by FireRailgunBullet, used by damage code for head shot
550 .float stat_allow_oldnexbeam;
552 // reset to 0 on weapon switch
553 // may be useful to all weapons
554 .float bulletcounter;
556 void target_voicescript_next(entity pl);
557 void target_voicescript_clear(entity pl);
562 .float target_random;
563 .float trigger_reverse;
566 .entity ballcarried; // Also used for keepaway
568 float g_nexball_meter_period;
570 void SUB_DontUseTargets();
571 void SUB_UseTargets();
573 .void() reset; // if set, an entity is reset using this
574 .void() reset2; // if set, an entity is reset using this (after calling ALL the reset functions for other entities)
576 void ClientData_Touch(entity e);
578 vector debug_shotorg; // if non-zero, overrides the shot origin of all weapons
582 float servertime, serverprevtime, serverframetime;
591 .float nickspamtime; // time of last nick change
592 .float nickspamcount;
593 .float floodcontrol_chat;
594 .float floodcontrol_chatteam;
595 .float floodcontrol_chattell;
596 .float floodcontrol_voice;
597 .float floodcontrol_voiceteam;
599 .float stat_shotorg; // networked stat for trueaim HUD
610 .float stat_leadlimit;
612 float radar_showennemies;
615 float client_cefc_accumulator;
616 float client_cefc_accumulatortime;
619 ..float current_ammo;
621 .float weapon_load[WEP_MAXCOUNT];
622 .float ammo_none; // used by the reloading system, must always be 0
624 .float old_clip_load;
626 .float minelayer_mines;
628 .float grab; // 0 = can't grab, 1 = owner can grab, 2 = owner and team mates can grab, 3 = anyone can grab
630 #define PROJECTILE_MAKETRIGGER(e) (e).solid = SOLID_CORPSE; (e).dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE
631 // when doing this, hagar can go through clones
632 // #define PROJECTILE_MAKETRIGGER(e) (e).solid = SOLID_BBOX
634 .float spectatee_status;
636 .float bloodloss_timer;
646 .float cvar_cl_accuracy_data_share;
647 .float cvar_cl_accuracy_data_receive;
649 .float cvar_cl_weaponimpulsemode;
650 .float selectweapon; // last selected weapon of the player
652 .float ballistics_density; // wall piercing factor, larger = bullet can pass through more
655 #define ACTIVE_ACTIVE 1
656 #define ACTIVE_IDLE 2
657 #define ACTIVE_BUSY 2
658 #define ACTIVE_TOGGLE 3
660 .float (float act_state) setactive;
664 .float nex_charge_rottime;
665 .float nex_chargepool_ammo;
669 float allowed_to_spawn; // boolean variable used by the clan arena code to determine if a player can spawn (after the round has ended)
673 .float team_forced; // can be a team number to force a team, or 0 for default action, or -1 for forced spectator
675 .float freezetag_frozen;
676 .float freezetag_revive_progress;
678 .entity muzzle_flash;
679 .float misc_bulletcounter; // replaces uzi & hlac bullet counter.
683 typedef vector(entity player, entity spot, vector current) spawn_evalfunc_t;
684 .spawn_evalfunc_t spawn_evalfunc;