e9da54c2f9
Too many changes to list.
139 lines
2.7 KiB
Lua
139 lines
2.7 KiB
Lua
AddCSLuaFile()
|
|
|
|
SWEP.PrintName = "Gun Turret Controller"
|
|
SWEP.Description = "Allows the user to manually take control of any turrets they own."
|
|
SWEP.Slot = 4
|
|
SWEP.SlotPos = 0
|
|
|
|
if CLIENT then
|
|
SWEP.ViewModelFOV = 50
|
|
|
|
SWEP.BobScale = 0.5
|
|
SWEP.SwayScale = 0.5
|
|
end
|
|
|
|
SWEP.ViewModel = "models/weapons/c_slam.mdl"
|
|
SWEP.WorldModel = "models/weapons/w_slam.mdl"
|
|
SWEP.UseHands = true
|
|
|
|
SWEP.Primary.Delay = 0
|
|
SWEP.Primary.ClipSize = -1
|
|
SWEP.Primary.DefaultClip = -1
|
|
SWEP.Primary.Automatic = false
|
|
SWEP.Primary.Ammo = "none"
|
|
|
|
SWEP.Secondary.Delay = 20
|
|
SWEP.Secondary.Heal = 10
|
|
|
|
SWEP.Secondary.ClipSize = -1
|
|
SWEP.Secondary.DefaultClip = -1
|
|
SWEP.Secondary.Automatic = false
|
|
SWEP.Secondary.Ammo = "none"
|
|
|
|
SWEP.WalkSpeed = SPEED_FAST
|
|
|
|
SWEP.NoMagazine = true
|
|
SWEP.Undroppable = true
|
|
SWEP.NoPickupNotification = true
|
|
|
|
SWEP.HoldType = "slam"
|
|
|
|
SWEP.NoDeploySpeedChange = true
|
|
SWEP.NoTransfer = true
|
|
SWEP.AutoSwitchFrom = false
|
|
|
|
function SWEP:Initialize()
|
|
self:SetWeaponHoldType(self.HoldType)
|
|
self:SetDeploySpeed(10)
|
|
end
|
|
|
|
function SWEP:Think()
|
|
if self.IdleAnimation and self.IdleAnimation <= CurTime() then
|
|
self.IdleAnimation = nil
|
|
self:SendWeaponAnim(ACT_VM_IDLE)
|
|
end
|
|
|
|
if SERVER then
|
|
self:ControlClosestTurret()
|
|
|
|
for _, ent in pairs(ents.FindByClass("prop_gunturret*")) do
|
|
if ent:GetObjectOwner() == self:GetOwner() then
|
|
return
|
|
end
|
|
end
|
|
|
|
self:GetOwner():StripWeapon(self:GetClass())
|
|
end
|
|
end
|
|
|
|
function SWEP:ControlClosestTurret()
|
|
local closest, closestdist
|
|
local ownerpos = self:GetOwner():GetPos()
|
|
for _, ent in pairs(ents.FindByClass("prop_gunturret*")) do
|
|
if ent:GetObjectOwner() == self:GetOwner() then
|
|
local dist = ent:NearestPoint(ownerpos):DistToSqr(ownerpos)
|
|
if not closestdist or dist < closestdist then
|
|
closest = ent
|
|
closestdist = dist
|
|
end
|
|
end
|
|
end
|
|
if closest then
|
|
self:SetTurret(closest)
|
|
end
|
|
end
|
|
|
|
function SWEP:PrimaryAttack()
|
|
end
|
|
|
|
function SWEP:SecondaryAttack()
|
|
if IsFirstTimePredicted() then
|
|
self:SetDTBool(0, not self:GetDTBool(0))
|
|
|
|
if CLIENT then
|
|
MySelf:EmitSound(self:GetDTBool(0) and "buttons/button17.wav" or "buttons/button19.wav", 0)
|
|
end
|
|
end
|
|
end
|
|
|
|
function SWEP:GetTurret()
|
|
return self:GetDTEntity(0)
|
|
end
|
|
|
|
function SWEP:SetTurret(ent)
|
|
self:SetDTEntity(0, ent)
|
|
end
|
|
|
|
function SWEP:Reload()
|
|
return false
|
|
end
|
|
|
|
function SWEP:Deploy()
|
|
gamemode.Call("WeaponDeployed", self:GetOwner(), self)
|
|
|
|
self.IdleAnimation = CurTime() + self:SequenceDuration()
|
|
|
|
return true
|
|
end
|
|
|
|
function SWEP:Holster()
|
|
return true
|
|
end
|
|
|
|
function SWEP:Reload()
|
|
end
|
|
|
|
function SWEP:GetResupplyAmmoType()
|
|
local turret = self:GetTurret()
|
|
if turret:IsValid() then
|
|
return turret.AmmoType
|
|
end
|
|
|
|
return "smg1"
|
|
end
|
|
|
|
if not CLIENT then return end
|
|
|
|
function SWEP:DrawWeaponSelection(x, y, w, h, alpha)
|
|
self:BaseDrawWeaponSelection(x, y, w, h, alpha)
|
|
end
|