This codebase implement the system for planning and development of shaft prouction factory.
After entering program you suppose to enter input and output part parameters.
Based on this parameters program create production chain, calulate required parameters and showing required equipment and cost.
Based on required equipment you should place it in grid, creating workshop layout. Also you can allow to program do it by itself and get automatick acceptable result.
After all calculation program provide end result list with all calculated values. Also program allows to save/load in any state of work, remembering all inputed values.
- English
- Russian (Русский)
- Download archieve from releases, unzip and run 'Planner.exe'!
- You can build project by yourself, watch point 'Instalation for own use'.
- Install C++ compiler (such as MSYS2);
- Install Make;
- Install CMake;
- Download and install external SFML library; For build and install code by yourself: download source code, unzip to any folder and run comand line as administrator:
cd ./SFML-3.0.1
mkdir build
cd build/
cmake ../
make
make install- (*Optional) Code editor Visual Studio Code (for better usage) (Recomended to use with plugins on c++ and cmake).
- Compile project itself:
cd ./Shaft-production-planner
mkdir build
cmake --build ./build --config Release --target all --- Check availability of compilers[g++], [make] and [cmake];
- Install external library SFML (For Debian-like systems):
sudo apt-get update
sudo apt-get install libsfml-devOr build and install code by yourself: download source code, unzip to any folder and run comand line as administrator:
cd ./SFML-3.0.1
mkdir build
cd build/
cmake ../
make
make install- (*Optional) Code editor Visual Studio Code (for better usage) (Recomended to use with plugins on c++ and cmake).
- Compile project itself:
cd ./Shaft-production-planner
mkdir build
cmake --build ./build --config Release --target all --Sources with all self-builded libraries can be located at releases (Development-kit).


