walker.gd 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. var _seat: Node3D = null
  16. @onready var _vehicle_range: RayCast3D = $VehicleRange
  17. func _ready() -> void:
  18. focus_required.emit(self)
  19. func trigger_jump() -> void:
  20. if is_on_floor():
  21. target_velocity.y = jump_impulse
  22. func trigger_direction(dir: Vector2) -> void:
  23. target_rotation = -dir.x * turn_to_rad
  24. var ground_velocity: Vector2 = Vector2.UP.rotated(-global_rotation.y) * dir.y * speed
  25. target_velocity.x = ground_velocity.x
  26. target_velocity.z = ground_velocity.y
  27. ## Return true if inside a vehicle
  28. func is_onboard() -> bool:
  29. return _vehicle != null
  30. func _physics_process(delta: float) -> void:
  31. if is_onboard():
  32. _get_on_driver_seat()
  33. else:
  34. _move_with_feet(delta)
  35. func _move_with_feet(delta: float):
  36. rotate_y(target_rotation)
  37. # Gravity
  38. if not is_on_floor():
  39. target_velocity.y = target_velocity.y - (fall_acceleration * delta)
  40. # Moving the Character
  41. velocity = target_velocity
  42. move_and_slide()
  43. func _get_on_driver_seat() -> void:
  44. if _seat == null :
  45. return
  46. if position.distance_squared_to(_seat.position) < 0.05:
  47. print("Seat reachead at ", _seat.position)
  48. _seat = null
  49. return
  50. set_rotation(_seat.get_rotation())
  51. var local_velocity = (_seat.position - position).normalized() * 0.90
  52. velocity = get_parent().get_transform().basis * local_velocity
  53. print("- I'm at ", position, ", going to ", _seat.position, " with speed ", velocity)
  54. move_and_slide()
  55. func _on_dir_changed(dir: Vector2) -> void:
  56. trigger_direction(dir)
  57. func _on_main_action(pressed: bool) -> void:
  58. if pressed:
  59. trigger_jump()
  60. func _on_get_in_action(commander: LocalInput) -> void:
  61. if is_onboard():
  62. _get_out_vehicle()
  63. else:
  64. _get_in_vehicle(commander)
  65. ## Seek the first vehicle in front of the player
  66. ## and get in to it
  67. ## and take the wheel !
  68. func _get_in_vehicle(commander: LocalInput) -> void:
  69. var closest_vehicle: Node3D = _get_closest_vehicle()
  70. if closest_vehicle == null:
  71. return # No vehicle to get inside
  72. _vehicle = closest_vehicle
  73. reparent(_vehicle)
  74. add_collision_exception_with(_vehicle)
  75. _vehicle.drive_with(commander)
  76. _seat = _find_seat_on(_vehicle)
  77. print("I'm at ", position, " and I want to seat on ", _seat.position)
  78. ## Get out of the current vehicle
  79. func _get_out_vehicle() -> void:
  80. _vehicle.get_out()
  81. remove_collision_exception_with(_vehicle)
  82. reparent(_vehicle.get_parent())
  83. _vehicle = null
  84. _seat = null
  85. _get_head_up()
  86. ## Make the player stand up
  87. func _get_head_up():
  88. set_rotation(Vector3(0.0, rotation.y, 0.0))
  89. ## Return closest vehicle within reach
  90. ## or null if there are none
  91. func _get_closest_vehicle() -> Node3D:
  92. _vehicle_range.force_raycast_update()
  93. var object_within_range: Object = _vehicle_range.get_collider()
  94. if object_within_range is Node3D:
  95. var node_within_range: Node3D = object_within_range as Node3D
  96. if node_within_range.is_in_group("vehicle"):
  97. print("Get in ", node_within_range)
  98. return node_within_range
  99. print("No vehicle found")
  100. return null
  101. ## Have a seat on the driven vehicle if a seat
  102. ## is available
  103. func _find_seat_on(vehicule: Node3D) -> Node3D:
  104. if vehicule.has_method("get_free_seat") :
  105. return vehicule.get_free_seat()
  106. return null