Skip to main content

Questions tagged [dijkstra]

Filter by
Sorted by
Tagged with
1 vote
3 answers
571 views

I'm trying to program an AI for a Pac-Man-like game, where I would be the Pac-Man and move according to two simple rules: move towards bonuses avoid monsters and being killed I read that one can ...
Carmellose's user avatar
2 votes
2 answers
12k views

I'm currently researching, for a summary paper, the different variants of A* search algorithm and how they are used in games. I stumbled across the name HPA*. I've heard that it's much faster than ...
Ixion Chowdhury's user avatar
2 votes
1 answer
777 views

I implemented a pathfinding algorithm like this: There is a mesh of triangles that defines the area the player can walk. An A* algorithm is used for finding a path from the start triangle to the end ...
digory doo's user avatar
1 vote
2 answers
476 views

I'm working on a Unity Project in C# I've built a 3D Voronoi Diagram using the csDelaunay library from PouletFrit and using the X and Y values from a 2D diagram to instead setup some Vector3's with ...
TheDavil's user avatar
  • 123
2 votes
2 answers
339 views

I am using Dijkstra's for pathfinding in my 2d game, my game is similiar in style to a tower defense game which has waves of monsters trying to reach a goal. I am currently building the paths while ...
RandomUser's user avatar
0 votes
1 answer
1k views

I understand how dijkstra algorithm works but I don't know how I should figure out path. How can I get nodes that are on the shortest path?
Arek Żyłkowski's user avatar
0 votes
2 answers
1k views

While running Dijkstra's Algorithm to assign a direction to every tile and when an object land on the tile, follow the direction to a goal. I encountered an infinite loop (or I think it is). The ...
DarkDestry's user avatar
  • 1,441
1 vote
1 answer
501 views

I am having trouble understanding how to implement dijkstra's algorithm for a path finding assignment, here's what the layout looks like: Each node has a List of neighbours which are found using ...
drocktapiff's user avatar
0 votes
4 answers
3k views

The setting is a game in a 2D gridlike labyrinth/maze. I'm looking at pathfinding algorithms such as A* and Dijkstra. I can't figure out how to have my game characters find the nearest resources. All ...
Felsir's user avatar
  • 4,117