Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

18
votes
1answer
373 views

Manhattan distance is over estimating and making me crazy

I'm implementing a-star algorithm with Manhattan distance to solve the 8-puzzle (in C). It seems to work very well and passes a lot of unit tests but it fails to find the shortest path in one case (it ...
15
votes
9answers
4k views

Algorithm to find two points furthest away from each other

Im looking for an algorithm to be used in a racing game Im making. The map/level/track is randomly generated so I need to find two locations, start and goal, that makes use of the most of the map. ...
14
votes
4answers
1k views

Where can I find information on the D* or D* Lite pathfinding algorithm?

There are links to some papers on D* here, but they're a bit too mathematical for me. Is there any information on D*/D* Lite more geared towards beginners?
10
votes
6answers
6k views

How do I implement an A* pathfinding algorithm, with movement costs for every programming language?

Can we get people to post code of simple, optimized implementations of the A* pathfinding algorithm, in every single language? This is mostly for fun and to play with what stackoverflow itself is ...
9
votes
4answers
233 views

Are there any usable path-finding libraries for python?

I'm working on a real-time isometric RPG in python, and wish to target mobile devices as a platform. The main area where I'm having difficulties is with my pathfinding. I have tried a few algorithms ...
9
votes
4answers
2k views

Pathfinding 2d java game?

First time on StackOverflow, keep see it coming up so thought id ask. Im currently writing a very basic java game based on the idea of theme hospital. I'm quite new to java, currently studying at uni ...
8
votes
6answers
3k views

Pathfinding Algorithm For Pacman

I wanted to implement the game Pacman. For the AI, I was thinking of using the A* algorithm, having seen it on numerous forums. However, I implemented the Breadth First Search for some simple ...
8
votes
6answers
433 views

Algorithm to find most efficient moves to arrive at a given point

