walker.gd 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. class_name Walker
  2. extends CharacterBody3D
  3. ## How fast the player moves in meters per second.
  4. @export var speed = 14
  5. ## Convert an axis from [-1, -1] to rad
  6. @export var turn_to_rad: float = 0.020
  7. ## The downward acceleration when in the air, in meters per second squared.
  8. @export var fall_acceleration = 75
  9. ## Vertical impulse applied to the character upon jumping in meters per second.
  10. @export var jump_impulse = 20
  11. var target_velocity := Vector3.ZERO
  12. var target_rotation: float = 0.0
  13. var _vehicle: Node3D = null
  14. @onready var _vehicle_range: RayCast3D = $VehicleRange
  15. ## Jump if is on floor
  16. func trigger_jump() -> void:
  17. if is_on_floor():
  18. target_velocity.y = jump_impulse
  19. func trigger_direction(dir: Vector2) -> void:
  20. target_rotation = -dir.x * turn_to_rad
  21. var ground_velocity: Vector2 = Vector2.UP.rotated(-global_rotation.y) * dir.y * speed
  22. target_velocity.x = ground_velocity.x
  23. target_velocity.z = ground_velocity.y
  24. ## Return true if inside a vehicle
  25. func is_onboard() -> bool:
  26. return _vehicle != null
  27. func _physics_process(delta: float) -> void:
  28. if is_onboard():
  29. _get_on_driver_seat()
  30. else:
  31. _move_with_feet(delta)
  32. func _move_with_feet(delta: float):
  33. rotate_y(target_rotation)
  34. # Gravity
  35. if not is_on_floor():
  36. target_velocity.y = target_velocity.y - (fall_acceleration * delta)
  37. # Moving the Character
  38. velocity = target_velocity
  39. move_and_slide()
  40. func _get_on_driver_seat() -> void:
  41. pass # Not implemented yet
  42. func _on_dir_changed(dir: Vector2) -> void:
  43. trigger_direction(dir)
  44. func _on_main_action(pressed: bool) -> void:
  45. if pressed:
  46. trigger_jump()
  47. func _on_get_in_action(commander: LocalInput) -> void:
  48. if is_onboard():
  49. _get_out_vehicle()
  50. else:
  51. _get_in_vehicle(commander)
  52. ## Seek the first vehicle in front of the player
  53. ## and get in to it
  54. ## and take the wheel !
  55. func _get_in_vehicle(commander: LocalInput) -> void:
  56. var closest_vehicle: Node3D = _get_closest_vehicle()
  57. if closest_vehicle == null:
  58. return # No vehicle to get inside
  59. _vehicle = closest_vehicle
  60. reparent(_vehicle)
  61. add_collision_exception_with(_vehicle)
  62. _vehicle.drive_with(commander)
  63. ## Get out of the current vehicle
  64. func _get_out_vehicle() -> void:
  65. _vehicle.get_out()
  66. remove_collision_exception_with(_vehicle)
  67. reparent(_vehicle.get_parent())
  68. _vehicle = null
  69. # Not implemented yet
  70. ## Return closest vehicle within reach
  71. ## or null if there are none
  72. func _get_closest_vehicle() -> Node3D:
  73. _vehicle_range.force_raycast_update()
  74. var object_within_range: Object = _vehicle_range.get_collider()
  75. if object_within_range is Node3D:
  76. var node_within_range: Node3D = object_within_range as Node3D
  77. if node_within_range.is_in_group("vehicle"):
  78. print("Get in ", node_within_range)
  79. return node_within_range
  80. print("No vehicle found")
  81. return null