]> de.git.xonotic.org Git - voretournament/voretournament.git/blobdiff - data/qcsrc/server/cl_weaponsystem.qc
Since we don't have an infinite ammo weapon in vore tournament, allow switching to...
[voretournament/voretournament.git] / data / qcsrc / server / cl_weaponsystem.qc
index 6594119f6a092691aa18841544b05b12807a006f..2b06fed1d0c13885be68dfac251dd6b81202afe8 100644 (file)
@@ -253,7 +253,7 @@ float CL_ExteriorWeaponentity_CustomizeEntityForClient()
 {\r
        // hide the exterior weapon entity of a predator from their prey\r
        // otherwise, the stomach model the predator is transformed in (see Client_customizeentityforclient) will have a weapon model attached to it\r
-       if(self.owner.weaponname == "")\r
+       if(self.owner.weaponname == "" || self.owner.deadflag != DEAD_NO)\r
                return TRUE;\r
        if(other.cvar_chase_active > 0 || other.classname == "observer") // the classname check prevents a bug\r
        {\r
@@ -262,7 +262,7 @@ float CL_ExteriorWeaponentity_CustomizeEntityForClient()
        }\r
        if(other.spectatee_status)\r
                other = other.enemy; // also do this for the player we are spectating\r
-       if(other.eater == self.owner)\r
+       if(other.predator == self.owner)\r
        {\r
                setmodel(self, "");\r
                return TRUE;\r
@@ -578,9 +578,8 @@ void CL_Weaponentity_Think()
                self.weaponentity.effects = self.effects;\r
                self.weaponentity.alpha = self.alpha;\r
                self.weaponentity.colormap = self.colormap;\r
+               self.weaponentity.colormod = self.owner.colormod; // used by the regurgitating colors\r
        }\r
-       if(self.owner.colormod != '0 0 0') // used by the regurgitating colors\r
-               self.weaponentity.colormod = self.owner.colormod;\r
 \r
        self.angles = '0 0 0';\r
        local float f;\r
@@ -790,8 +789,7 @@ void CL_ExteriorWeaponentity_Think()
                self.alpha = self.owner.alpha;\r
        else\r
                self.alpha = 1;\r
-       if(self.owner.colormod != '0 0 0') // used by the regurgitating colors\r
-               self.exteriorweaponentity.colormod = self.owner.colormod;\r
+       self.colormod = self.owner.colormod; // used by the regurgitating colors\r
 \r
        ang_x = bound(sv_pitch_min, self.owner.v_angle_x, sv_pitch_max);\r
        ang_y = 0;\r
@@ -857,8 +855,9 @@ void CL_SpawnWeaponentity()
 \r
 float client_hasweapon(entity cl, float wpn, float andammo, float complain)\r
 {\r
-       local float weaponbit, f;\r
-       local entity oldself;\r
+       local float weaponbit;\r
+       //local float weaponbit, f;\r
+       //local entity oldself;\r
 \r
        if(time < self.hasweapon_complain_spam)\r
                complain = 0;\r
@@ -874,7 +873,8 @@ float client_hasweapon(entity cl, float wpn, float andammo, float complain)
        weaponbit = W_WeaponBit(wpn);\r
        if (cl.weapons & weaponbit)\r
        {\r
-               if (andammo)\r
+               // since we don't have an infinite ammo weapon in vore tournament, allow switching to the grabber even when it has no ammo\r
+               /*if (andammo)\r
                {\r
                        if(cl.items & IT_UNLIMITED_WEAPON_AMMO)\r
                        {\r
@@ -893,12 +893,12 @@ float client_hasweapon(entity cl, float wpn, float andammo, float complain)
                                if (complain)\r
                                if(clienttype(cl) == CLIENTTYPE_REAL)\r
                                {\r
-                                       play2(cl, "weapons/unavailable.wav");\r
+                                       play2(cl, "misc/unavailable.wav");\r
                                        sprint(cl, strcat("You don't have any ammo for the ^2", W_Name(wpn), "\n"));\r
                                }\r
                                return FALSE;\r
                        }\r
-               }\r
+               }*/\r
                return TRUE;\r
        }\r
        if (complain)\r
@@ -937,7 +937,7 @@ float client_hasweapon(entity cl, float wpn, float andammo, float complain)
                else\r
                        sprint(cl, strcat("The ^2", W_Name(wpn), "^7 is ^1NOT AVAILABLE^7 in this map\n") );\r
 \r
-               play2(cl, "weapons/unavailable.wav");\r
+               play2(cl, "misc/unavailable.wav");\r
        }\r
        return FALSE;\r
 };\r
@@ -973,30 +973,48 @@ void weapon_setup(float windex)
        // the two weapon entities will notice this has changed and update their models\r
        self.weapon = windex;\r
        self.weaponname = e.mdl;\r
-       self.bulletcounter = 0;\r
 };\r
 \r
 // perform weapon to attack (weaponstate and attack_finished check is here)\r
