walker.gd 2.9 KB

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