factorio-draftsman 2.0.0__tar.gz → 2.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (568) hide show
  1. {factorio_draftsman-2.0.0/factorio_draftsman.egg-info → factorio_draftsman-2.0.1}/PKG-INFO +10 -2
  2. factorio_draftsman-2.0.1/draftsman/_factorio_version.py +4 -0
  3. factorio_draftsman-2.0.1/draftsman/_version.py +4 -0
  4. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/collection.py +17 -11
  5. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/entity.py +70 -1
  6. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/exportable.py +2 -0
  7. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/artillery_auto_target.py +50 -50
  8. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_condition.py +1 -1
  9. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_enable.py +1 -1
  10. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/control_behavior.py +5 -1
  11. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/filters.py +47 -8
  12. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/inventory.py +44 -17
  13. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/inventory_filter.py +15 -7
  14. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/request_filters.py +38 -20
  15. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/stack_size.py +1 -0
  16. factorio_draftsman-2.0.1/draftsman/data/entities.pkl +0 -0
  17. factorio_draftsman-2.0.1/draftsman/data/fluids.pkl +0 -0
  18. factorio_draftsman-2.0.1/draftsman/data/instruments.pkl +0 -0
  19. factorio_draftsman-2.0.1/draftsman/data/items.pkl +0 -0
  20. factorio_draftsman-2.0.1/draftsman/data/mods.pkl +0 -0
  21. factorio_draftsman-2.0.1/draftsman/data/modules.pkl +0 -0
  22. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/modules.py +0 -2
  23. factorio_draftsman-2.0.1/draftsman/data/planets.pkl +0 -0
  24. factorio_draftsman-2.0.1/draftsman/data/planets.py +38 -0
  25. factorio_draftsman-2.0.1/draftsman/data/recipes.pkl +0 -0
  26. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/recipes.py +10 -11
  27. factorio_draftsman-2.0.1/draftsman/data/signals.pkl +0 -0
  28. factorio_draftsman-2.0.1/draftsman/data/tiles.pkl +0 -0
  29. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/environment/mod_list.py +18 -6
  30. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/environment/script.py +3 -2
  31. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/data-updates.lua +2 -1
  32. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/info.json +1 -1
  33. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/achievements.lua +2 -0
  34. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/decorative/decoratives.lua +36 -24
  35. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/atomic-bomb.lua +0 -6
  36. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/beams.lua +3 -3
  37. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/biter-animations.lua +0 -13
  38. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/circuit-network.lua +11 -14
  39. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/crash-site.lua +16 -4
  40. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/enemies.lua +4 -4
  41. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/enemy-projectiles.lua +2 -1
  42. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/entities.lua +180 -92
  43. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/explosion-animations.lua +3 -2
  44. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/fire.lua +3 -3
  45. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/flying-robots.lua +0 -1
  46. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/mining-drill.lua +4 -5
  47. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/projectiles.lua +2 -1
  48. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/resources.lua +13 -43
  49. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/sounds.lua +103 -68
  50. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/spitter-animations.lua +1 -14
  51. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/trains.lua +32 -14
  52. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/transport-belts.lua +6 -9
  53. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/turrets.lua +6 -6
  54. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/worm-animations.lua +16 -12
  55. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/item-groups.lua +25 -1
  56. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/item.lua +53 -31
  57. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/planet/planet.lua +3 -3
  58. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/recipe.lua +10 -0
  59. factorio_draftsman-2.0.1/draftsman/factorio-data/base/prototypes/signal.lua +1079 -0
  60. factorio_draftsman-2.0.1/draftsman/factorio-data/base/prototypes/tile/tile-sounds.lua +237 -0
  61. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tile/tiles.lua +65 -224
  62. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/changelog.txt +560 -1
  63. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/backers.json +1 -1
  64. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/circuit-connector-generated-definitions.lua +51 -0
  65. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/circuit-connector-sprites.lua +1 -0
  66. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/collision-mask-defaults.lua +4 -0
  67. factorio_draftsman-2.0.1/draftsman/factorio-data/core/lualib/sound-util.lua +71 -0
  68. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/util.lua +52 -14
  69. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/style.lua +78 -4
  70. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/utility-constants.lua +12 -5
  71. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/utility-sounds.lua +14 -21
  72. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/utility-sprites.lua +10 -1
  73. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/info.json +1 -1
  74. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/sloped-trains-updates.lua +5 -2
  75. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/data-updates.lua +11 -6
  76. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/data.lua +2 -0
  77. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/info.json +1 -1
  78. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/entity/entity.lua +18 -9
  79. factorio_draftsman-2.0.1/draftsman/factorio-data/quality/prototypes/entity/explosions.lua +93 -0
  80. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/entity/recycler-pictures.lua +20 -20
  81. factorio_draftsman-2.0.1/draftsman/factorio-data/quality/prototypes/entity/remnants.lua +76 -0
  82. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/recycling.lua +7 -2
  83. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/base-data-updates.lua +44 -59
  84. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/info.json +1 -1
  85. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/achievements.lua +4 -0
  86. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-aquilo.lua +6 -7
  87. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-fulgora.lua +11 -9
  88. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-gleba.lua +66 -52
  89. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-vulcanus.lua +25 -31
  90. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/beams.lua +2 -2
  91. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/big-mining-drill.lua +4 -5
  92. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/enemies.lua +26 -15
  93. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/entities.lua +124 -99
  94. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/explosion-animations.lua +7 -7
  95. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/explosions.lua +185 -1
  96. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/plants.lua +1 -1
  97. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/remnants.lua +70 -1
  98. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/resources.lua +10 -10
  99. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/sounds.lua +133 -66
  100. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/transport-belts.lua +3 -4
  101. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/trees.lua +3 -3
  102. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/turrets.lua +8 -7
  103. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/item-effects.lua +6 -3
  104. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/item-groups.lua +13 -1
  105. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/item.lua +5 -3
  106. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/particles.lua +6 -6
  107. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-b.lua +1 -2
  108. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-aquilo.lua +7 -7
  109. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-fulgora.lua +7 -7
  110. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-gleba.lua +7 -7
  111. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-vulcanus.lua +7 -7
  112. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/procession.lua +6 -6
  113. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/recipe.lua +30 -30
  114. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/surface.lua +1 -1
  115. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/technology.lua +2 -2
  116. factorio_draftsman-2.0.1/draftsman/factorio-data/space-age/prototypes/tile/tile-sounds.lua +344 -0
  117. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/tiles-aquilo.lua +27 -56
  118. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/tiles-fulgora.lua +28 -110
  119. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/tiles-gleba.lua +109 -338
  120. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/tiles-vulcanus.lua +42 -122
  121. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/tiles.lua +6 -26
  122. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tips-and-tricks.lua +8 -104
  123. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/asteroid_collector.py +18 -11
  124. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/beacon.py +1 -1
  125. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/constant_combinator.py +6 -115
  126. factorio_draftsman-2.0.1/draftsman/prototypes/inserter.py +293 -0
  127. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/legacy_curved_rail.py +12 -12
  128. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/legacy_straight_rail.py +8 -8
  129. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/logistic_active_container.py +21 -1
  130. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/logistic_buffer_container.py +10 -4
  131. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/logistic_passive_container.py +24 -2
  132. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/logistic_request_container.py +25 -43
  133. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/logistic_storage_container.py +20 -1
  134. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/straight_rail.py +8 -8
  135. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/signatures.py +144 -4
  136. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/utils.py +30 -6
  137. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1/factorio_draftsman.egg-info}/PKG-INFO +10 -2
  138. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/factorio_draftsman.egg-info/SOURCES.txt +2 -0
  139. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_blueprint.py +0 -1
  140. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_entity.py +30 -1
  141. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_utils.py +1 -1
  142. factorio_draftsman-2.0.1/test/test_version.py +9 -0
  143. factorio_draftsman-2.0.0/draftsman/_factorio_version.py +0 -4
  144. factorio_draftsman-2.0.0/draftsman/_version.py +0 -4
  145. factorio_draftsman-2.0.0/draftsman/data/entities.pkl +0 -0
  146. factorio_draftsman-2.0.0/draftsman/data/fluids.pkl +0 -0
  147. factorio_draftsman-2.0.0/draftsman/data/instruments.pkl +0 -0
  148. factorio_draftsman-2.0.0/draftsman/data/items.pkl +0 -0
  149. factorio_draftsman-2.0.0/draftsman/data/mods.pkl +0 -0
  150. factorio_draftsman-2.0.0/draftsman/data/modules.pkl +0 -0
  151. factorio_draftsman-2.0.0/draftsman/data/planets.pkl +0 -0
  152. factorio_draftsman-2.0.0/draftsman/data/planets.py +0 -20
  153. factorio_draftsman-2.0.0/draftsman/data/recipes.pkl +0 -0
  154. factorio_draftsman-2.0.0/draftsman/data/signals.pkl +0 -0
  155. factorio_draftsman-2.0.0/draftsman/data/tiles.pkl +0 -0
  156. factorio_draftsman-2.0.0/draftsman/factorio-data/base/prototypes/signal.lua +0 -546
  157. factorio_draftsman-2.0.0/draftsman/factorio-data/base/prototypes/tile/tile-sounds.lua +0 -6
  158. factorio_draftsman-2.0.0/draftsman/factorio-data/core/lualib/sound-util.lua +0 -30
  159. factorio_draftsman-2.0.0/draftsman/factorio-data/space-age/prototypes/tile/tile-sounds.lua +0 -18
  160. factorio_draftsman-2.0.0/draftsman/prototypes/inserter.py +0 -105
  161. factorio_draftsman-2.0.0/test/test_version.py +0 -9
  162. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/LICENSE +0 -0
  163. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/Lib/site-packages/numpy/core/tests/data/astype_copy.pkl +0 -0
  164. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/MANIFEST.in +0 -0
  165. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/README.md +0 -0
  166. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/__init__.py +0 -0
  167. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/blueprintable.py +0 -0
  168. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/__init__.py +0 -0
  169. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/association.py +0 -0
  170. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/blueprint.py +0 -0
  171. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/blueprint_book.py +0 -0
  172. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/blueprintable.py +0 -0
  173. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/collision_set.py +0 -0
  174. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/deconstruction_planner.py +0 -0
  175. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/entity_like.py +0 -0
  176. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/entity_list.py +0 -0
  177. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/group.py +0 -0
  178. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/__init__.py +0 -0
  179. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/burner_energy_source.py +0 -0
  180. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_connectable.py +0 -0
  181. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_read_contents.py +0 -0
  182. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_read_hand.py +0 -0
  183. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_read_resource.py +0 -0
  184. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/circuit_set_filters.py +0 -0
  185. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/color.py +0 -0
  186. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/consumes_ammo.py +0 -0
  187. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/directional.py +0 -0
  188. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/double_grid_aligned.py +0 -0
  189. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/eight_way_directional.py +0 -0
  190. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/equipment_grid.py +0 -0
  191. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/input_ingredients.py +0 -0
  192. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/io_type.py +0 -0
  193. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/logistic_condition.py +0 -0
  194. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/mode_of_operation.py +0 -0
  195. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/modules.py +0 -0
  196. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/orientation.py +0 -0
  197. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/player_description.py +0 -0
  198. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/power_connectable.py +0 -0
  199. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/read_ammo.py +0 -0
  200. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/read_rail_signal.py +0 -0
  201. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/recipe.py +0 -0
  202. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/request_items.py +0 -0
  203. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/target_priorities.py +0 -0
  204. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/mixins/vehicle.py +0 -0
  205. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/rail_planner.py +0 -0
  206. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/schedule.py +0 -0
  207. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/schedule_list.py +0 -0
  208. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/spatial_data_structure.py +0 -0
  209. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/spatial_hashmap.py +0 -0
  210. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/spatial_like.py +0 -0
  211. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/tile.py +0 -0
  212. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/tile_list.py +0 -0
  213. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/train_configuration.py +0 -0
  214. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/transformable.py +0 -0
  215. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/upgrade_planner.py +0 -0
  216. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/classes/vector.py +0 -0
  217. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/compatibility/defines.lua +0 -0
  218. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/compatibility/interface.lua +0 -0
  219. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/compatibility/serpent.lua +0 -0
  220. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/compatibility/settings.lua +0 -0
  221. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/constants.py +0 -0
  222. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/__init__.py +0 -0
  223. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/entities.py +0 -0
  224. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/fluids.py +0 -0
  225. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/instruments.py +0 -0
  226. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/items.py +0 -0
  227. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/mods.py +0 -0
  228. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/signals.py +0 -0
  229. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/data/tiles.py +0 -0
  230. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/entity.py +0 -0
  231. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/env.py +0 -0
  232. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/environment/__init__.py +0 -0
  233. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/environment/mod_settings.py +0 -0
  234. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/environment/update.py +0 -0
  235. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/error.py +0 -0
  236. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/extras.py +0 -0
  237. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/.git +0 -0
  238. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/README.md +0 -0
  239. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/data.lua +0 -0
  240. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/1.1.0.json +0 -0
  241. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/1.2.0 stack inserter rename.json +0 -0
  242. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/2.0.0-biter-egg.json +0 -0
  243. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/2.0.0-internal.json +0 -0
  244. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/2.0.0-internal2.json +0 -0
  245. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/2.0.0-internal3.json +0 -0
  246. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/2.0.0.json +0 -0
  247. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/2.0.0.lua +0 -0
  248. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/migrations/migrations.txt +0 -0
  249. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/ambient-sounds.lua +0 -0
  250. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/autoplace-controls.lua +0 -0
  251. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/categories/ammo-category.lua +0 -0
  252. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/categories/equipment-category.lua +0 -0
  253. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/categories/fuel-category.lua +0 -0
  254. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/categories/module-category.lua +0 -0
  255. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/categories/quality.lua +0 -0
  256. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/categories/recipe-category.lua +0 -0
  257. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/categories/resource-category.lua +0 -0
  258. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/collision-layers.lua +0 -0
  259. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/custom-inputs.lua +0 -0
  260. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/damage-type.lua +0 -0
  261. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/decorative/decorative-trigger-effects.lua +0 -0
  262. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/demo.lua +0 -0
  263. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/artillery-cannon-muzzle-flash-shifting.lua +0 -0
  264. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/assemblerpipes.lua +0 -0
  265. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/beacon-animations.lua +0 -0
  266. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/biter-ai-settings.lua +0 -0
  267. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/biter-die-effects.lua +0 -0
  268. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/cargo-hatch.lua +0 -0
  269. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/cargo-pod-catalogue.lua +0 -0
  270. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/character-animations.lua +0 -0
  271. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/combinator-pictures.lua +0 -0
  272. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/enemy-autoplace-utils.lua +0 -0
  273. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/enemy-constants.lua +0 -0
  274. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/entity-util.lua +0 -0
  275. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/explosions.lua +0 -0
  276. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/factorio-logo.lua +0 -0
  277. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/giga-cargo-hatch.lua +0 -0
  278. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/hit-effects.lua +0 -0
  279. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/laser-sounds.lua +0 -0
  280. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/movement-triggers.lua +0 -0
  281. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/pipecovers.lua +0 -0
  282. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/pump-connector.lua +0 -0
  283. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/rail-pictures.lua +0 -0
  284. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/remnants.lua +0 -0
  285. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/rocket-projectile-pictures.lua +0 -0
  286. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/smoke-animations.lua +0 -0
  287. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/smoke.lua +0 -0
  288. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/spawner-animation.lua +0 -0
  289. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/spidertron-animations.lua +0 -0
  290. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/spidertron-light-positions.lua +0 -0
  291. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/entity/trees.lua +0 -0
  292. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/equipment-grid.lua +0 -0
  293. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/equipment.lua +0 -0
  294. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/factoriopedia-simulations.lua +0 -0
  295. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/factoriopedia-util.lua +0 -0
  296. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/fire-util.lua +0 -0
  297. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/fluid.lua +0 -0
  298. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/impact-deliver-category.lua +0 -0
  299. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/item-tints.lua +0 -0
  300. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/item_sounds.lua +0 -0
  301. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/map-gen-presets.lua +0 -0
  302. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/map-settings.lua +0 -0
  303. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/noise-expressions.lua +0 -0
  304. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/particle-animations.lua +0 -0
  305. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/particles.lua +0 -0
  306. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/planet/planet-map-gen.lua +0 -0
  307. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/planet/procession-audio-catalogue-types.lua +0 -0
  308. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/planet/procession-graphic-catalogue-types.lua +0 -0
  309. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/planet/procession-style.lua +0 -0
  310. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/planet/procession.lua +0 -0
  311. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/planet/surface-property.lua +0 -0
  312. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/pollution.lua +0 -0
  313. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/shortcuts.lua +0 -0
  314. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/technology.lua +0 -0
  315. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tile/tile-collision-masks.lua +0 -0
  316. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tile/tile-graphics.lua +0 -0
  317. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tile/tile-pollution-values.lua +0 -0
  318. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tile/tile-trigger-effects.lua +0 -0
  319. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tips-and-tricks-simulations.lua +0 -0
  320. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tips-and-tricks.lua +0 -0
  321. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/trigger-target-types.lua +0 -0
  322. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/tutorials.lua +0 -0
  323. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/base/prototypes/utility-sprites.lua +0 -0
  324. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/data.lua +0 -0
  325. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/info.json +0 -0
  326. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/autoplace_utils.lua +0 -0
  327. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/bonus-gui-ordering.lua +0 -0
  328. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/collision-mask-util.lua +0 -0
  329. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/crash-site.lua +0 -0
  330. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/data-duplicate-checker.lua +0 -0
  331. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/dataloader.lua +0 -0
  332. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/event_handler.lua +0 -0
  333. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/kill-score.lua +0 -0
  334. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/math2d.lua +0 -0
  335. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/math3d.lua +0 -0
  336. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/meld.lua +0 -0
  337. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/mod-gui.lua +0 -0
  338. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/production-score.lua +0 -0
  339. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/resource-autoplace.lua +0 -0
  340. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/silo-script.lua +0 -0
  341. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/space-finish-script.lua +0 -0
  342. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/story.lua +0 -0
  343. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/lualib/surface-render-parameter-effects.lua +0 -0
  344. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/burner-usage.lua +0 -0
  345. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/cursors.lua +0 -0
  346. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/editor-controller.lua +0 -0
  347. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/fonts.lua +0 -0
  348. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/god-controller.lua +0 -0
  349. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/noise-functions.lua +0 -0
  350. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/noise-programs.lua +0 -0
  351. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/parameters.lua +0 -0
  352. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/remote-controller.lua +0 -0
  353. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/spectator-controller.lua +0 -0
  354. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/core/prototypes/unknown.lua +0 -0
  355. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/credits.txt +0 -0
  356. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/data.lua +0 -0
  357. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/base-data-updates.lua +0 -0
  358. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/entity/elevated-rail-pictures.lua +0 -0
  359. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/entity/elevated-rails.lua +0 -0
  360. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/entity/explosions.lua +0 -0
  361. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/entity/remnants.lua +0 -0
  362. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/item/elevated-rails.lua +0 -0
  363. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/particles.lua +0 -0
  364. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/recipe/elevated-rails.lua +0 -0
  365. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/technology/elevated-rails.lua +0 -0
  366. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/tips-and-tricks-simulations.lua +0 -0
  367. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/elevated-rails/prototypes/tips-and-tricks.lua +0 -0
  368. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/map-gen-settings.example.json +0 -0
  369. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/map-settings.example.json +0 -0
  370. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/base-data-updates.lua +0 -0
  371. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/item.lua +0 -0
  372. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/module-category.lua +0 -0
  373. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/quality.lua +0 -0
  374. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/recipe.lua +0 -0
  375. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/signal.lua +0 -0
  376. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/technology.lua +0 -0
  377. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/tips-and-tricks-simulations.lua +0 -0
  378. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/quality/prototypes/tips-and-tricks.lua +0 -0
  379. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/server-settings.example.json +0 -0
  380. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/server-whitelist.example.json +0 -0
  381. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/data-updates.lua +0 -0
  382. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/data.lua +0 -0
  383. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/migrations/aquilo-tilesets.json +0 -0
  384. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/migrations/biolab.json +0 -0
  385. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/migrations/internal.json +0 -0
  386. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/migrations/jelly-yum-rename.json +0 -0
  387. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/migrations/shattered-planet.json +0 -0
  388. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/migrations/tungsten-belt-rename.json +0 -0
  389. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/active-triggers.lua +0 -0
  390. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/ambient-sounds.lua +0 -0
  391. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/autoplace-controls.lua +0 -0
  392. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/burner-usage.lua +0 -0
  393. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/categories/ammo-category.lua +0 -0
  394. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/categories/fuel-category.lua +0 -0
  395. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/categories/recipe-category.lua +0 -0
  396. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/categories/resource-category.lua +0 -0
  397. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives.lua +0 -0
  398. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/agricultural-tower-crane.lua +0 -0
  399. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/asteroid-collector-pictures.lua +0 -0
  400. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/asteroid.lua +0 -0
  401. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/base-frozen-graphics.lua +0 -0
  402. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/biochamber-pictures.lua +0 -0
  403. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/cargo-hatch.lua +0 -0
  404. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/cargo-pod-catalogue.lua +0 -0
  405. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/circuit-network.lua +0 -0
  406. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/crusher-pictures.lua +0 -0
  407. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/cryogenic-plant-pictures.lua +0 -0
  408. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/electromagnetic-plant-pictures.lua +0 -0
  409. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/flying-robots.lua +0 -0
  410. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/foundry-pictures.lua +0 -0
  411. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/fusion-system-pictures.lua +0 -0
  412. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/giga-cargo-hatch.lua +0 -0
  413. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/gleba-ai-settings.lua +0 -0
  414. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/gleba-enemy-animations.lua +0 -0
  415. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/lightning-collector-graphics.lua +0 -0
  416. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/lightning-rod-graphics.lua +0 -0
  417. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/mech-armor-animations.lua +0 -0
  418. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/projectiles.lua +0 -0
  419. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/railgun-turret-pictures.lua +0 -0
  420. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/smoke.lua +0 -0
  421. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/space-enemy-autoplace-utils.lua +0 -0
  422. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/entity/space-platform-hub-cockpit.lua +0 -0
  423. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/equipment-grid.lua +0 -0
  424. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/equipment.lua +0 -0
  425. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/factoriopedia-simulations.lua +0 -0
  426. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/fluid.lua +0 -0
  427. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/item_sounds.lua +0 -0
  428. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/particle-animations.lua +0 -0
  429. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/asteroid-spawn-definitions.lua +0 -0
  430. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/general-functions.lua +0 -0
  431. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/general-variables.lua +0 -0
  432. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/audio-events.lua +0 -0
  433. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/cloud-layers.lua +0 -0
  434. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-a.lua +0 -0
  435. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-i.lua +0 -0
  436. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/rocket-layers.lua +0 -0
  437. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/space-layers.lua +0 -0
  438. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform.lua +0 -0
  439. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/audio-events.lua +0 -0
  440. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/cloud-layers.lua +0 -0
  441. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-a.lua +0 -0
  442. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-b.lua +0 -0
  443. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-i.lua +0 -0
  444. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/space-layers.lua +0 -0
  445. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet.lua +0 -0
  446. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/planet-aquilo-map-gen.lua +0 -0
  447. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/planet-fulgora-map-gen.lua +0 -0
  448. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/planet-gleba-map-gen.lua +0 -0
  449. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/planet-map-gen.lua +0 -0
  450. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/planet-vulcanus-map-gen.lua +0 -0
  451. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/planet.lua +0 -0
  452. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/planet/procession-common.lua +0 -0
  453. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/spores.lua +0 -0
  454. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/platform-tile-animations.lua +0 -0
  455. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/tile-pollution-values.lua +0 -0
  456. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tile/tile-trigger-effects.lua +0 -0
  457. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/tips-and-tricks-simulations.lua +0 -0
  458. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/utility-sounds.lua +0 -0
  459. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-data/space-age/prototypes/utility-sprites.lua +0 -0
  460. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/factorio-mods/.gitignore +0 -0
  461. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/__init__.py +0 -0
  462. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/accumulator.py +0 -0
  463. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/agricultural_tower.py +0 -0
  464. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/ammo_turret.py +0 -0
  465. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/arithmetic_combinator.py +0 -0
  466. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/artillery_turret.py +0 -0
  467. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/artillery_wagon.py +0 -0
  468. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/assembling_machine.py +0 -0
  469. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/boiler.py +0 -0
  470. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/burner_generator.py +0 -0
  471. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/car.py +0 -0
  472. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/cargo_bay.py +0 -0
  473. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/cargo_landing_pad.py +0 -0
  474. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/cargo_wagon.py +0 -0
  475. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/container.py +0 -0
  476. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/curved_rail_a.py +0 -0
  477. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/curved_rail_b.py +0 -0
  478. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/decider_combinator.py +0 -0
  479. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/display_panel.py +0 -0
  480. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/electric_energy_interface.py +0 -0
  481. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/electric_pole.py +0 -0
  482. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/electric_turret.py +0 -0
  483. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/elevated_curved_rail_a.py +0 -0
  484. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/elevated_curved_rail_b.py +0 -0
  485. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/elevated_half_diagonal_rail.py +0 -0
  486. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/elevated_straight_rail.py +0 -0
  487. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/filter_inserter.py +0 -0
  488. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/fluid_turret.py +0 -0
  489. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/fluid_wagon.py +0 -0
  490. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/furnace.py +0 -0
  491. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/fusion_generator.py +0 -0
  492. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/fusion_reactor.py +0 -0
  493. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/gate.py +0 -0
  494. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/generator.py +0 -0
  495. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/half_diagonal_rail.py +0 -0
  496. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/heat_interface.py +0 -0
  497. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/heat_pipe.py +0 -0
  498. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/infinity_container.py +0 -0
  499. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/infinity_pipe.py +0 -0
  500. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/lab.py +0 -0
  501. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/lamp.py +0 -0
  502. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/land_mine.py +0 -0
  503. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/lightning_attractor.py +0 -0
  504. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/linked_belt.py +0 -0
  505. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/linked_container.py +0 -0
  506. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/loader.py +0 -0
  507. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/locomotive.py +0 -0
  508. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/mining_drill.py +0 -0
  509. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/offshore_pump.py +0 -0
  510. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/pipe.py +0 -0
  511. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/player_port.py +0 -0
  512. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/power_switch.py +0 -0
  513. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/programmable_speaker.py +0 -0
  514. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/pump.py +0 -0
  515. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/radar.py +0 -0
  516. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/rail_chain_signal.py +0 -0
  517. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/rail_ramp.py +0 -0
  518. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/rail_signal.py +0 -0
  519. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/rail_support.py +0 -0
  520. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/reactor.py +0 -0
  521. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/roboport.py +0 -0
  522. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/rocket_silo.py +0 -0
  523. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/selector_combinator.py +0 -0
  524. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/simple_entity_with_force.py +0 -0
  525. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/simple_entity_with_owner.py +0 -0
  526. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/solar_panel.py +0 -0
  527. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/space_platform_hub.py +0 -0
  528. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/spider_vehicle.py +0 -0
  529. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/splitter.py +0 -0
  530. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/storage_tank.py +0 -0
  531. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/thruster.py +0 -0
  532. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/train_stop.py +0 -0
  533. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/transport_belt.py +0 -0
  534. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/turret.py +0 -0
  535. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/underground_belt.py +0 -0
  536. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/underground_pipe.py +0 -0
  537. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/prototypes/wall.py +0 -0
  538. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/rail.py +0 -0
  539. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/tile.py +0 -0
  540. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/types.py +0 -0
  541. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/draftsman/warning.py +0 -0
  542. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/factorio_draftsman.egg-info/dependency_links.txt +0 -0
  543. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/factorio_draftsman.egg-info/entry_points.txt +0 -0
  544. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/factorio_draftsman.egg-info/requires.txt +0 -0
  545. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/factorio_draftsman.egg-info/top_level.txt +0 -0
  546. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/pyproject.toml +0 -0
  547. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/setup.cfg +0 -0
  548. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/setup.py +0 -0
  549. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_association.py +0 -0
  550. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_blueprint_book.py +0 -0
  551. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_blueprintable.py +0 -0
  552. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_collision_set.py +0 -0
  553. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_data.py +0 -0
  554. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_deconstruction_planner.py +0 -0
  555. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_entity_list.py +0 -0
  556. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_environment.py +0 -0
  557. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_examples.py +0 -0
  558. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_group.py +0 -0
  559. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_mixins.py +0 -0
  560. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_rail_planner.py +0 -0
  561. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_schedule.py +0 -0
  562. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_schedule_list.py +0 -0
  563. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_spatial_hash_map.py +0 -0
  564. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_tile.py +0 -0
  565. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_tile_list.py +0 -0
  566. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_train_configuration.py +0 -0
  567. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_upgrade_planner.py +0 -0
  568. {factorio_draftsman-2.0.0 → factorio_draftsman-2.0.1}/test/test_vector.py +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: factorio-draftsman
