#pragma once #include "../util/OptionalRef.h" // TODO: remove these singletons: #include "../facade/SDLContext.h" #include "EventManager.h" #include "SaveManager.h" namespace crepe { class ComponentManager; class SceneManager; /** * Struct to pass references to classes that would otherwise need to be singletons down to * other classes within the engine hierarchy. Made to prevent constant changes to subclasses to * pass specific references through dependency injection. All references on this struct * *should* be explicitly checked for availability as this struct does not guarantee anything. * * \note Dereferencing members of this struct should be deferred. If you are a user of this * class, keep a reference to this mediator instead of just picking references from it when you * receive an instance. * * \warning This class should never be directly accessible from the API */ struct Mediator { OptionalRef component_manager; OptionalRef scene_manager; OptionalRef save_manager = SaveManager::get_instance(); OptionalRef event_manager = EventManager::get_instance(); OptionalRef sdl_context = SDLContext::get_instance(); }; } // namespace crepe