Pathfinding generally refers to the problem of finding the shortest route between two points, subject to any obstacles. Pathfinding has application in a wide range of areas including robotics and game development. Algorithms for pathfinding tend to be closely related to graph and tree search ...
0
votes
0answers
21 views
hierarchical pathfinding implementation
I want to divide my map in clusters and implement HPA*. Where do I start, each time I try this I run into problems. I need to implement this on a random and dynamically changing map.
I am unsure how ...
-2
votes
0answers
30 views
Is “find the shortest path from a to z passing each node once in a directed graph” np-complete? [closed]
Given a directed graph with the following attributes:
- a chain from node a to node z passing nodes b to y exists and is unidirectional.
- additionally a set of nodes having bidirectional vertices to ...
21
votes
4answers
344 views
+50
A* Admissible Heuristic for die rolling on grid
I need some help finding a good heuristic for the following problem:
You are given an R-by-C grid and a six-sided die. Let start and
end be two distinct cells on this grid. Find a path from ...
1
vote
2answers
88 views
Longest path on a grid, without revisiting grid cells
I am looking for an algorithm to fidn the longest path between two points on a grid, with the added restriction that you cannot revisit a cell on the grid. (Also, you can only move up, down, left, and ...
0
votes
0answers
18 views
Pathfinding in int array java
I am making a maze solver in java and i am trying to add the logic to my program. I want to use an efficient, but simple way of finding the most direct route to the end, my maze is stored as a matrix, ...
0
votes
1answer
60 views
Why does Djikstra's algorithm need to keep track of the number of steps?
I can understand keeping track of the accumulated distance, the distance per path, and keeping track of the name (or position) of the vertex, but why keep track of the number of steps unless you are ...
0
votes
0answers
30 views
“Pathfind” a linked list?
I'm toying with the idea of making a sort-of virtual network "simulator" if you will. I wanted to put together something of a linked-list (or best I can describe it as).
Imagine it like a normal IP ...
0
votes
0answers
48 views
c++ read a text file, display similarly
Firstly, please forgive me, my coding knowledge is poor at best.
I've read a number of guides and for the life of me cannot work this out.
I was playing around with code previously featured on this ...
0
votes
2answers
63 views
How to move a rabbit in a labyrinth to find the carrot without knowing the position of the rabbit and the carrot
I got this question during an interview with a big company:
let`s suppose we have this interface:
interface ILabyrinth
{
// create a labyrinth of size 100*100 max. Rabbit and carrot are ...
0
votes
1answer
51 views
Setting up an A* search
I am writing a small section of a program in which i have to write up a pathfinding algorithm. The function takes in what will be known as 'routes' that each define a start and end point in 2D space. ...
0
votes
2answers
88 views
Is A-star guaranteed to give the shortest path in a 2D grid
I am working with A-star algorithm, whereing I have a 2D grid and some obstacles. Now, I have only vertical and horizontal obstacles only, but they could vary densely.
Now, the A-star works well ...
0
votes
1answer
57 views
How can we optimize this pathfinding function?
I've made a program which includes a pathfinding algorithm, which works great technically, but makes the program freeze for half a second each time the search function is called. This is obviously ...
0
votes
1answer
133 views
Best pathfinding algorithm for traversing a 2D array (grid) touching some mandatory points (JavaScript/Java/C# )
I have a 2D array which I want to traverse starting form one point and ending to another with the following constraints:
Only moves in horizontal and vertical direction are allowed
The path must ...
0
votes
1answer
44 views
How to make a box2d body follow a sine curve
I would like to make a sprite follow the path of a sin curve, using the SetVelocity(x,y) function. At first this seemed simple to me, I made a function that returns the derivative of the function I ...
1
vote
1answer
61 views
Search Algorithm for Pacman
I need to find the path with the lower cost in a graph represented by a matrix. I researched a bit on the Dijkstra's algorithm but I need a vector with the sequence of nodes in the shortest path, not ...
0
votes
1answer
18 views
Simple Astar application ANDROID only
I have a question I am looking for some tutorials or guides on how to create a simple android game or application.
the user can define their starting position
the application shows the route ...
4
votes
3answers
40 views
How can I calculate all nodes within X?
I am trying to implement a pathfinding algorithm, but I think I'm running into terminology issues, in that I'm not quite sure how to explain what I need the algorithm to do.
I have a regular grid of ...
0
votes
1answer
44 views
AI algorithm possible solution for shortest path
I need advice for heuristic for minesweeper game. If found 10 fields without mine, i am curious how to estimate what should be the next field to open? I was thinking about finding possibility for ...
-3
votes
1answer
82 views
C++ 9x9 cell board ball movement path checking
There have a 9x9 cell board (2d-array) with different color balls. Player can move a ball from one cell to another cell. The ball can move with a path which is no ball on the cell between the current ...
0
votes
1answer
33 views
Path finding andorid application with prompt screen in android
Hi there i have thoroughly search ed to try and find this answer but had no luck.
I am trying to achieve this:
Android application that calculates the shortest path between two given points which ...
8
votes
2answers
234 views
A* Pathfinding over multiple grids
I'm attempting to implement A* pathfinding around a cube, the cube is made up of 6 grids and to keep it simple I have 4 methods GetXPlus, GetXMinus, GetYPlus, GetYMinus. Each method checks to see if ...
0
votes
2answers
40 views
Pathfinding: How can I efficiently check if a path is possible?
I am using Dijkstra's algorithm to solve for the ideal path. As part of the program the algorithm is called several thousands of times.
More than half the time the paths are impossible and Dijkstra's ...
0
votes
1answer
87 views
Recursive path finding issue
I'm codding a path finding algorithm, and i need some help to figured out how to speed it a lot by avoid recursive goes on while an exception case is created.
I have 1 matrix ( spaces = walls; hash = ...
1
vote
1answer
33 views
Random Config Generation for RRT
I am writing code for Rapidly exploring trees for robotic arm movement. I have two doubts
i) what is the distance metric that I have to use to find the nearest node in the graph? If it is ...
-1
votes
1answer
82 views
Pathfinding algorithm
I'm doing a project where the objective is to find the less turn-cost way to send X ants from point A to point B with the restriction that only one ant at a time can stand on "in-between platforms" - ...
0
votes
0answers
203 views
Python, recursive breadth first search
I am trying to find the shortest path on a grid(list of lists of tuples)
I've gotten this so far:
def planPath(self, x, y, goal, board):
visited = []
path = []
def pathFinder(curr):
...
1
vote
0answers
41 views
Shortest Path w/ ability to destroy set number of obstacles
I have a programming assignment to find shortest path from START to GOAL in a "Sector". You can visualize the Sector as a 2D array of Nodes with one node being START and another node being GOAL. All ...
2
votes
2answers
93 views
A* Search - least number of hops?
I'm trying to create an A* pathfinding algorithm, however I'm having a little trouble getting off the ground with it. A little background:
I am by no means versed in pathfinding algorithms, however I ...
0
votes
2answers
134 views
A star path finding in corridor
I am implementing A* for path finding of a mobile robot inside the corridor. As of now the path is produced inside the corridor but it slides over to the right following all the edges of the ...
3
votes
1answer
87 views
A* Algorithm: closed list contains too many elements / too large
I'm currently implementing the A* algorithm in JavaScript. However, I've ran into a problem: My closedList seems way too large. Here is a screenshot of the output:
What could cause this problem? Is ...
-1
votes
1answer
95 views
A* infinite loop
I'm trying to implement an A* algorithm for a pathfinding problem.
It works, like 9 out of 10 times, but at some points I get a (possibly) infinite loop, and the program doesn't find the optimal ...
0
votes
1answer
108 views
Stack Overflow with Pathfinding Algorithm
I have been working on a project that will, in short, generate a 2D matrix of numbers, with "empty" spaces are represented by 0's. Each number is connected by a list of nodes. The nodes contain the ...
5
votes
7answers
293 views
AI: Fastest algorithm to find if path exists?
I am looking for a pathfinding algorithm to use for an AI controlling an entity in a 2D grid that needs to find a path from A to B. It does not have to be the shortest path but it needs to be ...
1
vote
1answer
90 views
Drawing on the android screen with a coordinate system
My question is probably going to be initially very confusing to read, so just bear with me. I'll start it off with a little preface for context:
Preface:
I have an app that will be using an array ...
2
votes
1answer
119 views
Pathfinding in Prolog
I'm trying to teach myself Prolog. Below, I've written some code that I think should return all paths between nodes in an undirected graph... but it doesn't. I'm trying to understand why this ...
0
votes
0answers
103 views
Javascript a* pathfinding library with smoothing [closed]
Does anyone know of a good javascript pathfinding library (MIT/ZLib/BSD license) that can smooth a* paths and provide realistic turns? I am using a js implementation of a* (demo below) in an RTS but ...
0
votes
2answers
141 views
Find shortest possible path with least possible edge count around obstacle
I'm in need of an algorithm that provides me with information about the shortest path between two points. The path should have as few edges as possible since every waypoint, every turn costs time and ...
0
votes
1answer
61 views
How can i use triangle picking to determine the exact location of a triangle in world space coordinates?
Im trying to implement point and click movement in my game, but at the moment im stumped about how i can select parts of a mesh for the player to walk to.
So what ive done is ive got a navigational ...
1
vote
0answers
93 views
problems with C# Port of Recast Detour Navigation Mesh for XNA, A* Pathing
Update 10/03
Ok, so i figured out the problem. C# is a funny old language..I changed
int navMeshCount = navMesh.GetPath(ref start, ref end, routePolys, navMeshRoute, false);
to
var ...
-1
votes
2answers
130 views
Finding a path in a 2d grid and returning all matched nodes
Say I have an rows*columns grid, and each node on the grid has an integer (state) value.
state[NUMBER_OF_ROWS][NUMBER_OF_COLUMNS]
If the value of
state[row][0] == state[row][NUMBER_OF_COLUMNS -1]
...
-1
votes
1answer
35 views
Confused about where to go next in make A*(A star) in Andriod [closed]
I've divide up my canvas into an array of rects. So like rect[x][y]. I'm just having a huge brain fart on how to move on past this. Before I go down this path, have I already screwed up making my ...
0
votes
2answers
137 views
Dijkstra's algorithm average runtime change based on complexity
Dijkstra algorithm with a self-balancing binary search tree has a Complexity of O(e * log(n)). Does this mean that in a statistical middle, pathfinding queries for e=100 and n=25 take double the time ...
3
votes
2answers
86 views
Djikstra, Breadth First or A* for tower defense? [closed]
So I asked a question about optimizing my A* for my tower defense game and got a couple answers saying I should use DJikstra or Breadth first instead to calculate the shortest distance for the 50+ ...
0
votes
0answers
45 views
Dynamic path finding [duplicate]
So my goal right now is to create a game like desktop tower defense. You can add / delete towers on the map and the enemies will change their path accordingly. Obviously, I believe doing this with A* ...
3
votes
1answer
111 views
Pathfinding with teleporters
I'm working on a project with a virtual robot (Turtles in the ComputerCraft mod for Minecraft), where the robot would be in a maze of tunnels and have to navigate around in them. The world is ...
2
votes
2answers
87 views
stealth game AI solver
I'm making an AI for solving a simple stealth game. The objective is to go to the goal point without being caught by enemies(with flashlights). I already implemented a pathfinding algorithm(A*) but ...
1
vote
1answer
166 views
Minimum cost cycle on complete graph
I have a complete graph with undirected, weighted edges and need to find the lowest cost cycle through a subset of the graph nodes. Unlike in Travelling Salesman, any node can be visited more than ...
-5
votes
1answer
245 views
C++ Tiled pathfinding algorithm [closed]
Basically, we have to build a maze tile based game which is 10x10 within which you can only move right or down starting from the top left hand corner and aiming for the bottom right hand corner. ...
-2
votes
1answer
152 views
(A*) Pathfinding
(A*) Pathfinding
Only for up,down,left,right
Anyways, I'm not sure, I've checked some examples, but, will it be like this?:
Point StartTile;
Point EndTile;
List<Point> CheckedPoints;
...
0
votes
1answer
202 views
C++ path finding in a 2d array
I have been struggling badly with this challenge my lecturer has provided. I have programmed the files that set up the class needed for this solution but I have no idea how to implement it, here is ...
