├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── suggestion.yml ├── .gitignore ├── .gitmodules ├── LICENSE.md ├── README.md ├── modfiles ├── backend │ ├── calculation │ │ ├── matrix_engine.lua │ │ ├── sequential_engine.lua │ │ ├── solver.lua │ │ └── structures.lua │ ├── data │ │ ├── Beacon.lua │ │ ├── District.lua │ │ ├── DistrictItem.lua │ │ ├── DistrictItemSet.lua │ │ ├── Factory.lua │ │ ├── Floor.lua │ │ ├── Fuel.lua │ │ ├── Line.lua │ │ ├── Machine.lua │ │ ├── Module.lua │ │ ├── ModuleSet.lua │ │ ├── Object.lua │ │ ├── Product.lua │ │ ├── Realm.lua │ │ └── Recipe.lua │ ├── handlers │ │ ├── defaults.lua │ │ ├── generator.lua │ │ ├── generator_util.lua │ │ ├── loader.lua │ │ ├── migrator.lua │ │ ├── prototyper.lua │ │ └── screenshotter.lua │ ├── init.lua │ └── migrations │ │ ├── masterlist.json │ │ ├── migration_0_0_0.lua │ │ ├── migration_1_0_6.lua │ │ ├── migration_1_1_14.lua │ │ ├── migration_1_1_27.lua │ │ ├── migration_1_1_42.lua │ │ ├── migration_1_1_5.lua │ │ ├── migration_1_1_59.lua │ │ ├── migration_1_1_61.lua │ │ ├── migration_1_1_65.lua │ │ ├── migration_1_1_66.lua │ │ ├── migration_1_1_67.lua │ │ ├── migration_1_1_73.lua │ │ ├── migration_1_2_1.lua │ │ ├── migration_1_2_15.lua │ │ ├── migration_1_2_2.lua │ │ ├── migration_1_2_4.lua │ │ ├── migration_1_2_6.lua │ │ ├── migration_1_2_8.lua │ │ ├── migration_2_0_16.lua │ │ ├── migration_2_0_2.lua │ │ ├── migration_2_0_21.lua │ │ ├── migration_2_0_26.lua │ │ ├── migration_2_0_39.lua │ │ ├── migration_2_0_41.lua │ │ ├── migration_2_0_43.lua │ │ ├── migration_2_0_6.lua │ │ └── migration_2_0_8.lua ├── changelog.txt ├── control.lua ├── data.lua ├── graphics │ ├── agriculture_square.png │ ├── amount.png │ ├── archive.png │ ├── arrow_down.png │ ├── arrow_left.png │ ├── arrow_line_bar_up.png │ ├── arrow_line_up.png │ ├── arrow_right.png │ ├── arrow_up.png │ ├── beacon_selector.png │ ├── calculator.png │ ├── collapse.png │ ├── default.png │ ├── default_all.png │ ├── divide.png │ ├── dropup.png │ ├── expand.png │ ├── fold_out_subfloors.png │ ├── generic_assembler.png │ ├── history.png │ ├── limited_down.png │ ├── limited_up.png │ ├── minus.png │ ├── multiply.png │ ├── pin.png │ ├── play.png │ ├── plus.png │ ├── semitransparent_pixel.png │ ├── shortcut_open_x24.png │ ├── shortcut_open_x56.png │ ├── silo_rocket.png │ ├── stack.png │ ├── trash_red.png │ ├── universal_planet.png │ ├── warning_red.png │ ├── white_square.png │ └── zone_selection.png ├── info.json ├── locale │ └── en │ │ └── config.cfg ├── prototypes │ ├── hotkeys.lua │ ├── shortcuts.lua │ ├── sprites.lua │ ├── styles.lua │ └── tools.lua ├── thumbnail.png ├── ui │ ├── base │ │ ├── calculator_dialog.lua │ │ ├── compact_dialog.lua │ │ ├── main_dialog.lua │ │ └── modal_dialog.lua │ ├── components │ │ ├── item_views.lua │ │ └── module_configurator.lua │ ├── dialogs │ │ ├── beacon_dialog.lua │ │ ├── factory_dialog.lua │ │ ├── item_dialog.lua │ │ ├── machine_dialog.lua │ │ ├── picker_dialog.lua │ │ ├── porter_dialog.lua │ │ ├── preferences_dialog.lua │ │ ├── recipe_dialog.lua │ │ └── utility_dialog.lua │ ├── event_handler.lua │ └── main │ │ ├── district_info.lua │ │ ├── districts_box.lua │ │ ├── factory_list.lua │ │ ├── item_boxes.lua │ │ ├── production_bar.lua │ │ ├── production_box.lua │ │ ├── production_handler.lua │ │ ├── production_table.lua │ │ └── title_bar.lua └── util │ ├── actions.lua │ ├── clipboard.lua │ ├── context.lua │ ├── cursor.lua │ ├── effects.lua │ ├── format.lua │ ├── globals.lua │ ├── gui.lua │ ├── llog.lua │ ├── messages.lua │ ├── nth_tick.lua │ ├── porter.lua │ ├── temperature.lua │ └── util.lua ├── scenarios ├── screenshotter │ ├── README.md │ ├── blueprint.zip │ ├── config.ini │ ├── control.lua │ ├── description.json │ └── mod-list.json └── tester │ ├── blueprint.zip │ ├── control.lua │ ├── description.json │ └── solver │ ├── framework.lua │ ├── parts.lua │ └── tests.lua └── screenshots ├── 01_main_interface.png ├── 02_compact_interface.png ├── 03_item_picker.png ├── 04_recipe_picker.png ├── 05_machine.png ├── 06_import.png ├── 07_utility.png └── 08_preferences.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/.github/ISSUE_TEMPLATE/suggestion.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode 3 | modfiles/scenarios 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/README.md -------------------------------------------------------------------------------- /modfiles/backend/calculation/matrix_engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/calculation/matrix_engine.lua -------------------------------------------------------------------------------- /modfiles/backend/calculation/sequential_engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/calculation/sequential_engine.lua -------------------------------------------------------------------------------- /modfiles/backend/calculation/solver.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/calculation/solver.lua -------------------------------------------------------------------------------- /modfiles/backend/calculation/structures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/calculation/structures.lua -------------------------------------------------------------------------------- /modfiles/backend/data/Beacon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/Beacon.lua -------------------------------------------------------------------------------- /modfiles/backend/data/District.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/District.lua -------------------------------------------------------------------------------- /modfiles/backend/data/DistrictItem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/DistrictItem.lua -------------------------------------------------------------------------------- /modfiles/backend/data/DistrictItemSet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/DistrictItemSet.lua -------------------------------------------------------------------------------- /modfiles/backend/data/Factory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/Factory.lua -------------------------------------------------------------------------------- /modfiles/backend/data/Floor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/Floor.lua -------------------------------------------------------------------------------- /modfiles/backend/data/Fuel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/Fuel.lua -------------------------------------------------------------------------------- /modfiles/backend/data/Line.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/Line.lua -------------------------------------------------------------------------------- /modfiles/backend/data/Machine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/Machine.lua -------------------------------------------------------------------------------- /modfiles/backend/data/Module.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/Module.lua -------------------------------------------------------------------------------- /modfiles/backend/data/ModuleSet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/ModuleSet.lua -------------------------------------------------------------------------------- /modfiles/backend/data/Object.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/Object.lua -------------------------------------------------------------------------------- /modfiles/backend/data/Product.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/Product.lua -------------------------------------------------------------------------------- /modfiles/backend/data/Realm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/Realm.lua -------------------------------------------------------------------------------- /modfiles/backend/data/Recipe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/data/Recipe.lua -------------------------------------------------------------------------------- /modfiles/backend/handlers/defaults.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/handlers/defaults.lua -------------------------------------------------------------------------------- /modfiles/backend/handlers/generator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/handlers/generator.lua -------------------------------------------------------------------------------- /modfiles/backend/handlers/generator_util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/handlers/generator_util.lua -------------------------------------------------------------------------------- /modfiles/backend/handlers/loader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/handlers/loader.lua -------------------------------------------------------------------------------- /modfiles/backend/handlers/migrator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/handlers/migrator.lua -------------------------------------------------------------------------------- /modfiles/backend/handlers/prototyper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/handlers/prototyper.lua -------------------------------------------------------------------------------- /modfiles/backend/handlers/screenshotter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/handlers/screenshotter.lua -------------------------------------------------------------------------------- /modfiles/backend/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/init.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/masterlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/masterlist.json -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_0_0_0.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_0_0_0.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_0_6.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_0_6.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_1_14.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_1_14.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_1_27.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_1_27.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_1_42.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_1_42.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_1_5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_1_5.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_1_59.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_1_59.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_1_61.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_1_61.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_1_65.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_1_65.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_1_66.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_1_66.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_1_67.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_1_67.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_1_73.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_1_73.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_2_1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_2_1.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_2_15.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_2_15.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_2_2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_2_2.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_2_4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_2_4.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_2_6.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_2_6.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_1_2_8.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_1_2_8.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_2_0_16.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_2_0_16.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_2_0_2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_2_0_2.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_2_0_21.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_2_0_21.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_2_0_26.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_2_0_26.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_2_0_39.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_2_0_39.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_2_0_41.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_2_0_41.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_2_0_43.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_2_0_43.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_2_0_6.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_2_0_6.lua -------------------------------------------------------------------------------- /modfiles/backend/migrations/migration_2_0_8.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/backend/migrations/migration_2_0_8.lua -------------------------------------------------------------------------------- /modfiles/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/changelog.txt -------------------------------------------------------------------------------- /modfiles/control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/control.lua -------------------------------------------------------------------------------- /modfiles/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/data.lua -------------------------------------------------------------------------------- /modfiles/graphics/agriculture_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/agriculture_square.png -------------------------------------------------------------------------------- /modfiles/graphics/amount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/amount.png -------------------------------------------------------------------------------- /modfiles/graphics/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/archive.png -------------------------------------------------------------------------------- /modfiles/graphics/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/arrow_down.png -------------------------------------------------------------------------------- /modfiles/graphics/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/arrow_left.png -------------------------------------------------------------------------------- /modfiles/graphics/arrow_line_bar_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/arrow_line_bar_up.png -------------------------------------------------------------------------------- /modfiles/graphics/arrow_line_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/arrow_line_up.png -------------------------------------------------------------------------------- /modfiles/graphics/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/arrow_right.png -------------------------------------------------------------------------------- /modfiles/graphics/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/arrow_up.png -------------------------------------------------------------------------------- /modfiles/graphics/beacon_selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/beacon_selector.png -------------------------------------------------------------------------------- /modfiles/graphics/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/calculator.png -------------------------------------------------------------------------------- /modfiles/graphics/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/collapse.png -------------------------------------------------------------------------------- /modfiles/graphics/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/default.png -------------------------------------------------------------------------------- /modfiles/graphics/default_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/default_all.png -------------------------------------------------------------------------------- /modfiles/graphics/divide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/divide.png -------------------------------------------------------------------------------- /modfiles/graphics/dropup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/dropup.png -------------------------------------------------------------------------------- /modfiles/graphics/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/expand.png -------------------------------------------------------------------------------- /modfiles/graphics/fold_out_subfloors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/fold_out_subfloors.png -------------------------------------------------------------------------------- /modfiles/graphics/generic_assembler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/generic_assembler.png -------------------------------------------------------------------------------- /modfiles/graphics/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/history.png -------------------------------------------------------------------------------- /modfiles/graphics/limited_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/limited_down.png -------------------------------------------------------------------------------- /modfiles/graphics/limited_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/limited_up.png -------------------------------------------------------------------------------- /modfiles/graphics/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/minus.png -------------------------------------------------------------------------------- /modfiles/graphics/multiply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/multiply.png -------------------------------------------------------------------------------- /modfiles/graphics/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/pin.png -------------------------------------------------------------------------------- /modfiles/graphics/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/play.png -------------------------------------------------------------------------------- /modfiles/graphics/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/plus.png -------------------------------------------------------------------------------- /modfiles/graphics/semitransparent_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/semitransparent_pixel.png -------------------------------------------------------------------------------- /modfiles/graphics/shortcut_open_x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/shortcut_open_x24.png -------------------------------------------------------------------------------- /modfiles/graphics/shortcut_open_x56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/shortcut_open_x56.png -------------------------------------------------------------------------------- /modfiles/graphics/silo_rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/silo_rocket.png -------------------------------------------------------------------------------- /modfiles/graphics/stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/stack.png -------------------------------------------------------------------------------- /modfiles/graphics/trash_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/trash_red.png -------------------------------------------------------------------------------- /modfiles/graphics/universal_planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/universal_planet.png -------------------------------------------------------------------------------- /modfiles/graphics/warning_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/warning_red.png -------------------------------------------------------------------------------- /modfiles/graphics/white_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/white_square.png -------------------------------------------------------------------------------- /modfiles/graphics/zone_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/graphics/zone_selection.png -------------------------------------------------------------------------------- /modfiles/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/info.json -------------------------------------------------------------------------------- /modfiles/locale/en/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/locale/en/config.cfg -------------------------------------------------------------------------------- /modfiles/prototypes/hotkeys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/prototypes/hotkeys.lua -------------------------------------------------------------------------------- /modfiles/prototypes/shortcuts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/prototypes/shortcuts.lua -------------------------------------------------------------------------------- /modfiles/prototypes/sprites.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/prototypes/sprites.lua -------------------------------------------------------------------------------- /modfiles/prototypes/styles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/prototypes/styles.lua -------------------------------------------------------------------------------- /modfiles/prototypes/tools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/prototypes/tools.lua -------------------------------------------------------------------------------- /modfiles/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/thumbnail.png -------------------------------------------------------------------------------- /modfiles/ui/base/calculator_dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/base/calculator_dialog.lua -------------------------------------------------------------------------------- /modfiles/ui/base/compact_dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/base/compact_dialog.lua -------------------------------------------------------------------------------- /modfiles/ui/base/main_dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/base/main_dialog.lua -------------------------------------------------------------------------------- /modfiles/ui/base/modal_dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/base/modal_dialog.lua -------------------------------------------------------------------------------- /modfiles/ui/components/item_views.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/components/item_views.lua -------------------------------------------------------------------------------- /modfiles/ui/components/module_configurator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/components/module_configurator.lua -------------------------------------------------------------------------------- /modfiles/ui/dialogs/beacon_dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/dialogs/beacon_dialog.lua -------------------------------------------------------------------------------- /modfiles/ui/dialogs/factory_dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/dialogs/factory_dialog.lua -------------------------------------------------------------------------------- /modfiles/ui/dialogs/item_dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/dialogs/item_dialog.lua -------------------------------------------------------------------------------- /modfiles/ui/dialogs/machine_dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/dialogs/machine_dialog.lua -------------------------------------------------------------------------------- /modfiles/ui/dialogs/picker_dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/dialogs/picker_dialog.lua -------------------------------------------------------------------------------- /modfiles/ui/dialogs/porter_dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/dialogs/porter_dialog.lua -------------------------------------------------------------------------------- /modfiles/ui/dialogs/preferences_dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/dialogs/preferences_dialog.lua -------------------------------------------------------------------------------- /modfiles/ui/dialogs/recipe_dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/dialogs/recipe_dialog.lua -------------------------------------------------------------------------------- /modfiles/ui/dialogs/utility_dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/dialogs/utility_dialog.lua -------------------------------------------------------------------------------- /modfiles/ui/event_handler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/event_handler.lua -------------------------------------------------------------------------------- /modfiles/ui/main/district_info.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/main/district_info.lua -------------------------------------------------------------------------------- /modfiles/ui/main/districts_box.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/main/districts_box.lua -------------------------------------------------------------------------------- /modfiles/ui/main/factory_list.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/main/factory_list.lua -------------------------------------------------------------------------------- /modfiles/ui/main/item_boxes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/main/item_boxes.lua -------------------------------------------------------------------------------- /modfiles/ui/main/production_bar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/main/production_bar.lua -------------------------------------------------------------------------------- /modfiles/ui/main/production_box.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/main/production_box.lua -------------------------------------------------------------------------------- /modfiles/ui/main/production_handler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/main/production_handler.lua -------------------------------------------------------------------------------- /modfiles/ui/main/production_table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/main/production_table.lua -------------------------------------------------------------------------------- /modfiles/ui/main/title_bar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/ui/main/title_bar.lua -------------------------------------------------------------------------------- /modfiles/util/actions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/util/actions.lua -------------------------------------------------------------------------------- /modfiles/util/clipboard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/util/clipboard.lua -------------------------------------------------------------------------------- /modfiles/util/context.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/util/context.lua -------------------------------------------------------------------------------- /modfiles/util/cursor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/util/cursor.lua -------------------------------------------------------------------------------- /modfiles/util/effects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/util/effects.lua -------------------------------------------------------------------------------- /modfiles/util/format.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/util/format.lua -------------------------------------------------------------------------------- /modfiles/util/globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/util/globals.lua -------------------------------------------------------------------------------- /modfiles/util/gui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/util/gui.lua -------------------------------------------------------------------------------- /modfiles/util/llog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/util/llog.lua -------------------------------------------------------------------------------- /modfiles/util/messages.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/util/messages.lua -------------------------------------------------------------------------------- /modfiles/util/nth_tick.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/util/nth_tick.lua -------------------------------------------------------------------------------- /modfiles/util/porter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/util/porter.lua -------------------------------------------------------------------------------- /modfiles/util/temperature.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/util/temperature.lua -------------------------------------------------------------------------------- /modfiles/util/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/modfiles/util/util.lua -------------------------------------------------------------------------------- /scenarios/screenshotter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/scenarios/screenshotter/README.md -------------------------------------------------------------------------------- /scenarios/screenshotter/blueprint.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/scenarios/screenshotter/blueprint.zip -------------------------------------------------------------------------------- /scenarios/screenshotter/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/scenarios/screenshotter/config.ini -------------------------------------------------------------------------------- /scenarios/screenshotter/control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/scenarios/screenshotter/control.lua -------------------------------------------------------------------------------- /scenarios/screenshotter/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/scenarios/screenshotter/description.json -------------------------------------------------------------------------------- /scenarios/screenshotter/mod-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/scenarios/screenshotter/mod-list.json -------------------------------------------------------------------------------- /scenarios/tester/blueprint.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/scenarios/tester/blueprint.zip -------------------------------------------------------------------------------- /scenarios/tester/control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/scenarios/tester/control.lua -------------------------------------------------------------------------------- /scenarios/tester/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/scenarios/tester/description.json -------------------------------------------------------------------------------- /scenarios/tester/solver/framework.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/scenarios/tester/solver/framework.lua -------------------------------------------------------------------------------- /scenarios/tester/solver/parts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/scenarios/tester/solver/parts.lua -------------------------------------------------------------------------------- /scenarios/tester/solver/tests.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/scenarios/tester/solver/tests.lua -------------------------------------------------------------------------------- /screenshots/01_main_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/screenshots/01_main_interface.png -------------------------------------------------------------------------------- /screenshots/02_compact_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/screenshots/02_compact_interface.png -------------------------------------------------------------------------------- /screenshots/03_item_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/screenshots/03_item_picker.png -------------------------------------------------------------------------------- /screenshots/04_recipe_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/screenshots/04_recipe_picker.png -------------------------------------------------------------------------------- /screenshots/05_machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/screenshots/05_machine.png -------------------------------------------------------------------------------- /screenshots/06_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/screenshots/06_import.png -------------------------------------------------------------------------------- /screenshots/07_utility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/screenshots/07_utility.png -------------------------------------------------------------------------------- /screenshots/08_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudeMetz/FactoryPlanner/HEAD/screenshots/08_preferences.png --------------------------------------------------------------------------------