#include "../system/AISystem.h" #include "../system/AnimatorSystem.h" #include "../system/AudioSystem.h" #include "../system/CollisionSystem.h" #include "../system/EventSystem.h" #include "../system/InputSystem.h" #include "../system/ParticleSystem.h" #include "../system/PhysicsSystem.h" #include "../system/RenderSystem.h" #include "../system/ReplaySystem.h" #include "../system/ScriptSystem.h" #include "SystemManager.h" using namespace crepe; using namespace std; SystemManager::SystemManager(Mediator & mediator) : Manager(mediator) { this->load_system(); this->load_system(); this->load_system(); this->load_system(); this->load_system(); this->load_system(); this->load_system(); this->load_system(); this->load_system(); this->load_system(); this->load_system(); this->mediator.system_manager = *this; } void SystemManager::fixed_update() { for (auto & [type, system] : this->systems) { if (!system->active) continue; system->fixed_update(); } } void SystemManager::frame_update() { for (auto & [type, system] : this->systems) { if (!system->active) continue; system->frame_update(); } } SystemManager::Snapshot SystemManager::save() { Snapshot snapshot; for (auto & [type, system] : this->systems) { snapshot[type] = system->active; } return snapshot; } void SystemManager::restore(const Snapshot & snapshot) { for (auto & [type, active] : snapshot) { this->systems[type]->active = active; } } void SystemManager::disable_all() { for (auto & [type, system] : this->systems) { system->active = false; } }