-.float race_penalty;\r
-float weapon_prepareattack(float secondary, float attacktime)\r
+void W_SwitchToOtherWeapon(entity pl)\r
 {\r
-       //if sv_ready_restart_after_countdown is set, don't allow the player to shoot\r
-       //if all players readied up and the countdown is running\r
-       if(time < game_starttime || time < self.race_penalty) {\r
-               return FALSE;\r
-       }\r
+       // hack to ensure it switches to an OTHER weapon (in case the other fire mode still has ammo, we want that anyway)\r
+       float w, ww;\r
+       w = W_WeaponBit(pl.weapon);\r
+       pl.weapons &~= w;\r
+       ww = w_getbestweapon(pl);\r
+       pl.weapons |= w;\r
+       if(ww)\r
+               W_SwitchWeapon_Force(pl, ww);\r
+}\r
 \r
+.float prevdryfire;\r
+float weapon_prepareattack_checkammo(float secondary)\r
+{\r
        if not(self.items & IT_UNLIMITED_WEAPON_AMMO)\r
        if (!weapon_action(self.weapon, WR_CHECKAMMO1 + secondary))\r
        {\r
-               // hack to ensure it switches to an OTHER weapon (in case the other fire mode still has ammo, we want that anyway)\r
-               float w, ww;\r
-               w = W_WeaponBit(self.weapon);\r
-               self.weapons &~= w;\r
-               ww = w_getbestweapon(self);\r
-               self.weapons |= w;\r
-               if(ww)\r
-                       W_SwitchWeapon_Force(self, ww);\r
+               if(self.weapon == self.switchweapon && time - self.prevdryfire > 1) // only play once BEFORE starting to switch weapons\r
+               {\r
+                       sound (self, CHAN_AUTO, "weapons/unavailable.wav", VOL_BASE, ATTN_NORM);\r
+                       self.prevdryfire = time;\r
+               }\r
+\r
+               // since we don't have an infinite ammo weapon in vore tournament, allow switching to the grabber even when it has no ammo\r
+               //W_SwitchToOtherWeapon(self);\r
+               return FALSE;\r
+       }\r
+       return TRUE;\r
+}\r
+.float race_penalty;\r
+float weapon_prepareattack_check(float secondary, float attacktime)\r
+{\r
+       if(!weapon_prepareattack_checkammo(secondary))\r
+               return FALSE;\r
+\r
+       //if sv_ready_restart_after_countdown is set, don't allow the player to shoot\r
+       //if all players readied up and the countdown is running\r
+       if(time < game_starttime || time < self.race_penalty) {\r
                return FALSE;\r
        }\r
 \r
@@ -1016,6 +1034,11 @@ float weapon_prepareattack(float secondary, float attacktime)
                if (self.weaponentity.state != WS_READY)\r
                        return FALSE;\r
        }\r
+\r
+       return TRUE;\r
+}\r
+float weapon_prepareattack_do(float secondary, float attacktime)\r
+{\r
        self.weaponentity.state = WS_INUSE;\r
 \r
        self.spawnshieldtime = min(self.spawnshieldtime, time); // kill spawn shield when you fire\r
@@ -1030,10 +1053,19 @@ float weapon_prepareattack(float secondary, float attacktime)
                }\r
                ATTACK_FINISHED(self) = ATTACK_FINISHED(self) + attacktime * W_WeaponRateFactor();\r
        }\r
-       self.bulletcounter += 1;\r
        //dprint("attack finished ", ftos(ATTACK_FINISHED(self)), "\n");\r
        return TRUE;\r
