This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
usage:atlatc:events [2020-01-28 09:16] orwell fix it |
usage:atlatc:events [2023-10-29 15:30] (current) orwell [approach] |
||
---|---|---|---|
Line 33: | Line 33: | ||
===== Event Types ===== | ===== Event Types ===== | ||
+ | |||
+ | ==== init ==== | ||
+ | The '' | ||
==== int ==== | ==== int ==== | ||
Line 43: | Line 46: | ||
} | } | ||
</ | </ | ||
- | Fired when an interrupt set by the '' | + | Fired when an interrupt set by the '' |
For backwards compatibility reasons, the message is also contained in the '' | For backwards compatibility reasons, the message is also contained in the '' | ||
Line 54: | Line 57: | ||
} | } | ||
</ | </ | ||
- | Fired when a node called '' | + | Fired when a node called '' |
+ | |||
+ | ==== schedule ==== | ||
+ | <code lua> | ||
+ | event = { | ||
+ | type = " | ||
+ | schedule = true, | ||
+ | msg = < | ||
+ | } | ||
+ | </ | ||
+ | Fired when an interrupt set by the '' | ||
==== digiline ==== | ==== digiline ==== | ||
Line 66: | Line 79: | ||
</ | </ | ||
Fired when the component receives a [[usage: | Fired when the component receives a [[usage: | ||
+ | |||
+ | ==== punch ==== | ||
+ | **Applicable for:** LuaATC Operation Panel | ||
+ | <code lua> | ||
+ | event = { | ||
+ | type = " | ||
+ | punch = true, | ||
+ | name = name of puncher | ||
+ | } | ||
+ | </ | ||
+ | Fired when a player punches the operation panel. | ||
+ | |||
+ | Note: Nodes other than the operation panel don't emit the '' | ||
==== train ==== | ==== train ==== | ||
Line 77: | Line 103: | ||
</ | </ | ||
Fired when a train enters the rail. The field '' | Fired when a train enters the rail. The field '' | ||
- | If the world contains trains | + | If the world contains trains |
==== approach ==== | ==== approach ==== | ||
Line 86: | Line 112: | ||
approach = true, | approach = true, | ||
id = < | id = < | ||
+ | has_entered = < | ||
} | } | ||
</ | </ | ||
Fired when a train approaches the rail. This event may be generated multiple times for the same train. | Fired when a train approaches the rail. This event may be generated multiple times for the same train. | ||
- | * **This function is available only in the '' | ||
* **This function is available only when the [[# | * **This function is available only when the [[# | ||
+ | |||
+ | `has_entered` is set to true when the tip of the train is already standing on the node, i.e. the " | ||
=== Approach callback mechanism === | === Approach callback mechanism === | ||
- | The approach callback mechanism is a new feature that allows LuaAutomation ATC rails to hook into the approach callback system, which is used by the [[usage: | ||
- | **At the time of writing (2019-12-18), | + | //since version 2.3.0// |
+ | |||
+ | The approach callback mechanism is a new feature that allows LuaAutomation ATC rails to hook into the approach callback system, which is used by the [[usage: | ||
To enable the feature, define the following global variable in the local environment of the ATC rail: | To enable the feature, define the following global variable in the local environment of the ATC rail: | ||
Line 118: | Line 147: | ||
* '' | * '' | ||
* '' | * '' | ||
+ | * '' | ||