2019-12-19 20:04:08 +01:00
|
|
|
class_name GSTMatchOrientation
|
2020-01-16 23:14:50 +01:00
|
|
|
extends GSTSteeringBehavior
|
2020-01-02 23:42:41 +01:00
|
|
|
# Calculates an angular acceleration to match an agent's orientation to its target's.
|
|
|
|
# The calculation will attempt to arrive with zero remaining angular velocity.
|
2019-12-16 17:22:03 +01:00
|
|
|
|
|
|
|
|
2020-01-27 19:24:05 +01:00
|
|
|
# The target orientation for the behavior to try and match rotations to
|
2019-12-19 20:04:08 +01:00
|
|
|
var target: GSTAgentLocation
|
2020-01-27 19:24:05 +01:00
|
|
|
# The amount of distance in radians for the behavior to consider itself close enough to match
|
2019-12-16 17:22:03 +01:00
|
|
|
var alignment_tolerance: float
|
2020-01-27 19:24:05 +01:00
|
|
|
# The amount of distance in radians from the goal to start slowing down
|
2019-12-16 17:22:03 +01:00
|
|
|
var deceleration_radius: float
|
2020-01-27 19:24:05 +01:00
|
|
|
# A constant to represent the time it takes to change angular accelerations
|
2019-12-19 20:04:08 +01:00
|
|
|
var time_to_reach: float = 0.1
|
2019-12-16 17:22:03 +01:00
|
|
|
|
|
|
|
|
2019-12-19 20:04:08 +01:00
|
|
|
func _init(agent: GSTSteeringAgent, target: GSTAgentLocation).(agent) -> void:
|
2019-12-16 17:22:03 +01:00
|
|
|
self.target = target
|
|
|
|
|
|
|
|
|
2019-12-19 20:04:08 +01:00
|
|
|
func _match_orientation(acceleration: GSTTargetAcceleration, desired_orientation: float) -> GSTTargetAcceleration:
|
2020-01-16 09:44:44 +01:00
|
|
|
var rotation := wrapf(desired_orientation - agent.orientation, -PI, PI)
|
2019-12-16 17:22:03 +01:00
|
|
|
|
2020-01-16 09:44:44 +01:00
|
|
|
var rotation_size := abs(rotation)
|
2019-12-16 17:22:03 +01:00
|
|
|
|
|
|
|
if rotation_size <= alignment_tolerance:
|
2019-12-19 21:24:40 +01:00
|
|
|
acceleration.set_zero()
|
|
|
|
else:
|
2020-01-22 17:55:49 +01:00
|
|
|
var desired_rotation := agent.angular_speed_max
|
2019-12-16 17:22:03 +01:00
|
|
|
|
2019-12-19 21:24:40 +01:00
|
|
|
if rotation_size <= deceleration_radius:
|
|
|
|
desired_rotation *= rotation_size / deceleration_radius
|
|
|
|
|
|
|
|
desired_rotation *= rotation / rotation_size
|
2019-12-16 17:22:03 +01:00
|
|
|
|
2019-12-19 21:24:40 +01:00
|
|
|
acceleration.angular = (desired_rotation - agent.angular_velocity) / time_to_reach
|
|
|
|
|
2020-01-16 09:44:44 +01:00
|
|
|
var limited_acceleration := abs(acceleration.angular)
|
2020-01-22 17:55:49 +01:00
|
|
|
if limited_acceleration > agent.angular_acceleration_max:
|
|
|
|
acceleration.angular *= agent.angular_acceleration_max / limited_acceleration
|
2019-12-20 19:17:27 +01:00
|
|
|
|
|
|
|
acceleration.linear = Vector3.ZERO
|
2019-12-16 17:22:03 +01:00
|
|
|
|
|
|
|
return acceleration
|
|
|
|
|
|
|
|
|
2019-12-19 20:04:08 +01:00
|
|
|
func _calculate_steering(acceleration: GSTTargetAcceleration) -> GSTTargetAcceleration:
|
2019-12-16 17:22:03 +01:00
|
|
|
return _match_orientation(acceleration, target.orientation)
|