View Single Post
  #397  
Old June 6th, 2003, 10:58 AM
dogscoff's Avatar

dogscoff dogscoff is offline
General
 
Join Date: Mar 2001
Location: UK
Posts: 4,245
Thanks: 0
Thanked 0 Times in 0 Posts
dogscoff is on a distinguished road
Default Re: SE5, Tell Aaron what\'s on your Wish List

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.
Reply With Quote