Efficiently pathfinding many flocking enemies around obstaclesWhat algorithm to use for path...

Did a flight controller ever answer Flight with a no-go?

Sun setting in East!

Does norwegian.no airline overbook flights?

If all stars rotate, why was there a theory developed, that requires non-rotating stars?

Can't stopover at Sapporo when going from Asahikawa to Chitose airport?

how do you harvest carrots in creative mode

Non-visual Computers - thoughts?

How should I face my manager if I make a mistake because a senior coworker explained something incorrectly to me?

Shouldn't the "credit score" prevent Americans from going deeper and deeper into personal debt?

Why were movies shot on film shot at 24 frames per second?

Mathematical uses of string theory

How to use "Du hast/ Du hattest'?

Is a player able to change alignment midway through an adventure?

If the first law of thermodynamics ensures conservation of energy, why does it allow systems to lose energy?

Irish Snap: Variant Rules

Why did this happen to Thanos's ships at the end of "Avengers: Endgame"?

Are there any elected officials in the U.S. who are not legislators, judges, or constitutional officers?

What is the best option for High availability on a data warehouse?

Which note goes on which side of the stem?

Most practical knots for hitching a line to an object while keeping the bitter end as tight as possible, without sag?

Average period of peer review process

Does travel insurance for short flight delays exist?

Is "The life is beautiful" incorrect or just very non-idiomatic?

Who was president?



Efficiently pathfinding many flocking enemies around obstacles


What algorithm to use for path mapping?pathfinding with obstacles in a Warcraft 3 like gameHow can I generate a 2d navigation mesh in a dynamic environment at runtime?Influence Maps for Pathfinding?Pathfinding for fleeingPathfinding in non tile-based 2d map (maybe potential field)A* in 2D grid with obstacles in between graph nodesAn algorithm for forming unit groupsHow do I implement A* pathfinding for enemies to follow the player?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







19












$begingroup$


I'm working on trying to improve the pathfinding for my game's enemies. Right now, they basically just constantly move towards the player's exact position by calculating the angle between themselves and the players and moving in that direction. I also have a flocking algorithm which prevents the enemies from stacking on top of each other, so they will form up into groups rather than clip through each other.



However, now that I've added a tile-based map, I need the enemies to also be able to path around obstacles and walls for example. I initially tried adding a separation value to "non-walkable" tiles so that the flocking algorithm would consider the walls and obstacles as objects to move away from. I have yet to work out whether or not this is feasible because my initial test showed the enemies hitting an invisible "wall" where there are no non-walkable tiles, yet for some reason, they hit it and start spazzing out.



I was wondering if it might be too performance heavy to calculate a path to the player using A* and then use the flocking algorithm to prevent clumping. Originally my game was going to be a wave-based shooter, but I've decided instead to make it level-based in the vein of Hotline Miami, so it's likely I'll have fewer enemies, with the occasional horde, and just make them stronger.



Is this a viable solution? I'm using Java with Slick2D as my game engine. Or is there a better solution / algorithm that tackles both these problems?










share|improve this question











$endgroup$










  • 5




    $begingroup$
    As I described in the edit, "is this too heavy" is a question to ask your profiler, because it will depend on your implementation, target hardware, performance budget, and the context of your game — all stuff that you and your profiler know intimately but Internet strangers do not. If you want to get flocks pathfinding efficiently, we can suggest strategies to help with that, but only your own profiling can answer what's efficient enough for your needs. If you profile and identify a specific performance problem, we can also help you find how to solve that problem.
    $endgroup$
    – DMGregory
    2 days ago






  • 1




    $begingroup$
    How you implement them affects performance. For instance, only running A* on leaders & relying on flocking for followers.
    $endgroup$
    – Pikalek
    2 days ago










  • $begingroup$
    If your game is primarily based on fighting these enemies, the algorithm you take will have a massive impact on what the game feels like. So you should try different approaches, e.g. does it feel like the enemies know the level and the position of the player perfectly at all times and they track him like directed by an all-knowing AI ? - other approaches could be to let the enemies run in the general direction where the player made noise and only on direct line of sight run towards him, or shouting and informing other enemies where the player is...
    $endgroup$
    – Falco
    17 hours ago










  • $begingroup$
    @Falco Since the game is no longer wave-based, and will be level-based, and since the enemies are zombies... I was considering making it so you either have to be seen or make noise for them to find you. So if you use a noisy weapon? It emits a sound in a range and all enemies in range path towards the location of the sound emitted, and will then path randomly around that area.
    $endgroup$
    – Darin Beaudreau
    12 hours ago


















19












$begingroup$


I'm working on trying to improve the pathfinding for my game's enemies. Right now, they basically just constantly move towards the player's exact position by calculating the angle between themselves and the players and moving in that direction. I also have a flocking algorithm which prevents the enemies from stacking on top of each other, so they will form up into groups rather than clip through each other.



However, now that I've added a tile-based map, I need the enemies to also be able to path around obstacles and walls for example. I initially tried adding a separation value to "non-walkable" tiles so that the flocking algorithm would consider the walls and obstacles as objects to move away from. I have yet to work out whether or not this is feasible because my initial test showed the enemies hitting an invisible "wall" where there are no non-walkable tiles, yet for some reason, they hit it and start spazzing out.



I was wondering if it might be too performance heavy to calculate a path to the player using A* and then use the flocking algorithm to prevent clumping. Originally my game was going to be a wave-based shooter, but I've decided instead to make it level-based in the vein of Hotline Miami, so it's likely I'll have fewer enemies, with the occasional horde, and just make them stronger.



Is this a viable solution? I'm using Java with Slick2D as my game engine. Or is there a better solution / algorithm that tackles both these problems?










share|improve this question











