fwd2bwd_ratio | :: uint | The pathfinder performs a step of the backward search every |
The pathfinder performs a step of the backward search every | ||
goal_pressure_ratio | :: double | When looking at which node to check next, their heuristic value is multiplied by this ratio. The higher it is, the more the search is directed straight at the goal. Defaults to |
When looking at which node to check next, their heuristic value is multiplied by this ratio. The higher it is, the more the search is directed straight at the goal. Defaults to | ||
use_path_cache | :: boolean | Whether to cache paths at all. Defaults to |
Whether to cache paths at all. Defaults to | ||
max_steps_worked_per_tick | :: double | The maximum number of nodes that are expanded per tick. Defaults to |
The maximum number of nodes that are expanded per tick. Defaults to | ||
max_work_done_per_tick | :: uint | The maximum amount of work each pathfinding job is allowed to do per tick. Defaults to |
The maximum amount of work each pathfinding job is allowed to do per tick. Defaults to | ||
short_cache_size | :: uint | Number of elements in the short cache. Defaults to |
Number of elements in the short cache. Defaults to | ||
long_cache_size | :: uint | Number of elements in the long cache. Defaults to |
Number of elements in the long cache. Defaults to | ||
short_cache_min_cacheable_distance | :: double | The minimal distance to the goal in tiles required to be searched in the short path cache. Defaults to |
The minimal distance to the goal in tiles required to be searched in the short path cache. Defaults to | ||
short_cache_min_algo_steps_to_cache | :: uint | The minimal number of nodes required to be searched in the short path cache. Defaults to |
The minimal number of nodes required to be searched in the short path cache. Defaults to | ||
long_cache_min_cacheable_distance | :: double | The minimal distance to the goal in tiles required to be searched in the long path cache. Defaults to |
The minimal distance to the goal in tiles required to be searched in the long path cache. Defaults to | ||
cache_max_connect_to_cache_steps_multiplier | :: uint | When looking for a connection to a cached path, search at most for this number of steps times the original estimate. Defaults to |
When looking for a connection to a cached path, search at most for this number of steps times the original estimate. Defaults to | ||
cache_accept_path_start_distance_ratio | :: double | When looking for a path from cache, make sure it doesn't start too far from the requested start in relative terms. Defaults to |
When looking for a path from cache, make sure it doesn't start too far from the requested start in relative terms. Defaults to | ||
cache_accept_path_end_distance_ratio | :: double | When looking for a path from cache, make sure it doesn't end too far from the requested end in relative terms. This is typically more lenient than the start ratio since the end target could be moving. Defaults to |
When looking for a path from cache, make sure it doesn't end too far from the requested end in relative terms. This is typically more lenient than the start ratio since the end target could be moving. Defaults to | ||
negative_cache_accept_path_start_distance_ratio | :: double | Same principle as |
Same principle as | ||
negative_cache_accept_path_end_distance_ratio | :: double | Same principle as |
Same principle as | ||
cache_path_start_distance_rating_multiplier | :: double | When assigning a rating to the best path, this multiplier times start distances is considered. Defaults to |
When assigning a rating to the best path, this multiplier times start distances is considered. Defaults to | ||
cache_path_end_distance_rating_multiplier | :: double | When assigning a rating to the best path, this multiplier times end distances is considered. This value is typically higher than the start multiplier as this results in better end path quality. Defaults to |
When assigning a rating to the best path, this multiplier times end distances is considered. This value is typically higher than the start multiplier as this results in better end path quality. Defaults to | ||
stale_enemy_with_same_destination_collision_penalty | :: double | A penalty that is applied for another unit that is on the way to the goal. This is mainly relevant for situations where a group of units has arrived at the target they are supposed to attack, making units further back circle around to reach the target. Defaults to |
A penalty that is applied for another unit that is on the way to the goal. This is mainly relevant for situations where a group of units has arrived at the target they are supposed to attack, making units further back circle around to reach the target. Defaults to | ||
ignore_moving_enemy_collision_distance | :: double | The distance in tiles after which other moving units are not considered for pathfinding. Defaults to |
The distance in tiles after which other moving units are not considered for pathfinding. Defaults to | ||
enemy_with_different_destination_collision_penalty | :: double | A penalty that is applied for another unit that is too close and either not moving or has a different goal. Defaults to |
A penalty that is applied for another unit that is too close and either not moving or has a different goal. Defaults to | ||
general_entity_collision_penalty | :: double | The general collision penalty with other units. Defaults to |
The general collision penalty with other units. Defaults to | ||
general_entity_subsequent_collision_penalty | :: double | The collision penalty for positions that require the destruction of an entity to get to. Defaults to |
The collision penalty for positions that require the destruction of an entity to get to. Defaults to | ||
extended_collision_penalty | :: double | The collision penalty for collisions in the extended bounding box but outside the entity's actual bounding box. Defaults to |
The collision penalty for collisions in the extended bounding box but outside the entity's actual bounding box. Defaults to | ||
max_clients_to_accept_any_new_request | :: uint | The amount of path finder requests accepted per tick regardless of the requested path's length. Defaults to |
The amount of path finder requests accepted per tick regardless of the requested path's length. Defaults to | ||
max_clients_to_accept_short_new_request | :: uint | When the |
When the | ||
direct_distance_to_consider_short_request | :: uint | The maximum direct distance in tiles before a request is no longer considered short. Defaults to |
The maximum direct distance in tiles before a request is no longer considered short. Defaults to | ||
short_request_max_steps | :: uint | The maximum amount of nodes a short request will traverse before being rescheduled as a long request. Defaults to |
The maximum amount of nodes a short request will traverse before being rescheduled as a long request. Defaults to | ||
short_request_ratio | :: double | The amount of steps that are allocated to short requests each tick, as a percentage of all available steps. Defaults to |
The amount of steps that are allocated to short requests each tick, as a percentage of all available steps. Defaults to | ||
min_steps_to_check_path_find_termination | :: uint | The minimum amount of steps that are guaranteed to be performed for every request. Defaults to |
The minimum amount of steps that are guaranteed to be performed for every request. Defaults to | ||
start_to_goal_cost_multiplier_to_terminate_path_find | :: double | If the actual amount of steps is higher than the initial estimate by this factor, pathfinding is terminated. Defaults to |
If the actual amount of steps is higher than the initial estimate by this factor, pathfinding is terminated. Defaults to | ||
overload_levels | :: array[uint] | The thresholds of waiting clients after each of which the per-tick work limit will be increased by the corresponding value in |
The thresholds of waiting clients after each of which the per-tick work limit will be increased by the corresponding value in | ||
overload_multipliers | :: array[double] | The multipliers to the amount of per-tick work applied after the corresponding thresholds in |
The multipliers to the amount of per-tick work applied after the corresponding thresholds in | ||
negative_path_cache_delay_interval | :: uint | The delay in ticks between decrementing the score of all paths in the negative cache by one. Defaults to |
The delay in ticks between decrementing the score of all paths in the negative cache by one. Defaults to |