]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/weapons/w_shotgun.qc
Duplicate some bad code for the sake of fixing bot melee spam when out of ammo (WEAPO...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / weapons / w_shotgun.qc
index 2138635cc8cbad78be46862d0688fa8802c0affb..9227cdab4ee15b1e2c9257e7e167aa319645709e 100644 (file)
@@ -2,9 +2,9 @@
 REGISTER_WEAPON(
 /* WEP_##id  */ SHOTGUN,
 /* function  */ W_Shotgun,
-/* ammotype  */ ammo_none,
+/* ammotype  */ ammo_shells,
 /* impulse   */ 2,
-/* flags     */ WEP_FLAG_RELOADABLE | WEP_TYPE_HITSCAN | WEP_FLAG_MUTATORBLOCKED,
+/* flags     */ WEP_FLAG_NORMAL | WEP_FLAG_RELOADABLE | WEP_TYPE_HITSCAN,
 /* rating    */ BOT_PICKUP_RATING_LOW,
 /* color     */ '0.5 0.25 0',
 /* modelname */ "shotgun",
@@ -35,13 +35,16 @@ REGISTER_WEAPON(
        w_cvar(id, sn, SEC,  melee_multihit) \
        w_cvar(id, sn, SEC,  melee_delay) \
        w_cvar(id, sn, SEC,  melee_range) \
+       w_cvar(id, sn, SEC,  alt_animtime) \
+       w_cvar(id, sn, SEC,  alt_refire) \
        w_prop(id, sn, float,  reloading_ammo, reload_ammo) \
        w_prop(id, sn, float,  reloading_time, reload_time) \
        w_prop(id, sn, float,  switchdelay_raise, switchdelay_raise) \
        w_prop(id, sn, float,  switchdelay_drop, switchdelay_drop) \
        w_prop(id, sn, string, weaponreplace, weaponreplace) \
        w_prop(id, sn, float,  weaponstart, weaponstart) \
-       w_prop(id, sn, float,  weaponstartoverride, weaponstartoverride)
+       w_prop(id, sn, float,  weaponstartoverride, weaponstartoverride) \
+       w_prop(id, sn, float,  weaponthrowable, weaponthrowable)
 
 #ifdef SVQC
 SHOTGUN_SETTINGS(WEP_ADD_CVAR, WEP_ADD_PROP)
@@ -50,23 +53,23 @@ SHOTGUN_SETTINGS(WEP_ADD_CVAR, WEP_ADD_PROP)
 #ifdef SVQC
 void spawnfunc_weapon_shotgun(void) { weapon_defaultspawnfunc(WEP_SHOTGUN); }
 
-void W_Shotgun_Attack (void)
+void W_Shotgun_Attack(float isprimary)
 {
        float   sc;
        entity flash;
 
        W_DecreaseAmmo(WEP_CVAR_PRI(shotgun, ammo));
 
-       W_SetupShot (self, TRUE, 5, "weapons/shotgun_fire.wav", CH_WEAPON_A, WEP_CVAR_PRI(shotgun, damage) * WEP_CVAR_PRI(shotgun, bullets));
-       for (sc = 0;sc < WEP_CVAR_PRI(shotgun, bullets);sc = sc + 1)
+       W_SetupShot(self, TRUE, 5, "weapons/shotgun_fire.wav", ((isprimary) ? CH_WEAPON_A : CH_WEAPON_SINGLE), WEP_CVAR_PRI(shotgun, damage) * WEP_CVAR_PRI(shotgun, bullets));
+       for(sc = 0;sc < WEP_CVAR_PRI(shotgun, bullets);sc = sc + 1)
                fireBullet(w_shotorg, w_shotdir, WEP_CVAR_PRI(shotgun, spread), WEP_CVAR_PRI(shotgun, solidpenetration), WEP_CVAR_PRI(shotgun, damage), WEP_CVAR_PRI(shotgun, force), WEP_SHOTGUN, 0);
 
        pointparticles(particleeffectnum("shotgun_muzzleflash"), w_shotorg, w_shotdir * 1000, WEP_CVAR_PRI(shotgun, ammo));
 
        // casing code
-       if (autocvar_g_casings >= 1)
-               for (sc = 0;sc < WEP_CVAR_PRI(shotgun, ammo);sc = sc + 1)
-                       SpawnCasing (((random () * 50 + 50) * v_right) - (v_forward * (random () * 25 + 25)) - ((random () * 5 - 30) * v_up), 2, vectoangles(v_forward),'0 250 0', 100, 1, self);
+       if(autocvar_g_casings >= 1)
+               for(sc = 0;sc < WEP_CVAR_PRI(shotgun, ammo);sc = sc + 1)
+                       SpawnCasing(((random() * 50 + 50) * v_right) - (v_forward * (random() * 25 + 25)) - ((random() * 5 - 30) * v_up), 2, vectoangles(v_forward),'0 250 0', 100, 1, self);
 
        // muzzle flash for 1st person view
        flash = spawn();
@@ -79,7 +82,7 @@ void W_Shotgun_Attack (void)
 
 .float swing_prev;
 .entity swing_alreadyhit;
-void W_Shotgun_Melee_Think()
+void W_Shotgun_Melee_Think(void)
 {
        // declarations
        float i, f, swing, swing_factor, swing_damage, meleetime, is_player;
@@ -122,7 +125,7 @@ void W_Shotgun_Melee_Think()
                //te_lightning2(world, targpos, self.realowner.origin + self.realowner.view_ofs + v_forward * 5 - v_up * 5);
                //te_customflash(targpos, 40,  2, '1 1 1');
 
-               is_player = (IS_PLAYER(trace_ent) || trace_ent.classname == "body");
+               is_player = (IS_PLAYER(trace_ent) || trace_ent.classname == "body" || (trace_ent.flags & FL_MONSTER));
 
                if((trace_fraction < 1) // if trace is good, apply the damage and remove self
                        && (trace_ent.takedamage == DAMAGE_AIM)
@@ -175,9 +178,9 @@ void W_Shotgun_Melee_Think()
        }
 }
 
-void W_Shotgun_Attack2 (void)
+void W_Shotgun_Attack2(void)
 {
-       sound (self, CH_WEAPON_A, "weapons/shotgun_melee.wav", VOL_BASE, ATTEN_NORM);
+       sound(self, CH_WEAPON_A, "weapons/shotgun_melee.wav", VOL_BASE, ATTEN_NORM);
        weapon_thinkf(WFRAME_FIRE2, WEP_CVAR_SEC(shotgun, animtime), w_ready);
 
        entity meleetemp;
@@ -188,10 +191,40 @@ void W_Shotgun_Attack2 (void)
        W_SetupShot_Range(self, TRUE, 0, "", 0, WEP_CVAR_SEC(shotgun, damage), WEP_CVAR_SEC(shotgun, melee_range));
 }
 
+// alternate secondary weapon frames
+void W_Shotgun_Attack3_Frame2()
+{
+       if (!WEP_ACTION(self.weapon, WR_CHECKAMMO2))
+       if (!(self.items & IT_UNLIMITED_WEAPON_AMMO))
+       {
+               W_SwitchWeapon_Force(self, w_getbestweapon(self));
+               w_ready();
+               return;
+       }
+
+       sound(self, CH_WEAPON_SINGLE, "misc/null.wav", VOL_BASE, ATTN_NORM); // kill previous sound
+       W_Shotgun_Attack(TRUE); // actually is secondary, but we trick the last shot into playing full reload sound
+       weapon_thinkf(WFRAME_FIRE1, WEP_CVAR_SEC(shotgun, alt_animtime), w_ready);
+}
+void W_Shotgun_Attack3_Frame1()
+{
+       if (!WEP_ACTION(self.weapon, WR_CHECKAMMO2))
+       if (!(self.items & IT_UNLIMITED_WEAPON_AMMO))
+       {
+               W_SwitchWeapon_Force(self, w_getbestweapon(self));
+               w_ready();
+               return;
+       }
+
+       W_Shotgun_Attack(FALSE);
+       weapon_thinkf(WFRAME_FIRE1, WEP_CVAR_SEC(shotgun, alt_animtime), W_Shotgun_Attack3_Frame2);
+}
+
 .float shotgun_primarytime;
 
 float W_Shotgun(float req)
 {
+       float ammo_amount;
        switch(req)
        {
                case WR_AIM:
@@ -208,28 +241,41 @@ float W_Shotgun(float req)
                        if(WEP_CVAR(shotgun, reload_ammo) && self.clip_load < WEP_CVAR_PRI(shotgun, ammo)) // forced reload
                        {
                                // don't force reload an empty shotgun if its melee attack is active
-                               if (!WEP_CVAR(shotgun, secondary))
+                               if(WEP_CVAR(shotgun, secondary) < 2)
                                        WEP_ACTION(self.weapon, WR_RELOAD);
                        }
                        else
                        {
-                               if (self.BUTTON_ATCK)
+                               if(self.BUTTON_ATCK)
                                {
-                                       if (time >= self.shotgun_primarytime) // handle refire separately so the secondary can be fired straight after a primary
+                                       if(time >= self.shotgun_primarytime) // handle refire separately so the secondary can be fired straight after a primary
                                        {
                                                if(weapon_prepareattack(0, WEP_CVAR_PRI(shotgun, animtime)))
                                                {
-                                                       W_Shotgun_Attack();
+                                                       W_Shotgun_Attack(TRUE);
                                                        self.shotgun_primarytime = time + WEP_CVAR_PRI(shotgun, refire) * W_WeaponRateFactor();
                                                        weapon_thinkf(WFRAME_FIRE1, WEP_CVAR_PRI(shotgun, animtime), w_ready);
                                                }
                                        }
                                }
+                               else if(self.BUTTON_ATCK2 && WEP_CVAR(shotgun, secondary) == 2)
+                               {
+                                       if(time >= self.shotgun_primarytime) // handle refire separately so the secondary can be fired straight after a primary
+                                       {
+                                               if(weapon_prepareattack(0, WEP_CVAR_SEC(shotgun, alt_animtime)))
+                                               {
+                                                       W_Shotgun_Attack(FALSE);
+                                                       self.shotgun_primarytime = time + WEP_CVAR_SEC(shotgun, alt_refire) * W_WeaponRateFactor();
+                                                       weapon_thinkf(WFRAME_FIRE1, WEP_CVAR_SEC(shotgun, alt_animtime), W_Shotgun_Attack3_Frame1);
+                                               }
+                                       }
+                               }
                        }
-                       if (self.clip_load >= 0) // we are not currently reloading
-                       if (!self.crouch) // no crouchmelee please
-                       if (self.BUTTON_ATCK2 && WEP_CVAR(shotgun, secondary))
-                       if (weapon_prepareattack(1, WEP_CVAR_SEC(shotgun, refire)))
+                       if(self.clip_load >= 0) // we are not currently reloading
+                       if(!self.crouch) // no crouchmelee please
+                       if(WEP_CVAR(shotgun, secondary) == 1)
+                       if((self.BUTTON_ATCK && self.WEP_AMMO(SHOTGUN) <= 0 && !(self.items & IT_UNLIMITED_WEAPON_AMMO)) || self.BUTTON_ATCK2)
+                       if(weapon_prepareattack(1, WEP_CVAR_SEC(shotgun, refire)))
                        {
                                // attempt forcing playback of the anim by switching to another anim (that we never play) here...
                                weapon_thinkf(WFRAME_FIRE1, 0, W_Shotgun_Attack2);
@@ -239,13 +285,13 @@ float W_Shotgun(float req)
                }
                case WR_INIT:
                {
-                       precache_model ("models/uziflash.md3");
-                       precache_model ("models/weapons/g_shotgun.md3");
-                       precache_model ("models/weapons/v_shotgun.md3");
-                       precache_model ("models/weapons/h_shotgun.iqm");
-                       precache_sound ("misc/itempickup.wav");
-                       precache_sound ("weapons/shotgun_fire.wav");
-                       precache_sound ("weapons/shotgun_melee.wav");
+                       precache_model("models/uziflash.md3");
+                       precache_model("models/weapons/g_shotgun.md3");
+                       precache_model("models/weapons/v_shotgun.md3");
+                       precache_model("models/weapons/h_shotgun.iqm");
+                       precache_sound("misc/itempickup.wav");
+                       precache_sound("weapons/shotgun_fire.wav");
+                       precache_sound("weapons/shotgun_melee.wav");
                        SHOTGUN_SETTINGS(WEP_SKIP_CVAR, WEP_SET_PROP)
                        return TRUE;
                }
@@ -255,10 +301,27 @@ float W_Shotgun(float req)
                        return TRUE;
                }
                case WR_CHECKAMMO1:
+               {
+                       ammo_amount = self.WEP_AMMO(SHOTGUN) >= WEP_CVAR_PRI(shotgun, ammo);
+                       ammo_amount += self.(weapon_load[WEP_SHOTGUN]) >= WEP_CVAR_PRI(shotgun, ammo);
+                       return ammo_amount;
+               }
                case WR_CHECKAMMO2:
                {
-                       // shotgun has infinite ammo
-                       return TRUE;
+                       if(IS_BOT_CLIENT(self))
+                       if(vlen(self.origin-self.enemy.origin) > WEP_CVAR_SEC(shotgun, melee_range))
+                               return FALSE; // bots cannot use secondary out of range (fixes constant melee when out of ammo)
+                       switch(WEP_CVAR(shotgun, secondary))
+                       {
+                               case 1: return TRUE; // melee does not use ammo
+                               case 2: // secondary triple shot
+                               {
+                                       ammo_amount = self.WEP_AMMO(SHOTGUN) >= WEP_CVAR_PRI(shotgun, ammo);
+                                       ammo_amount += self.(weapon_load[WEP_SHOTGUN]) >= WEP_CVAR_PRI(shotgun, ammo);
+                                       return ammo_amount;
+                               }
+                               default: return FALSE; // secondary unavailable
+                       }
                }
                case WR_CONFIG:
                {