$endgroup$










  • 5




    $begingroup$
    As I described in the edit, "is this too heavy" is a question to ask your profiler, because it will depend on your implementation, target hardware, performance budget, and the context of your game — all stuff that you and your profiler know intimately but Internet strangers do not. If you want to get flocks pathfinding efficiently, we can suggest strategies to help with that, but only your own profiling can answer what's efficient enough for your needs. If you profile and identify a specific performance problem, we can also help you find how to solve that problem.
    $endgroup$
    – DMGregory
    2 days ago






  • 1




    $begingroup$
    How you implement them affects performance. For instance, only running A* on leaders & relying on flocking for followers.
    $endgroup$
    – Pikalek
    2 days ago










  • $begingroup$
    If your game is primarily based on fighting these enemies, the algorithm you take will have a massive impact on what the game feels like. So you should try different approaches, e.g. does it feel like the enemies know the level and the position of the player perfectly at all times and they track him like directed by an all-knowing AI ? - other approaches could be to let the enemies run in the general direction where the player made noise and only on direct line of sight run towards him, or shouting and informing other enemies where the player is...
    $endgroup$
    – Falco
    17 hours ago










  • $begingroup$
    @Falco Since the game is no longer wave-based, and will be level-based, and since the enemies are zombies... I was considering making it so you either have to be seen or make noise for them to find you. So if you use a noisy weapon? It emits a sound in a range and all enemies in range path towards the location of the sound emitted, and will then path randomly around that area.
    $endgroup$
    – Darin Beaudreau
    12 hours ago














19












19








19


12



$begingroup$


I'm working on trying to improve the pathfinding for my game's enemies. Right now, they basically just constantly move towards the player's exact position by calculating the angle between themselves and the players and moving in that direction. I also have a flocking algorithm which prevents the enemies from stacking on top of each other, so they will form up into groups rather than clip through each other.



However, now that I've added a tile-based map, I need the enemies to also be able to path around obstacles and walls for example. I initially tried adding a separation value to "non-walkable" tiles so that the flocking algorithm would consider the walls and obstacles as objects to move away from. I have yet to work out whether or not this is feasible because my initial test showed the enemies hitting an invisible "wall" where there are no non-walkable tiles, yet for some reason, they hit it and start spazzing out.



I was wondering if it might be too performance heavy to calculate a path to the player using A* and then use the flocking algorithm to prevent clumping. Originally my game was going to be a wave-based shooter, but I've decided instead to make it level-based in the vein of Hotline Miami, so it's likely I'll have fewer enemies, with the occasional horde, and just make them stronger.



Is this a viable solution? I'm using Java with Slick2D as my game engine. Or is there a better solution / algorithm that tackles both these problems?










share|improve this question











$endgroup$




I'm working on trying to improve the pathfinding for my game's enemies. Right now, they basically just constantly move towards the player's exact position by calculating the angle between themselves and the players and moving in that direction. I also have a flocking algorithm which prevents the enemies from stacking on top of each other, so they will form up into groups rather than clip through each other.



However, now that I've added a tile-based map, I need the enemies to also be able to path around obstacles and walls for example. I initially tried adding a separation value to "non-walkable" tiles so that the flocking algorithm would consider the walls and obstacles as objects to move away from. I have yet to work out whether or not this is feasible because my initial test showed the enemies hitting an invisible "wall" where there are no non-walkable tiles, yet for some reason, they hit it and start spazzing out.



I was wondering if it might be too performance heavy to calculate a path to the player using A* and then use the flocking algorithm to prevent clumping. Originally my game was going to be a wave-based shooter, but I've decided instead to make it level-based in the vein of Hotline Miami, so it's likely I'll have fewer enemies, with the occasional horde, and just make them stronger.



Is this a viable solution? I'm using Java with Slick2D as my game engine. Or is there a better solution / algorithm that tackles both these problems?







java algorithm ai path-finding






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 2 days ago









DMGregory

71.3k16 gold badges127 silver badges202 bronze badges




71.3k16 gold badges127 silver badges202 bronze badges










asked 2 days ago









Darin BeaudreauDarin Beaudreau

2941 silver badge11 bronze badges




2941 silver badge11 bronze badges











  • 5




    $begingroup$
    As I described in the edit, "is this too heavy" is a question to ask your profiler, because it will depend on your implementation, target hardware, performance budget, and the context of your game — all stuff that you and your profiler know intimately but Internet strangers do not. If you want to get flocks pathfinding efficiently, we can suggest strategies to help with that, but only your own profiling can answer what's efficient enough for your needs. If you profile and identify a specific performance problem, we can also help you find how to solve that problem.
    $endgroup$
    – DMGregory
    2 days ago






  • 1




    $begingroup$
    How you implement them affects performance. For instance, only running A* on leaders & relying on flocking for followers.
    $endgroup$
    – Pikalek
    2 days ago










  • $begingroup$
    If your game is primarily based on fighting these enemies, the algorithm you take will have a massive impact on what the game feels like. So you should try different approaches, e.g. does it feel like the enemies know the level and the position of the player perfectly at all times and they track him like directed by an all-knowing AI ? - other approaches could be to let the enemies run in the general direction where the player made noise and only on direct line of sight run towards him, or shouting and informing other enemies where the player is...
    $endgroup$
    – Falco
    17 hours ago










  • $begingroup$
    @Falco Since the game is no longer wave-based, and will be level-based, and since the enemies are zombies... I was considering making it so you either have to be seen or make noise for them to find you. So if you use a noisy weapon? It emits a sound in a range and all enemies in range path towards the location of the sound emitted, and will then path randomly around that area.
    $endgroup$
    – Darin Beaudreau
    12 hours ago














  • 5




    $begingroup$
    As I described in the edit, "is this too heavy" is a question to ask your profiler, because it will depend on your implementation, target hardware, performance budget, and the context of your game — all stuff that you and your profiler know intimately but Internet strangers do not. If you want to get flocks pathfinding efficiently, we can suggest strategies to help with that, but only your own profiling can answer what's efficient enough for your needs. If you profile and identify a specific performance problem, we can also help you find how to solve that problem.
    $endgroup$
    – DMGregory
    2 days ago






  • 1




    $begingroup$
    How you implement them affects performance. For instance, only running A* on leaders & relying on flocking for followers.
    $endgroup$
    – Pikalek
    2 days ago










  • $begingroup$
    If your game is primarily based on fighting these enemies, the algorithm you take will have a massive impact on what the game feels like. So you should try different approaches, e.g. does it feel like the enemies know the level and the position of the player perfectly at all times and they track him like directed by an all-knowing AI ? - other approaches could be to let the enemies run in the general direction where the player made noise and only on direct line of sight run towards him, or shouting and informing other enemies where the player is...
    $endgroup$
    – Falco
    17 hours ago










  • $begingroup$
    @Falco Since the game is no longer wave-based, and will be level-based, and since the enemies are zombies... I was considering making it so you either have to be seen or make noise for them to find you. So if you use a noisy weapon? It emits a sound in a range and all enemies in range path towards the location of the sound emitted, and will then path randomly around that area.
    $endgroup$
    – Darin Beaudreau
    12 hours ago








5




5




