]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/weapons/weaponsystem.qc
cbde7d360c61544c8ea3b4d48596c11ac2330435
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / weapons / weaponsystem.qc
1 #include "weaponsystem.qh"
2
3 #include "selection.qh"
4
5 #include "../command/common.qh"
6 #include "../mutators/_mod.qh"
7 #include "../round_handler.qh"
8 #include <common/t_items.qh>
9 #include <common/animdecide.qh>
10 #include <common/constants.qh>
11 #include <common/net_linked.qh>
12 #include <common/monsters/_mod.qh>
13 #include <common/notifications/all.qh>
14 #include <common/util.qh>
15 #include <common/weapons/_all.qh>
16 #include <common/state.qh>
17 #include <lib/csqcmodel/sv_model.qh>
18 #include <common/wepent.qh>
19
20 .int state;
21
22 .float weapon_frametime;
23
24 float W_WeaponRateFactor(entity this)
25 {
26         float t = 1;
27         if(g_weaponratefactor > 0)
28                 t = 1.0 / g_weaponratefactor;
29
30         MUTATOR_CALLHOOK(WeaponRateFactor, t, this);
31         t = M_ARGV(0, float);
32
33         return t;
34 }
35
36 float W_WeaponSpeedFactor(entity this)
37 {
38         float t = 1.0 * g_weaponspeedfactor;
39
40         MUTATOR_CALLHOOK(WeaponSpeedFactor, t, this);
41         t = M_ARGV(0, float);
42
43         return t;
44 }
45
46
47 bool CL_Weaponentity_CustomizeEntityForClient(entity this, entity client)
48 {
49         this.viewmodelforclient = this.owner;
50         if (IS_SPEC(client) && client.enemy == this.owner) this.viewmodelforclient = client;
51         return true;
52 }
53
54 vector CL_Weapon_GetShotOrg(int wpn)
55 {
56         entity wi = Weapons_from(wpn);
57         entity e = spawn();
58         CL_WeaponEntity_SetModel(e, wi.mdl, false);
59         vector ret = e.movedir;
60         CL_WeaponEntity_SetModel(e, "", false);
61         delete(e);
62         return ret;
63 }
64
65 .float m_alpha;
66 .string w_weaponname;
67 .int w_dmg;
68 .int w_deadflag;
69
70 void CL_Weaponentity_Think(entity this)
71 {
72         this.nextthink = time;
73         if (game_stopped) this.frame = this.anim_idle.x;
74         .entity weaponentity = this.weaponentity_fld;
75         if (this.owner.(weaponentity) != this)
76         {
77                 // owner has new gun; remove old one
78                 if (this.weaponchild) delete(this.weaponchild);
79                 if (this.hook) delete(this.hook);
80                 delete(this);
81                 return;
82         }
83         if (IS_DEAD(this.owner))
84         {
85                 // owner died; disappear
86                 this.model = "";
87                 if (this.weaponchild) this.weaponchild.model = "";
88                 return;
89         }
90         if (this.w_weaponname != this.weaponname
91             || this.w_dmg != this.modelindex
92             || this.w_deadflag != this.deadflag)
93         {
94                 // owner changed weapons; update appearance
95                 this.w_weaponname = this.weaponname;
96                 this.w_dmg = this.modelindex;
97                 this.w_deadflag = this.deadflag;
98
99                 CL_WeaponEntity_SetModel(this, this.weaponname, true);
100         }
101
102         this.alpha = -1;  // TODO: don't render this entity at all
103
104         if (this.owner.alpha == default_player_alpha) this.m_alpha = default_weapon_alpha;
105         else if (this.owner.alpha != 0) this.m_alpha = this.owner.alpha;
106         else this.m_alpha  = 1;
107
108         if (this.weaponchild)
109         {
110                 this.weaponchild.alpha = this.alpha;
111                 this.weaponchild.effects = this.effects;
112         }
113 }
114
115 void CL_ExteriorWeaponentity_Think(entity this)
116 {
117         this.nextthink = time;
118         .entity weaponentity = this.weaponentity_fld;
119         entity w_ent = this.owner.(weaponentity);
120         if (this.owner.exteriorweaponentity != this)
121         {
122                 delete(this);
123                 return;
124         }
125         if (IS_DEAD(this.owner))
126         {
127                 this.model = "";
128                 return;
129         }
130         if (this.weaponname != w_ent.weaponname || this.dmg != w_ent.modelindex
131             || this.deadflag != w_ent.deadflag)
132         {
133                 this.weaponname = w_ent.weaponname;
134                 this.dmg = w_ent.modelindex;
135                 this.deadflag = w_ent.deadflag;
136                 if (w_ent.weaponname != "")
137                 {
138                         _setmodel(this, W_Model(strcat("v_", w_ent.weaponname, ".md3")));
139                         setsize(this, '0 0 0', '0 0 0');
140                 }
141                 else this.model = "";
142
143                 int tag_found;
144                 if ((tag_found = gettagindex(this.owner, "tag_weapon")))
145                 {
146                         this.tag_index = tag_found;
147                         this.tag_entity = this.owner;
148                 }
149                 else
150                 {
151                         setattachment(this, this.owner, "bip01 r hand");
152                 }
153         }
154         this.effects = this.owner.effects;
155         this.effects |= EF_LOWPRECISION;
156         this.effects = this.effects & EFMASK_CHEAP;  // eat performance
157         if (this.owner.alpha == default_player_alpha) this.alpha = default_weapon_alpha;
158         else if (this.owner.alpha != 0) this.alpha = this.owner.alpha;
159         else this.alpha = 1;
160
161     Weapon wep = this.owner.(weaponentity).m_weapon;
162         if (wep) this.glowmod = weaponentity_glowmod(wep, this.owner, this.owner.clientcolors, this.owner.(weaponentity));
163         this.colormap = this.owner.colormap;
164
165         CSQCMODEL_AUTOUPDATE(this);
166 }
167
168 // spawning weaponentity for client
169 void CL_SpawnWeaponentity(entity actor, .entity weaponentity)
170 {
171         entity view = actor.(weaponentity) = new(weaponentity);
172         view.solid = SOLID_NOT;
173         view.owner = actor;
174         setmodel(view, MDL_Null);  // precision set when changed
175         setorigin(view, '0 0 0');
176         view.weaponentity_fld = weaponentity;
177         setthink(view, CL_Weaponentity_Think);
178         view.nextthink = time;
179         view.viewmodelforclient = actor;
180         setcefc(view, CL_Weaponentity_CustomizeEntityForClient);
181
182         wepent_link(view);
183
184         if (weaponentity == weaponentities[0]) // only one exterior model, thank you very much
185         {
186                 entity exterior = actor.exteriorweaponentity = new(exteriorweaponentity);
187                 exterior.solid = SOLID_NOT;
188                 exterior.owner = actor;
189                 exterior.weaponentity_fld = weaponentity;
190                 setorigin(exterior, '0 0 0');
191                 setthink(exterior, CL_ExteriorWeaponentity_Think);
192                 exterior.nextthink = time;
193
194                 CSQCMODEL_AUTOINIT(exterior);
195         }
196 }
197
198 // Weapon subs
199 void w_clear(Weapon thiswep, entity actor, .entity weaponentity, int fire)
200 {
201         actor.(weaponentity).m_weapon = WEP_Null;
202         actor.(weaponentity).m_switchingweapon = WEP_Null;
203         entity this = actor.(weaponentity);
204         if (this)
205         {
206                 this.state = WS_CLEAR;
207                 this.effects = 0;
208         }
209 }
210
211 void w_ready(Weapon thiswep, entity actor, .entity weaponentity, int fire)
212 {
213         entity this = actor.(weaponentity);
214         if (this) this.state = WS_READY;
215         weapon_thinkf(actor, weaponentity, WFRAME_IDLE, 1000000, w_ready);
216 }
217
218 .float prevdryfire;
219 .float prevwarntime;
220 bool weapon_prepareattack_checkammo(Weapon thiswep, entity actor, bool secondary, .entity weaponentity)
221 {
222         if ((actor.items & IT_UNLIMITED_WEAPON_AMMO)) return true;
223         bool ammo = false;
224         if (secondary) ammo = thiswep.wr_checkammo2(thiswep, actor, weaponentity);
225         else ammo = thiswep.wr_checkammo1(thiswep, actor, weaponentity);
226         if (ammo) return true;
227         // always keep the Mine Layer if we placed mines, so that we can detonate them
228         if (thiswep == WEP_MINE_LAYER)
229         {
230                 IL_EACH(g_mines, it.owner == actor && it.weaponentity_fld == weaponentity,
231                 {
232                         return false;
233                 });
234         }
235
236         if (thiswep == WEP_SHOTGUN)
237                 if (!secondary && WEP_CVAR(shotgun, secondary) == 1) return false;           // no clicking, just allow
238
239         if (thiswep == actor.(weaponentity).m_switchweapon && time - actor.prevdryfire > 1) // only play once BEFORE starting to switch weapons
240         {
241                 sound(actor, CH_WEAPON_A, SND_DRYFIRE, VOL_BASE, ATTEN_NORM);
242                 actor.prevdryfire = time;
243         }
244
245         // check if the other firing mode has enough ammo
246         bool ammo_other = false;
247         if (secondary) ammo_other = thiswep.wr_checkammo1(thiswep, actor, weaponentity);
248         else ammo_other = thiswep.wr_checkammo2(thiswep, actor, weaponentity);
249         if (ammo_other)
250         {
251                 if (time - actor.prevwarntime > 1)
252                 {
253                         Send_Notification(
254                                 NOTIF_ONE,
255                                 actor,
256                                 MSG_MULTI,
257                                 ITEM_WEAPON_PRIMORSEC,
258                                 thiswep.m_id,
259                                 secondary,
260                                 (1 - secondary)
261                                          );
262                 }
263                 actor.prevwarntime = time;
264         }
265         else  // this weapon is totally unable to fire, switch to another one
266         {
267                 W_SwitchToOtherWeapon(actor, weaponentity);
268         }
269
270         return false;
271 }
272
273 .float race_penalty;
274 bool weapon_prepareattack_check(Weapon thiswep, entity actor, .entity weaponentity, bool secondary, float attacktime)
275 {
276         if (actor.weaponentity == NULL) return true;
277         if (!weapon_prepareattack_checkammo(thiswep, actor, secondary, weaponentity)) return false;
278
279         // if sv_ready_restart_after_countdown is set, don't allow the player to shoot
280         // if all players readied up and the countdown is running
281         if (time < game_starttime || time < actor.race_penalty) return false;
282
283         if (timeout_status == TIMEOUT_ACTIVE)  // don't allow the player to shoot while game is paused
284                 return false;
285
286         // do not even think about shooting if switching
287         if (actor.(weaponentity).m_switchweapon != actor.(weaponentity).m_weapon) return false;
288
289         if (attacktime >= 0)
290         {
291                 int slot = weaponslot(weaponentity);
292                 // don't fire if previous attack is not finished
293                 if (ATTACK_FINISHED(actor, slot) > time + actor.(weaponentity).weapon_frametime * 0.5) return false;
294                 entity this = actor.(weaponentity);
295                 // don't fire while changing weapon
296                 if (this.state != WS_READY) return false;
297         }
298         return true;
299 }
300
301 void weapon_prepareattack_do(entity actor, .entity weaponentity, bool secondary, float attacktime)
302 {
303         entity this = actor.(weaponentity);
304         if (this == NULL) return;
305         this.state = WS_INUSE;
306
307         actor.spawnshieldtime = min(actor.spawnshieldtime, time);  // kill spawn shield when you fire
308
309         // if the weapon hasn't been firing continuously, reset the timer
310         if (attacktime >= 0)
311         {
312                 int slot = weaponslot(weaponentity);
313                 if (ATTACK_FINISHED(actor, slot) < time - this.weapon_frametime * 1.5)
314                 {
315                         ATTACK_FINISHED(actor, slot) = time;
316                         // dprint("resetting attack finished to ", ftos(time), "\n");
317                 }
318                 ATTACK_FINISHED(actor, slot) = ATTACK_FINISHED(actor, slot) + attacktime * W_WeaponRateFactor(actor);
319         }
320         this.bulletcounter += 1;
321         // dprint("attack finished ", ftos(ATTACK_FINISHED(actor, slot)), "\n");
322 }
323
324 bool weapon_prepareattack(Weapon thiswep, entity actor, .entity weaponentity, bool secondary, float attacktime)
325 {
326         if (weapon_prepareattack_check(thiswep, actor, weaponentity, secondary, attacktime))
327         {
328                 weapon_prepareattack_do(actor, weaponentity, secondary, attacktime);
329                 return true;
330         }
331         return false;
332 }
333
334 void wframe_send(entity actor, entity weaponentity, vector a, bool restartanim);
335
336 /**
337  * @param t defer thinking until time + t
338  * @param func next think function
339  */
340 void weapon_thinkf(entity actor, .entity weaponentity, WFRAME fr, float t, void(Weapon thiswep, entity actor,
341         .entity weaponentity, int fire) func)
342 {
343         entity this = actor.(weaponentity);
344         if (this == NULL) return;
345         bool restartanim;
346         if (fr == WFRAME_DONTCHANGE)
347         {
348                 fr = this.wframe;
349                 restartanim = false;
350         }
351         else
352         {
353                 restartanim = fr != WFRAME_IDLE;
354         }
355
356         vector of = v_forward;
357         vector or = v_right;
358         vector ou = v_up;
359
360         vector a = '0 0 0';
361     this.wframe = fr;
362     if (fr == WFRAME_IDLE) a = this.anim_idle;
363     else if (fr == WFRAME_FIRE1) a = this.anim_fire1;
364     else if (fr == WFRAME_FIRE2) a = this.anim_fire2;
365     else  // if (fr == WFRAME_RELOAD)
366         a = this.anim_reload;
367     a.z *= g_weaponratefactor;
368
369         v_forward = of;
370         v_right = or;
371         v_up = ou;
372
373         if (this.weapon_think == w_ready && func != w_ready && this.state == WS_RAISE) backtrace(
374                         "Tried to override initial weapon think function - should this really happen?");
375
376         t *= W_WeaponRateFactor(actor);
377
378         // VorteX: haste can be added here
379         if (this.weapon_think == w_ready)
380         {
381                 this.weapon_nextthink = time;
382                 // dprint("started firing at ", ftos(time), "\n");
383         }
384         if (this.weapon_nextthink < time - this.weapon_frametime * 1.5
385             || this.weapon_nextthink > time + this.weapon_frametime * 1.5)
386         {
387                 this.weapon_nextthink = time;
388                 // dprint("reset weapon animation timer at ", ftos(time), "\n");
389         }
390         this.weapon_nextthink += t;
391         this.weapon_think = func;
392         // dprint("next ", ftos(this.weapon_nextthink), "\n");
393
394         if (this)
395         {
396                 FOREACH_CLIENT(true, LAMBDA(
397                         if(it == actor || (IS_SPEC(it) && it.enemy == actor))
398                                 wframe_send(it, this, a, restartanim);
399                 ));
400         }
401
402         if ((fr == WFRAME_FIRE1 || fr == WFRAME_FIRE2) && t)
403         {
404                 bool primary_melee = boolean(fr == WFRAME_FIRE1 && (this.m_weapon.spawnflags & WEP_TYPE_MELEE_PRI));
405                 bool secondary_melee = boolean(fr == WFRAME_FIRE2 && (this.m_weapon.spawnflags & WEP_TYPE_MELEE_SEC));
406                 int act = (primary_melee || secondary_melee)
407                         ? ANIMACTION_MELEE
408                         : ANIMACTION_SHOOT
409                         ;
410                 animdecide_setaction(actor, act, restartanim);
411         }
412         else if (actor.anim_upper_action == ANIMACTION_SHOOT || actor.anim_upper_action == ANIMACTION_MELEE)
413         {
414                 actor.anim_upper_action = 0;
415         }
416 }
417
418 bool forbidWeaponUse(entity player)
419 {
420         if (time < game_starttime && !autocvar_sv_ready_restart_after_countdown) return true;
421         if (player.player_blocked) return true;
422         if (game_stopped) return true;
423         if (STAT(FROZEN, player)) return true;
424         if (MUTATOR_CALLHOOK(ForbidWeaponUse, player)) return true;
425         return false;
426 }
427
428 .bool hook_switchweapon;
429
430 void W_WeaponFrame(Player actor, .entity weaponentity)
431 {
432     TC(Player, actor);
433     TC(PlayerState, PS(actor));
434         entity this = actor.(weaponentity);
435         if (frametime) this.weapon_frametime = frametime;
436
437         if (!this || actor.health < 1) return;  // Dead player can't use weapons and injure impulse commands
438
439         int button_atck = PHYS_INPUT_BUTTON_ATCK(actor);
440         int button_atck2 = PHYS_INPUT_BUTTON_ATCK2(actor);
441
442         if (round_handler_IsActive() && !round_handler_IsRoundStarted())
443                 button_atck = button_atck2 = 0; // forbid primary and secondary fire, switching is allowed
444
445         if (forbidWeaponUse(actor))
446         {
447                 if (this.state != WS_CLEAR)
448                 {
449                         Weapon wpn = this.m_weapon;
450                         w_ready(wpn, actor, weaponentity, button_atck | (button_atck2 << 1));
451                         return;
452                 }
453         }
454
455         if(autocvar_g_weaponswitch_debug == 2 && weaponslot(weaponentity) > 0)
456         {
457                 .entity wepe1 = weaponentities[0];
458                 entity wep1 = actor.(wepe1);
459                 this.m_switchweapon = wep1.m_switchweapon;
460                 entity store = IS_PLAYER(actor) ? PS(actor) : actor;
461                 if(!(this.m_switchweapon.spawnflags & WEP_FLAG_DUALWIELD) && !(store.dual_weapons & wep1.m_switchweapon.m_wepset))
462                 {
463                         this.m_weapon = WEP_Null;
464                         this.m_switchingweapon = WEP_Null;
465                         this.m_switchweapon = WEP_Null;
466                         this.state = WS_CLEAR;
467                         this.weaponname = "";
468                         return;
469                 }
470         }
471
472         if (this.m_switchweapon == WEP_Null)
473         {
474                 this.m_weapon = WEP_Null;
475                 this.m_switchingweapon = WEP_Null;
476                 this.state = WS_CLEAR;
477                 this.weaponname = "";
478                 return;
479         }
480
481         makevectors(actor.v_angle);
482         vector fo = v_forward;  // save them in case the weapon think functions change it
483         vector ri = v_right;
484         vector up = v_up;
485
486         // Change weapon
487         if (this.m_weapon != this.m_switchweapon)
488         {
489                 switch (this.state)
490                 {
491                         default:
492                                 LOG_WARNF("unhandled weaponentity (%i) state for player (%i): %d", this, actor, this.state);
493                                 break;
494                         case WS_INUSE:
495                         case WS_RAISE:
496                                 break;
497                         case WS_CLEAR:
498                         {
499                                 // end switching!
500                                 Weapon newwep = this.m_switchweapon;
501                                 this.m_switchingweapon = newwep;
502
503                                 // the two weapon entities will notice this has changed and update their models
504                                 this.m_weapon = newwep;
505                                 this.weaponname = newwep.mdl;
506                                 this.bulletcounter = 0;
507                                 newwep.wr_setup(newwep, actor, weaponentity);
508                                 this.state = WS_RAISE;
509
510                                 // set our clip load to the load of the weapon we switched to, if it's reloadable
511                                 if ((newwep.spawnflags & WEP_FLAG_RELOADABLE) && newwep.reloading_ammo)  // prevent accessing undefined cvars
512                                 {
513                                         this.clip_load = this.(weapon_load[this.m_switchweapon.m_id]);
514                                         this.clip_size = newwep.reloading_ammo;
515                                 }
516                                 else
517                                 {
518                                         this.clip_load = this.clip_size = 0;
519                                 }
520
521                                 weapon_thinkf(actor, weaponentity, WFRAME_DONTCHANGE, newwep.switchdelay_raise, w_ready);
522                                 break;
523                         }
524                         case WS_DROP:
525                         {
526                                 // in dropping phase we can switch at any time
527                                 this.m_switchingweapon = this.m_switchweapon;
528                                 break;
529                         }
530                         case WS_READY:
531                         {
532                                 // start switching!
533                                 this.m_switchingweapon = this.m_switchweapon;
534                                 entity oldwep = this.m_weapon;
535
536                                 // set up weapon switch think in the future, and start drop anim
537                                 if (INDEPENDENT_ATTACK_FINISHED || ATTACK_FINISHED(actor, weaponslot(weaponentity)) <= time + this.weapon_frametime * 0.5)
538                                 {
539                                         sound(actor, CH_WEAPON_SINGLE, SND_WEAPON_SWITCH, VOL_BASE, ATTN_NORM);
540                                         this.state = WS_DROP;
541                                         weapon_thinkf(actor, weaponentity, WFRAME_DONTCHANGE, oldwep.switchdelay_drop, w_clear);
542                                 }
543                                 break;
544                         }
545                 }
546         }
547
548         // LordHavoc: network timing test code
549         // if (actor.button0)
550         //      print(ftos(frametime), " ", ftos(time), " >= ", ftos(ATTACK_FINISHED(actor, slot)), " >= ", ftos(this.weapon_nextthink), "\n");
551
552         Weapon w = this.m_weapon;
553
554         // call the think code which may fire the weapon
555         // and do so multiple times to resolve framerate dependency issues if the
556         // server framerate is very low and the weapon fire rate very high
557         for (int c = 0; c < W_TICSPERFRAME; ++c)
558         {
559                 if (w != WEP_Null && !(actor.weapons & WepSet_FromWeapon(w)))
560                 {
561                         if (this.m_weapon == this.m_switchweapon) W_SwitchWeapon_Force(actor, w_getbestweapon(actor, weaponentity), weaponentity);
562                         w = WEP_Null;
563                 }
564
565                 v_forward = fo;
566                 v_right = ri;
567                 v_up = up;
568
569                 bool block_weapon = false;
570                 {
571                         bool key_pressed = PHYS_INPUT_BUTTON_HOOK(actor) && !actor.vehicle;
572                         if (round_handler_IsActive() && !round_handler_IsRoundStarted())
573                                 key_pressed = false;
574
575                         Weapon off = actor.offhand;
576                         if (off && !(actor.weapons & WEPSET(HOOK)))
577                         {
578                                 if (off.offhand_think) off.offhand_think(off, actor, key_pressed);
579                         }
580                         else
581                         {
582                                 if (key_pressed && this.m_switchweapon != WEP_HOOK && !actor.hook_switchweapon)
583                                         W_SwitchWeapon(actor, WEP_HOOK, weaponentity);
584                                 actor.hook_switchweapon = key_pressed;
585                                 Weapon h = WEP_HOOK;
586                                 block_weapon = (this.m_weapon == h && (button_atck || key_pressed));
587                                 h.wr_think(h, actor, weaponentity, block_weapon ? 1 : 0);
588                         }
589                 }
590
591                 v_forward = fo;
592                 v_right = ri;
593                 v_up = up;
594
595                 if (!block_weapon)
596                 {
597             Weapon e = this.m_weapon;
598             TC(Weapon, e);
599                         if (w != WEP_Null)
600                         {
601                                 e.wr_think(e, actor, weaponentity, button_atck | (button_atck2 << 1));
602                         }
603                         else if (e)
604                         {
605                                 e.wr_gonethink(e, actor, weaponentity);
606                         }
607                 }
608
609                 if (time + this.weapon_frametime * 0.5 >= this.weapon_nextthink)
610                 {
611                         if (this.weapon_think)
612                         {
613                                 v_forward = fo;
614                                 v_right = ri;
615                                 v_up = up;
616                                 Weapon wpn = this.m_weapon;
617                                 this.weapon_think(wpn, actor, weaponentity,
618                                         button_atck | (button_atck2 << 1));
619                         }
620                         else
621                         {
622                                 bprint("\{1}^1ERROR: undefined weapon think function for ", actor.netname, "\n");
623                         }
624                 }
625         }
626 }
627
628 void W_AttachToShotorg(entity actor, .entity weaponentity, entity flash, vector offset)
629 {
630         flash.owner = actor;
631         flash.angles_z = random() * 360;
632
633         entity view = actor.(weaponentity);
634         entity exterior = actor.exteriorweaponentity;
635
636         if (gettagindex(view, "shot")) setattachment(flash, view, "shot");
637         else setattachment(flash, view, "tag_shot");
638         setorigin(flash, offset);
639
640         entity xflash = spawn();
641         copyentity(flash, xflash);
642
643         flash.viewmodelforclient = actor;
644
645         if (view.oldorigin.x > 0)
646         {
647                 setattachment(xflash, exterior, "");
648                 setorigin(xflash, view.oldorigin + offset);
649         }
650         else
651         {
652                 if (gettagindex(exterior, "shot")) setattachment(xflash, exterior, "shot");
653                 else setattachment(xflash, exterior, "tag_shot");
654                 setorigin(xflash, offset);
655         }
656 }
657
658 void W_DecreaseAmmo(Weapon wep, entity actor, float ammo_use, .entity weaponentity)
659 {
660         if (MUTATOR_CALLHOOK(W_DecreaseAmmo, actor, actor.(weaponentity))) return;
661         if ((actor.items & IT_UNLIMITED_WEAPON_AMMO) && !wep.reloading_ammo) return;
662
663         entity w_ent = actor.(weaponentity);
664
665         // if this weapon is reloadable, decrease its load. Else decrease the player's ammo
666         if (wep.reloading_ammo)
667         {
668                 w_ent.clip_load -= ammo_use;
669                 w_ent.(weapon_load[w_ent.m_weapon.m_id]) = w_ent.clip_load;
670         }
671         else if (wep.ammo_field != ammo_none)
672         {
673                 actor.(wep.ammo_field) -= ammo_use;
674                 if (actor.(wep.ammo_field) < 0)
675                 {
676                         backtrace(sprintf(
677                                 "W_DecreaseAmmo(%.2f): '%s' subtracted too much %s from '%s', resulting with '%.2f' left... "
678                                 "Please notify Samual immediately with a copy of this backtrace!\n",
679                                 ammo_use,
680                                 wep.netname,
681                                 GetAmmoPicture(wep.ammo_field),
682                                 actor.netname,
683                                 actor.(wep.ammo_field)
684                                              ));
685                 }
686         }
687 }
688
689 // weapon reloading code
690
691 .float reload_ammo_amount, reload_ammo_min, reload_time;
692 .float reload_complain;
693 .string reload_sound;
694
695 void W_ReloadedAndReady(Weapon thiswep, entity actor, .entity weaponentity, int fire)
696 {
697         // finish the reloading process, and do the ammo transfer
698
699         entity w_ent = actor.(weaponentity);
700         Weapon wpn = w_ent.m_weapon;
701
702         w_ent.clip_load = w_ent.old_clip_load;  // restore the ammo counter, in case we still had ammo in the weapon before reloading
703
704         // if the gun uses no ammo, max out weapon load, else decrease ammo as we increase weapon load
705         if (!w_ent.reload_ammo_min || (actor.items & IT_UNLIMITED_WEAPON_AMMO) || wpn.ammo_field == ammo_none)
706         {
707                 w_ent.clip_load = w_ent.reload_ammo_amount;
708         }
709         else
710         {
711                 // make sure we don't add more ammo than we have
712                 float load = min(w_ent.reload_ammo_amount - w_ent.clip_load, actor.(wpn.ammo_field));
713                 w_ent.clip_load += load;
714                 actor.(wpn.ammo_field) -= load;
715         }
716         w_ent.(weapon_load[w_ent.m_weapon.m_id]) = w_ent.clip_load;
717
718         // do not set ATTACK_FINISHED in reload code any more. This causes annoying delays if eg: You start reloading a weapon,
719         // then quickly switch to another weapon and back. Reloading is canceled, but the reload delay is still there,
720         // so your weapon is disabled for a few seconds without reason
721
722         // ATTACK_FINISHED(actor, slot) -= w_ent.reload_time - 1;
723
724         w_ready(wpn, actor, weaponentity, PHYS_INPUT_BUTTON_ATCK(actor) | (PHYS_INPUT_BUTTON_ATCK2(actor) << 1));
725 }
726
727 void W_Reload(entity actor, .entity weaponentity, float sent_ammo_min, Sound sent_sound)
728 {
729     TC(Sound, sent_sound);
730         // set global values to work with
731         entity this = actor.(weaponentity);
732         Weapon e = this.m_weapon;
733
734         if (MUTATOR_CALLHOOK(W_Reload, actor)) return;
735
736         this.reload_ammo_min = sent_ammo_min;
737         this.reload_ammo_amount = e.reloading_ammo;
738         this.reload_time = e.reloading_time;
739         if (actor.reload_sound) strunzone(actor.reload_sound);
740         actor.reload_sound = strzone(Sound_fixpath(sent_sound));
741
742         // don't reload weapons that don't have the RELOADABLE flag
743         if (!(e.spawnflags & WEP_FLAG_RELOADABLE))
744         {
745                 LOG_TRACE(
746                         "Warning: Attempted to reload a weapon that does not have the WEP_FLAG_RELOADABLE flag. Fix your code!\n");
747                 return;
748         }
749
750         // return if reloading is disabled for this weapon
751         if (!this.reload_ammo_amount) return;
752
753         // our weapon is fully loaded, no need to reload
754         if (this.clip_load >= this.reload_ammo_amount) return;
755
756         // no ammo, so nothing to load
757         if (e.ammo_field != ammo_none)
758         {
759                 if (!actor.(e.ammo_field) && this.reload_ammo_min)
760                 {
761                         if (!(actor.items & IT_UNLIMITED_WEAPON_AMMO))
762                         {
763                                 if (IS_REAL_CLIENT(actor) && actor.reload_complain < time)
764                                 {
765                                         play2(actor, SND(UNAVAILABLE));
766                                         sprint(actor, strcat("You don't have enough ammo to reload the ^2", this.m_weapon.m_name, "\n"));
767                                         actor.reload_complain = time + 1;
768                                 }
769                                 // switch away if the amount of ammo is not enough to keep using this weapon
770                                 if (!(e.wr_checkammo1(e, actor, weaponentity) + e.wr_checkammo2(e, actor, weaponentity)))
771                                 {
772                                         this.clip_load = -1;  // reload later
773                                         W_SwitchToOtherWeapon(actor, weaponentity);
774                                 }
775                                 return;
776                         }
777                 }
778         }
779
780         if (this)
781         {
782                 if (this.wframe == WFRAME_RELOAD) return;
783
784                 // allow switching away while reloading, but this will cause a new reload!
785                 this.state = WS_READY;
786         }
787
788         // now begin the reloading process
789
790         _sound(actor, CH_WEAPON_SINGLE, actor.reload_sound, VOL_BASE, ATTEN_NORM);
791
792         // do not set ATTACK_FINISHED in reload code any more. This causes annoying delays if eg: You start reloading a weapon,
793         // then quickly switch to another weapon and back. Reloading is canceled, but the reload delay is still there,
794         // so your weapon is disabled for a few seconds without reason
795
796         // ATTACK_FINISHED(actor, slot) = max(time, ATTACK_FINISHED(actor, slot)) + this.reload_time + 1;
797
798         weapon_thinkf(actor, weaponentity, WFRAME_RELOAD, this.reload_time, W_ReloadedAndReady);
799
800         if (this.clip_load < 0) this.clip_load = 0;
801         this.old_clip_load = this.clip_load;
802         this.clip_load = this.(weapon_load[this.m_weapon.m_id]) = -1;
803 }
804
805 void W_DropEvent(.void(Weapon, entity actor, .entity) event, entity player, float weapon_type, entity weapon_item, .entity weaponentity)
806 {
807         Weapon w = Weapons_from(weapon_type);
808         weapon_dropevent_item = weapon_item;
809         w.event(w, player, weaponentity);
810 }