Hotfix for keystrokes glitching with key unbound (#217)

This commit is contained in:
LostTrackpad 2024-10-04 20:05:52 +07:00 committed by GitHub
parent ec38d2d230
commit bd4a147c1b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"
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)
hook.Add("HUDPaint", "KeyStrokes", ShowKeyStrokes)