$begingroup$
As I described in the edit, "is this too heavy" is a question to ask your profiler, because it will depend on your implementation, target hardware, performance budget, and the context of your game — all stuff that you and your profiler know intimately but Internet strangers do not. If you want to get flocks pathfinding efficiently, we can suggest strategies to help with that, but only your own profiling can answer what's efficient enough for your needs. If you profile and identify a specific performance problem, we can also help you find how to solve that problem.
$endgroup$
– DMGregory
2 days ago




$begingroup$
As I described in the edit, "is this too heavy" is a question to ask your profiler, because it will depend on your implementation, target hardware, performance budget, and the context of your game — all stuff that you and your profiler know intimately but Internet strangers do not. If you want to get flocks pathfinding efficiently, we can suggest strategies to help with that, but only your own profiling can answer what's efficient enough for your needs. If you profile and identify a specific performance problem, we can also help you find how to solve that problem.
$endgroup$
– DMGregory
2 days ago




1




1




$begingroup$
How you implement them affects performance. For instance, only running A* on leaders & relying on flocking for followers.
$endgroup$
– Pikalek
2 days ago




$begingroup$
How you implement them affects performance. For instance, only running A* on leaders & relying on flocking for followers.
$endgroup$
– Pikalek
2 days ago












$begingroup$
If your game is primarily based on fighting these enemies, the algorithm you take will have a massive impact on what the game feels like. So you should try different approaches, e.g. does it feel like the enemies know the level and the position of the player perfectly at all times and they track him like directed by an all-knowing AI ? - other approaches could be to let the enemies run in the general direction where the player made noise and only on direct line of sight run towards him, or shouting and informing other enemies where the player is...
$endgroup$
– Falco
17 hours ago




$begingroup$
If your game is primarily based on fighting these enemies, the algorithm you take will have a massive impact on what the game feels like. So you should try different approaches, e.g. does it feel like the enemies know the level and the position of the player perfectly at all times and they track him like directed by an all-knowing AI ? - other approaches could be to let the enemies run in the general direction where the player made noise and only on direct line of sight run towards him, or shouting and informing other enemies where the player is...
$endgroup$
– Falco
17 hours ago












$begingroup$
@Falco Since the game is no longer wave-based, and will be level-based, and since the enemies are zombies... I was considering making it so you either have to be seen or make noise for them to find you. So if you use a noisy weapon? It emits a sound in a range and all enemies in range path towards the location of the sound emitted, and will then path randomly around that area.
$endgroup$
– Darin Beaudreau
12 hours ago




$begingroup$
@Falco Since the game is no longer wave-based, and will be level-based, and since the enemies are zombies... I was considering making it so you either have to be seen or make noise for them to find you. So if you use a noisy weapon? It emits a sound in a range and all enemies in range path towards the location of the sound emitted, and will then path randomly around that area.
$endgroup$
– Darin Beaudreau
12 hours ago










3 Answers
3






active

oldest

votes


















45













$begingroup$

This sounds like a use case for Flow Fields.



In this technique, you do a single pathfinding query outward from your player object(s), marking each cell you encounter with the cell you reached it from.



If all your tiles/edges have equal traversal cost, then you can use a simple breadth-first search for this. Otherwise, Dijkstra's algorithm (like A* with no goal/heuristic) works.



This creates a flow field: a lookup table that associates each cell with the next step toward the closest player object from that position.



Now your enemies can each look up their current position in the flow field to find the next step in their shortest obstacle-avoiding path to the closest player object, without each doing their own pathfinding query.



This scales better and better the more enemies you have in your flock. For a single enemy, it's more expensive than A* because it searches the whole map (though you can early-out once you've reached all pathfinding agents). But as you add more enemies, they get to share more and more of the pathfinding cost by computing shared path segments once rather than over and over. You also gain an edge from the fact that BFS/Dijkdtra's are simpler than A*, and typically cheaper to evaluate per cell inspected.



Exactly where the break-even point hits, from individual A* being cheaper, to A* with memoization being cheaper (where you re-use some of the results for a past pathfinding query to speed up the next one), to flow fields being cheaper, will depend on your implementation, the number of agents, and the size of your map. But if you ever plan a big swarm of enemies approaching from multiple directions in a confined area, one flow field will almost certainly be cheaper than iterated A*.



As an extreme example, you can see a video here with 20 000 agents all simultaneously pathfinding on a reasonably small grid.






share|improve this answer











$endgroup$















  • $begingroup$
    This technique sounds really neat. I'll check it out.
    $endgroup$
    – Darin Beaudreau
    2 days ago






  • 12




    $begingroup$
    It's possible to use a hybrid algorithm that constructs a partial flow field without searching more of the map than repeated calls to A* would, and never searching the same position twice. The basic idea is to pick an arbitrary enemy and start an A* search from the player towards that enemy, marking cells as you encounter them just like in normal flow field generation. Once the search finds that enemy, pick another enemy (that you haven't found yet) as the target, re-sort the open set according to the new heuristic and continue searching. Stop when you've found all enemies.
    $endgroup$
    – Ilmari Karonen
    2 days ago








  • 1




    $begingroup$
    What about avoiding collisions? That's (somewhat) mentioned in the OP (avoiding clipping when they reach the player). Seems to me you would have to rerun the full djikstras every time anything moved (or add in some additional logic)
    $endgroup$
    – Mars
    yesterday






  • 2




    $begingroup$
    @Mars The OP talks about flocking, so I would assume all of the individuals can move at the same speed; the only places where collisions are going to be an issue are bottlenecks, which require some of the flock to stop and wait. However, it doesn't really need to change the pathfinding - a simple queue would probably work well enough in most cases, and some path biasing (some pseudo-random selection of alternate paths with similar costs) will work to produce more natural looking flock flows that also avoid the whole flock trying to go through one particular single-tile gap :)
    $endgroup$
    – Luaan
    yesterday






  • 3




    $begingroup$
    @Luaan In a tile based game, you'd be surprised how often collisions happen. Personally, I find the "queuing" option to be less than optimal. Also, if units can't pass through each other, you'll need to recalculate when units start getting into their final position and a bunch of other edge cases. Flocking is hard ;)
    $endgroup$
    – Mars
    yesterday



















7













$begingroup$

A* is not performance heavy. I would approach this situation by varying the algorithms. Do A* from time to time and in between check whether the next step is free to step onto or you need evasion.



