factorio-draftsman 3.1.1__tar.gz → 3.2.0__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-3.1.1/factorio_draftsman.egg-info → factorio_draftsman-3.2.0}/PKG-INFO +3 -25
- factorio_draftsman-3.2.0/draftsman/_version.py +4 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/entity.py +46 -18
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/directional.py +23 -20
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/orientation.py +2 -4
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/schedule.py +125 -62
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/spatial_hashmap.py +23 -4
- factorio_draftsman-3.2.0/draftsman/data/entities.pkl +0 -0
- factorio_draftsman-3.2.0/draftsman/data/equipment.pkl +0 -0
- factorio_draftsman-3.2.0/draftsman/data/fluids.pkl +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/data/instruments.pkl +0 -0
- factorio_draftsman-3.2.0/draftsman/data/items.pkl +0 -0
- factorio_draftsman-3.2.0/draftsman/data/mods.pkl +0 -0
- factorio_draftsman-3.2.0/draftsman/data/modules.pkl +0 -0
- factorio_draftsman-3.2.0/draftsman/data/planets.pkl +0 -0
- factorio_draftsman-3.2.0/draftsman/data/qualities.pkl +0 -0
- factorio_draftsman-3.2.0/draftsman/data/recipes.pkl +0 -0
- factorio_draftsman-3.2.0/draftsman/data/signals.pkl +0 -0
- factorio_draftsman-3.2.0/draftsman/data/tiles.pkl +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/environment/mod_list.py +3 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/environment/update.py +6 -4
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/info.json +1 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/circuit-network.lua +4 -107
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/combinator-pictures.lua +33 -33
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/entities.lua +55 -9
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/sounds.lua +15 -10
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/trains.lua +2 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/transport-belts.lua +21 -3
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/trees.lua +4 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/item.lua +13 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/circuit-connector-generated-definitions.lua +10 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/circuit-connector-sprites.lua +1 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/dataloader.lua +9 -4
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/meld.lua +1 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/production-score.lua +21 -27
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/story.lua +5 -5
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/style.lua +94 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/utility-constants.lua +2 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/elevated-rails/info.json +1 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/elevated-rails/prototypes/entity/elevated-rails.lua +1 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/info.json +1 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/prototypes/recycling.lua +7 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/info.json +1 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/enemies.lua +6 -6
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/entities.lua +2 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/gleba-enemy-animations.lua +4 -4
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/sounds.lua +24 -23
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/transport-belts.lua +7 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/planet.lua +4 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/technology.lua +3 -3
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/ammo_turret.py +1 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/arithmetic_combinator.py +1 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/assembling_machine.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/asteroid_collector.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/boiler.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/burner_generator.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/constant_combinator.py +0 -2
- factorio_draftsman-3.2.0/draftsman/prototypes/curved_rail_a.py +98 -0
- factorio_draftsman-3.2.0/draftsman/prototypes/curved_rail_b.py +98 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/decider_combinator.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/electric_energy_interface.py +1 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/elevated_curved_rail_a.py +3 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/elevated_curved_rail_b.py +3 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/elevated_half_diagonal_rail.py +3 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/elevated_straight_rail.py +4 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/fluid_turret.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/furnace.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/fusion_generator.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/gate.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/generator.py +0 -2
- factorio_draftsman-3.2.0/draftsman/prototypes/half_diagonal_rail.py +64 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/inserter.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/legacy_curved_rail.py +1 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/legacy_straight_rail.py +1 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/linked_belt.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/loader.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/locomotive.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/mining_drill.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/offshore_pump.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/pump.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/rail_chain_signal.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/rail_signal.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/rail_support.py +6 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/rocket_silo.py +1 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/selector_combinator.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/simple_entity_with_force.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/simple_entity_with_owner.py +0 -2
- factorio_draftsman-3.2.0/draftsman/prototypes/splitter.py +263 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/storage_tank.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/straight_rail.py +17 -21
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/train_stop.py +1 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/transport_belt.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/underground_belt.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/underground_pipe.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/valve.py +34 -36
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/wall.py +0 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/signatures.py +29 -19
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/utils.py +0 -19
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0/factorio_draftsman.egg-info}/PKG-INFO +3 -25
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/factorio_draftsman.egg-info/requires.txt +1 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/pyproject.toml +4 -4
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_association.py +0 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_blueprintable.py +0 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_data.py +1 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_deconstruction_planner.py +2 -2
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_entity.py +1 -3
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_entity_list.py +1 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_group.py +3 -3
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_tile.py +1 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_tile_list.py +1 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_train_configuration.py +0 -1
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_utils.py +1 -1
- factorio_draftsman-3.2.0/test/test_version.py +9 -0
- factorio_draftsman-3.1.1/draftsman/_version.py +0 -4
- factorio_draftsman-3.1.1/draftsman/data/entities.pkl +0 -0
- factorio_draftsman-3.1.1/draftsman/data/equipment.pkl +0 -0
- factorio_draftsman-3.1.1/draftsman/data/fluids.pkl +0 -0
- factorio_draftsman-3.1.1/draftsman/data/items.pkl +0 -0
- factorio_draftsman-3.1.1/draftsman/data/mods.pkl +0 -0
- factorio_draftsman-3.1.1/draftsman/data/modules.pkl +0 -0
- factorio_draftsman-3.1.1/draftsman/data/planets.pkl +0 -0
- factorio_draftsman-3.1.1/draftsman/data/qualities.pkl +0 -0
- factorio_draftsman-3.1.1/draftsman/data/recipes.pkl +0 -0
- factorio_draftsman-3.1.1/draftsman/data/signals.pkl +0 -0
- factorio_draftsman-3.1.1/draftsman/data/tiles.pkl +0 -0
- factorio_draftsman-3.1.1/draftsman/prototypes/curved_rail_a.py +0 -36
- factorio_draftsman-3.1.1/draftsman/prototypes/curved_rail_b.py +0 -36
- factorio_draftsman-3.1.1/draftsman/prototypes/half_diagonal_rail.py +0 -32
- factorio_draftsman-3.1.1/draftsman/prototypes/splitter.py +0 -99
- factorio_draftsman-3.1.1/test/test_version.py +0 -9
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/LICENSE +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/MANIFEST.in +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/README.md +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/__init__.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/blueprintable.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/__init__.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/association.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/blueprint.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/blueprint_book.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/blueprintable.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/collection.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/collision_set.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/deconstruction_planner.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/entity_like.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/entity_list.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/exportable.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/group.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/__init__.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/artillery_auto_target.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/circuit_condition.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/circuit_connectable.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/circuit_enable.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/circuit_read_contents.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/circuit_read_hand.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/circuit_read_resource.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/circuit_set_filters.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/color.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/control_behavior.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/crafting_machine.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/energy_source.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/equipment_grid.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/filters.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/input_ingredients.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/inventory.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/io_type.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/logistic_condition.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/mode_of_operation.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/modules.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/player_description.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/power_connectable.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/read_ammo.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/read_rail_signal.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/recipe.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/request_filters.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/stack_size.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/target_priorities.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/variation.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/vehicle.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/rail_planner.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/schedule_list.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/spatial_data_structure.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/spatial_like.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/tile.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/tile_list.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/train_configuration.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/transformable.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/upgrade_planner.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/vector.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/compatibility/defines.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/compatibility/interface.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/compatibility/serpent.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/compatibility/settings.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/constants.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/data/__init__.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/data/entities.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/data/equipment.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/data/fluids.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/data/instruments.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/data/items.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/data/mods.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/data/modules.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/data/planets.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/data/qualities.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/data/recipes.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/data/signals.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/data/tiles.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/entity.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/environment/__init__.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/environment/mod_settings.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/environment/script.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/error.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/extras.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/data-updates.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/data.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/migrations/1.1.0.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/migrations/1.2.0 stack inserter rename.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/migrations/2.0.0-biter-egg.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/migrations/2.0.0-internal.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/migrations/2.0.0-internal2.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/migrations/2.0.0-internal3.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/migrations/2.0.0.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/migrations/2.0.0.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/migrations/migrations.txt +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/achievements.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/ambient-sounds.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/autoplace-controls.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/categories/ammo-category.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/categories/equipment-category.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/categories/fuel-category.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/categories/module-category.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/categories/quality.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/categories/recipe-category.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/categories/resource-category.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/collision-layers.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/custom-inputs.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/damage-type.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/decorative/decorative-trigger-effects.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/decorative/decoratives.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/demo.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/artillery-cannon-muzzle-flash-shifting.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/assemblerpipes.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/atomic-bomb.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/beacon-animations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/beams.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/biter-ai-settings.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/biter-animations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/biter-die-effects.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/cargo-hatch.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/cargo-pod-catalogue.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/character-animations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/crash-site.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/enemies.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/enemy-autoplace-utils.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/enemy-constants.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/enemy-projectiles.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/entity-util.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/explosion-animations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/explosions.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/factorio-logo.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/fire.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/flying-robots.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/giga-cargo-hatch.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/hit-effects.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/laser-sounds.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/mining-drill.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/movement-triggers.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/pipecovers.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/projectiles.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/pump-connector.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/rail-pictures.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/remnants.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/resources.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/rocket-projectile-pictures.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/smoke-animations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/smoke.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/spawner-animation.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/spidertron-animations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/spidertron-light-positions.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/spitter-animations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/turrets.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/entity/worm-animations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/equipment-grid.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/equipment.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/factoriopedia-simulations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/factoriopedia-util.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/fire-util.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/fluid.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/impact-deliver-category.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/item-groups.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/item-tints.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/item_sounds.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/map-gen-presets.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/map-settings.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/noise-expressions.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/particle-animations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/particles.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/planet/planet-map-gen.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/planet/planet.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/planet/procession-audio-catalogue-types.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/planet/procession-graphic-catalogue-types.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/planet/procession-style.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/planet/procession.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/planet/surface-property.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/pollution.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/recipe.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/shortcuts.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/signal.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/technology.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/tile/tile-collision-masks.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/tile/tile-graphics.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/tile/tile-pollution-values.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/tile/tile-sounds.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/tile/tile-trigger-effects.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/tile/tiles.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/tips-and-tricks-simulations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/tips-and-tricks.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/trigger-target-types.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/tutorials.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/base/prototypes/utility-sprites.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/backers.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/data.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/info.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/autoplace_utils.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/bonus-gui-ordering.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/collision-mask-defaults.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/collision-mask-util.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/crash-site.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/data-duplicate-checker.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/event_handler.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/kill-score.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/math2d.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/math3d.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/mod-gui.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/resource-autoplace.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/silo-script.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/sound-util.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/space-finish-script.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/surface-render-parameter-effects.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/lualib/util.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/burner-usage.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/cursors.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/editor-controller.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/fonts.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/god-controller.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/noise-functions.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/noise-programs.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/parameters.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/remote-controller.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/spectator-controller.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/unknown.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/utility-sounds.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/core/prototypes/utility-sprites.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/elevated-rails/data.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/elevated-rails/prototypes/base-data-updates.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/elevated-rails/prototypes/entity/elevated-rail-pictures.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/elevated-rails/prototypes/entity/explosions.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/elevated-rails/prototypes/entity/remnants.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/elevated-rails/prototypes/item/elevated-rails.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/elevated-rails/prototypes/particles.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/elevated-rails/prototypes/recipe/elevated-rails.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/elevated-rails/prototypes/sloped-trains-updates.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/elevated-rails/prototypes/technology/elevated-rails.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/elevated-rails/prototypes/tips-and-tricks-simulations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/elevated-rails/prototypes/tips-and-tricks.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/data-updates.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/data.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/prototypes/base-data-updates.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/prototypes/entity/entity.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/prototypes/entity/explosions.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/prototypes/entity/recycler-pictures.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/prototypes/entity/remnants.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/prototypes/item.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/prototypes/module-category.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/prototypes/quality.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/prototypes/recipe.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/prototypes/signal.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/prototypes/technology.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/prototypes/tips-and-tricks-simulations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/quality/prototypes/tips-and-tricks.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/base-data-updates.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/data-updates.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/data.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/migrations/aquilo-tilesets.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/migrations/biolab.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/migrations/internal.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/migrations/jelly-yum-rename.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/migrations/shattered-planet.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/migrations/tungsten-belt-rename.json +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/achievements.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/active-triggers.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/ambient-sounds.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/autoplace-controls.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/burner-usage.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/categories/ammo-category.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/categories/fuel-category.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/categories/recipe-category.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/categories/resource-category.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-aquilo.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-fulgora.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-gleba.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-vulcanus.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/agricultural-tower-crane.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/asteroid-collector-pictures.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/asteroid.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/base-frozen-graphics.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/beams.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/big-mining-drill.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/biochamber-pictures.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/cargo-hatch.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/cargo-pod-catalogue.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/circuit-network.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/crusher-pictures.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/cryogenic-plant-pictures.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/electromagnetic-plant-pictures.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/explosion-animations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/explosions.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/flying-robots.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/foundry-pictures.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/fusion-system-pictures.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/giga-cargo-hatch.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/gleba-ai-settings.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/lightning-collector-graphics.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/lightning-rod-graphics.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/mech-armor-animations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/plants.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/projectiles.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/railgun-turret-pictures.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/remnants.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/resources.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/smoke.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/space-enemy-autoplace-utils.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/space-platform-hub-cockpit.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/trees.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/entity/turrets.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/equipment-grid.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/equipment.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/factoriopedia-simulations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/fluid.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/item-effects.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/item-groups.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/item.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/item_sounds.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/particle-animations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/particles.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/asteroid-spawn-definitions.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/general-functions.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/general-variables.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/audio-events.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/cloud-layers.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-a.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-b.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-i.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/rocket-layers.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/space-layers.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/audio-events.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/cloud-layers.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-a.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-b.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-i.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/space-layers.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/planet-aquilo-map-gen.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/planet-fulgora-map-gen.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/planet-gleba-map-gen.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/planet-map-gen.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/planet-vulcanus-map-gen.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-aquilo.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-fulgora.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-gleba.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-vulcanus.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/procession-common.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/planet/procession.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/recipe.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/spores.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/surface.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/tile/platform-tile-animations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/tile/tile-pollution-values.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/tile/tile-sounds.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/tile/tile-trigger-effects.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/tile/tiles-aquilo.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/tile/tiles-fulgora.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/tile/tiles-gleba.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/tile/tiles-vulcanus.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/tile/tiles.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/tips-and-tricks-simulations.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/tips-and-tricks.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/utility-sounds.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-data/space-age/prototypes/utility-sprites.lua +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/factorio-mods/.gitignore +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/__init__.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/accumulator.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/agricultural_tower.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/artillery_turret.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/artillery_wagon.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/beacon.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/car.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/cargo_bay.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/cargo_landing_pad.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/cargo_wagon.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/container.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/display_panel.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/electric_pole.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/electric_turret.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/fluid_wagon.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/fusion_reactor.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/heat_interface.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/heat_pipe.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/infinity_container.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/infinity_pipe.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/lab.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/lamp.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/land_mine.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/lightning_attractor.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/linked_container.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/logistic_active_container.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/logistic_buffer_container.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/logistic_passive_container.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/logistic_request_container.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/logistic_storage_container.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/pipe.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/player_port.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/power_switch.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/programmable_speaker.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/radar.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/rail_ramp.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/reactor.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/roboport.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/solar_panel.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/space_platform_hub.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/spider_vehicle.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/prototypes/thruster.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/rail.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/serialization.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/tile.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/types.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/validators.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/warning.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/factorio_draftsman.egg-info/SOURCES.txt +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/factorio_draftsman.egg-info/dependency_links.txt +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/factorio_draftsman.egg-info/entry_points.txt +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/factorio_draftsman.egg-info/top_level.txt +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/setup.cfg +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_all_factorio_versions.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_blueprint.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_blueprint_book.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_collision_set.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_constants.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_environment.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_examples.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_mixins.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_rail_planner.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_schedule.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_schedule_list.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_serialization.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_signatures.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_spatial_hash_map.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_upgrade_planner.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_vector.py +0 -0
- {factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/test/test_waypoint_factorio_versions.py +0 -0
|
@@ -1,30 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: factorio-draftsman
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.2.0
|
|
4
4
|
Summary: A complete, well-tested, and up-to-date module to manipulate Factorio blueprint strings. Compatible with mods.
|
|
5
5
|
Author: redruin01
|
|
6
|
-
License: MIT
|
|
7
|
-
|
|
8
|
-
Copyright (c) 2023 redruin1
|
|
9
|
-
|
|
10
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
-
in the Software without restriction, including without limitation the rights
|
|
13
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
-
furnished to do so, subject to the following conditions:
|
|
16
|
-
|
|
17
|
-
The above copyright notice and this permission notice shall be included in all
|
|
18
|
-
copies or substantial portions of the Software.
|
|
19
|
-
|
|
20
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
-
SOFTWARE.
|
|
27
|
-
|
|
6
|
+
License-Expression: MIT
|
|
28
7
|
Project-URL: Homepage, https://github.com/redruin1/factorio-draftsman
|
|
29
8
|
Project-URL: Documentation, https://factorio-draftsman.readthedocs.io/en/latest/index.html
|
|
30
9
|
Project-URL: Issues, https://github.com/redruin1/factorio-draftsman/issues
|
|
@@ -38,11 +17,10 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
38
17
|
Classifier: Intended Audience :: Developers
|
|
39
18
|
Classifier: Intended Audience :: End Users/Desktop
|
|
40
19
|
Classifier: Operating System :: OS Independent
|
|
41
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
42
20
|
Requires-Python: >=3.9
|
|
43
21
|
Description-Content-Type: text/markdown
|
|
44
22
|
License-File: LICENSE
|
|
45
|
-
Requires-Dist: attrs>=25.
|
|
23
|
+
Requires-Dist: attrs>=25.4.0
|
|
46
24
|
Requires-Dist: cattrs>=24.1.3
|
|
47
25
|
Requires-Dist: lupa>=2.0
|
|
48
26
|
Requires-Dist: GitPython>=3.1.43
|
|
@@ -31,7 +31,6 @@ from draftsman.utils import (
|
|
|
31
31
|
)
|
|
32
32
|
from draftsman.validators import conditional, instance_of, one_of
|
|
33
33
|
from draftsman.warning import (
|
|
34
|
-
GridAlignmentWarning,
|
|
35
34
|
UnknownEntityWarning,
|
|
36
35
|
UnknownKeywordWarning,
|
|
37
36
|
)
|
|
@@ -40,7 +39,6 @@ from draftsman.data import mods
|
|
|
40
39
|
from draftsman.data.planets import get_surface_properties
|
|
41
40
|
|
|
42
41
|
import attrs
|
|
43
|
-
import math
|
|
44
42
|
import pprint
|
|
45
43
|
from typing import Any, Optional
|
|
46
44
|
import warnings
|
|
@@ -536,7 +534,7 @@ class Entity(EntityLike, Exportable):
|
|
|
536
534
|
)
|
|
537
535
|
|
|
538
536
|
# Check of grid-alignment warnings after the positions have been updated
|
|
539
|
-
attr.validator(self, attr, value)
|
|
537
|
+
# attr.validator(self, attr, value)
|
|
540
538
|
|
|
541
539
|
return res
|
|
542
540
|
|
|
@@ -564,21 +562,51 @@ class Entity(EntityLike, Exportable):
|
|
|
564
562
|
<handbook.blueprints.forbidden_entity_attributes>`
|
|
565
563
|
"""
|
|
566
564
|
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
565
|
+
# This validator has always been a pain in the ass; I'm going to remove it
|
|
566
|
+
# for now as it needs a rethink, as it is incredibly contextual and does not
|
|
567
|
+
# play well with some of the hacky behaviors I've needed to use when working
|
|
568
|
+
# with attrs
|
|
569
|
+
|
|
570
|
+
# @position.validator
|
|
571
|
+
# @conditional(ValidationMode.MINIMUM)
|
|
572
|
+
# def _position_validator(self, _: attrs.Attribute, value: Vector):
|
|
573
|
+
# if self.double_grid_aligned:
|
|
574
|
+
# # If a double grid aligned entity lies on an odd coordinate, they're
|
|
575
|
+
# # in the wrong spot
|
|
576
|
+
# incorrect_offset = 1
|
|
577
|
+
# # ... except for the case of 2.0 diagonal straight rails, which now
|
|
578
|
+
# # lie on odd coordinates
|
|
579
|
+
# # TODO: needs to be versioned...
|
|
580
|
+
# if self.type == "straight-rail":
|
|
581
|
+
# if self.direction in (
|
|
582
|
+
# Direction.NORTHEAST,
|
|
583
|
+
# Direction.SOUTHEAST,
|
|
584
|
+
# Direction.SOUTHWEST,
|
|
585
|
+
# Direction.NORTHWEST,
|
|
586
|
+
# ):
|
|
587
|
+
# incorrect_offset = 0
|
|
588
|
+
# print(incorrect_offset)
|
|
589
|
+
# print(self.position)
|
|
590
|
+
# print(self.tile_position)
|
|
591
|
+
# print(self.tile_position.x % 2)
|
|
592
|
+
|
|
593
|
+
# if (
|
|
594
|
+
# self.tile_position.x % 2 == incorrect_offset
|
|
595
|
+
# or self.tile_position.y % 2 == incorrect_offset
|
|
596
|
+
# ):
|
|
597
|
+
# print("wtf")
|
|
598
|
+
# cast_position = Vector(
|
|
599
|
+
# math.floor(self.tile_position.x / 2) * 2,
|
|
600
|
+
# math.floor(self.tile_position.y / 2) * 2,
|
|
601
|
+
# )
|
|
602
|
+
# msg = (
|
|
603
|
+
# "Double-grid aligned entity ({}) is not placed along chunk grid; "
|
|
604
|
+
# "entity's tile position will be cast from {} to {} when "
|
|
605
|
+
# "imported".format(
|
|
606
|
+
# repr(self.name), self.tile_position, cast_position
|
|
607
|
+
# )
|
|
608
|
+
# )
|
|
609
|
+
# warnings.warn(GridAlignmentWarning(msg))
|
|
582
610
|
|
|
583
611
|
# =========================================================================
|
|
584
612
|
|
{factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/directional.py
RENAMED
|
@@ -47,34 +47,20 @@ class DirectionalMixin(Exportable):
|
|
|
47
47
|
:py:class:`~.OrientationMixin`
|
|
48
48
|
"""
|
|
49
49
|
|
|
50
|
-
def __attrs_pre_init__(self, name=attrs.NOTHING,
|
|
51
|
-
#
|
|
52
|
-
#
|
|
53
|
-
if not first_call:
|
|
54
|
-
return
|
|
55
|
-
|
|
56
|
-
# Call parent pre-init
|
|
57
|
-
# super().__attrs_pre_init__()
|
|
58
|
-
# name = kwargs.get("name", get_first(self.similar_entities))
|
|
50
|
+
def __attrs_pre_init__(self, name=attrs.NOTHING, *args, **kwargs):
|
|
51
|
+
# Other attributes might need to know what entity we're dealing with,
|
|
52
|
+
# even prior to __init__
|
|
59
53
|
name = name if name is not attrs.NOTHING else get_first(self.similar_entities)
|
|
60
54
|
object.__setattr__(self, "name", name)
|
|
61
55
|
|
|
62
56
|
# We generate collision sets on an as-needed basis for each unique
|
|
63
57
|
# entity that is instantiated
|
|
64
|
-
# Automatically generate a set of rotated collision sets for every
|
|
65
|
-
# orientation
|
|
66
58
|
try:
|
|
67
59
|
_rotated_collision_sets[name]
|
|
68
60
|
except KeyError:
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
if self.collision_set_rotated and static_collision_set is not None:
|
|
73
|
-
rotated_collision_set = static_collision_set.rotate(i)
|
|
74
|
-
else:
|
|
75
|
-
rotated_collision_set = static_collision_set
|
|
76
|
-
|
|
77
|
-
_rotated_collision_sets[name][i] = rotated_collision_set
|
|
61
|
+
# We encapsulate it in a function, since certain collision sets are
|
|
62
|
+
# hardcoded by the game and we need to account for that
|
|
63
|
+
_rotated_collision_sets[name] = self._specify_collision_sets()
|
|
78
64
|
|
|
79
65
|
# The default position function uses `tile_width`/`tile_height`, which
|
|
80
66
|
# use `collision_set`, which for rotatable entities is derived from the
|
|
@@ -236,6 +222,23 @@ class DirectionalMixin(Exportable):
|
|
|
236
222
|
base_mergable = super().mergable_with(other)
|
|
237
223
|
return base_mergable and self.direction == other.direction
|
|
238
224
|
|
|
225
|
+
def _specify_collision_sets(self) -> dict:
|
|
226
|
+
"""
|
|
227
|
+
What values the rotated collision sets for this entity should be.
|
|
228
|
+
Isolated into it's own function for certain entities whose collision
|
|
229
|
+
boxes are hardcoded.
|
|
230
|
+
"""
|
|
231
|
+
result = {}
|
|
232
|
+
static_collision_set = entities.collision_sets.get(self.name, None)
|
|
233
|
+
for dir in self.valid_directions:
|
|
234
|
+
if self.collision_set_rotated and static_collision_set is not None:
|
|
235
|
+
rotated_collision_set = static_collision_set.rotate(dir)
|
|
236
|
+
else:
|
|
237
|
+
rotated_collision_set = static_collision_set
|
|
238
|
+
|
|
239
|
+
result[dir] = rotated_collision_set
|
|
240
|
+
return result
|
|
241
|
+
|
|
239
242
|
|
|
240
243
|
draftsman_converters.add_hook_fns(
|
|
241
244
|
DirectionalMixin,
|
{factorio_draftsman-3.1.1 → factorio_draftsman-3.2.0}/draftsman/classes/mixins/orientation.py
RENAMED
|
@@ -19,12 +19,10 @@ class OrientationMixin(Exportable):
|
|
|
19
19
|
Used in trains and wagons to specify their direction.
|
|
20
20
|
"""
|
|
21
21
|
|
|
22
|
-
def __attrs_pre_init__(self, name=attrs.NOTHING, *args,
|
|
23
|
-
if not first_call:
|
|
24
|
-
return
|
|
25
|
-
|
|
22
|
+
def __attrs_pre_init__(self, name=attrs.NOTHING, *args, **kwargs):
|
|
26
23
|
name = name if name is not attrs.NOTHING else get_first(self.similar_entities)
|
|
27
24
|
object.__setattr__(self, "name", name)
|
|
25
|
+
|
|
28
26
|
object.__setattr__(
|
|
29
27
|
self, "orientation", kwargs.get("orientation", Orientation.NORTH)
|
|
30
28
|
)
|
|
@@ -21,7 +21,7 @@ from draftsman.data import mods
|
|
|
21
21
|
|
|
22
22
|
import attrs
|
|
23
23
|
import copy
|
|
24
|
-
from typing import Literal, Optional, Union
|
|
24
|
+
from typing import ClassVar, Literal, Optional, Union
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
# TODO: Right now, everything is just lumped into one WaitCondition class, which means
|
|
@@ -292,6 +292,65 @@ draftsman_converters.register_unstructure_hook_factory(
|
|
|
292
292
|
)
|
|
293
293
|
|
|
294
294
|
|
|
295
|
+
@attrs.define
|
|
296
|
+
class ScheduleStop(Exportable):
|
|
297
|
+
station: str = attrs.field(validator=instance_of(str))
|
|
298
|
+
"""
|
|
299
|
+
The name of the station or planet that this train or space platform
|
|
300
|
+
should stop at.
|
|
301
|
+
"""
|
|
302
|
+
wait_conditions: WaitConditions = attrs.field(
|
|
303
|
+
factory=WaitConditions,
|
|
304
|
+
converter=WaitConditions,
|
|
305
|
+
validator=instance_of(WaitConditions),
|
|
306
|
+
)
|
|
307
|
+
"""
|
|
308
|
+
A list of :py:class:`.WaitCondition` objects to evaluate at this
|
|
309
|
+
particular stop.
|
|
310
|
+
"""
|
|
311
|
+
allows_unloading: Optional[bool] = attrs.field(
|
|
312
|
+
default=True, validator=instance_of(Optional[bool])
|
|
313
|
+
)
|
|
314
|
+
"""
|
|
315
|
+
Whether or not this stop permits this space platform to fulfill any
|
|
316
|
+
requests at the planet it's stopped above. Only applies to space
|
|
317
|
+
platform schedules.
|
|
318
|
+
"""
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
@attrs.define
|
|
322
|
+
class ScheduleInterrupt(Exportable):
|
|
323
|
+
name: str = attrs.field(validator=instance_of(str))
|
|
324
|
+
"""
|
|
325
|
+
The name of this particular interrupt.
|
|
326
|
+
"""
|
|
327
|
+
conditions: WaitConditions = attrs.field(
|
|
328
|
+
factory=WaitConditions,
|
|
329
|
+
converter=WaitConditions,
|
|
330
|
+
validator=instance_of(WaitConditions),
|
|
331
|
+
)
|
|
332
|
+
"""
|
|
333
|
+
The set of conditions that need to pass in order for this interrupt
|
|
334
|
+
to be triggered.
|
|
335
|
+
"""
|
|
336
|
+
targets: list[ScheduleStop] = attrs.field(
|
|
337
|
+
factory=list,
|
|
338
|
+
# TODO: converter
|
|
339
|
+
validator=instance_of(list[ScheduleStop]),
|
|
340
|
+
)
|
|
341
|
+
"""
|
|
342
|
+
The target schedule that the interrupt should execute if it's
|
|
343
|
+
triggered.
|
|
344
|
+
"""
|
|
345
|
+
inside_interrupt: bool = attrs.field(
|
|
346
|
+
default=False,
|
|
347
|
+
)
|
|
348
|
+
"""
|
|
349
|
+
Whether or not this interrupt can be triggered midway through an
|
|
350
|
+
already executing interrupt.
|
|
351
|
+
"""
|
|
352
|
+
|
|
353
|
+
|
|
295
354
|
@attrs.define
|
|
296
355
|
class Schedule(Exportable):
|
|
297
356
|
"""
|
|
@@ -301,62 +360,66 @@ class Schedule(Exportable):
|
|
|
301
360
|
interrupts.
|
|
302
361
|
"""
|
|
303
362
|
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
363
|
+
Stop: ClassVar = ScheduleStop
|
|
364
|
+
|
|
365
|
+
# @attrs.define
|
|
366
|
+
# class Stop(Exportable):
|
|
367
|
+
# station: str = attrs.field(validator=instance_of(str))
|
|
368
|
+
# """
|
|
369
|
+
# The name of the station or planet that this train or space platform
|
|
370
|
+
# should stop at.
|
|
371
|
+
# """
|
|
372
|
+
# wait_conditions: WaitConditions = attrs.field(
|
|
373
|
+
# factory=WaitConditions,
|
|
374
|
+
# converter=WaitConditions,
|
|
375
|
+
# validator=instance_of(WaitConditions),
|
|
376
|
+
# )
|
|
377
|
+
# """
|
|
378
|
+
# A list of :py:class:`.WaitCondition` objects to evaluate at this
|
|
379
|
+
# particular stop.
|
|
380
|
+
# """
|
|
381
|
+
# allows_unloading: Optional[bool] = attrs.field(
|
|
382
|
+
# default=True, validator=instance_of(Optional[bool])
|
|
383
|
+
# )
|
|
384
|
+
# """
|
|
385
|
+
# Whether or not this stop permits this space platform to fulfill any
|
|
386
|
+
# requests at the planet it's stopped above. Only applies to space
|
|
387
|
+
# platform schedules.
|
|
388
|
+
# """
|
|
389
|
+
|
|
390
|
+
Interrupt: ClassVar = ScheduleInterrupt
|
|
391
|
+
|
|
392
|
+
# @attrs.define
|
|
393
|
+
# class Interrupt(Exportable):
|
|
394
|
+
# name: str = attrs.field(validator=instance_of(str))
|
|
395
|
+
# """
|
|
396
|
+
# The name of this particular interrupt.
|
|
397
|
+
# """
|
|
398
|
+
# conditions: WaitConditions = attrs.field(
|
|
399
|
+
# factory=WaitConditions,
|
|
400
|
+
# converter=WaitConditions,
|
|
401
|
+
# validator=instance_of(WaitConditions),
|
|
402
|
+
# )
|
|
403
|
+
# """
|
|
404
|
+
# The set of conditions that need to pass in order for this interrupt
|
|
405
|
+
# to be triggered.
|
|
406
|
+
# """
|
|
407
|
+
# targets: list["Schedule.Stop"] = attrs.field(
|
|
408
|
+
# factory=list,
|
|
409
|
+
# # TODO: converter
|
|
410
|
+
# validator=instance_of(list["Schedule.Stop"]),
|
|
411
|
+
# )
|
|
412
|
+
# """
|
|
413
|
+
# The target schedule that the interrupt should execute if it's
|
|
414
|
+
# triggered.
|
|
415
|
+
# """
|
|
416
|
+
# inside_interrupt: bool = attrs.field(
|
|
417
|
+
# default=False,
|
|
418
|
+
# )
|
|
419
|
+
# """
|
|
420
|
+
# Whether or not this interrupt can be triggered midway through an
|
|
421
|
+
# already executing interrupt.
|
|
422
|
+
# """
|
|
360
423
|
|
|
361
424
|
# =========================================================================
|
|
362
425
|
|
|
@@ -375,9 +438,9 @@ class Schedule(Exportable):
|
|
|
375
438
|
|
|
376
439
|
# =========================================================================
|
|
377
440
|
|
|
378
|
-
stops: list[
|
|
441
|
+
stops: list[ScheduleStop] = attrs.field(
|
|
379
442
|
factory=list,
|
|
380
|
-
validator=instance_of(list[
|
|
443
|
+
validator=instance_of(list[ScheduleStop]),
|
|
381
444
|
)
|
|
382
445
|
"""
|
|
383
446
|
The list of all stops that this schedule uses.
|
|
@@ -388,9 +451,9 @@ class Schedule(Exportable):
|
|
|
388
451
|
|
|
389
452
|
# =========================================================================
|
|
390
453
|
|
|
391
|
-
interrupts: list[
|
|
454
|
+
interrupts: list[ScheduleInterrupt] = attrs.field(
|
|
392
455
|
factory=list,
|
|
393
|
-
validator=instance_of(list[
|
|
456
|
+
validator=instance_of(list[ScheduleInterrupt]),
|
|
394
457
|
)
|
|
395
458
|
"""
|
|
396
459
|
The list of all interrupts that apply to this schedule.
|
|
@@ -519,7 +582,7 @@ class Schedule(Exportable):
|
|
|
519
582
|
self,
|
|
520
583
|
name: str,
|
|
521
584
|
conditions: Union[WaitCondition, WaitConditions],
|
|
522
|
-
targets: list[
|
|
585
|
+
targets: list[ScheduleStop],
|
|
523
586
|
inside_interrupt: bool = False,
|
|
524
587
|
):
|
|
525
588
|
"""
|
|
@@ -4,8 +4,15 @@ from draftsman.classes.spatial_like import SpatialLike
|
|
|
4
4
|
from draftsman.classes.spatial_data_structure import SpatialDataStructure
|
|
5
5
|
from draftsman.classes.vector import PrimitiveVector, PrimitiveIntVector
|
|
6
6
|
from draftsman.prototypes.straight_rail import StraightRail
|
|
7
|
+
from draftsman.prototypes.half_diagonal_rail import HalfDiagonalRail
|
|
7
8
|
from draftsman.prototypes.legacy_straight_rail import LegacyStraightRail
|
|
9
|
+
from draftsman.prototypes.curved_rail_a import CurvedRailA
|
|
10
|
+
from draftsman.prototypes.curved_rail_b import CurvedRailB
|
|
8
11
|
from draftsman.prototypes.legacy_curved_rail import LegacyCurvedRail
|
|
12
|
+
from draftsman.prototypes.elevated_straight_rail import ElevatedStraightRail
|
|
13
|
+
from draftsman.prototypes.elevated_half_diagonal_rail import ElevatedHalfDiagonalRail
|
|
14
|
+
from draftsman.prototypes.elevated_curved_rail_a import ElevatedCurvedRailA
|
|
15
|
+
from draftsman.prototypes.elevated_curved_rail_b import ElevatedCurvedRailB
|
|
9
16
|
from draftsman.prototypes.gate import Gate
|
|
10
17
|
from draftsman.utils import (
|
|
11
18
|
AABB,
|
|
@@ -97,10 +104,22 @@ class SpatialHashMap(SpatialDataStructure):
|
|
|
97
104
|
# StraightRails and CurvedRails cannot collide with each other
|
|
98
105
|
# UNLESS they are the same type, face the same direction, and
|
|
99
106
|
# exist at the exact same place
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
107
|
+
# Rail ramps are excluded from these checks as they cannot overlap
|
|
108
|
+
# in this manner
|
|
109
|
+
rail_types = (
|
|
110
|
+
StraightRail,
|
|
111
|
+
LegacyStraightRail,
|
|
112
|
+
HalfDiagonalRail,
|
|
113
|
+
CurvedRailA,
|
|
114
|
+
CurvedRailB,
|
|
115
|
+
LegacyCurvedRail,
|
|
116
|
+
ElevatedStraightRail,
|
|
117
|
+
ElevatedHalfDiagonalRail,
|
|
118
|
+
ElevatedCurvedRailA,
|
|
119
|
+
ElevatedCurvedRailB,
|
|
120
|
+
)
|
|
121
|
+
if isinstance(item, rail_types) and isinstance(
|
|
122
|
+
overlapping_item, rail_types
|
|
104
123
|
):
|
|
105
124
|
identical = (
|
|
106
125
|
item.name == overlapping_item.name
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -90,7 +90,9 @@ class Mod:
|
|
|
90
90
|
|
|
91
91
|
# Convert string dependencies into `Dependency` instances
|
|
92
92
|
self.dependencies = [
|
|
93
|
-
Dependency(
|
|
93
|
+
Dependency(
|
|
94
|
+
flag=m[1], name=m[2], operation=m[3], version=m[4], reference=None
|
|
95
|
+
)
|
|
94
96
|
for dependency in dependencies
|
|
95
97
|
if (m := Mod.dependency_regex.match(dependency))
|
|
96
98
|
]
|
|
@@ -409,13 +409,15 @@ def run_settings_stage(
|
|
|
409
409
|
|
|
410
410
|
# Factorio then converts the settings which were stored in data.raw
|
|
411
411
|
# to the global 'settings' table: We emulate that here in 'settings.lua':
|
|
412
|
-
file_name = os.path.join(draftsman_path, "compatibility", "settings.lua").replace(
|
|
412
|
+
file_name = os.path.join(draftsman_path, "compatibility", "settings.lua").replace(
|
|
413
|
+
"\\", "/"
|
|
414
|
+
)
|
|
413
415
|
lua.globals().REQUIRE_STACK = lua.eval('{{"{}"}}'.format(file_name))
|
|
414
416
|
lua.globals().MODS_STACK = lua.eval("{}")
|
|
415
417
|
lua.globals().lua_stage_reset()
|
|
416
418
|
lua.execute(
|
|
417
419
|
file_to_string(os.path.join(draftsman_path, "compatibility", "settings.lua")),
|
|
418
|
-
name=file_name
|
|
420
|
+
name=file_name,
|
|
419
421
|
)
|
|
420
422
|
|
|
421
423
|
# If there is a `mod-settings.dat` file present, we overwrite the current
|
|
@@ -729,7 +731,7 @@ def run_data_lifecycle(
|
|
|
729
731
|
run_lua_file(
|
|
730
732
|
lua,
|
|
731
733
|
os.path.join(game_path, "core", "lualib", "dataloader.lua"),
|
|
732
|
-
custom_name="__core__/lualib/dataloader.lua"
|
|
734
|
+
custom_name="__core__/lualib/dataloader.lua",
|
|
733
735
|
)
|
|
734
736
|
|
|
735
737
|
# Construct and send the `mods` table to the Lua instance in `interface.lua`
|
|
@@ -741,7 +743,7 @@ def run_data_lifecycle(
|
|
|
741
743
|
# of code to convert the `python_mods` Python dict to the `mods` Lua table
|
|
742
744
|
# Factorio wants
|
|
743
745
|
lua.execute(
|
|
744
|
-
|
|
746
|
+
"""
|
|
745
747
|
mods = {}
|
|
746
748
|
for k in python.iter(python_mods) do
|
|
747
749
|
mods[k] = python_mods[k]
|