zombiesurvival-evolved/gamemodes/zombiesurvival/entities/weapons/weapon_zs_poisonheadcrab/shared.lua

234 lines
6.1 KiB
Lua
Raw Normal View History

SWEP.PrintName = "Poison Headcrab"
2014-10-02 08:49:54 +08:00
SWEP.ZombieOnly = true
SWEP.IsMelee = true
SWEP.ViewModel = "models/weapons/v_knife_t.mdl"
SWEP.WorldModel = ""
2014-10-02 08:49:54 +08:00
SWEP.Primary.ClipSize = -1
SWEP.Primary.DefaultClip = -1
SWEP.Primary.Automatic = true
SWEP.Primary.Ammo = "none"
SWEP.Primary.Delay = 0.4
SWEP.Secondary.ClipSize = -1
SWEP.Secondary.Delay = 0.22
SWEP.Secondary.DefaultClip = -1
SWEP.Secondary.Automatic = true
SWEP.Secondary.Ammo = "none"
SWEP.PounceDamage = 34
SWEP.PounceWindUp = 0.9
SWEP.SilentPounceWindUp = 2.1
SWEP.SpitWindUp = 0.8
2014-10-02 08:49:54 +08:00
function SWEP:Initialize()
self:HideViewAndWorldModel()
end
--[[local function DoPoisoned(hitent, owner, damage, timername)
2014-10-02 08:49:54 +08:00
if not (hitent:IsValid() and hitent:Alive()) then
timer.Remove(timername)
2014-10-02 08:49:54 +08:00
return
end
hitent:PoisonDamage(damage, owner)
end]]
2014-10-02 08:49:54 +08:00
function SWEP:Think()
local curtime = CurTime()
local owner = self:GetOwner()
2014-10-02 08:49:54 +08:00
if self:IsGoingToSpit() and self:GetNextSpit() <= curtime then
self:SetNextSpit(0)
self:SetNextPrimaryFire(curtime + 2)
self:SetNextSecondaryFire(self:GetNextPrimaryFire())
if SERVER then
owner:EmitSound("weapons/crossbow/bolt_fly4.wav", 74, 150)
owner.LastRangedAttack = CurTime()
2014-10-02 08:49:54 +08:00
local ent = ents.Create("projectile_poisonspit")
if ent:IsValid() then
ent:SetOwner(owner)
local aimvec = owner:GetAimVector()
--[[aimvec.z = math.max(aimvec.z, -0.25)
aimvec:Normalize()]]
2014-10-02 08:49:54 +08:00
local vStart = owner:GetShootPos()
local tr = util.TraceLine({start=vStart, endpos=vStart + owner:GetAimVector() * 30, filter=owner})
if tr.Hit then
ent:SetPos(tr.HitPos + tr.HitNormal * 4)
else
ent:SetPos(tr.HitPos)
end
ent:Spawn()
local phys = ent:GetPhysicsObject()
if phys:IsValid() then
phys:SetVelocityInstantaneous(aimvec * 900 --[[510]])
2014-10-02 08:49:54 +08:00
end
end
end
elseif self:IsGoingToLeap() and self:GetNextLeap() <= curtime then
self:SetNextLeap(0)
if owner:IsOnGround() then
local vel = owner:GetAimVector()
vel.z = math.max(0.45, vel.z)
vel:Normalize()
owner:SetGroundEntity(NULL)
owner:SetLocalVelocity(vel * 470)
self:SetLeaping(true)
if SERVER then
owner:EmitSound("NPC_BlackHeadcrab.Attack")
end
end
elseif self:IsLeaping() then
local delay = owner:GetMeleeSpeedMul()
2014-10-02 08:49:54 +08:00
if owner:IsOnGround() or 1 < owner:WaterLevel() then
self:SetLeaping(false)
self:SetNextPrimaryFire(curtime + 0.8 * delay)
2014-10-02 08:49:54 +08:00
else
--owner:LagCompensation(true)
2014-10-02 08:49:54 +08:00
local vStart = owner:LocalToWorld(owner:OBBCenter())
local trace = owner:CompensatedMeleeTrace(owner:BoundingRadius() + 8, 12, vStart, owner:GetForward())
2014-10-02 08:49:54 +08:00
local ent = trace.Entity
if ent:IsValid() then
local phys = ent:GetPhysicsObject()
if phys:IsValid() and not ent:IsPlayer() and phys:IsMoveable() then
local vel = 12000 * owner:EyeAngles():Forward()
phys:ApplyForceOffset(vel, (ent:NearestPoint(vStart) + ent:GetPos() * 2) / 3)
ent:SetPhysicsAttacker(owner)
end
self:SetLeaping(false)
self:SetNextPrimaryFire(curtime + 1 * delay)
2014-10-02 08:49:54 +08:00
if SERVER then
owner:EmitSound("NPC_BlackHeadcrab.Bite")
end
owner:ViewPunch(Angle(math.Rand(-20, 20), math.Rand(-20, 20), math.Rand(-20, 20)))
if ent:IsPlayer() then
ent:MeleeViewPunch(self.PounceDamage)
end
ent:PoisonDamage(self.PounceDamage, owner, self)
2014-10-02 08:49:54 +08:00
elseif trace.HitWorld then
if SERVER then
owner:EmitSound("NPC_BlackHeadcrab.Impact")
end
self:SetLeaping(false)
self:SetNextPrimaryFire(curtime + 1 * delay)
2014-10-02 08:49:54 +08:00
end
--owner:LagCompensation(false)
2014-10-02 08:49:54 +08:00
end
end
self:NextThink(curtime)
return true
end
function SWEP:PrimaryAttack()
local owner = self:GetOwner()
2014-10-02 08:49:54 +08:00
if self:IsLeaping() or self:IsGoingToSpit() or self:IsGoingToLeap() or CurTime() < self:GetNextPrimaryFire() or not owner:IsOnGround() then return end
self:SetNextLeap(CurTime() + self.PounceWindUp)
2014-10-02 08:49:54 +08:00
self.m_ViewAngles = owner:EyeAngles()
if SERVER then
owner:EmitSound("NPC_BlackHeadcrab.Telegraph")
end
end
function SWEP:SecondaryAttack()
if self:IsLeaping() or self:IsGoingToSpit() or self:IsGoingToLeap() or CurTime() < self:GetNextSecondaryFire() or not self:GetOwner():IsOnGround() then return end
2014-10-02 08:49:54 +08:00
self:SetNextSpit(CurTime() + self.SpitWindUp)
2014-10-02 08:49:54 +08:00
if SERVER then
self:GetOwner():EmitSound("npc/headcrab_poison/ph_scream"..math.random(3)..".wav")
2014-10-02 08:49:54 +08:00
end
end
function SWEP:Reload()
if self:GetNextReload() > CurTime() then return end
self:SetNextReload(CurTime() + self.SilentPounceWindUp)
2014-10-02 08:49:54 +08:00
if SERVER then
local ent = self:GetOwner():CompensatedMeleeTrace(4096, 24).Entity
if ent:IsValidPlayer() then
self:GetOwner():EmitSound("npc/headcrab_poison/ph_warning"..math.random(3)..".wav")
2014-10-02 08:49:54 +08:00
else
self:GetOwner():EmitSound("npc/headcrab_poison/ph_idle"..math.random(3)..".wav")
2014-10-02 08:49:54 +08:00
end
end
return false
end
function SWEP:Move(mv)
if self:IsLeaping() or self:IsGoingToLeap() or self:IsGoingToSpit() then
mv:SetSideSpeed(0)
mv:SetForwardSpeed(0)
end
end
function SWEP:Precache()
util.PrecacheSound("npc/headcrab_poison/ph_scream1.wav")
util.PrecacheSound("npc/headcrab_poison/ph_scream2.wav")
util.PrecacheSound("npc/headcrab_poison/ph_scream3.wav")
util.PrecacheSound("npc/headcrab_poison/ph_jump1.wav")
util.PrecacheSound("npc/headcrab_poison/ph_jump2.wav")
util.PrecacheSound("npc/headcrab_poison/ph_jump3.wav")
util.PrecacheSound("npc/headcrab_poison/ph_poisonbite1.wav")
util.PrecacheSound("npc/headcrab_poison/ph_poisonbite2.wav")
util.PrecacheSound("npc/headcrab_poison/ph_poisonbite3.wav")
end
function SWEP:SetLeaping(leap)
if not leap then
self.m_ViewAngles = nil
end
self:SetDTBool(0, leap)
end
function SWEP:GetLeaping()
return self:GetDTBool(0)
end
SWEP.IsLeaping = SWEP.GetLeaping
function SWEP:SetNextLeap(time)
self:SetDTFloat(DT_WEAPON_BASE_FLOAT_RELOADEND + 1, time)
2014-10-02 08:49:54 +08:00
end
function SWEP:GetNextLeap()
return self:GetDTFloat(DT_WEAPON_BASE_FLOAT_RELOADEND + 1)
2014-10-02 08:49:54 +08:00
end
function SWEP:IsGoingToLeap()
return self:GetNextLeap() > 0
end
function SWEP:ShouldPlayLeapAnimation()
return self:IsLeaping() or self:IsGoingToLeap()
end
function SWEP:SetNextSpit(time)
self:SetDTFloat(1, time)
end
function SWEP:GetNextSpit()
return self:GetDTFloat(1)
end
function SWEP:IsGoingToSpit()
return self:GetNextSpit() > 0
end