3
- Version: 2.0.0
3
+ Version: 2.0.1
4
4
  Summary: A complete, well-tested, and up-to-date module to manipulate Factorio blueprint strings. Compatible with mods.
5
5
  Home-page: https://github.com/redruin1/factorio-draftsman
6
6
  Author: redruin1
@@ -19,6 +19,14 @@ Requires-Dist: GitPython>=3.1.43
19
19
  Requires-Dist: typing
20
20
  Requires-Dist: typing_extensions; python_version < "3.8"
21
21
  Requires-Dist: thefuzz
22
+ Dynamic: author
23
+ Dynamic: classifier
24
+ Dynamic: description
25
+ Dynamic: description-content-type
26
+ Dynamic: home-page
27
+ Dynamic: keywords
28
+ Dynamic: requires-dist
29
+ Dynamic: summary
22
30
 
23
31
  # factorio-draftsman
24
32
 
@@ -0,0 +1,4 @@
1
+ # _factorio_version.py
2
+
3
+ __factorio_version__ = "2.0.42.0"
4
+ __factorio_version_info__ = (2, 0, 42, 0)
@@ -0,0 +1,4 @@
1
+ # _version.py
2
+
3
+ __version__ = "2.0.1"
4
+ __version_info__ = (2, 0, 1)
@@ -795,19 +795,25 @@ class EntityCollection(metaclass=ABCMeta):
795
795
  # if not isinstance(location_2, tuple):
