6 #include <client/main.qh>
7 #include <common/constants.qh>
8 #include <common/deathtypes/all.qh>
9 #include <common/physics/movetypes/movetypes.qh>
10 #include <common/stats.qh>
11 #include <common/util.qh>
12 #include <common/weapons/calculations.qc>
13 #include <common/weapons/weapon/_mod.inc>
14 #include <lib/csqcmodel/cl_model.qh>
15 #include <lib/csqcmodel/interpolate.qh>
16 #include <lib/warpzone/anglestransform.qh>
17 #include <lib/warpzone/client.qh>
18 #include <lib/warpzone/common.qh>
20 #include <common/weapons/weapon/_mod.inc>
22 #include <common/constants.qh>
23 #include <common/deathtypes/all.qh>
24 #include <common/items/_mod.qh>
25 #include <common/mapinfo.qh>
26 #include <common/monsters/_mod.qh>
27 #include <common/notifications/all.qh>
28 #include <common/stats.qh>
29 #include <common/teams.qh>
30 #include <common/util.qh>
31 #include <common/weapons/calculations.qc>
32 #include <common/weapons/config.qc>
33 #include <common/weapons/config.qh>
34 #include <common/weapons/weapon/_mod.inc>
35 #include <lib/csqcmodel/sv_model.qh>
36 #include <lib/warpzone/anglestransform.qh>
37 #include <lib/warpzone/common.qh>
38 #include <lib/warpzone/server.qh>
39 #include <lib/warpzone/util_server.qh>
40 #include <server/command/_mod.qh>
41 #include <server/hook.qh>
42 #include <server/items/spawning.qh>
43 #include <server/mutators/_mod.qh>
44 #include <server/portals.qh>
45 #include <server/weapons/common.qh>
46 #include <server/weapons/csqcprojectile.qh>
47 #include <server/weapons/tracing.qh>
51 // WEAPON PLUGIN SYSTEM
53 WepSet _WepSet_FromWeapon(int a)
56 if (REGISTRY_MAX(Weapons) > 24)
60 if (REGISTRY_MAX(Weapons) > 48)
64 return '0 0 1' * (2 ** a);
66 return '0 1 0' * (2 ** a);
68 return '1 0 0' * (2 ** a);
71 void WriteWepSet(float dst, WepSet w)
73 if (REGISTRY_MAX(Weapons) > 48) WriteInt72_t(dst, w);
74 else if (REGISTRY_MAX(Weapons) > 24) WriteInt48_t(dst, w);
75 else WriteInt24_t(dst, w.x);
79 WepSet WepSet_GetFromStat()
83 WepSet WepSet_GetFromStat_InMap()
85 return STAT(WEAPONSINMAP);
89 if (REGISTRY_MAX(Weapons) > 48) return ReadInt72_t();
90 if (REGISTRY_MAX(Weapons) > 24) return ReadInt48_t();
91 return ReadInt24_t() * '1 0 0';
95 string W_FixWeaponOrder(string order, float complete)
97 return fixPriorityList(order, WEP_FIRST, WEP_LAST, WEP_IMPULSE_BEGIN - WEP_FIRST, complete);
99 string W_NameWeaponOrder_MapFunc(string s)
104 entity wi = REGISTRY_GET(Weapons, i);
105 if (wi != WEP_Null) return wi.netname;
110 string W_UndeprecateName(string s)
114 case "nex": return "vortex";
115 case "rocketlauncher": return "devastator";
116 case "laser": return "blaster";
117 case "minstanex": return "vaporizer";
118 case "grenadelauncher": return "mortar";
119 case "uzi": return "machinegun";
120 case "hmg": return "okhmg";
121 case "rpc": return "okrpc";
125 string W_NameWeaponOrder(string order)
127 return mapPriorityList(order, W_NameWeaponOrder_MapFunc);
129 string W_NumberWeaponOrder_MapFunc(string s)
131 if (s == "0" || stof(s)) return s;
132 s = W_UndeprecateName(s);
133 FOREACH(Weapons, it != WEP_Null && it.netname == s, return ftos(i));
136 string W_NumberWeaponOrder(string order)
138 return mapPriorityList(order, W_NumberWeaponOrder_MapFunc);
141 float W_FixWeaponOrder_BuildImpulseList_buf[REGISTRY_MAX(Weapons)];
142 string W_FixWeaponOrder_BuildImpulseList_order;
143 void W_FixWeaponOrder_BuildImpulseList_swap(int i, int j, entity pass)
146 h = W_FixWeaponOrder_BuildImpulseList_buf[i];
147 W_FixWeaponOrder_BuildImpulseList_buf[i] = W_FixWeaponOrder_BuildImpulseList_buf[j];
148 W_FixWeaponOrder_BuildImpulseList_buf[j] = h;
150 float W_FixWeaponOrder_BuildImpulseList_cmp(int i, int j, entity pass)
152 int si = W_FixWeaponOrder_BuildImpulseList_buf[i];
153 Weapon e1 = REGISTRY_GET(Weapons, si);
154 int sj = W_FixWeaponOrder_BuildImpulseList_buf[j];
155 Weapon e2 = REGISTRY_GET(Weapons, sj);
156 int d = (e1.impulse + 9) % 10 - (e2.impulse + 9) % 10;
157 if (d != 0) return -d; // high impulse first!
158 string s = strcat(" ", W_FixWeaponOrder_BuildImpulseList_order, " ");
159 return strstrofs(s, sprintf(" %d ", si), 0)
160 - strstrofs(s, sprintf(" %d ", sj), 0); // low char index first!
162 string W_FixWeaponOrder_BuildImpulseList(string o)
165 W_FixWeaponOrder_BuildImpulseList_order = o;
166 for (i = WEP_FIRST; i <= WEP_LAST; ++i)
167 W_FixWeaponOrder_BuildImpulseList_buf[i - WEP_FIRST] = i;
168 heapsort(WEP_LAST - WEP_FIRST + 1, W_FixWeaponOrder_BuildImpulseList_swap, W_FixWeaponOrder_BuildImpulseList_cmp,
171 for (i = WEP_FIRST; i <= WEP_LAST; ++i)
172 o = strcat(o, " ", ftos(W_FixWeaponOrder_BuildImpulseList_buf[i - WEP_FIRST]));
173 W_FixWeaponOrder_BuildImpulseList_order = string_null;
174 return substring(o, 1, -1);
177 string W_FixWeaponOrder_AllowIncomplete(entity this, string order)
179 return W_FixWeaponOrder(order, 0);
182 string W_FixWeaponOrder_ForceComplete(string order)
184 if (order == "") order = W_NumberWeaponOrder(cvar_defstring("cl_weaponpriority"));
185 return W_FixWeaponOrder(order, 1);
188 WepSet W_RandomWeapons(entity e, WepSet remaining, int n)
190 WepSet result = '0 0 0';
191 for (int j = 0; j < n; ++j)
193 RandomSelection_Init();
194 FOREACH(Weapons, it != WEP_Null, {
195 if (remaining & (it.m_wepset))
196 RandomSelection_AddEnt(it, 1, 1);
198 Weapon w = RandomSelection_chosen_ent;
199 result |= WepSet_FromWeapon(w);
200 remaining &= ~WepSet_FromWeapon(w);
205 string GetAmmoPicture(int ammotype)
209 case RES_SHELLS: return ITEM_Shells.m_icon;
210 case RES_BULLETS: return ITEM_Bullets.m_icon;
211 case RES_ROCKETS: return ITEM_Rockets.m_icon;
212 case RES_CELLS: return ITEM_Cells.m_icon;
213 case RES_PLASMA: return ITEM_Plasma.m_icon;
214 case RES_FUEL: return ITEM_JetpackFuel.m_icon;
215 default: return ""; // wtf, no ammo type?
219 string GetAmmoName(int ammotype)
223 case RES_SHELLS: return ITEM_Shells.m_name;
224 case RES_BULLETS: return ITEM_Bullets.m_name;
225 case RES_ROCKETS: return ITEM_Rockets.m_name;
226 case RES_CELLS: return ITEM_Cells.m_name;
227 case RES_PLASMA: return ITEM_Plasma.m_name;
228 case RES_FUEL: return ITEM_JetpackFuel.m_name;
229 default: return "batteries";
234 int GetAmmoTypeFromNum(int i)
238 case 0: return RES_SHELLS;
239 case 1: return RES_BULLETS;
240 case 2: return RES_ROCKETS;
241 case 3: return RES_CELLS;
242 case 4: return RES_PLASMA;
243 case 5: return RES_FUEL;
244 default: return RES_NONE;
248 int GetAmmoStat(int ammotype)
252 case RES_SHELLS: return STAT_SHELLS;
253 case RES_BULLETS: return STAT_NAILS;
254 case RES_ROCKETS: return STAT_ROCKETS;
255 case RES_CELLS: return STAT_CELLS;
256 case RES_PLASMA: return STAT_PLASMA.m_id;
257 case RES_FUEL: return STAT_FUEL.m_id;
263 string W_Sound(string w_snd)
265 string output = strcat("weapons/", w_snd);
266 MUTATOR_CALLHOOK(WeaponSound, w_snd, output);
267 return M_ARGV(1, string);
270 string W_Model(string w_mdl)
272 string output = strcat("models/weapons/", w_mdl);
273 MUTATOR_CALLHOOK(WeaponModel, w_mdl, output);
274 return M_ARGV(1, string);
278 vector shotorg_adjustfromclient(vector vecs, float y_is_right, float algn)
300 vector shotorg_adjust_values(vector vecs, bool y_is_right, bool visual, int algn)
305 vecs = shotorg_adjustfromclient(vecs, y_is_right, algn);
307 else if (STAT(SHOOTFROMEYE))
311 else if (STAT(SHOOTFROMCENTER))
316 else if ((s = G_SHOOTFROMFIXEDORIGIN) != "")
319 if (y_is_right) v.y = -v.y;
320 if (v.x != 0) vecs.x = v.x;
324 else // just do the same as top
326 vecs = shotorg_adjustfromclient(vecs, y_is_right, algn);
332 #define shotorg_adjust shotorg_adjust_values
337 * 1. simple animated model, muzzle flash handling on h_ model:
338 * h_tuba.dpm, h_tuba.dpm.framegroups - invisible model controlling the animation
340 * shot = muzzle end (shot origin, also used for muzzle flashes)
341 * shell = casings ejection point (must be on the right hand side of the gun)
342 * weapon = attachment for v_tuba.md3
343 * v_tuba.md3 - first and third person model
344 * g_tuba.md3 - pickup model
346 * 2. simple animated model, muzzle flash handling on v_ model:
347 * h_tuba.dpm, h_tuba.dpm.framegroups - invisible model controlling the animation
349 * weapon = attachment for v_tuba.md3
350 * v_tuba.md3 - first and third person model
352 * shot = muzzle end (shot origin, also used for muzzle flashes)
353 * shell = casings ejection point (must be on the right hand side of the gun)
354 * g_tuba.md3 - pickup model
356 * 3. fully animated model, muzzle flash handling on h_ model:
357 * h_tuba.dpm, h_tuba.dpm.framegroups - animated first person model
359 * shot = muzzle end (shot origin, also used for muzzle flashes)
360 * shell = casings ejection point (must be on the right hand side of the gun)
361 * handle = corresponding to the origin of v_tuba.md3 (used for muzzle flashes)
362 * v_tuba.md3 - third person model
363 * g_tuba.md3 - pickup model
365 * 4. fully animated model, muzzle flash handling on v_ model:
366 * h_tuba.dpm, h_tuba.dpm.framegroups - animated first person model
368 * shot = muzzle end (shot origin)
369 * shell = casings ejection point (must be on the right hand side of the gun)
370 * v_tuba.md3 - third person model
372 * shot = muzzle end (for muzzle flashes)
373 * g_tuba.md3 - pickup model
376 * this.origin, this.angles
378 * this.movedir, this.view_ofs, this.movedir_aligned
385 void CL_WeaponEntity_SetModel(entity this, string name, bool _anim)
389 vector oldmin = this.mins, oldmax = this.maxs;
390 setmodel(this, MDL_Null);
391 setsize(this, oldmin, oldmax);
392 if (this.weaponchild) delete(this.weaponchild);
393 this.weaponchild = NULL;
394 this.movedir = '0 0 0';
395 this.spawnorigin = '0 0 0';
396 this.oldorigin = '0 0 0';
397 this.anim_fire1 = '0 1 0.01';
398 this.anim_fire2 = '0 1 0.01';
399 this.anim_idle = '0 1 0.01';
400 this.anim_reload = '0 1 0.01';
404 // if there is a child entity, hide it until we're sure we use it
405 if (this.weaponchild) this.weaponchild.model = "";
406 _setmodel(this, W_Model(strcat("v_", name, ".md3")));
407 int v_shot_idx; // used later
408 (v_shot_idx = gettagindex(this, "shot")) || (v_shot_idx = gettagindex(this, "tag_shot"));
410 _setmodel(this, W_Model(strcat("h_", name, ".iqm")));
411 // preset some defaults that work great for renamed zym files (which don't need an animinfo)
412 this.anim_fire1 = animfixfps(this, '0 1 0.01', '0 0 0');
413 this.anim_fire2 = animfixfps(this, '1 1 0.01', '0 0 0');
414 this.anim_idle = animfixfps(this, '2 1 0.01', '0 0 0');
415 this.anim_reload = animfixfps(this, '3 1 0.01', '0 0 0');
417 // if we have a "weapon" tag, let's attach the v_ model to it ("invisible hand" style model)
418 // if we don't, this is a "real" animated model
420 if ((t = "weapon", gettagindex(this, t)) || (t = "tag_weapon", gettagindex(this, t)))
422 if (!this.weaponchild)
424 this.weaponchild = new(weaponchild);
426 this.weaponchild.drawmask = MASK_NORMAL;
427 this.weaponchild.renderflags |= RF_VIEWMODEL;
430 _setmodel(this.weaponchild, W_Model(strcat("v_", name, ".md3")));
431 setsize(this.weaponchild, '0 0 0', '0 0 0');
432 setattachment(this.weaponchild, this, t);
436 if (this.weaponchild) delete(this.weaponchild);
437 this.weaponchild = NULL;
440 setsize(this, '0 0 0', '0 0 0');
441 setorigin(this, '0 0 0');
442 this.angles = '0 0 0';
445 this.viewmodelforclient = NULL;
447 this.renderflags &= ~RF_VIEWMODEL;
449 if (v_shot_idx) // v_ model attached to invisible h_ model
451 this.movedir = gettaginfo(this.weaponchild, v_shot_idx);
456 if ((idx = gettagindex(this, "shot")) || (idx = gettagindex(this, "tag_shot")))
458 this.movedir = gettaginfo(this, idx);
462 LOG_WARNF("weapon model %s does not support the 'shot' tag, will display shots TOTALLY wrong",
464 this.movedir = '0 0 0';
469 // v_ model attached to invisible h_ model
471 && ((idx = gettagindex(this.weaponchild, "shell")) || (idx = gettagindex(this.weaponchild, "tag_shell"))))
473 this.spawnorigin = gettaginfo(this.weaponchild, idx);
475 else if ((idx = gettagindex(this, "shell")) || (idx = gettagindex(this, "tag_shell")))
477 this.spawnorigin = gettaginfo(this, idx);
481 LOG_WARNF("weapon model %s does not support the 'shell' tag, will display casings wrong",
483 this.spawnorigin = this.movedir;
488 this.oldorigin = '0 0 0'; // use regular attachment
493 if (this.weaponchild)
494 (idx = gettagindex(this, "weapon")) || (idx = gettagindex(this, "tag_weapon"));
496 (idx = gettagindex(this, "handle")) || (idx = gettagindex(this, "tag_handle"));
499 this.oldorigin = this.movedir - gettaginfo(this, idx);
504 "weapon model %s does not support the 'handle' tag "
505 "and neither does the v_ model support the 'shot' tag, "
506 "will display muzzle flashes TOTALLY wrong\n",
508 this.oldorigin = '0 0 0'; // there is no way to recover from this
513 this.viewmodelforclient = this.owner;
515 this.renderflags |= RF_VIEWMODEL;
519 this.view_ofs = '0 0 0';
520 this.movedir_aligned = this.movedir;
522 if (this.movedir.x >= 0)
524 //int algn = STAT(GUNALIGN, this.owner);
525 int algn = W_GunAlign(this, STAT(GUNALIGN, this.owner));
527 this.m_gunalign = algn;
529 vector v = this.movedir;
530 this.movedir = shotorg_adjust(v, false, false, algn);
531 this.movedir_aligned = shotorg_adjust(v, false, true, algn);
532 this.view_ofs = shotorg_adjust(v, false, true, algn) - v;
534 int compressed_shotorg = compressShotOrigin(this.movedir);
535 // make them match perfectly
538 if (this.owner) STAT(SHOTORG, this.owner) = compressed_shotorg;
540 this.movedir = decompressShotOrigin(compressed_shotorg);
542 this.spawnorigin += this.view_ofs; // offset the casings origin by the same amount
544 // check if an instant weapon switch occurred
545 setorigin(this, this.view_ofs);
547 // reset animstate now
548 this.wframe = WFRAME_IDLE;
549 setanim(this, this.anim_idle, true, false, true);
555 REGISTER_NET_TEMP(wframe)
557 NET_HANDLE(wframe, bool isNew)
559 WFRAME fr = ReadByte();
560 float t = ReadFloat();
561 int slot = ReadByte();
562 bool restartanim = ReadByte();
563 entity wepent = viewmodels[slot];
564 if(fr == WFRAME_IDLE)
565 wepent.animstate_looping = false; // we don't need to enforce idle animation
572 case WFRAME_IDLE: a = wepent.anim_idle; break;
573 case WFRAME_FIRE1: a = wepent.anim_fire1; break;
574 case WFRAME_FIRE2: a = wepent.anim_fire2; break;
575 case WFRAME_RELOAD: a = wepent.anim_reload; break;
578 anim_set(wepent, a, !restartanim, restartanim, restartanim);
580 wepent.state = ReadByte();
581 wepent.weapon_nextthink = ReadFloat();
582 switch (wepent.state)
585 wepent.weapon_switchdelay = wepent.activeweapon.switchdelay_raise;
588 wepent.weapon_switchdelay = wepent.activeweapon.switchdelay_drop;
591 wepent.weapon_switchdelay = 0;
599 void wframe_send(entity actor, entity weaponentity, int wepframe, float attackrate, bool restartanim)
601 if (!IS_REAL_CLIENT(actor)) return;
602 int channel = MSG_ONE;
604 WriteHeader(channel, wframe);
605 WriteByte(channel, wepframe);
606 WriteFloat(channel, attackrate);
607 WriteByte(channel, weaponslot(weaponentity.weaponentity_fld));
608 WriteByte(channel, restartanim);
609 WriteByte(channel, weaponentity.state);
610 WriteFloat(channel, weaponentity.weapon_nextthink);
614 REGISTER_NET_C2S(w_whereis)
616 void Weapon_whereis(Weapon this, entity cl);
617 NET_HANDLE(w_whereis, bool)
619 Weapon wpn = ReadRegistered(Weapons);
620 if (wpn != WEP_Null) Weapon_whereis(wpn, sender);
624 void w_whereis(Weapon this)
626 int channel = MSG_C2S;
627 WriteHeader(channel, w_whereis);
628 WriteRegistered(Weapons, channel, this);
630 CLIENT_COMMAND(weapon_find, "Show spawn locations of a weapon")
634 case CMD_REQUEST_COMMAND:
639 FOREACH(Weapons, it != WEP_Null, w_whereis(it));
644 FOREACH(Weapons, it != WEP_Null && !(STAT(WEAPONS) & it.m_wepset), w_whereis(it));
647 FOREACH(Weapons, it != WEP_Null && it.netname == s,
654 LOG_INFOF("Incorrect parameters for ^2%s^7", argv(0));
655 case CMD_REQUEST_USAGE:
657 LOG_HELP("Usage:^3 cl_cmd weapon_find <weapon>");
658 LOG_HELP(" Where <weapon> is the lowercase weapon name, 'all' or 'unowned'.");
666 void W_MuzzleFlash_Model_AttachToShotorg(entity actor, .entity weaponentity, entity flash, vector offset)
669 flash.angles_z = random() * 360;
671 entity view = actor.(weaponentity);
672 entity exterior = actor.exteriorweaponentity;
674 if (view.oldorigin.x > 0)
676 setattachment(flash, exterior, "");
677 setorigin(flash, view.oldorigin + offset);
681 if (gettagindex(exterior, "shot")) setattachment(flash, exterior, "shot");
682 else setattachment(flash, exterior, "tag_shot");
683 setorigin(flash, offset);
687 void W_MuzzleFlash_Model_AttachToShotorg(entity wepent, entity flash, vector offset)
689 flash.owner = wepent;
690 flash.angles_z = random() * 360;
692 if (gettagindex(wepent, "shot")) setattachment(flash, wepent, "shot");
693 else setattachment(flash, wepent, "tag_shot");
694 setorigin(flash, offset);
698 void W_MuzzleFlash_Model_Think(entity this)
703 this.nextthink = time + 0.05;
707 setthink(this, SUB_Remove);
708 this.nextthink = time;
709 this.realowner.muzzle_flash = NULL;
714 void W_MuzzleFlash_Model(entity wepent, entity muzzlemodel)
716 if(wepent.muzzle_flash == NULL)
717 wepent.muzzle_flash = spawn();
719 entity flash = wepent.muzzle_flash;
720 setmodel(flash, muzzlemodel); // precision set below
723 setthink(flash, W_MuzzleFlash_Model_Think);
724 flash.nextthink = time + 0.02;
727 flash.angles_z = random() * 180;
728 flash.effects = EF_ADDITIVE | EF_FULLBRIGHT;
729 flash.owner = flash.realowner = wepent;
732 flash.drawmask = MASK_NORMAL;
736 REGISTER_NET_TEMP(w_muzzleflash)
739 void W_MuzzleFlash(Weapon thiswep, entity actor, .entity weaponentity, vector shotorg, vector shotdir)
741 // don't show an exterior muzzle effect for the off-hand
742 if(weaponslot(weaponentity) == 0)
744 Send_Effect_Except(thiswep.m_muzzleeffect, shotorg, shotdir * 1000, 1, actor);
746 if(thiswep.m_muzzlemodel != MDL_Null)
748 W_MuzzleFlash_Model(actor.exteriorweaponentity, thiswep.m_muzzlemodel);
749 W_MuzzleFlash_Model_AttachToShotorg(actor, weaponentity, actor.exteriorweaponentity.muzzle_flash, '5 0 0');
753 FOREACH_CLIENT(it == actor || (IS_SPEC(it) && it.enemy == actor),
755 if(!IS_REAL_CLIENT(it))
757 int channel = MSG_ONE;
759 WriteHeader(channel, w_muzzleflash);
760 WriteByte(channel, thiswep.m_id);
761 WriteByte(channel, weaponslot(weaponentity));
762 WriteVector(channel, shotorg);
766 NET_HANDLE(w_muzzleflash, bool isNew)
769 int weapon_id = ReadByte();
770 int slot = ReadByte();
771 vector sv_shotorg = ReadVector();
773 Weapon thiswep = REGISTRY_GET(Weapons, weapon_id);
774 vector viewangles = getpropertyvec(VF_CL_VIEWANGLES);
775 vector forward, right, up;
776 MAKE_VECTORS(viewangles, forward, right, up);
778 if(autocvar_chase_active)
780 // in third person mode, show the muzzle flash from the server side weapon position
781 // we don't have a view model to reference in this case
782 pointparticles(thiswep.m_muzzleeffect, sv_shotorg, forward * 1000, 1);
785 if(!autocvar_r_drawviewmodel) return;
787 entity wepent = viewmodels[slot];
788 // get the local player entity to calculate shot origin
789 entity rlplayer = CSQCModel_server2csqc(player_localentnum - 1);
791 rlplayer = csqcplayer; // fall back to the global
793 vector md = wepent.movedir_aligned;
794 vector vecs = ((md.x > 0) ? md : '0 0 0');
795 vector dv = forward * vecs.x + right * -vecs.y + up * vecs.z;
796 vector org = rlplayer.origin + rlplayer.view_ofs + dv;
798 pointparticles(thiswep.m_muzzleeffect, org, forward * 1000, 1);
800 if(thiswep.m_muzzlemodel != MDL_Null)
802 W_MuzzleFlash_Model(wepent, thiswep.m_muzzlemodel);
803 W_MuzzleFlash_Model_AttachToShotorg(wepent, wepent.muzzle_flash, '5 0 0');