Difference between revisions of "Town Growth Mechanics"

From #openttdcoop wiki

Jump to: navigation, search
(Town growth speed: update recent cargo days)
m (Town growth speed)
Line 60: Line 60:
  
 
*First, the game checks whether town can grow at all. If town growth is not funded and the town needs water, food or whatever (and has population>90 for subarctic, population>60 for subtropic), it does not grow at all. If town growth is funded, these checks are ignored and the town always grows.
 
*First, the game checks whether town can grow at all. If town growth is not funded and the town needs water, food or whatever (and has population>90 for subarctic, population>60 for subtropic), it does not grow at all. If town growth is funded, these checks are ignored and the town always grows.
*Active stations can influence town growth: A station is counted if it is within region 0 of the town and the last loading or unloading process of any type is at most 20 [https://github.com/OpenTTD/OpenTTD/blob/39e6247bec6b958b11c6ab58430a4197eb1deb6a/src/town_cmd.cpp#L3356-L3370] * 185 [https://github.com/OpenTTD/OpenTTD/blob/2fd871e2af5cb9e239628843fbd40499ee43406a/src/date_type.h#L32] = 3700 ticks, or 50 days ago.
+
*Active stations can influence town growth: A station is counted if it is within region 0 of the town and the last loading or unloading process of any type is at most 20 [https://github.com/OpenTTD/OpenTTD/blob/39e6247bec6b958b11c6ab58430a4197eb1deb6a/src/town_cmd.cpp#L3356-L3370] * 185 [https://github.com/OpenTTD/OpenTTD/blob/2fd871e2af5cb9e239628843fbd40499ee43406a/src/date_type.h#L32] = 3700 ticks, or 50 days ago. Up to 5 different stations are counted, everything above that is useless.
 
+
Up to 5 different stations are counted, everything above that is useless.
+
 
*If no station is present and growth is not funded, there is a 11/12 probability that the town does not grow at all.
 
*If no station is present and growth is not funded, there is a 11/12 probability that the town does not grow at all.
  
The following is based on this function: [https://github.com/OpenTTD/OpenTTD/blob/39e6247bec6b958b11c6ab58430a4197eb1deb6a/src/town_cmd.cpp#L3372-L3399]
+
If the towns grows, "the number of times towns are processed before a new building is built" (comment in the code) is then looked up in of two arrays, where smaller numbers indicate faster growth: [https://github.com/OpenTTD/OpenTTD/blob/39e6247bec6b958b11c6ab58430a4197eb1deb6a/src/town_cmd.cpp#L3372-L3399]
 
+
If the towns grows, "the number of times towns are processed before a new building is built" (comment in the code) is then looked up in of two arrays, where smaller numbers indicate faster growth:
+
 
*With funded growth: { 120, 120, 120, 100, 80, 60 } with { 0, 1, 2, 3, 4, 5 } stations. This means that the first two stations are pointless (120->120) and 5 stations double town growth (only 60 units instead of 120)
 
*With funded growth: { 120, 120, 120, 100, 80, 60 } with { 0, 1, 2, 3, 4, 5 } stations. This means that the first two stations are pointless (120->120) and 5 stations double town growth (only 60 units instead of 120)
*Without funded growth: { 320, 420, 300, 220, 160, 100 } with { 0, 1, 2, 3, 4, 5 } stations. The value for 0 stations (320) is smaller than the value with 1 station (420), but without any stations we get this growth only in 1/12 of the cases. Therefore, the first station is very important for town growth, and additional stations can speed up growth by an additional factor of 4 (1->5 stations). 5 stations without funding are just a bit better than no stations with funding - if the town does not allow to build stations, simply fund growth.
+
*Without funded growth: { 320, 420, 300, 220, 160, 100 } with { 0, 1, 2, 3, 4, 5 } stations. The value for 0 stations (320) is smaller than the value with 1 station (420), but without any stations we get this growth only in 1/12 of the cases.
 +
Therefore, the first station is very important for town growth, and additional stations can speed up growth by an additional factor of 4 (1->5 stations). 5 stations without funding are just a bit better than no stations with funding - if the town does not allow to build stations, simply fund growth.
  
 
This number is then divided by 2^i where i refers to the settings of town growth rate:
 
This number is then divided by 2^i where i refers to the settings of town growth rate:

Revision as of 22:04, 10 January 2020

In PSG228, we tried to extend a single city over the full 512x512-map. The first issue was the road design, which stopped town growth at about 350,000 inhabitants. We got rid of all dead ends, and the town got bigger again. However, after we reached a population of ~1.5 million, the town refused to increase its population. Growth tunnels spread more houses on the outside, but the result were many empty spots closer to the city center, which decreased the total population.

This inspired me to do some research how towns work, and how this can be used to grow towns. The source code of OpenTTD is public and can be accessed at [1]. For towns, the most important file is [2].

The approximate original version of town_cmd.cpp this article is based on is [3].

Algorithm of town growth

The algorithm to build new houses works like this:

1) First, calculate how many times the town tries to build a house (which I will call N): [4]

  • If the town is founded with "2x2 grid" or "3x3 grid" as road layout, N = 10 + housenumber*1/9
  • If the town is founded with "better roads", N = 10 + housenumber*2/9
  • If the town is founded with "original roads", N = 10 + housenumber*4/9

This means that the chosen road layout of the town is important - even if we build all roads ourself, which is usually done in coop games.


2) now, begin at the city center (usually the road under the town sign, or a road next to it)

  • If there is no road or if there is another, unconnected road, build a road (if allowed by game settings) and always stop the function
  • If not, choose a random direction. If the current tile has a road connection in this direction, do nothing. Otherwise, if the neighbor tile in this direction is empty, build a house there and stop the function. There are more checks involved (e.g. "is the tile in water?"), but they are not important here. If towns are allowed to build roads and have a grid layout, no house will be built at tiles reserved for roads. [5]
    • Starting in version 1.6, choices that are trivially dead ends are ignored. [6]

3) If the function was not stopped for one of the reasons above, follow the road in a random direction, except the one where you came from. For regular roads, this just follows the road. At cross-roads, a random direction is chosen. If the road has a connection to one side only (and therefore is a dead end), the function is stopped.

4) Try to build something there again. Repeat steps 3 and 4, until the number of attempts is larger than the maximal number calculated in step 1.

