Cave spawning
Jump to navigation
Jump to search
This page explains the game's process behind spawning enemies in a cave. This is obtained through observation, and is subject to have some parts incorrect.
Editor's note: Until further notice, this only applies to spawning enemies.
Process
Some time after the cave is built out of its available units, it will run the "main algorithm" in order to spawn enemies.
Main algorithm
- For each
TekiInfo
entry in the sublevel's configuration...- Store the minimum amount of enemies to spawn.
- Store the spawn coordinate type.
- Do the spawn algorithm with this enemy type, amount, and spawn coordinate type.
- If the number of enemies hasn't reached
{f002}
yet...- For each
TekiInfo
entry in the sublevel's configuration...- Grab its random distribution weight and add it to a list.
- Randomly decide what enemy to spawn next, using the weighted list built in the last step.
- Store the enemy's type.
- Store the spawn coordinate type.
- Do the spawn algorithm with this enemy type, amount of 1, and spawn coordinate type.
- For each
Spawn algorithm
- For every unit that makes up the fully-built cave...
- For every spawn coordinate inside that unit...
- If all of the possible spawn positions have been used up, finish the whole enemy spawn process.
- If this coordinate is out of bounds, skip it.
- If this coordinate has already been used, skip it.
- Decide how many enemies to spawn here, picking randomly between the spawn coordinate's amount limits.
- For each one in that amount...
- If the total number of enemies is equal to
{f002}
, finish the whole enemy spawn process. - If the number of enemies spawned here surpasses the intended amount, leave this algorithm.
- Spawn that enemy in these coordinates.
- If the total number of enemies is equal to
- Mark this spawn coordinate as used.
- For every spawn coordinate inside that unit...