]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/cl_weaponsystem.qc
Attempt to setup a better system for detecting if the weapon still has ammo loading...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / cl_weaponsystem.qc
1 /*
2 ===========================================================================
3
4   CLIENT WEAPONSYSTEM CODE
5   Bring back W_Weaponframe
6
7 ===========================================================================
8 */
9
10 .float weapon_frametime;
11
12 float W_WeaponRateFactor()
13 {
14         float t;
15         t = 1.0 / g_weaponratefactor;
16
17         if(g_runematch)
18         {
19                 if(self.runes & RUNE_SPEED)
20                 {
21                         if(self.runes & CURSE_SLOW)
22                                 t = t * autocvar_g_balance_rune_speed_combo_atkrate;
23                         else
24                                 t = t * autocvar_g_balance_rune_speed_atkrate;
25                 }
26                 else if(self.runes & CURSE_SLOW)
27                 {
28                         t = t * autocvar_g_balance_curse_slow_atkrate;
29                 }
30         }
31
32         return t;
33 }
34
35 void W_SwitchWeapon_Force(entity e, float w)
36 {
37         e.cnt = e.switchweapon;
38         e.switchweapon = w;
39         e.selectweapon = w;
40 }
41
42 .float antilag_debug;
43
44 // VorteX: static frame globals
45 float WFRAME_DONTCHANGE = -1;
46 float WFRAME_FIRE1 = 0;
47 float WFRAME_FIRE2 = 1;
48 float WFRAME_IDLE = 2;
49 float WFRAME_RELOAD = 3;
50 .float wframe;
51
52 void(float fr, float t, void() func) weapon_thinkf;
53
54 vector W_HitPlotUnnormalizedUntransform(vector screenforward, vector screenright, vector screenup, vector v)
55 {
56         vector ret;
57         ret_x = screenright * v;
58         ret_y = screenup * v;
59         ret_z = screenforward * v;
60         return ret;
61 }
62
63 vector W_HitPlotNormalizedUntransform(vector org, entity targ, vector screenforward, vector screenright, vector screenup, vector v)
64 {
65         float i, j, k;
66         vector mi, ma, thisv, myv, ret;
67
68         myv = W_HitPlotUnnormalizedUntransform(screenforward, screenright, screenup, org);
69
70         // x = 0..1 relative to hitbox; y = 0..1 relative to hitbox; z = distance
71
72         for(i = 0; i < 2; ++i) for(j = 0; j < 2; ++j) for(k = 0; k < 2; ++k)
73         {
74                 thisv = targ.origin;
75                 if(i) thisv_x += targ.maxs_x; else thisv_x += targ.mins_x;
76                 if(j) thisv_y += targ.maxs_y; else thisv_y += targ.mins_y;
77                 if(k) thisv_z += targ.maxs_z; else thisv_z += targ.mins_z;
78                 thisv = W_HitPlotUnnormalizedUntransform(screenforward, screenright, screenup, thisv);
79                 if(i || j || k)
80                 {
81                         if(mi_x > thisv_x) mi_x = thisv_x; if(ma_x < thisv_x) ma_x = thisv_x;
82                         if(mi_y > thisv_y) mi_y = thisv_y; if(ma_y < thisv_y) ma_y = thisv_y;
83                         //if(mi_z > thisv_z) mi_z = thisv_z; if(ma_z < thisv_z) ma_y = thisv_z;
84                 }
85                 else
86                 {
87                         // first run
88                         mi = ma = thisv;
89                 }
90         }
91
92         thisv = W_HitPlotUnnormalizedUntransform(screenforward, screenright, screenup, v);
93         ret_x = (thisv_x - mi_x) / (ma_x - mi_x);
94         ret_y = (thisv_y - mi_y) / (ma_y - mi_y);
95         ret_z = thisv_z - myv_z;
96         return ret;
97 }
98
99 void W_HitPlotAnalysis(entity player, vector screenforward, vector screenright, vector screenup)
100 {
101         vector hitplot;
102         vector org;
103         float lag;
104
105         if(player.hitplotfh >= 0)
106         {
107                 lag = ANTILAG_LATENCY(player);
108                 if(lag < 0.001)
109                         lag = 0;
110                 if(clienttype(player) != CLIENTTYPE_REAL)
111                         lag = 0; // only antilag for clients
112
113                 org = player.origin + player.view_ofs;
114                 traceline_antilag_force(player, org, org + screenforward * MAX_SHOT_DISTANCE, MOVE_NORMAL, player, lag);
115                 if(trace_ent.flags & FL_CLIENT)
116                 {
117                         antilag_takeback(trace_ent, time - lag);
118                         hitplot = W_HitPlotNormalizedUntransform(org, trace_ent, screenforward, screenright, screenup, trace_endpos);
119                         antilag_restore(trace_ent);
120                         fputs(player.hitplotfh, strcat(ftos(hitplot_x), " ", ftos(hitplot_y), " ", ftos(hitplot_z), " ", ftos(player.switchweapon), "\n"));
121                         //print(strcat(ftos(hitplot_x), " ", ftos(hitplot_y), " ", ftos(hitplot_z), "\n"));
122                 }
123         }
124 }
125
126 vector w_shotorg;
127 vector w_shotdir;
128 vector w_shotend;
129
130 // this function calculates w_shotorg and w_shotdir based on the weapon model
131 // offset, trueaim and antilag, and won't put w_shotorg inside a wall.
132 // make sure you call makevectors first (FIXME?)
133 .float prevstrengthsound;
134 .float prevstrengthsoundattempt;
135 void W_SetupShot_Dir_ProjectileSize_Range(entity ent, vector s_forward, vector mi, vector ma, float antilag, float recoil, string snd, float chan, float maxdamage, float range)
136 {
137         float nudge = 1; // added to traceline target and subtracted from result
138         local float oldsolid;
139         vector vecs, dv;
140         oldsolid = ent.dphitcontentsmask;
141         if(ent.weapon == WEP_SNIPERRIFLE)
142                 ent.dphitcontentsmask = DPCONTENTS_BODY | DPCONTENTS_CORPSE;
143         else
144                 ent.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE;
145         if(antilag)
146                 WarpZone_traceline_antilag(world, ent.origin + ent.view_ofs, ent.origin + ent.view_ofs + s_forward * range, MOVE_NORMAL, ent, ANTILAG_LATENCY(ent));
147                 // passing world, because we do NOT want it to touch dphitcontentsmask
148         else
149                 WarpZone_TraceLine(ent.origin + ent.view_ofs, ent.origin + ent.view_ofs + s_forward * range, MOVE_NOMONSTERS, ent);
150         ent.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE;
151
152         vector vf, vr, vu;
153         vf = v_forward;
154         vr = v_right;
155         vu = v_up;
156         w_shotend = WarpZone_UnTransformOrigin(WarpZone_trace_transform, trace_endpos); // warpzone support
157         v_forward = vf;
158         v_right = vr;
159         v_up = vu;
160
161         // un-adjust trueaim if shotend is too close
162         if(vlen(w_shotend - (ent.origin + ent.view_ofs)) < autocvar_g_trueaim_minrange)
163                 w_shotend = ent.origin + ent.view_ofs + s_forward * autocvar_g_trueaim_minrange;
164
165         // track max damage
166         if(accuracy_canbegooddamage(ent))
167                 accuracy_add(ent, ent.weapon, maxdamage, 0);
168
169         W_HitPlotAnalysis(ent, v_forward, v_right, v_up);
170
171         if(ent.weaponentity.movedir_x > 0)
172                 vecs = ent.weaponentity.movedir;
173         else
174                 vecs = '0 0 0';
175         if(debug_shotorg != '0 0 0')
176                 vecs = debug_shotorg;
177
178         dv = v_right * -vecs_y + v_up * vecs_z;
179         w_shotorg = ent.origin + ent.view_ofs + dv;
180
181         // now move the shotorg forward as much as requested if possible
182         if(antilag)
183         {
184                 if(ent.antilag_debug)
185                         tracebox_antilag(ent, w_shotorg, mi, ma, w_shotorg + v_forward * (vecs_x + nudge), MOVE_NORMAL, ent, ent.antilag_debug);
186                 else
187                         tracebox_antilag(ent, w_shotorg, mi, ma, w_shotorg + v_forward * (vecs_x + nudge), MOVE_NORMAL, ent, ANTILAG_LATENCY(ent));
188         }
189         else
190                 tracebox(w_shotorg, mi, ma, w_shotorg + v_forward * (vecs_x + nudge), MOVE_NORMAL, ent);
191         w_shotorg = trace_endpos - v_forward * nudge;
192         // calculate the shotdir from the chosen shotorg
193         w_shotdir = normalize(w_shotend - w_shotorg);
194
195         if (antilag)
196         if (!ent.cvar_cl_noantilag)
197         {
198                 if (autocvar_g_antilag == 1) // switch to "ghost" if not hitting original
199                 {
200                         traceline(w_shotorg, w_shotorg + w_shotdir * range, MOVE_NORMAL, ent);
201                         if (!trace_ent.takedamage)
202                         {
203                                 traceline_antilag_force (ent, w_shotorg, w_shotorg + w_shotdir * range, MOVE_NORMAL, ent, ANTILAG_LATENCY(ent));
204                                 if (trace_ent.takedamage && trace_ent.classname == "player")
205                                 {
206                                         entity e;
207                                         e = trace_ent;
208                                         traceline(w_shotorg, e.origin, MOVE_NORMAL, ent);
209                                         if(trace_ent == e)
210                                                 w_shotdir = normalize(trace_ent.origin - w_shotorg);
211                                 }
212                         }
213                 }
214                 else if(autocvar_g_antilag == 3) // client side hitscan
215                 {
216                         // this part MUST use prydon cursor
217                         if (ent.cursor_trace_ent)                 // client was aiming at someone
218                         if (ent.cursor_trace_ent != ent)         // just to make sure
219                         if (ent.cursor_trace_ent.takedamage)      // and that person is killable
220                         if (ent.cursor_trace_ent.classname == "player") // and actually a player
221                         {
222                                 // verify that the shot would miss without antilag
223                                 // (avoids an issue where guns would always shoot at their origin)
224                                 traceline(w_shotorg, w_shotorg + w_shotdir * range, MOVE_NORMAL, ent);
225                                 if (!trace_ent.takedamage)
226                                 {
227                                         // verify that the shot would hit if altered
228                                         traceline(w_shotorg, ent.cursor_trace_ent.origin, MOVE_NORMAL, ent);
229                                         if (trace_ent == ent.cursor_trace_ent)
230                                                 w_shotdir = normalize(ent.cursor_trace_ent.origin - w_shotorg);
231                                         else
232                                                 print("antilag fail\n");
233                                 }
234                         }
235                 }
236         }
237
238         ent.dphitcontentsmask = oldsolid; // restore solid type (generally SOLID_SLIDEBOX)
239
240         if (!g_norecoil)
241                 ent.punchangle_x = recoil * -1;
242
243         if (snd != "")
244                 sound (ent, chan, snd, VOL_BASE, ATTN_NORM);
245
246         if(ent.items & IT_STRENGTH)
247         if(!g_minstagib)
248         if(
249                 (time > ent.prevstrengthsound + autocvar_sv_strengthsound_antispam_time)
250                 ||
251                 (time > ent.prevstrengthsoundattempt + autocvar_sv_strengthsound_antispam_refire_threshold)
252         ) // prevent insane sound spam
253         {
254                 sound(ent, CHAN_AUTO, "weapons/strength_fire.wav", VOL_BASE, ATTN_NORM);
255                 ent.prevstrengthsound = time;
256         }
257         ent.prevstrengthsoundattempt = time;
258
259         // nudge w_shotend so a trace to w_shotend hits
260         w_shotend = w_shotend + normalize(w_shotend - w_shotorg) * nudge;
261 };
262
263 #define W_SetupShot_Dir_ProjectileSize(ent,s_forward,mi,ma,antilag,recoil,snd,chan,maxdamage) W_SetupShot_Dir_ProjectileSize_Range(ent, s_forward, mi, ma, antilag, recoil, snd, chan, maxdamage, MAX_SHOT_DISTANCE)
264 #define W_SetupShot_ProjectileSize(ent,mi,ma,antilag,recoil,snd,chan,maxdamage) W_SetupShot_Dir_ProjectileSize(ent, v_forward, mi, ma, antilag, recoil, snd, chan, maxdamage)
265 #define W_SetupShot_Dir(ent,s_forward,antilag,recoil,snd,chan,maxdamage) W_SetupShot_Dir_ProjectileSize(ent, s_forward, '0 0 0', '0 0 0', antilag, recoil, snd, chan, maxdamage)
266 #define W_SetupShot(ent,antilag,recoil,snd,chan,maxdamage) W_SetupShot_ProjectileSize(ent, '0 0 0', '0 0 0', antilag, recoil, snd, chan, maxdamage)
267 #define W_SetupShot_Range(ent,antilag,recoil,snd,chan,maxdamage,range) W_SetupShot_Dir_ProjectileSize_Range(ent, v_forward, '0 0 0', '0 0 0', antilag, recoil, snd, chan, maxdamage, range)
268
269 float CL_Weaponentity_CustomizeEntityForClient()
270 {
271         self.viewmodelforclient = self.owner;
272         if(other.classname == "spectator")
273                 if(other.enemy == self.owner)
274                         self.viewmodelforclient = other;
275         return TRUE;
276 }
277
278 float qcweaponanimation;
279 vector weapon_offset = '0 -10 0';
280 vector weapon_adjust = '10 0 -15';
281 .vector weapon_morph0origin;
282 .vector weapon_morph0angles;
283 .float  weapon_morph0time;
284 .vector weapon_morph1origin;
285 .vector weapon_morph1angles;
286 .float  weapon_morph1time;
287 .vector weapon_morph2origin;
288 .vector weapon_morph2angles;
289 .float  weapon_morph2time;
290 .vector weapon_morph3origin;
291 .vector weapon_morph3angles;
292 .float  weapon_morph3time;
293 .vector weapon_morph4origin;
294 .vector weapon_morph4angles;
295 .float  weapon_morph4time;
296 .string weaponname;
297 #define QCWEAPONANIMATION_ORIGIN(e) ((weapon_offset_x + e.view_ofs_x) * v_forward - (weapon_offset_y + e.view_ofs_y) * v_right + (weapon_offset_z + e.view_ofs_z) * v_up + weapon_adjust)
298
299 /*
300  * supported formats:
301  *
302  * 1. simple animated model, muzzle flash handling on h_ model:
303  *    h_tuba.dpm, h_tuba.dpm.framegroups - invisible model controlling the animation
304  *      tags:
305  *        shot = muzzle end (shot origin, also used for muzzle flashes)
306  *        shell = casings ejection point (must be on the right hand side of the gun)
307  *        weapon = attachment for v_tuba.md3
308  *    v_tuba.md3 - first and third person model
309  *    g_tuba.md3 - pickup model
310  *
311  * 2. simple animated model, muzzle flash handling on v_ model:
312  *    h_tuba.dpm, h_tuba.dpm.framegroups - invisible model controlling the animation
313  *      tags:
314  *        weapon = attachment for v_tuba.md3
315  *    v_tuba.md3 - first and third person model
316  *      tags:
317  *        shot = muzzle end (shot origin, also used for muzzle flashes)
318  *        shell = casings ejection point (must be on the right hand side of the gun)
319  *    g_tuba.md3 - pickup model
320  *
321  * 3. fully animated model, muzzle flash handling on h_ model:
322  *    h_tuba.dpm, h_tuba.dpm.framegroups - animated first person model
323  *      tags:
324  *        shot = muzzle end (shot origin, also used for muzzle flashes)
325  *        shell = casings ejection point (must be on the right hand side of the gun)
326  *        handle = corresponding to the origin of v_tuba.md3 (used for muzzle flashes)
327  *    v_tuba.md3 - third person model
328  *    g_tuba.md3 - pickup model
329  *
330  * 4. fully animated model, muzzle flash handling on v_ model:
331  *    h_tuba.dpm, h_tuba.dpm.framegroups - animated first person model
332  *      tags:
333  *        shot = muzzle end (shot origin)
334  *        shell = casings ejection point (must be on the right hand side of the gun)
335  *    v_tuba.md3 - third person model
336  *      tags:
337  *        shot = muzzle end (for muzzle flashes)
338  *    g_tuba.md3 - pickup model
339  */
340
341 // writes:
342 //   self.origin, self.angles
343 //   self.weaponentity
344 //   self.movedir, self.view_ofs
345 //   attachment stuff
346 //   anim stuff
347 // to free:
348 //   call again with ""
349 //   remove the ent
350 void CL_WeaponEntity_SetModel(string name)
351 {
352         string animfilename;
353         float animfile;
354         float v_shot_idx;
355         if (name != "")
356         {
357                 // if there is a child entity, hide it until we're sure we use it
358                 if (self.weaponentity)
359                         self.weaponentity.model = "";
360                 setmodel(self, strcat("models/weapons/v_", name, ".md3")); // precision set below
361                 v_shot_idx = gettagindex(self, "shot"); // used later
362                 if(!v_shot_idx)
363                         v_shot_idx = gettagindex(self, "tag_shot");
364
365                 if(qcweaponanimation)
366                 {
367                         self.angles = '0 0 0';
368                         makevectors(self.angles_x * '-1 0 0' + self.angles_y * '0 1 0' + self.angles_z * '0 0 1');
369                         self.movedir = weapon_offset_x * v_forward - weapon_offset_y * v_right + weapon_offset_z * v_up + weapon_adjust;
370                         self.movedir_x += 32;
371                         self.spawnorigin = self.movedir;
372                         // oldorigin - not calculated here
373                 }
374                 else
375                 {
376                         setmodel(self, strcat("models/weapons/h_", name, ".iqm")); // precision set below
377                         animfilename = strcat("models/weapons/h_", name, ".iqm.animinfo");
378                         animfile = fopen(animfilename, FILE_READ);
379                         // preset some defaults that work great for renamed zym files (which don't need an animinfo)
380                         self.anim_fire1  = '0 1 0.01';
381                         self.anim_fire2  = '1 1 0.01';
382                         self.anim_idle   = '2 1 0.01';
383                         self.anim_reload = '3 1 0.01';
384                         if (animfile >= 0)
385                         {
386                                 animparseerror = FALSE;
387                                 self.anim_fire1  = animparseline(animfile);
388                                 self.anim_fire2  = animparseline(animfile);
389                                 self.anim_idle   = animparseline(animfile);
390                                 self.anim_reload = animparseline(animfile);
391                                 fclose(animfile);
392                                 if (animparseerror)
393                                         print("Parse error in ", animfilename, ", some player animations are broken\n");
394                         }
395
396                         // if we have a "weapon" tag, let's attach the v_ model to it ("invisible hand" style model)
397                         // if we don't, this is a "real" animated model
398                         if(gettagindex(self, "weapon"))
399                         {
400                                 if (!self.weaponentity)
401                                         self.weaponentity = spawn();
402                                 setmodel(self.weaponentity, strcat("models/weapons/v_", name, ".md3")); // precision does not matter
403                                 setattachment(self.weaponentity, self, "weapon");
404                         }
405                         else if(gettagindex(self, "tag_weapon"))
406                         {
407                                 if (!self.weaponentity)
408                                         self.weaponentity = spawn();
409                                 setmodel(self.weaponentity, strcat("models/weapons/v_", name, ".md3")); // precision does not matter
410                                 setattachment(self.weaponentity, self, "tag_weapon");
411                         }
412                         else
413                         {
414                                 if(self.weaponentity)
415                                         remove(self.weaponentity);
416                                 self.weaponentity = world;
417                         }
418
419                         setorigin(self,'0 0 0');
420                         self.angles = '0 0 0';
421                         self.frame = 0;
422                         self.viewmodelforclient = world;
423
424                         float idx;
425
426                         if(v_shot_idx) // v_ model attached to invisible h_ model
427                         {
428                                 self.movedir = gettaginfo(self.weaponentity, v_shot_idx);
429                         }
430                         else
431                         {
432                                 idx = gettagindex(self, "shot");
433                                 if(!idx)
434                                         idx = gettagindex(self, "tag_shot");
435                                 if(idx)
436                                         self.movedir = gettaginfo(self, idx);
437                                 else
438                                 {
439                                         print("WARNING: weapon model ", self.model, " does not support the 'shot' tag, will display shots TOTALLY wrong\n");
440                                         self.movedir = '0 0 0';
441                                 }
442                         }
443
444                         if(self.weaponentity) // v_ model attached to invisible h_ model
445                         {
446                                 idx = gettagindex(self.weaponentity, "shell");
447                                 if(!idx)
448                                         idx = gettagindex(self.weaponentity, "tag_shell");
449                                 if(idx)
450                                         self.spawnorigin = gettaginfo(self.weaponentity, idx);
451                         }
452                         else
453                                 idx = 0;
454                         if(!idx)
455                         {
456                                 idx = gettagindex(self, "shell");
457                                 if(!idx)
458                                         idx = gettagindex(self, "tag_shell");
459                                 if(idx)
460                                         self.spawnorigin = gettaginfo(self, idx);
461                                 else
462                                 {
463                                         print("WARNING: weapon model ", self.model, " does not support the 'shell' tag, will display casings wrong\n");
464                                         self.spawnorigin = self.movedir;
465                                 }
466                         }
467
468                         if(v_shot_idx)
469                         {
470                                 self.oldorigin = '0 0 0'; // use regular attachment
471                         }
472                         else
473                         {
474                                 if(self.weaponentity)
475                                 {
476                                         idx = gettagindex(self, "weapon");
477                                         if(!idx)
478                                                 idx = gettagindex(self, "tag_weapon");
479                                 }
480                                 else
481                                 {
482                                         idx = gettagindex(self, "handle");
483                                         if(!idx)
484                                                 idx = gettagindex(self, "tag_handle");
485                                 }
486                                 if(idx)
487                                 {
488                                         self.oldorigin = self.movedir - gettaginfo(self, idx);
489                                 }
490                                 else
491                                 {
492                                         print("WARNING: weapon model ", self.model, " does not support the 'handle' tag and neither does the v_ model support the 'shot' tag, will display muzzle flashes TOTALLY wrong\n");
493                                         self.oldorigin = '0 0 0'; // there is no way to recover from this
494                                 }
495                         }
496
497                         self.viewmodelforclient = self.owner;
498                 }
499         }
500         else
501         {
502                 self.model = "";
503                 if(self.weaponentity)
504                         remove(self.weaponentity);
505                 self.weaponentity = world;
506                 self.movedir = '0 0 0';
507                 self.spawnorigin = '0 0 0';
508                 self.oldorigin = '0 0 0';
509                 self.anim_fire1  = '0 1 0.01';
510                 self.anim_fire2  = '0 1 0.01';
511                 self.anim_idle   = '0 1 0.01';
512                 self.anim_reload = '0 1 0.01';
513         }
514
515         self.view_ofs = '0 0 0';
516
517         if(self.movedir_x >= 0)
518         {
519                 vector v0;
520                 v0 = self.movedir;
521                 self.movedir = shotorg_adjust(v0, FALSE, FALSE);
522                 self.view_ofs = shotorg_adjust(v0, FALSE, TRUE) - v0;
523         }
524         self.owner.stat_shotorg = compressShotOrigin(self.movedir);
525         self.movedir = decompressShotOrigin(self.owner.stat_shotorg); // make them match perfectly
526
527         self.spawnorigin += self.view_ofs; // offset the casings origin by the same amount
528
529         // check if an instant weapon switch occurred
530         if (qcweaponanimation)
531         {
532                 if (self.state == WS_READY)
533                 {
534                         self.angles = '0 0 0';
535                         makevectors(self.angles_x * '-1 0 0' + self.angles_y * '0 1 0' + self.angles_z * '0 0 1');
536                         setorigin(self, QCWEAPONANIMATION_ORIGIN(self));
537                 }
538         }
539         else
540                 setorigin(self, self.view_ofs);
541         // reset animstate now
542         self.wframe = WFRAME_IDLE;
543         self.weapon_morph0time = 0;
544         self.weapon_morph1time = 0;
545         self.weapon_morph2time = 0;
546         self.weapon_morph3time = 0;
547         self.weapon_morph4time = 0;
548         setanim(self, self.anim_idle, TRUE, FALSE, TRUE);
549 }
550
551 vector CL_Weapon_GetShotOrg(float wpn)
552 {
553         entity wi, oldself;
554         vector ret;
555         wi = get_weaponinfo(wpn);
556         oldself = self;
557         self = spawn();
558         CL_WeaponEntity_SetModel(wi.mdl);
559         ret = self.movedir;
560         CL_WeaponEntity_SetModel("");
561         remove(self);
562         self = oldself;
563         return ret;
564 }
565
566 void CL_Weaponentity_Think()
567 {
568         float tb;
569         self.nextthink = time;
570         if (intermission_running)
571                 self.frame = self.anim_idle_x;
572         if (self.owner.weaponentity != self)
573         {
574                 if (self.weaponentity)
575                         remove(self.weaponentity);
576                 remove(self);
577                 return;
578         }
579         if (self.owner.deadflag != DEAD_NO)
580         {
581                 self.model = "";
582                 if (self.weaponentity)
583                         self.weaponentity.model = "";
584                 return;
585         }
586         if (self.cnt != self.owner.weapon || self.dmg != self.owner.modelindex || self.deadflag != self.owner.deadflag)
587         {
588                 self.cnt = self.owner.weapon;
589                 self.dmg = self.owner.modelindex;
590                 self.deadflag = self.owner.deadflag;
591
592                 CL_WeaponEntity_SetModel(self.owner.weaponname);
593         }
594
595         tb = (self.effects & (EF_TELEPORT_BIT | EF_RESTARTANIM_BIT));
596         self.effects = self.owner.effects & EFMASK_CHEAP;
597         self.effects &~= EF_LOWPRECISION;
598         self.effects &~= EF_FULLBRIGHT; // can mask team color, so get rid of it
599         self.effects &~= EF_TELEPORT_BIT;
600         self.effects &~= EF_RESTARTANIM_BIT;
601         self.effects |= tb;
602
603         if(self.owner.alpha == default_player_alpha)
604                 self.alpha = default_weapon_alpha;
605         else if(self.owner.alpha != 0)
606                 self.alpha = self.owner.alpha;
607         else
608                 self.alpha = 1;
609
610         self.glowmod = self.owner.weaponentity_glowmod;
611         self.colormap = self.owner.colormap;
612         if (self.weaponentity)
613         {
614                 self.weaponentity.effects = self.effects;
615                 self.weaponentity.alpha = self.alpha;
616                 self.weaponentity.colormap = self.colormap;
617                 self.weaponentity.glowmod = self.glowmod;
618         }
619
620         self.angles = '0 0 0';
621         local float f;
622         f = 0;
623         if (self.state == WS_RAISE && !intermission_running)
624         {
625                 f = (self.owner.weapon_nextthink - time) * g_weaponratefactor / autocvar_g_balance_weaponswitchdelay;
626                 self.angles_x = -90 * f * f;
627                 if (qcweaponanimation)
628                 {
629                         makevectors(self.angles_x * '-1 0 0' + self.angles_y * '0 1 0' + self.angles_z * '0 0 1');
630                         setorigin(self, QCWEAPONANIMATION_ORIGIN(self));
631                 }
632         }
633         else if (self.state == WS_DROP && !intermission_running)
634         {
635                 f = 1 - (self.owner.weapon_nextthink - time) * g_weaponratefactor / autocvar_g_balance_weaponswitchdelay;
636                 self.angles_x = -90 * f * f;
637                 if (qcweaponanimation)
638                 {
639                         makevectors(self.angles_x * '-1 0 0' + self.angles_y * '0 1 0' + self.angles_z * '0 0 1');
640                         setorigin(self, QCWEAPONANIMATION_ORIGIN(self));
641                 }
642         }
643         else if (self.state == WS_CLEAR)
644         {
645                 f = 1;
646                 self.angles_x = -90 * f * f;
647                 if (qcweaponanimation)
648                 {
649                         makevectors(self.angles_x * '-1 0 0' + self.angles_y * '0 1 0' + self.angles_z * '0 0 1');
650                         setorigin(self, QCWEAPONANIMATION_ORIGIN(self));
651                 }
652         }
653         else if (qcweaponanimation && time < self.owner.weapon_morph1time)
654         {
655                 f = (time - self.owner.weapon_morph0time) / (self.owner.weapon_morph1time - self.owner.weapon_morph0time);
656                 f = 1 - pow(1 - f, 3);
657                 self.angles = self.owner.weapon_morph0angles * (1 - f) + self.owner.weapon_morph1angles * f;
658                 setorigin(self, self.owner.weapon_morph0origin * (1 - f) + self.owner.weapon_morph1origin * f);
659         }
660         else if (qcweaponanimation && time < self.owner.weapon_morph2time)
661         {
662                 f = (time - self.owner.weapon_morph1time) / (self.owner.weapon_morph2time - self.owner.weapon_morph1time);
663                 f = 1 - pow(1 - f, 3);
664                 self.angles = self.owner.weapon_morph1angles * (1 - f) + self.owner.weapon_morph2angles * f;
665                 setorigin(self, self.owner.weapon_morph1origin * (1 - f) + self.owner.weapon_morph2origin * f);
666         }
667         else if (qcweaponanimation && time < self.owner.weapon_morph3time)
668         {
669                 f = (time - self.owner.weapon_morph2time) / (self.owner.weapon_morph3time - self.owner.weapon_morph2time);
670                 f = 1 - pow(1 - f, 3);
671                 self.angles = self.owner.weapon_morph2angles * (1 - f) + self.owner.weapon_morph3angles * f;
672                 setorigin(self, self.owner.weapon_morph2origin * (1 - f) + self.owner.weapon_morph3origin * f);
673         }
674         else if (qcweaponanimation && time < self.owner.weapon_morph4time)
675         {
676                 f = (time - self.owner.weapon_morph3time) / (self.owner.weapon_morph4time - self.owner.weapon_morph3time);
677                 f = 1 - pow(1 - f, 3);
678                 self.angles = self.owner.weapon_morph3angles * (1 - f) + self.owner.weapon_morph4angles * f;
679                 setorigin(self, self.owner.weapon_morph3origin * (1 - f) + self.owner.weapon_morph4origin * f);
680         }
681         else if (qcweaponanimation)
682         {
683                 // begin a new idle morph
684                 self.owner.weapon_morph0time   = time;
685                 self.owner.weapon_morph0angles = self.angles;
686                 self.owner.weapon_morph0origin = self.origin;
687
688                 float r;
689                 float t;
690
691                 r = random();
692                 if (r < 0.1)
693                 {
694                         // turn gun to the left to look at it
695                         t = 2;
696                         self.owner.weapon_morph1time   = time + t * 0.2;
697                         self.owner.weapon_morph1angles = randomvec() * 3 + '-5 30 0';
698                         makevectors(self.owner.weapon_morph1angles_x * '-1 0 0' + self.owner.weapon_morph1angles_y * '0 1 0' + self.owner.weapon_morph1angles_z * '0 0 1');
699                         self.owner.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self);
700
701                         self.owner.weapon_morph2time   = time + t * 0.6;
702                         self.owner.weapon_morph2angles = randomvec() * 3 + '-5 30 0';
703                         makevectors(self.owner.weapon_morph2angles_x * '-1 0 0' + self.owner.weapon_morph2angles_y * '0 1 0' + self.owner.weapon_morph2angles_z * '0 0 1');
704                         self.owner.weapon_morph2origin = QCWEAPONANIMATION_ORIGIN(self);
705
706                         self.owner.weapon_morph3time   = time + t;
707                         self.owner.weapon_morph3angles = '0 0 0';
708                         makevectors(self.owner.weapon_morph3angles_x * '-1 0 0' + self.owner.weapon_morph3angles_y * '0 1 0' + self.owner.weapon_morph3angles_z * '0 0 1');
709                         self.owner.weapon_morph3origin = QCWEAPONANIMATION_ORIGIN(self);
710                 }
711                 else if (r < 0.2)
712                 {
713                         // raise the gun a bit
714                         t = 2;
715                         self.owner.weapon_morph1time   = time + t * 0.2;
716                         self.owner.weapon_morph1angles = randomvec() * 3 + '30 -10 0';
717                         makevectors(self.owner.weapon_morph1angles_x * '-1 0 0' + self.owner.weapon_morph1angles_y * '0 1 0' + self.owner.weapon_morph1angles_z * '0 0 1');
718                         self.owner.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self);
719
720                         self.owner.weapon_morph2time   = time + t * 0.5;
721                         self.owner.weapon_morph2angles = randomvec() * 3 + '30 -10 5';
722                         makevectors(self.owner.weapon_morph2angles_x * '-1 0 0' + self.owner.weapon_morph2angles_y * '0 1 0' + self.owner.weapon_morph2angles_z * '0 0 1');
723                         self.owner.weapon_morph2origin = QCWEAPONANIMATION_ORIGIN(self);
724
725                         self.owner.weapon_morph3time   = time + t;
726                         self.owner.weapon_morph3angles = '0 0 0';
727                         makevectors(self.owner.weapon_morph3angles_x * '-1 0 0' + self.owner.weapon_morph3angles_y * '0 1 0' + self.owner.weapon_morph3angles_z * '0 0 1');
728                         self.owner.weapon_morph3origin = QCWEAPONANIMATION_ORIGIN(self);
729                 }
730                 else if (r < 0.3)
731                 {
732                         // tweak it a bit
733                         t = 5;
734                         self.owner.weapon_morph1time   = time + t * 0.3;
735                         self.owner.weapon_morph1angles = randomvec() * 6;
736                         makevectors(self.owner.weapon_morph1angles_x * '-1 0 0' + self.owner.weapon_morph1angles_y * '0 1 0' + self.owner.weapon_morph1angles_z * '0 0 1');
737                         self.owner.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self);
738
739                         self.owner.weapon_morph2time   = time + t * 0.7;
740                         self.owner.weapon_morph2angles = randomvec() * 6;
741                         makevectors(self.owner.weapon_morph2angles_x * '-1 0 0' + self.owner.weapon_morph2angles_y * '0 1 0' + self.owner.weapon_morph2angles_z * '0 0 1');
742                         self.owner.weapon_morph2origin = QCWEAPONANIMATION_ORIGIN(self);
743
744                         self.owner.weapon_morph3time   = time + t;
745                         self.owner.weapon_morph3angles = '0 0 0';
746                         makevectors(self.owner.weapon_morph3angles_x * '-1 0 0' + self.owner.weapon_morph3angles_y * '0 1 0' + self.owner.weapon_morph3angles_z * '0 0 1');
747                         self.owner.weapon_morph3origin = QCWEAPONANIMATION_ORIGIN(self);
748                 }
749                 else
750                 {
751                         // hold it mostly steady
752                         t = random() * 6 + 4;
753                         self.owner.weapon_morph1time   = time + t * 0.2;
754                         self.owner.weapon_morph1angles = randomvec() * 1;
755                         makevectors(self.owner.weapon_morph1angles_x * '-1 0 0' + self.owner.weapon_morph1angles_y * '0 1 0' + self.owner.weapon_morph1angles_z * '0 0 1');
756                         self.owner.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self);
757
758                         self.owner.weapon_morph2time   = time + t * 0.5;
759                         self.owner.weapon_morph2angles = randomvec() * 1;
760                         makevectors(self.owner.weapon_morph2angles_x * '-1 0 0' + self.owner.weapon_morph2angles_y * '0 1 0' + self.owner.weapon_morph2angles_z * '0 0 1');
761                         self.owner.weapon_morph2origin = QCWEAPONANIMATION_ORIGIN(self);
762
763                         self.owner.weapon_morph3time   = time + t * 0.7;
764                         self.owner.weapon_morph3angles = randomvec() * 1;
765                         makevectors(self.owner.weapon_morph3angles_x * '-1 0 0' + self.owner.weapon_morph3angles_y * '0 1 0' + self.owner.weapon_morph3angles_z * '0 0 1');
766                         self.owner.weapon_morph3origin = QCWEAPONANIMATION_ORIGIN(self);
767                 }
768
769                 self.owner.weapon_morph4time   = time + t;
770                 self.owner.weapon_morph4angles = '0 0 0';
771                 makevectors(self.owner.weapon_morph4angles_x * '-1 0 0' + self.owner.weapon_morph4angles_y * '0 1 0' + self.owner.weapon_morph4angles_z * '0 0 1');
772                 self.owner.weapon_morph4origin = QCWEAPONANIMATION_ORIGIN(self);
773
774         }
775 };
776
777 void CL_ExteriorWeaponentity_Think()
778 {
779         float tag_found;
780         vector ang;
781         self.nextthink = time;
782         if (self.owner.exteriorweaponentity != self)
783         {
784                 remove(self);
785                 return;
786         }
787         if (self.owner.deadflag != DEAD_NO)
788         {
789                 self.model = "";
790                 return;
791         }
792         if (self.cnt != self.owner.weapon || self.dmg != self.owner.modelindex || self.deadflag != self.owner.deadflag)
793         {
794                 self.cnt = self.owner.weapon;
795                 self.dmg = self.owner.modelindex;
796                 self.deadflag = self.owner.deadflag;
797                 if (self.owner.weaponname != "")
798                         setmodel(self, strcat("models/weapons/v_", self.owner.weaponname, ".md3")); // precision set below
799                 else
800                         self.model = "";
801
802                 if((tag_found = gettagindex(self.owner, "tag_weapon")))
803                 {
804                         self.tag_index = tag_found;
805                         self.tag_entity = self.owner;
806                 }
807                 else
808                         setattachment(self, self.owner, "bip01 r hand");
809
810                 // if that didn't find a tag, hide the exterior weapon model
811                 if (!self.tag_index)
812                         self.model = "";
813         }
814         self.effects = self.owner.effects;
815         if(sv_pitch_min == sv_pitch_max)
816                 self.effects |= EF_LOWPRECISION;
817         else
818                 self.effects &~= EF_LOWPRECISION;
819         self.effects = self.effects & EFMASK_CHEAP; // eat performance
820         if(self.owner.alpha == default_player_alpha)
821                 self.alpha = default_weapon_alpha;
822         else if(self.owner.alpha != 0)
823                 self.alpha = self.owner.alpha;
824         else
825                 self.alpha = 1;
826
827         ang_x = bound(sv_pitch_min, self.owner.v_angle_x, sv_pitch_max);
828         ang_y = 0;
829         ang_z = 0;
830
831         if(sv_pitch_fixyaw) // workaround for stupid player models that don't aim forward
832         {
833                 ang_y = self.owner.v_angle_y;
834                 makevectors(ang);
835                 var vector v = v_forward;
836                 var float t = self.tag_entity.frame1time;
837                 var float f = self.tag_entity.frame;
838                 self.tag_entity.frame1time = time;
839                 self.tag_entity.frame = self.tag_entity.anim_idle_x;
840                 gettaginfo(self.tag_entity, self.tag_index);
841                 self.tag_entity.frame1time = t;
842                 self.tag_entity.frame = f;
843                 // untransform v according to this coordinate space
844                 vector w;
845                 w_x = v_forward * v;
846                 w_y = -v_right * v;
847                 w_z = v_up * v;
848                 self.angles = vectoangles(w);
849         }
850         else
851         {
852                 ang_x = -/* don't ask */ang_x;
853                 self.angles = ang;
854         }
855
856         self.glowmod = self.owner.weaponentity_glowmod;
857         self.colormap = self.owner.colormap;
858 };
859
860 // spawning weaponentity for client
861 void CL_SpawnWeaponentity()
862 {
863         self.weaponentity = spawn();
864         self.weaponentity.classname = "weaponentity";
865         self.weaponentity.solid = SOLID_NOT;
866         self.weaponentity.owner = self;
867         setmodel(self.weaponentity, ""); // precision set when changed
868         setorigin(self.weaponentity, '0 0 0');
869         self.weaponentity.angles = '0 0 0';
870         self.weaponentity.viewmodelforclient = self;
871         self.weaponentity.flags = 0;
872         self.weaponentity.think = CL_Weaponentity_Think;
873         self.weaponentity.customizeentityforclient = CL_Weaponentity_CustomizeEntityForClient;
874         self.weaponentity.nextthink = time;
875
876         self.exteriorweaponentity = spawn();
877         self.exteriorweaponentity.classname = "exteriorweaponentity";
878         self.exteriorweaponentity.solid = SOLID_NOT;
879         self.exteriorweaponentity.exteriorweaponentity = self.exteriorweaponentity;
880         self.exteriorweaponentity.owner = self;
881         setorigin(self.exteriorweaponentity, '0 0 0');
882         self.exteriorweaponentity.angles = '0 0 0';
883         self.exteriorweaponentity.think = CL_ExteriorWeaponentity_Think;
884         self.exteriorweaponentity.nextthink = time;
885 };
886
887 void Send_WeaponComplain (entity e, float wpn, string wpnname, float type)
888 {
889         msg_entity = e;
890         WriteByte(MSG_ONE, SVC_TEMPENTITY);
891         WriteByte(MSG_ONE, TE_CSQC_WEAPONCOMPLAIN);
892         WriteByte(MSG_ONE, wpn);
893         WriteString(MSG_ONE, wpnname);
894         WriteByte(MSG_ONE, type);
895 }
896
897 .float hasweapon_complain_spam;
898
899 float W_Reload_AllowSwitching(float wpn);
900 float client_hasweapon(entity cl, float wpn, float andammo, float complain)
901 {
902         local float weaponbit, f;
903         local entity oldself;
904
905         if(time < self.hasweapon_complain_spam)
906                 complain = 0;
907         if(complain)
908                 self.hasweapon_complain_spam = time + 0.2;
909
910         if (wpn < WEP_FIRST || wpn > WEP_LAST)
911         {
912                 if (complain)
913                         sprint(self, "Invalid weapon\n");
914                 return FALSE;
915         }
916         weaponbit = W_WeaponBit(wpn);
917         if (cl.weapons & weaponbit)
918         {
919                 if (andammo)
920                 {
921                         if(cl.items & IT_UNLIMITED_WEAPON_AMMO)
922                         {
923                                 f = 1;
924                         }
925                         else
926                         {
927                                 oldself = self;
928                                 self = cl;
929                                 f = weapon_action(wpn, WR_CHECKAMMO1);
930                                 f = f + weapon_action(wpn, WR_CHECKAMMO2);
931
932                                 // allow switching to reloadable weapons, even if we're out of ammo, since the weapon itself
933                                 // might still be loaded. The reload code takes care of complaining and forced switching
934                                 entity e;
935                                 e = get_weaponinfo(wpn);
936                                 if(wpn != WEP_TUBA && wpn != WEP_PORTO && wpn != WEP_HOOK) // skip non-reloadable weapons, or we access undefined cvars
937                                 if(cvar(strcat("g_balance_", e.netname, "_reload_ammo")))
938                                 {
939                                         if(W_Reload_AllowSwitching(wpn))
940                                                 f = 1;
941                                         else
942                                                 f = 0; // necessary to avoid switching back and forth
943                                 }
944
945                                 // always allow selecting the Mine Layer if we placed mines, so that we can detonate them
946                                 local entity mine;
947                                 if(wpn == WEP_MINE_LAYER)
948                                 for(mine = world; (mine = find(mine, classname, "mine")); ) if(mine.owner == self)
949                                         f = 1;
950
951                                 self = oldself;
952                         }
953                         if (!f)
954                         {
955                                 if (complain)
956                                 if(clienttype(cl) == CLIENTTYPE_REAL)
957                                 {
958                                         play2(cl, "weapons/unavailable.wav");
959                                         sprint(cl, strcat("You don't have any ammo for the ^2", W_Name(wpn), "\n"));
960                                         Send_WeaponComplain (cl, wpn, W_Name(wpn), 0);
961                                 }
962                                 return FALSE;
963                         }
964                 }
965                 return TRUE;
966         }
967         if (complain)
968         {
969                 // DRESK - 3/16/07
970                 // Report Proper Weapon Status / Modified Weapon Ownership Message
971                 if(weaponsInMap & weaponbit)
972                 {
973                         sprint(cl, strcat("You do not have the ^2", W_Name(wpn), "\n") );
974                         Send_WeaponComplain (cl, wpn, W_Name(wpn), 1);
975
976                         if(autocvar_g_showweaponspawns)
977                         {
978                                 entity e;
979                                 string s;
980
981                                 e = get_weaponinfo(wpn);
982                                 s = e.model2;
983
984                                 for(e = world; (e = findfloat(e, weapons, weaponbit)); )
985                                 {
986                                         if(e.classname == "droppedweapon")
987                                                 continue;
988                                         if not(e.flags & FL_ITEM)
989                                                 continue;
990                                         WaypointSprite_Spawn(
991                                                 s,
992                                                 1, 0,
993                                                 world, e.origin,
994                                                 self, 0,
995                                                 world, enemy,
996                                                 0
997                                         );
998                                 }
999                         }
1000                 }
1001                 else
1002                 {
1003                         Send_WeaponComplain (cl, wpn, W_Name(wpn), 2);
1004                         sprint(cl, strcat("The ^2", W_Name(wpn), "^7 is ^1NOT AVAILABLE^7 in this map\n") );
1005                 }
1006
1007                 play2(cl, "weapons/unavailable.wav");
1008         }
1009         return FALSE;
1010 };
1011
1012 // Weapon subs
1013 void w_clear()
1014 {
1015         if (self.weapon != -1)
1016                 self.weapon = 0;
1017         if (self.weaponentity)
1018         {
1019                 self.weaponentity.state = WS_CLEAR;
1020                 self.weaponentity.effects = 0;
1021         }
1022 };
1023
1024 void w_ready()
1025 {
1026         if (self.weaponentity)
1027                 self.weaponentity.state = WS_READY;
1028         weapon_thinkf(WFRAME_IDLE, 1000000, w_ready);
1029 };
1030
1031 // Setup weapon for client (after this raise frame will be launched)
1032 void weapon_setup(float windex)
1033 {
1034         entity e;
1035         qcweaponanimation = autocvar_sv_qcweaponanimation;
1036         e = get_weaponinfo(windex);
1037         self.items &~= IT_AMMO;
1038         self.items = self.items | e.items;
1039
1040         // the two weapon entities will notice this has changed and update their models
1041         self.weapon = windex;
1042         self.weaponname = e.mdl;
1043         self.bulletcounter = 0;
1044 };
1045
1046 // perform weapon to attack (weaponstate and attack_finished check is here)
1047 void W_SwitchToOtherWeapon(entity pl)
1048 {
1049         // hack to ensure it switches to an OTHER weapon (in case the other fire mode still has ammo, we want that anyway)
1050         float w, ww;
1051         w = W_WeaponBit(pl.weapon);
1052         pl.weapons &~= w;
1053         ww = w_getbestweapon(pl);
1054         pl.weapons |= w;
1055         if(ww)
1056                 W_SwitchWeapon_Force(pl, ww);
1057 }
1058 .float prevdryfire;
1059 float weapon_prepareattack_checkammo(float secondary)
1060 {
1061         if not(self.items & IT_UNLIMITED_WEAPON_AMMO)
1062         if (!weapon_action(self.weapon, WR_CHECKAMMO1 + secondary))
1063         {
1064                 // allow switching to reloadable weapons, even if we're out of ammo, since the weapon itself
1065                 // might still be loaded. The reload code takes care of complaining and forced switching
1066                 entity e;
1067                 e = get_weaponinfo(self.weapon);
1068                 if(self.weapon != WEP_TUBA && self.weapon != WEP_PORTO && self.weapon != WEP_HOOK) // skip non-reloadable weapons, or we access undefined cvars
1069                 if(cvar(strcat("g_balance_", e.netname, "_reload_ammo")))
1070                 if(W_Reload_AllowSwitching(self.weapon))
1071                         return FALSE;
1072
1073                 // always keep the Mine Layer if we placed mines, so that we can detonate them
1074                 local entity mine;
1075                 if(self.weapon == WEP_MINE_LAYER)
1076                 for(mine = world; (mine = find(mine, classname, "mine")); ) if(mine.owner == self)
1077                         return FALSE;
1078
1079                 if(self.weapon == self.switchweapon && time - self.prevdryfire > 1) // only play once BEFORE starting to switch weapons
1080                 {
1081                         sound (self, CHAN_AUTO, "weapons/dryfire.wav", VOL_BASE, ATTN_NORM);
1082                         self.prevdryfire = time;
1083                 }
1084
1085                 W_SwitchToOtherWeapon(self);
1086                 return FALSE;
1087         }
1088         return TRUE;
1089 }
1090 .float race_penalty;
1091 float weapon_prepareattack_check(float secondary, float attacktime)
1092 {
1093         if(!weapon_prepareattack_checkammo(secondary))
1094                 return FALSE;
1095
1096         //if sv_ready_restart_after_countdown is set, don't allow the player to shoot
1097         //if all players readied up and the countdown is running
1098         if(time < game_starttime || time < self.race_penalty) {
1099                 return FALSE;
1100         }
1101
1102         if (timeoutStatus == 2) //don't allow the player to shoot while game is paused
1103                 return FALSE;
1104
1105         // do not even think about shooting if switching
1106         if(self.switchweapon != self.weapon)
1107                 return FALSE;
1108
1109         if(attacktime >= 0)
1110         {
1111                 // don't fire if previous attack is not finished
1112                 if (ATTACK_FINISHED(self) > time + self.weapon_frametime * 0.5)
1113                         return FALSE;
1114                 // don't fire while changing weapon
1115                 if (self.weaponentity.state != WS_READY)
1116                         return FALSE;
1117         }
1118
1119         return TRUE;
1120 }
1121 float weapon_prepareattack_do(float secondary, float attacktime)
1122 {
1123         self.weaponentity.state = WS_INUSE;
1124
1125         self.spawnshieldtime = min(self.spawnshieldtime, time); // kill spawn shield when you fire
1126
1127         // if the weapon hasn't been firing continuously, reset the timer
1128         if(attacktime >= 0)
1129         {
1130                 if (ATTACK_FINISHED(self) < time - self.weapon_frametime * 1.5)
1131                 {
1132                         ATTACK_FINISHED(self) = time;
1133                         //dprint("resetting attack finished to ", ftos(time), "\n");
1134                 }
1135                 ATTACK_FINISHED(self) = ATTACK_FINISHED(self) + attacktime * W_WeaponRateFactor();
1136         }
1137         self.bulletcounter += 1;
1138         //dprint("attack finished ", ftos(ATTACK_FINISHED(self)), "\n");
1139         return TRUE;
1140 }
1141 float weapon_prepareattack(float secondary, float attacktime)
1142 {
1143         if(weapon_prepareattack_check(secondary, attacktime))
1144         {
1145                 weapon_prepareattack_do(secondary, attacktime);
1146                 return TRUE;
1147         }
1148         else
1149                 return FALSE;
1150 }
1151
1152 void weapon_thinkf(float fr, float t, void() func)
1153 {
1154         vector a;
1155         vector of, or, ou;
1156         float restartanim;
1157
1158         if(fr == WFRAME_DONTCHANGE)
1159         {
1160                 fr = self.weaponentity.wframe;
1161                 restartanim = FALSE;
1162         }
1163         else if (fr == WFRAME_IDLE)
1164                 restartanim = FALSE;
1165         else
1166                 restartanim = TRUE;
1167
1168         of = v_forward;
1169         or = v_right;
1170         ou = v_up;
1171
1172         if (self.weaponentity)
1173         {
1174                 self.weaponentity.wframe = fr;
1175                 if (qcweaponanimation)
1176                 {
1177                         if (fr != WFRAME_IDLE)
1178                         {
1179                                 self.weapon_morph0time = time;
1180                                 self.weapon_morph0angles = self.weaponentity.angles;
1181                                 self.weapon_morph0origin = self.weaponentity.origin;
1182
1183                                 self.weapon_morph1angles = '0 0 0';
1184                                 self.weapon_morph1time = time + t;
1185                                 makevectors(self.weapon_morph1angles_x * '-1 0 0' + self.weapon_morph1angles_y * '0 1 0' + self.weapon_morph1angles_z * '0 0 1');
1186                                 self.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1187
1188                                 self.weapon_morph2angles = '0 0 0';
1189                                 self.weapon_morph2time = time + t;
1190                                 makevectors(self.weapon_morph2angles_x * '-1 0 0' + self.weapon_morph2angles_y * '0 1 0' + self.weapon_morph2angles_z * '0 0 1');
1191                                 self.weapon_morph2origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1192
1193                                 self.weapon_morph3angles = '0 0 0';
1194                                 self.weapon_morph3time = time + t;
1195                                 makevectors(self.weapon_morph3angles_x * '-1 0 0' + self.weapon_morph3angles_y * '0 1 0' + self.weapon_morph3angles_z * '0 0 1');
1196                                 self.weapon_morph3origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1197
1198                                 self.weapon_morph4angles = '0 0 0';
1199                                 self.weapon_morph4time = time + t;
1200                                 makevectors(self.weapon_morph4angles_x * '-1 0 0' + self.weapon_morph4angles_y * '0 1 0' + self.weapon_morph4angles_z * '0 0 1');
1201                                 self.weapon_morph4origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1202
1203                                 if (fr == WFRAME_FIRE1)
1204                                 {
1205                                         self.weapon_morph1angles = '5 0 0';
1206                                         self.weapon_morph1time = time + t * 0.1;
1207                                         makevectors(self.weapon_morph1angles_x * '-1 0 0' + self.weapon_morph1angles_y * '0 1 0' + self.weapon_morph1angles_z * '0 0 1');
1208                                         self.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1209                                         self.weapon_morph4time = time + t + 1; // delay idle effect
1210                                 }
1211                                 else if (fr == WFRAME_FIRE2)
1212                                 {
1213                                         self.weapon_morph1angles = '10 0 0';
1214                                         self.weapon_morph1time = time + t * 0.1;
1215                                         makevectors(self.weapon_morph1angles_x * '-1 0 0' + self.weapon_morph1angles_y * '0 1 0' + self.weapon_morph1angles_z * '0 0 1');
1216                                         self.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1217                                         self.weapon_morph4time = time + t + 1; // delay idle effect
1218                                 }
1219                                 else if (fr == WFRAME_RELOAD)
1220                                 {
1221                                         self.weapon_morph1time = time + t * 0.05;
1222                                         self.weapon_morph1angles = '-10 40 0';
1223                                         makevectors(self.weapon_morph1angles_x * '-1 0 0' + self.weapon_morph1angles_y * '0 1 0' + self.weapon_morph1angles_z * '0 0 1');
1224                                         self.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1225
1226                                         self.weapon_morph2time = time + t * 0.15;
1227                                         self.weapon_morph2angles = '-10 40 5';
1228                                         makevectors(self.weapon_morph2angles_x * '-1 0 0' + self.weapon_morph2angles_y * '0 1 0' + self.weapon_morph2angles_z * '0 0 1');
1229                                         self.weapon_morph2origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1230
1231                                         self.weapon_morph3time = time + t * 0.25;
1232                                         self.weapon_morph3angles = '-10 40 0';
1233                                         makevectors(self.weapon_morph3angles_x * '-1 0 0' + self.weapon_morph3angles_y * '0 1 0' + self.weapon_morph3angles_z * '0 0 1');
1234                                         self.weapon_morph3origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1235                                 }
1236                         }
1237                 }
1238                 else
1239                 {
1240                         if (fr == WFRAME_IDLE)
1241                                 a = self.weaponentity.anim_idle;
1242                         else if (fr == WFRAME_FIRE1)
1243                                 a = self.weaponentity.anim_fire1;
1244                         else if (fr == WFRAME_FIRE2)
1245                                 a = self.weaponentity.anim_fire2;
1246                         else if (fr == WFRAME_RELOAD)
1247                                 a = self.weaponentity.anim_reload;
1248                         a_z *= g_weaponratefactor;
1249                         setanim(self.weaponentity, a, restartanim == FALSE, restartanim, restartanim);
1250                 }
1251         }
1252
1253         v_forward = of;
1254         v_right = or;
1255         v_up = ou;
1256
1257         if(self.weapon_think == w_ready && func != w_ready && self.weaponentity.state == WS_RAISE)
1258         {
1259                 backtrace("Tried to override initial weapon think function - should this really happen?");
1260         }
1261
1262         t *= W_WeaponRateFactor();
1263
1264         // VorteX: haste can be added here
1265         if (self.weapon_think == w_ready)
1266         {
1267                 self.weapon_nextthink = time;
1268                 //dprint("started firing at ", ftos(time), "\n");
1269         }
1270         if (self.weapon_nextthink < time - self.weapon_frametime * 1.5 || self.weapon_nextthink > time + self.weapon_frametime * 1.5)
1271         {
1272                 self.weapon_nextthink = time;
1273                 //dprint("reset weapon animation timer at ", ftos(time), "\n");
1274         }
1275         self.weapon_nextthink = self.weapon_nextthink + t;
1276         self.weapon_think = func;
1277         //dprint("next ", ftos(self.weapon_nextthink), "\n");
1278
1279         if (restartanim)
1280         if (t)
1281         if (!self.crouch) // shoot anim stands up, this looks bad
1282         {
1283                 local vector anim;
1284                 anim = self.anim_shoot;
1285                 anim_z = anim_y / (t + sys_frametime);
1286                 setanim(self, anim, FALSE, TRUE, TRUE);
1287         }
1288 };
1289
1290 void weapon_boblayer1(float spd, vector org)
1291 {
1292         // VorteX: haste can be added here
1293 };
1294
1295 vector W_CalculateProjectileVelocity(vector pvelocity, vector mvelocity, float forceAbsolute)
1296 {
1297         vector mdirection;
1298         float mspeed;
1299         float outspeed;
1300         float nstyle;
1301         vector outvelocity;
1302
1303         mvelocity = mvelocity * g_weaponspeedfactor;
1304
1305         mdirection = normalize(mvelocity);
1306         mspeed = vlen(mvelocity);
1307
1308         nstyle = autocvar_g_projectiles_newton_style;
1309         if(nstyle == 0 || forceAbsolute)
1310         {
1311                 // absolute velocity
1312                 outvelocity = mvelocity;
1313         }
1314         else if(nstyle == 1)
1315         {
1316                 // true Newtonian projectiles
1317                 outvelocity = pvelocity + mvelocity;
1318         }
1319         else if(nstyle == 2)
1320         {
1321                 // true Newtonian projectiles with automatic aim adjustment
1322                 //
1323                 // solve: |outspeed * mdirection - pvelocity| = mspeed
1324                 // outspeed^2 - 2 * outspeed * (mdirection * pvelocity) + pvelocity^2 - mspeed^2 = 0
1325                 // outspeed = (mdirection * pvelocity) +- sqrt((mdirection * pvelocity)^2 - pvelocity^2 + mspeed^2)
1326                 // PLUS SIGN!
1327                 // not defined?
1328                 // then...
1329                 // pvelocity^2 - (mdirection * pvelocity)^2 > mspeed^2
1330                 // velocity without mdirection component > mspeed
1331                 // fire at smallest possible mspeed that works?
1332                 // |(mdirection * pvelocity) * pvelocity - pvelocity| = mspeed
1333
1334                 vector solution;
1335                 solution = solve_quadratic(1, -2 * (mdirection * pvelocity), pvelocity * pvelocity - mspeed * mspeed);
1336                 if(solution_z)
1337                         outspeed = solution_y; // the larger one
1338                 else
1339                 {
1340                         //outspeed = 0; // slowest possible shot
1341                         outspeed = solution_x; // the real part (that is, the average!)
1342                         //dprint("impossible shot, adjusting\n");
1343                 }
1344
1345                 outspeed = bound(mspeed * autocvar_g_projectiles_newton_style_2_minfactor, outspeed, mspeed * autocvar_g_projectiles_newton_style_2_maxfactor);
1346                 outvelocity = mdirection * outspeed;
1347         }
1348         else if(nstyle == 3)
1349         {
1350                 // pseudo-Newtonian:
1351                 outspeed = mspeed + mdirection * pvelocity;
1352                 outspeed = bound(mspeed * 0.7, outspeed, mspeed * 5.0);
1353                 outvelocity = mdirection * outspeed;
1354         }
1355         else if(nstyle == 4)
1356         {
1357                 // tZorkian:
1358                 outspeed = mspeed + vlen(pvelocity);
1359                 outvelocity = mdirection * outspeed;
1360         }
1361         else
1362                 error("g_projectiles_newton_style must be 0 (absolute), 1 (Newtonian), 2 (Newtonian + aimfix), 3 (pseudo Newtonian) or 4 (tZorkian)!");
1363
1364         return outvelocity;
1365 }
1366
1367 void W_AttachToShotorg(entity flash, vector offset)
1368 {
1369         entity xflash;
1370         flash.owner = self;
1371         flash.angles_z = random() * 360;
1372         if(qcweaponanimation)
1373         {
1374                 setorigin(flash, w_shotorg + w_shotdir * 50);
1375                 flash.angles = vectoangles(w_shotdir);
1376                 flash.angles_z = random() * 360;
1377         }
1378         else
1379         {
1380                 if(gettagindex(self.weaponentity, "shot"))
1381                         setattachment(flash, self.weaponentity, "shot");
1382                 else
1383                         setattachment(flash, self.weaponentity, "tag_shot");
1384                 setorigin(flash, offset);
1385
1386                 xflash = spawn();
1387                 copyentity(flash, xflash);
1388
1389                 flash.viewmodelforclient = self;
1390
1391                 if(self.weaponentity.oldorigin_x > 0)
1392                 {
1393                         setattachment(xflash, self.exteriorweaponentity, "");
1394                         setorigin(xflash, self.weaponentity.oldorigin + offset);
1395                 }
1396                 else
1397                 {
1398                         if(gettagindex(self.exteriorweaponentity, "shot"))
1399                                 setattachment(xflash, self.exteriorweaponentity, "shot");
1400                         else
1401                                 setattachment(xflash, self.exteriorweaponentity, "tag_shot");
1402                         setorigin(xflash, offset);
1403                 }
1404         }
1405 }
1406
1407 vector cliptoplane(vector v, vector p)
1408 {
1409         return v - (v * p) * p;
1410 }
1411
1412 vector solve_cubic_pq(float p, float q)
1413 {
1414         float D, u, v, a;
1415         D = q*q/4.0 + p*p*p/27.0;
1416         if(D < 0)
1417         {
1418                 // irreducibilis
1419                 a = 1.0/3.0 * acos(-q/2.0 * sqrt(-27.0/(p*p*p)));
1420                 u = sqrt(-4.0/3.0 * p);
1421                 // a in range 0..pi/3
1422                 // cos(a)
1423                 // cos(a + 2pi/3)
1424                 // cos(a + 4pi/3)
1425                 return
1426                         u *
1427                         (
1428                                 '1 0 0' * cos(a + 2.0/3.0*M_PI)
1429                                 +
1430                                 '0 1 0' * cos(a + 4.0/3.0*M_PI)
1431                                 +
1432                                 '0 0 1' * cos(a)
1433                         );
1434         }
1435         else if(D == 0)
1436         {
1437                 // simple
1438                 if(p == 0)
1439                         return '0 0 0';
1440                 u = 3*q/p;
1441                 v = -u/2;
1442                 if(u >= v)
1443                         return '1 1 0' * v + '0 0 1' * u;
1444                 else
1445                         return '0 1 1' * v + '1 0 0' * u;
1446         }
1447         else
1448         {
1449                 // cardano
1450                 u = cbrt(-q/2.0 + sqrt(D));
1451                 v = cbrt(-q/2.0 - sqrt(D));
1452                 return '1 1 1' * (u + v);
1453         }
1454 }
1455 vector solve_cubic_abcd(float a, float b, float c, float d)
1456 {
1457         // y = 3*a*x + b
1458         // x = (y - b) / 3a
1459         float p, q;
1460         vector v;
1461         p = (9*a*c - 3*b*b);
1462         q = (27*a*a*d - 9*a*b*c + 2*b*b*b);
1463         v = solve_cubic_pq(p, q);
1464         v = (v -  b * '1 1 1') * (1.0 / (3.0 * a));
1465         if(a < 0)
1466                 v += '1 0 -1' * (v_z - v_x); // swap x, z
1467         return v;
1468 }
1469
1470 vector findperpendicular(vector v)
1471 {
1472         vector p;
1473         p_x = v_z;
1474         p_y = -v_x;
1475         p_z = v_y;
1476         return normalize(cliptoplane(p, v));
1477 }
1478
1479 vector W_CalculateProjectileSpread(vector forward, float spread)
1480 {
1481         float sigma;
1482         vector v1, v2;
1483         float dx, dy, r;
1484         float sstyle;
1485         spread *= g_weaponspreadfactor;
1486         if(spread <= 0)
1487                 return forward;
1488         sstyle = autocvar_g_projectiles_spread_style;
1489         
1490         if(sstyle == 0)
1491         {
1492                 // this is the baseline for the spread value!
1493                 // standard deviation: sqrt(2/5)
1494                 // density function: sqrt(1-r^2)
1495                 return forward + randomvec() * spread;
1496         }
1497         else if(sstyle == 1)
1498         {
1499                 // same thing, basically
1500                 return normalize(forward + cliptoplane(randomvec() * spread, forward));
1501         }
1502         else if(sstyle == 2)
1503         {
1504                 // circle spread... has at sigma=1 a standard deviation of sqrt(1/2)
1505                 sigma = spread * 0.89442719099991587855; // match baseline stddev
1506                 v1 = findperpendicular(forward);
1507                 v2 = cross(forward, v1);
1508                 // random point on unit circle
1509                 dx = random() * 2 * M_PI;
1510                 dy = sin(dx);
1511                 dx = cos(dx);
1512                 // radius in our dist function
1513                 r = random();
1514                 r = sqrt(r);
1515                 return normalize(forward + (v1 * dx + v2 * dy) * r * sigma);
1516         }
1517         else if(sstyle == 3) // gauss 3d
1518         {
1519                 sigma = spread * 0.44721359549996; // match baseline stddev
1520                 // note: 2D gaussian has sqrt(2) times the stddev of 1D, so this factor is right
1521                 v1 = forward;
1522                 v1_x += gsl_ran_gaussian(sigma);
1523                 v1_y += gsl_ran_gaussian(sigma);
1524                 v1_z += gsl_ran_gaussian(sigma);
1525                 return v1;
1526         }
1527         else if(sstyle == 4) // gauss 2d
1528         {
1529                 sigma = spread * 0.44721359549996; // match baseline stddev
1530                 // note: 2D gaussian has sqrt(2) times the stddev of 1D, so this factor is right
1531                 v1_x = gsl_ran_gaussian(sigma);
1532                 v1_y = gsl_ran_gaussian(sigma);
1533                 v1_z = gsl_ran_gaussian(sigma);
1534                 return normalize(forward + cliptoplane(v1, forward));
1535         }
1536         else if(sstyle == 5) // 1-r
1537         {
1538                 sigma = spread * 1.154700538379252; // match baseline stddev
1539                 v1 = findperpendicular(forward);
1540                 v2 = cross(forward, v1);
1541                 // random point on unit circle
1542                 dx = random() * 2 * M_PI;
1543                 dy = sin(dx);
1544                 dx = cos(dx);
1545                 // radius in our dist function
1546                 r = random();
1547                 r = solve_cubic_abcd(-2, 3, 0, -r) * '0 1 0';
1548                 return normalize(forward + (v1 * dx + v2 * dy) * r * sigma);
1549         }
1550         else if(sstyle == 6) // 1-r^2
1551         {
1552                 sigma = spread * 1.095445115010332; // match baseline stddev
1553                 v1 = findperpendicular(forward);
1554                 v2 = cross(forward, v1);
1555                 // random point on unit circle
1556                 dx = random() * 2 * M_PI;
1557                 dy = sin(dx);
1558                 dx = cos(dx);
1559                 // radius in our dist function
1560                 r = random();
1561                 r = sqrt(1 - r);
1562                 r = sqrt(1 - r);
1563                 return normalize(forward + (v1 * dx + v2 * dy) * r * sigma);
1564         }
1565         else if(sstyle == 7) // (1-r) (2-r)
1566         {
1567                 sigma = spread * 1.224744871391589; // match baseline stddev
1568                 v1 = findperpendicular(forward);
1569                 v2 = cross(forward, v1);
1570                 // random point on unit circle
1571                 dx = random() * 2 * M_PI;
1572                 dy = sin(dx);
1573                 dx = cos(dx);
1574                 // radius in our dist function
1575                 r = random();
1576                 r = 1 - sqrt(r);
1577                 r = 1 - sqrt(r);
1578                 return normalize(forward + (v1 * dx + v2 * dy) * r * sigma);
1579         }
1580         else
1581                 error("g_projectiles_spread_style must be 0 (sphere), 1 (flattened sphere), 2 (circle), 3 (gauss 3D), 4 (gauss plane), 5 (linear falloff), 6 (quadratic falloff), 7 (stronger falloff)!");
1582         return '0 0 0';
1583         /*
1584          * how to derive falloff functions:
1585          * rho(r) := (2-r) * (1-r);
1586          * a : 0;
1587          * b : 1;
1588          * rhor(r) := r * rho(r);
1589          * cr(t) := integrate(rhor(r), r, a, t);
1590          * scr(t) := integrate(rhor(r) * r^2, r, a, t);
1591          * variance : scr(b) / cr(b);
1592          * solve(cr(r) = rand * cr(b), r), programmmode:false;
1593          * sqrt(0.4 / variance), numer;
1594          */
1595 }
1596
1597 #if 0
1598 float mspercallsum;
1599 float mspercallsstyle;
1600 float mspercallcount;
1601 #endif
1602 void W_SetupProjectileVelocityEx(entity missile, vector dir, vector upDir, float pSpeed, float pUpSpeed, float pZSpeed, float spread, float forceAbsolute)
1603 {
1604         if(missile.owner == world)
1605                 error("Unowned missile");
1606
1607         dir = dir + upDir * (pUpSpeed / pSpeed);
1608         dir_z += pZSpeed / pSpeed;
1609         pSpeed *= vlen(dir);
1610         dir = normalize(dir);
1611
1612 #if 0
1613         if(autocvar_g_projectiles_spread_style != mspercallsstyle)
1614         {
1615                 mspercallsum = mspercallcount = 0;
1616                 mspercallsstyle = autocvar_g_projectiles_spread_style;
1617         }
1618         mspercallsum -= gettime(GETTIME_HIRES);
1619 #endif
1620         dir = W_CalculateProjectileSpread(dir, spread);
1621 #if 0
1622         mspercallsum += gettime(GETTIME_HIRES);
1623         mspercallcount += 1;
1624         print("avg: ", ftos(mspercallcount / mspercallsum), " per sec\n");
1625 #endif
1626
1627         missile.velocity = W_CalculateProjectileVelocity(missile.owner.velocity, pSpeed * dir, forceAbsolute);
1628 }
1629
1630 void W_SetupProjectileVelocity(entity missile, float pSpeed, float spread)
1631 {
1632         W_SetupProjectileVelocityEx(missile, w_shotdir, v_up, pSpeed, 0, 0, spread, FALSE);
1633 }
1634
1635 #define W_SETUPPROJECTILEVELOCITY_UP(m,s) W_SetupProjectileVelocityEx(m, w_shotdir, v_up, cvar(#s "_speed"), cvar(#s "_speed_up"), cvar(#s "_speed_z"), cvar(#s "_spread"), FALSE)
1636 #define W_SETUPPROJECTILEVELOCITY(m,s) W_SetupProjectileVelocityEx(m, w_shotdir, v_up, cvar(#s "_speed"), 0, 0, cvar(#s "_spread"), FALSE)
1637
1638 // shared weapon reload code
1639 float W_Reload_AllowSwitching(float wpn)
1640 {
1641         // check each reloadable weapon's load to see if we can switch to it
1642         // since each self.*_load cvar is a fixed float, there's no way to check these but listing them here
1643         switch(wpn)
1644         {
1645                 case WEP_SHOTGUN:
1646                         return self.shotgun_load >= autocvar_g_balance_shotgun_primary_ammo;
1647                 case WEP_UZI:
1648                         return self.uzi_load >= min(max(autocvar_g_balance_uzi_sustained_ammo, autocvar_g_balance_uzi_first_ammo), autocvar_g_balance_uzi_burst_ammo);
1649                 case WEP_GRENADE_LAUNCHER:
1650                         return self.grenadelauncher_load >= min(autocvar_g_balance_grenadelauncher_primary_ammo, autocvar_g_balance_grenadelauncher_secondary_ammo);
1651                 case WEP_MINE_LAYER:
1652                         return self.minelayer_load >= autocvar_g_balance_minelayer_ammo;
1653                 case WEP_ELECTRO:
1654                         return self.electro_load >= min(autocvar_g_balance_electro_primary_ammo, autocvar_g_balance_electro_secondary_ammo);
1655                 case WEP_CRYLINK:
1656                         return self.crylink_load >= min(autocvar_g_balance_crylink_primary_ammo, autocvar_g_balance_crylink_secondary_ammo);
1657                 case WEP_HLAC:
1658                         return self.hlac_load >= min(autocvar_g_balance_hlac_primary_ammo, autocvar_g_balance_hlac_secondary_ammo);
1659                 case WEP_NEX:
1660                         return self.nex_load >= min(autocvar_g_balance_nex_primary_ammo, autocvar_g_balance_nex_secondary_ammo);
1661                 case WEP_MINSTANEX:
1662                         float minsta_ammo;
1663                         if(g_minstagib)
1664                                 minsta_ammo = 1;
1665                         else
1666                                 minsta_ammo = autocvar_g_balance_minstanex_ammo;
1667
1668                         if(autocvar_g_balance_minstanex_laser_ammo)
1669                                 return self.minstanex_load >= min(minsta_ammo, autocvar_g_balance_minstanex_laser_ammo);
1670                         else
1671                                 return self.minstanex_load >= minsta_ammo;
1672                 case WEP_SNIPERRIFLE:
1673                         return self.sniperrifle_load >= min(autocvar_g_balance_sniperrifle_primary_ammo, autocvar_g_balance_sniperrifle_secondary_ammo);
1674                 case WEP_SEEKER:
1675                         return self.seeker_load >= min(autocvar_g_balance_seeker_missile_ammo, autocvar_g_balance_seeker_tag_ammo);
1676                 case WEP_HAGAR:
1677                         return self.hagar_load >= min(autocvar_g_balance_hagar_primary_ammo, autocvar_g_balance_hagar_secondary_ammo);
1678                 case WEP_FIREBALL:
1679                         return self.fireball_load >= min(autocvar_g_balance_fireball_primary_ammo, autocvar_g_balance_fireball_secondary_ammo);
1680                 case WEP_ROCKET_LAUNCHER:
1681                         return self.rocketlauncher_load >= autocvar_g_balance_rocketlauncher_ammo;
1682                 default:
1683                         return TRUE;
1684         }
1685 }
1686
1687 .float reload_complain;
1688 float W_ReloadCheck(float ammo_amount, float ammo_shot)
1689 {
1690         entity e;
1691         e = get_weaponinfo(self.weapon);
1692
1693         // our weapon is fully loaded, no need to reload
1694         if (self.clip_load >= cvar(strcat("g_balance_", e.netname, "_reload_ammo")))
1695                 return 0;
1696
1697         // no ammo, so nothing to load
1698         if(!ammo_amount)
1699         {
1700                 if(clienttype(self) == CLIENTTYPE_REAL && self.reload_complain < time)
1701                 {
1702                         play2(self, "weapons/unavailable.wav");
1703                         sprint(self, strcat("You don't have enough ammo to reload the ^2", W_Name(self.weapon), "\n"));
1704                         self.reload_complain = time + 1;
1705                 }
1706                 // switch away if the loaded amount of ammo is not enough to keep using this weapon
1707                 if(self.clip_load < ammo_shot)
1708                 {
1709                         self.clip_load = -1; // reload later
1710                         W_SwitchToOtherWeapon(self);
1711                 }
1712                 return 0;
1713         }
1714
1715         if (self.weaponentity)
1716         {
1717                 if (self.weaponentity.wframe == WFRAME_RELOAD)
1718                         return 0;
1719
1720                 // allow switching away while reloading, but this will cause a new reload!
1721                 self.weaponentity.state = WS_READY;
1722         }
1723
1724         return 1;
1725 }