2 ===========================================================================
4 CLIENT WEAPONSYSTEM CODE
5 Bring back W_Weaponframe
7 ===========================================================================
10 .float weapon_frametime;
12 float W_WeaponRateFactor()
15 t = 1.0 / g_weaponratefactor;
20 void W_SwitchWeapon_Force(entity e, float w)
22 e.cnt = e.switchweapon;
29 // VorteX: static frame globals
30 const float WFRAME_DONTCHANGE = -1;
31 const float WFRAME_FIRE1 = 0;
32 const float WFRAME_FIRE2 = 1;
33 const float WFRAME_IDLE = 2;
34 const float WFRAME_RELOAD = 3;
37 void(float fr, float t, void() func) weapon_thinkf;
39 vector W_HitPlotUnnormalizedUntransform(vector screenforward, vector screenright, vector screenup, vector v)
42 ret_x = screenright * v;
44 ret_z = screenforward * v;
48 vector W_HitPlotNormalizedUntransform(vector org, entity targ, vector screenforward, vector screenright, vector screenup, vector v)
51 vector mi, ma, thisv, myv, ret;
53 myv = W_HitPlotUnnormalizedUntransform(screenforward, screenright, screenup, org);
55 // x = 0..1 relative to hitbox; y = 0..1 relative to hitbox; z = distance
57 mi = ma = targ.origin + 0.5 * (targ.mins + targ.maxs);
58 for(i = 0; i < 2; ++i) for(j = 0; j < 2; ++j) for(k = 0; k < 2; ++k)
61 if(i) thisv_x += targ.maxs_x; else thisv_x += targ.mins_x;
62 if(j) thisv_y += targ.maxs_y; else thisv_y += targ.mins_y;
63 if(k) thisv_z += targ.maxs_z; else thisv_z += targ.mins_z;
64 thisv = W_HitPlotUnnormalizedUntransform(screenforward, screenright, screenup, thisv);
67 if(mi_x > thisv_x) mi_x = thisv_x; if(ma_x < thisv_x) ma_x = thisv_x;
68 if(mi_y > thisv_y) mi_y = thisv_y; if(ma_y < thisv_y) ma_y = thisv_y;
69 //if(mi_z > thisv_z) mi_z = thisv_z; if(ma_z < thisv_z) ma_y = thisv_z;
78 thisv = W_HitPlotUnnormalizedUntransform(screenforward, screenright, screenup, v);
79 ret_x = (thisv_x - mi_x) / (ma_x - mi_x);
80 ret_y = (thisv_y - mi_y) / (ma_y - mi_y);
81 ret_z = thisv_z - myv_z;
85 void W_HitPlotAnalysis(entity player, vector screenforward, vector screenright, vector screenup)
91 if(player.hitplotfh >= 0)
93 lag = ANTILAG_LATENCY(player);
96 if (!IS_REAL_CLIENT(player))
97 lag = 0; // only antilag for clients
99 org = player.origin + player.view_ofs;
100 traceline_antilag_force(player, org, org + screenforward * MAX_SHOT_DISTANCE, MOVE_NORMAL, player, lag);
101 if(IS_CLIENT(trace_ent) || (trace_ent.flags & FL_MONSTER))
103 antilag_takeback(trace_ent, time - lag);
104 hitplot = W_HitPlotNormalizedUntransform(org, trace_ent, screenforward, screenright, screenup, trace_endpos);
105 antilag_restore(trace_ent);
106 fputs(player.hitplotfh, strcat(ftos(hitplot_x), " ", ftos(hitplot_y), " ", ftos(hitplot_z), " ", ftos(player.switchweapon), "\n"));
107 //print(strcat(ftos(hitplot_x), " ", ftos(hitplot_y), " ", ftos(hitplot_z), "\n"));
116 .float prevstrengthsound;
117 .float prevstrengthsoundattempt;
118 void W_PlayStrengthSound(entity player) // void W_PlayStrengthSound
120 if((player.items & IT_STRENGTH)
121 && ((time > player.prevstrengthsound + autocvar_sv_strengthsound_antispam_time) // prevent insane sound spam
122 || (time > player.prevstrengthsoundattempt + autocvar_sv_strengthsound_antispam_refire_threshold)))
124 sound(player, CH_TRIGGER, "weapons/strength_fire.wav", VOL_BASE, ATTEN_NORM);
125 player.prevstrengthsound = time;
127 player.prevstrengthsoundattempt = time;
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 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)
135 float nudge = 1; // added to traceline target and subtracted from result
138 oldsolid = ent.dphitcontentsmask;
139 if(ent.weapon == WEP_RIFLE)
140 ent.dphitcontentsmask = DPCONTENTS_BODY | DPCONTENTS_CORPSE;
142 ent.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE;
144 WarpZone_traceline_antilag(world, ent.origin + ent.view_ofs, ent.origin + ent.view_ofs + s_forward * range, MOVE_NORMAL, ent, ANTILAG_LATENCY(ent));
145 // passing world, because we do NOT want it to touch dphitcontentsmask
147 WarpZone_TraceLine(ent.origin + ent.view_ofs, ent.origin + ent.view_ofs + s_forward * range, MOVE_NOMONSTERS, ent);
148 ent.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE;
154 w_shotend = WarpZone_UnTransformOrigin(WarpZone_trace_transform, trace_endpos); // warpzone support
159 // un-adjust trueaim if shotend is too close
160 if(vlen(w_shotend - (ent.origin + ent.view_ofs)) < autocvar_g_trueaim_minrange)
161 w_shotend = ent.origin + ent.view_ofs + s_forward * autocvar_g_trueaim_minrange;
164 if(accuracy_canbegooddamage(ent))
165 accuracy_add(ent, ent.weapon, maxdamage, 0);
167 W_HitPlotAnalysis(ent, v_forward, v_right, v_up);
169 if(ent.weaponentity.movedir_x > 0)
170 vecs = ent.weaponentity.movedir;
174 dv = v_right * -vecs_y + v_up * vecs_z;
175 w_shotorg = ent.origin + ent.view_ofs + dv;
177 // now move the shotorg forward as much as requested if possible
180 if(ent.antilag_debug)
181 tracebox_antilag(ent, w_shotorg, mi, ma, w_shotorg + v_forward * (vecs_x + nudge), MOVE_NORMAL, ent, ent.antilag_debug);
183 tracebox_antilag(ent, w_shotorg, mi, ma, w_shotorg + v_forward * (vecs_x + nudge), MOVE_NORMAL, ent, ANTILAG_LATENCY(ent));
186 tracebox(w_shotorg, mi, ma, w_shotorg + v_forward * (vecs_x + nudge), MOVE_NORMAL, ent);
187 w_shotorg = trace_endpos - v_forward * nudge;
188 // calculate the shotdir from the chosen shotorg
189 w_shotdir = normalize(w_shotend - w_shotorg);
192 if (!ent.cvar_cl_noantilag)
194 if (autocvar_g_antilag == 1) // switch to "ghost" if not hitting original
196 traceline(w_shotorg, w_shotorg + w_shotdir * range, MOVE_NORMAL, ent);
197 if (!trace_ent.takedamage)
199 traceline_antilag_force (ent, w_shotorg, w_shotorg + w_shotdir * range, MOVE_NORMAL, ent, ANTILAG_LATENCY(ent));
200 if (trace_ent.takedamage && IS_PLAYER(trace_ent))
204 traceline(w_shotorg, e.origin, MOVE_NORMAL, ent);
206 w_shotdir = normalize(trace_ent.origin - w_shotorg);
210 else if(autocvar_g_antilag == 3) // client side hitscan
212 // this part MUST use prydon cursor
213 if (ent.cursor_trace_ent) // client was aiming at someone
214 if (ent.cursor_trace_ent != ent) // just to make sure
215 if (ent.cursor_trace_ent.takedamage) // and that person is killable
216 if (IS_PLAYER(ent.cursor_trace_ent)) // and actually a player
218 // verify that the shot would miss without antilag
219 // (avoids an issue where guns would always shoot at their origin)
220 traceline(w_shotorg, w_shotorg + w_shotdir * range, MOVE_NORMAL, ent);
221 if (!trace_ent.takedamage)
223 // verify that the shot would hit if altered
224 traceline(w_shotorg, ent.cursor_trace_ent.origin, MOVE_NORMAL, ent);
225 if (trace_ent == ent.cursor_trace_ent)
226 w_shotdir = normalize(ent.cursor_trace_ent.origin - w_shotorg);
228 print("antilag fail\n");
234 ent.dphitcontentsmask = oldsolid; // restore solid type (generally SOLID_SLIDEBOX)
236 if (!autocvar_g_norecoil)
237 ent.punchangle_x = recoil * -1;
241 sound (ent, chan, snd, VOL_BASE, ATTEN_NORM);
242 W_PlayStrengthSound(ent);
245 // nudge w_shotend so a trace to w_shotend hits
246 w_shotend = w_shotend + normalize(w_shotend - w_shotorg) * nudge;
249 #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)
250 #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)
251 #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)
252 #define W_SetupShot(ent,antilag,recoil,snd,chan,maxdamage) W_SetupShot_ProjectileSize(ent, '0 0 0', '0 0 0', antilag, recoil, snd, chan, maxdamage)
253 #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)
255 float CL_Weaponentity_CustomizeEntityForClient()
257 self.viewmodelforclient = self.owner;
259 if(other.enemy == self.owner)
260 self.viewmodelforclient = other;
267 * 1. simple animated model, muzzle flash handling on h_ model:
268 * h_tuba.dpm, h_tuba.dpm.framegroups - invisible model controlling the animation
270 * shot = muzzle end (shot origin, also used for muzzle flashes)
271 * shell = casings ejection point (must be on the right hand side of the gun)
272 * weapon = attachment for v_tuba.md3
273 * v_tuba.md3 - first and third person model
274 * g_tuba.md3 - pickup model
276 * 2. simple animated model, muzzle flash handling on v_ model:
277 * h_tuba.dpm, h_tuba.dpm.framegroups - invisible model controlling the animation
279 * weapon = attachment for v_tuba.md3
280 * v_tuba.md3 - first and third person model
282 * shot = muzzle end (shot origin, also used for muzzle flashes)
283 * shell = casings ejection point (must be on the right hand side of the gun)
284 * g_tuba.md3 - pickup model
286 * 3. fully animated model, muzzle flash handling on h_ model:
287 * h_tuba.dpm, h_tuba.dpm.framegroups - animated first person model
289 * shot = muzzle end (shot origin, also used for muzzle flashes)
290 * shell = casings ejection point (must be on the right hand side of the gun)
291 * handle = corresponding to the origin of v_tuba.md3 (used for muzzle flashes)
292 * v_tuba.md3 - third person model
293 * g_tuba.md3 - pickup model
295 * 4. fully animated model, muzzle flash handling on v_ model:
296 * h_tuba.dpm, h_tuba.dpm.framegroups - animated first person model
298 * shot = muzzle end (shot origin)
299 * shell = casings ejection point (must be on the right hand side of the gun)
300 * v_tuba.md3 - third person model
302 * shot = muzzle end (for muzzle flashes)
303 * g_tuba.md3 - pickup model
307 // self.origin, self.angles
309 // self.movedir, self.view_ofs
313 // call again with ""
315 void CL_WeaponEntity_SetModel(string name)
320 // if there is a child entity, hide it until we're sure we use it
321 if (self.weaponentity)
322 self.weaponentity.model = "";
323 setmodel(self, strcat("models/weapons/v_", name, ".md3")); // precision set below
324 v_shot_idx = gettagindex(self, "shot"); // used later
326 v_shot_idx = gettagindex(self, "tag_shot");
328 setmodel(self, strcat("models/weapons/h_", name, ".iqm")); // precision set below
329 // preset some defaults that work great for renamed zym files (which don't need an animinfo)
330 self.anim_fire1 = animfixfps(self, '0 1 0.01', '0 0 0');
331 self.anim_fire2 = animfixfps(self, '1 1 0.01', '0 0 0');
332 self.anim_idle = animfixfps(self, '2 1 0.01', '0 0 0');
333 self.anim_reload = animfixfps(self, '3 1 0.01', '0 0 0');
335 // if we have a "weapon" tag, let's attach the v_ model to it ("invisible hand" style model)
336 // if we don't, this is a "real" animated model
337 if(gettagindex(self, "weapon"))
339 if (!self.weaponentity)
340 self.weaponentity = spawn();
341 setmodel(self.weaponentity, strcat("models/weapons/v_", name, ".md3")); // precision does not matter
342 setattachment(self.weaponentity, self, "weapon");
344 else if(gettagindex(self, "tag_weapon"))
346 if (!self.weaponentity)
347 self.weaponentity = spawn();
348 setmodel(self.weaponentity, strcat("models/weapons/v_", name, ".md3")); // precision does not matter
349 setattachment(self.weaponentity, self, "tag_weapon");
353 if(self.weaponentity)
354 remove(self.weaponentity);
355 self.weaponentity = world;
358 setorigin(self,'0 0 0');
359 self.angles = '0 0 0';
361 self.viewmodelforclient = world;
365 if(v_shot_idx) // v_ model attached to invisible h_ model
367 self.movedir = gettaginfo(self.weaponentity, v_shot_idx);
371 idx = gettagindex(self, "shot");
373 idx = gettagindex(self, "tag_shot");
375 self.movedir = gettaginfo(self, idx);
378 print("WARNING: weapon model ", self.model, " does not support the 'shot' tag, will display shots TOTALLY wrong\n");
379 self.movedir = '0 0 0';
383 if(self.weaponentity) // v_ model attached to invisible h_ model
385 idx = gettagindex(self.weaponentity, "shell");
387 idx = gettagindex(self.weaponentity, "tag_shell");
389 self.spawnorigin = gettaginfo(self.weaponentity, idx);
395 idx = gettagindex(self, "shell");
397 idx = gettagindex(self, "tag_shell");
399 self.spawnorigin = gettaginfo(self, idx);
402 print("WARNING: weapon model ", self.model, " does not support the 'shell' tag, will display casings wrong\n");
403 self.spawnorigin = self.movedir;
409 self.oldorigin = '0 0 0'; // use regular attachment
413 if(self.weaponentity)
415 idx = gettagindex(self, "weapon");
417 idx = gettagindex(self, "tag_weapon");
421 idx = gettagindex(self, "handle");
423 idx = gettagindex(self, "tag_handle");
427 self.oldorigin = self.movedir - gettaginfo(self, idx);
431 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");
432 self.oldorigin = '0 0 0'; // there is no way to recover from this
436 self.viewmodelforclient = self.owner;
441 if(self.weaponentity)
442 remove(self.weaponentity);
443 self.weaponentity = world;
444 self.movedir = '0 0 0';
445 self.spawnorigin = '0 0 0';
446 self.oldorigin = '0 0 0';
447 self.anim_fire1 = '0 1 0.01';
448 self.anim_fire2 = '0 1 0.01';
449 self.anim_idle = '0 1 0.01';
450 self.anim_reload = '0 1 0.01';
453 self.view_ofs = '0 0 0';
455 if(self.movedir_x >= 0)
459 self.movedir = shotorg_adjust(v0, FALSE, FALSE);
460 self.view_ofs = shotorg_adjust(v0, FALSE, TRUE) - v0;
462 self.owner.stat_shotorg = compressShotOrigin(self.movedir);
463 self.movedir = decompressShotOrigin(self.owner.stat_shotorg); // make them match perfectly
465 self.spawnorigin += self.view_ofs; // offset the casings origin by the same amount
467 // check if an instant weapon switch occurred
468 setorigin(self, self.view_ofs);
469 // reset animstate now
470 self.wframe = WFRAME_IDLE;
471 setanim(self, self.anim_idle, TRUE, FALSE, TRUE);
474 vector CL_Weapon_GetShotOrg(float wpn)
478 wi = get_weaponinfo(wpn);
481 CL_WeaponEntity_SetModel(wi.mdl);
483 CL_WeaponEntity_SetModel("");
489 void CL_Weaponentity_Think()
492 self.nextthink = time;
493 if (intermission_running)
494 self.frame = self.anim_idle_x;
495 if (self.owner.weaponentity != self)
497 if (self.weaponentity)
498 remove(self.weaponentity);
502 if (self.owner.deadflag != DEAD_NO)
505 if (self.weaponentity)
506 self.weaponentity.model = "";
509 if (self.weaponname != self.owner.weaponname || self.dmg != self.owner.modelindex || self.deadflag != self.owner.deadflag)
511 self.weaponname = self.owner.weaponname;
512 self.dmg = self.owner.modelindex;
513 self.deadflag = self.owner.deadflag;
515 CL_WeaponEntity_SetModel(self.owner.weaponname);
518 tb = (self.effects & (EF_TELEPORT_BIT | EF_RESTARTANIM_BIT));
519 self.effects = self.owner.effects & EFMASK_CHEAP;
520 self.effects &= ~EF_LOWPRECISION;
521 self.effects &= ~EF_FULLBRIGHT; // can mask team color, so get rid of it
522 self.effects &= ~EF_TELEPORT_BIT;
523 self.effects &= ~EF_RESTARTANIM_BIT;
526 if(self.owner.alpha == default_player_alpha)
527 self.alpha = default_weapon_alpha;
528 else if(self.owner.alpha != 0)
529 self.alpha = self.owner.alpha;
533 self.glowmod = self.owner.weaponentity_glowmod;
534 self.colormap = self.owner.colormap;
535 if (self.weaponentity)
537 self.weaponentity.effects = self.effects;
538 self.weaponentity.alpha = self.alpha;
539 self.weaponentity.colormap = self.colormap;
540 self.weaponentity.glowmod = self.glowmod;
543 self.angles = '0 0 0';
545 float f = (self.owner.weapon_nextthink - time);
546 if (self.state == WS_RAISE && !intermission_running)
548 entity newwep = get_weaponinfo(self.owner.switchweapon);
549 f = f * g_weaponratefactor / max(f, cvar(sprintf("g_balance_%s_switchdelay_raise", newwep.netname)));
550 //printf("CL_Weaponentity_Think(): cvar: %s, value: %f, nextthink: %f\n", sprintf("g_balance_%s_switchdelay_raise", newwep.netname), cvar(sprintf("g_balance_%s_switchdelay_raise", newwep.netname)), (self.owner.weapon_nextthink - time));
551 self.angles_x = -90 * f * f;
553 else if (self.state == WS_DROP && !intermission_running)
555 entity oldwep = get_weaponinfo(self.owner.weapon);
556 f = 1 - f * g_weaponratefactor / max(f, cvar(sprintf("g_balance_%s_switchdelay_drop", oldwep.netname)));
557 //printf("CL_Weaponentity_Think(): cvar: %s, value: %f, nextthink: %f\n", sprintf("g_balance_%s_switchdelay_drop", oldwep.netname), cvar(sprintf("g_balance_%s_switchdelay_drop", oldwep.netname)), (self.owner.weapon_nextthink - time));
558 self.angles_x = -90 * f * f;
560 else if (self.state == WS_CLEAR)
563 self.angles_x = -90 * f * f;
567 void CL_ExteriorWeaponentity_Think()
570 self.nextthink = time;
571 if (self.owner.exteriorweaponentity != self)
576 if (self.owner.deadflag != DEAD_NO)
581 if (self.weaponname != self.owner.weaponname || self.dmg != self.owner.modelindex || self.deadflag != self.owner.deadflag)
583 self.weaponname = self.owner.weaponname;
584 self.dmg = self.owner.modelindex;
585 self.deadflag = self.owner.deadflag;
586 if (self.owner.weaponname != "")
587 setmodel(self, strcat("models/weapons/v_", self.owner.weaponname, ".md3")); // precision set below
591 if((tag_found = gettagindex(self.owner, "tag_weapon")))
593 self.tag_index = tag_found;
594 self.tag_entity = self.owner;
597 setattachment(self, self.owner, "bip01 r hand");
599 self.effects = self.owner.effects;
600 self.effects |= EF_LOWPRECISION;
601 self.effects = self.effects & EFMASK_CHEAP; // eat performance
602 if(self.owner.alpha == default_player_alpha)
603 self.alpha = default_weapon_alpha;
604 else if(self.owner.alpha != 0)
605 self.alpha = self.owner.alpha;
609 self.glowmod = self.owner.weaponentity_glowmod;
610 self.colormap = self.owner.colormap;
612 CSQCMODEL_AUTOUPDATE();
615 // spawning weaponentity for client
616 void CL_SpawnWeaponentity()
618 self.weaponentity = spawn();
619 self.weaponentity.classname = "weaponentity";
620 self.weaponentity.solid = SOLID_NOT;
621 self.weaponentity.owner = self;
622 setmodel(self.weaponentity, ""); // precision set when changed
623 setorigin(self.weaponentity, '0 0 0');
624 self.weaponentity.angles = '0 0 0';
625 self.weaponentity.viewmodelforclient = self;
626 self.weaponentity.flags = 0;
627 self.weaponentity.think = CL_Weaponentity_Think;
628 self.weaponentity.customizeentityforclient = CL_Weaponentity_CustomizeEntityForClient;
629 self.weaponentity.nextthink = time;
631 self.exteriorweaponentity = spawn();
632 self.exteriorweaponentity.classname = "exteriorweaponentity";
633 self.exteriorweaponentity.solid = SOLID_NOT;
634 self.exteriorweaponentity.exteriorweaponentity = self.exteriorweaponentity;
635 self.exteriorweaponentity.owner = self;
636 setorigin(self.exteriorweaponentity, '0 0 0');
637 self.exteriorweaponentity.angles = '0 0 0';
638 self.exteriorweaponentity.think = CL_ExteriorWeaponentity_Think;
639 self.exteriorweaponentity.nextthink = time;
642 entity oldself = self;
643 self = self.exteriorweaponentity;
644 CSQCMODEL_AUTOINIT();
649 void Send_WeaponComplain (entity e, float wpn, string wpnname, float type)
652 WriteByte(MSG_ONE, SVC_TEMPENTITY);
653 WriteByte(MSG_ONE, TE_CSQC_WEAPONCOMPLAIN);
654 WriteByte(MSG_ONE, wpn);
655 WriteString(MSG_ONE, wpnname);
656 WriteByte(MSG_ONE, type);
659 .float hasweapon_complain_spam;
661 float client_hasweapon(entity cl, float wpn, float andammo, float complain)
666 if(time < self.hasweapon_complain_spam)
669 self.hasweapon_complain_spam = time + 0.2;
671 if(wpn == WEP_HOOK && !g_grappling_hook && autocvar_g_nades && !((cl.weapons | weaponsInMap) & WepSet_FromWeapon(wpn)))
674 if (wpn < WEP_FIRST || wpn > WEP_LAST)
677 sprint(self, "Invalid weapon\n");
680 if (cl.weapons & WepSet_FromWeapon(wpn))
684 if(cl.items & IT_UNLIMITED_WEAPON_AMMO)
692 f = weapon_action(wpn, WR_CHECKAMMO1);
693 f = f + weapon_action(wpn, WR_CHECKAMMO2);
695 // always allow selecting the Mine Layer if we placed mines, so that we can detonate them
697 if(wpn == WEP_MINE_LAYER)
698 for(mine = world; (mine = find(mine, classname, "mine")); ) if(mine.owner == self)
706 if(IS_REAL_CLIENT(cl))
708 play2(cl, "weapons/unavailable.wav");
709 Send_WeaponComplain (cl, wpn, W_Name(wpn), 0);
719 // Report Proper Weapon Status / Modified Weapon Ownership Message
720 if (weaponsInMap & WepSet_FromWeapon(wpn))
722 Send_WeaponComplain(cl, wpn, W_Name(wpn), 1);
724 if(autocvar_g_showweaponspawns)
729 e = get_weaponinfo(wpn);
732 for(e = world; (e = findfloat(e, weapon, wpn)); )
734 if(e.classname == "droppedweapon")
736 if (!(e.flags & FL_ITEM))
738 WaypointSprite_Spawn(
745 RADARICON_NONE, '0 0 0'
752 Send_WeaponComplain (cl, wpn, W_Name(wpn), 2);
755 play2(cl, "weapons/unavailable.wav");
763 if (self.weapon != -1)
766 self.switchingweapon = 0;
768 if (self.weaponentity)
770 self.weaponentity.state = WS_CLEAR;
771 self.weaponentity.effects = 0;
777 if (self.weaponentity)
778 self.weaponentity.state = WS_READY;
779 weapon_thinkf(WFRAME_IDLE, 1000000, w_ready);
782 // Setup weapon for client (after this raise frame will be launched)
783 void weapon_setup(float windex)
786 e = get_weaponinfo(windex);
787 self.items &= ~IT_AMMO;
788 self.items = self.items | (e.items & IT_AMMO);
790 // the two weapon entities will notice this has changed and update their models
791 self.weapon = windex;
792 self.switchingweapon = windex; // to make sure
793 self.weaponname = e.mdl;
794 self.bulletcounter = 0;
797 // perform weapon to attack (weaponstate and attack_finished check is here)
798 void W_SwitchToOtherWeapon(entity pl)
800 // hack to ensure it switches to an OTHER weapon (in case the other fire mode still has ammo, we want that anyway)
803 if(pl.weapons & WepSet_FromWeapon(w))
805 pl.weapons &= ~WepSet_FromWeapon(w);
806 ww = w_getbestweapon(pl);
807 pl.weapons |= WepSet_FromWeapon(w);
810 ww = w_getbestweapon(pl);
812 W_SwitchWeapon_Force(pl, ww);
817 float weapon_prepareattack_checkammo(float secondary)
819 if (!(self.items & IT_UNLIMITED_WEAPON_AMMO))
820 if (!weapon_action(self.weapon, WR_CHECKAMMO1 + secondary))
822 // always keep the Mine Layer if we placed mines, so that we can detonate them
824 if(self.weapon == WEP_MINE_LAYER)
825 for(mine = world; (mine = find(mine, classname, "mine")); ) if(mine.owner == self)
828 if(self.weapon == self.switchweapon && time - self.prevdryfire > 1) // only play once BEFORE starting to switch weapons
830 sound (self, CH_WEAPON_A, "weapons/dryfire.wav", VOL_BASE, ATTEN_NORM);
831 self.prevdryfire = time;
834 if(weapon_action(self.weapon, WR_CHECKAMMO2 - secondary)) // check if the other firing mode has enough ammo
836 if(time - self.prevwarntime > 1)
842 ITEM_WEAPON_PRIMORSEC,
848 self.prevwarntime = time;
850 else // this weapon is totally unable to fire, switch to another one
852 W_SwitchToOtherWeapon(self);
860 float weapon_prepareattack_check(float secondary, float attacktime)
862 if(!weapon_prepareattack_checkammo(secondary))
865 //if sv_ready_restart_after_countdown is set, don't allow the player to shoot
866 //if all players readied up and the countdown is running
867 if(time < game_starttime || time < self.race_penalty) {
871 if (timeout_status == TIMEOUT_ACTIVE) //don't allow the player to shoot while game is paused
874 // do not even think about shooting if switching
875 if(self.switchweapon != self.weapon)
880 // don't fire if previous attack is not finished
881 if (ATTACK_FINISHED(self) > time + self.weapon_frametime * 0.5)
883 // don't fire while changing weapon
884 if (self.weaponentity.state != WS_READY)
890 float weapon_prepareattack_do(float secondary, float attacktime)
892 self.weaponentity.state = WS_INUSE;
894 self.spawnshieldtime = min(self.spawnshieldtime, time); // kill spawn shield when you fire
896 // if the weapon hasn't been firing continuously, reset the timer
899 if (ATTACK_FINISHED(self) < time - self.weapon_frametime * 1.5)
901 ATTACK_FINISHED(self) = time;
902 //dprint("resetting attack finished to ", ftos(time), "\n");
904 ATTACK_FINISHED(self) = ATTACK_FINISHED(self) + attacktime * W_WeaponRateFactor();
906 self.bulletcounter += 1;
907 //dprint("attack finished ", ftos(ATTACK_FINISHED(self)), "\n");
910 float weapon_prepareattack(float secondary, float attacktime)
912 if(weapon_prepareattack_check(secondary, attacktime))
914 weapon_prepareattack_do(secondary, attacktime);
921 void weapon_thinkf(float fr, float t, void() func)
927 if(fr == WFRAME_DONTCHANGE)
929 fr = self.weaponentity.wframe;
932 else if (fr == WFRAME_IDLE)
941 if (self.weaponentity)
943 self.weaponentity.wframe = fr;
945 if (fr == WFRAME_IDLE)
946 a = self.weaponentity.anim_idle;
947 else if (fr == WFRAME_FIRE1)
948 a = self.weaponentity.anim_fire1;
949 else if (fr == WFRAME_FIRE2)
950 a = self.weaponentity.anim_fire2;
951 else // if (fr == WFRAME_RELOAD)
952 a = self.weaponentity.anim_reload;
953 a_z *= g_weaponratefactor;
954 setanim(self.weaponentity, a, restartanim == FALSE, restartanim, restartanim);
961 if(self.weapon_think == w_ready && func != w_ready && self.weaponentity.state == WS_RAISE)
963 backtrace("Tried to override initial weapon think function - should this really happen?");
966 t *= W_WeaponRateFactor();
968 // VorteX: haste can be added here
969 if (self.weapon_think == w_ready)
971 self.weapon_nextthink = time;
972 //dprint("started firing at ", ftos(time), "\n");
974 if (self.weapon_nextthink < time - self.weapon_frametime * 1.5 || self.weapon_nextthink > time + self.weapon_frametime * 1.5)
976 self.weapon_nextthink = time;
977 //dprint("reset weapon animation timer at ", ftos(time), "\n");
979 self.weapon_nextthink = self.weapon_nextthink + t;
980 self.weapon_think = func;
981 //dprint("next ", ftos(self.weapon_nextthink), "\n");
983 if((fr == WFRAME_FIRE1 || fr == WFRAME_FIRE2) && t)
985 if(self.weapon == WEP_SHOTGUN && fr == WFRAME_FIRE2)
986 animdecide_setaction(self, ANIMACTION_MELEE, restartanim);
988 animdecide_setaction(self, ANIMACTION_SHOOT, restartanim);
992 if(self.anim_upper_action == ANIMACTION_SHOOT || self.anim_upper_action == ANIMACTION_MELEE)
993 self.anim_upper_action = 0;
997 void weapon_boblayer1(float spd, vector org)
999 // VorteX: haste can be added here
1002 vector W_CalculateProjectileVelocity(vector pvelocity, vector mvelocity, float forceAbsolute)
1008 mvelocity = mvelocity * g_weaponspeedfactor;
1010 mdirection = normalize(mvelocity);
1011 mspeed = vlen(mvelocity);
1013 outvelocity = get_shotvelocity(pvelocity, mdirection, mspeed, (forceAbsolute ? 0 : autocvar_g_projectiles_newton_style), autocvar_g_projectiles_newton_style_2_minfactor, autocvar_g_projectiles_newton_style_2_maxfactor);
1018 void W_AttachToShotorg(entity flash, vector offset)
1022 flash.angles_z = random() * 360;
1024 if(gettagindex(self.weaponentity, "shot"))
1025 setattachment(flash, self.weaponentity, "shot");
1027 setattachment(flash, self.weaponentity, "tag_shot");
1028 setorigin(flash, offset);
1031 copyentity(flash, xflash);
1033 flash.viewmodelforclient = self;
1035 if(self.weaponentity.oldorigin_x > 0)
1037 setattachment(xflash, self.exteriorweaponentity, "");
1038 setorigin(xflash, self.weaponentity.oldorigin + offset);
1042 if(gettagindex(self.exteriorweaponentity, "shot"))
1043 setattachment(xflash, self.exteriorweaponentity, "shot");
1045 setattachment(xflash, self.exteriorweaponentity, "tag_shot");
1046 setorigin(xflash, offset);
1050 vector cliptoplane(vector v, vector p)
1052 return v - (v * p) * p;
1055 vector solve_cubic_pq(float p, float q)
1058 D = q*q/4.0 + p*p*p/27.0;
1062 a = 1.0/3.0 * acos(-q/2.0 * sqrt(-27.0/(p*p*p)));
1063 u = sqrt(-4.0/3.0 * p);
1064 // a in range 0..pi/3
1071 '1 0 0' * cos(a + 2.0/3.0*M_PI)
1073 '0 1 0' * cos(a + 4.0/3.0*M_PI)
1086 return '1 1 0' * v + '0 0 1' * u;
1088 return '0 1 1' * v + '1 0 0' * u;
1093 u = cbrt(-q/2.0 + sqrt(D));
1094 v = cbrt(-q/2.0 - sqrt(D));
1095 return '1 1 1' * (u + v);
1098 vector solve_cubic_abcd(float a, float b, float c, float d)
1104 p = (9*a*c - 3*b*b);
1105 q = (27*a*a*d - 9*a*b*c + 2*b*b*b);
1106 v = solve_cubic_pq(p, q);
1107 v = (v - b * '1 1 1') * (1.0 / (3.0 * a));
1109 v += '1 0 -1' * (v_z - v_x); // swap x, z
1113 vector findperpendicular(vector v)
1119 return normalize(cliptoplane(p, v));
1122 vector W_CalculateProjectileSpread(vector forward, float spread)
1125 vector v1 = '0 0 0', v2;
1128 spread *= g_weaponspreadfactor;
1131 sstyle = autocvar_g_projectiles_spread_style;
1135 // this is the baseline for the spread value!
1136 // standard deviation: sqrt(2/5)
1137 // density function: sqrt(1-r^2)
1138 return forward + randomvec() * spread;
1140 else if(sstyle == 1)
1142 // same thing, basically
1143 return normalize(forward + cliptoplane(randomvec() * spread, forward));
1145 else if(sstyle == 2)
1147 // circle spread... has at sigma=1 a standard deviation of sqrt(1/2)
1148 sigma = spread * 0.89442719099991587855; // match baseline stddev
1149 v1 = findperpendicular(forward);
1150 v2 = cross(forward, v1);
1151 // random point on unit circle
1152 dx = random() * 2 * M_PI;
1155 // radius in our dist function
1158 return normalize(forward + (v1 * dx + v2 * dy) * r * sigma);
1160 else if(sstyle == 3) // gauss 3d
1162 sigma = spread * 0.44721359549996; // match baseline stddev
1163 // note: 2D gaussian has sqrt(2) times the stddev of 1D, so this factor is right
1165 v1_x += gsl_ran_gaussian(sigma);
1166 v1_y += gsl_ran_gaussian(sigma);
1167 v1_z += gsl_ran_gaussian(sigma);
1170 else if(sstyle == 4) // gauss 2d
1172 sigma = spread * 0.44721359549996; // match baseline stddev
1173 // note: 2D gaussian has sqrt(2) times the stddev of 1D, so this factor is right
1174 v1_x = gsl_ran_gaussian(sigma);
1175 v1_y = gsl_ran_gaussian(sigma);
1176 v1_z = gsl_ran_gaussian(sigma);
1177 return normalize(forward + cliptoplane(v1, forward));
1179 else if(sstyle == 5) // 1-r
1181 sigma = spread * 1.154700538379252; // match baseline stddev
1182 v1 = findperpendicular(forward);
1183 v2 = cross(forward, v1);
1184 // random point on unit circle
1185 dx = random() * 2 * M_PI;
1188 // radius in our dist function
1190 r = solve_cubic_abcd(-2, 3, 0, -r) * '0 1 0';
1191 return normalize(forward + (v1 * dx + v2 * dy) * r * sigma);
1193 else if(sstyle == 6) // 1-r^2
1195 sigma = spread * 1.095445115010332; // match baseline stddev
1196 v1 = findperpendicular(forward);
1197 v2 = cross(forward, v1);
1198 // random point on unit circle
1199 dx = random() * 2 * M_PI;
1202 // radius in our dist function
1206 return normalize(forward + (v1 * dx + v2 * dy) * r * sigma);
1208 else if(sstyle == 7) // (1-r) (2-r)
1210 sigma = spread * 1.224744871391589; // match baseline stddev
1211 v1 = findperpendicular(forward);
1212 v2 = cross(forward, v1);
1213 // random point on unit circle
1214 dx = random() * 2 * M_PI;
1217 // radius in our dist function
1221 return normalize(forward + (v1 * dx + v2 * dy) * r * sigma);
1224 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)!");
1227 * how to derive falloff functions:
1228 * rho(r) := (2-r) * (1-r);
1231 * rhor(r) := r * rho(r);
1232 * cr(t) := integrate(rhor(r), r, a, t);
1233 * scr(t) := integrate(rhor(r) * r^2, r, a, t);
1234 * variance : scr(b) / cr(b);
1235 * solve(cr(r) = rand * cr(b), r), programmmode:false;
1236 * sqrt(0.4 / variance), numer;
1242 float mspercallsstyle;
1243 float mspercallcount;
1245 void W_SetupProjectileVelocityEx(entity missile, vector dir, vector upDir, float pSpeed, float pUpSpeed, float pZSpeed, float spread, float forceAbsolute)
1247 if(missile.owner == world)
1248 error("Unowned missile");
1250 dir = dir + upDir * (pUpSpeed / pSpeed);
1251 dir_z += pZSpeed / pSpeed;
1252 pSpeed *= vlen(dir);
1253 dir = normalize(dir);
1256 if(autocvar_g_projectiles_spread_style != mspercallsstyle)
1258 mspercallsum = mspercallcount = 0;
1259 mspercallsstyle = autocvar_g_projectiles_spread_style;
1261 mspercallsum -= gettime(GETTIME_HIRES);
1263 dir = W_CalculateProjectileSpread(dir, spread);
1265 mspercallsum += gettime(GETTIME_HIRES);
1266 mspercallcount += 1;
1267 print("avg: ", ftos(mspercallcount / mspercallsum), " per sec\n");
1270 missile.velocity = W_CalculateProjectileVelocity(missile.owner.velocity, pSpeed * dir, forceAbsolute);
1273 void W_SetupProjectileVelocity(entity missile, float pSpeed, float spread)
1275 W_SetupProjectileVelocityEx(missile, w_shotdir, v_up, pSpeed, 0, 0, spread, FALSE);
1278 #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)
1279 #define W_SETUPPROJECTILEVELOCITY(m,s) W_SetupProjectileVelocityEx(m, w_shotdir, v_up, cvar(#s "_speed"), 0, 0, cvar(#s "_spread"), FALSE)
1281 void W_DecreaseAmmo(.float ammo_type, float ammo_use, float ammo_reload)
1283 if((self.items & IT_UNLIMITED_WEAPON_AMMO) && !ammo_reload)
1286 // if this weapon is reloadable, decrease its load. Else decrease the player's ammo
1289 self.clip_load -= ammo_use;
1290 self.(weapon_load[self.weapon]) = self.clip_load;
1293 self.(self.current_ammo) -= ammo_use;
1296 // weapon reloading code
1298 .float reload_ammo_amount, reload_ammo_min, reload_time;
1299 .float reload_complain;
1300 .string reload_sound;
1302 void W_ReloadedAndReady()
1304 // finish the reloading process, and do the ammo transfer
1306 self.clip_load = self.old_clip_load; // restore the ammo counter, in case we still had ammo in the weapon before reloading
1308 // if the gun uses no ammo, max out weapon load, else decrease ammo as we increase weapon load
1309 if(!self.reload_ammo_min || self.items & IT_UNLIMITED_WEAPON_AMMO)
1310 self.clip_load = self.reload_ammo_amount;
1313 while(self.clip_load < self.reload_ammo_amount && self.(self.current_ammo)) // make sure we don't add more ammo than we have
1315 self.clip_load += 1;
1316 self.(self.current_ammo) -= 1;
1319 self.(weapon_load[self.weapon]) = self.clip_load;
1321 // do not set ATTACK_FINISHED in reload code any more. This causes annoying delays if eg: You start reloading a weapon,
1322 // then quickly switch to another weapon and back. Reloading is canceled, but the reload delay is still there,
1323 // so your weapon is disabled for a few seconds without reason
1325 //ATTACK_FINISHED(self) -= self.reload_time - 1;
1330 void W_Reload(float sent_ammo_min, float sent_ammo_amount, float sent_time, string sent_sound)
1332 // set global values to work with
1334 self.reload_ammo_min = sent_ammo_min;
1335 self.reload_ammo_amount = sent_ammo_amount;
1336 self.reload_time = sent_time;
1337 self.reload_sound = sent_sound;
1339 // check if we meet the necessary conditions to reload
1342 e = get_weaponinfo(self.weapon);
1344 // don't reload weapons that don't have the RELOADABLE flag
1345 if (!(e.spawnflags & WEP_FLAG_RELOADABLE))
1347 dprint("Warning: Attempted to reload a weapon that does not have the WEP_FLAG_RELOADABLE flag. Fix your code!\n");
1351 // return if reloading is disabled for this weapon
1352 if(!self.reload_ammo_amount)
1355 // our weapon is fully loaded, no need to reload
1356 if (self.clip_load >= self.reload_ammo_amount)
1359 // no ammo, so nothing to load
1360 if(!self.(self.current_ammo) && self.reload_ammo_min)
1361 if (!(self.items & IT_UNLIMITED_WEAPON_AMMO))
1363 if(IS_REAL_CLIENT(self) && self.reload_complain < time)
1365 play2(self, "weapons/unavailable.wav");
1366 sprint(self, strcat("You don't have enough ammo to reload the ^2", W_Name(self.weapon), "\n"));
1367 self.reload_complain = time + 1;
1369 // switch away if the amount of ammo is not enough to keep using this weapon
1370 if (!(weapon_action(self.weapon, WR_CHECKAMMO1) + weapon_action(self.weapon, WR_CHECKAMMO2)))
1372 self.clip_load = -1; // reload later
1373 W_SwitchToOtherWeapon(self);
1378 if (self.weaponentity)
1380 if (self.weaponentity.wframe == WFRAME_RELOAD)
1383 // allow switching away while reloading, but this will cause a new reload!
1384 self.weaponentity.state = WS_READY;
1387 // now begin the reloading process
1389 sound (self, CH_WEAPON_SINGLE, self.reload_sound, VOL_BASE, ATTEN_NORM);
1391 // do not set ATTACK_FINISHED in reload code any more. This causes annoying delays if eg: You start reloading a weapon,
1392 // then quickly switch to another weapon and back. Reloading is canceled, but the reload delay is still there,
1393 // so your weapon is disabled for a few seconds without reason
1395 //ATTACK_FINISHED(self) = max(time, ATTACK_FINISHED(self)) + self.reload_time + 1;
1397 weapon_thinkf(WFRAME_RELOAD, self.reload_time, W_ReloadedAndReady);
1399 if(self.clip_load < 0)
1401 self.old_clip_load = self.clip_load;
1402 self.clip_load = self.(weapon_load[self.weapon]) = -1;