Godot version:
3.1.stable.official
OS/device including version:
Windows 10 (10.0.17134 Build 17134), but happens on other systems too.
Issue description:
When adding NavigationPolygonInstance
s that entirely cover tiles of a tileset, then covering a Tilemap
with said tiles, using Navigation2D
and its get_simple_path
method produces unwanted behavior (unoptimal paths that include more points than needed):
https://i.imgur.com/yn4hegV.gif
https://streamable.com/47nzc
The actual result should instead be the same as what happens when covering the whole navigable area with a single NavigationPolygonInstance
:
https://streamable.com/exk7u
Steps to reproduce:
Note that these steps can be reproduced either with the 3.1's new tileset editor, or using the old-fashioned way (scene converted to tileset).
NavigationPolygonInstance
covering exactly that whole tile.Navigation2D
node that includes a TileMap
node referencing that tileset. Cover the tilemap with the tile.get_simple_path
(with optimize
to true
) to compute a path between the sprite and a position far away (ideally, diagonally).Minimal reproduction project:
Notes:
@clayjohn I don't think usability tag is the right one - you can set up the navigation in editor just fine. Issue is about method $Navigation2D.get_simple_path()
(when using TileMap
as source of your navigation poly) returning silly routes:
Note that every tile is 100% covered with NavigationPolygon
without overlaping - i checked polys in .tscn file, my first thought was some float creeping to the neighboring cell, but no. Also note that edges of paths are exactly on edges of tiles.
Fun thing is, it doesnt work as one would expect even in Godot 3.0.6 - but it works sligtly better (bends are not so sharp):
Godot 3.1.1, Windows 7 64-bit
Happens for me too. If I make the optimize argument false, it looks like it uses simplified, Manhattan distances. Though looking at source code, I find only good old square root, hmm...
Another idea that maybe it optimizes away tiles and uses different-sized navmeshes instead (is fine), which are then just followed center to center instead without smoothing (not fine).
Related:
https://github.com/godotengine/godot/issues/17885
https://github.com/godotengine/godot/issues/19011
https://github.com/godotengine/godot/pull/28640
I've started learning godot (3.1) last week to make a tiled-board-game-test (descent journey into darkness - just for learning purpose) and got stuck on the same problem.
Basically I made a Navigation2D (star shaped) on each tile, but when I use get_simple_path()
it just give me some weird path (clearly not the simple one).
On the image below, the "right way" to find the path is to go left/down (diagonally on the last 2 tiles), but it make a little "detour" on the left tile before arrives where I want.
I tried to enlarge navigation lines, but still got this problem.
Sorry for my bad english. I posted it only to help.
Maybe unrelated, but: I experience issues with this node, when I am entering a Vector which has integer values (i.e. (390|120). The Navigation Node will not return anything (an empty Array). You can workaround this, when you add a really small Vector (I use 0.001).
Hello HaSa1002, I tried to place a non-integer value on a Vector2
in get_simple_path
param, but still get the same wrong path.
Yeah, I meant I experience issues with getting any path (get_simple_path return an empty array) and therefore I described a nonsense workaround.
Oh, now I understood... Anyway, I'll try this approach with the nearby NavyPolys to see if I get something else.
Thanks for the tip!
Well, I think this is the same problem @HaSa1002 .
I removed all links to the desired tile and overlaped the junction between the two tiles. But the get_simple_path()
method returns an empty array.
I tried your solution, but still not working:
I think this is some kind of bug when the engine tries to link a NavPoly to another.
Ok, I think I found a work around...
I have to make my NavPoly have no angle joint. Like make a tile's edge touch the other tile's edge, without any kind of angle.
I really think its a problem with some method to check the connection of the polygons.
Hope it helps others like me.
Does anybody knows anything about the get_simple_path
method? I am giving this a trial now, but this method is huge and I am new to the Godotcode. Maybe I head over to irc
I can confirm that this error persists in a freshly build version of master branch.
My tests so far (I used the provided minimal example as starting point):
Project at the bottom
@nettocavalcanti Path without overlapping takes ~3sec to be generated and are not much better
(5 segments):
Overlapping is not better: (96 segments)
A Navigation Polygon with ~30 Verticies is not performance friendly:
Updated test project:
tests.zip
I hope this helps a bit. I still struggle to get into that pathfinding code.
EDIT: Path optimisation made not better nor worse
Yes! This is exactly my problem. Even when I used my previous "solution" (avoiding corners between diagonals), I still get the weird path:
Thank you for helping example @HaSa1002 !!
Hope someone can help on finding and fixing this bug.
I can confirm that this error persists in a freshly build version of master branch.
so #22047 does not fixed this
Well, @splite at least for this particular case it seems not fixed... With the NavigationPolygonInstance like a "star"...
@nettocavalcanti That is not completly right. The error even persists on the fully covered Tiles
Yes, you're right. Forgot what @HaSa1002 posted before... Sorry.
Sorry if this isn't right, but I was following the GDC tutorial on using simple_path and I was getting some odd behaviour, too. After some digging I found this post, but also an old pathfinding demo on github that hadn't been updated for three years.. However I managed to get the demo working, and compared and the pathing behaviour was much more as expected. I still can't figure out why though, allthough they both do use different methods.
Here's a gif of the results of the gdc tutorial pathfinding:
https://media.giphy.com/media/JnusvvxCd1w9w9kWfA/giphy.gif
Here's a gif of the modified older demo:
https://media.giphy.com/media/JszpjWCBSdHyPjirOy/giphy.gif
As you can hopefully see, in the gdc version, the characted moves first up or down then left or right
whereas the old modified version, shows the path as being the same as the gdc one, but moves diagonally as you'd expect.
Here is a copy of the the codes from the modified older demo:
From the main 'game' node:
`extends Node2D
export var tile_d : Vector2 = Vector2(32, 32)
onready var nav_2d : Navigation2D = $Navigation2D
onready var line_2d : Line2D = $Line2D
onready var character : KinematicBody2D = $player
onready var cursor: Sprite = $Cursor
func _unhandled_input(event: InputEvent) -> void:
if event is InputEventMouseButton:
if event.pressed and event.button_index == BUTTON_LEFT:
character.path_target = get_global_mouse_position()
var new_path : = nav_2d.get_simple_path(character.global_position, get_global_mouse_position(), false)
line_2d.points = new_path
character.points = new_path
`
from the player script:
`
extends KinematicBody2D
export var speed = 100
var points : = PoolVector2Array() setget set_points
var path_target : = Vector2() setget set_path_target
const eps = 1.5
onready var line_2d : Line2D = get_node("../Line2D")
onready var map : TileMap = get_node("../Navigation2D/TileMap")
func _ready():
pass
func _physics_process(delta):
if points.size() > 0:
points = get_node("../Navigation2D").get_simple_path(self.global_position, path_target, false)
line_2d.points = points
if points.size() > 1:
var distance = points[1] - global_position
var direction = distance.normalized()
if distance.length() > eps or points.size() > 2:
position += direction * speed * delta
else:
position += Vector2(0, 0)
func set_points(value: PoolVector2Array) -> void:
points = value
if value.size() == 0:
return
set_process(true)
func set_path_target(value: Vector2) -> void:
path_target = value`
here is a link to the unmodified github repo:
https://github.com/FEDE0D/godot-pathfinding2d-demo
and the GDC code is available in the video tutorial:
https://www.youtube.com/watch?v=0fPOt0Jw52s
@ka0s420 if i get it, you are finding new path every physics tick - not by finding one at the beginning and then following it. Nice.
The point is however, that in the GDC version the path is calculated as in our demo, what you see with this "odd path", but since you recalculate it every physics tick, you get the "better" path. Keep in mind, that the pathfinding is an expensive algorithm (running linear), so I expect, you found yourself with lowered FPS. The path you saw is as wrong as the other.
@splite yes, that's right. At first the old demo had it so that it recalculated the path repeatedly, but also that the target would change aas you moved the mouse around. I made it so you click and it caches the target.
@HaSa1002 yeah it's definitly not ideal to do this. Not sure why it was this way in the demo, or why the paths behave so differently. Definitely wouldn't use it in anything where the pathfinding overhead was critical like an rts. But for a turn based tactics style game or something like that it would work. Not sure why you think the path is as wrong as the other?
@ka0s420 The path is as wrong as the other, because the debug navigation shows exactly the same wrong path as in the calc and run method. The reason is the path seams "better", because you recalculate the path every time and the first points is a bit special and differently set
So I looked into the algorithmn and found various possible reasons for the misbehaviour:
One word on 1 and 2:
I don't know if it would break something (I assume it does) and is even possible, but what is about batching the navigation polygons together first and see then what happens?
My somewhat unrelated question, why we use a map there to store the polygons? Do they need to be sorted? And how are they sorted? As I implied with point 3, I don't really get how it works and it blows my mind regulary when I try.
I now tested with one polygon having some structure in it.
The side effect, despite of working, is that it's faster.
I think (I don't really understand that pathfinding code, it's more guessing) the problem is Navigation2d::_navpoly_link as it seems to only link edges and that in combination with the simple path and the mecanism of finding the path through the polygons leads to the weird paths.
To demonstrate that this problem is not related to the tilemap itself, I updated my example (below). Maybe someone with some deeper understanding of the pathfinding can come and fix this. I assume it could be done with just fixing the _navpoly_link method to extend the linking to vertices and not only edges. I feel uncomfortable and lost in writing a solution.
Three notes on my new example:
New Example Project: bug_#28235.zip
Dang, running into this issue after following KidsCanCode and GDQuest's tutorials. I'm having the same issue in the answer here. It makes movement very wonky for hack n slash/point and click movement.
Still same problem in 3.2.beta2
@HaSa1002 USE_ENTRY_POINT was introduced to "improve" it in 3.0.6 ( example from @splite ).
I guessed that because I commented the //#define USE_ENTRY_POINT and it behave as 3.06.
I start to analyze the code. However, this is my first approach to godot engine code. Tons to learn how it is... :)
I have some doubts about the use of "get_closest_point_to_segment_2d" in that context. But as I said I'm at begin ti analyze that section.
@git2013vb Thanks for the clarification. I somehow missed the reply... Do you found any evidence for the source of the problem? As I said, I heavily struggle to abstract the code starting with the path optimisation.
Just got into that issue too. Did someone found a workaround while it's fixed ?
If it is crucial don't use tile-based navigation and prefer to create a polygon which is then added as instance. (See my weird looking screenshot above)
If it is crucial don't use tile-based navigation and prefer to create a polygon which is then added as instance. (See my weird looking screenshot above)
In my understanding what is missing about the whole process to determine the correct path is the weight of each possible solution. The weight have to be find by relate the distance between the target and the current position compared with the weight between the start and the current position. I didn't see the it anywhere in code. So the process will find the first one possible way, and because it start from left the probability the it show the left side first is very high. The approach is not complete in my opinion. Also it seems more complicate because the polygon are not regular four side polygons (square shape) but seems sometime the process make 3 side polygons(triangle shape) in its formula (But I'm not sure 100% about this) :)
@giviz In one jam game I used this workaround, which smoothes the path after A* (Theta*-ish):
func _update_navigation_path(start_position, end_position):
# get_simple_path is part of the Navigation2D class
# it returns a PoolVector2Array of points that lead you from the
# start_position to the end_position
path = get_simple_path(start_position, end_position, false)
# The first point is always the start_position
# We don't need it in this example as it corresponds to the character's position
if path.size() > 1:
var lastPoint = path[-1]
var cellSize = 64
lastPoint.x = floor(lastPoint.x / 64) * 64
path[-1]
var space_state = get_world_2d().direct_space_state
var i = 0
while i < path.size():
var size = path.size()
for j in range(i+1, size):
var result = space_state.intersect_ray(path[i], path[size - j - 1], [ player ] )
if result.empty():
for k in range(i+1, size - j - 1):
path.remove(i+1)
break
i += 1
$Line2D.points = path
path.remove(0)
followPath = true
return path.size() > 1
@git2013vb It uses distances for weights. Yes, some games require custom weights (so e.g. swamp is less preferred than road), but a lot of games don't.
<..snip..> weights <...snip...>
I was not referred to that "weighs" rather a "costs"
http://theory.stanford.edu/~amitp/GameProgramming/
https://www.youtube.com/watch?v=-L-WgKMFuhE
I understand, I implemented A* on the grid before, it's not that complicated.
Non-uniform costs are an extra feature, not a requirement. In the simple implementation to know the cost, call a function each time, which will return the distance between two cells.
Honestly I didn't full check how it was implemented in godot. The code is a bit complicate and people need time to investigate.
If it is crucial don't use tile-based navigation and prefer to create a polygon which is then added as instance. (See my weird looking screenshot above)
That seems to be the best approach indeed. I guess there is no simple solution to extract the polygon auto compiled from the tilemaps and reassign it to a NavigationPolygonInstance, it has to be re-created from scratch ?
That would mean to create a polygon the size of the map, and crop into it thousand of small polygons (one for each 1/25 of a tile that can be blocked). Or maybe reduce it to only take into consideration what's in and around the viewport.
The auto compilation from the tilemaps is really fast to load in comparison to my tests with a lot of small polygons. With too many polygons (2500 sub tiles to block) it wont even load.
Most helpful comment
The point is however, that in the GDC version the path is calculated as in our demo, what you see with this "odd path", but since you recalculate it every physics tick, you get the "better" path. Keep in mind, that the pathfinding is an expensive algorithm (running linear), so I expect, you found yourself with lowered FPS. The path you saw is as wrong as the other.