53743b1aee
Random starting loadouts now include things that aren't weapons (ammo, traits, etc.). Added an option to disable the automatic suicide when changing zombie classes. Zombies will no longer receive damage resistance when only one human remains. Players can no longer claim the arsenal crate that gets spawned in the human spawn when nobody has one. Any player can pack it up though. The Ghoul's ghoul touch special ability has been changed. It will no longer slow targets but will debuff them for the next 10 seconds. They will take 40% more damage (the extra damage is attributed to the person who ghoul touched them last) for the next 10 seconds as well as slightly disorienting them. The Ghoul movement speed has been reduced from 185 to 170. Added crafting recipe: 'Waraxe' Handgun. Combine two 'Battleaxe' Handguns to craft this. Slightly better version of the Owens. The Flesh Creeper model has been changed to one that doesn't have severely awkward hitboxes. The Flesh Creeper can no longer jump and attack at the same time. The Lead Pipe special trait has been changed from a disorientation to a severe view punch/snap on a global cooldown of 1.5 seconds. The Regenerative trait is now 1 health every 6 seconds under 50% health instead of 1 health every 5 seconds under 50% health. Fast Zombie Legs have been changed to be a slightly faster but slightly weaker version of Zombie Legs. Zombies that have just spawned or enter zombie gas will now have a temporary buff which gives 25% extra speed and 40% damage resistance. This buff lasts for 3 seconds and is refreshed by entering the gas. Gas will no longer heal. Zombies with this buff on will strobe dark green. Added crafting recipe: Bladehack. Combine a saw blade with a manhack to get this. Slower but has more health, does more damage, and has less of a knockback when hitting something. Resupply Boxes now award the owner a point for every 2 people who use their box instead of every single person (so half as many points). Fixed Fast Zombie Legs spawning much more abundantly than intended. Fixed Flesh Creepers not being able to jump over obstacles due to their insanely low jump height. Fixed zombies taking themselves in to account when calculating horde damage resistance (bosses always had full resistance because of this). Fixed allowing people to use worth menu after redeeming.
324 lines
7.9 KiB
Lua
324 lines
7.9 KiB
Lua
CreateClientConVar("zs_bossclass", "", true, true)
|
|
|
|
local Window
|
|
local HoveredClassWindow
|
|
|
|
local function CreateHoveredClassWindow(classtable)
|
|
if HoveredClassWindow and HoveredClassWindow:Valid() then
|
|
HoveredClassWindow:Remove()
|
|
end
|
|
|
|
HoveredClassWindow = vgui.Create("ClassInfo")
|
|
HoveredClassWindow:SetSize(ScrW() * 0.5, 128)
|
|
HoveredClassWindow:CenterHorizontal()
|
|
HoveredClassWindow:MoveBelow(Window, 32)
|
|
HoveredClassWindow:SetClassTable(classtable)
|
|
end
|
|
|
|
function GM:OpenClassSelect(bossmode)
|
|
if Window and Window:Valid() then Window:Remove() end
|
|
|
|
Window = vgui.Create(bossmode and "ClassSelectBoss" or "ClassSelect")
|
|
Window:SetSize(ScrW(), 240)
|
|
Window:Center()
|
|
|
|
Window:SetAlpha(0)
|
|
Window:AlphaTo(255, 0.5)
|
|
|
|
Window:MakePopup()
|
|
|
|
PlayMenuOpenSound()
|
|
end
|
|
|
|
local PANEL = {}
|
|
|
|
local function BossTypeDoClick(self)
|
|
GAMEMODE:OpenClassSelect(true)
|
|
end
|
|
|
|
function PANEL:Init()
|
|
self.ClassButtons = {}
|
|
|
|
for i = 1, #GAMEMODE.ZombieClasses do
|
|
local classtab = GAMEMODE.ZombieClasses[i]
|
|
if classtab and not classtab.Hidden or classtab.CanUse and classtab:CanUse(MySelf) then
|
|
local button = vgui.Create("ClassButton", self)
|
|
button:SetClassTable(classtab)
|
|
|
|
table.insert(self.ClassButtons, button)
|
|
end
|
|
end
|
|
|
|
local button = EasyButton(self, "Select desired boss class...", 8, 4)
|
|
self.ClassTypeButton = button
|
|
button.DoClick = BossTypeDoClick
|
|
|
|
self:InvalidateLayout()
|
|
end
|
|
|
|
function PANEL:PerformLayout()
|
|
local spacing = self:GetWide() / math.max(1, #self.ClassButtons)
|
|
local tall = self:GetTall()
|
|
|
|
for i, classbutton in ipairs(self.ClassButtons) do
|
|
classbutton:SetSize(spacing, tall)
|
|
classbutton:SetPos((i - 1) * spacing + spacing * 0.5 - classbutton:GetWide() * 0.5, 0)
|
|
classbutton:CenterVertical()
|
|
end
|
|
|
|
self.ClassTypeButton:AlignLeft(4)
|
|
self.ClassTypeButton:AlignTop(4)
|
|
end
|
|
|
|
local texUpEdge = surface.GetTextureID("gui/gradient_up")
|
|
local texDownEdge = surface.GetTextureID("gui/gradient_down")
|
|
function PANEL:Paint()
|
|
local wid, hei = self:GetSize()
|
|
local edgesize = 32
|
|
|
|
DisableClipping(true)
|
|
surface.SetDrawColor(color_black_alpha220)
|
|
surface.DrawRect(0, 0, wid, hei)
|
|
surface.SetTexture(texUpEdge)
|
|
surface.DrawTexturedRect(0, -edgesize, wid, edgesize)
|
|
surface.SetTexture(texDownEdge)
|
|
surface.DrawTexturedRect(0, hei, wid, edgesize)
|
|
DisableClipping(false)
|
|
|
|
return true
|
|
end
|
|
|
|
vgui.Register("ClassSelect", PANEL, "Panel")
|
|
|
|
local PANEL = {}
|
|
|
|
local function ClassTypeDoClick(self)
|
|
GAMEMODE:OpenClassSelect(false)
|
|
end
|
|
|
|
function PANEL:Init()
|
|
self.ClassButtons = {}
|
|
|
|
for i = 1, #GAMEMODE.ZombieClasses do
|
|
local classtab = GAMEMODE.ZombieClasses[i]
|
|
if classtab and classtab.Boss then
|
|
local button = vgui.Create("ClassButton", self)
|
|
button:SetClassTable(classtab)
|
|
|
|
table.insert(self.ClassButtons, button)
|
|
end
|
|
end
|
|
|
|
local button = EasyButton(self, "Back to normal class menu...", 8, 4)
|
|
self.ClassTypeButton = button
|
|
button.DoClick = ClassTypeDoClick
|
|
|
|
self:InvalidateLayout()
|
|
end
|
|
|
|
function PANEL:PerformLayout()
|
|
local spacing = self:GetWide() / math.max(1, #self.ClassButtons)
|
|
local tall = self:GetTall()
|
|
|
|
for i, classbutton in ipairs(self.ClassButtons) do
|
|
classbutton:SetSize(spacing, tall)
|
|
classbutton:SetPos((i - 1) * spacing + spacing * 0.5 - classbutton:GetWide() * 0.5, 0)
|
|
classbutton:CenterVertical()
|
|
end
|
|
|
|
self.ClassTypeButton:AlignLeft(4)
|
|
self.ClassTypeButton:AlignTop(4)
|
|
end
|
|
|
|
function PANEL:Paint()
|
|
local wid, hei = self:GetSize()
|
|
local edgesize = 32
|
|
|
|
DisableClipping(true)
|
|
surface.SetDrawColor(color_black_alpha220)
|
|
surface.DrawRect(0, 0, wid, hei)
|
|
surface.SetTexture(texUpEdge)
|
|
surface.DrawTexturedRect(0, -edgesize, wid, edgesize)
|
|
surface.SetTexture(texDownEdge)
|
|
surface.DrawTexturedRect(0, hei, wid, edgesize)
|
|
DisableClipping(false)
|
|
end
|
|
|
|
vgui.Register("ClassSelectBoss", PANEL, "Panel")
|
|
|
|
local PANEL = {}
|
|
|
|
function PANEL:Init()
|
|
self.NameLabel = vgui.Create("DLabel", self)
|
|
self.NameLabel:SetFont("ZSHUDFontSmaller")
|
|
self.NameLabel:SetAlpha(180)
|
|
self.Image = vgui.Create("DImage", self)
|
|
|
|
self:InvalidateLayout()
|
|
end
|
|
|
|
function PANEL:PerformLayout()
|
|
local imgsize = math.min(self:GetWide(), self:GetTall()) * 0.75
|
|
self.Image:SetSize(imgsize, imgsize)
|
|
self.Image:Center()
|
|
|
|
self.NameLabel:SizeToContents()
|
|
self.NameLabel:CenterHorizontal()
|
|
self.NameLabel:AlignBottom()
|
|
end
|
|
|
|
function PANEL:SetClassTable(classtable)
|
|
self.ClassTable = classtable
|
|
|
|
self.NameLabel:SetText(translate.Get(classtable.TranslationName))
|
|
self.Image:SetImage(classtable.Icon)
|
|
|
|
self:InvalidateLayout()
|
|
end
|
|
|
|
function PANEL:Paint()
|
|
return true
|
|
end
|
|
|
|
function PANEL:OnCursorEntered()
|
|
self.NameLabel:SetAlpha(255)
|
|
|
|
CreateHoveredClassWindow(self.ClassTable)
|
|
end
|
|
|
|
function PANEL:OnCursorExited()
|
|
self.NameLabel:SetAlpha(180)
|
|
|
|
if HoveredClassWindow and HoveredClassWindow:Valid() and HoveredClassWindow.ClassTable == self.ClassTable then
|
|
HoveredClassWindow:Remove()
|
|
end
|
|
end
|
|
|
|
function PANEL:DoClick()
|
|
if self.ClassTable then
|
|
if self.ClassTable.Boss then
|
|
RunConsoleCommand("zs_bossclass", self.ClassTable.Name)
|
|
GAMEMODE:CenterNotify(translate.Format("boss_class_select", self.ClassTable.Name))
|
|
else
|
|
RunConsoleCommand("zs_class", self.ClassTable.Name, GAMEMODE.SuicideOnChangeClass and "1" or "0")
|
|
end
|
|
end
|
|
|
|
surface.PlaySound("buttons/button15.wav")
|
|
|
|
Window:Remove()
|
|
end
|
|
|
|
function PANEL:Think()
|
|
if not self.ClassTable then return end
|
|
|
|
local enabled = LocalPlayer():GetZombieClass() == self.ClassTable.Index and 2 or gamemode.Call("IsClassUnlocked", self.ClassTable.Index) and 1 or 0
|
|
if enabled ~= self.LastEnabledState then
|
|
self.LastEnabledState = enabled
|
|
|
|
if enabled == 2 then
|
|
self.NameLabel:SetTextColor(COLOR_GREEN)
|
|
self.Image:SetImageColor(color_white)
|
|
elseif enabled == 1 then
|
|
self.NameLabel:SetTextColor(COLOR_GRAY)
|
|
self.Image:SetImageColor(color_white)
|
|
else
|
|
self.NameLabel:SetTextColor(COLOR_DARKRED)
|
|
self.Image:SetImageColor(COLOR_RED)
|
|
end
|
|
end
|
|
end
|
|
|
|
vgui.Register("ClassButton", PANEL, "Button")
|
|
|
|
local PANEL = {}
|
|
|
|
function PANEL:Init()
|
|
self.NameLabel = vgui.Create("DLabel", self)
|
|
self.NameLabel:SetFont("ZSHUDFontSmaller")
|
|
|
|
self.DescLabels = self.DescLabels or {}
|
|
|
|
self:InvalidateLayout()
|
|
end
|
|
|
|
function PANEL:SetClassTable(classtable)
|
|
self.ClassTable = classtable
|
|
|
|
self.NameLabel:SetText(translate.Get(classtable.TranslationName))
|
|
self.NameLabel:SizeToContents()
|
|
|
|
self:CreateDescLabels()
|
|
|
|
self:InvalidateLayout()
|
|
end
|
|
|
|
function PANEL:RemoveDescLabels()
|
|
for _, label in pairs(self.DescLabels) do
|
|
label:Remove()
|
|
end
|
|
|
|
self.DescLabels = {}
|
|
end
|
|
|
|
function PANEL:CreateDescLabels()
|
|
self:RemoveDescLabels()
|
|
|
|
self.DescLabels = {}
|
|
|
|
local classtable = self.ClassTable
|
|
if not classtable or not classtable.Description then return end
|
|
|
|
local lines = string.Explode("\n", translate.Get(classtable.Description))
|
|
if classtable.Wave and classtable.Wave > 0 then
|
|
table.insert(lines, 1, "("..translate.Format("unlocked_on_wave_x", classtable.Wave)..")")
|
|
end
|
|
|
|
if classtable.Help then
|
|
table.insert(lines, " ")
|
|
table.Add(lines, string.Explode("\n", translate.Get(classtable.Help)))
|
|
end
|
|
|
|
for _, line in ipairs(lines) do
|
|
local label = vgui.Create("DLabel", self)
|
|
label:SetText(line)
|
|
label:SetFont("ZSHUDFontTiny")
|
|
label:SizeToContents()
|
|
table.insert(self.DescLabels, label)
|
|
end
|
|
end
|
|
|
|
function PANEL:PerformLayout()
|
|
self.NameLabel:SizeToContents()
|
|
self.NameLabel:CenterHorizontal()
|
|
|
|
local maxw = self.NameLabel:GetWide()
|
|
for _, label in pairs(self.DescLabels) do
|
|
maxw = math.max(maxw, label:GetWide())
|
|
end
|
|
self:SetWide(maxw + 64)
|
|
self:CenterHorizontal()
|
|
|
|
for i, label in ipairs(self.DescLabels) do
|
|
label:MoveBelow(self.DescLabels[i - 1] or self.NameLabel)
|
|
label:CenterHorizontal()
|
|
end
|
|
|
|
local lastlabel = self.DescLabels[#self.DescLabels] or self.NameLabel
|
|
local x, y = lastlabel:GetPos()
|
|
self:SetTall(y + lastlabel:GetTall())
|
|
end
|
|
|
|
function PANEL:Think()
|
|
if not Window or not Window:Valid() or not Window:IsVisible() then
|
|
self:Remove()
|
|
end
|
|
end
|
|
|
|
function PANEL:Paint(w, h)
|
|
derma.SkinHook("Paint", "Frame", self, w, h)
|
|
|
|
return true
|
|
end
|
|
|
|
vgui.Register("ClassInfo", PANEL, "Panel")
|