Difference between revisions of "Spawn Algorithm"
(air → airlike) |
(rename Minetest to Luanti) |
||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
The '''spawn algorithm''' tries to find a suitable spawn or respawn position for players. It is run whenever a player spawns or respawns. | The '''spawn algorithm''' tries to find a suitable spawn or respawn position for players. It is run whenever a player spawns or respawns. | ||
− | This page describes how | + | This page describes how Luanti’s builtin spawn algorithm works, as of '''version 5.10.0'''. Note that individual mods and games can choose to override the spawning behavior. The setting <code>static_spawn_point</code> can also override it. |
== Overview == | == Overview == | ||
− | Basically, | + | |
+ | If the setting <code>static_spawn_point</code> is set, Luanti will spawn new players at this position. | ||
+ | |||
+ | If this setting is not set, and no mod introduces its own spawning behavior, Luanti will apply an algorithm to find a spawn point automatically. It works like this: | ||
+ | |||
+ | Basically, Luanti checks random position in a square centered on (0,0). Then it tries to find a suitable Y height to spawn the player in. If it did, that position is the spawn position. Otherwise, it increases the square size and tries again (with a new random position in that square). | ||
The first square has a size of 3×3. If the first attempt failed, the search radius increases by 1, now it picks a random position in a 5×5 square (still centered on (0,0)). This is repeated until a valid spawn position is found. If the search square becomes too big or out of mapgen limits, the spawn search aborts and (0,0,0) will be used as the spawn position as a desperate fallback. | The first square has a size of 3×3. If the first attempt failed, the search radius increases by 1, now it picks a random position in a 5×5 square (still centered on (0,0)). This is repeated until a valid spawn position is found. If the search square becomes too big or out of mapgen limits, the spawn search aborts and (0,0,0) will be used as the spawn position as a desperate fallback. | ||
Line 12: | Line 17: | ||
== The Spawn Algorithm == | == The Spawn Algorithm == | ||
− | + | Assuming that <code>static_spawn_point</code> is ''not'' set and no mod provides its own spawning behavior, Luanti will follow this algorithm to find a spawn position automatically: | |
− | # | + | # Create a variable named <code>range</code> and set it to 1 |
− | # If range > | + | # If <code>range</code> is greater than or equal to 4000, or <code>range</code> is greater than the mapgen limit, terminate the algorithm and return (0,0,0) as the spawn position. Otherwise, continue. |
− | # Pick a random 2D position in the range from the XZ coordinates (-range, -range) to (+range, +range) (save it into <code>pos</code>) | + | # Pick a random 2D position in the range from the XZ coordinates (<code>-range, -range</code>) to (<code>+range, +range</code>) (save it into <code>pos</code>) |
# Get spawn level of this 2D position to get the Y coordinate (save into <code>pos2</code>) | # Get spawn level of this 2D position to get the Y coordinate (save into <code>pos2</code>) | ||
− | # If spawn level not found: Increase range by 1 and go to step 2. Otherwise, continue. | + | # If spawn level not found: Increase <code>range</code> by 1 and go to step 2. Otherwise, continue. |
− | # If the node at <code>pos2</code> and the node directly above it are either airlike (<code>drawtype="airlike</code>) or Ignore: Terminate algorithm and return <code>pos2</code> as the spawn position | + | # If the node at <code>pos2</code> and the node directly above it are either airlike (<code>drawtype="airlike"</code>) or Ignore: Terminate algorithm and return <code>pos2</code> as the spawn position |
− | # Increase range by 1 and go to step 2 | + | # Increase <code>range</code> by 1 and go to step 2 |
Note: This is a slight simplification of the actual code. The actual code for this is the function <code>Server::findSpawnPos</code> in <code>server.cpp</code>. | Note: This is a slight simplification of the actual code. The actual code for this is the function <code>Server::findSpawnPos</code> in <code>server.cpp</code>. |
Latest revision as of 17:08, 28 October 2024
The spawn algorithm tries to find a suitable spawn or respawn position for players. It is run whenever a player spawns or respawns.
This page describes how Luanti’s builtin spawn algorithm works, as of version 5.10.0. Note that individual mods and games can choose to override the spawning behavior. The setting static_spawn_point
can also override it.
Overview
If the setting static_spawn_point
is set, Luanti will spawn new players at this position.
If this setting is not set, and no mod introduces its own spawning behavior, Luanti will apply an algorithm to find a spawn point automatically. It works like this:
Basically, Luanti checks random position in a square centered on (0,0). Then it tries to find a suitable Y height to spawn the player in. If it did, that position is the spawn position. Otherwise, it increases the square size and tries again (with a new random position in that square).
The first square has a size of 3×3. If the first attempt failed, the search radius increases by 1, now it picks a random position in a 5×5 square (still centered on (0,0)). This is repeated until a valid spawn position is found. If the search square becomes too big or out of mapgen limits, the spawn search aborts and (0,0,0) will be used as the spawn position as a desperate fallback.
The algorithm makes up to 4001 attempts before giving up.
The Spawn Algorithm
Assuming that static_spawn_point
is not set and no mod provides its own spawning behavior, Luanti will follow this algorithm to find a spawn position automatically:
- Create a variable named
range
and set it to 1 - If
range
is greater than or equal to 4000, orrange
is greater than the mapgen limit, terminate the algorithm and return (0,0,0) as the spawn position. Otherwise, continue. - Pick a random 2D position in the range from the XZ coordinates (
-range, -range
) to (+range, +range
) (save it intopos
) - Get spawn level of this 2D position to get the Y coordinate (save into
pos2
) - If spawn level not found: Increase
range
by 1 and go to step 2. Otherwise, continue. - If the node at
pos2
and the node directly above it are either airlike (drawtype="airlike"
) or Ignore: Terminate algorithm and returnpos2
as the spawn position - Increase
range
by 1 and go to step 2
Note: This is a slight simplification of the actual code. The actual code for this is the function Server::findSpawnPos
in server.cpp
.
Spawn Level
The spawn level is the Y coordinate of a XZ position at which players will spawn. The particular algorithm/formula for this depends on the mapgen. The general goal here is to spawn the player
A rough overview of spawn levels:
Mapgen | Spawn level | Failure condition |
---|---|---|
v6 | Base terrain height | If below or at water level, or 16 nodes above water level |
fractal | Lowest 3 consecutive air nodes, starting from Y=0, or water level if the 'terrain' mapgen flag is set | If no suitable air nodes were found for 4096 consecutive nodes |
singlenode | Always 0 | None. |
v5, v7, valleys, carpathian | It's complicated ... | It's complicated ... |