Earlier quoted context omitted.
It's not really the same sort of thing. In this case, the programmers are dealing with the tricky problem of trying to fix the pathfinding somewhat while leaving the experience of the original game 'authentic'. The pathfinding is terrible, the pathfinding was terrible 21 years ago when the game came out. These forum posts are not surprising and unexpected whining, just a reminder new audiences are finding bad pathfin…
Maybe the solution is a classic/pro mode and a novice/Renaissance mode.
Age of Empires Definitive Edition's pathing and movement
81–90 of 94 posts
Re: Age of Empires Definitive Edition's pathing and movement
#82I hate that it’s only available on windows 10. Bad move Microsoft!
Windows 8 is 5 years old. Windows 7 is 8 years old. Move on.
Re: Age of Empires Definitive Edition's pathing and movement
#83I hate that it’s only available on windows 10. Bad move Microsoft!
Genuinely curious: what other platforms would you like to see this on?
I've got Windows 10 on my machine at work, and on my little netbook-style laptop, but just Windows 7 and Linux on the closest things to "gaming machines" that I've got.
Re: Age of Empires Definitive Edition's pathing and movement
#84Just pre-compute everything. Put your vector fields in textures at map design time and be done with it. No point in overthinking this once its a simple lookup per frame. The real fun is designing the agent's AI: exploration, avoidance, engagement ;) Crowd Pathfinding And Steering Using Flow Field Tiles http://www.gameaipro.com/GameAIPro/GameAIPro_Chapter23_Crowd... Flow Field Pathfinding Tutorial http://leifnode.com/…
Re: Age of Empires Definitive Edition's pathing and movement
#85Earlier quoted context omitted.
Brood War does this all the time. The pathing is notoriously bad[1] and nothing has been done to fix it because it's not a problem. It allows players extinguish themselves by working with the weird behaviors. [1] Day[9] on Pathing in BW https://youtu.be/rWvoMrYCQBU?t=17m50s
As a casual gamer I find this aggravating. Why should the NPCs be left dumber and less human than they could be? It breaks immersion and makes the game harder for novices to enjoy.
This is precisely why RTS as a genre pretty much died.
Re: Age of Empires Definitive Edition's pathing and movement
#86Cool. I've coded a RTS myself, and I might be able to add some information. DE's pather gives up if after many thousands of iterations it can't make forward progress towards the goal, to avoid spending CPU cycles on hopeless pathing unnecessarily. (It's more complex than this, but that's the gist of it.) The right way to do that is to make a unit pop the action on top of its stack if it cant perform it. So if a unit…
Pretty decent, alternative approach is to form virtual "formations" when units near each other and move as blocs. This removes multiple problems like units bumping into each other on the way and is kind of the behaviour a strategy player would expect. On obstruction, make neighbours slow down and indeed use obstruction avoidance (local pathfinding) to "squish" the formations. Return to these later when possible. Marc…
Yes definitely. That is orthogonal to the main pathfinder. Moving units doesnt count as "walls" and so they can just push each other using a physic/collision engine and move all together like one body as well using that engine which is a sort of "local pathfinder" in some ways (it can be tweak so that units tend to avoid each other and all).
Re: Age of Empires Definitive Edition's pathing and movement
#87Re: Age of Empires Definitive Edition's pathing and movement
#88Re: Age of Empires Definitive Edition's pathing and movement
#89Earlier quoted context omitted.
As a casual gamer I find this aggravating. Why should the NPCs be left dumber and less human than they could be? It breaks immersion and makes the game harder for novices to enjoy.
Because it's hard to fit a lot of intelligence into the game, when it has to run on a 90MHz Pentium I with 16MB of RAM available. I thought it was pretty good, and more than enjoyable, when it came out 19 years ago.
Re: Age of Empires Definitive Edition's pathing and movement
#90Earlier quoted context omitted.
Windows 8 is 5 years old. Windows 7 is 8 years old. Move on.
And? Age isn't a good argument on its own. If Microsoft committed to providing security updates for Windows 7, I wouldn't see any reason to move off of it. Newer doesn't mean better, in this case.