-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
diagonal cost isn't taken into account #10
Comments
Good questions. Here is the heuristic we are using for cost calculation: https://github.com/bgrins/javascript-astar/blob/master/astar.js#L94. It appears that we may want to use the "Diagonal Distance" heuristic instead: http://theory.stanford.edu/~amitp/GameProgramming/Heuristics.html. If you implemented a |
Thanks for the pointers. I've been trying to implement this but I've struggled to get it working. However, while doing this, it's become apparent to me that, for my needs, Dijkstra's algorithm is better. |
OK, you could easily turn this into Dijkstra's algorithm by coming up with a heuristic that always returns 0. That's really the only difference between the two. |
I've implement Dijkstra's (couldn't find any decent JavaScript implementation) so I thought I'd share, as you did with A*. Thanks. |
Here is the fix to diagonals: https://github.com/bgrins/javascript-astar/blob/master/astar.js#L67 Instead of: var gScore = currentNode.g + neighbor.cost; use: var gScore = currentNode.g + neighbor.cost * heuristic(currentNode.pos, neighbor.pos); that way, if you use euclidean heuristic, it should always return the shortest path |
@kicktheken I see the reasoning there, and in the case of euclidean it should work but I think we should really have a
Then |
I added |
Maybe I'm silly. But wouldn't simply changing the getCost method into something like this do the trick in the current version? GridNode.prototype.getCost = function(fromOther) {
if (fromOther.x != this.x && fromOther.y != this.y)
return this.weight * 1.42412;
return this.weight;
}; Instead of the current version which doesn't seem to do anything with the parameter that is given to getCost on line 88? |
@StanB123 Nice, I think that may work, since the fromOther is always going to be an adjacent neighbor. Any chance you could send over a PR with that change and a simple test? |
I'll try to find some time for that during the weekend :-) |
Hello
I've been using astar to make a game and I've discovered that diagonal movements are often favored although the route is longer.
From what I make out, weightings on diagonal movements should be slightly more than the given value as the diagonal distance across the sqaure is greater than up, down, left, right movements.
The solution (I think) would be to modify the node's cost to be: square root ( cost*cost + cost * cost).
However, I've not got this working correctly yet.
Does anyone have thoughts on this? Is it the correct thing to do? Is there a better solution?
The text was updated successfully, but these errors were encountered: