typed-factorio 3.10.0 → 3.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,12 +7,12 @@ import type { LocalisedString, table, uint } from "factorio:runtime"
7
7
  declare global {
8
8
  /**
9
9
  * `localised_print()` allows printing {@link LocalisedString} to stdout without polluting the Factorio {@linkplain https://wiki.factorio.com/Log_file log file}. This is primarily useful when communicating with external tools that launch Factorio as a child process.
10
- * @see {@link https://lua-api.factorio.com/2.0.28/auxiliary/libraries.html#new-functions Online documentation}
10
+ * @see {@link https://lua-api.factorio.com/2.0.29/auxiliary/libraries.html#new-functions Online documentation}
11
11
  */
12
12
  function localised_print(string: LocalisedString): void
13
13
  /**
14
14
  * `log()` can print {@link LocalisedString LocalisedStrings} to the Factorio {@linkplain https://wiki.factorio.com/Log_file log file}. This, in combination with the serpent library, makes debugging in the data stage easier because it allows the inspection of entire prototype tables. For example, printing all properties of the sulfur item prototype can be done like so: `log(serpent.block(data.raw["item"]["sulfur"]))`
15
- * @see {@link https://lua-api.factorio.com/2.0.28/auxiliary/libraries.html#new-functions Online documentation}
15
+ * @see {@link https://lua-api.factorio.com/2.0.29/auxiliary/libraries.html#new-functions Online documentation}
16
16
  */
17
17
  function log(string: LocalisedString): void
18
18
  /**
@@ -29,7 +29,7 @@ declare global {
29
29
  * ```
30
30
  *
31
31
  * Note that `table_size()` does not work correctly for {@link LuaCustomTable}, their size has to be determined with {@link LuaCustomTable#length LuaCustomTable::length_operator} instead.
32
- * @see {@link https://lua-api.factorio.com/2.0.28/auxiliary/libraries.html#new-functions Online documentation}
32
+ * @see {@link https://lua-api.factorio.com/2.0.29/auxiliary/libraries.html#new-functions Online documentation}
33
33
  */
34
34
  function table_size(table: table): uint
35
35
  }
