Suppose I want to create an AI that can observe and arbitrary RTS map in game and decide how to play it. Locating chokepoints, setting up an SC Missile Wall style defense of an island and other things like that.
What if I want to avoid stuck units by having the AI create good paths through the base and use the size of the largest relevant unit to calculate how large of a path from the constructing building is needed?
Just general not sucking at building placement stuff? How would I go about doing these things?
I also want it to evaluate units on its own. So like look at their stats and compare them to other units. Say it could decide if it has longer range than enemy units of various classes so it can decide what stuff to build against a given enemy faction, especially since I support a ton of modding, so I couldn't just code in those decisions personally. And humans are not too smart, so a modder might not realize their faction was broken and certain tactics just wouldn't work for it.
Probably some of this isn't possible, especially if I can't shunt the AI into a separate core to avoid lag when certain decisions are made.