796
796
  # location_2 = (location_2, "input")
797
797
 
798
- if not isinstance(entity_1, EntityLike):
798
+ if isinstance(entity_1, EntityLike):
799
+ if entity_1 not in self.entities:
800
+ raise InvalidAssociationError(
801
+ "entity_1 ({}) not contained within this collection".format(
802
+ entity_1
803
+ )
804
+ )
805
+ else:
799
806
  entity_1 = self.entities[entity_1]
800
- if not isinstance(entity_2, EntityLike):
801
- entity_2 = self.entities[entity_2]
802
807
 
803
- if entity_1 not in self.entities:
804
- raise InvalidAssociationError(
805
- "entity_1 ({}) not contained within this collection".format(entity_1)
806
- )
807
- if entity_2 not in self.entities:
808
- raise InvalidAssociationError(
809
- "entity_2 ({}) not contained within this collection".format(entity_2)
810
- )
808
+ if isinstance(entity_2, EntityLike):
809
+ if entity_2 not in self.entities:
810
+ raise InvalidAssociationError(
811
+ "entity_2 ({}) not contained within this collection".format(
812
+ entity_2
813
+ )
814
+ )
815
+ else:
816
+ entity_2 = self.entities[entity_2]
811
817
 
812
818
  if color not in {"red", "green"}:
813
819
  raise InvalidWireTypeError(color)
@@ -22,7 +22,10 @@ from draftsman.signatures import (
22
22
  from draftsman.warning import UnknownEntityWarning
23
23
  from draftsman import utils, __factorio_version_info__
24
24
 
25
+ from draftsman.data.planets import get_surface_properties
26
+
25
27
  import copy
28
+ import math
26
29
  from pydantic import (
27
30
  ConfigDict,
28
31
  Field,
@@ -108,6 +111,16 @@ class Entity(Exportable, EntityLike):
108
111
  The internal ID of the entity.
109
112
  """,
110
113
  )
114
+ quality: Literal[
115
+ "normal", "uncommon", "rare", "epic", "legendary"
116
+ ] = Field( # TODO: determine these automatically
117
+ "normal",
118
+ description="""
119
+ The quality of the entity. Defaults to 'normal' when not specified,
120
+ or when quality is not present in the save being imported to /
121
+ exported from.
122
+ """,
123
+ )
111
124
  position: FloatPosition = Field(
112
125
  ...,
113
126
  description="""
@@ -188,6 +201,7 @@ class Entity(Exportable, EntityLike):
188
201
  self,
189
202
  name: Optional[str],
190
203
  similar_entities: list[str],
204
+ quality: Optional[str] = "normal",
191
205
  tile_position: IntPosition = (0, 0),
192
206
  id: str = None,
193
207
  validate: Union[
@@ -256,7 +270,13 @@ class Entity(Exportable, EntityLike):
256
270
  # **{"position": {"x": 0, "y": 0}, "entity_number": 0, **kwargs}
257
271
  # )
258
272
  self._root = type(self).Format.model_validate(
259
- {"name": name, "position": {"x": 0, "y": 0}, "entity_number": 0, **kwargs},
273
+ {
274
+ "name": name,
275
+ "quality": quality,
276
+ "position": {"x": 0, "y": 0},
277
+ "entity_number": 0,
278
+ **kwargs,
279
+ },
260
280
  strict=False,
261
281
  context={"construction": True, "mode": ValidationMode.NONE},
262
282
  )
@@ -276,6 +296,9 @@ class Entity(Exportable, EntityLike):
276
296
  # Name
277
297
  self.name = name
278
298
 
299
+ # Quality
300
+ self.quality = quality
301
+
279
302
  # ID (used in Blueprints and Groups)
280
303
  self.id = id
281
304
 
@@ -404,6 +427,26 @@ class Entity(Exportable, EntityLike):
404
427
 
405
428
  # =========================================================================
406
429
 
430
+ @property
431
+ def quality(self) -> str: # TODO: literals
432
+ """
433
+ The quality of this entity. Can modify certain other attributes of the
434
+ entity in (usually) positive ways.
435
+ """
436
+ return self._root.quality
437
+
438
+ @quality.setter
439
+ def quality(self, value: str) -> None: # TODO: literals
440
+ if self.validate_assignment:
441
+ result = attempt_and_reissue(
442
+ self, type(self).Format, self._root, "quality", value
443
+ )
444
+ self._root.quality = result
445
+ else:
446
+ self._root.quality = value
447
+
448
+ # =========================================================================
449
+
407
450
  @property
408
451
  def position(self) -> Vector:
409
452
  """
@@ -601,6 +644,20 @@ class Entity(Exportable, EntityLike):
601
644
 
602
645
  # =========================================================================
603
646
 
647
+ @property
648
+ def surface_conditions(self) -> Optional[dict]:
649
+ """
650
+ Gets the dictionary of surface constraints which apply when placing this
651
+ entity. If this entity has no constraints whatsoever, an empty
652
+ dictionary is returned. If this entity is unrecognized by Draftsman,
653
+ `None` is returned. Not exported; read only.
654
+ """
655
+ return entities.raw.get(self.name, {"surface_conditions": None}).get(
656
+ "surface_conditions", {}
657
+ )
658
+
659
+ # =========================================================================
660
+
604
661
  @property
605
662
  def tags(self) -> Optional[dict[str, Any]]:
606
663
  """
@@ -628,6 +685,18 @@ class Entity(Exportable, EntityLike):
628
685
 
629
686
  # =========================================================================
630
687
 
688
+ def is_placable_on(self, surface_name: str) -> True:
689
+ """
690
+ Check to see if this entity is placable on a particular planet/surface.
691
+ `surface_name` must be the name of a registered surface in `data.planets`.
692
+ If the `surface_properties` of this entity are unknown, then this
693
+ function always returns `True`.
694
+ """
695
+ surface_properties = get_surface_properties(surface_name)
696
+ return utils.passes_surface_conditions(
697
+ self.surface_conditions, surface_properties
698
+ )
699
+
631
700
  def validate(
632
701
  self, mode: ValidationMode = ValidationMode.STRICT, force: bool = False
633
702
  ) -> ValidationResult:
@@ -25,6 +25,8 @@ def attempt_and_reissue(
25
25
  "environment_version": __factorio_version_info__,
26
26
  **kwargs,
27
27
  }
28
+ if object.validate_assignment == ValidationMode.NONE:
29
+ context["construction"] = True
28
30
  try:
29
31
  result = format_model.__pydantic_validator__.validate_assignment(
30
32
  target,
@@ -1,50 +1,50 @@
1
- # artillery_auto_target.py
2
-
3
- from draftsman.classes.exportable import attempt_and_reissue
4
-
5
- from pydantic import BaseModel, Field
6
- from typing import Optional
7
-
8
-
9
- class ArtilleryAutoTargetMixin:
10
- """
11
- Gives the entity the "artillery_auto_targeting" parameter. Used by artillery
12
- turrets and artillery wagons.
13
- """
14
-
15
- class Format(BaseModel):
16
- artillery_auto_targeting: Optional[bool] = Field(
17
- True,
18
- description="""
19
- Whether or not this turret automatically targets enemy structures
20
- in its range.
21
- """,
22
- )
23
-
24
- def __init__(self, name: str, similar_entities: list[str], **kwargs):
25
- super().__init__(name, similar_entities, **kwargs)
26
-
27
- self.auto_target = kwargs.get("artillery_auto_targeting", None)
28
-
29
- # =========================================================================
30
-
31
- @property
32
- def auto_target(self) -> bool:
33
- """
34
- TODO
35
- """
36
- return self._root.artillery_auto_targeting
37
-
38
- @auto_target.setter
39
- def auto_target(self, value: Optional[bool]) -> None:
40
- if self.validate_assignment:
41
- result = attempt_and_reissue(
42
- self,
43
- self.Format,
44
- self._root,
45
- "artillery_auto_targeting",
46
- value,
47
- )
48
- self._root.artillery_auto_targeting = result
49
- else:
50
- self._root.artillery_auto_targeting = value
1
+ # artillery_auto_target.py
2
+
3
+ from draftsman.classes.exportable import attempt_and_reissue
4
+
5
+ from pydantic import BaseModel, Field
6
+ from typing import Optional
7
+
8
+
9
+ class ArtilleryAutoTargetMixin:
10
+ """
11
+ Gives the entity the "artillery_auto_targeting" parameter. Used by artillery
12
+ turrets and artillery wagons.
13
+ """
14
+
15
+ class Format(BaseModel):
16
+ artillery_auto_targeting: Optional[bool] = Field(
17
+ True,
18
+ description="""
19
+ Whether or not this turret automatically targets enemy structures
20
+ in its range.
21
+ """,
22
+ )
23
+
24
+ def __init__(self, name: str, similar_entities: list[str], **kwargs):
25
+ super().__init__(name, similar_entities, **kwargs)
26
+
27
+ self.auto_target = kwargs.get("artillery_auto_targeting", None)
28
+
29
+ # =========================================================================
30
+
31
+ @property
32
+ def auto_target(self) -> bool:
33
+ """
34
+ TODO
35
+ """
36
+ return self._root.artillery_auto_targeting
37
+
38
+ @auto_target.setter
39
+ def auto_target(self, value: Optional[bool]) -> None:
40
+ if self.validate_assignment:
41
+ result = attempt_and_reissue(
42
+ self,
43
+ self.Format,
44
+ self._root,
45
+ "artillery_auto_targeting",
46
+ value,
47
+ )
48
+ self._root.artillery_auto_targeting = result
49
+ else:
50
+ self._root.artillery_auto_targeting = value
@@ -15,7 +15,7 @@ class CircuitConditionMixin: # (ControlBehaviorMixin)
15
15
  """
16
16
 
17
17
  class ControlFormat(BaseModel):
18
- circuit_enabled: Optional[bool] = Field(
18
+ circuit_condition_enabled: Optional[bool] = Field(
19
19
  False,
20
20
  description="""
21
21
  Whether or not the entity is controlled by the specified circuit
@@ -19,7 +19,7 @@ class CircuitEnableMixin: # (ControlBehaviorMixin)
19
19
  False,
20
20
  description="""
21
21
  Whether or not this machine will be toggled by some circuit
22
- condition. Many machines reuse this parameter name, but others have
22
+ network. Many machines reuse this parameter name, but others have
23
23
  unique ones specific to their types.
24
24
  """, # TODO: examples of different keys
25
25
  )
@@ -95,7 +95,11 @@ class ControlBehaviorMixin:
95
95
 
96
96
  self.control_behavior = other.control_behavior
97
97
 
98
- def to_dict(self, exclude_none: bool = True, exclude_defaults: bool = True) -> dict:
98
+ # =========================================================================
99
+
100
+ def to_dict(
101
+ self, exclude_none: bool = True, exclude_defaults: bool = True
102
+ ) -> dict: # TODO: FIXME
99
103
  result = super().to_dict(
100
104
  exclude_none=exclude_none, exclude_defaults=exclude_defaults
101
105
  )
@@ -3,10 +3,10 @@
3
3
  from draftsman.classes.exportable import attempt_and_reissue, test_replace_me
4
4
  from draftsman.data import items, entities
5
5
  from draftsman.error import InvalidItemError, DataFormatError
6
- from draftsman.signatures import DraftsmanBaseModel, FilterEntry, ItemName, int64
6
+ from draftsman.signatures import DraftsmanBaseModel, ItemFilter, ItemName, int64
7
7
 
8
8
  from pydantic import Field, ValidationError, ValidationInfo, field_validator
9
- from typing import Any, Optional
9
+ from typing import Any, Literal, Optional
10
10
 
11
11
 
12
12
  class FiltersMixin:
@@ -15,7 +15,13 @@ class FiltersMixin:
15
15
  """
16
16
 
17
17
  class Format(DraftsmanBaseModel):
18
- filters: Optional[list[FilterEntry]] = Field(
18
+ use_filters: Optional[bool] = Field(
19
+ False,
20
+ description="""
21
+ Whether or not this inserter should use filters
22
+ """,
23
+ )
24
+ filters: Optional[list[ItemFilter]] = Field(
19
25
  [],
20
26
  description="""
21
27
  Any item filters that this inserter or loader has.
@@ -57,15 +63,38 @@ class FiltersMixin:
57
63
  "filter_count", 0
58
64
  )
59
65
 
66
+ # =========================================================================
67
+
68
+ @property
69
+ def use_filters(self) -> Optional[bool]:
70
+ """
71
+ Whether or not this inserter should use filters at all. Overrided by
72
+ ``circuit_set_filters``, if present.
73
+ """
74
+ return self._root.use_filters
75
+
76
+ @use_filters.setter
77
+ def use_filters(self, value: Optional[list[ItemFilter]]):
78
+ test_replace_me(
79
+ self,
80
+ type(self).Format,
81
+ self._root,
82
+ "use_filters",
83
+ value,
84
+ self.validate_assignment,
85
+ )
86
+
87
+ # =========================================================================
88
+
60
89
  @property
61
- def filters(self) -> Optional[list[FilterEntry]]:
90
+ def filters(self) -> Optional[list[ItemFilter]]:
62
91
  """
63
92
  TODO
64
93
  """
65
94
  return self._root.filters
66
95
 
67
96
  @filters.setter
68
- def filters(self, value: Optional[list[FilterEntry]]):
97
+ def filters(self, value: Optional[list[ItemFilter]]):
69
98
  test_replace_me(
70
99
  self,
71
100
  type(self).Format,
@@ -84,7 +113,15 @@ class FiltersMixin:
84
113
 
85
114
  # =========================================================================
86
115
 
87
- def set_item_filter(self, index: int64, item: ItemName):
116
+ def set_item_filter(
117
+ self,
118
+ index: int64,
119
+ item: ItemName,
120
+ quality: Literal[
121
+ "normal", "uncommon", "rare", "epic", "legendary", "any"
122
+ ] = "normal",
123
+ comparator: Literal[">", "<", "=", "==", "≥", ">=", "≤", "<=", "≠", "!="] = "=",
124
+ ):
88
125
  """
89
126
  Sets one of the item filters of the Entity. `index` in this function is
90
127
  in 0-based notation.
@@ -98,7 +135,9 @@ class FiltersMixin:
98
135
  """
99
136
  if item is not None:
100
137
  try:
101
- new_entry = FilterEntry(index=index, name=item)
138
+ new_entry = ItemFilter(
139
+ index=index, name=item, quality=quality, comparator=comparator
140
+ )
102
141
  new_entry.index += 1
103
142
  except ValidationError as e:
104
143
  raise DataFormatError(e) from None
@@ -124,7 +163,7 @@ class FiltersMixin:
124
163
  )
125
164
  self.filters = result
126
165
 
127
- def set_item_filters(self, *filters: Optional[list[FilterEntry]]):
166
+ def set_item_filters(self, *filters: Optional[list[ItemFilter]]):
128
167
  """
129
168
  Sets all of the item filters of the Entity.
130
169
 
@@ -47,8 +47,12 @@ class InventoryMixin:
47
47
  return bar
48
48
 
49
49
  warning_list: list = info.context["warning_list"]
50
- entity = info.context["object"]
51
- if not entity.inventory_bar_enabled:
50
+ entity: InventoryMixin = info.context["object"]
51
+
52
+ # Make sure to check that it's `False`; this attribute can return
53
+ # `None` if it doesn't recognize the entity, and in that case we
54
+ # don't want to issue a warning at all
55
+ if entity.inventory_bar_enabled is False:
52
56
  warning_list.append(BarWarning("This entity does not have bar control"))
53
57
 
54
58
  return bar
@@ -72,19 +76,7 @@ class InventoryMixin:
72
76
  # =========================================================================
73
77
 
74
78
  @property
75
- def inventory_size(self) -> uint16:
76
- """
77
- The number of inventory slots that this Entity has. Equivalent to the
78
- ``"inventory_size"`` key in Factorio's ``data.raw``. Returns ``None`` if
79
- this entity's name is not recognized by Draftsman. Not exported; read
80
- only.
81
- """
82
- return entities.raw.get(self.name, {}).get("inventory_size", None)
83
-
84
- # =========================================================================
85
-
86
- @property
87
- def inventory_bar_enabled(self) -> bool:
79
+ def inventory_bar_enabled(self) -> Optional[bool]:
88
80
  """
89
81
  Whether or not this Entity has its inventory limiting bar enabled.
90
82
  Equivalent to the ``"enable_inventory_bar"`` key in Factorio's
@@ -97,6 +89,41 @@ class InventoryMixin:
97
89
 
98
90
  # =========================================================================
99
91
 
92
+ @property
93
+ def quality_affects_inventory_size(self) -> Optional[bool]:
94
+ """
95
+ Whether or not the quality of this entity modifies its inventory size.
96
+ Not exported; read only.
97
+ """
98
+ return entities.raw.get(
99
+ self.name, {"quality_affects_inventory_size": None}
100
+ ).get("quality_affects_inventory_size", True)
101
+
102
+ # =========================================================================
103
+
104
+ @property
105
+ def inventory_size(self) -> uint16:
106
+ """
107
+ The number of inventory slots that this Entity has. Equivalent to the
108
+ ``"inventory_size"`` key in Factorio's ``data.raw``. Returns ``None`` if
109
+ this entity's name is not recognized by Draftsman. Not exported; read
110
+ only.
111
+ """
112
+ inventory_size = entities.raw.get(self.name, {}).get("inventory_size", None)
113
+ if inventory_size is None or not self.quality_affects_inventory_size:
114
+ return inventory_size
115
+ else:
116
+ mutlipliers = { # TODO: grab this dynamically
117
+ "normal": 1.0,
118
+ "uncommon": 1.3,
119
+ "rare": 1.6,
120
+ "epic": 1.9,
121
+ "legendary": 2.5,
122
+ }
123
+ return math.floor(inventory_size * mutlipliers[self.quality])
124
+
125
+ # =========================================================================
126
+
100
127
  @property
101
128
  def inventory_slots_occupied(self) -> int:
102
129
  """
@@ -125,8 +152,8 @@ class InventoryMixin:
125
152
  @property
126
153
  def bar(self) -> uint16:
127
154
  """
128
- The limiting bar of the inventory. Used to prevent a the final-most
129
- slots in the inventory from accepting items.
155
+ The limiting bar of the inventory. Used to prevent the final-most
156
+ slots in the inventory from accepting new items.
130
157
 
131
158
  Raises :py:class:`~draftsman.warning.IndexWarning` if the set value
132
159
  exceeds the Entity's ``inventory_size`` attribute.
@@ -9,7 +9,7 @@ from draftsman.error import (
9
9
  )
10
10
  from draftsman.signatures import (
11
11
  DraftsmanBaseModel,
12
- FilterEntry,
12
+ ItemFilter,
13
13
  ItemName,
14
14
  int64,
15
15
  uint16,
@@ -24,7 +24,7 @@ from pydantic import (
24
24
  validate_call,
25
25
  field_validator,
26
26
  )
27
- from typing import Any, Optional
27
+ from typing import Any, Literal, Optional
28
28
 
29
29
  from typing import TYPE_CHECKING
30
30
 
@@ -39,7 +39,7 @@ class InventoryFilterMixin:
39
39
 
40
40
  class Format(BaseModel):
41
41
  class InventoryFilters(DraftsmanBaseModel):
42
- filters: Optional[list[FilterEntry]] = Field(
42
+ filters: Optional[list[ItemFilter]] = Field(
43
43
  None,
44
44
  description="""
45
45
  Any reserved item filter slots in the container's inventory.
@@ -163,14 +163,14 @@ class InventoryFilterMixin:
163
163
  # =========================================================================
164
164
 
165
165
  @property
166
- def filters(self) -> Optional[list[FilterEntry]]:
166
+ def filters(self) -> Optional[list[ItemFilter]]:
167
167
  """
168
168
  TODO
169
169
  """
170
170
  return self.inventory.filters
171
171
 
172
172
  @filters.setter
173
- def filters(self, value: Optional[list[FilterEntry]]):
173
+ def filters(self, value: Optional[list[ItemFilter]]):
174
174
  test_replace_me(
175
175
  self,
176
176
  type(self).Format.InventoryFilters,
@@ -233,7 +233,15 @@ class InventoryFilterMixin:
233
233
 
234
234
  # =========================================================================
235
235
 
236
- def set_inventory_filter(self, index: int64, item: Optional[ItemName]):
236
+ def set_inventory_filter(
237
+ self,
238
+ index: int64,
239
+ item: Optional[ItemName],
240
+ quality: Literal[
241
+ "normal", "uncommon", "rare", "epic", "legendary", "any"
242
+ ] = "normal",
243
+ comparator: Literal[">", "<", "=", "==", "≥", ">=", "≤", "<=", "≠", "!="] = "=",
244
+ ):
237
245
  """
238
246
  Sets the item filter at a particular index. If ``item`` is set to
239
247
  ``None``, the item filter at that location is removed.
@@ -249,7 +257,7 @@ class InventoryFilterMixin:
249
257
  """
250
258
  if item is not None:
251
259
  try:
252
- new_entry = FilterEntry(index=index, name=item)
260
+ new_entry = ItemFilter(index=index, name=item)
253
261
  new_entry.index += 1
254
262
  except ValidationError as e:
255
263
  raise DataFormatError(e) from None