Nice idea for the AI there.
As for the repeat build thing- I've said it before and I'll say it again: Programming-type functions for ship orders.
(If/Then, Loop, Gretaer than/ less than etc, and a whole bunch of variables pulled from the game environment to pwork with)
If these were implemented, it probably wouldn't be too hard to extend some similar functionality into construction queues as well:
code:
Build [spaceport]
repeat
{
Build [mineral miner]
}
until [facilities_on_planet(mineralminer)>=4]
build [robotoid factory]
repeat
{
Build [mineral miner]
}
until [facilities_slots_free=0]
Do
{
Build[fighter_design_1]
}
Loop
Crappy pseudocode but you get the idea.