factorio-draftsman 2.0.0__tar.gz → 2.0.1__tar.gz
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.
- {factorio_draftsman-2.0.0/factorio_draftsman.egg-info → factorio_draftsman-2.0.1}/PKG-INFO +10 -2
- factorio_draftsman-2.0.1/draftsman/_factorio_version.py +4 -0
- factorio_draftsman-2.0.1/draftsman/_version.py +4 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/collection.py +17 -11
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/entity.py +70 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/exportable.py +2 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/artillery_auto_target.py +50 -50
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_condition.py +1 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_enable.py +1 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/control_behavior.py +5 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/filters.py +47 -8
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/inventory.py +44 -17
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/inventory_filter.py +15 -7
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/request_filters.py +38 -20
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/stack_size.py +1 -0
- factorio_draftsman-2.0.1/draftsman/data/entities.pkl +0 -0
- factorio_draftsman-2.0.1/draftsman/data/fluids.pkl +0 -0
- factorio_draftsman-2.0.1/draftsman/data/instruments.pkl +0 -0
- factorio_draftsman-2.0.1/draftsman/data/items.pkl +0 -0
- factorio_draftsman-2.0.1/draftsman/data/mods.pkl +0 -0
- factorio_draftsman-2.0.1/draftsman/data/modules.pkl +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/modules.py +0 -2
- factorio_draftsman-2.0.1/draftsman/data/planets.pkl +0 -0
- factorio_draftsman-2.0.1/draftsman/data/planets.py +38 -0
- factorio_draftsman-2.0.1/draftsman/data/recipes.pkl +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/recipes.py +10 -11
- factorio_draftsman-2.0.1/draftsman/data/signals.pkl +0 -0
- factorio_draftsman-2.0.1/draftsman/data/tiles.pkl +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/environment/mod_list.py +18 -6
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/environment/script.py +3 -2
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/data-updates.lua +2 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/info.json +1 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/achievements.lua +2 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/decorative/decoratives.lua +36 -24
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/atomic-bomb.lua +0 -6
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/beams.lua +3 -3
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/biter-animations.lua +0 -13
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/circuit-network.lua +11 -14
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/crash-site.lua +16 -4
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/enemies.lua +4 -4
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/enemy-projectiles.lua +2 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/entities.lua +180 -92
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/explosion-animations.lua +3 -2
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/fire.lua +3 -3
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/flying-robots.lua +0 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/mining-drill.lua +4 -5
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/projectiles.lua +2 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/resources.lua +13 -43
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/sounds.lua +103 -68
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/spitter-animations.lua +1 -14
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/trains.lua +32 -14
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/transport-belts.lua +6 -9
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/turrets.lua +6 -6
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/worm-animations.lua +16 -12
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/item-groups.lua +25 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/item.lua +53 -31
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/planet/planet.lua +3 -3
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/recipe.lua +10 -0
- factorio_draftsman-2.0.1/draftsman/factorio-data/base/prototypes/signal.lua +1079 -0
- factorio_draftsman-2.0.1/draftsman/factorio-data/base/prototypes/tile/tile-sounds.lua +237 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tile/tiles.lua +65 -224
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/changelog.txt +560 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/backers.json +1 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/circuit-connector-generated-definitions.lua +51 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/circuit-connector-sprites.lua +1 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/collision-mask-defaults.lua +4 -0
- factorio_draftsman-2.0.1/draftsman/factorio-data/core/lualib/sound-util.lua +71 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/util.lua +52 -14
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/style.lua +78 -4
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/utility-constants.lua +12 -5
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/utility-sounds.lua +14 -21
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/utility-sprites.lua +10 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/info.json +1 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/sloped-trains-updates.lua +5 -2
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/data-updates.lua +11 -6
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/data.lua +2 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/info.json +1 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/entity/entity.lua +18 -9
- factorio_draftsman-2.0.1/draftsman/factorio-data/quality/prototypes/entity/explosions.lua +93 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/entity/recycler-pictures.lua +20 -20
- factorio_draftsman-2.0.1/draftsman/factorio-data/quality/prototypes/entity/remnants.lua +76 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/recycling.lua +7 -2
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/base-data-updates.lua +44 -59
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/info.json +1 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/achievements.lua +4 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-aquilo.lua +6 -7
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-fulgora.lua +11 -9
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-gleba.lua +66 -52
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-vulcanus.lua +25 -31
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/beams.lua +2 -2
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/big-mining-drill.lua +4 -5
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/enemies.lua +26 -15
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/entities.lua +124 -99
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/explosion-animations.lua +7 -7
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/explosions.lua +185 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/plants.lua +1 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/remnants.lua +70 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/resources.lua +10 -10
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/sounds.lua +133 -66
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/transport-belts.lua +3 -4
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/trees.lua +3 -3
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/turrets.lua +8 -7
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/item-effects.lua +6 -3
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/item-groups.lua +13 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/item.lua +5 -3
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/particles.lua +6 -6
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-b.lua +1 -2
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-aquilo.lua +7 -7
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-fulgora.lua +7 -7
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-gleba.lua +7 -7
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-vulcanus.lua +7 -7
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/procession.lua +6 -6
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/recipe.lua +30 -30
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/surface.lua +1 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/technology.lua +2 -2
- factorio_draftsman-2.0.1/draftsman/factorio-data/space-age/prototypes/tile/tile-sounds.lua +344 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/tiles-aquilo.lua +27 -56
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/tiles-fulgora.lua +28 -110
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/tiles-gleba.lua +109 -338
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/tiles-vulcanus.lua +42 -122
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/tiles.lua +6 -26
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tips-and-tricks.lua +8 -104
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/asteroid_collector.py +18 -11
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/beacon.py +1 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/constant_combinator.py +6 -115
- factorio_draftsman-2.0.1/draftsman/prototypes/inserter.py +293 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/legacy_curved_rail.py +12 -12
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/legacy_straight_rail.py +8 -8
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/logistic_active_container.py +21 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/logistic_buffer_container.py +10 -4
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/logistic_passive_container.py +24 -2
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/logistic_request_container.py +25 -43
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/logistic_storage_container.py +20 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/straight_rail.py +8 -8
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/signatures.py +144 -4
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/utils.py +30 -6
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1/factorio_draftsman.egg-info}/PKG-INFO +10 -2
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/factorio_draftsman.egg-info/SOURCES.txt +2 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_blueprint.py +0 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_entity.py +30 -1
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_utils.py +1 -1
- factorio_draftsman-2.0.1/test/test_version.py +9 -0
- factorio_draftsman-2.0.0/draftsman/_factorio_version.py +0 -4
- factorio_draftsman-2.0.0/draftsman/_version.py +0 -4
- factorio_draftsman-2.0.0/draftsman/data/entities.pkl +0 -0
- factorio_draftsman-2.0.0/draftsman/data/fluids.pkl +0 -0
- factorio_draftsman-2.0.0/draftsman/data/instruments.pkl +0 -0
- factorio_draftsman-2.0.0/draftsman/data/items.pkl +0 -0
- factorio_draftsman-2.0.0/draftsman/data/mods.pkl +0 -0
- factorio_draftsman-2.0.0/draftsman/data/modules.pkl +0 -0
- factorio_draftsman-2.0.0/draftsman/data/planets.pkl +0 -0
- factorio_draftsman-2.0.0/draftsman/data/planets.py +0 -20
- factorio_draftsman-2.0.0/draftsman/data/recipes.pkl +0 -0
- factorio_draftsman-2.0.0/draftsman/data/signals.pkl +0 -0
- factorio_draftsman-2.0.0/draftsman/data/tiles.pkl +0 -0
- factorio_draftsman-2.0.0/draftsman/factorio-data/base/prototypes/signal.lua +0 -546
- factorio_draftsman-2.0.0/draftsman/factorio-data/base/prototypes/tile/tile-sounds.lua +0 -6
- factorio_draftsman-2.0.0/draftsman/factorio-data/core/lualib/sound-util.lua +0 -30
- factorio_draftsman-2.0.0/draftsman/factorio-data/space-age/prototypes/tile/tile-sounds.lua +0 -18
- factorio_draftsman-2.0.0/draftsman/prototypes/inserter.py +0 -105
- factorio_draftsman-2.0.0/test/test_version.py +0 -9
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/LICENSE +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/Lib/site-packages/numpy/core/tests/data/astype_copy.pkl +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/MANIFEST.in +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/README.md +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/__init__.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/blueprintable.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/__init__.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/association.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/blueprint.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/blueprint_book.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/blueprintable.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/collision_set.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/deconstruction_planner.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/entity_like.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/entity_list.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/group.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/__init__.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/burner_energy_source.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_connectable.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_read_contents.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_read_hand.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_read_resource.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_set_filters.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/color.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/consumes_ammo.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/directional.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/double_grid_aligned.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/eight_way_directional.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/equipment_grid.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/input_ingredients.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/io_type.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/logistic_condition.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/mode_of_operation.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/modules.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/orientation.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/player_description.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/power_connectable.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/read_ammo.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/read_rail_signal.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/recipe.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/request_items.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/target_priorities.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/vehicle.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/rail_planner.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/schedule.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/schedule_list.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/spatial_data_structure.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/spatial_hashmap.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/spatial_like.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/tile.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/tile_list.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/train_configuration.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/transformable.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/upgrade_planner.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/vector.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/compatibility/defines.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/compatibility/interface.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/compatibility/serpent.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/compatibility/settings.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/constants.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/__init__.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/entities.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/fluids.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/instruments.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/items.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/mods.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/signals.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/tiles.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/entity.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/env.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/environment/__init__.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/environment/mod_settings.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/environment/update.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/error.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/extras.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/.git +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/README.md +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/data.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/1.1.0.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/1.2.0 stack inserter rename.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/2.0.0-biter-egg.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/2.0.0-internal.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/2.0.0-internal2.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/2.0.0-internal3.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/2.0.0.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/2.0.0.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/migrations.txt +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/ambient-sounds.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/autoplace-controls.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/categories/ammo-category.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/categories/equipment-category.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/categories/fuel-category.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/categories/module-category.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/categories/quality.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/categories/recipe-category.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/categories/resource-category.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/collision-layers.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/custom-inputs.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/damage-type.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/decorative/decorative-trigger-effects.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/demo.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/artillery-cannon-muzzle-flash-shifting.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/assemblerpipes.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/beacon-animations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/biter-ai-settings.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/biter-die-effects.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/cargo-hatch.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/cargo-pod-catalogue.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/character-animations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/combinator-pictures.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/enemy-autoplace-utils.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/enemy-constants.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/entity-util.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/explosions.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/factorio-logo.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/giga-cargo-hatch.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/hit-effects.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/laser-sounds.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/movement-triggers.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/pipecovers.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/pump-connector.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/rail-pictures.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/remnants.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/rocket-projectile-pictures.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/smoke-animations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/smoke.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/spawner-animation.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/spidertron-animations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/spidertron-light-positions.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/trees.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/equipment-grid.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/equipment.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/factoriopedia-simulations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/factoriopedia-util.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/fire-util.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/fluid.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/impact-deliver-category.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/item-tints.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/item_sounds.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/map-gen-presets.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/map-settings.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/noise-expressions.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/particle-animations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/particles.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/planet/planet-map-gen.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/planet/procession-audio-catalogue-types.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/planet/procession-graphic-catalogue-types.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/planet/procession-style.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/planet/procession.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/planet/surface-property.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/pollution.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/shortcuts.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/technology.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tile/tile-collision-masks.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tile/tile-graphics.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tile/tile-pollution-values.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tile/tile-trigger-effects.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tips-and-tricks-simulations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tips-and-tricks.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/trigger-target-types.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tutorials.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/utility-sprites.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/data.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/info.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/autoplace_utils.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/bonus-gui-ordering.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/collision-mask-util.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/crash-site.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/data-duplicate-checker.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/dataloader.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/event_handler.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/kill-score.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/math2d.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/math3d.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/meld.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/mod-gui.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/production-score.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/resource-autoplace.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/silo-script.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/space-finish-script.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/story.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/surface-render-parameter-effects.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/burner-usage.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/cursors.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/editor-controller.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/fonts.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/god-controller.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/noise-functions.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/noise-programs.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/parameters.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/remote-controller.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/spectator-controller.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/unknown.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/credits.txt +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/data.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/base-data-updates.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/entity/elevated-rail-pictures.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/entity/elevated-rails.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/entity/explosions.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/entity/remnants.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/item/elevated-rails.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/particles.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/recipe/elevated-rails.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/technology/elevated-rails.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/tips-and-tricks-simulations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/tips-and-tricks.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/map-gen-settings.example.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/map-settings.example.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/base-data-updates.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/item.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/module-category.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/quality.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/recipe.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/signal.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/technology.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/tips-and-tricks-simulations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/tips-and-tricks.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/server-settings.example.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/server-whitelist.example.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/data-updates.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/data.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/migrations/aquilo-tilesets.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/migrations/biolab.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/migrations/internal.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/migrations/jelly-yum-rename.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/migrations/shattered-planet.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/migrations/tungsten-belt-rename.json +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/active-triggers.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/ambient-sounds.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/autoplace-controls.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/burner-usage.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/categories/ammo-category.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/categories/fuel-category.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/categories/recipe-category.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/categories/resource-category.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/agricultural-tower-crane.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/asteroid-collector-pictures.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/asteroid.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/base-frozen-graphics.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/biochamber-pictures.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/cargo-hatch.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/cargo-pod-catalogue.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/circuit-network.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/crusher-pictures.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/cryogenic-plant-pictures.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/electromagnetic-plant-pictures.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/flying-robots.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/foundry-pictures.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/fusion-system-pictures.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/giga-cargo-hatch.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/gleba-ai-settings.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/gleba-enemy-animations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/lightning-collector-graphics.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/lightning-rod-graphics.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/mech-armor-animations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/projectiles.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/railgun-turret-pictures.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/smoke.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/space-enemy-autoplace-utils.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/space-platform-hub-cockpit.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/equipment-grid.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/equipment.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/factoriopedia-simulations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/fluid.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/item_sounds.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/particle-animations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/asteroid-spawn-definitions.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/general-functions.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/general-variables.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/audio-events.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/cloud-layers.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-a.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-i.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/rocket-layers.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/space-layers.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/audio-events.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/cloud-layers.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-a.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-b.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-i.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/space-layers.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/planet-aquilo-map-gen.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/planet-fulgora-map-gen.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/planet-gleba-map-gen.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/planet-map-gen.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/planet-vulcanus-map-gen.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/planet.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/procession-common.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/spores.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/platform-tile-animations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/tile-pollution-values.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/tile-trigger-effects.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tips-and-tricks-simulations.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/utility-sounds.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/utility-sprites.lua +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-mods/.gitignore +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/__init__.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/accumulator.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/agricultural_tower.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/ammo_turret.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/arithmetic_combinator.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/artillery_turret.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/artillery_wagon.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/assembling_machine.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/boiler.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/burner_generator.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/car.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/cargo_bay.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/cargo_landing_pad.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/cargo_wagon.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/container.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/curved_rail_a.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/curved_rail_b.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/decider_combinator.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/display_panel.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/electric_energy_interface.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/electric_pole.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/electric_turret.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/elevated_curved_rail_a.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/elevated_curved_rail_b.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/elevated_half_diagonal_rail.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/elevated_straight_rail.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/filter_inserter.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/fluid_turret.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/fluid_wagon.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/furnace.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/fusion_generator.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/fusion_reactor.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/gate.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/generator.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/half_diagonal_rail.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/heat_interface.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/heat_pipe.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/infinity_container.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/infinity_pipe.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/lab.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/lamp.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/land_mine.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/lightning_attractor.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/linked_belt.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/linked_container.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/loader.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/locomotive.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/mining_drill.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/offshore_pump.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/pipe.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/player_port.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/power_switch.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/programmable_speaker.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/pump.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/radar.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/rail_chain_signal.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/rail_ramp.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/rail_signal.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/rail_support.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/reactor.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/roboport.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/rocket_silo.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/selector_combinator.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/simple_entity_with_force.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/simple_entity_with_owner.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/solar_panel.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/space_platform_hub.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/spider_vehicle.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/splitter.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/storage_tank.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/thruster.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/train_stop.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/transport_belt.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/turret.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/underground_belt.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/underground_pipe.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/wall.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/rail.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/tile.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/types.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/warning.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/factorio_draftsman.egg-info/dependency_links.txt +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/factorio_draftsman.egg-info/entry_points.txt +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/factorio_draftsman.egg-info/requires.txt +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/factorio_draftsman.egg-info/top_level.txt +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/pyproject.toml +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/setup.cfg +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/setup.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_association.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_blueprint_book.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_blueprintable.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_collision_set.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_data.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_deconstruction_planner.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_entity_list.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_environment.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_examples.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_group.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_mixins.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_rail_planner.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_schedule.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_schedule_list.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_spatial_hash_map.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_tile.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_tile_list.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_train_configuration.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_upgrade_planner.py +0 -0
- {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_vector.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: factorio-draftsman
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: A complete, well-tested, and up-to-date module to manipulate Factorio blueprint strings. Compatible with mods.
|
|
5
5
|
Home-page: https://github.com/redruin1/factorio-draftsman
|
|
6
6
|
Author: redruin1
|
|
@@ -19,6 +19,14 @@ Requires-Dist: GitPython>=3.1.43
|
|
|
19
19
|
Requires-Dist: typing
|
|
20
20
|
Requires-Dist: typing_extensions; python_version < "3.8"
|
|
21
21
|
Requires-Dist: thefuzz
|
|
22
|
+
Dynamic: author
|
|
23
|
+
Dynamic: classifier
|
|
24
|
+
Dynamic: description
|
|
25
|
+
Dynamic: description-content-type
|
|
26
|
+
Dynamic: home-page
|
|
27
|
+
Dynamic: keywords
|
|
28
|
+
Dynamic: requires-dist
|
|
29
|
+
Dynamic: summary
|
|
22
30
|
|
|
23
31
|
# factorio-draftsman
|
|
24
32
|
|
|
@@ -795,19 +795,25 @@ class EntityCollection(metaclass=ABCMeta):
|
|
|
795
795
|
# if not isinstance(location_2, tuple):
|
|
796
796
|
# location_2 = (location_2, "input")
|
|
797
797
|
|
|
798
|
-
if
|
|
798
|
+
if isinstance(entity_1, EntityLike):
|
|
799
|
+
if entity_1 not in self.entities:
|
|
800
|
+
raise InvalidAssociationError(
|
|
801
|
+
"entity_1 ({}) not contained within this collection".format(
|
|
802
|
+
entity_1
|
|
803
|
+
)
|
|
804
|
+
)
|
|
805
|
+
else:
|
|
799
806
|
entity_1 = self.entities[entity_1]
|
|
800
|
-
if not isinstance(entity_2, EntityLike):
|
|
801
|
-
entity_2 = self.entities[entity_2]
|
|
802
807
|
|
|
803
|
-
if
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
808
|
+
if isinstance(entity_2, EntityLike):
|
|
809
|
+
if entity_2 not in self.entities:
|
|
810
|
+
raise InvalidAssociationError(
|
|
811
|
+
"entity_2 ({}) not contained within this collection".format(
|
|
812
|
+
entity_2
|
|
813
|
+
)
|
|
814
|
+
)
|
|
815
|
+
else:
|
|
816
|
+
entity_2 = self.entities[entity_2]
|
|
811
817
|
|
|
812
818
|
if color not in {"red", "green"}:
|
|
813
819
|
raise InvalidWireTypeError(color)
|
|
@@ -22,7 +22,10 @@ from draftsman.signatures import (
|
|
|
22
22
|
from draftsman.warning import UnknownEntityWarning
|
|
23
23
|
from draftsman import utils, __factorio_version_info__
|
|
24
24
|
|
|
25
|
+
from draftsman.data.planets import get_surface_properties
|
|
26
|
+
|
|
25
27
|
import copy
|
|
28
|
+
import math
|
|
26
29
|
from pydantic import (
|
|
27
30
|
ConfigDict,
|
|
28
31
|
Field,
|
|
@@ -108,6 +111,16 @@ class Entity(Exportable, EntityLike):
|
|
|
108
111
|
The internal ID of the entity.
|
|
109
112
|
""",
|
|
110
113
|
)
|
|
114
|
+
quality: Literal[
|
|
115
|
+
"normal", "uncommon", "rare", "epic", "legendary"
|
|
116
|
+
] = Field( # TODO: determine these automatically
|
|
117
|
+
"normal",
|
|
118
|
+
description="""
|
|
119
|
+
The quality of the entity. Defaults to 'normal' when not specified,
|
|
120
|
+
or when quality is not present in the save being imported to /
|
|
121
|
+
exported from.
|
|
122
|
+
""",
|
|
123
|
+
)
|
|
111
124
|
position: FloatPosition = Field(
|
|
112
125
|
...,
|
|
113
126
|
description="""
|
|
@@ -188,6 +201,7 @@ class Entity(Exportable, EntityLike):
|
|
|
188
201
|
self,
|
|
189
202
|
name: Optional[str],
|
|
190
203
|
similar_entities: list[str],
|
|
204
|
+
quality: Optional[str] = "normal",
|
|
191
205
|
tile_position: IntPosition = (0, 0),
|
|
192
206
|
id: str = None,
|
|
193
207
|
validate: Union[
|
|
@@ -256,7 +270,13 @@ class Entity(Exportable, EntityLike):
|
|
|
256
270
|
# **{"position": {"x": 0, "y": 0}, "entity_number": 0, **kwargs}
|
|
257
271
|
# )
|
|
258
272
|
self._root = type(self).Format.model_validate(
|
|
259
|
-
{
|
|
273
|
+
{
|
|
274
|
+
"name": name,
|
|
275
|
+
"quality": quality,
|
|
276
|
+
"position": {"x": 0, "y": 0},
|
|
277
|
+
"entity_number": 0,
|
|
278
|
+
**kwargs,
|
|
279
|
+
},
|
|
260
280
|
strict=False,
|
|
261
281
|
context={"construction": True, "mode": ValidationMode.NONE},
|
|
262
282
|
)
|
|
@@ -276,6 +296,9 @@ class Entity(Exportable, EntityLike):
|
|
|
276
296
|
# Name
|
|
277
297
|
self.name = name
|
|
278
298
|
|
|
299
|
+
# Quality
|
|
300
|
+
self.quality = quality
|
|
301
|
+
|
|
279
302
|
# ID (used in Blueprints and Groups)
|
|
280
303
|
self.id = id
|
|
281
304
|
|
|
@@ -404,6 +427,26 @@ class Entity(Exportable, EntityLike):
|
|
|
404
427
|
|
|
405
428
|
# =========================================================================
|
|
406
429
|
|
|
430
|
+
@property
|
|
431
|
+
def quality(self) -> str: # TODO: literals
|
|
432
|
+
"""
|
|
433
|
+
The quality of this entity. Can modify certain other attributes of the
|
|
434
|
+
entity in (usually) positive ways.
|
|
435
|
+
"""
|
|
436
|
+
return self._root.quality
|
|
437
|
+
|
|
438
|
+
@quality.setter
|
|
439
|
+
def quality(self, value: str) -> None: # TODO: literals
|
|
440
|
+
if self.validate_assignment:
|
|
441
|
+
result = attempt_and_reissue(
|
|
442
|
+
self, type(self).Format, self._root, "quality", value
|
|
443
|
+
)
|
|
444
|
+
self._root.quality = result
|
|
445
|
+
else:
|
|
446
|
+
self._root.quality = value
|
|
447
|
+
|
|
448
|
+
# =========================================================================
|
|
449
|
+
|
|
407
450
|
@property
|
|
408
451
|
def position(self) -> Vector:
|
|
409
452
|
"""
|
|
@@ -601,6 +644,20 @@ class Entity(Exportable, EntityLike):
|
|
|
601
644
|
|
|
602
645
|
# =========================================================================
|
|
603
646
|
|
|
647
|
+
@property
|
|
648
|
+
def surface_conditions(self) -> Optional[dict]:
|
|
649
|
+
"""
|
|
650
|
+
Gets the dictionary of surface constraints which apply when placing this
|
|
651
|
+
entity. If this entity has no constraints whatsoever, an empty
|
|
652
|
+
dictionary is returned. If this entity is unrecognized by Draftsman,
|
|
653
|
+
`None` is returned. Not exported; read only.
|
|
654
|
+
"""
|
|
655
|
+
return entities.raw.get(self.name, {"surface_conditions": None}).get(
|
|
656
|
+
"surface_conditions", {}
|
|
657
|
+
)
|
|
658
|
+
|
|
659
|
+
# =========================================================================
|
|
660
|
+
|
|
604
661
|
@property
|
|
605
662
|
def tags(self) -> Optional[dict[str, Any]]:
|
|
606
663
|
"""
|
|
@@ -628,6 +685,18 @@ class Entity(Exportable, EntityLike):
|
|
|
628
685
|
|
|
629
686
|
# =========================================================================
|
|
630
687
|
|
|
688
|
+
def is_placable_on(self, surface_name: str) -> True:
|
|
689
|
+
"""
|
|
690
|
+
Check to see if this entity is placable on a particular planet/surface.
|
|
691
|
+
`surface_name` must be the name of a registered surface in `data.planets`.
|
|
692
|
+
If the `surface_properties` of this entity are unknown, then this
|
|
693
|
+
function always returns `True`.
|
|
694
|
+
"""
|
|
695
|
+
surface_properties = get_surface_properties(surface_name)
|
|
696
|
+
return utils.passes_surface_conditions(
|
|
697
|
+
self.surface_conditions, surface_properties
|
|
698
|
+
)
|
|
699
|
+
|
|
631
700
|
def validate(
|
|
632
701
|
self, mode: ValidationMode = ValidationMode.STRICT, force: bool = False
|
|
633
702
|
) -> ValidationResult:
|
|
@@ -25,6 +25,8 @@ def attempt_and_reissue(
|
|
|
25
25
|
"environment_version": __factorio_version_info__,
|
|
26
26
|
**kwargs,
|
|
27
27
|
}
|
|
28
|
+
if object.validate_assignment == ValidationMode.NONE:
|
|
29
|
+
context["construction"] = True
|
|
28
30
|
try:
|
|
29
31
|
result = format_model.__pydantic_validator__.validate_assignment(
|
|
30
32
|
target,
|
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
# artillery_auto_target.py
|
|
2
|
-
|
|
3
|
-
from draftsman.classes.exportable import attempt_and_reissue
|
|
4
|
-
|
|
5
|
-
from pydantic import BaseModel, Field
|
|
6
|
-
from typing import Optional
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class ArtilleryAutoTargetMixin:
|
|
10
|
-
"""
|
|
11
|
-
Gives the entity the "artillery_auto_targeting" parameter. Used by artillery
|
|
12
|
-
turrets and artillery wagons.
|
|
13
|
-
"""
|
|
14
|
-
|
|
15
|
-
class Format(BaseModel):
|
|
16
|
-
artillery_auto_targeting: Optional[bool] = Field(
|
|
17
|
-
True,
|
|
18
|
-
description="""
|
|
19
|
-
Whether or not this turret automatically targets enemy structures
|
|
20
|
-
in its range.
|
|
21
|
-
""",
|
|
22
|
-
)
|
|
23
|
-
|
|
24
|
-
def __init__(self, name: str, similar_entities: list[str], **kwargs):
|
|
25
|
-
super().__init__(name, similar_entities, **kwargs)
|
|
26
|
-
|
|
27
|
-
self.auto_target = kwargs.get("artillery_auto_targeting", None)
|
|
28
|
-
|
|
29
|
-
# =========================================================================
|
|
30
|
-
|
|
31
|
-
@property
|
|
32
|
-
def auto_target(self) -> bool:
|
|
33
|
-
"""
|
|
34
|
-
TODO
|
|
35
|
-
"""
|
|
36
|
-
return self._root.artillery_auto_targeting
|
|
37
|
-
|
|
38
|
-
@auto_target.setter
|
|
39
|
-
def auto_target(self, value: Optional[bool]) -> None:
|
|
40
|
-
if self.validate_assignment:
|
|
41
|
-
result = attempt_and_reissue(
|
|
42
|
-
self,
|
|
43
|
-
self.Format,
|
|
44
|
-
self._root,
|
|
45
|
-
"artillery_auto_targeting",
|
|
46
|
-
value,
|
|
47
|
-
)
|
|
48
|
-
self._root.artillery_auto_targeting = result
|
|
49
|
-
else:
|
|
50
|
-
self._root.artillery_auto_targeting = value
|
|
1
|
+
# artillery_auto_target.py
|
|
2
|
+
|
|
3
|
+
from draftsman.classes.exportable import attempt_and_reissue
|
|
4
|
+
|
|
5
|
+
from pydantic import BaseModel, Field
|
|
6
|
+
from typing import Optional
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class ArtilleryAutoTargetMixin:
|
|
10
|
+
"""
|
|
11
|
+
Gives the entity the "artillery_auto_targeting" parameter. Used by artillery
|
|
12
|
+
turrets and artillery wagons.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
class Format(BaseModel):
|
|
16
|
+
artillery_auto_targeting: Optional[bool] = Field(
|
|
17
|
+
True,
|
|
18
|
+
description="""
|
|
19
|
+
Whether or not this turret automatically targets enemy structures
|
|
20
|
+
in its range.
|
|
21
|
+
""",
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
def __init__(self, name: str, similar_entities: list[str], **kwargs):
|
|
25
|
+
super().__init__(name, similar_entities, **kwargs)
|
|
26
|
+
|
|
27
|
+
self.auto_target = kwargs.get("artillery_auto_targeting", None)
|
|
28
|
+
|
|
29
|
+
# =========================================================================
|
|
30
|
+
|
|
31
|
+
@property
|
|
32
|
+
def auto_target(self) -> bool:
|
|
33
|
+
"""
|
|
34
|
+
TODO
|
|
35
|
+
"""
|
|
36
|
+
return self._root.artillery_auto_targeting
|
|
37
|
+
|
|
38
|
+
@auto_target.setter
|
|
39
|
+
def auto_target(self, value: Optional[bool]) -> None:
|
|
40
|
+
if self.validate_assignment:
|
|
41
|
+
result = attempt_and_reissue(
|
|
42
|
+
self,
|
|
43
|
+
self.Format,
|
|
44
|
+
self._root,
|
|
45
|
+
"artillery_auto_targeting",
|
|
46
|
+
value,
|
|
47
|
+
)
|
|
48
|
+
self._root.artillery_auto_targeting = result
|
|
49
|
+
else:
|
|
50
|
+
self._root.artillery_auto_targeting = value
|
{factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_condition.py
RENAMED
|
@@ -15,7 +15,7 @@ class CircuitConditionMixin: # (ControlBehaviorMixin)
|
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
class ControlFormat(BaseModel):
|
|
18
|
-
|
|
18
|
+
circuit_condition_enabled: Optional[bool] = Field(
|
|
19
19
|
False,
|
|
20
20
|
description="""
|
|
21
21
|
Whether or not the entity is controlled by the specified circuit
|
{factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_enable.py
RENAMED
|
@@ -19,7 +19,7 @@ class CircuitEnableMixin: # (ControlBehaviorMixin)
|
|
|
19
19
|
False,
|
|
20
20
|
description="""
|
|
21
21
|
Whether or not this machine will be toggled by some circuit
|
|
22
|
-
|
|
22
|
+
network. Many machines reuse this parameter name, but others have
|
|
23
23
|
unique ones specific to their types.
|
|
24
24
|
""", # TODO: examples of different keys
|
|
25
25
|
)
|
{factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/control_behavior.py
RENAMED
|
@@ -95,7 +95,11 @@ class ControlBehaviorMixin:
|
|
|
95
95
|
|
|
96
96
|
self.control_behavior = other.control_behavior
|
|
97
97
|
|
|
98
|
-
|
|
98
|
+
# =========================================================================
|
|
99
|
+
|
|
100
|
+
def to_dict(
|
|
101
|
+
self, exclude_none: bool = True, exclude_defaults: bool = True
|
|
102
|
+
) -> dict: # TODO: FIXME
|
|
99
103
|
result = super().to_dict(
|
|
100
104
|
exclude_none=exclude_none, exclude_defaults=exclude_defaults
|
|
101
105
|
)
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
from draftsman.classes.exportable import attempt_and_reissue, test_replace_me
|
|
4
4
|
from draftsman.data import items, entities
|
|
5
5
|
from draftsman.error import InvalidItemError, DataFormatError
|
|
6
|
-
from draftsman.signatures import DraftsmanBaseModel,
|
|
6
|
+
from draftsman.signatures import DraftsmanBaseModel, ItemFilter, ItemName, int64
|
|
7
7
|
|
|
8
8
|
from pydantic import Field, ValidationError, ValidationInfo, field_validator
|
|
9
|
-
from typing import Any, Optional
|
|
9
|
+
from typing import Any, Literal, Optional
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class FiltersMixin:
|
|
@@ -15,7 +15,13 @@ class FiltersMixin:
|
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
class Format(DraftsmanBaseModel):
|
|
18
|
-
|
|
18
|
+
use_filters: Optional[bool] = Field(
|
|
19
|
+
False,
|
|
20
|
+
description="""
|
|
21
|
+
Whether or not this inserter should use filters
|
|
22
|
+
""",
|
|
23
|
+
)
|
|
24
|
+
filters: Optional[list[ItemFilter]] = Field(
|
|
19
25
|
[],
|
|
20
26
|
description="""
|
|
21
27
|
Any item filters that this inserter or loader has.
|
|
@@ -57,15 +63,38 @@ class FiltersMixin:
|
|
|
57
63
|
"filter_count", 0
|
|
58
64
|
)
|
|
59
65
|
|
|
66
|
+
# =========================================================================
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
def use_filters(self) -> Optional[bool]:
|
|
70
|
+
"""
|
|
71
|
+
Whether or not this inserter should use filters at all. Overrided by
|
|
72
|
+
``circuit_set_filters``, if present.
|
|
73
|
+
"""
|
|
74
|
+
return self._root.use_filters
|
|
75
|
+
|
|
76
|
+
@use_filters.setter
|
|
77
|
+
def use_filters(self, value: Optional[list[ItemFilter]]):
|
|
78
|
+
test_replace_me(
|
|
79
|
+
self,
|
|
80
|
+
type(self).Format,
|
|
81
|
+
self._root,
|
|
82
|
+
"use_filters",
|
|
83
|
+
value,
|
|
84
|
+
self.validate_assignment,
|
|
85
|
+
)
|
|
86
|
+
|
|
87
|
+
# =========================================================================
|
|
88
|
+
|
|
60
89
|
@property
|
|
61
|
-
def filters(self) -> Optional[list[
|
|
90
|
+
def filters(self) -> Optional[list[ItemFilter]]:
|
|
62
91
|
"""
|
|
63
92
|
TODO
|
|
64
93
|
"""
|
|
65
94
|
return self._root.filters
|
|
66
95
|
|
|
67
96
|
@filters.setter
|
|
68
|
-
def filters(self, value: Optional[list[
|
|
97
|
+
def filters(self, value: Optional[list[ItemFilter]]):
|
|
69
98
|
test_replace_me(
|
|
70
99
|
self,
|
|
71
100
|
type(self).Format,
|
|
@@ -84,7 +113,15 @@ class FiltersMixin:
|
|
|
84
113
|
|
|
85
114
|
# =========================================================================
|
|
86
115
|
|
|
87
|
-
def set_item_filter(
|
|
116
|
+
def set_item_filter(
|
|
117
|
+
self,
|
|
118
|
+
index: int64,
|
|
119
|
+
item: ItemName,
|
|
120
|
+
quality: Literal[
|
|
121
|
+
"normal", "uncommon", "rare", "epic", "legendary", "any"
|
|
122
|
+
] = "normal",
|
|
123
|
+
comparator: Literal[">", "<", "=", "==", "≥", ">=", "≤", "<=", "≠", "!="] = "=",
|
|
124
|
+
):
|
|
88
125
|
"""
|
|
89
126
|
Sets one of the item filters of the Entity. `index` in this function is
|
|
90
127
|
in 0-based notation.
|
|
@@ -98,7 +135,9 @@ class FiltersMixin:
|
|
|
98
135
|
"""
|
|
99
136
|
if item is not None:
|
|
100
137
|
try:
|
|
101
|
-
new_entry =
|
|
138
|
+
new_entry = ItemFilter(
|
|
139
|
+
index=index, name=item, quality=quality, comparator=comparator
|
|
140
|
+
)
|
|
102
141
|
new_entry.index += 1
|
|
103
142
|
except ValidationError as e:
|
|
104
143
|
raise DataFormatError(e) from None
|
|
@@ -124,7 +163,7 @@ class FiltersMixin:
|
|
|
124
163
|
)
|
|
125
164
|
self.filters = result
|
|
126
165
|
|
|
127
|
-
def set_item_filters(self, *filters: Optional[list[
|
|
166
|
+
def set_item_filters(self, *filters: Optional[list[ItemFilter]]):
|
|
128
167
|
"""
|
|
129
168
|
Sets all of the item filters of the Entity.
|
|
130
169
|
|
|
@@ -47,8 +47,12 @@ class InventoryMixin:
|
|
|
47
47
|
return bar
|
|
48
48
|
|
|
49
49
|
warning_list: list = info.context["warning_list"]
|
|
50
|
-
entity = info.context["object"]
|
|
51
|
-
|
|
50
|
+
entity: InventoryMixin = info.context["object"]
|
|
51
|
+
|
|
52
|
+
# Make sure to check that it's `False`; this attribute can return
|
|
53
|
+
# `None` if it doesn't recognize the entity, and in that case we
|
|
54
|
+
# don't want to issue a warning at all
|
|
55
|
+
if entity.inventory_bar_enabled is False:
|
|
52
56
|
warning_list.append(BarWarning("This entity does not have bar control"))
|
|
53
57
|
|
|
54
58
|
return bar
|
|
@@ -72,19 +76,7 @@ class InventoryMixin:
|
|
|
72
76
|
# =========================================================================
|
|
73
77
|
|
|
74
78
|
@property
|
|
75
|
-
def
|
|
76
|
-
"""
|
|
77
|
-
The number of inventory slots that this Entity has. Equivalent to the
|
|
78
|
-
``"inventory_size"`` key in Factorio's ``data.raw``. Returns ``None`` if
|
|
79
|
-
this entity's name is not recognized by Draftsman. Not exported; read
|
|
80
|
-
only.
|
|
81
|
-
"""
|
|
82
|
-
return entities.raw.get(self.name, {}).get("inventory_size", None)
|
|
83
|
-
|
|
84
|
-
# =========================================================================
|
|
85
|
-
|
|
86
|
-
@property
|
|
87
|
-
def inventory_bar_enabled(self) -> bool:
|
|
79
|
+
def inventory_bar_enabled(self) -> Optional[bool]:
|
|
88
80
|
"""
|
|
89
81
|
Whether or not this Entity has its inventory limiting bar enabled.
|
|
90
82
|
Equivalent to the ``"enable_inventory_bar"`` key in Factorio's
|
|
@@ -97,6 +89,41 @@ class InventoryMixin:
|
|
|
97
89
|
|
|
98
90
|
# =========================================================================
|
|
99
91
|
|
|
92
|
+
@property
|
|
93
|
+
def quality_affects_inventory_size(self) -> Optional[bool]:
|
|
94
|
+
"""
|
|
95
|
+
Whether or not the quality of this entity modifies its inventory size.
|
|
96
|
+
Not exported; read only.
|
|
97
|
+
"""
|
|
98
|
+
return entities.raw.get(
|
|
99
|
+
self.name, {"quality_affects_inventory_size": None}
|
|
100
|
+
).get("quality_affects_inventory_size", True)
|
|
101
|
+
|
|
102
|
+
# =========================================================================
|
|
103
|
+
|
|
104
|
+
@property
|
|
105
|
+
def inventory_size(self) -> uint16:
|
|
106
|
+
"""
|
|
107
|
+
The number of inventory slots that this Entity has. Equivalent to the
|
|
108
|
+
``"inventory_size"`` key in Factorio's ``data.raw``. Returns ``None`` if
|
|
109
|
+
this entity's name is not recognized by Draftsman. Not exported; read
|
|
110
|
+
only.
|
|
111
|
+
"""
|
|
112
|
+
inventory_size = entities.raw.get(self.name, {}).get("inventory_size", None)
|
|
113
|
+
if inventory_size is None or not self.quality_affects_inventory_size:
|
|
114
|
+
return inventory_size
|
|
115
|
+
else:
|
|
116
|
+
mutlipliers = { # TODO: grab this dynamically
|
|
117
|
+
"normal": 1.0,
|
|
118
|
+
"uncommon": 1.3,
|
|
119
|
+
"rare": 1.6,
|
|
120
|
+
"epic": 1.9,
|
|
121
|
+
"legendary": 2.5,
|
|
122
|
+
}
|
|
123
|
+
return math.floor(inventory_size * mutlipliers[self.quality])
|
|
124
|
+
|
|
125
|
+
# =========================================================================
|
|
126
|
+
|
|
100
127
|
@property
|
|
101
128
|
def inventory_slots_occupied(self) -> int:
|
|
102
129
|
"""
|
|
@@ -125,8 +152,8 @@ class InventoryMixin:
|
|
|
125
152
|
@property
|
|
126
153
|
def bar(self) -> uint16:
|
|
127
154
|
"""
|
|
128
|
-
The limiting bar of the inventory. Used to prevent
|
|
129
|
-
slots in the inventory from accepting items.
|
|
155
|
+
The limiting bar of the inventory. Used to prevent the final-most
|
|
156
|
+
slots in the inventory from accepting new items.
|
|
130
157
|
|
|
131
158
|
Raises :py:class:`~draftsman.warning.IndexWarning` if the set value
|
|
132
159
|
exceeds the Entity's ``inventory_size`` attribute.
|
{factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/inventory_filter.py
RENAMED
|
@@ -9,7 +9,7 @@ from draftsman.error import (
|
|
|
9
9
|
)
|
|
10
10
|
from draftsman.signatures import (
|
|
11
11
|
DraftsmanBaseModel,
|
|
12
|
-
|
|
12
|
+
ItemFilter,
|
|
13
13
|
ItemName,
|
|
14
14
|
int64,
|
|
15
15
|
uint16,
|
|
@@ -24,7 +24,7 @@ from pydantic import (
|
|
|
24
24
|
validate_call,
|
|
25
25
|
field_validator,
|
|
26
26
|
)
|
|
27
|
-
from typing import Any, Optional
|
|
27
|
+
from typing import Any, Literal, Optional
|
|
28
28
|
|
|
29
29
|
from typing import TYPE_CHECKING
|
|
30
30
|
|
|
@@ -39,7 +39,7 @@ class InventoryFilterMixin:
|
|
|
39
39
|
|
|
40
40
|
class Format(BaseModel):
|
|
41
41
|
class InventoryFilters(DraftsmanBaseModel):
|
|
42
|
-
filters: Optional[list[
|
|
42
|
+
filters: Optional[list[ItemFilter]] = Field(
|
|
43
43
|
None,
|
|
44
44
|
description="""
|
|
45
45
|
Any reserved item filter slots in the container's inventory.
|
|
@@ -163,14 +163,14 @@ class InventoryFilterMixin:
|
|
|
163
163
|
# =========================================================================
|
|
164
164
|
|
|
165
165
|
@property
|
|
166
|
-
def filters(self) -> Optional[list[
|
|
166
|
+
def filters(self) -> Optional[list[ItemFilter]]:
|
|
167
167
|
"""
|
|
168
168
|
TODO
|
|
169
169
|
"""
|
|
170
170
|
return self.inventory.filters
|
|
171
171
|
|
|
172
172
|
@filters.setter
|
|
173
|
-
def filters(self, value: Optional[list[
|
|
173
|
+
def filters(self, value: Optional[list[ItemFilter]]):
|
|
174
174
|
test_replace_me(
|
|
175
175
|
self,
|
|
176
176
|
type(self).Format.InventoryFilters,
|
|
@@ -233,7 +233,15 @@ class InventoryFilterMixin:
|
|
|
233
233
|
|
|
234
234
|
# =========================================================================
|
|
235
235
|
|
|
236
|
-
def set_inventory_filter(
|
|
236
|
+
def set_inventory_filter(
|
|
237
|
+
self,
|
|
238
|
+
index: int64,
|
|
239
|
+
item: Optional[ItemName],
|
|
240
|
+
quality: Literal[
|
|
241
|
+
"normal", "uncommon", "rare", "epic", "legendary", "any"
|
|
242
|
+
] = "normal",
|
|
243
|
+
comparator: Literal[">", "<", "=", "==", "≥", ">=", "≤", "<=", "≠", "!="] = "=",
|
|
244
|
+
):
|
|
237
245
|
"""
|
|
238
246
|
Sets the item filter at a particular index. If ``item`` is set to
|
|
239
247
|
``None``, the item filter at that location is removed.
|
|
@@ -249,7 +257,7 @@ class InventoryFilterMixin:
|
|
|
249
257
|
"""
|
|
250
258
|
if item is not None:
|
|
251
259
|
try:
|
|
252
|
-
new_entry =
|
|
260
|
+
new_entry = ItemFilter(index=index, name=item)
|
|
253
261
|
new_entry.index += 1
|
|
254
262
|
except ValidationError as e:
|
|
255
263
|
raise DataFormatError(e) from None
|