For example, track the players distance from the A* target location, if it's above a threshold recalculate a* and then just do update movements. Most games use a combination of way points, e.g. a simplified grid for path finding and a logic that handles the movement between waypoints with evasion steering algorithms using raycasts. The agents try to run to a distant waypoint by maneuvering around obstacles in their proximity is the best approach in my opinion.



It's best to work with finite state machines here and read the book "Programming Game AI By Example" by Mat Buckland. The book offers proven techniques for your problem and details the math required. Source code from the book is available on the web; the book is in C++ but some translations (including Java) are available.






share|improve this answer











$endgroup$











  • 2




    $begingroup$
    With an infrequently-updating A* approach, it may be helpful to stagger your updates, maintaining a budget for how many enemies are allowed to re-path on a single frame. That way you can keep your peak pathfinding cost per frame capped, and more robustly handle many AI pathing by amortizing their total cost over several frames. An AI using a stale path for a frame or two when the budget for the frame has been exceeded, or falling back on dead reckoning if close, usually won't be disruptive.
    $endgroup$
    – DMGregory
    2 days ago








  • 2




    $begingroup$
    Probably stating the obvious here, but if you're going to only update some of your paths in a given frame, you might want a priority system based on distance to the player. It's likely more important for enemies near the player to update their paths, while it's probably OK for enemies far away to use a stale path.
    $endgroup$
    – A C
    yesterday



















3













$begingroup$

Not only is it feasible, I believe it was done in a commercial game in the 90s - BattleZone (1998).



That game had 3D units with free non-tile-based movement, and tile-based base construction.



This is how it seemed to work:



First, A* or something similar (likely a variation of A* with strict limits on how long a path it can find, so it never takes too many resources to run but doesn't always find a path all the way to the destination) would be used to find a path for a hovertank to get to its destination without getting stuck in tile-based obstacles.



Then the tank would fly around untiled space as if it was attracted to the centre of a nearby tile in its path, and repulsed by obstacles, other nearby tanks, etc.






share|improve this answer











$endgroup$











  • 1




    $begingroup$
    So what's a good way to handle following the path, but not exactly? If I allow kiddy cornering, I need to be able to stop the enemies from colliding with the corner of an obstacle. Should I keep the flocking behavior for both enemies and obstacles and add A* to deal with those situations?
    $endgroup$
    – Darin Beaudreau
    yesterday














Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "53"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgamedev.stackexchange.com%2fquestions%2f174801%2fefficiently-pathfinding-many-flocking-enemies-around-obstacles%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























3 Answers
3






active

oldest

votes








3 Answers
3






active

oldest

votes









active

oldest

votes






active

oldest

votes









45













$begingroup$

This sounds like a use case for Flow Fields.



In this technique, you do a single pathfinding query outward from your player object(s), marking each cell you encounter with the cell you reached it from.



If all your tiles/edges have equal traversal cost, then you can use a simple breadth-first search for this. Otherwise, Dijkstra's algorithm (like A* with no goal/heuristic) works.



This creates a flow field: a lookup table that associates each cell with the next step toward the closest player object from that position.



Now your enemies can each look up their current position in the flow field to find the next step in their shortest obstacle-avoiding path to the closest player object, without each doing their own pathfinding query.



This scales better and better the more enemies you have in your flock. For a single enemy, it's more expensive than A* because it searches the whole map (though you can early-out once you've reached all pathfinding agents). But as you add more enemies, they get to share more and more of the pathfinding cost by computing shared path segments once rather than over and over. You also gain an edge from the fact that BFS/Dijkdtra's are simpler than A*, and typically cheaper to evaluate per cell inspected.



Exactly where the break-even point hits, from individual A* being cheaper, to A* with memoization being cheaper (where you re-use some of the results for a past pathfinding query to speed up the next one), to flow fields being cheaper, will depend on your implementation, the number of agents, and the size of your map. But if you ever plan a big swarm of enemies approaching from multiple directions in a confined area, one flow field will almost certainly be cheaper than iterated A*.



As an extreme example, you can see a video here with 20 000 agents all simultaneously pathfinding on a reasonably small grid.






share|improve this answer











$endgroup$















  • $begingroup$
    This technique sounds really neat. I'll check it out.
    $endgroup$
    – Darin Beaudreau
    2 days ago






  • 12




    $begingroup$
    It's possible to use a hybrid algorithm that constructs a partial flow field without searching more of the map than repeated calls to A* would, and never searching the same position twice. The basic idea is to pick an arbitrary enemy and start an A* search from the player towards that enemy, marking cells as you encounter them just like in normal flow field generation. Once the search finds that enemy, pick another enemy (that you haven't found yet) as the target, re-sort the open set according to the new heuristic and continue searching. Stop when you've found all enemies.
    $endgroup$
    – Ilmari Karonen
    2 days ago








  • 1




    $begingroup$
    What about avoiding collisions? That's (somewhat) mentioned in the OP (avoiding clipping when they reach the player). Seems to me you would have to rerun the full djikstras every time anything moved (or add in some additional logic)
    $endgroup$
    – Mars
    yesterday






  • 2




    $begingroup$
    @Mars The OP talks about flocking, so I would assume all of the individuals can move at the same speed; the only places where collisions are going to be an issue are bottlenecks, which require some of the flock to stop and wait. However, it doesn't really need to change the pathfinding - a simple queue would probably work well enough in most cases, and some path biasing (some pseudo-random selection of alternate paths with similar costs) will work to produce more natural looking flock flows that also avoid the whole flock trying to go through one particular single-tile gap :)
    $endgroup$
    – Luaan
    yesterday






  • 3




    $begingroup$
    @Luaan In a tile based game, you'd be surprised how often collisions happen. Personally, I find the "queuing" option to be less than optimal. Also, if units can't pass through each other, you'll need to recalculate when units start getting into their final position and a bunch of other edge cases. Flocking is hard ;)
    $endgroup$
    – Mars
    yesterday
















45













$begingroup$

This sounds like a use case for Flow Fields.



In this technique, you do a single pathfinding query outward from your player object(s), marking each cell you encounter with the cell you reached it from.



If all your tiles/edges have equal traversal cost, then you can use a simple breadth-first search for this. Otherwise, Dijkstra's algorithm (like A* with no goal/heuristic) works.



This creates a flow field: a lookup table that associates each cell with the next step toward the closest player object from that position.



Now your enemies can each look up their current position in the flow field to find the next step in their shortest obstacle-avoiding path to the closest player object, without each doing their own pathfinding query.