(This is not exactly the problem that I have, but it's isomorphic, and I think that this explanation will be easiest for others to understand.) Suppose that I have a set of points in an n-dimensional ...
8
votes
3answers
847 views

Storing a directed graph in google appengine datastore

I need to store a large and dynamic undirected graph in google appengine, what's the best way to do this? The graph representation must be able to support rapidly pulling out a set of vertices (for ...
8
votes
9answers
1k views

Why does A* path finding sometimes go in straight lines and sometimes diagonals? (Java)

I'm in the process of developing a simple 2d grid based sim game, and have fully functional path finding. I used the answer found in my previous question as my basis for implementing A* path finding. ...
7
votes
3answers
104 views

Algorithm for finding distinct paths from A to B in weighted, directed, cyclic graph

Suppose we have a DIRECTED, WEIGHTED and CYCLIC graph. Suppose we are only interested in paths with a total weight of less than MAX_WEIGHT What is the most appropriate (or any) algorithm to find the ...
7
votes
1answer
75 views

How to restrict certain paths in NetworkX graphs?

I am trying to calculate shortest path between 2 points using Dijkstra and A Star algorithms (in a directed NetworkX graph). At the moment it works fine and I can see the calculated path but I would ...
7
votes
1answer
222 views

The D*-Lite algorithm

I'm trying to implement the D*-Lite pathfinding algorithm, as described in the 2002 article by Koenig and Likhachev, for Boost::Graph. I think I've gotten a decent grasp on the basic ideas and theory ...
7
votes
3answers
1k views

AI navigation around a 2d map - avoiding obstacles

I know my question seems pretty vague, but I can't think of a better way to put it, so I'll start off by explaining what I'm trying to do. I'm currently working on a project whereby I've been given a ...
6
votes
6answers
195 views

Pathfinding while forcing unique node attributes — which algorithm should I use?

Update 2011-12-28: Here's a blog post with a less vague description of the problem I was trying to solve, my work on it, and my current solution: Watching Every MLB Team Play A Game I'm trying to ...
6
votes
2answers
192 views

I don't understand A* Pathfinding

From what I understand: Add the current node to the closed list. Find adjacent nodes to the current node, and if they are not unwalkable nodes and not on the closed list, add that node to the open ...
6
votes
1answer
129 views

Finding the globally shortest path in non-degenerate trapezoidations

I'm searching for an efficient algorithm that finds the globally shortest path between two points in a 2-dimensional space with polygonal obstacles. The source data is in the form of a non-degenerate ...
6
votes
2answers
3k views

Implementation of A Star (A*) Algorithm in Java

Disclaimer: I have little background in Java, since I am predominantly a C# developer. Would like to have the java implementation of A* algorithm. Yes, I saw many versions of the same online and I am ...
5
votes
1answer
51 views

Splitting up A* pathing of many units into seperate game frames

So my issues is that, for large groups of units, attempting to pathfind for all of them in the same frame is causing a pretty noticeable slow down. When pathing for 1 or 2 units the slow down is ...
5
votes
1answer
83 views

Algorithm(s) for finding moving entities in a maze

A have a maze and character that's controlled by the player and a drone who has to find him (by itself). Does anyone know an (efficient) AI algorithm for doing something like this? P.S. I know there ...
5
votes
3answers
277 views

Optimizing pathfinding in Constraint Logic Programming with Prolog

I am working on a small prolog application to solve the Skyscrapers and Fences puzzle. An unsolved puzzle: A solved puzzle: When I pass the program already solved puzzles it is quick, almost ...
5
votes
1answer
163 views

Why does my a-star algorithm expand too many nodes despite having a correct heuristic?

I'm doing an assignment where I have to use a-star to solve a 15-puzzle (in C). The heuristic function is Manhattan distance (aka taxicab distance). We are given a sample input/output where the ...
5
votes
5answers
222 views

Using A* and still avoiding collisions?

I am designing a tower-defense game, and for that I am using the A* pathfinding algorithm to reach my destination from my spawn-areas. The problem here is that all the units stack, which doesn't look ...
5
votes
6answers
410 views

Algorithm for finding the best routes for food distribution in game

I'm designing a city building game and got into a problem. Imagine Sierra's Caesar III game mechanics: you have many city districts with one market each. There are several granaries over the distance ...
5
votes
5answers
2k views

C# XNA: AI Engine?

I'm developing a game with zombie running around in a swamp. I want AIs to have functionality like "chase this target" or "run away". A major stumbling block is pathfinding. Is there a good ...
5
votes
1answer
817 views

Correct formulation of the A* algorithm

I'm looking at definitions of the A* path-finding algorithm, and it seems to be defined somewhat differently in different places. The difference is in the action performed when going through the ...
5
votes
1answer
1k views

On Path Finding: a detailed description for a layman of the D* algorithm

The large network (of small world graph type) I wish to deal with is dynamic in nature, new nodes are added and subtracted frequently. Presumably using D* over A* would be a better way to detect paths ...
4
votes
4answers
113 views

AI enemies converge on eachother while pursuing player

I have created enemies that chase the player around a game, but there is a problem. The enemies are too perfect and quickly converge on each other when they get close to the player. This is because ...
4
votes
1answer
95 views

Need some help with pathfinding!

I´m making a puzzle game which needs some pathfinding to guide selected units to their destination. This is my first time dealing with any kind of pathfinding, so I´ve chosen the aStar method which ...
4
votes
2answers
265 views

Approaches to a Dynamic Pathfinding Algorithm

My A* implementation works well for my static environment. If I would now like to work with a dynamic environment, i.e. certain costs between my nodes change while we are traversing from the start to ...
4
votes
2answers
101 views

Possible datasets for testing path finding algorithms

I'm doing some work on pathfinding. So far I have tested my code on scenes composed of 2D cells. I've also created a simple 3d scene to test my work on as well. I'd like to test my work on some 3d ...
4
votes
2answers
564 views

A* search algorithm in PHP

Does anyone have an implementation of the A* algorithm in PHP? I know that wikipedia has a pseudocode and a link to a C++ one, but I can't seem to find one already written in PHP. I am also looking ...
4
votes
3answers
530 views

Optimal algorithm for path-finding in a matrix that does not fit entirely into memory

I'm facing a hard problem: Imagine I have a map of an entire country, represented by a huge matrix of Cells. Each cell represents a 1 square meter of territory. Each Cell is represented as a double ...
4
votes
2answers
301 views

A* implemented in C

Where can I find an A* implementation in C? I was looking around but it seems my google-fu is not strong enough. I've started writing my own implementation, but then I remembered Stack Overflow and I ...
4
votes
6answers
521 views

PacMan character AI suggestions for optimal next direction

Firstly, this is AI for PacMan and not the ghosts. I am writing an Android live wallpaper which plays PacMan around your icons. While it supports user suggestions via screen touches, the majority of ...
4
votes
5answers
3k views

Basic pathfinding with obstacle avoidance in a continuous 2D space

I'm writing a simulation in which a creature object should be able to move towards some other arbitrary object in the environment, sliding around obstacles rather than doing any intelligent ...
4
votes
6answers
994 views

What is the most efficient way of finding a path through a small world graph?

I have a sea of weighted nodes with edges linking clusters of nodes together. This graph follows the typical small world layout. I wish to find a path finding algorithm, which isn't costly on ...
3
votes
2answers
133 views

A star algorithm, but in four directions only

I've been reading about path-finding algorithms and I'm currently looking for one that works just like the A* but where the agent cannot move diagonally. Do the nodes still expand diagonally or is it ...
3
votes
2answers
105 views

A* Pathfinding and Plenty of Pointer Problems?

I know that A* algorithm implementation problems are relatively common on stackoverflow (I've been through a lot of other postings). I have been trying for the past couple of days to implement a ...
3
votes
1answer
97 views

Lazy A* Implementation

I am working on a toy RTS game, for path finding I am relying on A*, problem is alot of units are moving around causing calculated paths to become invalid which is causing wasted CPU cycles, I have to ...
3
votes
3answers
207 views

A* pathfinding guaranteed to find shortest path?

Is the A* path finding algorithm guaranteed to find the shortest path 100% or the time, if implemented correctly? int Graph::FindPath(Node *start, Node *finish, list< vec2f > &path) { ...
3
votes
1answer
150 views

Pathfinding (routing, trip planning, …) algorithms on graphs with time restrictions

I have a database of bus/train/... stops and the arrival/departure times on each date and so on. I'm looking for a way to do a search for the fastest(shortest/cheapest/least transitions) trip between ...
3
votes
1answer
93 views

Efficient way of getting all possible paths + special detail

I'm facing a path finding problem in which I have to find every possible path from one point to another. It would be very easy if it was just that - I'd use a breadth-first algorithm, just like the ...
3
votes
4answers
145 views

Board game pathfinding - finding multiple optimal paths

I have a very simple pathfinding task- a board game played on an 8x8 grid, with each square either being passable or not. What I'm looking for is an algorithm which will give me the best n paths to ...
3
votes
2answers
205 views

Pathfinding with Dynamic Obstacles

I am implementing a simulation that requires me to have some pathfinding. A* works fine for me when my environment does not change. LPA* and D* Lite work fine for me when I encounter a static obstacle ...
3
votes
4answers
268 views

Integrating a map into a java application

As a part of my 4th year software engineering degree I'm doing a project in which I'm giving visualization to several path finding algorithms (for multiple agents). The first part of my project was ...
3
votes
2answers
138 views

Good container for insert-in-order? C++

Hi I was wondering what the best container for inserting elements in order in? A map I think is unnecessary since I am just going to be accessing the element at the front, popping it and then ...
3
votes
3answers
448 views

2D waypoint pathfinding: combinations of WPs to go from curLocation to targetLocation

Please take a moment to understand my situation. If it is not comprehendable, please tell me in a comment. I have an ArrayList of Waypoints. These waypoints are not in any order. A waypoint has the ...
3
votes
2answers
294 views

Making maps and pathfinding AI

I want to retrace maps from google earth these maps would then be used for calculating fastest route from A to B as well as location probability defined by some factors. How would i go about doing ...
3
votes
3answers
329 views

Path finding in a multidimensional array

I sort of understand the concept of pathfinding and how a program looks for point B from point A in the most efficient manner and vaguely familiar with the concept of A*. But what if, instead of ...

1 2 3