forked from Mitten-O/astar-tilemap-fork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AstarTileMap.gd
259 lines (215 loc) · 8.9 KB
/
AstarTileMap.gd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
extends TileMap
class_name AstarTileMap
const DIRECTIONS := [Vector2.RIGHT, Vector2.UP, Vector2.LEFT, Vector2.DOWN]
const PAIRING_LIMIT = int(pow(2, 30))
enum pairing_methods {
CANTOR_UNSIGNED, # positive values only
CANTOR_SIGNED, # both positive and negative values
SZUDZIK_UNSIGNED, # more efficient than cantor
SZUDZIK_SIGNED, # both positive and negative values
SZUDZIK_IMPROVED, # improved version (best option)
}
@export var current_pairing_method:pairing_methods = pairing_methods.SZUDZIK_IMPROVED
@export var diagonals := false
var astar := AStar2D.new()
var obstacles := []
var units := []
func _ready() -> void:
update()
func update() -> void:
create_pathfinding_points()
var unitNodes = get_tree().get_nodes_in_group("Units")
for unitNode in unitNodes:
add_unit(unitNode)
var obstacleNodes = get_tree().get_nodes_in_group("Obstacles")
for obstacleNode in obstacleNodes:
add_obstacle(obstacleNode)
func create_pathfinding_points() -> void:
astar.clear()
var used_cell_positions = get_used_cell_global_positions()
for cell_position in used_cell_positions:
astar.add_point(get_point(cell_position), cell_position)
for cell_position in used_cell_positions:
connect_cardinals(cell_position)
func add_obstacle(obstacle: Object) -> void:
obstacles.append(obstacle)
if not obstacle.is_connected("tree_exiting", self, "remove_obstacle"):
var _error := obstacle.connect("tree_exiting", self, "remove_obstacle", [obstacle])
if _error != 0: push_error(str(obstacle) + ": failed connect() function")
func remove_obstacle(obstacle: Object) -> void:
obstacles.erase(obstacle)
func add_unit(unit: Object) -> void:
units.append(unit)
if not unit.is_connected("tree_exiting", self, "remove_unit"):
var _error := unit.connect("tree_exiting", self, "remove_unit", [unit])
if _error != 0: push_error(str(unit) + ": failed connect() function")
func remove_unit(unit: Object) -> void:
units.erase(unit)
func position_has_obstacle(obstacle_position: Vector2, ignore_obstacle_position = null) -> bool:
if obstacle_position == ignore_obstacle_position: return false
for obstacle in obstacles:
if obstacle.global_position == obstacle_position: return true
return false
func position_has_unit(unit_position: Vector2, ignore_unit_position = null) -> bool:
if unit_position == ignore_unit_position: return false
for unit in units:
if unit.global_position == unit_position: return true
return false
func get_astar_path_avoiding_obstacles_and_units(start_position: Vector2, end_position: Vector2, exception_units := [], max_distance := -1) -> Array:
set_obstacles_points_disabled(true)
set_unit_points_disabled(true, exception_units)
var astar_path := astar.get_point_path(get_point(start_position), get_point(end_position))
set_obstacles_points_disabled(false)
set_unit_points_disabled(false)
return set_path_length(astar_path, max_distance)
func get_astar_path_avoiding_obstacles(start_position: Vector2, end_position: Vector2, max_distance := -1) -> Array:
set_obstacles_points_disabled(true)
var path_points := astar.get_point_path(get_point(start_position), get_point(end_position))
set_obstacles_points_disabled(false)
return set_path_length(path_points, max_distance)
func stop_path_at_unit(potential_path_points: Array) -> Array:
for i in range(1, potential_path_points.size()):
var point : Vector2 = potential_path_points[i]
if position_has_unit(point):
potential_path_points.resize(i)
break
return potential_path_points
func get_astar_path(start_position: Vector2, end_position: Vector2, max_distance := -1) -> Array:
var astar_path := astar.get_point_path(get_point(start_position), get_point(end_position))
return set_path_length(astar_path, max_distance)
func set_path_length(point_path: Array, max_distance: int) -> Array:
if max_distance < 0: return point_path
var new_size := int(min(point_path.size(), max_distance))
point_path.resize(new_size)
return point_path
func set_obstacles_points_disabled(value: bool) -> void:
for obstacle in obstacles:
astar.set_point_disabled(get_point(obstacle.global_position), value)
func set_unit_points_disabled(value: bool, exception_units: Array = []) -> void:
for unit in units:
if unit in exception_units or unit.owner in exception_units:
continue
astar.set_point_disabled(get_point(unit.global_position), value)
func get_floodfill_positions(start_position: Vector2, min_range: int, max_range: int, skip_obstacles := true, skip_units := true, return_center := false) -> Array:
var floodfill_positions := []
var checking_positions := [start_position]
while not checking_positions.empty():
var current_position : Vector2 = checking_positions.pop_back()
if skip_obstacles and position_has_obstacle(current_position, start_position): continue
if skip_units and position_has_unit(current_position, start_position): continue
if current_position in floodfill_positions: continue
var current_point := get_point(current_position)
if not astar.has_point(current_point): continue
if astar.is_point_disabled(current_point): continue
var distance := (current_position - start_position)
var grid_distance := get_grid_distance(distance)
if grid_distance > max_range: continue
floodfill_positions.append(current_position)
for direction in DIRECTIONS:
var new_position := current_position + map_to_world(direction)
if skip_obstacles and position_has_obstacle(new_position): continue
if skip_units and position_has_unit(new_position): continue
if new_position in floodfill_positions: continue
var new_point := get_point(new_position)
if not astar.has_point(new_point): continue
if astar.is_point_disabled(new_point): continue
checking_positions.append(new_position)
if not return_center:
floodfill_positions.erase(start_position)
var floodfill_positions_size := floodfill_positions.size()
for i in floodfill_positions_size:
var floodfill_position : Vector2 = floodfill_positions[floodfill_positions_size-i-1] # Loop through the positions backwards vvv
var distance = (floodfill_position - start_position)
var grid_distance := get_grid_distance(distance)
if grid_distance < min_range:
floodfill_positions.erase(floodfill_position) # Since we are modifying the array here
return floodfill_positions
func path_directions(path) -> Array:
# Convert a path into directional vectors whose sum would be path[length-1]
var directions = []
for p in range(1, path.size()):
directions.append(path[p] - path[p - 1])
return directions
func get_point(point_position: Vector2) -> int:
var a := int(point_position.x)
var b := int(point_position.y)
match current_pairing_method:
pairing_methods.CANTOR_UNSIGNED:
assert(a >= 0 and b >= 0, "Board: pairing method has failed. Choose method that supports negative values.")
return cantor_pair(a, b)
pairing_methods.SZUDZIK_UNSIGNED:
assert(a >= 0 and b >= 0, "Board: pairing method has failed. Choose method that supports negative values.")
return szudzik_pair(a, b)
pairing_methods.CANTOR_SIGNED:
return cantor_pair_signed(a, b)
pairing_methods.SZUDZIK_SIGNED:
return szudzik_pair_signed(a, b)
pairing_methods.SZUDZIK_IMPROVED:
return szudzik_pair_improved(a, b)
return szudzik_pair_improved(a, b)
func cantor_pair(a:int, b:int) -> int:
var result := 0.5 * (a + b) * (a + b + 1) + b
return int(result)
func cantor_pair_signed(a:int, b:int) -> int:
if a >= 0:
a = a * 2
else:
a = (a * -2) - 1
if b >= 0:
b = b * 2
else:
b = (b * -2) - 1
return cantor_pair(a, b)
func szudzik_pair(a:int, b:int) -> int:
if a >= b:
return (a * a) + a + b
else:
return (b * b) + a
func szudzik_pair_signed(a: int, b: int) -> int:
if a >= 0:
a = a * 2
else:
a = (a * -2) - 1
if b >= 0:
b = b * 2
else:
b = (b * -2) - 1
return int(szudzik_pair(a, b))
func szudzik_pair_improved(x:int, y:int) -> int:
var a: int
var b: int
if x >= 0:
a = x * 2
else:
a = (x * -2) - 1
if y >= 0:
b = y * 2
else:
b = (y * -2) - 1
var c = szudzik_pair(a,b)
if a >= 0 and b < 0 or b >= 0 and a < 0:
return -c - 1
return c
func has_point(point_position: Vector2) -> bool:
var point_id := get_point(point_position)
return astar.has_point(point_id)
func get_used_cell_global_positions() -> Array:
var cells = get_used_cells()
var cell_positions := []
for cell in cells:
var cell_position := global_position + map_to_world(cell)
cell_positions.append(cell_position)
return cell_positions
func connect_cardinals(point_position) -> void:
var center := get_point(point_position)
var directions := DIRECTIONS
if diagonals:
var diagonals_array := [Vector2(1,1), Vector2(1,-1)] # Only two needed for generation
directions += diagonals_array
for direction in directions:
var cardinal_point := get_point(point_position + map_to_world(direction))
if cardinal_point != center and astar.has_point(cardinal_point):
astar.connect_points(center, cardinal_point, true)
func get_grid_distance(distance: Vector2) -> float:
var vec := world_to_map(distance).abs().floor()
return vec.x + vec.y