If the algorithm hits a bridge (or tunnel) instead of a regular road, it continues at the other side, independent of the length of the bridge. If a bridge begins at the tile of the city center, the other side is used only half of the time.


For interpretation, it is important to compare N to typical town sizes: A town with 200,000 inhabitants might have something like 2000 houses and therefore N=230 to 900, depending on the road layout of the town. But it fits in a circle with a radius of about 50 tiles. Where does the difference come from? As mentioned in step 3, the town follows roads in random directions at each crossroads. This leads to a pattern which is called random walk in mathematics. I don't want to annoy you with details, but it is important to keep in mind that the resulting path might visit the same roads multiple times and the average distance from the origin grows with the square root of the pathlength. This is fine, as the town radius grows with the square root of the house number, too, if it can grow in all directions.

This town demonstrates the large difference between potential growth radius and usual town sizes. The map shows a single road, 4135 tiles long, with houses on both sides. The central structure is disconnected to enforce town growth in the direction of the long road.

House quality

Towns have four different areas, which can be distinguished by the road layout:

  • region 4 with street lights
  • region 3 with trees on the roads
  • (region 2 is not used)
  • region 1 with sidewalks
  • region 0 has no special road design

Towns with less than 92 houses use a table to look up the size of these regions, if they have more houses they use the following formulas: m=housenumber/8 (rounded down)

  • region 4: range=m*3+5
  • region 3: range=m*5-5
  • region 1: range=m*9-15
  • region 0: range=m*14-40

A tile is within a certain area if its squared distance to the town center is smaller than this range. Region 3 has an area of about pi*5/8*housenumber tiles, which is nearly 2*housenumber. If half of the town tiles can be used for houses, the whole town can be within this area.

An example with a town in PSG218: It has 1171 houses, therefore m=[1171/8]=146 and region 4 has range=146*3+5=443. The tile with street lights is (19,9) tiles away, the squared distance is 19^2+9^2=442 which is smaller than 443. Therefore, the tile is in region 4.


Town growth speed

Town growth speed is always "once per x days" or "does not grow". In the former case, the town tries to build a new house every x days. This number is updated frequently, with the following algorithm:

  • First, the game checks whether town can grow at all. If town growth is not funded and the town needs water, food or whatever (and has population>90 for subarctic, population>60 for subtropic), it does not grow at all. If town growth is funded, these checks are ignored and the town always grows.
  • Active stations can influence town growth: A station is counted if it is within region 0 of the town and the last loading or unloading process of any type is at most 20 [7] * 185 [8] = 3700 ticks, or 50 days ago. Up to 5 different stations are counted, everything above that is useless.
  • If no station is present and growth is not funded, there is a 11/12 probability that the town does not grow at all.

