|
@@ -17,16 +17,14 @@ signal chocolate_collected
|
|
|
## Vertical impulse applied to the character upon jumping in meters per second.
|
|
|
@export var jump_impulse = 20
|
|
|
|
|
|
-@export_group("Seat", "seat_")
|
|
|
-@export var seat_min_dist: float = 0.0005
|
|
|
-@export var seat_access_speed: float = 2.0
|
|
|
-@export var seat_rotation_duration: float = 1.0
|
|
|
+@export_group("Boarding", "board_")
|
|
|
+@export var board_door_access_duration: float = 1.0
|
|
|
+@export var board_seat_access_duration: float = 0.5
|
|
|
|
|
|
var target_velocity := Vector3.ZERO
|
|
|
var target_character_direction := Vector3.ZERO # From command
|
|
|
|
|
|
-var _vehicle: Node3D = null
|
|
|
-var _seat: Node3D = null
|
|
|
+var _vehicle: SeatedVehicle = null
|
|
|
var _can_get_in: bool = false
|
|
|
|
|
|
@onready var _vehicle_range: RayCast3D = $VehicleRange
|
|
@@ -67,7 +65,7 @@ func get_pocket_position() -> Vector3:
|
|
|
|
|
|
func _physics_process(delta: float) -> void:
|
|
|
if is_onboard():
|
|
|
- _get_on_driver_seat()
|
|
|
+ pass # Nothing
|
|
|
else:
|
|
|
_move_with_feet(delta)
|
|
|
_signal_when_can_get_in()
|
|
@@ -103,21 +101,6 @@ func _signal_when_can_get_in() -> void:
|
|
|
_can_get_in = can_get_in_now
|
|
|
|
|
|
|
|
|
-func _get_on_driver_seat() -> void:
|
|
|
- if _seat == null :
|
|
|
- return
|
|
|
-
|
|
|
- if position.distance_squared_to(_seat.position) < seat_min_dist:
|
|
|
- return
|
|
|
-
|
|
|
- var rotation_tween: Tween = create_tween()
|
|
|
- rotation_tween.tween_property(self, "quaternion", _seat.quaternion, seat_rotation_duration)
|
|
|
-
|
|
|
- var local_velocity = (_seat.position - position).normalized() * seat_access_speed
|
|
|
- velocity = get_parent().get_transform().basis * local_velocity
|
|
|
- move_and_slide()
|
|
|
-
|
|
|
-
|
|
|
func _on_dir_changed(dir: Vector2) -> void:
|
|
|
if is_onboard():
|
|
|
return
|
|
@@ -144,7 +127,7 @@ func _on_get_in_action(commander: LocalInput) -> void:
|
|
|
## and get in to it
|
|
|
## and take the wheel !
|
|
|
func _get_in_vehicle(commander: LocalInput) -> void:
|
|
|
- var closest_vehicle: Node3D = _get_closest_vehicle()
|
|
|
+ var closest_vehicle: SeatedVehicle = _get_closest_vehicle()
|
|
|
|
|
|
if closest_vehicle == null:
|
|
|
return # No vehicle to get inside
|
|
@@ -153,7 +136,7 @@ func _get_in_vehicle(commander: LocalInput) -> void:
|
|
|
reparent(_vehicle)
|
|
|
add_collision_exception_with(_vehicle)
|
|
|
_vehicle.drive_with(commander)
|
|
|
- _seat = _find_seat_on(_vehicle)
|
|
|
+ _move_to_seat(_vehicle)
|
|
|
got_in.emit(_vehicle)
|
|
|
|
|
|
|
|
@@ -163,7 +146,6 @@ func _get_out_vehicle() -> void:
|
|
|
remove_collision_exception_with(_vehicle)
|
|
|
reparent(_vehicle.get_parent())
|
|
|
_vehicle = null
|
|
|
- _seat = null
|
|
|
_get_head_up()
|
|
|
got_out.emit()
|
|
|
|
|
@@ -184,24 +166,25 @@ func _look_forward(forward: Vector3) -> void:
|
|
|
|
|
|
## Return closest vehicle within reach
|
|
|
## or null if there are none
|
|
|
-func _get_closest_vehicle() -> Node3D:
|
|
|
+func _get_closest_vehicle() -> SeatedVehicle:
|
|
|
_vehicle_range.force_raycast_update()
|
|
|
|
|
|
var object_within_range: Object = _vehicle_range.get_collider()
|
|
|
|
|
|
- if object_within_range is Node3D:
|
|
|
- var node_within_range: Node3D = object_within_range as Node3D
|
|
|
-
|
|
|
- if node_within_range.is_in_group("vehicle"):
|
|
|
- return node_within_range
|
|
|
+ if object_within_range is SeatedVehicle:
|
|
|
+ return object_within_range as SeatedVehicle
|
|
|
|
|
|
return null
|
|
|
|
|
|
|
|
|
-## Have a seat on the driven vehicle if a seat
|
|
|
-## is available
|
|
|
-func _find_seat_on(vehicule: Node3D) -> Node3D:
|
|
|
- if vehicule.has_method("get_free_seat") :
|
|
|
- return vehicule.get_free_seat()
|
|
|
+## Move gently to a free seat from the nearest door
|
|
|
+func _move_to_seat(vehicule: SeatedVehicle) -> void:
|
|
|
+ var tween: Tween = create_tween()
|
|
|
|
|
|
- return null
|
|
|
+ var door: Node3D = vehicule.get_closest_door(get_position())
|
|
|
+ tween.tween_property(self, "position", door.get_position(), board_door_access_duration)
|
|
|
+ tween.parallel().tween_property(self, "quaternion", door.get_quaternion(), board_door_access_duration)
|
|
|
+
|
|
|
+ var seat: Node3D = vehicule.get_free_seat()
|
|
|
+ tween.tween_property(self, "position", seat.get_position(), board_seat_access_duration)
|
|
|
+ tween.parallel().tween_property(self, "quaternion", seat.get_quaternion(), board_seat_access_duration)
|