NcEngine
ModuleProvider.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "ModuleRegistry.h"
8
9#include <functional>
10
11namespace nc
12{
15{
16 public:
18 : m_registry{registry}
19 {
20 }
21
23 template<std::derived_from<Module> T>
24 auto Get() -> T*
25 {
26 return m_registry->Get<T>();
27 }
28
30 template<std::derived_from<Module> T>
31 auto Get(size_t id) -> Module*
32 {
33 return m_registry->Get(id);
34 }
35
37 template<std::invocable<Module*> F>
38 void ForEachModule(F func)
39 {
40 for (auto& module : m_registry->GetAllModules())
41 {
42 std::invoke(func, module.get());
43 }
44 }
45
46 private:
47 ModuleRegistry* m_registry;
48};
49} // namespace nc
Modules are extensions that provide functionality to the engine.
Definition: Module.h:18
Provides access to registered Modules.
Definition: ModuleProvider.h:15
auto Get() -> T *
Get a pointer to a Module that was registered with the given type.
Definition: ModuleProvider.h:24
auto Get(size_t id) -> Module *
Get a pointer to the Module that was registered with the given id.
Definition: ModuleProvider.h:31
void ForEachModule(F func)
Apply a function to all registered Modules.
Definition: ModuleProvider.h:38
Definition: ModuleRegistry.h:19
auto Get() const noexcept -> T *
Get a pointer to a module or nullptr if it is unregistered.
Definition: ModuleRegistry.h:64