A* implementation in Flash

Hi,

I posted an A* implementation a while ago. Since then, I’ve been adding features and making him faster. I now have version 1.10 ready to be published.

A* is a pathfinding engine. It searches the fastest route between 2 given points, in a Tile Based map. If that’s confusing to you, imagine a game like Zelda. In Zelda, you play a character named Link. Link has to save the princes (Zelda) and encounters many enemies a long the way. Well, this engine could (!) tell the enemies how to behave when they see Link. The enemies should have a descent way to get to Link, so that they can attack him. But how can the enemies find their way to link? That is done by using a PathFinding engine.
Another example is habbo (http://www.habbohotel.com/habbo/en/) . If you click somewhere on the map, your character will move there. This is also done by a pathfinding engine.
I’ve chosen A* because it supports a wide range of features. You can give costs to tiles, you can make them walkable or not, you can chose to use clipping (going diagonal) / no-clipping / semi clipping, you can set a different move cost to go diagonal, etc …

You can find all the info at my blog: www.dauntless.be

How to use it:
http://dauntless.be/blog/?p=38

How to install the component:
http://dauntless.be/blog/?p=33

What A* is about:
http://dauntless.be/blog/?p=22

The source:
http://dauntless.be/blog/?p=50

My experience with showing AS-projects is that you only get some comments if it’s provided with at least 1 well-designd example. Therefore, I put one here:
http://dauntless.be/blog/?p=30

Also, last time, Tonypa (flashkit.com) told me that Zehn’s implementation was way faster then mine. Ofcourse, it wouldn’t be smart of me to just ignore the competition. Therefore, I made a little comparison:
http://dauntless.be/blog/?p=44

Please post all your criticism here or on my blog :).

(I’ve chosen for a blog to put all my AS files on, 'cause it lets me keep all the files in 1 place and you guys could now where to find updates).

If anything is unclear, please tell me! :slight_smile:

Attached si a little demo file. (You do have to have the classes installed to be able to use it, or add the component to the .fla file)

Check out the big brain on Brett!

Uhm… ?

I know you have everything posted in those links but a brief 2 sentence explanation of what you’ve built / what it does will probably generate more interest / response than posting links to your blog. :slight_smile:

I’ve edited my first post with a quote from my blog :wink: :p.

No one else has some comments?

Its really nice

Has anyone actually tried it out?

And i’ve put the source files online! (Also on my blog).

soo, im confused lol, ok your comparing yours to zehns and showing how slow yours is compared to zehns, i would rather use zehn’s now =(

Yep, I have to admit that Zehn’s implementation is faster on short, easy paths.

You really kicked his *** there lol, and not just by a little by a ton. I think zehns was made for tiled based games where the viewable area is only 12x12 tiles or so.

but zhens is still super fast

True.

-ActionScript 1.0 is faster than AS 2.0
-It has less functionality
-Zehn’s a less dynamical (since its AS 1.0)

And some other things… But it’s really up to wat you need it for.

I like this, and I see how yours is a benefit.

Why don’t you do comaprisons of the distance between the two points, then choose which A* implementation to use.

And a note, Actionscript 1.0 is in no way faster than Actionscript 2.0. They are both compiled down to the same bytecode, there is no performance gain during execution time… performance gains are only made during development.

TakeCare.
_Michael

I know AS 2.0 is converted to AS 1.0 during compilation, but still…
I read somewhere that AS 2.0 was slower than AS 1.0 but I can’t find it. I’ll keep looking though ! :wink:

Nice work Dauntless!
A* is probably the most complicated thingamy around.

EDIT: if zhens is faster it probably has a smaller hieristic (cant remember the spelling)

Well Daunt, I think you have taken the challenge pretty far and fair. Keep up the good work.