pub struct LuaBootstrap;Expand description
Entry point for registering event handlers. It is accessible through the global object named script.
Implementations§
Source§impl LuaBootstrap
impl LuaBootstrap
Sourcepub fn active_mods(&self) -> HashMap<String, String>
pub fn active_mods(&self) -> HashMap<String, String>
A dictionary listing the names of all currently active mods and mapping them to their version.
Sourcepub fn feature_flags(&self) -> LuaBootstrapFeatureFlags
pub fn feature_flags(&self) -> LuaBootstrapFeatureFlags
A dictionary of feature flags mapping to whether they are enabled.
Sourcepub fn level(&self) -> LuaBootstrapLevel
pub fn level(&self) -> LuaBootstrapLevel
Information about the currently running scenario/campaign/tutorial.
Sourcepub fn object_name(&self) -> &str
pub fn object_name(&self) -> &str
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.
Sourcepub fn generate_event_name(&self) -> &str
pub fn generate_event_name(&self) -> &str
Generate a new, unique event ID that can be used to raise custom events with LuaBootstrap::raise_event.
Sourcepub fn get_event_filter(&self, event: LuaAny) -> Option<LuaAny>
pub fn get_event_filter(&self, event: LuaAny) -> Option<LuaAny>
Gets the filters for the given event.
Sourcepub fn get_event_handler(&self, event: LuaAny) -> Option<LuaAny>
pub fn get_event_handler(&self, event: LuaAny) -> Option<LuaAny>
Find the event handler for an event.
Sourcepub fn get_event_id(&self, event: LuaAny) -> &str
pub fn get_event_id(&self, event: LuaAny) -> &str
Converts LuaEventType into related value of defines.events. Value will be provided also if event was not given a constant inside of defines.events.
Sourcepub fn get_event_order(&self) -> &str
pub fn get_event_order(&self) -> &str
Gets the mod event order as a string.
Sourcepub fn new_notification_queue(&self) -> LuaNotificationQueue
pub fn new_notification_queue(&self) -> LuaNotificationQueue
Creates new empty instance of LuaNotificationQueue
Sourcepub fn on_configuration_changed(&self, handler: Option<LuaAny>)
pub fn on_configuration_changed(&self, handler: Option<LuaAny>)
Register a function to be run when mod configuration changes.
This is called when the game version or any mod version changed, when any mod was added or removed, when a startup setting has changed, when any prototypes have been added or removed, or when a migration was applied. It allows the mod to make any changes it deems appropriate to both the data structures in its storage table or to the game state through LuaGameScript.
For more context, refer to the Data Lifecycle page.
Sourcepub fn on_event(
&self,
event: LuaAny,
filters: Option<LuaAny>,
handler: Option<LuaAny>,
)
pub fn on_event( &self, event: LuaAny, filters: Option<LuaAny>, handler: Option<LuaAny>, )
Register a handler to run on the specified event(s). Each mod can only register once for every event, as any additional registration will overwrite the previous one. This holds true even if different filters are used for subsequent registrations.
Sourcepub fn on_init(&self, handler: Option<LuaAny>)
pub fn on_init(&self, handler: Option<LuaAny>)
Register a function to be run on mod initialization.
This is only called when a new save game is created or when a save file is loaded that previously didn’t contain the mod. During it, the mod gets the chance to set up initial values that it will use for its lifetime. It has full access to LuaGameScript and the storage table and can change anything about them that it deems appropriate. No other events will be raised for the mod until it has finished this step.
For more context, refer to the Data Lifecycle page.
Sourcepub fn on_load(&self, handler: Option<LuaAny>)
pub fn on_load(&self, handler: Option<LuaAny>)
Register a function to be run on save load. This is only called for mods that have been part of the save previously, or for players connecting to a running multiplayer session.
It gives the mod the opportunity to rectify potential differences in local state introduced by the save/load cycle. Doing anything other than the following three will lead to desyncs, breaking multiplayer and replay functionality. Access to LuaGameScript is not available. The storage table can be accessed and is safe to read from, but not write to, as doing so will lead to an error.
The only legitimate uses of this event are these:
-
Re-setup metatables as they are not persisted through the save/load cycle.
-
Re-setup conditional event handlers, meaning subscribing to an event only when some condition is met to save processing time.
-
Create local references to data stored in the storage table.
For all other purposes, LuaBootstrap::on_init, LuaBootstrap::on_configuration_changed or migrations should be used instead.
For more context, refer to the Data Lifecycle page.
Sourcepub fn on_nth_tick(&self, handler: Option<LuaAny>, tick: LuaAny)
pub fn on_nth_tick(&self, handler: Option<LuaAny>, tick: LuaAny)
Register a handler to run every nth-tick(s). When the game is on tick 0 it will trigger all registered handlers.
pub fn raise_biter_base_built( &self, params: LuaBootstrapRaiseBiterBaseBuiltParams, )
pub fn raise_console_chat(&self, params: LuaBootstrapRaiseConsoleChatParams)
Sourcepub fn raise_event(&self, data: LuaAny, event: LuaAny)
pub fn raise_event(&self, data: LuaAny, event: LuaAny)
Raise an event. Only events generated with LuaBootstrap::generate_event_name and the following can be raised:
pub fn raise_market_item_purchased( &self, params: LuaBootstrapRaiseMarketItemPurchasedParams, )
pub fn raise_player_crafted_item( &self, params: LuaBootstrapRaisePlayerCraftedItemParams, )
pub fn raise_player_fast_transferred( &self, params: LuaBootstrapRaisePlayerFastTransferredParams, )
pub fn raise_script_built(&self, params: LuaBootstrapRaiseScriptBuiltParams)
pub fn raise_script_destroy(&self, params: LuaBootstrapRaiseScriptDestroyParams)
pub fn raise_script_destroy_segmented_unit( &self, params: LuaBootstrapRaiseScriptDestroySegmentedUnitParams, )
pub fn raise_script_revive(&self, params: LuaBootstrapRaiseScriptReviveParams)
pub fn raise_script_set_tiles( &self, params: LuaBootstrapRaiseScriptSetTilesParams, )
pub fn raise_script_teleported( &self, params: LuaBootstrapRaiseScriptTeleportedParams, )
Sourcepub fn register_metatable(&self, metatable: LuaAny, name: &str)
pub fn register_metatable(&self, metatable: LuaAny, name: &str)
Register a metatable to have linkage recorded and restored when saving/loading.
The metatable itself will not be saved. Instead, only the linkage to a registered metatable is saved, and the metatable registered under that name will be used when loading the table.
register_metatable() can not be used in the console, in event listeners or during a remote.call().
The metatable first needs to be defined in the mod’s root scope, then registered using this method. From then on, it will be properly restored for tables in storage.
local metatable =
{
__index = function(key)
return "no value for key " .. key
end
}
script.register_metatable("my_metatable", metatable)
```text
This previously defined `metatable` can then be set on any table as usual:
```text
local table = {key="value"}
setmetatable(table, metatable)
```textSourcepub fn register_on_object_destroyed(&self, object: LuaAny) -> (u64, u64, &str)
pub fn register_on_object_destroyed(&self, object: LuaAny) -> (u64, u64, &str)
Registers an object so that after it’s destroyed, on_object_destroyed is called.
Once an object is registered, it stays registered until it is actually destroyed, even through save/load cycles. The registration is global across all mods, meaning once one mod registers an object, all mods listening to on_object_destroyed will receive the event when it is destroyed. Registering the same object multiple times will still only fire the destruction event once, and will return the same registration number.
Depending on when a given object is destroyed, on_object_destroyed will either be fired at the end of the current tick or at the end of the next tick.
Sourcepub fn set_event_filter(&self, event: LuaAny, filters: Option<LuaAny>)
pub fn set_event_filter(&self, event: LuaAny, filters: Option<LuaAny>)
Sets the filters for the given event. The filters are only retained when set after the actual event registration, because registering for an event with different or no filters will overwrite previously set ones.
Limit the on_marked_for_deconstruction event to only be received when a non-ghost entity is marked for deconstruction.
script.set_event_filter(defines.events.on_marked_for_deconstruction, {{filter = "ghost", invert = true}})
```text
Limit the [on_built_entity](runtime:on_built_entity) event to only be received when either a `unit` or a `unit-spawner` is built.
```text
script.set_event_filter(defines.events.on_built_entity, {{filter = "type", type = "unit"}, {filter = "type", type = "unit-spawner"}})
```text
Limit the [on_entity_damaged](runtime:on_entity_damaged) event to only be received when a `rail` is damaged by an `acid` attack.
```text
script.set_event_filter(defines.events.on_entity_damaged, {{filter = "rail"}, {filter = "damage-type", type = "acid", mode = "and"}})
```textTrait Implementations§
Source§impl Clone for LuaBootstrap
impl Clone for LuaBootstrap
Source§fn clone(&self) -> LuaBootstrap
fn clone(&self) -> LuaBootstrap
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more