• Register

Indie Game Developer (like the movie). I made a couple of games and I usually tweet a lot.

Latest Media

We're sorry, but no images, videos or audio files have been added to this gallery.

If you would like to share media with the community, sign up and you can.

Blog RSS Feed Report abuse Latest Blog: A* Pathfinding

0 comments by DJ_Link on Oct 28th, 2010

For my current project I've been working with A* as a path-finding solution.

Basically it's a way to get from point A to point B.

This is used for AI in games mostly on tiled based games, It's very simple to understand and implement.

As A* traverses the graph, it follows a path of the lowest known cost, keeping a sorted priority queue of alternate path segments along the way. If, at any point, a segment of the path being traversed has a higher cost than another encountered path segment, it abandons the higher-cost path segment and traverses the lower-cost path segment instead. This process continues until the goal is reached.

The major choke point is the heuristic used to calculate which node to take next. I've started by using Manhattan Distance.
Its primary advantage is that it will generally get you to the target faster than most alternatives. Its primary drawback is that in a 8-way pathfinder so it is not guaranteed to give us the shortest possible path.

code:
float cost = 10*(abs(currentX-targetX) + abs(currentY-targetY))

Although it works fast it's not accurate and if I forced for finding the shortest possible it was rather slow for my 80x44 grid (3520 tiles), sometimes taking 3-4 seconds to find a path.

I decided to take another approach and using Diagonal Shortcut, its primary advantage is that, because it is balanced, it is able to fully consider small modifiers like a turning penalty or influence map modifier like having a non walkable tile, a rock, a tree, whatever. It is a bit slower than the Manhattan method, though.

code:
float cost;
float xDistance = abs(currentX-targetX)
float yDistance = abs(currentY-targetY)
if (xDistance > yDistance)
     cost = 14*yDistance + 10*(xDistance-yDistance)
else
     cost = 14*xDistance + 10*(yDistance-xDistance)

In case you are wondering the 10 and the 14 are to define if it's a diagonal or a horizontal/vertical movement since diagonals take longer to traverse than straight lines of course.
After I'm getting much faster movements.

It's not that Manhattan is worse and you shouldn't use it, it all depends on the application your using.

* On a square grid that allows 4 directions of movement, use Manhattan distance.
* On a square grid that allows 8 directions of movement, use Diagonal distance.

This is a video I've done using Manhattan distance using tile grids generated from a black and white image.

Groups
2 Girls 1 Game

2 Girls 1 Game

Hobbies & Interests group with 74 members, open to all members

Join us every week for our definitive one-stop podcast to quench your thirst for outstanding independent games. From clever old school 8-bit freebies...

Desura

Desura

Official group with 8,188 members, open to all members

Desura is a community driven digital distribution service for gamers, putting the best games, mods and downloadable content from developers at gamers...

Different Pixel

Different Pixel

Developer with 2 members, invitation only

Different Pixel is an indie game studio formed by one programmer and one designer. Our main goal is to create games using creativity and art in a way...

Indie Devs

Indie Devs

Hobbies & Interests group with 855 members, open to all members

A group dedicated to indie and standalone game development.

Spotlight

Spotlight

Official group with 437 members, open to all members

Each month we will bring to you new (and old updated mods) released to play in an easy to digest video format. Sit back, grab some popcorn, and tune in...

Post comment Comments
Wizardum
Wizardum Aug 31 2010, 5:33pm says:

wow um PortuguÊs por aqui
isto hoje em dia é dificil de encontrar

bem boa sorte para o teu projecto, segundo li, estás quase a acabá.lo.
Fico à espera ;)

cheerz

+1 vote     reply to comment
DJ_Link
DJ_Link Sep 13 2010, 3:43pm replied:

Heheh thanks.
Só vi agora aqui o comment. Pensava que o indieDB alertava. É difícil fazer track a isto tudo.
Sim está mesmo quase o jogo. Vamos lá a ver.

+1 vote     reply to comment
Post a Comment
click to sign in

You are not logged in, your comment will be anonymous unless you join the community today (totally free - or sign in with your social account on the right) which we encourage all contributors to do.

2000 characters limit; HTML formatting and smileys are not supported - text only

Level
Avatar
Avatar
Offline Since
May 24, 2013
Country
Portugal Portugal
Gender
Male
Age
29
Member Watch
Track this member
Accolades
Desura Spotlight
Statistics
Activity Points
375
Rank
5,134 of 328,587
Watchers
0 members
Time Online
1 day
Comments
58
Site Visits
2,713
Profile Visitors
1,542 (3 today)
Contact
Homepage
David-amador.com
Private Message
Send Now
Email
Members Only
Steam
^DJ_Link^
XBox Live
Different Link
Skype
the.david.amador
Twitter

Latest tweets from @dj_link

The box art for Arkham Origins is my favorite so far from the Arkham series.

6mins 12secs ago

@mikeBithell that's actually a good ideia. Might do the same too

14mins 19secs ago

@NoogyTweet well deserved

1hour 30mins ago

Zelda drawing her life T.co

2hours 5mins ago

@iamcarneiro movie maker=> T.co Nero used to had that option too.

2hours 33mins ago

@iamcarneiro windows movie maker? I don't know if that has that option. But withouth extra software I'm not sure you can

2hours 35mins ago

Has anyone here ever purchased any movies on iTunes? I'm curious, if we purchase can it be played anywhere or does it have some DRM?

3hours 4mins ago

Also keep in mind that the game was entirely designed and programmed by @NoogyTweet

3hours 58mins ago

The awesome Dust: An Elysian Tail by @NoogyTweet is out on steam. T.co

3hours 59mins ago

In her next movie Jennifer Aniston plays a stripper acting as a housewife to smuggle drugs. You have my attention.

5hours 34mins ago

paranoidMonkey
paranoidMonkey friends since Jun 20, 2010
INtense!
INtense! friends since Mar 22, 2012
m0r3n4
m0r3n4 friends since Jul 1, 2010
jtpup0
jtpup0 friends since Sep 13, 2012
jax42
jax42 friends since May 22, 2013
dcfedor
dcfedor friends since Sep 5, 2012
KopanoGS
KopanoGS friends since Oct 24, 2012
overlordror
overlordror friends since Jun 21, 2010
StefanRomanHosch
StefanRomanHosch friends since Apr 10, 2012
fdpc
fdpc friends since Jan 20, 2013