Flatlander
Species Developer
I see I was mentioned here. So I am just going to summerize TFS's Pathfinding and what changes you can make.
1) Pathfinding (This is basically the function that finds a path. getPathMatching is the function TFS uses and I upgraded it about 7 years ago myself to be much faster. Which is what you found in my previous threads and github conversations with Mark. The changes can technically make monsters path differently around fields or when they can push monsters but no player would notice the slight differences and rare cases where the faster code would cause a change in the "most efficient path".
2) Pathfinding updates: This is WHEN TFS calculates a new path for a creature. If you have long-distance pathfinding (for example if you increased the screen size) or if you have really fast creatures this can cause some slowdowns. But honestly you shouldn't see much problems leaving the current TFS "as is".
Currently TFS updates pathfinding in the following situations:
a) When the following creature moves
b) When a follow target moves
c) If it has been 2 seconds since the last update
Monsters in TFS already react very quickly and should path efficiently to their target.
I added one more since I want my monsters to be super-responsive:
d) When a monster gets a new target in :
nThink() I immediately calculate a new path to the new target.
Some people might not like this because you cannot "outsmart" monsters by running around them, so it depends on how you want your monsters to chase.
I hope this answers some of the questions you guys might have, but if you have any ideas or problems with the current TFS pathfinding feel free to post them here and I can take a look at them.
1) Pathfinding (This is basically the function that finds a path. getPathMatching is the function TFS uses and I upgraded it about 7 years ago myself to be much faster. Which is what you found in my previous threads and github conversations with Mark. The changes can technically make monsters path differently around fields or when they can push monsters but no player would notice the slight differences and rare cases where the faster code would cause a change in the "most efficient path".
2) Pathfinding updates: This is WHEN TFS calculates a new path for a creature. If you have long-distance pathfinding (for example if you increased the screen size) or if you have really fast creatures this can cause some slowdowns. But honestly you shouldn't see much problems leaving the current TFS "as is".
Currently TFS updates pathfinding in the following situations:
a) When the following creature moves
b) When a follow target moves
c) If it has been 2 seconds since the last update
Monsters in TFS already react very quickly and should path efficiently to their target.
I added one more since I want my monsters to be super-responsive:
d) When a monster gets a new target in :

Some people might not like this because you cannot "outsmart" monsters by running around them, so it depends on how you want your monsters to chase.
I hope this answers some of the questions you guys might have, but if you have any ideas or problems with the current TFS pathfinding feel free to post them here and I can take a look at them.