factorio-draftsman 3.1.1__tar.gz → 3.3.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.
Files changed (562) hide show
  1. {factorio_draftsman-3.1.1/factorio_draftsman.egg-info → factorio_draftsman-3.3.0}/PKG-INFO +3 -25
  2. factorio_draftsman-3.3.0/draftsman/_version.py +4 -0
  3. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/entity.py +46 -18
  4. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/directional.py +23 -20
  5. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/orientation.py +2 -4
  6. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/target_priorities.py +1 -1
  7. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/schedule.py +125 -62
  8. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/spatial_hashmap.py +23 -4
  9. factorio_draftsman-3.3.0/draftsman/data/entities.pkl +0 -0
  10. factorio_draftsman-3.3.0/draftsman/data/equipment.pkl +0 -0
  11. factorio_draftsman-3.3.0/draftsman/data/fluids.pkl +0 -0
  12. factorio_draftsman-3.3.0/draftsman/data/instruments.pkl +0 -0
  13. factorio_draftsman-3.3.0/draftsman/data/items.pkl +0 -0
  14. factorio_draftsman-3.3.0/draftsman/data/mods.pkl +0 -0
  15. factorio_draftsman-3.3.0/draftsman/data/modules.pkl +0 -0
  16. factorio_draftsman-3.3.0/draftsman/data/planets.pkl +0 -0
  17. factorio_draftsman-3.3.0/draftsman/data/qualities.pkl +0 -0
  18. factorio_draftsman-3.3.0/draftsman/data/recipes.pkl +0 -0
  19. factorio_draftsman-3.3.0/draftsman/data/signals.pkl +0 -0
  20. factorio_draftsman-3.3.0/draftsman/data/tiles.pkl +0 -0
  21. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/environment/mod_list.py +3 -1
  22. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/environment/update.py +6 -4
  23. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/info.json +1 -1
  24. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/circuit-network.lua +8 -111
  25. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/combinator-pictures.lua +33 -33
  26. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/entities.lua +55 -9
  27. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/sounds.lua +15 -10
  28. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/trains.lua +2 -2
  29. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/transport-belts.lua +21 -3
  30. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/trees.lua +4 -2
  31. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/item.lua +13 -0
  32. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/circuit-connector-generated-definitions.lua +10 -0
  33. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/circuit-connector-sprites.lua +1 -0
  34. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/dataloader.lua +9 -4
  35. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/meld.lua +1 -0
  36. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/production-score.lua +21 -27
  37. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/story.lua +5 -5
  38. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/style.lua +94 -1
  39. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/utility-constants.lua +2 -0
  40. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/utility-sounds.lua +1 -0
  41. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/elevated-rails/info.json +1 -1
  42. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/elevated-rails/prototypes/entity/elevated-rails.lua +1 -1
  43. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/info.json +1 -1
  44. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/prototypes/recycling.lua +7 -2
  45. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/info.json +1 -1
  46. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/enemies.lua +6 -6
  47. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/entities.lua +2 -0
  48. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/gleba-enemy-animations.lua +4 -4
  49. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/sounds.lua +24 -23
  50. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/transport-belts.lua +7 -1
  51. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/planet.lua +4 -0
  52. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/technology.lua +3 -3
  53. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/ammo_turret.py +1 -2
  54. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/arithmetic_combinator.py +1 -2
  55. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/assembling_machine.py +0 -2
  56. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/asteroid_collector.py +0 -2
  57. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/boiler.py +0 -2
  58. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/burner_generator.py +0 -2
  59. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/constant_combinator.py +77 -3
  60. factorio_draftsman-3.3.0/draftsman/prototypes/curved_rail_a.py +98 -0
  61. factorio_draftsman-3.3.0/draftsman/prototypes/curved_rail_b.py +98 -0
  62. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/decider_combinator.py +0 -2
  63. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/electric_energy_interface.py +1 -2
  64. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/elevated_curved_rail_a.py +3 -0
  65. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/elevated_curved_rail_b.py +3 -0
  66. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/elevated_half_diagonal_rail.py +3 -0
  67. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/elevated_straight_rail.py +4 -2
  68. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/fluid_turret.py +0 -2
  69. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/furnace.py +0 -2
  70. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/fusion_generator.py +0 -2
  71. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/gate.py +0 -2
  72. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/generator.py +0 -2
  73. factorio_draftsman-3.3.0/draftsman/prototypes/half_diagonal_rail.py +64 -0
  74. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/inserter.py +0 -2
  75. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/legacy_curved_rail.py +1 -2
  76. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/legacy_straight_rail.py +1 -2
  77. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/linked_belt.py +0 -2
  78. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/loader.py +0 -2
  79. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/locomotive.py +0 -2
  80. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/mining_drill.py +0 -2
  81. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/offshore_pump.py +0 -2
  82. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/pump.py +0 -2
  83. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/rail_chain_signal.py +0 -2
  84. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/rail_signal.py +0 -2
  85. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/rail_support.py +6 -0
  86. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/rocket_silo.py +1 -2
  87. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/selector_combinator.py +1 -3
  88. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/simple_entity_with_force.py +0 -2
  89. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/simple_entity_with_owner.py +0 -2
  90. factorio_draftsman-3.3.0/draftsman/prototypes/splitter.py +263 -0
  91. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/storage_tank.py +0 -2
  92. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/straight_rail.py +17 -21
  93. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/train_stop.py +1 -2
  94. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/transport_belt.py +0 -2
  95. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/underground_belt.py +0 -2
  96. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/underground_pipe.py +0 -2
  97. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/valve.py +34 -36
  98. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/wall.py +0 -2
  99. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/signatures.py +29 -19
  100. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/utils.py +0 -19
  101. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0/factorio_draftsman.egg-info}/PKG-INFO +3 -25
  102. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/factorio_draftsman.egg-info/requires.txt +1 -1
  103. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/pyproject.toml +4 -4
  104. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_association.py +0 -1
  105. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_blueprintable.py +0 -1
  106. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_data.py +1 -2
  107. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_deconstruction_planner.py +2 -2
  108. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_entity.py +1 -3
  109. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_entity_list.py +1 -1
  110. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_group.py +3 -3
  111. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_tile.py +1 -1
  112. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_tile_list.py +1 -1
  113. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_train_configuration.py +0 -1
  114. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_utils.py +1 -1
  115. factorio_draftsman-3.3.0/test/test_version.py +9 -0
  116. factorio_draftsman-3.1.1/draftsman/_version.py +0 -4
  117. factorio_draftsman-3.1.1/draftsman/data/entities.pkl +0 -0
  118. factorio_draftsman-3.1.1/draftsman/data/equipment.pkl +0 -0
  119. factorio_draftsman-3.1.1/draftsman/data/fluids.pkl +0 -0
  120. factorio_draftsman-3.1.1/draftsman/data/instruments.pkl +0 -0
  121. factorio_draftsman-3.1.1/draftsman/data/items.pkl +0 -0
  122. factorio_draftsman-3.1.1/draftsman/data/mods.pkl +0 -0
  123. factorio_draftsman-3.1.1/draftsman/data/modules.pkl +0 -0
  124. factorio_draftsman-3.1.1/draftsman/data/planets.pkl +0 -0
  125. factorio_draftsman-3.1.1/draftsman/data/qualities.pkl +0 -0
  126. factorio_draftsman-3.1.1/draftsman/data/recipes.pkl +0 -0
  127. factorio_draftsman-3.1.1/draftsman/data/signals.pkl +0 -0
  128. factorio_draftsman-3.1.1/draftsman/data/tiles.pkl +0 -0
  129. factorio_draftsman-3.1.1/draftsman/prototypes/curved_rail_a.py +0 -36
  130. factorio_draftsman-3.1.1/draftsman/prototypes/curved_rail_b.py +0 -36
  131. factorio_draftsman-3.1.1/draftsman/prototypes/half_diagonal_rail.py +0 -32
  132. factorio_draftsman-3.1.1/draftsman/prototypes/splitter.py +0 -99
  133. factorio_draftsman-3.1.1/test/test_version.py +0 -9
  134. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/LICENSE +0 -0
  135. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/MANIFEST.in +0 -0
  136. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/README.md +0 -0
  137. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/__init__.py +0 -0
  138. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/blueprintable.py +0 -0
  139. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/__init__.py +0 -0
  140. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/association.py +0 -0
  141. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/blueprint.py +0 -0
  142. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/blueprint_book.py +0 -0
  143. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/blueprintable.py +0 -0
  144. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/collection.py +0 -0
  145. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/collision_set.py +0 -0
  146. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/deconstruction_planner.py +0 -0
  147. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/entity_like.py +0 -0
  148. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/entity_list.py +0 -0
  149. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/exportable.py +0 -0
  150. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/group.py +0 -0
  151. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/__init__.py +0 -0
  152. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/artillery_auto_target.py +0 -0
  153. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/circuit_condition.py +0 -0
  154. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/circuit_connectable.py +0 -0
  155. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/circuit_enable.py +0 -0
  156. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/circuit_read_contents.py +0 -0
  157. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/circuit_read_hand.py +0 -0
  158. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/circuit_read_resource.py +0 -0
  159. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/circuit_set_filters.py +0 -0
  160. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/color.py +0 -0
  161. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/control_behavior.py +0 -0
  162. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/crafting_machine.py +0 -0
  163. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/energy_source.py +0 -0
  164. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/equipment_grid.py +0 -0
  165. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/filters.py +0 -0
  166. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/input_ingredients.py +0 -0
  167. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/inventory.py +0 -0
  168. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/io_type.py +0 -0
  169. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/logistic_condition.py +0 -0
  170. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/mode_of_operation.py +0 -0
  171. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/modules.py +0 -0
  172. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/player_description.py +0 -0
  173. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/power_connectable.py +0 -0
  174. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/read_ammo.py +0 -0
  175. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/read_rail_signal.py +0 -0
  176. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/recipe.py +0 -0
  177. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/request_filters.py +0 -0
  178. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/stack_size.py +0 -0
  179. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/variation.py +0 -0
  180. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/mixins/vehicle.py +0 -0
  181. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/rail_planner.py +0 -0
  182. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/schedule_list.py +0 -0
  183. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/spatial_data_structure.py +0 -0
  184. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/spatial_like.py +0 -0
  185. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/tile.py +0 -0
  186. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/tile_list.py +0 -0
  187. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/train_configuration.py +0 -0
  188. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/transformable.py +0 -0
  189. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/upgrade_planner.py +0 -0
  190. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/classes/vector.py +0 -0
  191. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/compatibility/defines.lua +0 -0
  192. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/compatibility/interface.lua +0 -0
  193. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/compatibility/serpent.lua +0 -0
  194. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/compatibility/settings.lua +0 -0
  195. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/constants.py +0 -0
  196. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/data/__init__.py +0 -0
  197. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/data/entities.py +0 -0
  198. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/data/equipment.py +0 -0
  199. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/data/fluids.py +0 -0
  200. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/data/instruments.py +0 -0
  201. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/data/items.py +0 -0
  202. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/data/mods.py +0 -0
  203. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/data/modules.py +0 -0
  204. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/data/planets.py +0 -0
  205. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/data/qualities.py +0 -0
  206. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/data/recipes.py +0 -0
  207. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/data/signals.py +0 -0
  208. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/data/tiles.py +0 -0
  209. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/entity.py +0 -0
  210. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/environment/__init__.py +0 -0
  211. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/environment/mod_settings.py +0 -0
  212. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/environment/script.py +0 -0
  213. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/error.py +0 -0
  214. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/extras.py +0 -0
  215. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/data-updates.lua +0 -0
  216. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/data.lua +0 -0
  217. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/migrations/1.1.0.json +0 -0
  218. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/migrations/1.2.0 stack inserter rename.json +0 -0
  219. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/migrations/2.0.0-biter-egg.json +0 -0
  220. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/migrations/2.0.0-internal.json +0 -0
  221. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/migrations/2.0.0-internal2.json +0 -0
  222. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/migrations/2.0.0-internal3.json +0 -0
  223. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/migrations/2.0.0.json +0 -0
  224. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/migrations/2.0.0.lua +0 -0
  225. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/migrations/migrations.txt +0 -0
  226. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/achievements.lua +0 -0
  227. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/ambient-sounds.lua +0 -0
  228. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/autoplace-controls.lua +0 -0
  229. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/categories/ammo-category.lua +0 -0
  230. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/categories/equipment-category.lua +0 -0
  231. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/categories/fuel-category.lua +0 -0
  232. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/categories/module-category.lua +0 -0
  233. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/categories/quality.lua +0 -0
  234. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/categories/recipe-category.lua +0 -0
  235. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/categories/resource-category.lua +0 -0
  236. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/collision-layers.lua +0 -0
  237. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/custom-inputs.lua +0 -0
  238. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/damage-type.lua +0 -0
  239. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/decorative/decorative-trigger-effects.lua +0 -0
  240. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/decorative/decoratives.lua +0 -0
  241. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/demo.lua +0 -0
  242. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/artillery-cannon-muzzle-flash-shifting.lua +0 -0
  243. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/assemblerpipes.lua +0 -0
  244. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/atomic-bomb.lua +0 -0
  245. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/beacon-animations.lua +0 -0
  246. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/beams.lua +0 -0
  247. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/biter-ai-settings.lua +0 -0
  248. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/biter-animations.lua +0 -0
  249. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/biter-die-effects.lua +0 -0
  250. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/cargo-hatch.lua +0 -0
  251. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/cargo-pod-catalogue.lua +0 -0
  252. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/character-animations.lua +0 -0
  253. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/crash-site.lua +0 -0
  254. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/enemies.lua +0 -0
  255. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/enemy-autoplace-utils.lua +0 -0
  256. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/enemy-constants.lua +0 -0
  257. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/enemy-projectiles.lua +0 -0
  258. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/entity-util.lua +0 -0
  259. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/explosion-animations.lua +0 -0
  260. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/explosions.lua +0 -0
  261. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/factorio-logo.lua +0 -0
  262. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/fire.lua +0 -0
  263. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/flying-robots.lua +0 -0
  264. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/giga-cargo-hatch.lua +0 -0
  265. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/hit-effects.lua +0 -0
  266. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/laser-sounds.lua +0 -0
  267. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/mining-drill.lua +0 -0
  268. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/movement-triggers.lua +0 -0
  269. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/pipecovers.lua +0 -0
  270. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/projectiles.lua +0 -0
  271. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/pump-connector.lua +0 -0
  272. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/rail-pictures.lua +0 -0
  273. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/remnants.lua +0 -0
  274. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/resources.lua +0 -0
  275. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/rocket-projectile-pictures.lua +0 -0
  276. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/smoke-animations.lua +0 -0
  277. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/smoke.lua +0 -0
  278. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/spawner-animation.lua +0 -0
  279. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/spidertron-animations.lua +0 -0
  280. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/spidertron-light-positions.lua +0 -0
  281. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/spitter-animations.lua +0 -0
  282. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/turrets.lua +0 -0
  283. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/entity/worm-animations.lua +0 -0
  284. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/equipment-grid.lua +0 -0
  285. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/equipment.lua +0 -0
  286. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/factoriopedia-simulations.lua +0 -0
  287. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/factoriopedia-util.lua +0 -0
  288. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/fire-util.lua +0 -0
  289. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/fluid.lua +0 -0
  290. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/impact-deliver-category.lua +0 -0
  291. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/item-groups.lua +0 -0
  292. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/item-tints.lua +0 -0
  293. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/item_sounds.lua +0 -0
  294. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/map-gen-presets.lua +0 -0
  295. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/map-settings.lua +0 -0
  296. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/noise-expressions.lua +0 -0
  297. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/particle-animations.lua +0 -0
  298. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/particles.lua +0 -0
  299. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/planet/planet-map-gen.lua +0 -0
  300. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/planet/planet.lua +0 -0
  301. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/planet/procession-audio-catalogue-types.lua +0 -0
  302. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/planet/procession-graphic-catalogue-types.lua +0 -0
  303. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/planet/procession-style.lua +0 -0
  304. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/planet/procession.lua +0 -0
  305. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/planet/surface-property.lua +0 -0
  306. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/pollution.lua +0 -0
  307. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/recipe.lua +0 -0
  308. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/shortcuts.lua +0 -0
  309. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/signal.lua +0 -0
  310. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/technology.lua +0 -0
  311. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/tile/tile-collision-masks.lua +0 -0
  312. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/tile/tile-graphics.lua +0 -0
  313. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/tile/tile-pollution-values.lua +0 -0
  314. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/tile/tile-sounds.lua +0 -0
  315. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/tile/tile-trigger-effects.lua +0 -0
  316. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/tile/tiles.lua +0 -0
  317. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/tips-and-tricks-simulations.lua +0 -0
  318. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/tips-and-tricks.lua +0 -0
  319. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/trigger-target-types.lua +0 -0
  320. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/tutorials.lua +0 -0
  321. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/base/prototypes/utility-sprites.lua +0 -0
  322. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/backers.json +0 -0
  323. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/data.lua +0 -0
  324. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/info.json +0 -0
  325. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/autoplace_utils.lua +0 -0
  326. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/bonus-gui-ordering.lua +0 -0
  327. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/collision-mask-defaults.lua +0 -0
  328. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/collision-mask-util.lua +0 -0
  329. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/crash-site.lua +0 -0
  330. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/data-duplicate-checker.lua +0 -0
  331. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/event_handler.lua +0 -0
  332. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/kill-score.lua +0 -0
  333. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/math2d.lua +0 -0
  334. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/math3d.lua +0 -0
  335. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/mod-gui.lua +0 -0
  336. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/resource-autoplace.lua +0 -0
  337. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/silo-script.lua +0 -0
  338. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/sound-util.lua +0 -0
  339. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/space-finish-script.lua +0 -0
  340. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/surface-render-parameter-effects.lua +0 -0
  341. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/lualib/util.lua +0 -0
  342. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/burner-usage.lua +0 -0
  343. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/cursors.lua +0 -0
  344. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/editor-controller.lua +0 -0
  345. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/fonts.lua +0 -0
  346. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/god-controller.lua +0 -0
  347. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/noise-functions.lua +0 -0
  348. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/noise-programs.lua +0 -0
  349. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/parameters.lua +0 -0
  350. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/remote-controller.lua +0 -0
  351. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/spectator-controller.lua +0 -0
  352. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/unknown.lua +0 -0
  353. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/core/prototypes/utility-sprites.lua +0 -0
  354. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/elevated-rails/data.lua +0 -0
  355. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/elevated-rails/prototypes/base-data-updates.lua +0 -0
  356. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/elevated-rails/prototypes/entity/elevated-rail-pictures.lua +0 -0
  357. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/elevated-rails/prototypes/entity/explosions.lua +0 -0
  358. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/elevated-rails/prototypes/entity/remnants.lua +0 -0
  359. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/elevated-rails/prototypes/item/elevated-rails.lua +0 -0
  360. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/elevated-rails/prototypes/particles.lua +0 -0
  361. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/elevated-rails/prototypes/recipe/elevated-rails.lua +0 -0
  362. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/elevated-rails/prototypes/sloped-trains-updates.lua +0 -0
  363. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/elevated-rails/prototypes/technology/elevated-rails.lua +0 -0
  364. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/elevated-rails/prototypes/tips-and-tricks-simulations.lua +0 -0
  365. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/elevated-rails/prototypes/tips-and-tricks.lua +0 -0
  366. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/data-updates.lua +0 -0
  367. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/data.lua +0 -0
  368. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/prototypes/base-data-updates.lua +0 -0
  369. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/prototypes/entity/entity.lua +0 -0
  370. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/prototypes/entity/explosions.lua +0 -0
  371. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/prototypes/entity/recycler-pictures.lua +0 -0
  372. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/prototypes/entity/remnants.lua +0 -0
  373. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/prototypes/item.lua +0 -0
  374. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/prototypes/module-category.lua +0 -0
  375. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/prototypes/quality.lua +0 -0
  376. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/prototypes/recipe.lua +0 -0
  377. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/prototypes/signal.lua +0 -0
  378. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/prototypes/technology.lua +0 -0
  379. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/prototypes/tips-and-tricks-simulations.lua +0 -0
  380. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/quality/prototypes/tips-and-tricks.lua +0 -0
  381. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/base-data-updates.lua +0 -0
  382. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/data-updates.lua +0 -0
  383. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/data.lua +0 -0
  384. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/migrations/aquilo-tilesets.json +0 -0
  385. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/migrations/biolab.json +0 -0
  386. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/migrations/internal.json +0 -0
  387. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/migrations/jelly-yum-rename.json +0 -0
  388. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/migrations/shattered-planet.json +0 -0
  389. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/migrations/tungsten-belt-rename.json +0 -0
  390. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/achievements.lua +0 -0
  391. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/active-triggers.lua +0 -0
  392. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/ambient-sounds.lua +0 -0
  393. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/autoplace-controls.lua +0 -0
  394. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/burner-usage.lua +0 -0
  395. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/categories/ammo-category.lua +0 -0
  396. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/categories/fuel-category.lua +0 -0
  397. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/categories/recipe-category.lua +0 -0
  398. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/categories/resource-category.lua +0 -0
  399. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-aquilo.lua +0 -0
  400. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-fulgora.lua +0 -0
  401. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-gleba.lua +0 -0
  402. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-vulcanus.lua +0 -0
  403. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives.lua +0 -0
  404. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/agricultural-tower-crane.lua +0 -0
  405. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/asteroid-collector-pictures.lua +0 -0
  406. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/asteroid.lua +0 -0
  407. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/base-frozen-graphics.lua +0 -0
  408. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/beams.lua +0 -0
  409. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/big-mining-drill.lua +0 -0
  410. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/biochamber-pictures.lua +0 -0
  411. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/cargo-hatch.lua +0 -0
  412. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/cargo-pod-catalogue.lua +0 -0
  413. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/circuit-network.lua +0 -0
  414. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/crusher-pictures.lua +0 -0
  415. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/cryogenic-plant-pictures.lua +0 -0
  416. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/electromagnetic-plant-pictures.lua +0 -0
  417. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/explosion-animations.lua +0 -0
  418. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/explosions.lua +0 -0
  419. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/flying-robots.lua +0 -0
  420. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/foundry-pictures.lua +0 -0
  421. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/fusion-system-pictures.lua +0 -0
  422. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/giga-cargo-hatch.lua +0 -0
  423. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/gleba-ai-settings.lua +0 -0
  424. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/lightning-collector-graphics.lua +0 -0
  425. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/lightning-rod-graphics.lua +0 -0
  426. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/mech-armor-animations.lua +0 -0
  427. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/plants.lua +0 -0
  428. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/projectiles.lua +0 -0
  429. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/railgun-turret-pictures.lua +0 -0
  430. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/remnants.lua +0 -0
  431. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/resources.lua +0 -0
  432. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/smoke.lua +0 -0
  433. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/space-enemy-autoplace-utils.lua +0 -0
  434. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/space-platform-hub-cockpit.lua +0 -0
  435. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/trees.lua +0 -0
  436. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/entity/turrets.lua +0 -0
  437. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/equipment-grid.lua +0 -0
  438. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/equipment.lua +0 -0
  439. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/factoriopedia-simulations.lua +0 -0
  440. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/fluid.lua +0 -0
  441. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/item-effects.lua +0 -0
  442. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/item-groups.lua +0 -0
  443. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/item.lua +0 -0
  444. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/item_sounds.lua +0 -0
  445. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/particle-animations.lua +0 -0
  446. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/particles.lua +0 -0
  447. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/asteroid-spawn-definitions.lua +0 -0
  448. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/general-functions.lua +0 -0
  449. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/general-variables.lua +0 -0
  450. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/audio-events.lua +0 -0
  451. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/cloud-layers.lua +0 -0
  452. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-a.lua +0 -0
  453. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-b.lua +0 -0
  454. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-i.lua +0 -0
  455. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/rocket-layers.lua +0 -0
  456. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/space-layers.lua +0 -0
  457. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform.lua +0 -0
  458. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/audio-events.lua +0 -0
  459. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/cloud-layers.lua +0 -0
  460. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-a.lua +0 -0
  461. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-b.lua +0 -0
  462. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-i.lua +0 -0
  463. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/space-layers.lua +0 -0
  464. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet.lua +0 -0
  465. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/planet-aquilo-map-gen.lua +0 -0
  466. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/planet-fulgora-map-gen.lua +0 -0
  467. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/planet-gleba-map-gen.lua +0 -0
  468. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/planet-map-gen.lua +0 -0
  469. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/planet-vulcanus-map-gen.lua +0 -0
  470. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-aquilo.lua +0 -0
  471. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-fulgora.lua +0 -0
  472. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-gleba.lua +0 -0
  473. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-vulcanus.lua +0 -0
  474. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/procession-common.lua +0 -0
  475. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/planet/procession.lua +0 -0
  476. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/recipe.lua +0 -0
  477. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/spores.lua +0 -0
  478. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/surface.lua +0 -0
  479. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/tile/platform-tile-animations.lua +0 -0
  480. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/tile/tile-pollution-values.lua +0 -0
  481. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/tile/tile-sounds.lua +0 -0
  482. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/tile/tile-trigger-effects.lua +0 -0
  483. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/tile/tiles-aquilo.lua +0 -0
  484. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/tile/tiles-fulgora.lua +0 -0
  485. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/tile/tiles-gleba.lua +0 -0
  486. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/tile/tiles-vulcanus.lua +0 -0
  487. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/tile/tiles.lua +0 -0
  488. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/tips-and-tricks-simulations.lua +0 -0
  489. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/tips-and-tricks.lua +0 -0
  490. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/utility-sounds.lua +0 -0
  491. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-data/space-age/prototypes/utility-sprites.lua +0 -0
  492. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/factorio-mods/.gitignore +0 -0
  493. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/__init__.py +0 -0
  494. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/accumulator.py +0 -0
  495. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/agricultural_tower.py +0 -0
  496. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/artillery_turret.py +0 -0
  497. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/artillery_wagon.py +0 -0
  498. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/beacon.py +0 -0
  499. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/car.py +0 -0
  500. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/cargo_bay.py +0 -0
  501. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/cargo_landing_pad.py +0 -0
  502. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/cargo_wagon.py +0 -0
  503. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/container.py +0 -0
  504. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/display_panel.py +0 -0
  505. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/electric_pole.py +0 -0
  506. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/electric_turret.py +0 -0
  507. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/fluid_wagon.py +0 -0
  508. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/fusion_reactor.py +0 -0
  509. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/heat_interface.py +0 -0
  510. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/heat_pipe.py +0 -0
  511. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/infinity_container.py +0 -0
  512. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/infinity_pipe.py +0 -0
  513. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/lab.py +0 -0
  514. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/lamp.py +0 -0
  515. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/land_mine.py +0 -0
  516. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/lightning_attractor.py +0 -0
  517. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/linked_container.py +0 -0
  518. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/logistic_active_container.py +0 -0
  519. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/logistic_buffer_container.py +0 -0
  520. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/logistic_passive_container.py +0 -0
  521. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/logistic_request_container.py +0 -0
  522. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/logistic_storage_container.py +0 -0
  523. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/pipe.py +0 -0
  524. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/player_port.py +0 -0
  525. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/power_switch.py +0 -0
  526. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/programmable_speaker.py +0 -0
  527. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/radar.py +0 -0
  528. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/rail_ramp.py +0 -0
  529. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/reactor.py +0 -0
  530. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/roboport.py +0 -0
  531. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/solar_panel.py +0 -0
  532. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/space_platform_hub.py +0 -0
  533. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/spider_vehicle.py +0 -0
  534. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/prototypes/thruster.py +0 -0
  535. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/rail.py +0 -0
  536. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/serialization.py +0 -0
  537. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/tile.py +0 -0
  538. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/types.py +0 -0
  539. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/validators.py +0 -0
  540. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/draftsman/warning.py +0 -0
  541. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/factorio_draftsman.egg-info/SOURCES.txt +0 -0
  542. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/factorio_draftsman.egg-info/dependency_links.txt +0 -0
  543. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/factorio_draftsman.egg-info/entry_points.txt +0 -0
  544. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/factorio_draftsman.egg-info/top_level.txt +0 -0
  545. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/setup.cfg +0 -0
  546. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_all_factorio_versions.py +0 -0
  547. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_blueprint.py +0 -0
  548. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_blueprint_book.py +0 -0
  549. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_collision_set.py +0 -0
  550. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_constants.py +0 -0
  551. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_environment.py +0 -0
  552. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_examples.py +0 -0
  553. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_mixins.py +0 -0
  554. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_rail_planner.py +0 -0
  555. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_schedule.py +0 -0
  556. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_schedule_list.py +0 -0
  557. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_serialization.py +0 -0
  558. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_signatures.py +0 -0
  559. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_spatial_hash_map.py +0 -0
  560. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_upgrade_planner.py +0 -0
  561. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.0}/test/test_vector.py +0 -0
  562. {factorio_draftsman-3.1.1 → factorio_draftsman-3.3.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.1.1
3
+ Version: 3.3.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 License
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.3.0
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
@@ -0,0 +1,4 @@
1
+ # _version.py
2
+
3
+ __version__ = "3.3.0"
4
+ __version_info__ = (3, 3, 0)
@@ -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
- @position.validator
568
- @conditional(ValidationMode.MINIMUM)
569
- def _position_validator(self, _: attrs.Attribute, value: Vector):
570
- if self.double_grid_aligned:
571
- if self.tile_position.x % 2 == 1 or self.tile_position.y % 2 == 1:
572
- cast_position = Vector(
573
- math.floor(self.tile_position.x / 2) * 2,
574
- math.floor(self.tile_position.y / 2) * 2,
575
- )
576
- msg = (
577
- "Double-grid aligned entity is not placed along chunk grid; "
578
- "entity's tile position will be cast from {} to {} when "
579
- "imported".format(self.tile_position, cast_position)
580
- )
581
- warnings.warn(GridAlignmentWarning(msg))
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
 
@@ -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, first_call=None, **kwargs):
51
- # Make sure this is the first time calling pre-init (bugfix until attrs
52
- # is patched)
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
- static_collision_set = entities.collision_sets.get(name, None)
70
- _rotated_collision_sets[name] = {}
71
- for i in self.valid_directions:
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,
@@ -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, first_call=None, **kwargs):
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
  )
