time-slicing or multithreading for pathfinding?
#2 Members - Reputation: 438
Posted 02 July 2012 - 12:35 AM
In many situations you should need neither for the following reasons :-)
- Time-slicing implies your pathfinding requests take longer than a frame. Best optimize them or use an algorithm that fits comfortably within a frame. Then do an integer number of them each frame.
- Multi-threaded pathfinding is used on PS3, but often on XBox360 or PC there's a separate (single) thread for pathfinding.
Alex
#3 Members - Reputation: 150
Posted 02 July 2012 - 12:46 AM
What are your requirements?
In many situations you should need neither for the following reasons :-)Keep in mind that either of these choices can result in your AI being much less deterministic if you're not very careful!
- Time-slicing implies your pathfinding requests take longer than a frame. Best optimize them or use an algorithm that fits comfortably within a frame. Then do an integer number of them each frame.
- Multi-threaded pathfinding is used on PS3, but often on XBox360 or PC there's a separate (single) thread for pathfinding.
Alex
Thanks Alex! I'm planning to make a RTS game, use NavMesh and RVO for AI navigation, so if there are hundreds of units request pathfinding at same time, I don't know which solution is the best.
#4 Moderators - Reputation: 8420
Posted 02 July 2012 - 01:08 AM
You shouldn't really ever run into a situation where you absolutely have to have hundreds of path results in the same frame.
[Work - ArenaNet] [Epoch Language] [Scribblings] [Journal - peek into my shattered mind]
#5 Members - Reputation: 150
Posted 02 July 2012 - 03:32 AM
I want to test multithreaded path finding for large units.If you have to service large volumes of path requests, just do them in batches - 20 in one frame, 20 in the next frame, and so on. (20 is just a made-up number, of course.)
You shouldn't really ever run into a situation where you absolutely have to have hundreds of path results in the same frame.
#6 Moderators - Reputation: 8420
Posted 02 July 2012 - 11:42 AM
[Work - ArenaNet] [Epoch Language] [Scribblings] [Journal - peek into my shattered mind]
#7 Members - Reputation: 150
Posted 02 July 2012 - 07:56 PM
What do you mean by "multithreaded pathfinding" though? Running multiple path queries on separate threads concurrently, or using multiple threads for a single query?
I mean running multiple path queries on separate threads concurrently, it will not affect the fps.
#8 Moderators - Reputation: 8420
Posted 02 July 2012 - 08:40 PM
[Work - ArenaNet] [Epoch Language] [Scribblings] [Journal - peek into my shattered mind]
#9 Members - Reputation: 4750
Posted 03 July 2012 - 11:21 PM
My game: Gnoblins
Developer journal about Gnoblins
Small goodies: Simple alpha transparency in deferred shader
#10 Members - Reputation: 357
Posted 04 July 2012 - 06:55 PM
Multiple core - definitely have as a seperate thread (and if you profile and find that it gets done and has time left on that core you might have someother lightweight task for it to do to fill out its capacity.
If you have too much pathfinding to do then you need a priority scheme to figure out the best ones to calculate first (and do less importants ones less often - but still get done within some maximum timespan)
Eaxmple would be units who's target has moved over one that hasnt....
See if you can do a hierarchical scheme to simplify the processing (depends on terrain but interiors with obvious 'portals and coarse paths limited by the terrain are good candidates for this)
Also recycling the old path (if you have memory to keep it) can shortcut processing on subsequent pathfindings.
Optimizing the pathfinder itself can often speed up the processing by a magnitude (make use of the specifics of your map data, instead of a generalized A* )






