Files
wnsrc/lua/vgui/stackerpreseteditor.lua
lifestorm 6a58f406b1 Upload
2024-08-04 23:54:45 +03:00

60 lines
1.6 KiB
Lua

--[[
| This file was obtained through the combined efforts
| of Madbluntz & Plymouth Antiquarian Society.
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
| Maloy, DrPepper10 @ RIP, Atle!
|
| Visit for more: https://plymouth.thetwilightzone.ru/
--]]
--[[--------------------------------------------------------------------------
-- Namespace Tables
--------------------------------------------------------------------------]]--
local PANEL = {}
--[[--------------------------------------------------------------------------
-- Localized Functions & Variables
--------------------------------------------------------------------------]]--
local vgui = vgui
local pairs = pairs
local AccessorFunc = AccessorFunc
local GetConVarString = GetConVarString
--[[--------------------------------------------------------------------------
-- Namespace Functions
--------------------------------------------------------------------------]]--
AccessorFunc( PANEL, "m_ConCommands", "ConCommands" )
--[[--------------------------------------------------------------------------
--
-- PANEL:Add()
--
--]]--
function PANEL:Add()
if ( not self.m_ConVars ) then return end
local ToName = self.txtName:GetValue()
if ( not ToName or ToName == "" ) then return end
-- Todo, Handle name collision
local tabValues = {}
for k, v in pairs( self.m_ConVars ) do
tabValues[ v.CCmd ] = GetConVarString( v.CVar )
end
presets.Add( self.m_strType, ToName, tabValues )
self:Update()
self.PresetList:SelectByName( ToName )
self.txtName:SetText( "" )
if ( self.m_PresetControl ) then
self.m_PresetControl:Update()
end
end
vgui.Register( "StackerPresetEditor", PANEL, "PresetEditor" )