@@ -148,7 +148,7 @@ class TargetPrioritiesMixin(Exportable):
148
148
  draftsman_converters.get_version((2, 0)).add_hook_fns(
149
149
  TargetPrioritiesMixin,
150
150
  lambda fields: {
151
- "priority_list": fields.priority_list.name,
151
+ "priority-list": fields.priority_list.name,
152
152
  "ignore_unprioritized": fields.ignore_unprioritized.name,
153
153
  "set_priority_list": fields.set_priority_list.name,
154
154
  "set_ignore_unprioritized": fields.set_ignore_unprioritized.name,
@@ -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
- @attrs.define
305
- class Stop(Exportable):
306
- station: str = attrs.field(validator=instance_of(str))
307
- """
308
- The name of the station or planet that this train or space platform
309
- should stop at.
310
- """
311
- wait_conditions: WaitConditions = attrs.field(
312
- factory=WaitConditions,
313
- converter=WaitConditions,
314
- validator=instance_of(WaitConditions),
315
- )
316
- """
317
- A list of :py:class:`.WaitCondition` objects to evaluate at this
318
- particular stop.
319
- """
320
- allows_unloading: Optional[bool] = attrs.field(
321
- default=True, validator=instance_of(Optional[bool])
322
- )
323
- """
324
- Whether or not this stop permits this space platform to fulfill any
325
- requests at the planet it's stopped above. Only applies to space
326
- platform schedules.
327
- """
328
-
329
- @attrs.define
330
- class Interrupt(Exportable):
331
- name: str = attrs.field(validator=instance_of(str))
332
- """
333
- The name of this particular interrupt.
334
- """
335
- conditions: WaitConditions = attrs.field(
336
- factory=WaitConditions,
337
- converter=WaitConditions,
338
- validator=instance_of(WaitConditions),
339
- )
340
- """
341
- The set of conditions that need to pass in order for this interrupt
342
- to be triggered.
343
- """
344
- targets: list["Schedule.Stop"] = attrs.field(
345
- factory=list,
346
- # TODO: converter
347
- validator=instance_of(list["Schedule.Stop"]),
348
- )
349
- """
350
- The target schedule that the interrupt should execute if it's
351
- triggered.
352
- """
353
- inside_interrupt: bool = attrs.field(
354
- default=False,
355
- )
356
- """
357
- Whether or not this interrupt can be triggered midway through an
358
- already executing interrupt.
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[Stop] = attrs.field(
441
+ stops: list[ScheduleStop] = attrs.field(
379
442
  factory=list,
380
- validator=instance_of(list[Stop]),
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[Interrupt] = attrs.field(
454
+ interrupts: list[ScheduleInterrupt] = attrs.field(
392
455
  factory=list,
393
- validator=instance_of(list[Interrupt]),
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[Stop],
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
- if isinstance(
101
- item, (StraightRail, LegacyStraightRail, LegacyCurvedRail)
102
- ) and isinstance(
103
- overlapping_item, (StraightRail, LegacyStraightRail, LegacyCurvedRail)
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
@@ -90,7 +90,9 @@ class Mod:
90
90
 
91
91
  # Convert string dependencies into `Dependency` instances
92
92
  self.dependencies = [
93
- Dependency(flag=m[1], name=m[2], operation=m[3], version=m[4], reference=None)
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]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "base",
3
- "version": "2.0.66",
3
+ "version": "2.0.76",
4
4
  "title": "Base Mod",
5
5
  "author": "Wube Software",
6
6
  "contact": "dev@factorio.com",