If the towns grows, "the number of times towns are processed before a new building is built" (comment in the code) is then looked up in of two arrays, where smaller numbers indicate faster growth: [9]

  • With funded growth: { 120, 120, 120, 100, 80, 60 } with { 0, 1, 2, 3, 4, 5 } stations. This means that the first two stations are pointless (120->120) and 5 stations double town growth (only 60 units instead of 120)
  • Without funded growth: { 320, 420, 300, 220, 160, 100 } with { 0, 1, 2, 3, 4, 5 } stations. The value for 0 stations (320) is smaller than the value with 1 station (420), but without any stations we get this growth only in 1/12 of the cases.

Therefore, the first station is very important for town growth, and additional stations can speed up growth by an additional factor of 4 (1->5 stations). 5 stations without funding are just a bit better than no stations with funding - if the town does not allow to build stations, simply fund growth.

This number is then divided by 2^i where i refers to the settings of town growth rate:

  • None: i=1 divisor 2, this is used for funded growth only
  • slow: i=0, divisor 1
  • normal: i=1, divisor 2
  • fast: i=2, divisior 4
  • very fast: i=3, divisor 8

For a "city", it the result is again divided by 2. The number is rounded down in each step.

The result is then divided by ([housenumber / 50] + 1) (where [housenumber/50] gets rounded down). housenumber is the number of houses the town has. Again, the result is rounded down.

This is approximately the number of days between town growth. The actual number of days is about 5% less, since a day is 74 ticks but a town growth cycle is 70 ticks. [10][11]

House number and town size

Every house has a (minimal) lifetime. After reaching this time, it is destroyed and might be replaced by another house. If not, the tile gets empty. Large towns spend a lot of their "growth" attempts to fill these gaps again. The best growth rate is 1/day. This gives a natural upper limit of the house number of towns: As soon as the rate of dying houses is equal to the rate of new houses, the town cannot grow any more. I am not sure if NewGRFs change the lifetime of buildings. In addition, different house sizes might have different lifetimes. For a regular town layout and original houses, I think the limit is somewhere around 27000 to 30000 houses and about 2.4 to 3 million inhabitants, where the lower values were reached in my tests and the upper values might be possible somehow. A town of this size needs about 80 years to remove and rebuild the house on each tile once.


Application to town building

A dead end towards east
  • Avoid dead ends in populated areas. The town growth algorithm might run into them and stop without building a house. A dead end somewhere outside does not matter - as long as there are no houses, the town does not use this road anyway at the moment.
  • A single road tile with an open end may count as a dead end. The town might follow it, try to build a road (and fail) and stop. This was adjusted in 1.6 [12].
  • Avoid having too many road junctions. Every junction is a place where the town might change its search direction, reducing the effective range where it searches for empty spots to build new houses.
  • Use growth tunnels/bridges if your road layout near the city center is so complex that the outer parts get too few houses. However, let them end within region 3 (roads with trees) until this area is filled with houses.

The "best" road layout

The best road layout is everything where each growth attempt is successful and ends in a new house. Most simple SBahn-grids get close to 100%, you can grow a city with at least 2 millions inhabitants with that. To always get a new house, build a few long roads, going from the town center outwards. The town growth algorithm will follow them and pick one of the nearest empty spots. This results in houses everywhere along the road, and always enough empty tiles after some point.

With just two roads (connected in the town center to get a single long road), each road piece can support ~2 houses, therefore the town has to perform roughly housenumber/4 steps in the searching algorithm. With "original layout", it can do up to housenumber*4/9 steps, which is larger than this number. Therefore, this layout is basically the best you can do without other constraints. These roads can be winded around the town center in some spiral-shape.

A town with a single long road, as described in the text. The town uses every available spot in the inner parts (except some corner tiles) and fills gaps there nearly instantly.
This map has a serious problem with overpopulation. 13 million people live on 512x512 tiles, with a transportation rate of about 80% via transrapid trains.

Algorithm Changes

  • Starting in 1.6, the town growth algorithm ignores trivial dead ends. [13]
  • Starting in 1.9, towns can build bridges over one-way roads and rail lines. [14]
Powered by MediaWiki