walker.gd 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. class_name Walker
  2. extends CharacterBody3D
  3. signal focus_required(me: Node3D)
  4. signal got_in(vehicle: SeatedVehicle)
  5. signal got_out
  6. signal can_get_in(possible: bool)
  7. signal chocolate_collected
  8. ## How fast the player moves in meters per second.
  9. @export var speed = 14
  10. ## Convert an axis from [-1, -1] to rad
  11. @export var turn_to_rad: float = 0.020
  12. ## The downward acceleration when in the air, in meters per second squared.
  13. @export var fall_acceleration = 75
  14. ## Vertical impulse applied to the character upon jumping in meters per second.
  15. @export var jump_impulse = 20
  16. @export_group("Seat", "seat_")
  17. @export var seat_min_dist: float = 0.0005
  18. @export var seat_access_speed: float = 2.0
  19. @export var seat_rotation_duration: float = 1.0
  20. var target_velocity := Vector3.ZERO
  21. var target_character_direction := Vector3.ZERO # From command
  22. var _vehicle: Node3D = null
  23. var _seat: Node3D = null
  24. var _can_get_in: bool = false
  25. @onready var _vehicle_range: RayCast3D = $VehicleRange
  26. func _ready() -> void:
  27. focus_required.emit(self)
  28. func trigger_jump() -> void:
  29. if is_on_floor():
  30. target_velocity.y = jump_impulse
  31. func trigger_direction(dir: Vector2) -> void:
  32. target_character_direction = Vector3(dir.x, 0.0, -dir.y)
  33. ## Return true if inside a vehicle
  34. func is_onboard() -> bool:
  35. return _vehicle != null
  36. ## Return true if the player can get in a vehicle
  37. func can_get_in_vehicle() -> bool:
  38. return !is_onboard() and _get_closest_vehicle() != null
  39. ## Give this walker a chocolate bar
  40. func give_chocolate():
  41. chocolate_collected.emit()
  42. ## Return local pocket position where the chocolate is collected
  43. func get_pocket_position() -> Vector3:
  44. return $ChocolatePocket.get_position()
  45. func _physics_process(delta: float) -> void:
  46. if is_onboard():
  47. _get_on_driver_seat()
  48. else:
  49. _move_with_feet(delta)
  50. _signal_when_can_get_in()
  51. func _move_with_feet(delta: float):
  52. # Walk according to the camera angle
  53. var camera_basis: Basis = get_viewport().get_camera_3d().get_camera_transform().basis
  54. var target_world_direction: Vector3 = camera_basis * target_character_direction
  55. target_world_direction.y = 0.0
  56. var target_walk_velocity = target_world_direction.normalized() * speed * target_character_direction.length()
  57. target_velocity.x = target_walk_velocity.x
  58. target_velocity.z = target_walk_velocity.z
  59. # Face forward
  60. _look_forward(target_velocity)
  61. # Gravity
  62. if not is_on_floor():
  63. target_velocity.y = target_velocity.y - (fall_acceleration * delta)
  64. # Moving the Character
  65. velocity = target_velocity
  66. move_and_slide()
  67. ## Trigger only signal when ability is changed
  68. func _signal_when_can_get_in() -> void:
  69. var can_get_in_now : bool = can_get_in_vehicle()
  70. if _can_get_in != can_get_in_now:
  71. can_get_in.emit(can_get_in_now)
  72. _can_get_in = can_get_in_now
  73. func _get_on_driver_seat() -> void:
  74. if _seat == null :
  75. return
  76. if position.distance_squared_to(_seat.position) < seat_min_dist:
  77. return
  78. var rotation_tween: Tween = create_tween()
  79. rotation_tween.tween_property(self, "quaternion", _seat.quaternion, seat_rotation_duration)
  80. var local_velocity = (_seat.position - position).normalized() * seat_access_speed
  81. velocity = get_parent().get_transform().basis * local_velocity
  82. move_and_slide()
  83. func _on_dir_changed(dir: Vector2) -> void:
  84. if is_onboard():
  85. return
  86. trigger_direction(dir)
  87. func _on_main_action(pressed: bool) -> void:
  88. if is_onboard():
  89. return
  90. if pressed:
  91. trigger_jump()
  92. func _on_get_in_action(commander: LocalInput) -> void:
  93. if is_onboard():
  94. _get_out_vehicle()
  95. else:
  96. _get_in_vehicle(commander)
  97. ## Seek the first vehicle in front of the player
  98. ## and get in to it
  99. ## and take the wheel !
  100. func _get_in_vehicle(commander: LocalInput) -> void:
  101. var closest_vehicle: Node3D = _get_closest_vehicle()
  102. if closest_vehicle == null:
  103. return # No vehicle to get inside
  104. _vehicle = closest_vehicle
  105. reparent(_vehicle)
  106. add_collision_exception_with(_vehicle)
  107. _vehicle.drive_with(commander)
  108. _seat = _find_seat_on(_vehicle)
  109. got_in.emit(_vehicle)
  110. ## Get out of the current vehicle
  111. func _get_out_vehicle() -> void:
  112. _vehicle.get_out()
  113. remove_collision_exception_with(_vehicle)
  114. reparent(_vehicle.get_parent())
  115. _vehicle = null
  116. _seat = null
  117. _get_head_up()
  118. got_out.emit()
  119. ## Make the player stand up
  120. func _get_head_up():
  121. set_rotation(Vector3(0.0, rotation.y, 0.0))
  122. ## Make the player look forward
  123. func _look_forward(forward: Vector3) -> void:
  124. var horizontal_forward: Vector3 = forward.slide(Vector3.UP)
  125. if horizontal_forward.is_zero_approx():
  126. return
  127. else:
  128. look_at(position + horizontal_forward)
  129. ## Return closest vehicle within reach
  130. ## or null if there are none
  131. func _get_closest_vehicle() -> Node3D:
  132. _vehicle_range.force_raycast_update()
  133. var object_within_range: Object = _vehicle_range.get_collider()
  134. if object_within_range is Node3D:
  135. var node_within_range: Node3D = object_within_range as Node3D
  136. if node_within_range.is_in_group("vehicle"):
  137. return node_within_range
  138. return null
  139. ## Have a seat on the driven vehicle if a seat
  140. ## is available
  141. func _find_seat_on(vehicule: Node3D) -> Node3D:
  142. if vehicule.has_method("get_free_seat") :
  143. return vehicule.get_free_seat()
  144. return null