NcEngine
ModuleRegistry.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "Module.h"
8#include "ncengine/type/StableAddress.h"
9
10#include "ncutility/NcError.h"
11
12#include <algorithm>
13#include <concepts>
14#include <memory>
15
16namespace nc
17{
19{
20 public:
22 template<std::derived_from<Module> T>
23 void Register(std::unique_ptr<T> module)
24 {
25 NC_ASSERT(module, "Attempt to register a null Module.");
26 if (IsRegistered<T>())
27 {
28 Unregister<T>();
29 }
30
31 SetupId(*module);
32 m_typedModulePointer<T> = module.get();
33 m_modules.push_back(std::move(module));
34 }
35
37 template<std::derived_from<Module> T>
39 {
40 const auto* target = m_typedModulePointer<T>;
41 std::erase_if(m_modules, [target](const auto& module)
42 {
43 return module.get() == target;
44 });
45
46 m_typedModulePointer<T> = nullptr;
47 }
48
50 template<std::derived_from<Module> T>
51 auto IsRegistered() const noexcept -> bool
52 {
53 return Get<T>() != nullptr;
54 }
55
57 auto IsRegistered(size_t id) const noexcept -> bool
58 {
59 return std::ranges::contains(m_modules, id, [](const auto& module) { return module->Id(); });
60 }
61
63 template<std::derived_from<Module> T>
64 auto Get() const noexcept -> T*
65 {
66 return m_typedModulePointer<T>;
67 }
68
70 auto Get(size_t id) const noexcept -> Module*
71 {
72 auto pos = std::ranges::find_if(m_modules, [id](auto& module) { return module->Id() == id; });
73 return pos != std::ranges::end(m_modules) ? pos->get() : nullptr;
74 }
75
76 /*** @brief Get the collection of all registered modules. */
77 auto GetAllModules() const noexcept -> const std::vector<std::unique_ptr<Module>>&
78 {
79 return m_modules;
80 }
81
82 private:
83 std::vector<std::unique_ptr<Module>> m_modules;
84 size_t m_nextModuleId = std::numeric_limits<size_t>::max();
85
86 template<std::derived_from<Module> T>
87 inline static T* m_typedModulePointer = nullptr;
88
89 void SetupId(Module& module)
90 {
91 if (module.Id() == 0ull)
92 module.SetId(m_nextModuleId--);
93
94 const auto id = module.Id();
95 if (IsRegistered(id))
96 throw NcError(fmt::format("Module id '{}' is already in use.", id));
97 }
98};
99} // namespace nc
Modules are extensions that provide functionality to the engine.
Definition: Module.h:18
Definition: ModuleRegistry.h:19
void Unregister()
Remove a module from the registry. Does nothing if no matching module is found.
Definition: ModuleRegistry.h:38
auto Get(size_t id) const noexcept -> Module *
Get a pointer to a module by id or nullptr if it is unregistered.
Definition: ModuleRegistry.h:70
auto IsRegistered(size_t id) const noexcept -> bool
Check if a module matching an id is registered.
Definition: ModuleRegistry.h:57
auto IsRegistered() const noexcept -> bool
Check if a module matching a type is registered.
Definition: ModuleRegistry.h:51
void Register(std::unique_ptr< T > module)
Add a new module to the registry. Overwrites any existing module of the same type.
Definition: ModuleRegistry.h:23
auto Get() const noexcept -> T *
Get a pointer to a module or nullptr if it is unregistered.
Definition: ModuleRegistry.h:64
Base class for non-copyable non-movable types.
Definition: StableAddress.h:7