]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/defs.qh
log carried keys as K in sv_eventlog frag output; update makebuild
[divverent/nexuiz.git] / data / qcsrc / server / defs.qh
1 // Globals
2
3 float sv_cheats;
4
5 entity  activator;
6 string  string_null;
7
8 float player_count;
9 float currentbots;
10 float bots_would_leave;
11 float lms_lowest_lives;
12 float lms_next_place;
13 float() LMS_NewPlayerLives;
14
15 void(entity player, float f) UpdateFrags;
16 .float totalfrags;
17
18 float team1_score, team2_score, team3_score, team4_score;
19
20 float maxclients;
21
22 #define NEWLINES "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"
23
24 // Fields
25
26 .void(entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force) event_damage;
27
28 //.string       wad;
29 //.string       map;
30
31 //.float        worldtype;
32 .float  delay;
33 .float  wait;
34 .float  lip;
35 //.float        light_lev;
36 .float  speed;
37 //.float        style;
38 //.float        skill;
39 .float  sounds;
40
41 .string killtarget;
42
43 .vector pos1, pos2;
44 .vector mangle;
45
46 .float  attack_finished;
47 .float  attack_finished_old;
48 .float  pain_finished;                  //Added by Supajoe
49 .float  pain_frame;                     //"
50 .float  statdraintime;                  // record the one-second intervals between draining health and armour when they're over 100
51 .float  crouch; // Crouching or not?
52
53 .float  strength_finished;
54 //.float        speed_finished;
55 .float  invincible_finished;
56 //.float        slowmo_finished;
57
58 .vector         finaldest, finalangle;          //plat.qc stuff
59 .void()         think1;
60 .float state;
61 .float          t_length, t_width;
62
63 .vector destvec;                // for rain
64 .float cnt;             // for rain
65 .float count;
66 //.float cnt2;
67
68 .float play_time;
69 .float death_time;
70 .float dead_time;
71 .float dead_frame;
72 .float die_frame;
73 .float fade_time;
74 .float fade_rate;
75
76 .string mdl;
77
78 .string playermodel;
79 .string playerskin;
80
81 .float  respawntime;
82 //.float        chasecam;
83
84 .float  damageforcescale;
85
86 //.float          gravity;
87
88 .float          dmg;
89
90 // for railgun damage (hitting multiple enemies)
91 .float railgunhit;
92 .float railgunhitsolidbackup;
93 .vector railgunhitloc;
94
95 .float          air_finished;
96 .float          dmgtime;
97
98 .float          killcount;
99 .float hitsound;
100
101 .float watersound_finished;
102 .float iscreature;
103 .vector oldvelocity;
104
105 .float pauseregen_finished;
106 .float pauserothealth_finished;
107 .float pauserotarmor_finished;
108 .string item_pickupsound;
109
110 // definitions for weaponsystem
111
112 .entity weaponentity;
113 .entity exteriorweaponentity;
114 .float switchweapon;
115 .float autoswitch;
116 float(float wpn, float wrequest) weapon_action;
117 float(entity cl, float wpn, float andammo, float complain) client_hasweapon;
118 void() w_clear;
119 void() w_ready;
120 // VorteX: standalone think for weapons, so normal think on weaponentity can be reserved by weaponflashes (which needs update even player dies)
121 .float weapon_nextthink;
122 .void() weapon_think;
123 .float weapon_nextthink_lastframe;
124
125 //float PLAYER_WEAPONSELECTION_DELAY = );
126 float   PLAYER_WEAPONSELECTION_SPEED = 18;
127 vector  PLAYER_WEAPONSELECTION_RANGE = '0 20 -40';
128
129 // weapon states (self.weaponentity.state)
130 float WS_CLEAR                  = 0; // no weapon selected
131 float WS_RAISE                  = 1; // raise frame
132 float WS_DROP                   = 2; // deselecting frame
133 float WS_INUSE                  = 3; // fire state
134 float WS_READY                  = 4; // idle frame
135
136 // weapon requests
137 float WR_SETUP            = 1; // setup weapon data
138 float WR_THINK            = 2; // logic to run every frame
139 float WR_CHECKAMMO1       = 3; // checks ammo for weapon
140 float WR_CHECKAMMO2       = 4; // checks ammo for weapon
141 float WR_AIM              = 5; // runs bot aiming code for this weapon
142 float WR_PRECACHE         = 6; // precaches models/sounds used by this weapon
143
144 // Weapon indexes
145 float WEP_LASER                         = 1; // float   IT_LASER                                = 4096;
146 float WEP_SHOTGUN                       = 2; // float   IT_SHOTGUN                              = 1;
147 float WEP_UZI                           = 3; // float   IT_UZI                                  = 2;
148 float WEP_GRENADE_LAUNCHER      = 4; // float   IT_GRENADE_LAUNCHER             = 4;
149 float WEP_ELECTRO                       = 5; // float   IT_ELECTRO                              = 8;
150 float WEP_CRYLINK                       = 6; // float   IT_CRYLINK                              = 16;
151 float WEP_NEX                           = 7; // float   IT_NEX                                  = 32;
152 float WEP_HAGAR                         = 8; // float   IT_HAGAR                                = 64;
153 float WEP_ROCKET_LAUNCHER       = 9; // float   IT_ROCKET_LAUNCHER              = 128;
154
155 // For weapon cycling commands
156 float WEP_FIRST                         = 1;
157 float WEP_LAST                          = 9;
158
159 void(entity client, string s)   stuffcmd = #21;
160 void(entity client, string s)   sprint = #24;
161 vector(entity e, float sped)    aim = #44;
162 void(entity client, string s)   centerprint_builtin = #73;
163 void(entity e)                  setspawnparms = #78;
164 void(float to, float f)         WriteByte = #52;
165 void(float to, float f)         WriteChar = #53;
166 void(float to, float f)         WriteShort = #54;
167 void(float to, float f)         WriteLong = #55;
168 void(float to, float f)         WriteCoord = #56;
169 void(float to, float f)         WriteAngle = #57;
170 void(float to, string s)        WriteString     = #58;
171 void(float to, entity s)        WriteEntity     = #59;
172 .vector dest1, dest2;
173
174 float gameover;
175 float intermission_running;
176 float intermission_exittime;
177 float alreadychangedlevel;
178
179
180 .float runes;
181
182
183 .float welcomemessage_time;
184 .float version;
185
186 // stahl's voting
187 float votecalled;
188 string votecalledvote;
189 float votecalledmaster;
190 entity votecaller;
191 float votefinished;
192 .float vote_master;
193 .float vote_next;
194 .float vote_vote;
195 void VoteThink();
196 string VoteParse();
197 float VoteAllowed(string vote);
198 void VoteReset();
199 void VoteAccept();
200 void VoteReject();
201 void VoteTimeout();
202 void VoteStop(entity stopper);
203 void VoteCount();
204
205 // Wazat's grappling hook
206 .entity         hook;
207 void GrapplingHookFrame();
208 void RemoveGrapplingHook(entity pl);
209 void SetGrappleHookBindings();
210 // hook impulses
211 float GRAPHOOK_FIRE             = 20;
212 float GRAPHOOK_RELEASE          = 21;
213 // (note: you can change the hook impulse #'s to whatever you please)
214 .float hook_time;
215
216 // Laser target for laser-guided weapons
217 .entity lasertarget;
218 .float laser_on;
219
220 // minstagib vars
221 .float jump_interval;    // laser refire
222
223 //swamp
224 .float in_swamp;              // bool
225 .entity swampslug;            // Uses this to release from swamp ("untouch" fix)
226
227 // footstep interval
228 .float nextstep;
229
230 .float ready;
231
232 .float winning;
233 .float deaths;
234 .float jointime;
235
236 .float spawnshieldtime;
237
238 .float lms_nextcheck;
239 .float lms_traveled_distance;
240
241 .entity flagcarried;
242
243 .entity lastrocket;
244
245 .float playerid;
246 float playerid_last;
247 .float noalign;         // if set to 1, the item or spawnpoint won't be dropped to the floor
248
249 .vector spawnorigin;
250
251 .vector death_origin;
252 .vector killer_origin;
253
254 .float isdecor;
255
256 float default_player_alpha;
257 float default_weapon_alpha;
258
259 .float has_zoomed;
260
261 .float() customizeentityforclient;
262 .float cvar_cl_zoomfactor;
263 .float cvar_cl_zoomspeed;
264 .float cvar_cl_playerdetailreduction;
265 .float cvar_cl_nogibs;
266 .float cvar_scr_centertime;
267 .float cvar_cl_shownames;
268 .float cvar_cl_hidewaypoints;
269 .string cvar_g_nexuizversion;
270
271 .float version_nagtime;
272
273 #ifdef ALLOW_VARIABLE_LOD
274 .float modelindex_lod0;
275 .float modelindex_lod1;
276 .float modelindex_lod2;
277 #endif
278
279 #define NUM_JUMPPADSUSED 3
280 .float jumppadcount;
281 .entity jumppadsused[NUM_JUMPPADSUSED];
282
283 string gamemode_name;
284 float teams_matter;
285
286 float startitem_failed;
287
288 void DropFlag(entity flag);
289 void DropAllRunes(entity pl);
290
291
292 typedef .float floatfield;
293 floatfield Item_CounterField(float it);
294 float Item_WeaponCode(float it);
295 void Item_SpawnByItemCode(float it);
296
297 float W_AmmoItemCode(float wpn);
298 float W_ItemCode(float wpn);
299 string W_Name(float weaponid);
300
301 void UpdateSelectedPlayer();
302 void ClearSelectedPlayer();
303 .entity selected_player;
304 .entity last_selected_player;
305 .float selected_player_time; // when this player has been selected
306 .float selected_player_count; // how long this player has been directly pointed to
307 .float selected_player_display_needs_update; // are regular updates necessary? (health)
308 .float selected_player_display_timeout; // when the selection will time out
309
310 void FixIntermissionClient(entity e);
311 void FixClientCvars(entity e);
312
313 float itemsInMap;
314
315 void centerprint_atprio(entity e, float prio, string s);
316 void centerprint_expire(entity e, float prio);
317 void centerprint(entity e, string s);
318
319 .float respawn_countdown; // next number to count
320
321 float bot_waypoints_for_items;