Monster Factory is a production simulator built with C++ and Qt. The project simulates a factory that creates monsters with different properties based on combinations of materials and attributes.
The application is structured around several key components:
- Raw Materials: Different types of materials used in monster creation
- Production Line: Various stages monsters go through during creation
- Quality Control: Inspection system for validating monster quality
- Storage System: Storage for completed monsters
- Delivery System: Process for fulfilling customer orders
The factory uses three types of raw materials to create monsters:
- Energy: Types include Cosmic, Elemental, and Dark
- Material: Types include Organic, Metallic, and Radioactive
- Evil: Types include Cunning, Chaotic, and Ruthless
Monsters are created through specific combinations of materials that produce different monster types:
- Cosmic + Organic + Cunning = INTELLIGENCE
- Elemental + Radioactive + Chaotic = DESTRUCTION
- Dark + Organic + Ruthless = REGENERATION
- Elemental + Metallic + Ruthless = STRENGTH
- Dark + Metallic + Cunning = EVIL
- Dark + Radioactive + Ruthless = POISON
- Cosmic + Radioactive + Chaotic = MADNESS
- Cosmic + Metallic + Cunning = TECHNOLOGY
- Elemental + Organic + Chaotic = SPEED
- Material Sources: Generate raw materials
- Combiner: Mixes materials to create monsters
- Furnace: Contains trays for "baking" monsters
- Quality Control: Inspectors validate monster quality
- Storage: Holds completed monsters ready for delivery
- Garbage Collector: Handles rejected monsters
- Customers place orders with specific monster requirements
- Orders can have priority status
- Delivery system manages order fulfillment
The application maintains detailed logs in the following categories:
- General Log
- Order Log
- Storage Log
- Inspector Logs
- Garbage Collector Log
- Delivery Log
- Queue Log
- Qt 6.7.3 or later
- C++ compiler (MinGW 64-bit recommended)
- CMake 3.29 or later
- Clone the repository
- Open the project in Qt Creator or your preferred IDE
- Configure the project with CMake
- Build the project
- MonsterFactoryCore/: Core simulation logic
- src/: Source files
- Headers/: Header files
- Functions/: Implementation files
- logs/: Log files
- orders/: Order files
- src/: Source files
- assets/: Image resources
- CMakeLists.txt: Build configuration
This project is licensed under the terms of the included LICENSE file.