This scales better and better the more enemies you have in your flock. For a single enemy, it's more expensive than A* because it searches the whole map (though you can early-out once you've reached all pathfinding agents). But as you add more enemies, they get to share more and more of the pathfinding cost by computing shared path segments once rather than over and over. You also gain an edge from the fact that BFS/Dijkdtra's are simpler than A*, and typically cheaper to evaluate per cell inspected.



Exactly where the break-even point hits, from individual A* being cheaper, to A* with memoization being cheaper (where you re-use some of the results for a past pathfinding query to speed up the next one), to flow fields being cheaper, will depend on your implementation, the number of agents, and the size of your map. But if you ever plan a big swarm of enemies approaching from multiple directions in a confined area, one flow field will almost certainly be cheaper than iterated A*.



As an extreme example, you can see a video here with 20 000 agents all simultaneously pathfinding on a reasonably small grid.






share|improve this answer











$endgroup$















  • $begingroup$
    This technique sounds really neat. I'll check it out.
    $endgroup$
    – Darin Beaudreau
    2 days ago






  • 12




    $begingroup$
    It's possible to use a hybrid algorithm that constructs a partial flow field without searching more of the map than repeated calls to A* would, and never searching the same position twice. The basic idea is to pick an arbitrary enemy and start an A* search from the player towards that enemy, marking cells as you encounter them just like in normal flow field generation. Once the search finds that enemy, pick another enemy (that you haven't found yet) as the target, re-sort the open set according to the new heuristic and continue searching. Stop when you've found all enemies.
    $endgroup$
    – Ilmari Karonen
    2 days ago








  • 1




    $begingroup$
    What about avoiding collisions? That's (somewhat) mentioned in the OP (avoiding clipping when they reach the player). Seems to me you would have to rerun the full djikstras every time anything moved (or add in some additional logic)
    $endgroup$
    – Mars
    yesterday






  • 2




    $begingroup$
    @Mars The OP talks about flocking, so I would assume all of the individuals can move at the same speed; the only places where collisions are going to be an issue are bottlenecks, which require some of the flock to stop and wait. However, it doesn't really need to change the pathfinding - a simple queue would probably work well enough in most cases, and some path biasing (some pseudo-random selection of alternate paths with similar costs) will work to produce more natural looking flock flows that also avoid the whole flock trying to go through one particular single-tile gap :)
    $endgroup$
    – Luaan
    yesterday






  • 3




    $begingroup$
    @Luaan In a tile based game, you'd be surprised how often collisions happen. Personally, I find the "queuing" option to be less than optimal. Also, if units can't pass through each other, you'll need to recalculate when units start getting into their final position and a bunch of other edge cases. Flocking is hard ;)
    $endgroup$
    – Mars
    yesterday














45














45










45







$begingroup$

This sounds like a use case for Flow Fields.



In this technique, you do a single pathfinding query outward from your player object(s), marking each cell you encounter with the cell you reached it from.



If all your tiles/edges have equal traversal cost, then you can use a simple breadth-first search for this. Otherwise, Dijkstra's algorithm (like A* with no goal/heuristic) works.



This creates a flow field: a lookup table that associates each cell with the next step toward the closest player object from that position.



Now your enemies can each look up their current position in the flow field to find the next step in their shortest obstacle-avoiding path to the closest player object, without each doing their own pathfinding query.



This scales better and better the more enemies you have in your flock. For a single enemy, it's more expensive than A* because it searches the whole map (though you can early-out once you've reached all pathfinding agents). But as you add more enemies, they get to share more and more of the pathfinding cost by computing shared path segments once rather than over and over. You also gain an edge from the fact that BFS/Dijkdtra's are simpler than A*, and typically cheaper to evaluate per cell inspected.



Exactly where the break-even point hits, from individual A* being cheaper, to A* with memoization being cheaper (where you re-use some of the results for a past pathfinding query to speed up the next one), to flow fields being cheaper, will depend on your implementation, the number of agents, and the size of your map. But if you ever plan a big swarm of enemies approaching from multiple directions in a confined area, one flow field will almost certainly be cheaper than iterated A*.



As an extreme example, you can see a video here with 20 000 agents all simultaneously pathfinding on a reasonably small grid.






share|improve this answer











$endgroup$



This sounds like a use case for Flow Fields.



In this technique, you do a single pathfinding query outward from your player object(s), marking each cell you encounter with the cell you reached it from.



If all your tiles/edges have equal traversal cost, then you can use a simple breadth-first search for this. Otherwise, Dijkstra's algorithm (like A* with no goal/heuristic) works.



This creates a flow field: a lookup table that associates each cell with the next step toward the closest player object from that position.



Now your enemies can each look up their current position in the flow field to find the next step in their shortest obstacle-avoiding path to the closest player object, without each doing their own pathfinding query.



This scales better and better the more enemies you have in your flock. For a single enemy, it's more expensive than A* because it searches the whole map (though you can early-out once you've reached all pathfinding agents). But as you add more enemies, they get to share more and more of the pathfinding cost by computing shared path segments once rather than over and over. You also gain an edge from the fact that BFS/Dijkdtra's are simpler than A*, and typically cheaper to evaluate per cell inspected.



Exactly where the break-even point hits, from individual A* being cheaper, to A* with memoization being cheaper (where you re-use some of the results for a past pathfinding query to speed up the next one), to flow fields being cheaper, will depend on your implementation, the number of agents, and the size of your map. But if you ever plan a big swarm of enemies approaching from multiple directions in a confined area, one flow field will almost certainly be cheaper than iterated A*.



As an extreme example, you can see a video here with 20 000 agents all simultaneously pathfinding on a reasonably small grid.







share|improve this answer














share|improve this answer



share|improve this answer








edited 2 days ago

























answered 2 days ago









DMGregoryDMGregory

71.3k16 gold badges127 silver badges202 bronze badges




