I'm slowly advancing with my RTT game, but right now I'm kinda stuck on the pathfinding. The algorithm I am using is the Flow Field specifically meant for cases like in RTT in which you have multiple instances trying to get to the same location from different places. It is a combination of a flood field algorithm which fills the whole grid and vectors. Now I am trying to optimize the flood fill as much as possible.
Currently I'm using a sloppy algorithm which checks if neighboring nodes were already checked and it's really damn slow. It takes around 1.6 seconds for a 64x64 grid without generating the vector field, and my maps will probably be at least 128 units wide and long. |