Skip to main content

Questions tagged [dijkstra]

1 vote
3 answers
570 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
1 answer
772 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
2 votes
2 answers
338 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
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
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,107