blueprintable¶
Contains the Blueprintable class, an abstract class that implements a number of common properties and methods shared across all blueprintable objects.
More specifically, a “Blueprintable” object is a JSON dict that can be parsed as a blueprint string by Factorio.
- class Blueprintable(
- label='',
- label_color=None,
- description='',
- icons=NOTHING,
- version=NOTHING,
- index: ~typing.Annotated[int,
- <draftsman.validators._AndValidator object at 0x7e1ce9d4e8c0>] | None = None,
- *,
- extra_keys: dict[str,
- ~typing.Any] | None = None,
Bases:
ExportableAn abstract base class representing “blueprint-like” objects, such as
Blueprint,DeconstructionPlanner,UpgradePlanner, andBlueprintBook.- description : str¶
Serialized
This attribute is imported/exported from blueprint strings.
The description of the blueprintable. Visible when hovering over it when inside someone’s inventory. Has a maximum size of 500 bytes.
- extra_keys : dict[str, Any] | None¶
Serialized
This attribute is imported/exported from blueprint strings.
Any additional keys that are not recognized by Draftsman when loading from a raw JSON dictionary end up as keys in this attribute. Under normal circumstances, this field should always remain
None, indicating that all fields provided were properly translated into the internal Python format.If there are any values in
extra_keysafter being imported from a raw JSON dictionary, then (left alone) these values will also be exported back into an output JSON dictionary in order to keep import-export cycles stable. A side effect of this is that users can use this attribute to add additional fields that will end up in the output string, primarily for custom metadata that can be read by other tools:>>> input_dict = { ... "name": "wooden-chest", ... "position": {"x": 0.5, "y": 0.5}, ... "unknown_key": "blah" ... } >>> container = Container.from_dict(input_dict) >>> container.extra_keys {"unknown_key": "blah"} >>> container.extra_keys["custom"] = "data" >>> container.to_dict() { "name": "wooden-chest", "position": {"x": 0.5, "y": 0.5}, "unknown_key": "blah", "custom": "data" }The structure of input keys are preserved, meaning you may have to recurse through keys to find the unknown data:
>>> input_dict = { ... "name": "wooden-chest", ... "position": {"x": 0.5, "y": 0.5}, ... "nested": { ... "dictionary": "value" ... } ... } >>> container = Container.from_dict(input_dict) >>> container.extra_keys {"nested": {"dictionary": "value"}}Note
While Draftsman makes an effort to preserve keys that it doesn’t recognize, Factorio itself makes no such effort - so if you create a blueprint string with custom metadata and then import it into the game, that additional data will be stripped and cannot be retrieved when exporting a new string from the game.
- icons : list[Icon]¶
Serialized
This attribute is imported/exported from blueprint strings.
The visible icons of the blueprintable, as shown in the icon in Factorio’s GUI. A max of 4
Icons are permitted.Icons can also be specified more succinctly as a simple list of signal names:
>>> from draftsman.blueprintable import Blueprint >>> blueprint = Blueprint() >>> blueprint.icons = ["transport-belt"] >>> blueprint.icons [Icon(index=0, signal=SignalID(name='transport-belt', type='item', quality='normal'))]
- index : _AndValidator object at 0x7e1ce9d4e8c0>] | None¶
Serialized
This attribute is imported/exported from blueprint strings.
The location of the blueprintable in a parent
BlueprintBook. This member is automatically generated if omitted, but can be manually set with this attribute. This attribute has no meaning when the blueprintable is not located inside another blueprint book.
- abstract property item : str¶
Serialized
This attribute is imported/exported from blueprint strings.
Always the name of the corresponding Factorio item to this blueprintable instance. Read only.
- Example:
>>> from draftsman.blueprintable import ( ... Blueprint, DeconstructionPlanner, UpgradePlanner, BlueprintBook ... ) >>> Blueprint().item 'blueprint' >>> DeconstructionPlanner().item 'deconstruction-planner' >>> UpgradePlanner().item 'upgrade-planner' >>> BlueprintBook().item 'blueprint-book'
- label : str¶
Serialized
This attribute is imported/exported from blueprint strings.
The user given name (title) of the blueprintable.
- label_color : Color | None¶
Serialized
This attribute is imported/exported from blueprint strings.
The
Colorof the Blueprint’s label.
- abstract property root_item : str¶
Serialized
This attribute is imported/exported from blueprint strings.
The “root” key of this Blueprintable’s dictionary form. For example, blueprints have the
root_itemkey “blueprint”:{ "blueprint": { # <- this is the "root_item" ... } }All keys (except for
index) are contained within this sub- dictionary.
- version : _AndValidator object at 0x7e1ce9d4cbe0>]¶
Serialized
This attribute is imported/exported from blueprint strings.
The version of Factorio the Blueprint was created in.
The Blueprint
versionis a 64-bit integer, which is a bitwise-OR of four 16-bit numbers. You can interpret this number more clearly by decoding it withdraftsman.utils.decode_version(), or you can use the functionsversion_tuple()orversion_string()which will give you a more readable output. This version number defaults to the version of Factorio of Draftsman’s environment.The version can be set either a 64-bit int in the format above, or as a sequence of ints (usually a list or tuple) which is then encoded into the combined representation. The sequence is defined as:
[major_version, minor_version, patch, development_release]withpatchanddevelopment_releasedefaulting to 0.- Example:
>>> from draftsman.blueprintable import Blueprint >>> blueprint = Blueprint() >>> blueprint.version = (1, 0) # version 1.0.0.0 >>> assert blueprint.version == 281474976710656 >>> assert blueprint.version_tuple() == (1, 0, 0, 0) >>> assert blueprint.version_string() == "1.0.0.0"
- classmethod from_dict( ) Self¶
Attempts to construct a new instance of this class from a Python dictionary in JSON format.
- Parameters:
- d: dict¶
The dictionary to interpret.
- version: tuple[int, ...] | None =
None¶ The Factorio version that the input data is compliant with.
The given version tuple will automatically attempt to grab the closest applicable converter - meaning that specifying a version of
(1, 1, 96)will use the 1.0 converter, and a version of(2, 0, 32)will use the 2.0 converter.If no version is provided, it will default to current environment’s Factorio version, or to
draftsman.DEFAULT_FACTORIO_VERSIONif unable to read the current environment.
- classmethod from_string(string: str)¶
Creates a
Blueprintablewith the contents ofstring.Raises
UnknownKeywordWarningif there are any unrecognized keywords in the blueprint string for this particular blueprintable.- Parameters:
- string: str¶
The Factorio-encoded blueprint string to decode.
- Raises:
MalformedBlueprintStringError – If the input string is not decodable to a JSON object.
IncorrectBlueprintTypeError – If the input string is of a different type than the base class, such as trying to load the string of an upgrade planner into a
Blueprintobject.
- to_dict(
- version: tuple[int, ...] | None =
None, - exclude_none: bool =
True, - exclude_defaults: bool =
True, Export this object to a JSON dictionary, usually directly prior to encoding into the compressed blueprint string format.
- Parameters:
- version: tuple[int, ...] | None =
None¶ Which Factorio version format this entity should be exported with. The same Draftsman object can be converted to many version-specific output dictionaries, each of which may have different structures.
The given version tuple will automatically attempt to grab the closest applicable converter - meaning that specifying a version of
(1, 1, 96)will use the 1.0 converter, and a version of(2, 0, 32)will use the 2.0 converter.If no version is provided, it will default to current environment’s Factorio version, or to
draftsman.DEFAULT_FACTORIO_VERSIONif unable to read the current environment.- exclude_none: bool =
True¶ Whether or not
Noneproperties should be omitted from the output string. For certain properties this option has no effect, as they either must always be present or never be present ifNone.- exclude_defaults: bool =
True¶ Whether or not to exclude properties that are equivalent to their default values. Including these values in the generated output is redundant as Factorio will populate them automatically, but it is useful to disable for debug/illustation purposes.
- version: tuple[int, ...] | None =
-
to_string(version: tuple[int] | None =
None) str¶ Returns this object as an encoded Factorio blueprint string.
- Returns:
The zlib-compressed, base-64 encoded string.
- Example:
>>> from draftsman.blueprintable import ( ... Blueprint, DeconstructionPlanner, UpgradePlanner, BlueprintBook ... ) >>> Blueprint(version=(1, 0)).to_string() '0eNqrVkrKKU0tKMrMK1GyqlbKLEnNVbJCEtNRKkstKs7Mz1OyMrIwNDE3sTQ3Mzc0MDM1q60FAHmVE1M=' >>> DeconstructionPlanner(version=(1, 0)).to_string() '0eNqrVkpJTc7PKy4pKk0uyczPiy/ISczLSy1SsqpWyixJzVWyQlOgC1Ogo1SWWlQMFFGyMrIwNDE3sTQ3Mzc0MDM1q60FAHp9Hf0=' >>> UpgradePlanner(version=(1, 0)).to_string() '0eNqrViotSC9KTEmNL8hJzMtLLVKyqlbKLEnNVbKCyejCZHSUylKLijPz85SsjCwMTcxNLM3NzA0NzEzNamsBqdIX5Q==' >>> BlueprintBook(version=(1, 0)).to_string() '0eNqrVkrKKU0tKMrMK4lPys/PVrKqVsosSc1VskJI6IIldJTKUouKM/PzlKyMLAxNzE0szc3MDQ3MTM10lBKTSzLLUuMz81JSK5SsDGprATINHQI='
- validate(
- mode: ValidationMode =
ValidationMode.STRICT, Validates the called object against it’s known format.
- Example:
>>> import draftsman >>> from draftsman.constants import ValidationMode >>> from draftsman.entity import Container >>> from draftsman.error import DataFormatError >>> c = Container("wooden-chest") >>> with draftsman.validators.set_mode(ValidationMode.DISABLED): ... c.bar = "incorrect" >>> try: ... c.validate().reissue_all() ... except DataFormatError as e: ... print("wrong!") wrong!- Parameters:
- mode: ValidationMode =
ValidationMode.STRICT¶ How strict to be when valiating the object, corresponding to the number and type of errors and warnings returned.
- mode: ValidationMode =
- Returns:
A
ValidationResultobject, which contains all errors and warnings from the validation pass.
- version_string() str¶
Returns the version of the
Blueprintablein human-readable string.- Returns:
a
strof 4 version numbers joined by a ‘.’ character.- Example:
>>> from draftsman.blueprintable import Blueprint >>> blueprint = Blueprint(version=(1, 2, 3)) >>> blueprint.version_string() '1.2.3.0'
- version_tuple() tuple[~typing.Annotated[int, <draftsman.validators._AndValidator object at 0x7e1ce9d4e8c0>], ~typing.Annotated[int, <draftsman.validators._AndValidator object at 0x7e1ce9d4e8c0>], ~typing.Annotated[int, <draftsman.validators._AndValidator object at 0x7e1ce9d4e8c0>], ~typing.Annotated[int, <draftsman.validators._AndValidator object at 0x7e1ce9d4e8c0>]]¶
Returns the version of the
Blueprintableas a 4-length tuple.- Returns:
A 4 length tuple in the format
(major, minor, patch, dev_ver).- Example:
>>> from draftsman.blueprintable import Blueprint >>> blueprint = Blueprint(version=281474976710656) >>> blueprint.version_tuple() (1, 0, 0, 0)