Skip to content
Snippets Groups Projects
Commit 2bed7e6c authored by Annika Österdiekhoff's avatar Annika Österdiekhoff
Browse files

fix switching multiple times in one frame

parent 3dbfa664
No related branches found
No related tags found
1 merge request!45Resolve "Controller Support"
Pipeline #46228 passed
......@@ -348,20 +348,19 @@ class PyGameGUI:
self.send_action(action)
# interact = Button X <-> 2
if event.button == 2:
if event.type == pygame.JOYBUTTONDOWN:
action = Action(
current_player_name, ActionType.INTERACT, InterActionData.START
)
self.send_action(action)
if joysticks[key_set.joystick].get_button(2) and event.type == pygame.JOYBUTTONDOWN:
action = Action(
current_player_name, ActionType.INTERACT, InterActionData.START
)
self.send_action(action)
# stop interaction if last pressed button was X <-> 2
elif event.type == pygame.JOYBUTTONUP:
action = Action(
current_player_name, ActionType.INTERACT, InterActionData.STOP
)
self.send_action(action)
if event.button == 2 and event.type == pygame.JOYBUTTONUP:
action = Action(
current_player_name, ActionType.INTERACT, InterActionData.STOP
)
self.send_action(action)
# switch button Y <-> 3
if event.button == 3 and not CONNECT_WITH_STUDY_SERVER:
if joysticks[key_set.joystick].get_button(3) and not CONNECT_WITH_STUDY_SERVER:
if event.type == pygame.JOYBUTTONDOWN:
key_set.next_player()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment