Jump to content

Colony: Difference between revisions

Line 44: Line 44:
== TO THINK ABOUT, KEEP IT SIMPLE! ==
== TO THINK ABOUT, KEEP IT SIMPLE! ==
Linear? Makes one colony "slow to turn" but using many colonies it gets done faster. Use ar_worker=worker/(worker+warrior) in some formulas instead of r_worker to reflect the actual population? The may be stored in one of the calculations as a column.  
Linear? Makes one colony "slow to turn" but using many colonies it gets done faster. Use ar_worker=worker/(worker+warrior) in some formulas instead of r_worker to reflect the actual population? The may be stored in one of the calculations as a column.  
* capacity += r_expand * ar_worker * (1 - r_secret) * const
* capacity += r_expand * ar_worker * const
* secret capacity += r_expand * ar_worker * r_secret * const
* secret capacity += r_expand * ar_worker * r_secret * const (NOTE: secret is a part of the capacity)
* workers += if (worker+warrior < capacity) r_breed * r_worker * const
* workers += if (worker+warrior < capacity) r_breed * r_worker * const
* warriors += if (worker+warrior < capacity) r_breed * r_warrior * const
* warriors += if (worker+warrior < capacity) r_breed * r_warrior * const