Mitigating Code Bloat with Input Handling
Posted: Fri Apr 04, 2025 8:27 pm
I want to provide controller support, so I added a gamepadpressed function to my file. As the game grows in size, I am essentially doubling the lines of code for handling input. How do you mitigate this kind of code bloat? In order to keep things focused rn, we can assume that I don't really care that users can use both forms of input at once to cause unintended behavior.
Ex:
As I add game states and classes, this seems like it can quickly get out of hand:
How do you usually organize your input handling when dealing with OOP and multiple gamestates? Or do you usually not even sweat this kind of stuff?
Ex:
Code: Select all
function character_select:keypressed(key)
if key == 'right' then
character_select:set_right()
end
statPreview = character_select:setStatPreview()
end;
function character_select:gamepadpressed(joystick, button)
if button == 'dpright' then
character_select:set_right()
end
statPreview = character_select:setStatPreview()
end;
Code: Select all
--[[ Hierarchy of keypressed chain:
1.
combat:keypressed -> characterTeam:keypressed
characterTeam:keypressed -> each character:keypressed
character:keypressed -> offenseState:keypressed OR defenseState:keypressed
2. combat:keypressed -> actionUI:keypressed
]]
function combat:keypressed(key)
self.characterTeam:keypressed(key)
if self.actionUI then
self.actionUI:keypressed(key)
end
end;