A*Star Pathfinding With GE

There is a way to do. I have it working but it needs to be broken up into pieces that can be done as stages so the computations don't slow down the game when running concurrently with character behaviour.
Create a blank array of point structures (two integers) with some added fields:
struct PATHPOINT
{
int x;
int y;
int distance;
}
Now create two arrays of these points - one to hold points for pathfinding and another to hold the resulting path. The first should be bigger than the second, but you'll have to be the judge of how big is enough for your game requirements.
Search in a circle at say, 16 angles starting with a distance of 10 pixels. (You'll have to adjust this figure to customize it to your game). Use the safe actor function to see if your actor can occupy this space projected at X, Y and ONLY add that point if they can. Keep doing this in a circle and extending the distance until you are within a given distance of your destination and can reach it from that point. You have now found your target and have to find the most efficient set of point nodes back to your origin.
Count back through the array you've created, scanning the array each time from the destination to find the closer distance to your origin and the closest distance to current path node. Each time you find just such a cell and it is the closest to the current cell, store it in the second array and bump up your counter of the elements in use in that array.
Now you've hit your origin, you're ready to start your character walking on this path. Step backwards through the path list of cells, giving your character a MoveTo command to each one. When you reach your destination, you have implemented pathfinding in Game Editor.
Optimizing the pathfinding routine and getting it to work cooporatively in DrawActor without slowing your game down is a different subject, especially when many concurrent actors are doing pathfinding. I am still working on my routine to make it faster and more efficient.
Create a blank array of point structures (two integers) with some added fields:
struct PATHPOINT
{
int x;
int y;
int distance;
}
Now create two arrays of these points - one to hold points for pathfinding and another to hold the resulting path. The first should be bigger than the second, but you'll have to be the judge of how big is enough for your game requirements.
Search in a circle at say, 16 angles starting with a distance of 10 pixels. (You'll have to adjust this figure to customize it to your game). Use the safe actor function to see if your actor can occupy this space projected at X, Y and ONLY add that point if they can. Keep doing this in a circle and extending the distance until you are within a given distance of your destination and can reach it from that point. You have now found your target and have to find the most efficient set of point nodes back to your origin.
Count back through the array you've created, scanning the array each time from the destination to find the closer distance to your origin and the closest distance to current path node. Each time you find just such a cell and it is the closest to the current cell, store it in the second array and bump up your counter of the elements in use in that array.
Now you've hit your origin, you're ready to start your character walking on this path. Step backwards through the path list of cells, giving your character a MoveTo command to each one. When you reach your destination, you have implemented pathfinding in Game Editor.
Optimizing the pathfinding routine and getting it to work cooporatively in DrawActor without slowing your game down is a different subject, especially when many concurrent actors are doing pathfinding. I am still working on my routine to make it faster and more efficient.