@@ -16,42 +16,42 @@ import type {
16
16
  declare global {
17
17
  /**
18
18
  * Allows registration of custom commands for the in-game console.
19
- * @see {@link https://lua-api.factorio.com/2.0.28/index-runtime.html Online documentation}
19
+ * @see {@link https://lua-api.factorio.com/2.0.29/index-runtime.html Online documentation}
20
20
  */
21
21
  const commands: LuaCommandProcessor
22
22
  /**
23
23
  * The main scripting interface through which most of the API is accessed.
24
- * @see {@link https://lua-api.factorio.com/2.0.28/index-runtime.html Online documentation}
24
+ * @see {@link https://lua-api.factorio.com/2.0.29/index-runtime.html Online documentation}
25
25
  */
26
26
  const game: LuaGameScript
27
27
  /**
28
28
  * Provides access to various helper and utility functions.
29
- * @see {@link https://lua-api.factorio.com/2.0.28/index-runtime.html Online documentation}
29
+ * @see {@link https://lua-api.factorio.com/2.0.29/index-runtime.html Online documentation}
30
30
  */
31
31
  const helpers: LuaHelpers
32
32
  /**
33
33
  * Allows read-only access to prototypes.
34
- * @see {@link https://lua-api.factorio.com/2.0.28/index-runtime.html Online documentation}
34
+ * @see {@link https://lua-api.factorio.com/2.0.29/index-runtime.html Online documentation}
35
35
  */
36
36
  const prototypes: LuaPrototypes
37
37
  /**
38
38
  * Allows printing messages to the calling RCON instance, if any.
39
- * @see {@link https://lua-api.factorio.com/2.0.28/index-runtime.html Online documentation}
39
+ * @see {@link https://lua-api.factorio.com/2.0.29/index-runtime.html Online documentation}
40
40
  */
41
41
  const rcon: LuaRCON
42
42
  /**
43
43
  * Allows registration and use of functions to communicate between mods.
44
- * @see {@link https://lua-api.factorio.com/2.0.28/index-runtime.html Online documentation}
44
+ * @see {@link https://lua-api.factorio.com/2.0.29/index-runtime.html Online documentation}
45
45
  */
46
46
  const remote: LuaRemote
47
47
  /**
48
48
  * Allows rendering of geometric shapes, text and sprites in the game world.
49
- * @see {@link https://lua-api.factorio.com/2.0.28/index-runtime.html Online documentation}
49
+ * @see {@link https://lua-api.factorio.com/2.0.29/index-runtime.html Online documentation}
50
50
  */
51
51
  const rendering: LuaRendering
52
52
  /**
53
53
  * Provides an interface for registering game event handlers.
54
- * @see {@link https://lua-api.factorio.com/2.0.28/index-runtime.html Online documentation}
54
+ * @see {@link https://lua-api.factorio.com/2.0.29/index-runtime.html Online documentation}
55
55
  */
56
56
  const script: LuaBootstrap
57
57
  //The "settings" global is declared in common/settings-global.d.ts; its runtime type is handled below.
@@ -1,11 +1,11 @@
1
- // This file declares globals for the factorio runtime stage.
2
-
3
- /// <reference path="../index.d.ts" />
4
- /// <reference path="./generated/global-objects.d.ts" />
5
- /// <reference path="../common/settings-global.d.ts" />
6
-
7
- /** @noResolution */
8
- declare module "factorio:common" {
9
- import { LuaSettings } from "factorio:runtime"
10
- export interface SettingsGlobal extends LuaSettings {}
11
- }
1
+ // This file declares globals for the factorio runtime stage.
2
+
3
+ /// <reference path="../index.d.ts" />
4
+ /// <reference path="./generated/global-objects.d.ts" />
5
+ /// <reference path="../common/settings-global.d.ts" />
6
+
7
+ /** @noResolution */
8
+ declare module "factorio:common" {
9
+ import { LuaSettings } from "factorio:runtime"
10
+ export interface SettingsGlobal extends LuaSettings {}
11
+ }
@@ -1,12 +1,12 @@
1
- /** @noSelfInFile */
2
- import { LuaCustomTable } from "factorio:runtime"
3
-
4
- declare global {
5
- /** **Note**: you can also iterate on a LuaCustomTable directly without using `pairs`, e.g. `for(const [k, v] of table)`. */
6
- function pairs<T extends LuaCustomTable<any, any>>(
7
- table: T,
8
- ): LuaIterable<LuaMultiReturn<T extends Iterable<infer E> ? E : never>>
9
-
10
- /** @deprecated {@link LuaCustomTable} cannot be iterated with `ipairs`; Use {@link pairs} instead. */
11
- function ipairs(table: LuaCustomTable<any, any>): never
12
- }
1
+ /** @noSelfInFile */
2
+ import { LuaCustomTable } from "factorio:runtime"
3
+
4
+ declare global {
5
+ /** **Note**: you can also iterate on a LuaCustomTable directly without using `pairs`, e.g. `for(const [k, v] of table)`. */
6
+ function pairs<T extends LuaCustomTable<any, any>>(
7
+ table: T,
8
+ ): LuaIterable<LuaMultiReturn<T extends Iterable<infer E> ? E : never>>
9
+
10
+ /** @deprecated {@link LuaCustomTable} cannot be iterated with `ipairs`; Use {@link pairs} instead. */
11
+ function ipairs(table: LuaCustomTable<any, any>): never
12
+ }
@@ -1,10 +1,10 @@
1
- // This file declares globals for the factorio settings stage.
2
-
3
- /// <reference path="../index.d.ts" />
4
- /// <reference path="../common/data-global.d.ts" />
5
-
6
- /** @noResolution */
7
- declare module "factorio:common" {
8
- import { PrototypeMap } from "factorio:settings"
9
- export interface GlobalPrototypeMap extends PrototypeMap {}
10
- }
1
+ // This file declares globals for the factorio settings stage.
2
+
3
+ /// <reference path="../index.d.ts" />
4
+ /// <reference path="../common/data-global.d.ts" />
5
+
6
+ /** @noResolution */
7
+ declare module "factorio:common" {
8
+ import { PrototypeMap } from "factorio:settings"
9
+ export interface GlobalPrototypeMap extends PrototypeMap {}
10
+ }
@@ -1,118 +1,118 @@
1
- // Based off of https://wiki.factorio.com/Tutorial:Mod_settings
2
-
3
- /** @noResolution */
4
- declare module "factorio:settings" {
5
- import { Color, LocalisedString } from "factorio:prototype"
6
- export type SettingType = "bool-setting" | "int-setting" | "double-setting" | "string-setting" | "color-setting"
7
-
8
- export interface BaseSettingDefinition {
9
- readonly type: SettingType
10
- /**
11
- * The name of the settings prototype should be unique to avoid mod conflicts since the mod settings are global across
12
- * all mods. Because of that it is recommended to prefix mod settings with your mod name,
13
- */
14
- name: string
15
- localised_name?: LocalisedString
16
- localised_description?: LocalisedString
17
- /**
18
- * The order property can be used to change how the mod settings are ordered in the settings gui. Mod settings are sorted
19
- *
20
- * - First by mod
21
- * - Then by the setting "order" string
22
- * - Then finally by the setting name.
23
- */
24
- order?: string
25
- /**
26
- * The hidden property can be used to hide mod settings from GUIs, so that they cannot be seen or changed by players.
27
- * However, other mods can still access hidden settings. {@link https://forums.factorio.com/83316}
28
- */
29
- hidden?: boolean
30
- /**
31
- * There are the overall kinds of settings:
32
- *
33
- * - **startup**: This kind of setting is available in the prototype stage, and can not be changed runtime. They have to
34
- * be set to the same values for all players on a server.
35
- * - **runtime-global**: This kind of setting is global to an entire save game and can be changed runtime. On servers,
36
- * only admins can change these settings.
37
- * - **runtime-per-user**: This kind of setting is only available runtime in the control.lua stage and each player has
38
- * their own instance of this setting. When a player joins a server their local setting of "keep mod settings per
39
- * save" determines if the local settings they have set are synced to the loaded save or if the save's settings are used.
40
- *
41
- * This "setting_type" also determines in which tab the setting is showed in the mod settings menu.
42
- */
43
- setting_type: "startup" | "runtime-global" | "runtime-per-user"
44
- }
45
- /** A true/false checkbox */
46
- export interface BoolSettingDefinition extends BaseSettingDefinition {
47
- readonly type: "bool-setting"
48
- /** Defines the default value of the setting, in this case whether the checkbox is checked or not. */
49
- default_value: boolean
50
- /**
51
- * Only loaded if `hidden = true`. This forces the setting to be of this value. This can be useful for mod
52
- * compatibility. {@link https://forums.factorio.com/viewtopic.php?p=531322#p531322}
53
- */
54
- forced_value?: boolean
55
- }
56
- /** A signed 64 bit integer textfield (or selection dropdown) */
57
- export interface IntSettingDefinition extends BaseSettingDefinition {
58
- readonly type: "int-setting"
59
- /** Defines the default value of the setting. */
60
- default_value: number
61
- /** Defines the lowest possible number. */
62
- minimum_value?: number
63
- /** Defines the highest possible number. */
64
- maximum_value?: number
65
- /**
66
- * Makes it possible to force the player to choose between the defined numbers, creates a dropdown instead of a
67
- * textfield. If only one allowed value is given, the settings is forced to be of that value.
68
- */
69
- allowed_values?: number[]
70
- }
71
- /** A double precision floating point textfield (or selection dropdown) */
72
- export interface DoubleSettingDefinition extends BaseSettingDefinition {
73
- readonly type: "double-setting"
74
- /** Defines the default value of the setting. */
75
- default_value: number
76
- /** Defines the lowest possible number. */
77
- minimum_value?: number
78
- /** Defines the highest possible number. */
79
- maximum_value?: number
80
- /**
81
- * Makes it possible to force the player to choose between the defined numbers, creates a dropdown instead of a
82
- * textfield. If only one allowed value is given, the settings is forced to be of that value.
83
- */
84
- allowed_values?: number[]
85
- }
86
- /** A string textfield (or selection dropdown) */
87
- export interface StringSettingDefinition extends BaseSettingDefinition {
88
- readonly type: "string-setting"
89
- /** Defines the default value of the setting. */
90
- default_value: string
91
- /** Defines whether it's possible for the user to set the textfield to empty and apply the setting. */
92
- allow_blank?: boolean
93
- /** Whether values that are input by the user should have whitespace removed from both ends of the string. */
94
- auto_trim?: boolean
95
- /**
96
- * Makes it possible to force the player to choose between the defined strings, creates a dropdown instead of a
97
- * textfield. The strings in the dropdown can be localized (translated) and can have a tooltip, see below. If only one
98
- * allowed value is given, the settings is forced to be of that value.
99
- */
100
- allowed_values?: string[]
101
- }
102
- /** a color picker (sliders), with whole number textfields. Includes alpha. */
103
- export interface ColorSettingDefinition extends BaseSettingDefinition {
104
- readonly type: "color-setting"
105
- /** Defines the default value of the setting. */
106
- default_value: Color
107
- }
108
-
109
- export interface PrototypeMap {
110
- "bool-setting": BoolSettingDefinition
111
- "int-setting": IntSettingDefinition
112
- "double-setting": DoubleSettingDefinition
113
- "string-setting": StringSettingDefinition
114
- "color-setting": ColorSettingDefinition
115
- }
116
-
117
- export type SettingsPrototypeMap = PrototypeMap
118
- }
1
+ // Based off of https://wiki.factorio.com/Tutorial:Mod_settings
2
+
3
+ /** @noResolution */
4
+ declare module "factorio:settings" {
5
+ import { Color, LocalisedString } from "factorio:prototype"
6
+ export type SettingType = "bool-setting" | "int-setting" | "double-setting" | "string-setting" | "color-setting"
7
+
8
+ export interface BaseSettingDefinition {
9
+ readonly type: SettingType
10
+ /**
11
+ * The name of the settings prototype should be unique to avoid mod conflicts since the mod settings are global across
12
+ * all mods. Because of that it is recommended to prefix mod settings with your mod name,
13
+ */
14
+ name: string
15
+ localised_name?: LocalisedString
16
+ localised_description?: LocalisedString
17
+ /**
18
+ * The order property can be used to change how the mod settings are ordered in the settings gui. Mod settings are sorted
19
+ *
20
+ * - First by mod
21
+ * - Then by the setting "order" string
22
+ * - Then finally by the setting name.
23
+ */
24
+ order?: string
25
+ /**
26
+ * The hidden property can be used to hide mod settings from GUIs, so that they cannot be seen or changed by players.
27
+ * However, other mods can still access hidden settings. {@link https://forums.factorio.com/83316}
28
+ */
29
+ hidden?: boolean
30
+ /**
31
+ * There are the overall kinds of settings:
32
+ *
33
+ * - **startup**: This kind of setting is available in the prototype stage, and can not be changed runtime. They have to
34
+ * be set to the same values for all players on a server.
35
+ * - **runtime-global**: This kind of setting is global to an entire save game and can be changed runtime. On servers,
36
+ * only admins can change these settings.
37
+ * - **runtime-per-user**: This kind of setting is only available runtime in the control.lua stage and each player has
38
+ * their own instance of this setting. When a player joins a server their local setting of "keep mod settings per
39
+ * save" determines if the local settings they have set are synced to the loaded save or if the save's settings are used.
40
+ *
41
+ * This "setting_type" also determines in which tab the setting is showed in the mod settings menu.
42
+ */
43
+ setting_type: "startup" | "runtime-global" | "runtime-per-user"
44
+ }
45
+ /** A true/false checkbox */
46
+ export interface BoolSettingDefinition extends BaseSettingDefinition {
47
+ readonly type: "bool-setting"
48
+ /** Defines the default value of the setting, in this case whether the checkbox is checked or not. */
49
+ default_value: boolean
50
+ /**
51
+ * Only loaded if `hidden = true`. This forces the setting to be of this value. This can be useful for mod
52
+ * compatibility. {@link https://forums.factorio.com/viewtopic.php?p=531322#p531322}
53
+ */
54
+ forced_value?: boolean
55
+ }
56
+ /** A signed 64 bit integer textfield (or selection dropdown) */
57
+ export interface IntSettingDefinition extends BaseSettingDefinition {
58
+ readonly type: "int-setting"
59
+ /** Defines the default value of the setting. */
60
+ default_value: number
61
+ /** Defines the lowest possible number. */
62
+ minimum_value?: number
63
+ /** Defines the highest possible number. */
64
+ maximum_value?: number
65
+ /**
66
+ * Makes it possible to force the player to choose between the defined numbers, creates a dropdown instead of a
67
+ * textfield. If only one allowed value is given, the settings is forced to be of that value.
68
+ */
69
+ allowed_values?: number[]
70
+ }
71
+ /** A double precision floating point textfield (or selection dropdown) */
72
+ export interface DoubleSettingDefinition extends BaseSettingDefinition {
73
+ readonly type: "double-setting"
74
+ /** Defines the default value of the setting. */
75
+ default_value: number
76
+ /** Defines the lowest possible number. */
77
+ minimum_value?: number
78
+ /** Defines the highest possible number. */
79
+ maximum_value?: number
80
+ /**
81
+ * Makes it possible to force the player to choose between the defined numbers, creates a dropdown instead of a
82
+ * textfield. If only one allowed value is given, the settings is forced to be of that value.
83
+ */
84
+ allowed_values?: number[]
85
+ }
86
+ /** A string textfield (or selection dropdown) */
87
+ export interface StringSettingDefinition extends BaseSettingDefinition {
88
+ readonly type: "string-setting"
89
+ /** Defines the default value of the setting. */
90
+ default_value: string
91
+ /** Defines whether it's possible for the user to set the textfield to empty and apply the setting. */
92
+ allow_blank?: boolean
93
+ /** Whether values that are input by the user should have whitespace removed from both ends of the string. */
94
+ auto_trim?: boolean
95
+ /**
96
+ * Makes it possible to force the player to choose between the defined strings, creates a dropdown instead of a
97
+ * textfield. The strings in the dropdown can be localized (translated) and can have a tooltip, see below. If only one
98
+ * allowed value is given, the settings is forced to be of that value.
99
+ */
100
+ allowed_values?: string[]
101
+ }
102
+ /** a color picker (sliders), with whole number textfields. Includes alpha. */
103
+ export interface ColorSettingDefinition extends BaseSettingDefinition {
104
+ readonly type: "color-setting"
105
+ /** Defines the default value of the setting. */
106
+ default_value: Color
107
+ }
108
+
109
+ export interface PrototypeMap {
110
+ "bool-setting": BoolSettingDefinition
111
+ "int-setting": IntSettingDefinition
112
+ "double-setting": DoubleSettingDefinition
113
+ "string-setting": StringSettingDefinition
114
+ "color-setting": ColorSettingDefinition
115
+ }
116
+
117
+ export type SettingsPrototypeMap = PrototypeMap
118
+ }