]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/weapons/weaponsystem.qc
Weapons: pass weaponentity field instead of slot
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / weapons / weaponsystem.qc
index f47916e1dd5e95d91c28f7bd14392391a1e89de7..94af849aceaaaffb6c3e0879d55e3c1093e6a5c4 100644 (file)
@@ -92,7 +92,8 @@ float W_WeaponSpeedFactor()
 }
 
 
-void weapon_thinkf(entity actor, float fr, float t, void(Weapon thiswep, entity actor, int slot, int fire) func);
+void weapon_thinkf(entity actor, .entity weaponentity, float fr, float t,
+    void(Weapon thiswep, entity actor, .entity weaponentity, int fire) func);
 
 bool CL_Weaponentity_CustomizeEntityForClient()
 {
@@ -153,12 +154,12 @@ bool CL_Weaponentity_CustomizeEntityForClient()
 // to free:
 //   call again with ""
 //   remove the ent
-void CL_WeaponEntity_SetModel(entity this, string name)
+void CL_WeaponEntity_SetModel(entity this, .entity weaponentity, string name)
 {
        if (name != "")
        {
                // if there is a child entity, hide it until we're sure we use it
-               if (this.weaponentity) this.weaponentity.model = "";
+               if (this.(weaponentity)) this.(weaponentity).model = "";
                _setmodel(this, W_Model(strcat("v_", name, ".md3")));
                int v_shot_idx = gettagindex(this, "shot");  // used later
                if (!v_shot_idx) v_shot_idx = gettagindex(this, "tag_shot");
@@ -174,32 +175,32 @@ void CL_WeaponEntity_SetModel(entity this, string name)
                // if we don't, this is a "real" animated model
                if (gettagindex(this, "weapon"))
                {
-                       if (!this.weaponentity) this.weaponentity = spawn();
-                       _setmodel(this.weaponentity, W_Model(strcat("v_", name, ".md3")));
-                       setattachment(this.weaponentity, this, "weapon");
+                       if (!this.(weaponentity)) this.(weaponentity) = new(weaponentity);
+                       _setmodel(this.(weaponentity), W_Model(strcat("v_", name, ".md3")));
+                       setattachment(this.(weaponentity), this, "weapon");
                }
                else if (gettagindex(this, "tag_weapon"))
                {
-                       if (!this.weaponentity) this.weaponentity = spawn();
-                       _setmodel(this.weaponentity, W_Model(strcat("v_", name, ".md3")));
-                       setattachment(this.weaponentity, this, "tag_weapon");
+                       if (!this.(weaponentity)) this.(weaponentity) = new(weaponentity);
+                       _setmodel(this.(weaponentity), W_Model(strcat("v_", name, ".md3")));
+                       setattachment(this.(weaponentity), this, "tag_weapon");
                }
                else
                {
-                       if (this.weaponentity) remove(this.weaponentity);
-                       this.weaponentity = world;
+                       if (this.(weaponentity)) remove(this.(weaponentity));
+                       this.(weaponentity) = NULL;
                }
 
                setorigin(this, '0 0 0');
                this.angles = '0 0 0';
                this.frame = 0;
-               this.viewmodelforclient = world;
+               this.viewmodelforclient = NULL;
 
                float idx;
 
                if (v_shot_idx)  // v_ model attached to invisible h_ model
                {
-                       this.movedir = gettaginfo(this.weaponentity, v_shot_idx);
+                       this.movedir = gettaginfo(this.(weaponentity), v_shot_idx);
                }
                else
                {
@@ -217,11 +218,11 @@ void CL_WeaponEntity_SetModel(entity this, string name)
                        }
                }
 
-               if (this.weaponentity)  // v_ model attached to invisible h_ model
+               if (this.(weaponentity))  // v_ model attached to invisible h_ model
                {
-                       idx = gettagindex(this.weaponentity, "shell");
-                       if (!idx) idx = gettagindex(this.weaponentity, "tag_shell");
-                       if (idx) this.spawnorigin = gettaginfo(this.weaponentity, idx);
+                       idx = gettagindex(this.(weaponentity), "shell");
+                       if (!idx) idx = gettagindex(this.(weaponentity), "tag_shell");
+                       if (idx) this.spawnorigin = gettaginfo(this.(weaponentity), idx);
                }
                else
                {
@@ -249,7 +250,7 @@ void CL_WeaponEntity_SetModel(entity this, string name)
                }
                else
                {
-                       if (this.weaponentity)
+                       if (this.(weaponentity))
                        {
                                idx = gettagindex(this, "weapon");
                                if (!idx) idx = gettagindex(this, "tag_weapon");
@@ -276,8 +277,8 @@ void CL_WeaponEntity_SetModel(entity this, string name)
        else
        {
                this.model = "";
-               if (this.weaponentity) remove(this.weaponentity);
-               this.weaponentity = world;
+               if (this.(weaponentity)) remove(this.(weaponentity));
+               this.(weaponentity) = NULL;
                this.movedir = '0 0 0';
                this.spawnorigin = '0 0 0';
                this.oldorigin = '0 0 0';
@@ -311,9 +312,10 @@ vector CL_Weapon_GetShotOrg(float wpn)
 {
        entity wi = get_weaponinfo(wpn);
        entity e = spawn();
-       CL_WeaponEntity_SetModel(e, wi.mdl);
+       .entity weaponentity = weaponentities[0];
+       CL_WeaponEntity_SetModel(e, weaponentity, wi.mdl);
        vector ret = e.movedir;
-       CL_WeaponEntity_SetModel(e, "");
+       CL_WeaponEntity_SetModel(e, weaponentity, "");
        remove(e);
        return ret;
 }
@@ -323,16 +325,17 @@ void CL_Weaponentity_Think()
        SELFPARAM();
        this.nextthink = time;
        if (intermission_running) this.frame = this.anim_idle.x;
-       if (this.owner.weaponentity != this)
+       .entity weaponentity = weaponentities[0]; // TODO: unhardcode
+       if (this.owner.(weaponentity) != this)
        {
-               if (this.weaponentity) remove(this.weaponentity);
+               if (this.(weaponentity)) remove(this.(weaponentity));
                remove(this);
                return;
        }
        if (this.owner.deadflag != DEAD_NO)
        {
                this.model = "";
-               if (this.weaponentity) this.weaponentity.model = "";
+               if (this.(weaponentity)) this.(weaponentity).model = "";
                return;
        }
        if (this.weaponname != this.owner.weaponname || this.dmg != this.owner.modelindex
@@ -342,7 +345,7 @@ void CL_Weaponentity_Think()
                this.dmg = this.owner.modelindex;
                this.deadflag = this.owner.deadflag;
 
-               CL_WeaponEntity_SetModel(this, this.owner.weaponname);
+               CL_WeaponEntity_SetModel(this, weaponentity, this.owner.weaponname);
        }
 
        int tb = (this.effects & (EF_TELEPORT_BIT | EF_RESTARTANIM_BIT));
@@ -359,12 +362,12 @@ void CL_Weaponentity_Think()
 
        this.glowmod = this.owner.weaponentity_glowmod;
        this.colormap = this.owner.colormap;
-       if (this.weaponentity)
+       if (this.(weaponentity))
        {
-               this.weaponentity.effects = this.effects;
-               this.weaponentity.alpha = this.alpha;
-               this.weaponentity.colormap = this.colormap;
-               this.weaponentity.glowmod = this.glowmod;
+               this.(weaponentity).effects = this.effects;
+               this.(weaponentity).alpha = this.alpha;
+               this.(weaponentity).colormap = this.colormap;
+               this.(weaponentity).glowmod = this.glowmod;
        }
 
        this.angles = '0 0 0';
@@ -437,10 +440,9 @@ void CL_ExteriorWeaponentity_Think()
 }
 
 // spawning weaponentity for client
-void CL_SpawnWeaponentity(entity e)
+void CL_SpawnWeaponentity(entity e, .entity weaponentity)
 {
-       entity view = e.weaponentity = spawn();
-       view.classname = "weaponentity";
+       entity view = e.(weaponentity) = new(weaponentity);
        view.solid = SOLID_NOT;
        view.owner = e;
        setmodel(view, MDL_Null);  // precision set when changed
@@ -452,38 +454,41 @@ void CL_SpawnWeaponentity(entity e)
        view.customizeentityforclient = CL_Weaponentity_CustomizeEntityForClient;
        view.nextthink = time;
 
-       entity exterior = e.exteriorweaponentity = spawn();
-       exterior.classname = "exteriorweaponentity";
-       exterior.solid = SOLID_NOT;
-       exterior.exteriorweaponentity = exterior;
-       exterior.owner = e;
-       setorigin(exterior, '0 0 0');
-       exterior.angles = '0 0 0';
-       exterior.think = CL_ExteriorWeaponentity_Think;
-       exterior.nextthink = time;
-
-       CSQCMODEL_AUTOINIT(exterior);
+       if (weaponentity == weaponentities[0])
+       {
+               entity exterior = e.exteriorweaponentity = spawn();
+               exterior.classname = "exteriorweaponentity";
+               exterior.solid = SOLID_NOT;
+               exterior.exteriorweaponentity = exterior;
+               exterior.owner = e;
+               setorigin(exterior, '0 0 0');
+               exterior.angles = '0 0 0';
+               exterior.think = CL_ExteriorWeaponentity_Think;
+               exterior.nextthink = time;
+
+               CSQCMODEL_AUTOINIT(exterior);
+       }
 }
 
 // Weapon subs
-void w_clear(Weapon thiswep, entity actor, int slot, int fire)
+void w_clear(Weapon thiswep, entity actor, .entity weaponentity, int fire)
 {
        if (actor.weapon != -1)
        {
                actor.weapon = 0;
                actor.switchingweapon = 0;
        }
-       if (actor.weaponentity)
+       if (actor.(weaponentity))
        {
-               actor.weaponentity.state = WS_CLEAR;
-               actor.weaponentity.effects = 0;
+               actor.(weaponentity).state = WS_CLEAR;
+               actor.(weaponentity).effects = 0;
        }
 }
 
-void w_ready(Weapon thiswep, entity actor, int slot, int fire)
+void w_ready(Weapon thiswep, entity actor, .entity weaponentity, int fire)
 {
-       if (actor.weaponentity) actor.weaponentity.state = WS_READY;
-       weapon_thinkf(actor, WFRAME_IDLE, 1000000, w_ready);
+       if (actor.(weaponentity)) actor.(weaponentity).state = WS_READY;
+       weapon_thinkf(actor, weaponentity, WFRAME_IDLE, 1000000, w_ready);
 }
 
 .float prevdryfire;
@@ -522,7 +527,7 @@ bool weapon_prepareattack_checkammo(Weapon thiswep, entity actor, bool secondary
                                actor,
                                MSG_MULTI,
                                ITEM_WEAPON_PRIMORSEC,
-                               thiswep,
+                               thiswep.m_id,
                                secondary,
                                (1 - secondary)
                                         );
@@ -538,7 +543,7 @@ bool weapon_prepareattack_checkammo(Weapon thiswep, entity actor, bool secondary
 }
 
 .float race_penalty;
-bool weapon_prepareattack_check(Weapon thiswep, entity actor, bool secondary, float attacktime)
+bool weapon_prepareattack_check(Weapon thiswep, entity actor, .entity weaponentity, bool secondary, float attacktime)
 {
        if (!weapon_prepareattack_checkammo(thiswep, actor, secondary)) return false;
 
@@ -554,50 +559,53 @@ bool weapon_prepareattack_check(Weapon thiswep, entity actor, bool secondary, fl
 
        if (attacktime >= 0)
        {
+               int slot = weaponslot(weaponentity);
                // don't fire if previous attack is not finished
-               if (ATTACK_FINISHED(actor) > time + actor.weapon_frametime * 0.5) return false;
+               if (ATTACK_FINISHED(actor, slot) > time + actor.weapon_frametime * 0.5) return false;
                // don't fire while changing weapon
-               if (actor.weaponentity.state != WS_READY) return false;
+               if (actor.(weaponentity).state != WS_READY) return false;
        }
        return true;
 }
 
-void weapon_prepareattack_do(entity actor, bool secondary, float attacktime)
+void weapon_prepareattack_do(entity actor, .entity weaponentity, bool secondary, float attacktime)
 {
-       actor.weaponentity.state = WS_INUSE;
+       actor.(weaponentity).state = WS_INUSE;
 
        actor.spawnshieldtime = min(actor.spawnshieldtime, time);  // kill spawn shield when you fire
 
        // if the weapon hasn't been firing continuously, reset the timer
        if (attacktime >= 0)
        {
-               if (ATTACK_FINISHED(actor) < time - actor.weapon_frametime * 1.5)
+               int slot = weaponslot(weaponentity);
+               if (ATTACK_FINISHED(actor, slot) < time - actor.weapon_frametime * 1.5)
                {
-                       ATTACK_FINISHED(actor) = time;
+                       ATTACK_FINISHED(actor, slot) = time;
                        // dprint("resetting attack finished to ", ftos(time), "\n");
                }
-               ATTACK_FINISHED(actor) = ATTACK_FINISHED(actor) + attacktime * W_WeaponRateFactor();
+               ATTACK_FINISHED(actor, slot) = ATTACK_FINISHED(actor, slot) + attacktime * W_WeaponRateFactor();
        }
        actor.bulletcounter += 1;
-       // dprint("attack finished ", ftos(ATTACK_FINISHED(actor)), "\n");
+       // dprint("attack finished ", ftos(ATTACK_FINISHED(actor, slot)), "\n");
 }
 
-bool weapon_prepareattack(Weapon thiswep, entity actor, bool secondary, float attacktime)
+bool weapon_prepareattack(Weapon thiswep, entity actor, .entity weaponentity, bool secondary, float attacktime)
 {
-       if (weapon_prepareattack_check(thiswep, actor, secondary, attacktime))
+       if (weapon_prepareattack_check(thiswep, actor, weaponentity, secondary, attacktime))
        {
-               weapon_prepareattack_do(actor, secondary, attacktime);
+               weapon_prepareattack_do(actor, weaponentity, secondary, attacktime);
                return true;
        }
        return false;
 }
 
-void weapon_thinkf(entity actor, float fr, float t, void(Weapon thiswep, entity actor, int slot, int fire) func)
+void weapon_thinkf(entity actor, .entity weaponentity, float fr, float t,
+       void(Weapon thiswep, entity actor, .entity weaponentity, int fire) func)
 {
        bool restartanim;
        if (fr == WFRAME_DONTCHANGE)
        {
-               fr = actor.weaponentity.wframe;
+               fr = actor.(weaponentity).wframe;
                restartanim = false;
        }
        else if (fr == WFRAME_IDLE)
@@ -613,24 +621,24 @@ void weapon_thinkf(entity actor, float fr, float t, void(Weapon thiswep, entity
        vector or = v_right;
        vector ou = v_up;
 
-       if (actor.weaponentity)
+       if (actor.(weaponentity))
        {
-               actor.weaponentity.wframe = fr;
+               actor.(weaponentity).wframe = fr;
                vector a = '0 0 0';
-               if (fr == WFRAME_IDLE) a = actor.weaponentity.anim_idle;
-               else if (fr == WFRAME_FIRE1) a = actor.weaponentity.anim_fire1;
-               else if (fr == WFRAME_FIRE2) a = actor.weaponentity.anim_fire2;
+               if (fr == WFRAME_IDLE) a = actor.(weaponentity).anim_idle;
+               else if (fr == WFRAME_FIRE1) a = actor.(weaponentity).anim_fire1;
+               else if (fr == WFRAME_FIRE2) a = actor.(weaponentity).anim_fire2;
                else  // if (fr == WFRAME_RELOAD)
-                       a = actor.weaponentity.anim_reload;
+                       a = actor.(weaponentity).anim_reload;
                a.z *= g_weaponratefactor;
-               setanim(actor.weaponentity, a, restartanim == false, restartanim, restartanim);
+               setanim(actor.(weaponentity), a, restartanim == false, restartanim, restartanim);
        }
 
        v_forward = of;
        v_right = or;
        v_up = ou;
 
-       if (actor.weapon_think == w_ready && func != w_ready && actor.weaponentity.state == WS_RAISE) backtrace(
+       if (actor.weapon_think == w_ready && func != w_ready && actor.(weaponentity).state == WS_RAISE) backtrace(
                        "Tried to override initial weapon think function - should this really happen?");
 
        t *= W_WeaponRateFactor();
@@ -678,16 +686,17 @@ bool forbidWeaponUse(entity player)
 
 void W_WeaponFrame(entity actor)
 {
+       .entity weaponentity = weaponentities[0]; // TODO: unhardcode
        if (frametime) actor.weapon_frametime = frametime;
 
-       if (!actor.weaponentity || actor.health < 1) return;  // Dead player can't use weapons and injure impulse commands
+       if (!actor.(weaponentity) || actor.health < 1) return;  // Dead player can't use weapons and injure impulse commands
 
        if (forbidWeaponUse(actor))
        {
-               if (actor.weaponentity.state != WS_CLEAR)
+               if (actor.(weaponentity).state != WS_CLEAR)
                {
                        Weapon wpn = get_weaponinfo(actor.weapon);
-                       w_ready(wpn, actor, 0, (actor.BUTTON_ATCK ? 1 : 0) | (actor.BUTTON_ATCK2 ? 2 : 0));
+                       w_ready(wpn, actor, weaponentity, (actor.BUTTON_ATCK ? 1 : 0) | (actor.BUTTON_ATCK2 ? 2 : 0));
                        return;
                }
        }
@@ -696,7 +705,7 @@ void W_WeaponFrame(entity actor)
        {
                actor.weapon = 0;
                actor.switchingweapon = 0;
-               actor.weaponentity.state = WS_CLEAR;
+               actor.(weaponentity).state = WS_CLEAR;
                actor.weaponname = "";
                // actor.items &= ~IT_AMMO;
                return;
@@ -710,7 +719,7 @@ void W_WeaponFrame(entity actor)
        // Change weapon
        if (actor.weapon != actor.switchweapon)
        {
-               if (actor.weaponentity.state == WS_CLEAR)
+               if (actor.(weaponentity).state == WS_CLEAR)
                {
                        // end switching!
                        actor.switchingweapon = actor.switchweapon;
@@ -723,7 +732,7 @@ void W_WeaponFrame(entity actor)
                        actor.ammo_field = newwep.ammo_field;
                        Weapon w = get_weaponinfo(actor.switchweapon);
                        w.wr_setup(w);
-                       actor.weaponentity.state = WS_RAISE;
+                       actor.(weaponentity).state = WS_RAISE;
 
                        // set our clip load to the load of the weapon we switched to, if it's reloadable
                        if (newwep.spawnflags & WEP_FLAG_RELOADABLE && newwep.reloading_ammo)  // prevent accessing undefined cvars
@@ -736,14 +745,14 @@ void W_WeaponFrame(entity actor)
                                actor.clip_load = actor.clip_size = 0;
                        }
 
-                       weapon_thinkf(actor, WFRAME_IDLE, newwep.switchdelay_raise, w_ready);
+                       weapon_thinkf(actor, weaponentity, WFRAME_IDLE, newwep.switchdelay_raise, w_ready);
                }
-               else if (actor.weaponentity.state == WS_DROP)
+               else if (actor.(weaponentity).state == WS_DROP)
                {
                        // in dropping phase we can switch at any time
                        actor.switchingweapon = actor.switchweapon;
                }
-               else if (actor.weaponentity.state == WS_READY)
+               else if (actor.(weaponentity).state == WS_READY)
                {
                        // start switching!
                        actor.switchingweapon = actor.switchweapon;
@@ -754,20 +763,20 @@ void W_WeaponFrame(entity actor)
 #if INDEPENDENT_ATTACK_FINISHED
                                    true
 #else
-                                   ATTACK_FINISHED(actor) <= time + actor.weapon_frametime * 0.5
+                                   ATTACK_FINISHED(actor, slot) <= time + actor.weapon_frametime * 0.5
 #endif
                           )
                        {
                                sound(actor, CH_WEAPON_SINGLE, SND_WEAPON_SWITCH, VOL_BASE, ATTN_NORM);
-                               actor.weaponentity.state = WS_DROP;
-                               weapon_thinkf(actor, WFRAME_DONTCHANGE, oldwep.switchdelay_drop, w_clear);
+                               actor.(weaponentity).state = WS_DROP;
+                               weapon_thinkf(actor, weaponentity, WFRAME_DONTCHANGE, oldwep.switchdelay_drop, w_clear);
                        }
                }
        }
 
        // LordHavoc: network timing test code
        // if (actor.button0)
-       //      print(ftos(frametime), " ", ftos(time), " >= ", ftos(ATTACK_FINISHED(actor)), " >= ", ftos(actor.weapon_nextthink), "\n");
+       //      print(ftos(frametime), " ", ftos(time), " >= ", ftos(ATTACK_FINISHED(actor, slot)), " >= ", ftos(actor.weapon_nextthink), "\n");
 
        int w = actor.weapon;
 
@@ -803,16 +812,20 @@ void W_WeaponFrame(entity actor)
                                actor.hook_switchweapon = key_pressed;
                                Weapon h = WEP_HOOK;
                                block_weapon = (actor.weapon == h.m_id && (actor.BUTTON_ATCK || key_pressed));
-                               h.wr_think(h, actor, 0, block_weapon ? 1 : 0);
+                               h.wr_think(h, actor, weaponentity, block_weapon ? 1 : 0);
                        }
                }
 
+               v_forward = fo;
+               v_right = ri;
+               v_up = up;
+
                if (!block_weapon)
                {
                        if (w)
                        {
                                Weapon e = get_weaponinfo(actor.weapon);
-                               e.wr_think(e, actor, 0, (actor.BUTTON_ATCK ? 1 : 0) | (actor.BUTTON_ATCK2 ? 2 : 0));
+                               e.wr_think(e, actor, weaponentity, (actor.BUTTON_ATCK ? 1 : 0) | (actor.BUTTON_ATCK2 ? 2 : 0));
                        }
                        else
                        {
@@ -829,7 +842,7 @@ void W_WeaponFrame(entity actor)
                                v_right = ri;
                                v_up = up;
                                Weapon wpn = get_weaponinfo(actor.weapon);
-                               actor.weapon_think(wpn, actor, 0, (actor.BUTTON_ATCK ? 1 : 0) | (actor.BUTTON_ATCK2 ? 2 : 0));
+                               actor.weapon_think(wpn, actor, weaponentity, (actor.BUTTON_ATCK ? 1 : 0) | (actor.BUTTON_ATCK2 ? 2 : 0));
                        }
                        else
                        {
@@ -841,11 +854,12 @@ void W_WeaponFrame(entity actor)
 
 void W_AttachToShotorg(entity actor, entity flash, vector offset)
 {
+       .entity weaponentity = weaponentities[0];
        flash.owner = actor;
        flash.angles_z = random() * 360;
 
-       if (gettagindex(actor.weaponentity, "shot")) setattachment(flash, actor.weaponentity, "shot");
-       else setattachment(flash, actor.weaponentity, "tag_shot");
+       if (gettagindex(actor.(weaponentity), "shot")) setattachment(flash, actor.(weaponentity), "shot");
+       else setattachment(flash, actor.(weaponentity), "tag_shot");
        setorigin(flash, offset);
 
        entity xflash = spawn();
@@ -853,10 +867,10 @@ void W_AttachToShotorg(entity actor, entity flash, vector offset)
 
        flash.viewmodelforclient = actor;
 
-       if (actor.weaponentity.oldorigin.x > 0)
+       if (actor.(weaponentity).oldorigin.x > 0)
        {
                setattachment(xflash, actor.exteriorweaponentity, "");
-               setorigin(xflash, actor.weaponentity.oldorigin + offset);
+               setorigin(xflash, actor.(weaponentity).oldorigin + offset);
        }
        else
        {
@@ -909,7 +923,7 @@ void W_DecreaseAmmo(Weapon wep, entity actor, float ammo_use)
 .float reload_complain;
 .string reload_sound;
 
-void W_ReloadedAndReady(Weapon thiswep, entity actor, int slot, int fire)
+void W_ReloadedAndReady(Weapon thiswep, entity actor, .entity weaponentity, int fire)
 {
        // finish the reloading process, and do the ammo transfer
 
@@ -933,14 +947,15 @@ void W_ReloadedAndReady(Weapon thiswep, entity actor, int slot, int fire)
        // then quickly switch to another weapon and back. Reloading is canceled, but the reload delay is still there,
        // so your weapon is disabled for a few seconds without reason
 
-       // ATTACK_FINISHED(actor) -= actor.reload_time - 1;
+       // ATTACK_FINISHED(actor, slot) -= actor.reload_time - 1;
 
        Weapon wpn = get_weaponinfo(actor.weapon);
-       w_ready(wpn, actor, slot, (actor.BUTTON_ATCK ? 1 : 0) | (actor.BUTTON_ATCK2 ? 2 : 0));
+       w_ready(wpn, actor, weaponentity, (actor.BUTTON_ATCK ? 1 : 0) | (actor.BUTTON_ATCK2 ? 2 : 0));
 }
 
 void W_Reload(entity actor, float sent_ammo_min, string sent_sound)
 {
+       .entity weaponentity = weaponentities[0];
        // set global values to work with
        entity e = get_weaponinfo(actor.weapon);
 
@@ -992,12 +1007,12 @@ void W_Reload(entity actor, float sent_ammo_min, string sent_sound)
                }
        }
 
-       if (actor.weaponentity)
+       if (actor.(weaponentity))
        {
-               if (actor.weaponentity.wframe == WFRAME_RELOAD) return;
+               if (actor.(weaponentity).wframe == WFRAME_RELOAD) return;
 
                // allow switching away while reloading, but this will cause a new reload!
-               actor.weaponentity.state = WS_READY;
+               actor.(weaponentity).state = WS_READY;
        }
 
        // now begin the reloading process
@@ -1008,9 +1023,9 @@ void W_Reload(entity actor, float sent_ammo_min, string sent_sound)
        // then quickly switch to another weapon and back. Reloading is canceled, but the reload delay is still there,
        // so your weapon is disabled for a few seconds without reason
 
-       // ATTACK_FINISHED(actor) = max(time, ATTACK_FINISHED(actor)) + actor.reload_time + 1;
+       // ATTACK_FINISHED(actor, slot) = max(time, ATTACK_FINISHED(actor, slot)) + actor.reload_time + 1;
 
-       weapon_thinkf(actor, WFRAME_RELOAD, actor.reload_time, W_ReloadedAndReady);
+       weapon_thinkf(actor, weaponentity, WFRAME_RELOAD, actor.reload_time, W_ReloadedAndReady);
 
        if (actor.clip_load < 0) actor.clip_load = 0;
        actor.old_clip_load = actor.clip_load;