2020-01-09 18:26:35 +01:00
|
|
|
extends Reference
|
|
|
|
class_name GSTPath
|
2020-01-10 18:15:50 +01:00
|
|
|
# Represents a path made up of Vector3 waypoints, split into path segments for use by path
|
|
|
|
# following algorithms.
|
2020-01-09 18:26:35 +01:00
|
|
|
|
2020-01-10 18:15:50 +01:00
|
|
|
# # Keeping it updated requires calling `create_path` to update the path.
|
2020-01-09 18:26:35 +01:00
|
|
|
|
2020-01-10 18:15:50 +01:00
|
|
|
|
|
|
|
var open: bool
|
2020-01-15 20:42:24 +01:00
|
|
|
var length: float
|
2020-01-09 18:26:35 +01:00
|
|
|
|
2020-01-10 18:15:50 +01:00
|
|
|
var _segments: Array
|
|
|
|
|
|
|
|
var _nearest_point_on_segment: Vector3
|
|
|
|
var _nearest_point_on_path: Vector3
|
2020-01-09 18:26:35 +01:00
|
|
|
|
|
|
|
|
2020-01-16 12:10:55 +01:00
|
|
|
func _init(waypoints: Array, open := false) -> void:
|
|
|
|
self.open = open
|
2020-01-10 18:15:50 +01:00
|
|
|
create_path(waypoints)
|
|
|
|
_nearest_point_on_segment = waypoints[0]
|
|
|
|
_nearest_point_on_path = waypoints[0]
|
2020-01-09 18:26:35 +01:00
|
|
|
|
|
|
|
|
2020-01-10 18:15:50 +01:00
|
|
|
func create_path(waypoints: Array) -> void:
|
|
|
|
if not waypoints or waypoints.size() < 2:
|
|
|
|
printerr("Waypoints cannot be null and must contain at least two (2) waypoints.")
|
2020-01-15 20:42:24 +01:00
|
|
|
return
|
2020-01-10 18:15:50 +01:00
|
|
|
|
|
|
|
_segments = []
|
2020-01-15 20:42:24 +01:00
|
|
|
length = 0
|
|
|
|
var current: Vector3 = waypoints.front()
|
2020-01-10 18:15:50 +01:00
|
|
|
var previous: Vector3
|
2020-01-09 18:26:35 +01:00
|
|
|
|
2020-01-10 18:15:50 +01:00
|
|
|
for i in range(1, waypoints.size(), 1):
|
|
|
|
previous = current
|
|
|
|
if i < waypoints.size():
|
|
|
|
current = waypoints[i]
|
|
|
|
elif open:
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
current = waypoints[0]
|
2020-01-16 09:44:44 +01:00
|
|
|
var segment := GSTSegment.new(previous, current)
|
2020-01-15 20:42:24 +01:00
|
|
|
length += segment.length
|
|
|
|
segment.cumulative_length = length
|
2020-01-10 18:15:50 +01:00
|
|
|
_segments.append(segment)
|
2020-01-09 18:26:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
func calculate_distance(agent_current_position: Vector3, path_parameter: Dictionary) -> float:
|
2020-01-15 20:42:24 +01:00
|
|
|
if _segments.size() == 0:
|
|
|
|
return 0.0
|
2020-01-09 18:26:35 +01:00
|
|
|
var smallest_distance_squared: float = INF
|
|
|
|
var nearest_segment: GSTSegment
|
2020-01-10 18:15:50 +01:00
|
|
|
for i in range(_segments.size()):
|
|
|
|
var segment: GSTSegment = _segments[i]
|
2020-01-16 09:44:44 +01:00
|
|
|
var distance_squared := _calculate_point_segment_distance_squared(
|
2020-01-09 18:26:35 +01:00
|
|
|
segment.begin,
|
|
|
|
segment.end,
|
2020-01-15 20:42:24 +01:00
|
|
|
agent_current_position
|
|
|
|
)
|
2020-01-09 18:26:35 +01:00
|
|
|
|
|
|
|
if distance_squared < smallest_distance_squared:
|
2020-01-10 18:15:50 +01:00
|
|
|
_nearest_point_on_path = _nearest_point_on_segment
|
2020-01-09 18:26:35 +01:00
|
|
|
smallest_distance_squared = distance_squared
|
|
|
|
nearest_segment = segment
|
|
|
|
path_parameter.segment_index = i
|
|
|
|
|
2020-01-16 09:44:44 +01:00
|
|
|
var length_on_path := (
|
2020-01-09 18:26:35 +01:00
|
|
|
nearest_segment.cumulative_length -
|
2020-01-10 18:15:50 +01:00
|
|
|
_nearest_point_on_path.distance_to(nearest_segment.end))
|
2020-01-09 18:26:35 +01:00
|
|
|
|
|
|
|
path_parameter.distance = length_on_path
|
|
|
|
|
|
|
|
return length_on_path
|
|
|
|
|
|
|
|
|
|
|
|
func calculate_target_position(param: Dictionary, target_distance: float) -> Vector3:
|
2020-01-10 18:15:50 +01:00
|
|
|
if open:
|
2020-01-15 20:42:24 +01:00
|
|
|
target_distance = clamp(target_distance, 0, length)
|
2020-01-09 18:26:35 +01:00
|
|
|
else:
|
|
|
|
if target_distance < 0:
|
2020-01-15 20:42:24 +01:00
|
|
|
target_distance = length + fmod(target_distance, length)
|
|
|
|
elif target_distance > length:
|
|
|
|
target_distance = fmod(target_distance, length)
|
2020-01-09 18:26:35 +01:00
|
|
|
|
|
|
|
var desired_segment: GSTSegment
|
2020-01-10 18:15:50 +01:00
|
|
|
for i in range(_segments.size()):
|
|
|
|
var segment: GSTSegment = _segments[i]
|
2020-01-09 18:26:35 +01:00
|
|
|
if segment.cumulative_length >= target_distance:
|
|
|
|
desired_segment = segment
|
|
|
|
break
|
|
|
|
|
2020-01-15 20:42:24 +01:00
|
|
|
if not desired_segment:
|
|
|
|
desired_segment = _segments.back()
|
|
|
|
|
2020-01-16 09:44:44 +01:00
|
|
|
var distance := desired_segment.cumulative_length - target_distance
|
2020-01-09 18:26:35 +01:00
|
|
|
|
|
|
|
return (
|
|
|
|
(desired_segment.begin - desired_segment.end) *
|
|
|
|
(distance / desired_segment.length) + desired_segment.end)
|
|
|
|
|
|
|
|
|
2020-01-10 18:15:50 +01:00
|
|
|
func get_start_point() -> Vector3:
|
|
|
|
return _segments.front().begin
|
|
|
|
|
|
|
|
|
|
|
|
func get_end_point() -> Vector3:
|
|
|
|
return _segments.back().end
|
|
|
|
|
|
|
|
|
|
|
|
func _calculate_point_segment_distance_squared(start: Vector3, end: Vector3, position: Vector3) -> float:
|
|
|
|
_nearest_point_on_segment = start
|
2020-01-16 09:44:44 +01:00
|
|
|
var start_end := end - start
|
|
|
|
var start_end_length_squared := start_end.length_squared()
|
2020-01-10 18:15:50 +01:00
|
|
|
if start_end_length_squared != 0:
|
|
|
|
var t = (position - start).dot(start_end) / start_end_length_squared
|
|
|
|
_nearest_point_on_segment += start_end * clamp(t, 0, 1)
|
2020-01-09 18:26:35 +01:00
|
|
|
|
2020-01-10 18:15:50 +01:00
|
|
|
return _nearest_point_on_segment.distance_squared_to(position)
|
2020-01-09 18:26:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
class GSTSegment:
|
|
|
|
var begin: Vector3
|
|
|
|
var end: Vector3
|
|
|
|
var length: float
|
|
|
|
var cumulative_length: float
|
|
|
|
|
|
|
|
|
|
|
|
func _init(begin: Vector3, end: Vector3) -> void:
|
|
|
|
self.begin = begin
|
|
|
|
self.end = end
|
|
|
|
length = begin.distance_to(end)
|