Jump to content

Colony: Difference between revisions

1,107 bytes removed ,  5 years ago
Marked this version for translation
No edit summary
(Marked this version for translation)
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
[[File:colony1.png]]
[[File:colony2.png]]
[[File:colony3.png]]
<translate>
<!--T:1-->
The ant colony means the ants living together but here the word colony is normally also used to refer to the physical [[nest]] built underground too.
The ant colony means the ants living together but here the word colony is normally also used to refer to the physical [[nest]] built underground too.


<!--T:2-->
The different owner status of colonies
The different owner status of colonies
* [[Nest]]
* [[Nest]]
Line 8: Line 16:
* [[Controlled Colony]]
* [[Controlled Colony]]


= Properties =
= Properties = <!--T:3-->
The colony has
The colony has
* Population (the number of ants living there). This population is directly related to the zone of control (zoc) that may interfere with other colonies. The area of the zoc in propotional to the polulation, i.e. the radius is propotional to the square root of the population.
* Population (the number of ants living there). This population is directly related to the zone of control (zoc) that may interfere with other colonies. The area of the zoc in propotional to the polulation, i.e. the radius is propotional to the square root of the population.
Line 17: Line 25:
** [[Experience]]d players may build secret chambers too. Those can not be destroyed by players themselves, only by ants.   
** [[Experience]]d players may build secret chambers too. Those can not be destroyed by players themselves, only by ants.   
* [[Food]] (how much food is stored)
* [[Food]] (how much food is stored)
* Location information, what country and region it is in. (used for scoring)
* Name


Implementation note: All values are stored as floating numbers but the user interface rounds values.
<!--T:4-->
Implementation note: All numbers are stored as floating numbers but the user interface rounds values.


= Orders =
= Orders = <!--T:5-->
The player may set what the ants should be doing in the colony. See [[Colony Orders]]
The player may set what the ants should be doing in the colony. See [[Colony Orders]]


= Founding =
= Founding = <!--T:6-->
See [[Build Nest]] and [[Colonize]]
See [[Found New Colony]] (was [[Build Nest]] and [[Colonize]])
 
= Competition for food = <!--T:8-->
If 2 (or more) colonies areas overlap they compete for food making it harder to get enough food in both colonies. Both allied and enemy colonies have the same effect.


= Over time =
= Over time = <!--T:7-->
* Ordered to expand, the colony expands the nest's capacity.
* Ordered to expand, the colony expands the nest's capacity.
* Ordered to breed the colony do so if there is enough capacity.
* Ordered to breed the colony do so if there is enough capacity.
Line 33: Line 47:
* Slowly migrating actual [[Worker]] and [[Warrior]] amount towards the setting (ants are given new tasks)
* Slowly migrating actual [[Worker]] and [[Warrior]] amount towards the setting (ants are given new tasks)
* Sometimes cave ins and other accidents occur (decreasing capacity and killing ants)
* Sometimes cave ins and other accidents occur (decreasing capacity and killing ants)
 
* See [[Technical Implementation]] for the actual calculations being done
= Technical implementation =
</translate>
== Calculations done ==
For now calculations take place every other minute. r_nnn below is the ratio on that order setting. Using a linear model. This makes one colony "slow to turn" but by 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.
* capacity += r_expand * ar_worker * 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
* warriors += if (worker+warrior < capacity) r_breed * r_warrior * const
* food += min(capacity, (r_food * ar_worker - level) * (workers+warriors) * const), Gathering and eating, if r_food*ar_worker kept at level or above the food increase, else it decreases. Testing with level = 0.4. NOTE: Food can be negative, to affect how many dies in steps below.
 
Transform workers to warriors and vice versa
* if (to many warriors compared to workers) warriors -= const, worker +=const , i.e. if ar_worker > r_worker + 0.01
* if (to many workers compared to warriors) warriors += const, worker -=const , i.e. if ar_worker < r_worker - 0.01
 
Starving:
* if (food < 0) workers += food*ar_workers, warriors += food*(1-ar_workers)
* if (workers + warriors < 2) colony is dead
 
Decaying.
* food turn bad, slowly decreases? -= const similar to setting 1%?
Decaying both inhabited and not inhabited
* if (capacity > 10 or not inhabited) capacity slowly decreases -= const similar to setting 1%?
* if (capacity < 2 and not inhabited) nest is broken and destroyed
 
== Every 12 minutes ==
* Animal attacks