X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fw_sniperrifle.qc;h=f634993f5ad7ea6c2565c4e60eb7fc9b56f54aaf;hb=0fa904dada3c3b0cd22c436a263fd37316add947;hp=378e0622aa6f28e7d297799d92908d48008e9cf0;hpb=b373babed8402b2f3bc9002feb2e7bb01252447f;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/w_sniperrifle.qc b/qcsrc/server/w_sniperrifle.qc index 378e0622a..f634993f5 100644 --- a/qcsrc/server/w_sniperrifle.qc +++ b/qcsrc/server/w_sniperrifle.qc @@ -1,5 +1,5 @@ #ifdef REGISTER_WEAPON -REGISTER_WEAPON(SNIPERRIFLE, w_sniperrifle, IT_NAILS, 7, WEP_FLAG_NORMAL | WEP_TYPE_HITSCAN, BOT_PICKUP_RATING_MID, "campingrifle", "sniperrifle", _("Sniper Rifle")) +REGISTER_WEAPON(SNIPERRIFLE, w_sniperrifle, IT_NAILS, 7, WEP_FLAG_NORMAL | WEP_FLAG_RELOADABLE | WEP_TYPE_HITSCAN, BOT_PICKUP_RATING_MID, "campingrifle", "sniperrifle", _("Sniper Rifle")) #else #ifdef SVQC //Sniper rifle Primary mode: manually operated bolt*, Secondary: full automatic** @@ -7,62 +7,17 @@ REGISTER_WEAPON(SNIPERRIFLE, w_sniperrifle, IT_NAILS, 7, WEP_FLAG_NORMAL | WEP_T //** In fully automatic mode some of the gas is used to extract and reload the next cartrige, thus there is less power and range. .float sniperrifle_accumulator; -.float sniperrifle_load; - -void W_SniperRifle_SetAmmoCounter() -{ - if(!autocvar_g_balance_sniperrifle_reload_ammo) - self.ammo_counter = 0; // also keeps the crosshair ammo from displaying - else - self.ammo_counter = self.sniperrifle_load; -} - -void W_SniperRifle_Reload() -{ - // reloading is disabled for this weapon - if(!autocvar_g_balance_shotgun_reload_ammo) - return; - - w_ready(); - if(W_Reload(self.ammo_nails)) - { - // now do the actual ammo transfer - for(self.sniperrifle_load; self.sniperrifle_load < autocvar_g_balance_shotgun_reload_ammo && self.ammo_nails; ++self.sniperrifle_load) - self.ammo_nails -= 1; - return; - } -} - -float W_SniperRifle_CheckMaxBullets(float checkammo) -{ - float maxbulls; - maxbulls = autocvar_g_balance_sniperrifle_magazinecapacity; - if(!maxbulls) - maxbulls = 8; // match HUD - if(checkammo) - if not(self.items & IT_UNLIMITED_WEAPON_AMMO) - maxbulls = min(maxbulls, floor(self.ammo_nails / min(autocvar_g_balance_sniperrifle_primary_ammo, autocvar_g_balance_sniperrifle_secondary_ammo))); - if(self.ammo_counter > maxbulls) - self.ammo_counter = maxbulls; - return (self.ammo_counter == maxbulls); -} void W_SniperRifle_FireBullet(float pSpread, float pDamage, float pHeadshotAddedDamage, float pForce, float pSpeed, float pLifetime, float pAmmo, float deathtype, float pBulletConstant) { - if not(self.items & IT_UNLIMITED_WEAPON_AMMO) - { - if(!autocvar_g_balance_sniperrifle_reload_ammo) - self.ammo_nails -= pAmmo; - else - self.sniperrifle_load -= pAmmo; - } + W_DecreaseAmmo(ammo_nails, pAmmo, autocvar_g_balance_sniperrifle_reload_ammo); if(deathtype & HITTYPE_SECONDARY) W_SetupShot (self, autocvar_g_antilag_bullets && pSpeed >= autocvar_g_antilag_bullets, 2, "weapons/campingrifle_fire2.wav", CHAN_WEAPON, autocvar_g_balance_sniperrifle_secondary_damage + autocvar_g_balance_sniperrifle_secondary_headshotaddeddamage); else W_SetupShot (self, autocvar_g_antilag_bullets && pSpeed >= autocvar_g_antilag_bullets, 2, "weapons/campingrifle_fire.wav", CHAN_WEAPON, autocvar_g_balance_sniperrifle_primary_damage + autocvar_g_balance_sniperrifle_primary_headshotaddeddamage); - pointparticles(particleeffectnum("shotgun_muzzleflash"), w_shotorg, w_shotdir * 2000, 1); + pointparticles(particleeffectnum("sniperrifle_muzzleflash"), w_shotorg, w_shotdir * 2000, 1); if(self.BUTTON_ZOOM) // if zoomed, shoot from the eye { @@ -78,8 +33,6 @@ void W_SniperRifle_FireBullet(float pSpread, float pDamage, float pHeadshotAdded if (autocvar_g_casings >= 2) SpawnCasing (((random () * 50 + 50) * v_right) - (v_forward * (random () * 25 + 25)) - ((random () * 5 - 70) * v_up), 2, vectoangles(v_forward),'0 250 0', 100, 3, self); - - self.ammo_counter = self.ammo_counter - 1; } void W_SniperRifle_Attack() @@ -110,10 +63,7 @@ void spawnfunc_weapon_campingrifle (void) void W_SniperRifle_BulletHail_Continue() { float r, sw, af; - if(self.ammo_counter <= 0) - W_SniperRifle_Reload(); - if(self.ammo_counter < 0) - return; // reloading, so we are done + sw = self.switchweapon; // make it not detect weapon changes as reason to abort firing af = ATTACK_FINISHED(self); self.switchweapon = self.weapon; @@ -158,7 +108,8 @@ void W_SniperRifle_BulletHail(float mode, void(void) AttackFunc, float fr, float .float bot_secondary_sniperriflemooth; float w_sniperrifle(float req) { - float full; + float ammo_amount; + if (req == WR_AIM) { self.BUTTON_ATCK=FALSE; @@ -184,9 +135,8 @@ float w_sniperrifle(float req) } else if (req == WR_THINK) { - W_SniperRifle_SetAmmoCounter(); - if(self.ammo_counter < 0) // forced reload (e.g. because interrupted) - self.wish_reload = 1; + if(autocvar_g_balance_sniperrifle_reload_ammo && self.clip_load < min(autocvar_g_balance_sniperrifle_primary_ammo, autocvar_g_balance_sniperrifle_secondary_ammo)) // forced reload + weapon_action(self.weapon, WR_RELOAD); else { self.sniperrifle_accumulator = bound(time - autocvar_g_balance_sniperrifle_bursttime, self.sniperrifle_accumulator, time); @@ -203,7 +153,7 @@ float w_sniperrifle(float req) if (autocvar_g_balance_sniperrifle_secondary) { if(autocvar_g_balance_sniperrifle_secondary_reload) - self.wish_reload = 1; + weapon_action(self.weapon, WR_RELOAD); else { if (weapon_prepareattack_check(1, autocvar_g_balance_sniperrifle_secondary_refire)) @@ -217,49 +167,40 @@ float w_sniperrifle(float req) } } } - if(self.wish_reload) - { - if(self.switchweapon == self.weapon) - { - if(self.weaponentity.state == WS_READY) - { - self.wish_reload = 0; - W_Reload(self.ammo_nails); - } - } - } } else if (req == WR_PRECACHE) { precache_model ("models/weapons/g_campingrifle.md3"); precache_model ("models/weapons/v_campingrifle.md3"); precache_model ("models/weapons/h_campingrifle.iqm"); - precache_sound ("weapons/campingrifle_reload.wav"); precache_sound ("weapons/campingrifle_fire.wav"); precache_sound ("weapons/campingrifle_fire2.wav"); + //precache_sound ("weapons/reload.wav"); // until weapons have individual reload sounds, precache the reload sound somewhere else } else if (req == WR_SETUP) { weapon_setup(WEP_SNIPERRIFLE); - - full = W_SniperRifle_CheckMaxBullets(TRUE); - if(autocvar_g_balance_sniperrifle_auto_reload_on_switch) - if(!full) - self.ammo_counter = -1; + self.current_ammo = ammo_nails; } else if (req == WR_CHECKAMMO1) - return self.ammo_nails >= autocvar_g_balance_sniperrifle_primary_ammo; + { + ammo_amount = self.ammo_nails >= autocvar_g_balance_sniperrifle_primary_ammo; + ammo_amount += self.weapon_load[WEP_SNIPERRIFLE] >= autocvar_g_balance_sniperrifle_primary_ammo; + return ammo_amount; + } else if (req == WR_CHECKAMMO2) - return self.ammo_nails >= autocvar_g_balance_sniperrifle_secondary_ammo; - else if (req == WR_RELOAD) { - self.wish_reload = 1; + ammo_amount = self.ammo_nails >= autocvar_g_balance_sniperrifle_secondary_ammo; + ammo_amount += self.weapon_load[WEP_SNIPERRIFLE] >= autocvar_g_balance_sniperrifle_secondary_ammo; + return ammo_amount; } else if (req == WR_RESETPLAYER) { self.sniperrifle_accumulator = time - autocvar_g_balance_sniperrifle_bursttime; - self.ammo_counter = autocvar_g_balance_sniperrifle_magazinecapacity; - W_SniperRifle_CheckMaxBullets(FALSE); + } + else if (req == WR_RELOAD) + { + W_Reload(min(autocvar_g_balance_sniperrifle_primary_ammo, autocvar_g_balance_sniperrifle_secondary_ammo), autocvar_g_balance_sniperrifle_reload_ammo, autocvar_g_balance_sniperrifle_reload_time, "weapons/reload.wav"); } return TRUE; }; @@ -291,32 +232,32 @@ float w_sniperrifle(float req) else if (req == WR_SUICIDEMESSAGE) { if(w_deathtype & HITTYPE_SECONDARY) - w_deathtypestring = "%s shot themself automatically"; + w_deathtypestring = _("%s shot themself automatically"); else - w_deathtypestring = "%s sniped themself somehow"; + w_deathtypestring = _("%s sniped themself somehow"); } else if (req == WR_KILLMESSAGE) { if(w_deathtype & HITTYPE_SECONDARY) { if(w_deathtype & HITTYPE_BOUNCE) - w_deathtypestring = "%s failed to hide from %s's bullet hail"; + w_deathtypestring = _("%s failed to hide from %s's bullet hail"); else - w_deathtypestring = "%s died in %s's bullet hail"; + w_deathtypestring = _("%s died in %s's bullet hail"); } else { if(w_deathtype & HITTYPE_BOUNCE) { // TODO special headshot message here too? - w_deathtypestring = "%s failed to hide from %s's rifle"; + w_deathtypestring = _("%s failed to hide from %s's rifle"); } else { if(w_deathtype & HITTYPE_HEADSHOT) - w_deathtypestring = "%s got hit in the head by %s"; + w_deathtypestring = _("%s got hit in the head by %s"); else - w_deathtypestring = "%s was sniped by %s"; + w_deathtypestring = _("%s was sniped by %s"); } } }