71.3k16 gold badges127 silver badges202 bronze badges















  • $begingroup$
    This technique sounds really neat. I'll check it out.
    $endgroup$
    – Darin Beaudreau
    2 days ago






  • 12




    $begingroup$
    It's possible to use a hybrid algorithm that constructs a partial flow field without searching more of the map than repeated calls to A* would, and never searching the same position twice. The basic idea is to pick an arbitrary enemy and start an A* search from the player towards that enemy, marking cells as you encounter them just like in normal flow field generation. Once the search finds that enemy, pick another enemy (that you haven't found yet) as the target, re-sort the open set according to the new heuristic and continue searching. Stop when you've found all enemies.
    $endgroup$
    – Ilmari Karonen
    2 days ago








  • 1




    $begingroup$
    What about avoiding collisions? That's (somewhat) mentioned in the OP (avoiding clipping when they reach the player). Seems to me you would have to rerun the full djikstras every time anything moved (or add in some additional logic)
    $endgroup$
    – Mars
    yesterday






  • 2




    $begingroup$
    @Mars The OP talks about flocking, so I would assume all of the individuals can move at the same speed; the only places where collisions are going to be an issue are bottlenecks, which require some of the flock to stop and wait. However, it doesn't really need to change the pathfinding - a simple queue would probably work well enough in most cases, and some path biasing (some pseudo-random selection of alternate paths with similar costs) will work to produce more natural looking flock flows that also avoid the whole flock trying to go through one particular single-tile gap :)
    $endgroup$
    – Luaan
    yesterday






  • 3




    $begingroup$
    @Luaan In a tile based game, you'd be surprised how often collisions happen. Personally, I find the "queuing" option to be less than optimal. Also, if units can't pass through each other, you'll need to recalculate when units start getting into their final position and a bunch of other edge cases. Flocking is hard ;)
    $endgroup$
    – Mars
    yesterday


















  • $begingroup$
    This technique sounds really neat. I'll check it out.
    $endgroup$
    – Darin Beaudreau
    2 days ago






  • 12




    $begingroup$
    It's possible to use a hybrid algorithm that constructs a partial flow field without searching more of the map than repeated calls to A* would, and never searching the same position twice. The basic idea is to pick an arbitrary enemy and start an A* search from the player towards that enemy, marking cells as you encounter them just like in normal flow field generation. Once the search finds that enemy, pick another enemy (that you haven't found yet) as the target, re-sort the open set according to the new heuristic and continue searching. Stop when you've found all enemies.
    $endgroup$
    – Ilmari Karonen
    2 days ago








  • 1




    $begingroup$
    What about avoiding collisions? That's (somewhat) mentioned in the OP (avoiding clipping when they reach the player). Seems to me you would have to rerun the full djikstras every time anything moved (or add in some additional logic)
    $endgroup$
    – Mars
    yesterday






  • 2




    $begingroup$
    @Mars The OP talks about flocking, so I would assume all of the individuals can move at the same speed; the only places where collisions are going to be an issue are bottlenecks, which require some of the flock to stop and wait. However, it doesn't really need to change the pathfinding - a simple queue would probably work well enough in most cases, and some path biasing (some pseudo-random selection of alternate paths with similar costs) will work to produce more natural looking flock flows that also avoid the whole flock trying to go through one particular single-tile gap :)
    $endgroup$
    – Luaan
    yesterday






  • 3




    $begingroup$
    @Luaan In a tile based game, you'd be surprised how often collisions happen. Personally, I find the "queuing" option to be less than optimal. Also, if units can't pass through each other, you'll need to recalculate when units start getting into their final position and a bunch of other edge cases. Flocking is hard ;)
    $endgroup$
    – Mars
    yesterday
















$begingroup$
This technique sounds really neat. I'll check it out.
$endgroup$
– Darin Beaudreau
2 days ago




$begingroup$
This technique sounds really neat. I'll check it out.
$endgroup$
– Darin Beaudreau
2 days ago




12




12




$begingroup$
It's possible to use a hybrid algorithm that constructs a partial flow field without searching more of the map than repeated calls to A* would, and never searching the same position twice. The basic idea is to pick an arbitrary enemy and start an A* search from the player towards that enemy, marking cells as you encounter them just like in normal flow field generation. Once the search finds that enemy, pick another enemy (that you haven't found yet) as the target, re-sort the open set according to the new heuristic and continue searching. Stop when you've found all enemies.
$endgroup$
– Ilmari Karonen
2 days ago






$begingroup$
It's possible to use a hybrid algorithm that constructs a partial flow field without searching more of the map than repeated calls to A* would, and never searching the same position twice. The basic idea is to pick an arbitrary enemy and start an A* search from the player towards that enemy, marking cells as you encounter them just like in normal flow field generation. Once the search finds that enemy, pick another enemy (that you haven't found yet) as the target, re-sort the open set according to the new heuristic and continue searching. Stop when you've found all enemies.
$endgroup$
– Ilmari Karonen
2 days ago






1




1




$begingroup$
What about avoiding collisions? That's (somewhat) mentioned in the OP (avoiding clipping when they reach the player). Seems to me you would have to rerun the full djikstras every time anything moved (or add in some additional logic)
$endgroup$
– Mars
yesterday




$begingroup$
What about avoiding collisions? That's (somewhat) mentioned in the OP (avoiding clipping when they reach the player). Seems to me you would have to rerun the full djikstras every time anything moved (or add in some additional logic)
$endgroup$
– Mars
yesterday




2




2




$begingroup$
@Mars The OP talks about flocking, so I would assume all of the individuals can move at the same speed; the only places where collisions are going to be an issue are bottlenecks, which require some of the flock to stop and wait. However, it doesn't really need to change the pathfinding - a simple queue would probably work well enough in most cases, and some path biasing (some pseudo-random selection of alternate paths with similar costs) will work to produce more natural looking flock flows that also avoid the whole flock trying to go through one particular single-tile gap :)
$endgroup$
– Luaan
yesterday




$begingroup$
@Mars The OP talks about flocking, so I would assume all of the individuals can move at the same speed; the only places where collisions are going to be an issue are bottlenecks, which require some of the flock to stop and wait. However, it doesn't really need to change the pathfinding - a simple queue would probably work well enough in most cases, and some path biasing (some pseudo-random selection of alternate paths with similar costs) will work to produce more natural looking flock flows that also avoid the whole flock trying to go through one particular single-tile gap :)
$endgroup$
– Luaan
yesterday




3




3




$begingroup$
@Luaan In a tile based game, you'd be surprised how often collisions happen. Personally, I find the "queuing" option to be less than optimal. Also, if units can't pass through each other, you'll need to recalculate when units start getting into their final position and a bunch of other edge cases. Flocking is hard ;)
$endgroup$
– Mars
yesterday




$begingroup$
@Luaan In a tile based game, you'd be surprised how often collisions happen. Personally, I find the "queuing" option to be less than optimal. Also, if units can't pass through each other, you'll need to recalculate when units start getting into their final position and a bunch of other edge cases. Flocking is hard ;)
$endgroup$
– Mars
yesterday













