From 3b5894ffb69443ab2bbeff385b615730418d108c Mon Sep 17 00:00:00 2001 From: LostTrackpad <161031457+LostTrackpad@users.noreply.github.com> Date: Fri, 4 Oct 2024 17:47:37 +0700 Subject: [PATCH] Hotfix: Fix keystrokes erroring with keys unbound --- .../beatrun/gamemode/cl/Keystrokes.lua | 40 +++++++++++++------ 1 file changed, 28 insertions(+), 12 deletions(-) diff --git a/beatrun/gamemodes/beatrun/gamemode/cl/Keystrokes.lua b/beatrun/gamemodes/beatrun/gamemode/cl/Keystrokes.lua index cd36921..7e1a51c 100644 --- a/beatrun/gamemodes/beatrun/gamemode/cl/Keystrokes.lua +++ b/beatrun/gamemodes/beatrun/gamemode/cl/Keystrokes.lua @@ -6,19 +6,35 @@ local color_black = Color(0, 0, 0) local color_black_t = Color(0, 0, 0, 100) local size = 35 +local function GetFormattedKey(bind) + string = input.LookupBinding(bind) + + if string == "MOUSE1" then string = "LMB" -- Don't localize LMB and RMB. Maybe. + elseif string == "MOUSE2" then string = "RMB" + elseif string == "MOUSE3" then string = "MMB" end + + if string then + return string.upper(string) + else + return "???" + end +end + local function ShowKeyStrokes() if showKeystrokes:GetBool() and GetConVar("Beatrun_HUDHidden"):GetInt() == 0 then - local forward = string.upper(input.LookupBinding("+forward")) - local back = string.upper(input.LookupBinding("+back")) - local moveleft = string.upper(input.LookupBinding("+moveleft")) - local moveright = string.upper(input.LookupBinding("+moveright")) - local use = string.upper(input.LookupBinding("+use")) - local reload = string.upper(input.LookupBinding("+reload")) - local jump = string.upper(input.LookupBinding("+jump")) - local speed = string.upper(input.LookupBinding("+speed")) - local duck = string.upper(input.LookupBinding("+duck")) - local attack = string.upper(input.LookupBinding("+attack")) - local attack2 = string.upper(input.LookupBinding("+attack2")) + -- will have inconsistent indent on GH web view, thanks github + -- absolutely indented correctly, view in an editor like vscode + local forward = GetFormattedKey("+forward") + local back = GetFormattedKey("+back") + local moveleft = GetFormattedKey("+moveleft") + local moveright = GetFormattedKey("+moveright") + local use = GetFormattedKey("+use") + local reload = GetFormattedKey("+reload") + local jump = GetFormattedKey("+jump") + local speed = GetFormattedKey("+speed") + local duck = GetFormattedKey("+duck") + local attack = GetFormattedKey("+attack") + local attack2 = GetFormattedKey("+attack2") if attack == "MOUSE1" then attack = "LMB" end if attack2 == "MOUSE2" then attack2 = "RMB" end @@ -146,4 +162,4 @@ local function ShowKeyStrokes() end end -hook.Add("HUDPaint", "KeyStrokes", ShowKeyStrokes) \ No newline at end of file +hook.Add("HUDPaint", "KeyStrokes", ShowKeyStrokes)