Factorio Runtime DocsVersion 1.1.100

Class LuaLogisticCell

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 character has one for the personal roboport).

Members

is_in_logistic_range(position)  → boolean

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

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 a given position within the construction range of this cell?

is_neighbour_with(other)  → boolean

Are two cells neighbours?

Are two cells neighbours?

help()  → string

All methods and properties that this object supports.

All methods and properties that this object supports.

logistic_radius [R] :: float

Logistic radius of this cell.

Logistic radius of this cell.

logistics_connection_distance [R] :: float

Logistic connection distance of this cell.

Logistic connection distance of this cell.

construction_radius [R] :: float

Construction radius of this cell.

Construction radius of this cell.

stationed_logistic_robot_count [R] :: uint

Number of stationed logistic robots in this cell.

Number of stationed logistic robots in this cell.

stationed_construction_robot_count [R] :: uint

Number of stationed construction robots in this cell.

Number of stationed construction robots in this cell.

mobile [R] :: boolean

true if this is a mobile cell.

true if this is a mobile cell.

transmitting [R] :: boolean

true if this cell is active.

true if this cell is active.

charge_approach_distance [R] :: float

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

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

charging_robot_count [R] :: uint

Number of robots currently charging.

Number of robots currently charging.

to_charge_robot_count [R] :: uint

Number of robots waiting to charge.

Number of robots waiting to charge.

owner [R] :: LuaEntity

This cell's owner.

This cell's owner.

logistic_network [R] :: LuaLogisticNetwork?

The network that owns this cell, if any.

The network that owns this cell, if any.

neighbours [R] :: array[LuaLogisticCell]

Neighbouring cells.

Neighbouring cells.

charging_robots [R] :: array[LuaEntity]

Robots currently being charged.

Robots currently being charged.

to_charge_robots [R] :: array[LuaEntity]

Robots waiting to charge.

Robots waiting to charge.

valid [R] :: boolean

Is this object valid?

Is this object valid?

object_name [R] :: string

The class name of this object.

The class name of this object.

Methods

is_in_logistic_range(position)  → boolean

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

Parameters

position :: MapPosition


is_in_construction_range(position)  → boolean

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

Parameters

position :: MapPosition


is_neighbour_with(other)  → boolean

Are two cells neighbours?

Parameters

other :: LuaLogisticCell


help()  → string

All methods and properties that this object supports.

Attributes

logistic_radius :: floatRead

Logistic radius of this cell.


logistics_connection_distance :: floatRead

Logistic connection distance of this cell.


construction_radius :: floatRead

Construction radius of this cell.


stationed_logistic_robot_count :: uintRead

Number of stationed logistic robots in this cell.


stationed_construction_robot_count :: uintRead

Number of stationed construction robots in this cell.


mobile :: booleanRead

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


transmitting :: booleanRead

true if this cell is active.


charge_approach_distance :: floatRead

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


charging_robot_count :: uintRead

Number of robots currently charging.


to_charge_robot_count :: uintRead

Number of robots waiting to charge.


owner :: LuaEntityRead

This cell's owner.


logistic_network :: LuaLogisticNetwork?Read

The network that owns this cell, if any.


neighbours :: array[LuaLogisticCell] Read

Neighbouring cells.


charging_robots :: array[LuaEntity] Read

Robots currently being charged.


to_charge_robots :: array[LuaEntity] Read

Robots waiting to charge.


valid :: booleanRead

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.


object_name :: stringRead

The class name of this object. Available even when valid is false. For LuaStruct objects it may also be suffixed with a dotted path to a member of the struct.

Classes

Events

Concepts

Defines

Builtin types