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!
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)