-};\r
+}\r
+float weapon_prepareattack(float secondary, float attacktime)\r
+{\r
+       if(weapon_prepareattack_check(secondary, attacktime))\r
+       {\r
+               weapon_prepareattack_do(secondary, attacktime);\r
+               return TRUE;\r
+       }\r
+       else\r
+               return FALSE;\r
+}\r
 \r
 void weapon_thinkf(float fr, float t, void() func)\r
 {\r
@@ -1513,3 +1545,132 @@ void W_SetupProjectileVelocity(entity missile, float pSpeed, float spread)
 \r
 #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"))\r
 #define W_SETUPPROJECTILEVELOCITY(m,s) W_SetupProjectileVelocityEx(m, w_shotdir, v_up, cvar(#s "_speed"), 0, 0, cvar(#s "_spread"))\r
+\r
+void W_DecreaseAmmo(.float ammo_type, float ammo_use, float ammo_reload)\r
+{\r
+       if(self.items & IT_UNLIMITED_WEAPON_AMMO)\r
+               return;\r
+\r
+       // if this weapon is reloadable, decrease its load. Else decrease the player's ammo\r
+       if(ammo_reload)\r
+       {\r
+               self.clip_load -= ammo_use;\r
+               self.weapon_load[self.weapon] = self.clip_load;\r
+       }\r
+       else\r
+               self.(self.current_ammo) -= ammo_use;\r
+}\r
+\r
+// weapon reloading code\r
+\r
+.float reload_ammo_amount, reload_ammo_min, reload_time;\r
+.float reload_complain;\r
+.string reload_sound;\r
+\r
+float W_ReloadCheck()\r
+{\r
+       // check if we meet the necessary conditions to reload\r
+\r
+       entity e;\r
+       e = get_weaponinfo(self.weapon);\r
+\r
+       // don't reload weapons that don't have the RELOADABLE flag\r
+       if not(e.spawnflags & WEP_FLAG_RELOADABLE)\r
+       {\r
+               dprint("Warning: Attempted to reload a weapon that does not have the WEP_FLAG_RELOADABLE flag. Fix your code!\n");\r
+               return FALSE;\r
+       }\r
+\r
+       // return if reloading is disabled for this weapon\r
+       if(!self.reload_ammo_amount)\r
+               return FALSE;\r
+\r
+       // our weapon is fully loaded, no need to reload\r
+       if (self.clip_load >= self.reload_ammo_amount)\r
+               return FALSE;\r
+\r
+       // no ammo, so nothing to load\r
+       if(!self.(self.current_ammo) && self.reload_ammo_min)\r
+       {\r
+               if(clienttype(self) == CLIENTTYPE_REAL && self.reload_complain < time)\r
+               {\r
+                       play2(self, "weapons/unavailable.wav");\r
+                       sprint(self, strcat("You don't have enough ammo to reload the ^2", W_Name(self.weapon), "\n"));\r
+                       self.reload_complain = time + 1;\r
+               }\r
+               // switch away if the amount of ammo is not enough to keep using this weapon\r
+               if not(weapon_action(self.weapon, WR_CHECKAMMO1) + weapon_action(self.weapon, WR_CHECKAMMO2))\r
+               {\r
+                       self.clip_load = -1; // reload later\r
+                       W_SwitchToOtherWeapon(self);\r
+               }\r
+               return FALSE;\r
+       }\r
+\r
+       if (self.weaponentity)\r
+       {\r
+               if (self.weaponentity.wframe == WFRAME_RELOAD)\r
+                       return FALSE;\r
+\r
+               // allow switching away while reloading, but this will cause a new reload!\r
+               self.weaponentity.state = WS_READY;\r
+       }\r
+\r
+       return TRUE;\r
+}\r
+\r
+void W_ReloadedAndReady()\r
+{\r
+       // finish the reloading process, and do the ammo transfer\r
+\r
+       self.clip_load = self.old_clip_load; // restore the ammo counter, in case we still had ammo in the weapon before reloading\r
+\r
+       // if the gun uses no ammo, max out weapon load, else decrease ammo as we increase weapon load\r
+       if(!self.reload_ammo_min)\r
+               self.clip_load = self.reload_ammo_amount;\r
+       else\r
+       {\r
+               while(self.clip_load < self.reload_ammo_amount && self.(self.current_ammo)) // make sure we don't add more ammo than we have\r
+               {\r
+                       self.clip_load += 1;\r
+                       self.(self.current_ammo) -= 1;\r
+               }\r
+       }\r
+       self.weapon_load[self.weapon] = self.clip_load;\r
+\r
+       // do not set ATTACK_FINISHED in reload code any more. This causes annoying delays if eg: You start reloading a weapon,\r
+       // then quickly switch to another weapon and back. Reloading is canceled, but the reload delay is still there,\r
+       // so your weapon is disabled for a few seconds without reason\r
+\r
+       //ATTACK_FINISHED(self) -= self.reload_time - 1;\r
+\r
+       w_ready();\r
+}\r
+\r
+void W_Reload(float sent_ammo_min, float sent_ammo_amount, float sent_time, string sent_sound)\r
+{\r
+       // set global values to work with\r
+       self.reload_ammo_min = sent_ammo_min;\r
+       self.reload_ammo_amount = sent_ammo_amount;\r
+       self.reload_time = sent_time;\r
+       self.reload_sound = sent_sound;\r
+\r
+       if(!W_ReloadCheck())\r
+               return;\r
+\r
+       // now begin the reloading process\r
+\r
+       sound (self, CHAN_WEAPON2, self.reload_sound, VOL_BASE, ATTN_NORM);\r
+\r
+       // do not set ATTACK_FINISHED in reload code any more. This causes annoying delays if eg: You start reloading a weapon,\r
+       // then quickly switch to another weapon and back. Reloading is canceled, but the reload delay is still there,\r
+       // so your weapon is disabled for a few seconds without reason\r
+\r
+       //ATTACK_FINISHED(self) = max(time, ATTACK_FINISHED(self)) + self.reload_time + 1;\r
+\r
+       weapon_thinkf(WFRAME_RELOAD, self.reload_time, W_ReloadedAndReady);\r
+\r
+       if(self.clip_load >= 0)\r
+               self.old_clip_load = self.clip_load;\r
+       self.clip_load = self.weapon_load[self.weapon] = -1;\r
+}
\ No newline at end of file