]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/cl_weaponsystem.qc
fix compile
[divverent/nexuiz.git] / data / qcsrc / server / cl_weaponsystem.qc
1 /*
2 ===========================================================================
3
4   CLIENT WEAPONSYSTEM CODE
5   Bring back W_Weaponframe
6
7 ===========================================================================
8 */
9
10 float W_WeaponRateFactor()
11 {
12         float t;
13         t = 1.0 / g_weaponratefactor;
14
15         if(g_runematch)
16         {
17                 if(self.runes & RUNE_SPEED)
18                 {
19                         if(self.runes & CURSE_SLOW)
20                                 t = t * cvar("g_balance_rune_speed_combo_atkrate");
21                         else
22                                 t = t * cvar("g_balance_rune_speed_atkrate");
23                 }
24                 else if(self.runes & CURSE_SLOW)
25                 {
26                         t = t * cvar("g_balance_curse_slow_atkrate");
27                 }
28         }
29
30         return t;
31 }
32
33 void W_SwitchWeapon_Force(entity e, float w)
34 {
35         e.cnt = e.switchweapon;
36         e.switchweapon = w;
37 }
38
39 .float antilag_debug;
40
41 // VorteX: static frame globals
42 float WFRAME_DONTCHANGE = -1;
43 float WFRAME_FIRE1 = 0;
44 float WFRAME_FIRE2 = 1;
45 float WFRAME_IDLE = 2;
46 float WFRAME_RELOAD = 3;
47 .float wframe;
48
49 void(float fr, float t, void() func) weapon_thinkf;
50
51 vector W_HitPlotUnnormalizedUntransform(vector screenforward, vector screenright, vector screenup, vector v)
52 {
53         vector ret;
54         ret_x = screenright * v;
55         ret_y = screenup * v;
56         ret_z = screenforward * v;
57         return ret;
58 }
59
60 vector W_HitPlotNormalizedUntransform(vector org, entity targ, vector screenforward, vector screenright, vector screenup, vector v)
61 {
62         float i, j, k;
63         vector mi, ma, thisv, myv, ret;
64
65         myv = W_HitPlotUnnormalizedUntransform(screenforward, screenright, screenup, org);
66
67         // x = 0..1 relative to hitbox; y = 0..1 relative to hitbox; z = distance
68
69         for(i = 0; i < 2; ++i) for(j = 0; j < 2; ++j) for(k = 0; k < 2; ++k)
70         {
71                 thisv = targ.origin;
72                 if(i) thisv_x += targ.maxs_x; else thisv_x += targ.mins_x;
73                 if(j) thisv_y += targ.maxs_y; else thisv_y += targ.mins_y;
74                 if(k) thisv_z += targ.maxs_z; else thisv_z += targ.mins_z;
75                 thisv = W_HitPlotUnnormalizedUntransform(screenforward, screenright, screenup, thisv);
76                 if(i || j || k)
77                 {
78                         if(mi_x > thisv_x) mi_x = thisv_x; if(ma_x < thisv_x) ma_x = thisv_x;
79                         if(mi_y > thisv_y) mi_y = thisv_y; if(ma_y < thisv_y) ma_y = thisv_y;
80                         //if(mi_z > thisv_z) mi_z = thisv_z; if(ma_z < thisv_z) ma_y = thisv_z;
81                 }
82                 else
83                 {
84                         // first run
85                         mi = ma = thisv;
86                 }
87         }
88
89         thisv = W_HitPlotUnnormalizedUntransform(screenforward, screenright, screenup, v);
90         ret_x = (thisv_x - mi_x) / (ma_x - mi_x);
91         ret_y = (thisv_y - mi_y) / (ma_y - mi_y);
92         ret_z = thisv_z - myv_z;
93         return ret;
94 }
95
96 void W_HitPlotAnalysis(entity player, vector screenforward, vector screenright, vector screenup)
97 {
98         vector hitplot;
99         vector org;
100         float lag;
101
102         if(player.hitplotfh >= 0)
103         {
104                 lag = ANTILAG_LATENCY(player);
105                 if(lag < 0.001)
106                         lag = 0;
107                 if(clienttype(player) != CLIENTTYPE_REAL)
108                         lag = 0; // only antilag for clients
109
110                 org = player.origin + player.view_ofs;
111                 traceline_antilag_force(player, org, org + screenforward * MAX_SHOT_DISTANCE, MOVE_NORMAL, player, lag);
112                 if(trace_ent.flags & FL_CLIENT)
113                 {
114                         antilag_takeback(trace_ent, time - lag);
115                         hitplot = W_HitPlotNormalizedUntransform(org, trace_ent, screenforward, screenright, screenup, trace_endpos);
116                         antilag_restore(trace_ent);
117                         fputs(player.hitplotfh, strcat(ftos(hitplot_x), " ", ftos(hitplot_y), " ", ftos(hitplot_z), " ", ftos(player.switchweapon), "\n"));
118                         //print(strcat(ftos(hitplot_x), " ", ftos(hitplot_y), " ", ftos(hitplot_z), "\n"));
119                 }
120         }
121 }
122
123 vector w_shotorg;
124 vector w_shotdir;
125
126 // this function calculates w_shotorg and w_shotdir based on the weapon model
127 // offset, trueaim and antilag, and won't put w_shotorg inside a wall.
128 // make sure you call makevectors first (FIXME?)
129 void W_SetupShot_ProjectileSize(entity ent, vector mi, vector ma, float antilag, float recoil, string snd, float maxdamage)
130 {
131         float nudge = 1; // added to traceline target and subtracted from result
132         local vector trueaimpoint;
133         local float oldsolid;
134         float oldmask;
135         vector vecs, dv;
136         oldsolid = ent.dphitcontentsmask;
137         if(ent.weapon == WEP_CAMPINGRIFLE)
138                 ent.dphitcontentsmask = DPCONTENTS_BODY | DPCONTENTS_CORPSE;
139         else
140                 ent.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE;
141         if(antilag)
142                 traceline_antilag(world, ent.origin + ent.view_ofs, ent.origin + ent.view_ofs + v_forward * MAX_SHOT_DISTANCE, MOVE_NORMAL, ent, ANTILAG_LATENCY(ent));
143                 // passing world, because we do NOT want it to touch dphitcontentsmask
144         else
145                 traceline(ent.origin + ent.view_ofs, ent.origin + ent.view_ofs + s_forward * MAX_SHOT_DISTANCE, MOVE_NOMONSTERS, ent);
146         ent.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE;
147         trueaimpoint = trace_endpos;
148
149         // Track max damage and set the stat to be sent later in g_world.qc
150         if not(inWarmupStage)
151         {
152                 ent.max_damage[ent.weapon] += maxdamage;
153                 ent.maxdamage_fired = ent.weapon + 64 * rint(ent.max_damage[ent.weapon]);
154         }
155
156         W_HitPlotAnalysis(ent, v_forward, v_right, v_up);
157
158         if(ent.weaponentity.movedir_x > 0)
159         {
160                 vecs = ent.weaponentity.movedir;
161                 vecs_y = -vecs_y;
162         }
163         else
164                 vecs = '0 0 0';
165
166         if(debug_shotorg != '0 0 0')
167                 vecs = debug_shotorg;
168
169         dv = v_right * vecs_y + v_up * vecs_z;
170         w_shotorg = ent.origin + ent.view_ofs + dv;
171
172         // now move the shotorg forward as much as requested if possible
173         if(antilag)
174         {
175                 if(ent.antilag_debug)
176                         tracebox_antilag(ent, w_shotorg, mi, ma, w_shotorg + v_forward * (vecs_x + nudge), MOVE_NORMAL, ent, ent.antilag_debug);
177                 else
178                         tracebox_antilag(ent, w_shotorg, mi, ma, w_shotorg + v_forward * (vecs_x + nudge), MOVE_NORMAL, ent, ANTILAG_LATENCY(ent));
179         }
180         else
181                 tracebox(w_shotorg, mi, ma, w_shotorg + v_forward * (vecs_x + nudge), MOVE_NORMAL, ent);
182         w_shotorg = trace_endpos - v_forward * nudge;
183         // calculate the shotdir from the chosen shotorg
184         w_shotdir = normalize(trueaimpoint - w_shotorg);
185
186 #if 0
187         // explanation of g_antilag:
188         // if client reports it was aiming at a player, and the serverside trace
189         // says it would miss, change the aim point to the player's new origin,
190         // but only if the shot at the player's new origin would hit of course
191         //
192         // FIXME: a much better method for bullet weapons would be to leave a
193         // trail of lagged 'ghosts' behind players, and see if the bullet hits the
194         // ghost corresponding to this player's ping time, and if so it would do
195         // damage to the real player
196         if (antilag)
197         if (ent.cursor_trace_ent)                 // client was aiming at someone
198         if (ent.cursor_trace_ent != ent)         // just to make sure
199         if (ent.cursor_trace_ent.takedamage)      // and that person is killable
200         if (ent.cursor_trace_ent.classname == "player") // and actually a player
201         if (cvar("g_antilag") == 1)
202         {
203                 // verify that the shot would miss without antilag
204                 // (avoids an issue where guns would always shoot at their origin)
205                 traceline(w_shotorg, w_shotorg + w_shotdir * MAX_SHOT_DISTANCE, MOVE_NORMAL, ent);
206                 if (!trace_ent.takedamage)
207                 {
208                         // verify that the shot would hit if altered
209                         traceline(w_shotorg, ent.cursor_trace_ent.origin, MOVE_NORMAL, ent);
210                         if (trace_ent == ent.cursor_trace_ent)
211                         {
212                                 // verify that the shot would hit in the past
213                                 if(ent.antilag_debug)
214                                         antilag_takeback(ent.cursor_trace_ent, time - ent.antilag_debug);
215                                 else
216                                         antilag_takeback(ent.cursor_trace_ent, time - ANTILAG_LATENCY(ent));
217
218                                 traceline(ent.origin + ent.view_ofs, ent.origin + ent.view_ofs + v_forward * MAX_SHOT_DISTANCE, MOVE_NORMAL, ent);
219                                 antilag_restore(ent.cursor_trace_ent);
220
221                                 if(trace_ent == ent.cursor_trace_ent)
222                                 {
223                                         // HIT!
224                                         w_shotdir = normalize(ent.cursor_trace_ent.origin - w_shotorg);
225                                         dprint("ANTILAG HIT for ", ent.netname, "\n");
226                                 }
227                                 else
228                                 {
229                                         // prydon cursor aimbot or odd network conditions
230                                         dprint("WARNING: antilag ghost trace for ", ent.netname, " failed!\n");
231                                 }
232
233                                 if(cvar("developer") >= 2)
234                                 {
235                                         vector v, vplus, vel;
236                                         float X;
237                                         v     = antilag_takebackorigin(ent.cursor_trace_ent, time - (ANTILAG_LATENCY(ent)       ));
238                                         vplus = antilag_takebackorigin(ent.cursor_trace_ent, time - (ANTILAG_LATENCY(ent) + 0.01));
239                                         vel = (vplus - v) * (1 / 0.01);
240                                         // solve: v + X * vel = closest to ent.origin + ent.view_ofs, v_forward axis
241                                         v     -= (ent.origin + ent.view_ofs);
242                                         // solve: v + X * vel = closest to v_forward axis
243                                         // project into 2D by subtracting v_forward components:
244                                         v   -= (v   * v_forward) * v_forward;
245                                         vel -= (vel * v_forward) * v_forward;
246                                         // solve: v + X * vel = closest to origin
247                                         // (v + X * vel)^2 closest to 0
248                                         // v^2 + 2 * X * (v * vel) + X^2 * vel^2 closest to 0
249                                         X = -(v * vel) / (vel * vel);
250                                         dprint("dead center needs adjustment of ", ftos(X), " (that is, ", ftos(ANTILAG_LATENCY(ent) + X), " instead of ", ftos(ANTILAG_LATENCY(ent)), "\n");
251                                 }
252                         }
253                 }
254         }
255 #else
256         if (antilag)
257         {
258                 if (cvar("g_antilag") == 1) // switch to "ghost" if not hitting original
259                 {
260                         traceline(w_shotorg, w_shotorg + w_shotdir * MAX_SHOT_DISTANCE, MOVE_NORMAL, ent);
261                         if (!trace_ent.takedamage)
262                         {
263                                 traceline_antilag_force (ent, w_shotorg, w_shotorg + w_shotdir * MAX_SHOT_DISTANCE, MOVE_NORMAL, ent, ANTILAG_LATENCY(ent));
264                                 if (trace_ent.takedamage && trace_ent.classname == "player")
265                                 {
266                                         entity e;
267                                         e = trace_ent;
268                                         traceline(w_shotorg, e.origin, MOVE_NORMAL, ent);
269                                         if(trace_ent == e)
270                                                 w_shotdir = normalize(trace_ent.origin - w_shotorg);
271                                 }
272                         }
273                 }
274                 else if(cvar("g_antilag") == 3) // client side hitscan
275                 {
276                         if (ent.cursor_trace_ent)                 // client was aiming at someone
277                         if (ent.cursor_trace_ent != ent)         // just to make sure
278                         if (ent.cursor_trace_ent.takedamage)      // and that person is killable
279                         if (ent.cursor_trace_ent.classname == "player") // and actually a player
280                         {
281                                 // verify that the shot would miss without antilag
282                                 // (avoids an issue where guns would always shoot at their origin)
283                                 traceline(w_shotorg, w_shotorg + w_shotdir * MAX_SHOT_DISTANCE, MOVE_NORMAL, ent);
284                                 if (!trace_ent.takedamage)
285                                 {
286                                         // verify that the shot would hit if altered
287                                         traceline(w_shotorg, ent.cursor_trace_ent.origin, MOVE_NORMAL, ent);
288                                         if (trace_ent == ent.cursor_trace_ent)
289                                                 w_shotdir = normalize(ent.cursor_trace_ent.origin - w_shotorg);
290                                         else
291                                                 print("antilag fail\n");
292                                 }
293                         }
294                 }
295         }
296 #endif
297
298         ent.dphitcontentsmask = oldsolid; // restore solid type (generally SOLID_SLIDEBOX)
299
300         if (!g_norecoil)
301                 ent.punchangle_x = recoil * -1;
302
303         if (snd != "")
304         {
305                 sound (ent, CHAN_WEAPON, snd, VOL_BASE, ATTN_NORM);
306         }
307
308         if (ent.items & IT_STRENGTH)
309         if (!g_minstagib)
310                 sound (ent, CHAN_AUTO, "weapons/strength_fire.wav", VOL_BASE, ATTN_NORM);
311 };
312
313 void W_SetupShot(entity ent, float antilag, float recoil, string snd, float maxdamage)
314 {
315         W_SetupShot_ProjectileSize(ent, '0 0 0', '0 0 0', antilag, recoil, snd, maxdamage);
316 }
317
318 void LaserTarget_Think()
319 {
320         entity e;
321         vector offset;
322         float uselaser;
323         uselaser = 0;
324
325         // list of weapons that will use the laser, and the options that enable it
326         if(self.owner.laser_on && self.owner.weapon == WEP_ROCKET_LAUNCHER && g_laserguided_missile)
327                 uselaser = 1;
328         // example
329         //if(self.owner.weapon == WEP_ELECTRO && cvar("g_laserguided_electro"))
330         //      uselaser = 1;
331
332
333
334         // if a laser-enabled weapon isn't selected, delete any existing laser and quit
335         if(!uselaser)
336         {
337                 // rocket launcher isn't selected, so no laser target.
338                 if(self.lasertarget != world)
339                 {
340                         remove(self.lasertarget);
341                         self.lasertarget = world;
342                 }
343                 return;
344         }
345
346         if(!self.lasertarget)
347         {
348                 // we don't have a lasertarget entity, so spawn one
349                 //bprint("create laser target\n");
350                 e = self.lasertarget = spawn();
351                 e.owner = self.owner;                   // Its owner is my owner
352                 e.classname = "laser_target";
353                 e.movetype = MOVETYPE_NOCLIP;   // don't touch things
354                 setmodel(e, "models/laser_dot.mdl");    // what it looks like, precision set below
355                 e.scale = 1.25;                         // make it larger
356                 e.alpha = 0.25;                         // transparency
357                 e.colormod = '255 0 0' * (1/255) * 8;   // change colors
358                 e.effects = EF_FULLBRIGHT | EF_LOWPRECISION;
359                 // make it dynamically glow
360                 // you should avoid over-using this, as it can slow down the player's computer.
361                 e.glow_color = 251; // red color
362                 e.glow_size = 12;
363         }
364         else
365                 e = self.lasertarget;
366
367         // move the laser dot to where the player is looking
368
369         makevectors(self.owner.v_angle); // set v_forward etc to the direction the player is looking
370         offset = '0 0 26' + v_right*3;
371         traceline(self.owner.origin + offset, self.owner.origin + offset + v_forward * MAX_SHOT_DISTANCE, FALSE, self); // trace forward until you hit something, like a player or wall
372         setorigin(e, trace_endpos + v_forward*8); // move me to where the traceline ended
373         if(trace_plane_normal != '0 0 0')
374                 e.angles = vectoangles(trace_plane_normal);
375         else
376                 e.angles = vectoangles(v_forward);
377 }
378
379 float CL_Weaponentity_CustomizeEntityForClient()
380 {
381         self.viewmodelforclient = self.owner;
382         if(other.classname == "spectator")
383                 if(other.enemy == self.owner)
384                         self.viewmodelforclient = other;
385         return TRUE;
386 }
387
388 float qcweaponanimation;
389 vector weapon_offset = '0 -10 0';
390 vector weapon_adjust = '10 0 -15';
391 .vector weapon_morph0origin;
392 .vector weapon_morph0angles;
393 .float  weapon_morph0time;
394 .vector weapon_morph1origin;
395 .vector weapon_morph1angles;
396 .float  weapon_morph1time;
397 .vector weapon_morph2origin;
398 .vector weapon_morph2angles;
399 .float  weapon_morph2time;
400 .vector weapon_morph3origin;
401 .vector weapon_morph3angles;
402 .float  weapon_morph3time;
403 .vector weapon_morph4origin;
404 .vector weapon_morph4angles;
405 .float  weapon_morph4time;
406 .string weaponname;
407 #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)
408
409 /*
410  * supported formats:
411  *
412  * 1. simple animated model, muzzlr flash handling on h_ model:
413  *    h_tuba.dpm, h_tuba.dpm.framegroups - invisible model controlling the animation
414  *      tags:
415  *        shot = muzzle end (shot origin, also used for muzzle flashes)
416  *        shell = casings ejection point (must be on the right hand side of the gun)
417  *        weapon = attachment for v_tuba.md3
418  *    v_tuba.md3 - first and third person model
419  *    g_tuba.md3 - pickup model
420  *
421  * 2. fully animated model, muzzle flash handling on h_ model:
422  *    h_tuba.dpm, h_tuba.dpm.framegroups - animated first person model
423  *      tags:
424  *        shot = muzzle end (shot origin, also used for muzzle flashes)
425  *        shell = casings ejection point (must be on the right hand side of the gun)
426  *        handle = corresponding to the origin of v_tuba.md3 (used for muzzle flashes)
427  *    v_tuba.md3 - third person model
428  *    g_tuba.md3 - pickup model
429  *
430  * 3. fully animated model, muzzle flash handling on v_ model:
431  *    h_tuba.dpm, h_tuba.dpm.framegroups - animated first person model
432  *      tags:
433  *        shot = muzzle end (shot origin)
434  *        shell = casings ejection point (must be on the right hand side of the gun)
435  *    v_tuba.md3 - third person model
436  *      tags:
437  *        shot = muzzle end (for muzzle flashes)
438  *    g_tuba.md3 - pickup model
439  */
440
441 void CL_Weaponentity_Think()
442 {
443         float tb, v_shot_idx;
444         self.nextthink = time;
445         if (intermission_running)
446                 self.frame = self.anim_idle_x;
447         if (self.owner.weaponentity != self)
448         {
449                 if (self.weaponentity)
450                         remove(self.weaponentity);
451                 remove(self);
452                 return;
453         }
454         if (self.owner.deadflag != DEAD_NO)
455         {
456                 self.model = "";
457                 if (self.weaponentity)
458                         self.weaponentity.model = "";
459                 return;
460         }
461         if (self.cnt != self.owner.weapon || self.dmg != self.owner.modelindex || self.deadflag != self.owner.deadflag)
462         {
463                 self.cnt = self.owner.weapon;
464                 self.dmg = self.owner.modelindex;
465                 self.deadflag = self.owner.deadflag;
466
467                 string animfilename;
468                 float animfile;
469                 if (self.owner.weaponname != "")
470                 {
471                         // if there is a child entity, hide it until we're sure we use it
472                         if (self.weaponentity)
473                                 self.weaponentity.model = "";
474                         setmodel(self, strcat("models/weapons/v_", self.owner.weaponname, ".md3")); // precision set below
475                         v_shot_idx = gettagindex(self, "shot"); // used later
476
477                         if(qcweaponanimation)
478                         {
479                                 self.angles = '0 0 0';
480                                 makevectors(self.angles_x * '-1 0 0' + self.angles_y * '0 1 0' + self.angles_z * '0 0 1');
481                                 self.movedir = weapon_offset_x * v_forward - weapon_offset_y * v_right + weapon_offset_z * v_up + weapon_adjust;
482                                 self.movedir_x += 32;
483                                 self.spawnorigin = self.movedir;
484                                 // oldorigin - not calculated here
485                         }
486                         else
487                         {
488                                 setmodel(self, strcat("models/weapons/h_", self.owner.weaponname, ".dpm")); // precision set below
489                                 animfilename = strcat("models/weapons/h_", self.owner.weaponname, ".dpm.animinfo");
490                                 animfile = fopen(animfilename, FILE_READ);
491                                 // preset some defaults that work great for renamed zym files (which don't need an animinfo)
492                                 self.anim_fire1  = '0 1 0.01';
493                                 self.anim_fire2  = '1 1 0.01';
494                                 self.anim_idle   = '2 1 0.01';
495                                 self.anim_reload = '3 1 0.01';
496                                 if (animfile >= 0)
497                                 {
498                                         animparseerror = FALSE;
499                                         self.anim_fire1  = animparseline(animfile);
500                                         self.anim_fire2  = animparseline(animfile);
501                                         self.anim_idle   = animparseline(animfile);
502                                         self.anim_reload = animparseline(animfile);
503                                         fclose(animfile);
504                                         if (animparseerror)
505                                                 print("Parse error in ", animfilename, ", some player animations are broken\n");
506                                 }
507
508                                 // if we have a "weapon" tag, let's attach the v_ model to it ("invisible hand" style model)
509                                 // if we don't, this is a "real" animated model
510                                 if(gettagindex(self, "weapon"))
511                                 {
512                                         if (!self.weaponentity)
513                                                 self.weaponentity = spawn();
514                                         setmodel(self.weaponentity, strcat("models/weapons/v_", self.owner.weaponname, ".md3")); // precision does not matter
515                                         setattachment(self.weaponentity, self, "weapon");
516                                 }
517                                 else
518                                 {
519                                         if(self.weaponentity)
520                                                 remove(self.weaponentity);
521                                         self.weaponentity = world;
522                                 }
523
524                                 setorigin(self,'0 0 0');
525                                 self.angles = '0 0 0';
526                                 self.frame = 0;
527                                 self.viewmodelforclient = world;
528
529                                 float idx;
530                                 idx = gettagindex(self, "shot");
531                                 if(idx)
532                                 {
533                                         self.movedir = gettaginfo(self, idx);
534                                 }
535                                 else
536                                 {
537                                         print("WARNING: weapon model ", self.model, " does not support the 'shot' tag, will display shots TOTALLY wrong\n");
538                                         self.movedir = '0 0 0';
539                                 }
540
541                                 idx = gettagindex(self, "shell");
542                                 if(idx)
543                                 {
544                                         self.spawnorigin = gettaginfo(self, idx);
545                                 }
546                                 else
547                                 {
548                                         print("WARNING: weapon model ", self.model, " does not support the 'shell' tag, will display casings wrong\n");
549                                         self.spawnorigin = self.movedir;
550                                 }
551
552                                 if(v_shot_idx)
553                                 {
554                                         self.oldorigin = '0 0 0';
555                                 }
556                                 else
557                                 {
558                                         if(self.weaponentity)
559                                                 idx = gettagindex(self, "weapon");
560                                         else
561                                                 idx = gettagindex(self, "handle");
562                                         if(idx)
563                                         {
564                                                 self.oldorigin = self.movedir - gettaginfo(self, idx);
565                                         }
566                                         else
567                                         {
568                                                 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");
569                                                 self.oldorigin = '0 0 0'; // there is no way to recover from this
570                                         }
571                                 }
572
573                                 self.viewmodelforclient = self.owner;
574                         }
575                 }
576                 else
577                 {
578                         self.model = "";
579                         if(self.weaponentity)
580                                 remove(self.weaponentity);
581                         self.weaponentity = world;
582                         self.movedir = '0 0 0';
583                         self.spawnorigin = '0 0 0';
584                         self.oldorigin = '0 0 0';
585                         self.anim_fire1  = '0 1 0.01';
586                         self.anim_fire2  = '0 1 0.01';
587                         self.anim_idle   = '0 1 0.01';
588                         self.anim_reload = '0 1 0.01';
589                 }
590
591                 self.view_ofs = '0 0 0';
592
593                 if(self.movedir_x >= 0)
594                 {
595                         vector v0;
596                         v0 = self.movedir;
597                         self.movedir = shotorg_adjust(v0, FALSE, FALSE);
598                         self.view_ofs = shotorg_adjust(v0, FALSE, TRUE) - v0;
599                 }
600                 self.owner.stat_shotorg = compressShotOrigin(self.movedir);
601                 self.movedir = decompressShotOrigin(self.owner.stat_shotorg); // make them match perfectly
602
603                 self.spawnorigin += self.view_ofs; // offset the casings origin by the same amount
604
605                 // check if an instant weapon switch occurred
606                 if (qcweaponanimation)
607                 {
608                         if (self.state == WS_READY)
609                         {
610                                 self.angles = '0 0 0';
611                                 makevectors(self.angles_x * '-1 0 0' + self.angles_y * '0 1 0' + self.angles_z * '0 0 1');
612                                 setorigin(self, QCWEAPONANIMATION_ORIGIN(self));
613                         }
614                 }
615                 else
616                         setorigin(self, self.view_ofs);
617                 // reset animstate now
618                 self.wframe = WFRAME_IDLE;
619                 self.weapon_morph0time = 0;
620                 self.weapon_morph1time = 0;
621                 self.weapon_morph2time = 0;
622                 self.weapon_morph3time = 0;
623                 self.weapon_morph4time = 0;
624                 setanim(self, self.anim_idle, TRUE, FALSE, TRUE);
625         }
626
627         tb = (self.effects & EF_TELEPORT_BIT);
628         self.effects = self.owner.effects & EFMASK_CHEAP;
629         self.effects &~= EF_LOWPRECISION;
630         self.effects &~= EF_FULLBRIGHT; // can mask team color, so get rid of it
631         self.effects &~= EF_TELEPORT_BIT;
632         self.effects |= tb;
633
634         if(self.owner.alpha != 0)
635                 self.alpha = self.owner.alpha;
636         else
637                 self.alpha = 1;
638
639         self.colormap = self.owner.colormap;
640         if (self.weaponentity)
641         {
642                 self.weaponentity.effects = self.effects;
643                 self.weaponentity.alpha = self.alpha;
644                 self.weaponentity.colormap = self.colormap;
645         }
646
647         self.angles = '0 0 0';
648         local float f;
649         f = 0;
650         if (self.state == WS_RAISE)
651         {
652                 f = (self.owner.weapon_nextthink - time) * g_weaponratefactor / cvar("g_balance_weaponswitchdelay");
653                 self.angles_x = -90 * f * f;
654                 if (qcweaponanimation)
655                 {
656                         makevectors(self.angles_x * '-1 0 0' + self.angles_y * '0 1 0' + self.angles_z * '0 0 1');
657                         setorigin(self, QCWEAPONANIMATION_ORIGIN(self));
658                 }
659         }
660         else if (self.state == WS_DROP)
661         {
662                 f = 1 - (self.owner.weapon_nextthink - time) * g_weaponratefactor / cvar("g_balance_weaponswitchdelay");
663                 self.angles_x = -90 * f * f;
664                 if (qcweaponanimation)
665                 {
666                         makevectors(self.angles_x * '-1 0 0' + self.angles_y * '0 1 0' + self.angles_z * '0 0 1');
667                         setorigin(self, QCWEAPONANIMATION_ORIGIN(self));
668                 }
669         }
670         else if (self.state == WS_CLEAR)
671         {
672                 f = 1;
673                 self.angles_x = -90 * f * f;
674                 if (qcweaponanimation)
675                 {
676                         makevectors(self.angles_x * '-1 0 0' + self.angles_y * '0 1 0' + self.angles_z * '0 0 1');
677                         setorigin(self, QCWEAPONANIMATION_ORIGIN(self));
678                 }
679         }
680         else if (qcweaponanimation && time < self.owner.weapon_morph1time)
681         {
682                 f = (time - self.owner.weapon_morph0time) / (self.owner.weapon_morph1time - self.owner.weapon_morph0time);
683                 f = 1 - pow(1 - f, 3);
684                 self.angles = self.owner.weapon_morph0angles * (1 - f) + self.owner.weapon_morph1angles * f;
685                 setorigin(self, self.owner.weapon_morph0origin * (1 - f) + self.owner.weapon_morph1origin * f);
686         }
687         else if (qcweaponanimation && time < self.owner.weapon_morph2time)
688         {
689                 f = (time - self.owner.weapon_morph1time) / (self.owner.weapon_morph2time - self.owner.weapon_morph1time);
690                 f = 1 - pow(1 - f, 3);
691                 self.angles = self.owner.weapon_morph1angles * (1 - f) + self.owner.weapon_morph2angles * f;
692                 setorigin(self, self.owner.weapon_morph1origin * (1 - f) + self.owner.weapon_morph2origin * f);
693         }
694         else if (qcweaponanimation && time < self.owner.weapon_morph3time)
695         {
696                 f = (time - self.owner.weapon_morph2time) / (self.owner.weapon_morph3time - self.owner.weapon_morph2time);
697                 f = 1 - pow(1 - f, 3);
698                 self.angles = self.owner.weapon_morph2angles * (1 - f) + self.owner.weapon_morph3angles * f;
699                 setorigin(self, self.owner.weapon_morph2origin * (1 - f) + self.owner.weapon_morph3origin * f);
700         }
701         else if (qcweaponanimation && time < self.owner.weapon_morph4time)
702         {
703                 f = (time - self.owner.weapon_morph3time) / (self.owner.weapon_morph4time - self.owner.weapon_morph3time);
704                 f = 1 - pow(1 - f, 3);
705                 self.angles = self.owner.weapon_morph3angles * (1 - f) + self.owner.weapon_morph4angles * f;
706                 setorigin(self, self.owner.weapon_morph3origin * (1 - f) + self.owner.weapon_morph4origin * f);
707         }
708         else if (qcweaponanimation)
709         {
710                 // begin a new idle morph
711                 self.owner.weapon_morph0time   = time;
712                 self.owner.weapon_morph0angles = self.angles;
713                 self.owner.weapon_morph0origin = self.origin;
714
715                 float r;
716                 float t;
717
718                 r = random();
719                 if (r < 0.1)
720                 {
721                         // turn gun to the left to look at it
722                         t = 2;
723                         self.owner.weapon_morph1time   = time + t * 0.2;
724                         self.owner.weapon_morph1angles = randomvec() * 3 + '-5 30 0';
725                         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');
726                         self.owner.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self);
727
728                         self.owner.weapon_morph2time   = time + t * 0.6;
729                         self.owner.weapon_morph2angles = randomvec() * 3 + '-5 30 0';
730                         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');
731                         self.owner.weapon_morph2origin = QCWEAPONANIMATION_ORIGIN(self);
732
733                         self.owner.weapon_morph3time   = time + t;
734                         self.owner.weapon_morph3angles = '0 0 0';
735                         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');
736                         self.owner.weapon_morph3origin = QCWEAPONANIMATION_ORIGIN(self);
737                 }
738                 else if (r < 0.2)
739                 {
740                         // raise the gun a bit
741                         t = 2;
742                         self.owner.weapon_morph1time   = time + t * 0.2;
743                         self.owner.weapon_morph1angles = randomvec() * 3 + '30 -10 0';
744                         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');
745                         self.owner.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self);
746
747                         self.owner.weapon_morph2time   = time + t * 0.5;
748                         self.owner.weapon_morph2angles = randomvec() * 3 + '30 -10 5';
749                         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');
750                         self.owner.weapon_morph2origin = QCWEAPONANIMATION_ORIGIN(self);
751
752                         self.owner.weapon_morph3time   = time + t;
753                         self.owner.weapon_morph3angles = '0 0 0';
754                         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');
755                         self.owner.weapon_morph3origin = QCWEAPONANIMATION_ORIGIN(self);
756                 }
757                 else if (r < 0.3)
758                 {
759                         // tweak it a bit
760                         t = 5;
761                         self.owner.weapon_morph1time   = time + t * 0.3;
762                         self.owner.weapon_morph1angles = randomvec() * 6;
763                         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');
764                         self.owner.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self);
765
766                         self.owner.weapon_morph2time   = time + t * 0.7;
767                         self.owner.weapon_morph2angles = randomvec() * 6;
768                         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');
769                         self.owner.weapon_morph2origin = QCWEAPONANIMATION_ORIGIN(self);
770
771                         self.owner.weapon_morph3time   = time + t;
772                         self.owner.weapon_morph3angles = '0 0 0';
773                         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');
774                         self.owner.weapon_morph3origin = QCWEAPONANIMATION_ORIGIN(self);
775                 }
776                 else
777                 {
778                         // hold it mostly steady
779                         t = random() * 6 + 4;
780                         self.owner.weapon_morph1time   = time + t * 0.2;
781                         self.owner.weapon_morph1angles = randomvec() * 1;
782                         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');
783                         self.owner.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self);
784
785                         self.owner.weapon_morph2time   = time + t * 0.5;
786                         self.owner.weapon_morph2angles = randomvec() * 1;
787                         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');
788                         self.owner.weapon_morph2origin = QCWEAPONANIMATION_ORIGIN(self);
789
790                         self.owner.weapon_morph3time   = time + t * 0.7;
791                         self.owner.weapon_morph3angles = randomvec() * 1;
792                         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');
793                         self.owner.weapon_morph3origin = QCWEAPONANIMATION_ORIGIN(self);
794                 }
795
796                 self.owner.weapon_morph4time   = time + t;
797                 self.owner.weapon_morph4angles = '0 0 0';
798                 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');
799                 self.owner.weapon_morph4origin = QCWEAPONANIMATION_ORIGIN(self);
800
801         }
802
803         // create or update the lasertarget entity
804         LaserTarget_Think();
805 };
806
807 void CL_ExteriorWeaponentity_Think()
808 {
809         float tag_found;
810         self.nextthink = time;
811         if (self.owner.exteriorweaponentity != self)
812         {
813                 remove(self);
814                 return;
815         }
816         if (self.owner.deadflag != DEAD_NO)
817         {
818                 self.model = "";
819                 return;
820         }
821         if (self.cnt != self.owner.weapon || self.dmg != self.owner.modelindex || self.deadflag != self.owner.deadflag)
822         {
823                 self.cnt = self.owner.weapon;
824                 self.dmg = self.owner.modelindex;
825                 self.deadflag = self.owner.deadflag;
826                 if (self.owner.weaponname != "")
827                         setmodel(self, strcat("models/weapons/v_", self.owner.weaponname, ".md3")); // precision set below
828                 else
829                         self.model = "";
830
831                 if((tag_found = gettagindex(self.owner, "tag_weapon")))
832                 {
833                         self.tag_index = tag_found;
834                         self.tag_entity = self.owner;
835                 }
836                 else
837                         setattachment(self, self.owner, "bip01 r hand");
838
839                 // if that didn't find a tag, hide the exterior weapon model
840                 if (!self.tag_index)
841                         self.model = "";
842         }
843         self.effects = self.owner.effects | EF_LOWPRECISION;
844         self.effects = self.effects & EFMASK_CHEAP; // eat performance
845         if(self.owner.alpha != 0)
846                 self.alpha = self.owner.alpha;
847         else
848                 self.alpha = 1;
849
850         self.colormap = self.owner.colormap;
851 };
852
853 // spawning weaponentity for client
854 void CL_SpawnWeaponentity()
855 {
856         self.weaponentity = spawn();
857         self.weaponentity.classname = "weaponentity";
858         self.weaponentity.solid = SOLID_NOT;
859         self.weaponentity.owner = self;
860         setmodel(self.weaponentity, ""); // precision set when changed
861         setorigin(self.weaponentity, '0 0 0');
862         self.weaponentity.angles = '0 0 0';
863         self.weaponentity.viewmodelforclient = self;
864         self.weaponentity.flags = 0;
865         self.weaponentity.think = CL_Weaponentity_Think;
866         self.weaponentity.customizeentityforclient = CL_Weaponentity_CustomizeEntityForClient;
867         self.weaponentity.nextthink = time;
868
869         self.exteriorweaponentity = spawn();
870         self.exteriorweaponentity.classname = "exteriorweaponentity";
871         self.exteriorweaponentity.solid = SOLID_NOT;
872         self.exteriorweaponentity.exteriorweaponentity = self.exteriorweaponentity;
873         self.exteriorweaponentity.owner = self;
874         setorigin(self.exteriorweaponentity, '0 0 0');
875         self.exteriorweaponentity.angles = '0 0 0';
876         self.exteriorweaponentity.think = CL_ExteriorWeaponentity_Think;
877         self.exteriorweaponentity.nextthink = time;
878 };
879
880 .float hasweapon_complain_spam;
881
882 float client_hasweapon(entity cl, float wpn, float andammo, float complain)
883 {
884         local float weaponbit, f;
885         local entity oldself;
886
887         if(time < self.hasweapon_complain_spam)
888                 complain = 0;
889         if(complain)
890                 self.hasweapon_complain_spam = time + 0.2;
891
892         if (wpn < WEP_FIRST || wpn > WEP_LAST)
893         {
894                 if (complain)
895                         sprint(self, "Invalid weapon\n");
896                 return FALSE;
897         }
898         weaponbit = W_WeaponBit(wpn);
899         if (cl.weapons & weaponbit)
900         {
901                 if (andammo)
902                 {
903                         if(cl.items & IT_UNLIMITED_WEAPON_AMMO)
904                         {
905                                 f = 1;
906                         }
907                         else
908                         {
909                                 oldself = self;
910                                 self = cl;
911                                 f = weapon_action(wpn, WR_CHECKAMMO1);
912                                 f = f + weapon_action(wpn, WR_CHECKAMMO2);
913                                 self = oldself;
914                         }
915                         if (!f)
916                         {
917                                 if (complain)
918                                 if(clienttype(cl) == CLIENTTYPE_REAL)
919                                 {
920                                         play2(cl, "weapons/unavailable.wav");
921                                         sprint(cl, strcat("You don't have any ammo for the ^2", W_Name(wpn), "\n"));
922                                 }
923                                 return FALSE;
924                         }
925                 }
926                 return TRUE;
927         }
928         if (complain)
929         {
930                 // DRESK - 3/16/07
931                 // Report Proper Weapon Status / Modified Weapon Ownership Message
932                 if(weaponsInMap & weaponbit)
933                 {
934                         sprint(cl, strcat("You do not have the ^2", W_Name(wpn), "\n") );
935
936                         if(cvar("g_showweaponspawns"))
937                         {
938                                 entity e;
939                                 string s;
940
941                                 e = get_weaponinfo(wpn);
942                                 s = e.model2;
943
944                                 for(e = world; (e = findfloat(e, weapons, weaponbit)); )
945                                 {
946                                         if(e.classname == "droppedweapon")
947                                                 continue;
948                                         if not(e.flags & FL_ITEM)
949                                                 continue;
950                                         WaypointSprite_Spawn(
951                                                 s,
952                                                 1, 0,
953                                                 world, e.origin,
954                                                 self, 0,
955                                                 world, enemy,
956                                                 0
957                                         );
958                                 }
959                         }
960                 }
961                 else
962                         sprint(cl, strcat("The ^2", W_Name(wpn), "^7 is ^1NOT AVAILABLE^7 in this map\n") );
963
964                 play2(cl, "weapons/unavailable.wav");
965         }
966         return FALSE;
967 };
968
969 // Weapon subs
970 void w_clear()
971 {
972         if (self.weapon != -1)
973                 self.weapon = 0;
974         if (self.weaponentity)
975         {
976                 self.weaponentity.state = WS_CLEAR;
977                 self.weaponentity.effects = 0;
978         }
979 };
980
981 void w_ready()
982 {
983         if (self.weaponentity)
984                 self.weaponentity.state = WS_READY;
985         weapon_thinkf(WFRAME_IDLE, 1000000, w_ready);
986 };
987
988 // Setup weapon for client (after this raise frame will be launched)
989 void weapon_setup(float windex)
990 {
991         entity e;
992         qcweaponanimation = cvar("sv_qcweaponanimation");
993         e = get_weaponinfo(windex);
994         self.items &~= IT_AMMO;
995         self.items = self.items | e.items;
996
997         // the two weapon entities will notice this has changed and update their models
998         self.weapon = windex;
999         self.weaponname = e.mdl;
1000         self.bulletcounter = 0;
1001 };
1002
1003 // perform weapon to attack (weaponstate and attack_finished check is here)
1004 .float race_penalty;
1005 float weapon_prepareattack(float secondary, float attacktime)
1006 {
1007         //if sv_ready_restart_after_countdown is set, don't allow the player to shoot
1008         //if all players readied up and the countdown is running
1009         if(time < game_starttime || time < self.race_penalty) {
1010                 return FALSE;
1011         }
1012
1013         if not(self.items & IT_UNLIMITED_WEAPON_AMMO)
1014         if (!weapon_action(self.weapon, WR_CHECKAMMO1 + secondary))
1015         {
1016                 W_SwitchWeapon_Force(self, w_getbestweapon(self));
1017                 return FALSE;
1018         }
1019
1020         if (timeoutStatus == 2) //don't allow the player to shoot while game is paused
1021                 return FALSE;
1022
1023         // do not even think about shooting if switching
1024         if(self.switchweapon != self.weapon)
1025                 return FALSE;
1026
1027         // don't fire if previous attack is not finished
1028         if(attacktime >= 0)
1029                 if (ATTACK_FINISHED(self) > time + frametime * 0.5)
1030                         return FALSE;
1031         // don't fire while changing weapon
1032         if (self.weaponentity.state != WS_READY)
1033                 return FALSE;
1034         self.weaponentity.state = WS_INUSE;
1035
1036         self.spawnshieldtime = min(self.spawnshieldtime, time); // kill spawn shield when you fire
1037
1038         // if the weapon hasn't been firing continuously, reset the timer
1039         if(attacktime >= 0)
1040         {
1041                 if (ATTACK_FINISHED(self) < time - frametime * 1.5)
1042                 {
1043                         ATTACK_FINISHED(self) = time;
1044                         //dprint("resetting attack finished to ", ftos(time), "\n");
1045                 }
1046                 ATTACK_FINISHED(self) = ATTACK_FINISHED(self) + attacktime * W_WeaponRateFactor();
1047         }
1048         self.bulletcounter += 1;
1049         //dprint("attack finished ", ftos(ATTACK_FINISHED(self)), "\n");
1050         return TRUE;
1051 };
1052
1053 void weapon_thinkf(float fr, float t, void() func)
1054 {
1055         vector a;
1056         vector of, or, ou;
1057         float restartanim;
1058
1059         if(fr == WFRAME_DONTCHANGE)
1060         {
1061                 fr = self.weaponentity.wframe;
1062                 restartanim = FALSE;
1063         }
1064         else if (fr == WFRAME_IDLE)
1065                 restartanim = FALSE;
1066         else
1067                 restartanim = TRUE;
1068
1069         of = v_forward;
1070         or = v_right;
1071         ou = v_up;
1072
1073         if (self.weaponentity)
1074         {
1075                 self.weaponentity.wframe = fr;
1076                 if (qcweaponanimation)
1077                 {
1078                         if (fr != WFRAME_IDLE)
1079                         {
1080                                 self.weapon_morph0time = time;
1081                                 self.weapon_morph0angles = self.weaponentity.angles;
1082                                 self.weapon_morph0origin = self.weaponentity.origin;
1083
1084                                 self.weapon_morph1angles = '0 0 0';
1085                                 self.weapon_morph1time = time + t;
1086                                 makevectors(self.weapon_morph1angles_x * '-1 0 0' + self.weapon_morph1angles_y * '0 1 0' + self.weapon_morph1angles_z * '0 0 1');
1087                                 self.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1088
1089                                 self.weapon_morph2angles = '0 0 0';
1090                                 self.weapon_morph2time = time + t;
1091                                 makevectors(self.weapon_morph2angles_x * '-1 0 0' + self.weapon_morph2angles_y * '0 1 0' + self.weapon_morph2angles_z * '0 0 1');
1092                                 self.weapon_morph2origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1093
1094                                 self.weapon_morph3angles = '0 0 0';
1095                                 self.weapon_morph3time = time + t;
1096                                 makevectors(self.weapon_morph3angles_x * '-1 0 0' + self.weapon_morph3angles_y * '0 1 0' + self.weapon_morph3angles_z * '0 0 1');
1097                                 self.weapon_morph3origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1098
1099                                 self.weapon_morph4angles = '0 0 0';
1100                                 self.weapon_morph4time = time + t;
1101                                 makevectors(self.weapon_morph4angles_x * '-1 0 0' + self.weapon_morph4angles_y * '0 1 0' + self.weapon_morph4angles_z * '0 0 1');
1102                                 self.weapon_morph4origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1103
1104                                 if (fr == WFRAME_FIRE1)
1105                                 {
1106                                         self.weapon_morph1angles = '5 0 0';
1107                                         self.weapon_morph1time = time + t * 0.1;
1108                                         makevectors(self.weapon_morph1angles_x * '-1 0 0' + self.weapon_morph1angles_y * '0 1 0' + self.weapon_morph1angles_z * '0 0 1');
1109                                         self.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1110                                         self.weapon_morph4time = time + t + 1; // delay idle effect
1111                                 }
1112                                 else if (fr == WFRAME_FIRE2)
1113                                 {
1114                                         self.weapon_morph1angles = '10 0 0';
1115                                         self.weapon_morph1time = time + t * 0.1;
1116                                         makevectors(self.weapon_morph1angles_x * '-1 0 0' + self.weapon_morph1angles_y * '0 1 0' + self.weapon_morph1angles_z * '0 0 1');
1117                                         self.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1118                                         self.weapon_morph4time = time + t + 1; // delay idle effect
1119                                 }
1120                                 else if (fr == WFRAME_RELOAD)
1121                                 {
1122                                         self.weapon_morph1time = time + t * 0.05;
1123                                         self.weapon_morph1angles = '-10 40 0';
1124                                         makevectors(self.weapon_morph1angles_x * '-1 0 0' + self.weapon_morph1angles_y * '0 1 0' + self.weapon_morph1angles_z * '0 0 1');
1125                                         self.weapon_morph1origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1126
1127                                         self.weapon_morph2time = time + t * 0.15;
1128                                         self.weapon_morph2angles = '-10 40 5';
1129                                         makevectors(self.weapon_morph2angles_x * '-1 0 0' + self.weapon_morph2angles_y * '0 1 0' + self.weapon_morph2angles_z * '0 0 1');
1130                                         self.weapon_morph2origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1131
1132                                         self.weapon_morph3time = time + t * 0.25;
1133                                         self.weapon_morph3angles = '-10 40 0';
1134                                         makevectors(self.weapon_morph3angles_x * '-1 0 0' + self.weapon_morph3angles_y * '0 1 0' + self.weapon_morph3angles_z * '0 0 1');
1135                                         self.weapon_morph3origin = QCWEAPONANIMATION_ORIGIN(self.weaponentity);
1136                                 }
1137                         }
1138                 }
1139                 else
1140                 {
1141                         if (fr == WFRAME_IDLE)
1142                                 a = self.weaponentity.anim_idle;
1143                         else if (fr == WFRAME_FIRE1)
1144                                 a = self.weaponentity.anim_fire1;
1145                         else if (fr == WFRAME_FIRE2)
1146                                 a = self.weaponentity.anim_fire2;
1147                         else if (fr == WFRAME_RELOAD)
1148                                 a = self.weaponentity.anim_reload;
1149                         a_z *= g_weaponratefactor;
1150                         setanim(self.weaponentity, a, restartanim == FALSE, restartanim, restartanim);
1151                 }
1152         }
1153
1154         v_forward = of;
1155         v_right = or;
1156         v_up = ou;
1157
1158         if(self.weapon_think == w_ready && func != w_ready && self.weaponentity.state == WS_RAISE)
1159         {
1160                 backtrace("Tried to override initial weapon think function - should this really happen?");
1161         }
1162
1163         t *= W_WeaponRateFactor();
1164
1165         // VorteX: haste can be added here
1166         if (self.weapon_think == w_ready)
1167         {
1168                 self.weapon_nextthink = time;
1169                 //dprint("started firing at ", ftos(time), "\n");
1170         }
1171         if (self.weapon_nextthink < time - frametime * 1.5 || self.weapon_nextthink > time + frametime * 1.5)
1172         {
1173                 self.weapon_nextthink = time;
1174                 //dprint("reset weapon animation timer at ", ftos(time), "\n");
1175         }
1176         self.weapon_nextthink = self.weapon_nextthink + t;
1177         self.weapon_think = func;
1178         //dprint("next ", ftos(self.weapon_nextthink), "\n");
1179
1180         if (restartanim)
1181         if (t)
1182         if (!self.crouch) // shoot anim stands up, this looks bad
1183         {
1184                 local vector anim;
1185                 anim = self.anim_shoot;
1186                 anim_z = anim_y / t;
1187                 setanim(self, anim, FALSE, TRUE, TRUE);
1188         }
1189 };
1190
1191 void weapon_boblayer1(float spd, vector org)
1192 {
1193         // VorteX: haste can be added here
1194 };
1195
1196 vector W_CalculateProjectileVelocity(vector pvelocity, vector mvelocity)
1197 {
1198         vector mdirection;
1199         float mspeed;
1200         float outspeed;
1201         float nstyle;
1202         vector outvelocity;
1203
1204         mvelocity = mvelocity * g_weaponspeedfactor;
1205
1206         mdirection = normalize(mvelocity);
1207         mspeed = vlen(mvelocity);
1208
1209         nstyle = cvar("g_projectiles_newton_style");
1210         if(nstyle == 0)
1211         {
1212                 // absolute velocity
1213                 outvelocity = mvelocity;
1214         }
1215         else if(nstyle == 1)
1216         {
1217                 // true Newtonian projectiles
1218                 outvelocity = pvelocity + mvelocity;
1219         }
1220         else if(nstyle == 2)
1221         {
1222                 // true Newtonian projectiles with automatic aim adjustment
1223                 //
1224                 // solve: |outspeed * mdirection - pvelocity| = mspeed
1225                 // outspeed^2 - 2 * outspeed * (mdirection * pvelocity) + pvelocity^2 - mspeed^2 = 0
1226                 // outspeed = (mdirection * pvelocity) +- sqrt((mdirection * pvelocity)^2 - pvelocity^2 + mspeed^2)
1227                 // PLUS SIGN!
1228                 // not defined?
1229                 // then...
1230                 // pvelocity^2 - (mdirection * pvelocity)^2 > mspeed^2
1231                 // velocity without mdirection component > mspeed
1232                 // fire at smallest possible mspeed that works?
1233                 // |(mdirection * pvelocity) * pvelocity - pvelocity| = mspeed
1234
1235                 vector solution;
1236                 solution = solve_quadratic(1, -2 * (mdirection * pvelocity), pvelocity * pvelocity - mspeed * mspeed);
1237                 if(solution_z)
1238                         outspeed = solution_y; // the larger one
1239                 else
1240                 {
1241                         //outspeed = 0; // slowest possible shot
1242                         outspeed = solution_x; // the real part (that is, the average!)
1243                         //dprint("impossible shot, adjusting\n");
1244                 }
1245
1246                 outspeed = bound(mspeed * 0.7, outspeed, mspeed * 5.0);
1247                 outvelocity = mdirection * outspeed;
1248         }
1249         else if(nstyle == 3)
1250         {
1251                 // pseudo-Newtonian:
1252                 outspeed = mspeed + mdirection * pvelocity;
1253                 outspeed = bound(mspeed * 0.7, outspeed, mspeed * 5.0);
1254                 outvelocity = mdirection * outspeed;
1255         }
1256         else if(nstyle == 4)
1257         {
1258                 // tZorkian:
1259                 outspeed = mspeed + vlen(pvelocity);
1260                 outvelocity = mdirection * outspeed;
1261         }
1262         else
1263                 error("g_projectiles_newton_style must be 0 (absolute), 1 (Newtonian), 2 (Newtonian + aimfix), 3 (pseudo Newtonian) or 4 (tZorkian)!");
1264
1265         return outvelocity;
1266 }
1267
1268 void W_SetupProjectileVelocity(entity missile)
1269 {
1270         if(missile.owner == world)
1271                 error("Unowned missile");
1272
1273         missile.velocity = W_CalculateProjectileVelocity(missile.owner.velocity, missile.velocity);
1274 }
1275
1276 void W_AttachToShotorg(entity flash, vector offset)
1277 {
1278         entity xflash;
1279         flash.owner = self;
1280         flash.angles_z = random() * 360;
1281         if(qcweaponanimation)
1282         {
1283                 setorigin(flash, w_shotorg + w_shotdir * 50);
1284                 flash.angles = vectoangles(w_shotdir);
1285                 flash.angles_z = random() * 360;
1286         }
1287         else
1288         {
1289                 setattachment(flash, self.weaponentity, "shot");
1290                 setorigin(flash, offset);
1291
1292                 xflash = spawn();
1293                 copyentity(flash, xflash);
1294
1295                 flash.viewmodelforclient = self;
1296
1297                 if(self.weaponentity.oldorigin_x > 0)
1298                 {
1299                         setattachment(xflash, self.exteriorweaponentity, "");
1300                         setorigin(xflash, self.weaponentity.oldorigin + offset);
1301                 }
1302                 else
1303                 {
1304                         setattachment(xflash, self.exteriorweaponentity, "shot");
1305                 }
1306         }
1307 }