7













$begingroup$

A* is not performance heavy. I would approach this situation by varying the algorithms. Do A* from time to time and in between check whether the next step is free to step onto or you need evasion.



For example, track the players distance from the A* target location, if it's above a threshold recalculate a* and then just do update movements. Most games use a combination of way points, e.g. a simplified grid for path finding and a logic that handles the movement between waypoints with evasion steering algorithms using raycasts. The agents try to run to a distant waypoint by maneuvering around obstacles in their proximity is the best approach in my opinion.



It's best to work with finite state machines here and read the book "Programming Game AI By Example" by Mat Buckland. The book offers proven techniques for your problem and details the math required. Source code from the book is available on the web; the book is in C++ but some translations (including Java) are available.






share|improve this answer











$endgroup$











  • 2




    $begingroup$
    With an infrequently-updating A* approach, it may be helpful to stagger your updates, maintaining a budget for how many enemies are allowed to re-path on a single frame. That way you can keep your peak pathfinding cost per frame capped, and more robustly handle many AI pathing by amortizing their total cost over several frames. An AI using a stale path for a frame or two when the budget for the frame has been exceeded, or falling back on dead reckoning if close, usually won't be disruptive.
    $endgroup$
    – DMGregory
    2 days ago








  • 2




    $begingroup$
    Probably stating the obvious here, but if you're going to only update some of your paths in a given frame, you might want a priority system based on distance to the player. It's likely more important for enemies near the player to update their paths, while it's probably OK for enemies far away to use a stale path.
    $endgroup$
    – A C
    yesterday
















7













$begingroup$

A* is not performance heavy. I would approach this situation by varying the algorithms. Do A* from time to time and in between check whether the next step is free to step onto or you need evasion.



For example, track the players distance from the A* target location, if it's above a threshold recalculate a* and then just do update movements. Most games use a combination of way points, e.g. a simplified grid for path finding and a logic that handles the movement between waypoints with evasion steering algorithms using raycasts. The agents try to run to a distant waypoint by maneuvering around obstacles in their proximity is the best approach in my opinion.



It's best to work with finite state machines here and read the book "Programming Game AI By Example" by Mat Buckland. The book offers proven techniques for your problem and details the math required. Source code from the book is available on the web; the book is in C++ but some translations (including Java) are available.






share|improve this answer











$endgroup$











  • 2




    $begingroup$
    With an infrequently-updating A* approach, it may be helpful to stagger your updates, maintaining a budget for how many enemies are allowed to re-path on a single frame. That way you can keep your peak pathfinding cost per frame capped, and more robustly handle many AI pathing by amortizing their total cost over several frames. An AI using a stale path for a frame or two when the budget for the frame has been exceeded, or falling back on dead reckoning if close, usually won't be disruptive.
    $endgroup$
    – DMGregory
    2 days ago








  • 2




    $begingroup$
    Probably stating the obvious here, but if you're going to only update some of your paths in a given frame, you might want a priority system based on distance to the player. It's likely more important for enemies near the player to update their paths, while it's probably OK for enemies far away to use a stale path.
    $endgroup$
    – A C
    yesterday














7














7










7







$begingroup$

A* is not performance heavy. I would approach this situation by varying the algorithms. Do A* from time to time and in between check whether the next step is free to step onto or you need evasion.



For example, track the players distance from the A* target location, if it's above a threshold recalculate a* and then just do update movements. Most games use a combination of way points, e.g. a simplified grid for path finding and a logic that handles the movement between waypoints with evasion steering algorithms using raycasts. The agents try to run to a distant waypoint by maneuvering around obstacles in their proximity is the best approach in my opinion.



It's best to work with finite state machines here and read the book "Programming Game AI By Example" by Mat Buckland. The book offers proven techniques for your problem and details the math required. Source code from the book is available on the web; the book is in C++ but some translations (including Java) are available.






share|improve this answer











$endgroup$



A* is not performance heavy. I would approach this situation by varying the algorithms. Do A* from time to time and in between check whether the next step is free to step onto or you need evasion.



For example, track the players distance from the A* target location, if it's above a threshold recalculate a* and then just do update movements. Most games use a combination of way points, e.g. a simplified grid for path finding and a logic that handles the movement between waypoints with evasion steering algorithms using raycasts. The agents try to run to a distant waypoint by maneuvering around obstacles in their proximity is the best approach in my opinion.



It's best to work with finite state machines here and read the book "Programming Game AI By Example" by Mat Buckland. The book offers proven techniques for your problem and details the math required. Source code from the book is available on the web; the book is in C++ but some translations (including Java) are available.







share|improve this answer














share|improve this answer



share|improve this answer








edited 2 days ago









Pikalek

7,2732 gold badges26 silver badges39 bronze badges




7,2732 gold badges26 silver badges39 bronze badges










answered 2 days ago









D3d_devD3d_dev

1636 bronze badges




1636 bronze badges











  • 2




    $begingroup$
    With an infrequently-updating A* approach, it may be helpful to stagger your updates, maintaining a budget for how many enemies are allowed to re-path on a single frame. That way you can keep your peak pathfinding cost per frame capped, and more robustly handle many AI pathing by amortizing their total cost over several frames. An AI using a stale path for a frame or two when the budget for the frame has been exceeded, or falling back on dead reckoning if close, usually won't be disruptive.
    $endgroup$
    – DMGregory
    2 days ago








  • 2




    $begingroup$
    Probably stating the obvious here, but if you're going to only update some of your paths in a given frame, you might want a priority system based on distance to the player. It's likely more important for enemies near the player to update their paths, while it's probably OK for enemies far away to use a stale path.
    $endgroup$
    – A C
    yesterday














  • 2




    $begingroup$
    With an infrequently-updating A* approach, it may be helpful to stagger your updates, maintaining a budget for how many enemies are allowed to re-path on a single frame. That way you can keep your peak pathfinding cost per frame capped, and more robustly handle many AI pathing by amortizing their total cost over several frames. An AI using a stale path for a frame or two when the budget for the frame has been exceeded, or falling back on dead reckoning if close, usually won't be disruptive.
    $endgroup$
    – DMGregory
    2 days ago








  • 2




    $begingroup$
    Probably stating the obvious here, but if you're going to only update some of your paths in a given frame, you might want a priority system based on distance to the player. It's likely more important for enemies near the player to update their paths, while it's probably OK for enemies far away to use a stale path.
    $endgroup$
    – A C
    yesterday








