LuaLogisticCell

class LuaLogisticCell
is_in_logistic_range(position) → boolean Is a given position within the logistic range of this cell?
is_in_construction_range(position) → boolean Is a given position within the construction range of this cell?
is_neighbour_with(other) → boolean Are two cells neighbours?
valid :: boolean [R] Is this object valid?
logistic_radius :: float [R] Logistic radius of this cell.
construction_radius :: float [R] Construction radius of this cell.
stationed_logistic_robot_count :: uint [R] Number of stationed logistic robots in this cell.
stationed_construction_robot_count :: uint [R] Number of stationed construction robots in this cell.
mobile :: boolean [R] true if this is a mobile cell.
transmitting :: boolean [R] true if this cell is active.
charge_approach_distance :: float [R] Radius at which the robots hover when waiting to be charged.
charging_robot_count :: uint [R] Number of robots currently charging.
to_charge_robot_count :: uint [R] Number of robots waiting to charge.
owner :: LuaEntity [R] This cell's owner.
logistic_network :: LuaLogisticNetwork [R] The network that owns this cell or nil.
neighbours :: array of LuaLogisticCell [R] Neighbouring cells.
charging_robots :: array of LuaEntity [R] Robots currently being charged.
to_charge_robots :: array of LuaEntity [R] Robots waiting to charge.

Logistic cell of a particular LuaEntity. A "Logistic Cell" is the given name for settings and properties used by what would normally be seen as a "Roboport". A logistic cell however doesn't have to be attached to the roboport entity (the player has one for the personal roboport).

is_in_logistic_range(position) → boolean

Is a given position within the logistic range of this cell?

Parameters
position :: Position
is_in_construction_range(position) → boolean

Is a given position within the construction range of this cell?

Parameters
position :: Position
is_neighbour_with(other) → boolean

Are two cells neighbours?

Parameters
valid :: boolean [Read-only]

Is this object valid? This Lua object holds a reference to an object within the game engine. It is possible that the game-engine object is removed whilst a mod still holds the corresponding Lua object. If that happens, the object becomes invalid, i.e. this attribute will be false. Mods are advised to check for object validity if any change to the game state might have occurred between the creation of the Lua object and its access.

logistic_radius :: float [Read-only]

Logistic radius of this cell.

construction_radius :: float [Read-only]

Construction radius of this cell.

stationed_logistic_robot_count :: uint [Read-only]

Number of stationed logistic robots in this cell.

stationed_construction_robot_count :: uint [Read-only]

Number of stationed construction robots in this cell.

mobile :: boolean [Read-only]

true if this is a mobile cell. In vanilla, only the logistic cell created by a player's personal roboport is mobile.

transmitting :: boolean [Read-only]

true if this cell is active.

charge_approach_distance :: float [Read-only]

Radius at which the robots hover when waiting to be charged.

charging_robot_count :: uint [Read-only]

Number of robots currently charging.

to_charge_robot_count :: uint [Read-only]

Number of robots waiting to charge.

owner :: LuaEntity [Read-only]

This cell's owner.

logistic_network :: LuaLogisticNetwork [Read-only]

The network that owns this cell or nil.

neighbours :: array of LuaLogisticCell [Read-only]

Neighbouring cells.

charging_robots :: array of LuaEntity [Read-only]

Robots currently being charged.

to_charge_robots :: array of LuaEntity [Read-only]

Robots waiting to charge.