X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fweapons%2Fcommon.qc;h=3592e3f7e14b3086a46b0d029f00f96e728f56ad;hb=4eab3f0253a063bdbd4e1ff64c4b2b08077c44c4;hp=8e19fb53df96d98cb53e5e7268d35df714669239;hpb=ae2c1407ec9a05e4f501a6604a7cce8e1030df9f;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/weapons/common.qc b/qcsrc/server/weapons/common.qc index 8e19fb53d..3592e3f7e 100644 --- a/qcsrc/server/weapons/common.qc +++ b/qcsrc/server/weapons/common.qc @@ -1,46 +1,59 @@ #include "common.qh" -#include "../_all.qh" -#include "../t_items.qh" -#include "../../common/constants.qh" -#include "../../common/deathtypes.qh" -#include "../../common/notifications.qh" -#include "../../common/util.qh" -#include "../../common/weapons/all.qh" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include -void W_GiveWeapon (entity e, float wep) +bool W_DualWielding(entity player) { - entity oldself; - - if (!wep) - return; + int held_weapons = 0; + for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot) + { + .entity weaponentity = weaponentities[slot]; + if(player.(weaponentity) && player.(weaponentity).m_switchweapon != WEP_Null) + ++held_weapons; + } - e.weapons |= WepSet_FromWeapon(wep); + return held_weapons > 1; +} - oldself = self; - self = e; +void W_GiveWeapon(entity e, int wep) +{ + if (!wep) return; - if(IS_PLAYER(other)) - { Send_Notification(NOTIF_ONE, other, MSG_MULTI, ITEM_WEAPON_GOT, wep); } + STAT(WEAPONS, e) |= WepSet_FromWeapon(REGISTRY_GET(Weapons, wep)); - self = oldself; + if (IS_PLAYER(e)) { + Send_Notification(NOTIF_ONE, e, MSG_MULTI, ITEM_WEAPON_GOT, wep); + } } -void W_PlayStrengthSound(entity player) // void W_PlayStrengthSound +void W_PlayStrengthSound(entity player) { + entity store = IS_PLAYER(player) ? PS(player) : player; // because non-player entities can fire, but can they have items? TODO + if((player.items & ITEM_Strength.m_itemid) - && ((time > player.prevstrengthsound + autocvar_sv_strengthsound_antispam_time) // prevent insane sound spam - || (time > player.prevstrengthsoundattempt + autocvar_sv_strengthsound_antispam_refire_threshold))) + && ((time > store.prevstrengthsound + autocvar_sv_strengthsound_antispam_time) // prevent insane sound spam + || (time > store.prevstrengthsoundattempt + autocvar_sv_strengthsound_antispam_refire_threshold))) { - sound(player, CH_TRIGGER, "weapons/strength_fire.wav", VOL_BASE, ATTEN_NORM); - player.prevstrengthsound = time; + sound(player, CH_TRIGGER, SND_STRENGTH_FIRE, VOL_BASE, ATTEN_NORM); + store.prevstrengthsound = time; } - player.prevstrengthsoundattempt = time; + store.prevstrengthsoundattempt = time; } float W_CheckProjectileDamage(entity inflictor, entity projowner, int deathtype, float exception) { - float is_from_contents = (deathtype == DEATH_SLIME || deathtype == DEATH_LAVA); + float is_from_contents = (deathtype == DEATH_SLIME.m_id || deathtype == DEATH_LAVA.m_id); float is_from_owner = (inflictor == projowner); float is_from_exception = (exception != -1); @@ -80,19 +93,21 @@ float W_CheckProjectileDamage(entity inflictor, entity projowner, int deathtype, return true; // if none of these return, then allow damage anyway. } -void W_PrepareExplosionByDamage(entity attacker, void() explode) +void W_PrepareExplosionByDamage(entity this, entity attacker, void(entity this) explode) { - self.takedamage = DAMAGE_NO; - self.event_damage = func_null; + this.takedamage = DAMAGE_NO; + this.event_damage = func_null; + + MUTATOR_CALLHOOK(PrepareExplosionByDamage, this, attacker); if(IS_CLIENT(attacker) && !autocvar_g_projectiles_keep_owner) { - self.owner = attacker; - self.realowner = attacker; + this.owner = attacker; + this.realowner = attacker; } // do not explode NOW but in the NEXT FRAME! // because recursive calls to RadiusDamage are not allowed - self.nextthink = time; - self.think = explode; + this.nextthink = time; + setthink(this, explode); }