jumper_input.gd 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. class_name JumperInput
  2. extends MultiplayerSynchronizer
  3. const STICK_DEADZONE: float = 0.5
  4. # Set via RPC to simulate is_action_just_pressed.
  5. @export var jumping: bool = false
  6. # Synchronized property.
  7. @export var direction := Vector2()
  8. func _ready():
  9. # Only process for the local player
  10. set_process(get_multiplayer_authority() == multiplayer.get_unique_id())
  11. @rpc("call_local")
  12. func jump() -> void:
  13. jumping = true
  14. func _process(delta: float) -> void:
  15. # Get the input direction and handle the movement/deceleration.
  16. direction = _new_direction()
  17. if Input.is_action_just_pressed("jump"):
  18. jump.rpc()
  19. func _new_direction() -> Vector2:
  20. var new_dir := Vector2.ZERO
  21. #new_dir += _direction_from_axis()
  22. new_dir += _direction_from_keys()
  23. if new_dir == Vector2.ZERO:
  24. return Vector2.ZERO
  25. return new_dir.normalized()
  26. func _direction_from_axis() -> Vector2:
  27. var axis_dir := Vector2(Input.get_joy_axis(0, JOY_AXIS_LEFT_X), 0.0)
  28. if absf(axis_dir.x) < STICK_DEADZONE:
  29. axis_dir.x = 0.0
  30. return axis_dir
  31. func _direction_from_keys() -> Vector2:
  32. return Vector2(Input.get_axis("move_left", "move_right"), 0)