2




2




$begingroup$
With an infrequently-updating A* approach, it may be helpful to stagger your updates, maintaining a budget for how many enemies are allowed to re-path on a single frame. That way you can keep your peak pathfinding cost per frame capped, and more robustly handle many AI pathing by amortizing their total cost over several frames. An AI using a stale path for a frame or two when the budget for the frame has been exceeded, or falling back on dead reckoning if close, usually won't be disruptive.
$endgroup$
– DMGregory
2 days ago






$begingroup$
With an infrequently-updating A* approach, it may be helpful to stagger your updates, maintaining a budget for how many enemies are allowed to re-path on a single frame. That way you can keep your peak pathfinding cost per frame capped, and more robustly handle many AI pathing by amortizing their total cost over several frames. An AI using a stale path for a frame or two when the budget for the frame has been exceeded, or falling back on dead reckoning if close, usually won't be disruptive.
$endgroup$
– DMGregory
2 days ago






2




2




$begingroup$
Probably stating the obvious here, but if you're going to only update some of your paths in a given frame, you might want a priority system based on distance to the player. It's likely more important for enemies near the player to update their paths, while it's probably OK for enemies far away to use a stale path.
$endgroup$
– A C
yesterday




$begingroup$
Probably stating the obvious here, but if you're going to only update some of your paths in a given frame, you might want a priority system based on distance to the player. It's likely more important for enemies near the player to update their paths, while it's probably OK for enemies far away to use a stale path.
$endgroup$
– A C
yesterday











3













$begingroup$

Not only is it feasible, I believe it was done in a commercial game in the 90s - BattleZone (1998).



That game had 3D units with free non-tile-based movement, and tile-based base construction.



This is how it seemed to work:



First, A* or something similar (likely a variation of A* with strict limits on how long a path it can find, so it never takes too many resources to run but doesn't always find a path all the way to the destination) would be used to find a path for a hovertank to get to its destination without getting stuck in tile-based obstacles.



Then the tank would fly around untiled space as if it was attracted to the centre of a nearby tile in its path, and repulsed by obstacles, other nearby tanks, etc.






share|improve this answer











$endgroup$











  • 1




    $begingroup$
    So what's a good way to handle following the path, but not exactly? If I allow kiddy cornering, I need to be able to stop the enemies from colliding with the corner of an obstacle. Should I keep the flocking behavior for both enemies and obstacles and add A* to deal with those situations?
    $endgroup$
    – Darin Beaudreau
    yesterday
















3













$begingroup$

Not only is it feasible, I believe it was done in a commercial game in the 90s - BattleZone (1998).



That game had 3D units with free non-tile-based movement, and tile-based base construction.



This is how it seemed to work:



First, A* or something similar (likely a variation of A* with strict limits on how long a path it can find, so it never takes too many resources to run but doesn't always find a path all the way to the destination) would be used to find a path for a hovertank to get to its destination without getting stuck in tile-based obstacles.



Then the tank would fly around untiled space as if it was attracted to the centre of a nearby tile in its path, and repulsed by obstacles, other nearby tanks, etc.






share|improve this answer











$endgroup$











  • 1




    $begingroup$
    So what's a good way to handle following the path, but not exactly? If I allow kiddy cornering, I need to be able to stop the enemies from colliding with the corner of an obstacle. Should I keep the flocking behavior for both enemies and obstacles and add A* to deal with those situations?
    $endgroup$
    – Darin Beaudreau
    yesterday














3














3










3







$begingroup$

Not only is it feasible, I believe it was done in a commercial game in the 90s - BattleZone (1998).



That game had 3D units with free non-tile-based movement, and tile-based base construction.



This is how it seemed to work:



First, A* or something similar (likely a variation of A* with strict limits on how long a path it can find, so it never takes too many resources to run but doesn't always find a path all the way to the destination) would be used to find a path for a hovertank to get to its destination without getting stuck in tile-based obstacles.



Then the tank would fly around untiled space as if it was attracted to the centre of a nearby tile in its path, and repulsed by obstacles, other nearby tanks, etc.






share|improve this answer











$endgroup$



Not only is it feasible, I believe it was done in a commercial game in the 90s - BattleZone (1998).



That game had 3D units with free non-tile-based movement, and tile-based base construction.



This is how it seemed to work:



First, A* or something similar (likely a variation of A* with strict limits on how long a path it can find, so it never takes too many resources to run but doesn't always find a path all the way to the destination) would be used to find a path for a hovertank to get to its destination without getting stuck in tile-based obstacles.



Then the tank would fly around untiled space as if it was attracted to the centre of a nearby tile in its path, and repulsed by obstacles, other nearby tanks, etc.







share|improve this answer














share|improve this answer



share|improve this answer








edited 2 days ago

























answered 2 days ago









RobynRobyn

1514 bronze badges




1514 bronze badges











  • 1




    $begingroup$
    So what's a good way to handle following the path, but not exactly? If I allow kiddy cornering, I need to be able to stop the enemies from colliding with the corner of an obstacle. Should I keep the flocking behavior for both enemies and obstacles and add A* to deal with those situations?
    $endgroup$
    – Darin Beaudreau
    yesterday














  • 1




    $begingroup$
    So what's a good way to handle following the path, but not exactly? If I allow kiddy cornering, I need to be able to stop the enemies from colliding with the corner of an obstacle. Should I keep the flocking behavior for both enemies and obstacles and add A* to deal with those situations?
    $endgroup$
    – Darin Beaudreau
    yesterday








1




1




$begingroup$
So what's a good way to handle following the path, but not exactly? If I allow kiddy cornering, I need to be able to stop the enemies from colliding with the corner of an obstacle. Should I keep the flocking behavior for both enemies and obstacles and add A* to deal with those situations?
$endgroup$
– Darin Beaudreau
yesterday




$begingroup$
So what's a good way to handle following the path, but not exactly? If I allow kiddy cornering, I need to be able to stop the enemies from colliding with the corner of an obstacle. Should I keep the flocking behavior for both enemies and obstacles and add A* to deal with those situations?
$endgroup$
– Darin Beaudreau
yesterday


















draft saved

draft discarded




















































Thanks for contributing an answer to Game Development Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgamedev.stackexchange.com%2fquestions%2f174801%2fefficiently-pathfinding-many-flocking-enemies-around-obstacles%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

Nicolae Petrescu-Găină Cuprins Biografie | Opera | In memoriam | Varia | Controverse, incertitudini...