mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 21:33:46 +03:00
266 lines
7.7 KiB
Lua
266 lines
7.7 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/
|
|
--]]
|
|
|
|
---- Help screen
|
|
|
|
local GetTranslation = LANG.GetTranslation
|
|
local GetPTranslation = LANG.GetParamTranslation
|
|
|
|
CreateConVar("ttt_spectator_mode", "0", FCVAR_ARCHIVE)
|
|
CreateConVar("ttt_mute_team_check", "0")
|
|
|
|
CreateClientConVar("ttt_avoid_detective", "0", true, true)
|
|
|
|
HELPSCRN = {}
|
|
|
|
local dframe
|
|
function HELPSCRN:Show()
|
|
if IsValid(dframe) then return end
|
|
local margin = 15
|
|
|
|
dframe = vgui.Create("DFrame")
|
|
local w, h = 630, 470
|
|
dframe:SetSize(w, h)
|
|
dframe:Center()
|
|
dframe:SetTitle(GetTranslation("help_title"))
|
|
dframe:ShowCloseButton(true)
|
|
|
|
local dbut = vgui.Create("DButton", dframe)
|
|
local bw, bh = 50, 25
|
|
dbut:SetSize(bw, bh)
|
|
dbut:SetPos(w - bw - margin, h - bh - margin/2)
|
|
dbut:SetText(GetTranslation("close"))
|
|
dbut.DoClick = function() dframe:Close() end
|
|
|
|
|
|
local dtabs = vgui.Create("DPropertySheet", dframe)
|
|
dtabs:SetPos(margin, margin * 2)
|
|
dtabs:SetSize(w - margin*2, h - margin*3 - bh)
|
|
|
|
local padding = dtabs:GetPadding()
|
|
|
|
padding = padding * 2
|
|
|
|
local tutparent = vgui.Create("DPanel", dtabs)
|
|
tutparent:SetPaintBackground(false)
|
|
tutparent:StretchToParent(margin, 0, 0, 0)
|
|
|
|
self:CreateTutorial(tutparent)
|
|
|
|
dtabs:AddSheet(GetTranslation("help_tut"), tutparent, "icon16/book_open.png", false, false, GetTranslation("help_tut_tip"))
|
|
|
|
local dsettings = vgui.Create("DPanelList", dtabs)
|
|
dsettings:StretchToParent(0,0,padding,0)
|
|
dsettings:EnableVerticalScrollbar()
|
|
dsettings:SetPadding(10)
|
|
dsettings:SetSpacing(10)
|
|
|
|
--- Interface area
|
|
|
|
local dgui = vgui.Create("DForm", dsettings)
|
|
dgui:SetName(GetTranslation("set_title_gui"))
|
|
|
|
local cb = nil
|
|
|
|
dgui:CheckBox(GetTranslation("set_tips"), "ttt_tips_enable")
|
|
|
|
cb = dgui:NumSlider(GetTranslation("set_startpopup"), "ttt_startpopup_duration", 0, 60, 0)
|
|
if cb.Label then
|
|
cb.Label:SetWrap(true)
|
|
end
|
|
cb:SetTooltip(GetTranslation("set_startpopup_tip"))
|
|
|
|
cb = dgui:NumSlider(GetTranslation("set_cross_opacity"), "ttt_ironsights_crosshair_opacity", 0, 1, 1)
|
|
if cb.Label then
|
|
cb.Label:SetWrap(true)
|
|
end
|
|
cb:SetTooltip(GetTranslation("set_cross_opacity"))
|
|
|
|
cb = dgui:NumSlider(GetTranslation("set_cross_brightness"), "ttt_crosshair_brightness", 0, 1, 1)
|
|
if cb.Label then
|
|
cb.Label:SetWrap(true)
|
|
end
|
|
|
|
cb = dgui:NumSlider(GetTranslation("set_cross_size"), "ttt_crosshair_size", 0.1, 3, 1)
|
|
if cb.Label then
|
|
cb.Label:SetWrap(true)
|
|
end
|
|
|
|
dgui:CheckBox(GetTranslation("set_cross_disable"), "ttt_disable_crosshair")
|
|
|
|
dgui:CheckBox(GetTranslation("set_minimal_id"), "ttt_minimal_targetid")
|
|
|
|
dgui:CheckBox(GetTranslation("set_healthlabel"), "ttt_health_label")
|
|
|
|
cb = dgui:CheckBox(GetTranslation("set_lowsights"), "ttt_ironsights_lowered")
|
|
cb:SetTooltip(GetTranslation("set_lowsights_tip"))
|
|
|
|
cb = dgui:CheckBox(GetTranslation("set_fastsw"), "ttt_weaponswitcher_fast")
|
|
cb:SetTooltip(GetTranslation("set_fastsw_tip"))
|
|
|
|
cb = dgui:CheckBox(GetTranslation("set_fastsw_menu"), "ttt_weaponswitcher_displayfast")
|
|
cb:SetTooltip(GetTranslation("set_fastswmenu_tip"))
|
|
|
|
cb = dgui:CheckBox(GetTranslation("set_wswitch"), "ttt_weaponswitcher_stay")
|
|
cb:SetTooltip(GetTranslation("set_wswitch_tip"))
|
|
|
|
cb = dgui:CheckBox(GetTranslation("set_cues"), "ttt_cl_soundcues")
|
|
|
|
cb = dgui:CheckBox(GetTranslation("set_msg_cue"), "ttt_cl_msg_soundcue")
|
|
|
|
dsettings:AddItem(dgui)
|
|
|
|
--- Gameplay area
|
|
|
|
local dplay = vgui.Create("DForm", dsettings)
|
|
dplay:SetName(GetTranslation("set_title_play"))
|
|
|
|
cb = dplay:CheckBox(GetTranslation("set_avoid_det"), "ttt_avoid_detective")
|
|
cb:SetTooltip(GetTranslation("set_avoid_det_tip"))
|
|
|
|
cb = dplay:CheckBox(GetTranslation("set_specmode"), "ttt_spectator_mode")
|
|
cb:SetTooltip(GetTranslation("set_specmode_tip"))
|
|
|
|
-- For some reason this one defaulted to on, unlike other checkboxes, so
|
|
-- force it to the actual value of the cvar (which defaults to off)
|
|
local mute = dplay:CheckBox(GetTranslation("set_mute"), "ttt_mute_team_check")
|
|
mute:SetValue(GetConVar("ttt_mute_team_check"):GetBool())
|
|
mute:SetTooltip(GetTranslation("set_mute_tip"))
|
|
|
|
dsettings:AddItem(dplay)
|
|
|
|
--- Language area
|
|
local dlanguage = vgui.Create("DForm", dsettings)
|
|
dlanguage:SetName(GetTranslation("set_title_lang"))
|
|
|
|
local dlang = vgui.Create("DComboBox", dlanguage)
|
|
dlang:SetConVar("ttt_language")
|
|
|
|
dlang:AddChoice("Server default", "auto")
|
|
for lang, lang_name in pairs(LANG.GetLanguageNames()) do
|
|
dlang:AddChoice(lang_name, lang)
|
|
end
|
|
|
|
-- Why is DComboBox not updating the cvar by default?
|
|
dlang.OnSelect = function(idx, val, data)
|
|
RunConsoleCommand("ttt_language", data)
|
|
end
|
|
dlang.Think = dlang.ConVarStringThink
|
|
|
|
dlanguage:Help(GetTranslation("set_lang"))
|
|
dlanguage:AddItem(dlang)
|
|
|
|
dsettings:AddItem(dlanguage)
|
|
|
|
dtabs:AddSheet(GetTranslation("help_settings"), dsettings, "icon16/wrench.png", false, false, GetTranslation("help_settings_tip"))
|
|
|
|
hook.Call("TTTSettingsTabs", GAMEMODE, dtabs)
|
|
|
|
dframe:MakePopup()
|
|
end
|
|
|
|
|
|
local function ShowTTTHelp(ply, cmd, args)
|
|
HELPSCRN:Show()
|
|
end
|
|
concommand.Add("ttt_helpscreen", ShowTTTHelp)
|
|
|
|
-- Some spectator mode bookkeeping
|
|
|
|
local function SpectateCallback(cv, old, new)
|
|
local num = tonumber(new)
|
|
if num and (num == 0 or num == 1) then
|
|
RunConsoleCommand("ttt_spectate", num)
|
|
end
|
|
end
|
|
cvars.AddChangeCallback("ttt_spectator_mode", SpectateCallback)
|
|
|
|
local function MuteTeamCallback(cv, old, new)
|
|
local num = tonumber(new)
|
|
if num and (num == 0 or num == 1) then
|
|
RunConsoleCommand("ttt_mute_team", num)
|
|
end
|
|
end
|
|
cvars.AddChangeCallback("ttt_mute_team_check", MuteTeamCallback)
|
|
|
|
--- Tutorial
|
|
|
|
local imgpath = "vgui/ttt/help/tut0%d"
|
|
local tutorial_pages = 6
|
|
function HELPSCRN:CreateTutorial(parent)
|
|
local w, h = parent:GetSize()
|
|
local m = 5
|
|
|
|
local bg = vgui.Create("ColoredBox", parent)
|
|
bg:StretchToParent(0,0,0,0)
|
|
bg:SetTall(330)
|
|
bg:SetColor(COLOR_BLACK)
|
|
|
|
local tut = vgui.Create("DImage", parent)
|
|
tut:StretchToParent(0, 0, 0, 0)
|
|
tut:SetVerticalScrollbarEnabled(false)
|
|
|
|
tut:SetImage(Format(imgpath, 1))
|
|
tut:SetWide(1024)
|
|
tut:SetTall(512)
|
|
|
|
tut.current = 1
|
|
|
|
|
|
local bw, bh = 100, 30
|
|
|
|
local bar = vgui.Create("TTTProgressBar", parent)
|
|
bar:SetSize(200, bh)
|
|
bar:MoveBelow(bg)
|
|
bar:CenterHorizontal()
|
|
bar:SetMin(1)
|
|
bar:SetMax(tutorial_pages)
|
|
bar:SetValue(1)
|
|
bar:SetColor(Color(0,200,0))
|
|
|
|
-- fixing your panels...
|
|
bar.UpdateText = function(s)
|
|
s.Label:SetText(Format("%i / %i", s.m_iValue, s.m_iMax))
|
|
end
|
|
|
|
bar:UpdateText()
|
|
|
|
|
|
local bnext = vgui.Create("DButton", parent)
|
|
bnext:SetFont("Trebuchet22")
|
|
bnext:SetSize(bw, bh)
|
|
bnext:SetText(GetTranslation("next"))
|
|
bnext:CopyPos(bar)
|
|
bnext:AlignRight(1)
|
|
|
|
local bprev = vgui.Create("DButton", parent)
|
|
bprev:SetFont("Trebuchet22")
|
|
bprev:SetSize(bw, bh)
|
|
bprev:SetText(GetTranslation("prev"))
|
|
bprev:CopyPos(bar)
|
|
bprev:AlignLeft()
|
|
|
|
bnext.DoClick = function()
|
|
if tut.current < tutorial_pages then
|
|
tut.current = tut.current + 1
|
|
tut:SetImage(Format(imgpath, tut.current))
|
|
bar:SetValue(tut.current)
|
|
end
|
|
end
|
|
|
|
bprev.DoClick = function()
|
|
if tut.current > 1 then
|
|
tut.current = tut.current - 1
|
|
tut:SetImage(Format(imgpath, tut.current))
|
|
bar:SetValue(tut.current)
|
|
end
|
|
end
|
|
end
|