-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move SoundToolSupport table to its own file
- Loading branch information
1 parent
2fae79c
commit 845d08c
Showing
2 changed files
with
122 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
ACF.SoundToolSupport = ACF.SoundToolSupport or {} | ||
|
||
local Sounds = ACF.SoundToolSupport | ||
|
||
Sounds.acf_gun = { | ||
GetSound = function(Ent) | ||
return { | ||
Sound = Ent.SoundPath, | ||
Pitch = Ent.SoundPitch, | ||
Volume = Ent.SoundVolume | ||
} | ||
end, | ||
SetSound = function(Ent, SoundData) | ||
Ent.SoundPath = SoundData.Sound | ||
Ent.SoundPitch = SoundData.Pitch | ||
Ent.SoundVolume = SoundData.Volume | ||
|
||
Ent:SetNWString("Sound", SoundData.Sound) | ||
Ent:SetNWFloat("SoundPitch", SoundData.Pitch) | ||
Ent:SetNWFloat("SoundVolume", SoundData.Volume) | ||
end, | ||
ResetSound = function(Ent) | ||
Ent.SoundPath = Ent.DefaultSound | ||
Ent.SoundPitch = 1 | ||
Ent.SoundVolume = 1 | ||
|
||
Ent:SetNWString("Sound", Ent.DefaultSound) | ||
Ent:SetNWFloat("SoundPitch", 1) | ||
Ent:SetNWFloat("SoundVolume", 1) | ||
end | ||
} | ||
|
||
Sounds.acf_engine = { | ||
GetSound = function(Ent) | ||
return { | ||
Sound = Ent.SoundPath, | ||
Pitch = Ent.SoundPitch, | ||
Volume = Ent.SoundVolume | ||
} | ||
end, | ||
SetSound = function(Ent, SoundData) | ||
local Sound = SoundData.Sound:Trim():lower() | ||
|
||
Ent.SoundPath = Sound | ||
Ent.SoundPitch = SoundData.Pitch | ||
Ent.SoundVolume = SoundData.Volume | ||
|
||
Ent:UpdateSound() | ||
end, | ||
ResetSound = function(Ent) | ||
Ent.SoundPath = Ent.DefaultSound | ||
Ent.SoundPitch = 1 | ||
Ent.SoundVolume = 1 | ||
|
||
Ent:UpdateSound() | ||
end | ||
} | ||
|
||
Sounds.acf_gearbox = { | ||
GetSound = function(Ent) | ||
return { | ||
Sound = Ent.SoundPath, | ||
Pitch = Ent.SoundPitch, | ||
Volume = Ent.SoundVolume, | ||
} | ||
end, | ||
SetSound = function(Ent, SoundData) | ||
Ent.SoundPath = SoundData.Sound | ||
Ent.SoundPitch = SoundData.Pitch | ||
Ent.SoundVolume = SoundData.Volume | ||
end, | ||
ResetSound = function(Ent) | ||
Ent.SoundPath = Ent.DefaultSound | ||
Ent.SoundPitch = nil | ||
Ent.SoundVolume = nil | ||
end | ||
} | ||
|
||
Sounds.acf_piledriver = { | ||
GetSound = function(Ent) | ||
return { | ||
Sound = Ent.SoundPath or "", | ||
Pitch = Ent.SoundPitch or 1, | ||
Volume = Ent.SoundVolume or 0.5, | ||
} | ||
end, | ||
SetSound = function(Ent, SoundData) | ||
Ent.SoundPath = SoundData.Sound | ||
Ent.SoundPitch = SoundData.Pitch | ||
Ent.SoundVolume = SoundData.Volume | ||
end, | ||
ResetSound = function(Ent) | ||
Ent.SoundPath = nil | ||
Ent.SoundPitch = nil | ||
Ent.SoundVolume = nil | ||
end | ||
} | ||
|
||
Sounds.acf_turret_motor = { | ||
GetSound = function(Ent) | ||
return { | ||
Sound = Ent.SoundPath or Ent.DefaultSound, | ||
Pitch = Ent.SoundPitch or 0.7, | ||
Volume = Ent.SoundVolume or 0.1, | ||
} | ||
end, | ||
SetSound = function(Ent, SoundData) | ||
Ent.SoundPath = SoundData.Sound | ||
Ent.SoundPitch = SoundData.Pitch | ||
Ent.SoundVolume = SoundData.Volume | ||
|
||
if IsValid(Ent.Turret) then Ent.Turret:UpdateSound() end | ||
end, | ||
ResetSound = function(Ent) | ||
Ent.SoundPath = Ent.DefaultSound | ||
Ent.SoundPitch = nil | ||
Ent.SoundVolume = nil | ||
|
||
if IsValid(Ent.Turret) then Ent.Turret:UpdateSound() end | ||
end | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters