diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-07 14:19:26 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-07 14:19:26 +0100 |
commit | f3009ab8f0785a54d3fd83c0d758c8ebd901adda (patch) | |
tree | 6e9df9ef2311c28ee590c30e3a1f00018105bdd9 /src/crepe/manager/ComponentManager.hpp | |
parent | 90c6bf03e59fdec64f850310bcbff45ae86f69e3 (diff) |
`make format`
Diffstat (limited to 'src/crepe/manager/ComponentManager.hpp')
-rw-r--r-- | src/crepe/manager/ComponentManager.hpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/crepe/manager/ComponentManager.hpp b/src/crepe/manager/ComponentManager.hpp index 52df368..9e70865 100644 --- a/src/crepe/manager/ComponentManager.hpp +++ b/src/crepe/manager/ComponentManager.hpp @@ -101,7 +101,8 @@ RefVector<T> ComponentManager::get_components_by_id(game_object_id_t id) const { type_index type = typeid(T); if (!this->components.contains(type)) return {}; - const by_id_index<vector<unique_ptr<Component>>> & components_by_id = this->components.at(type); + const by_id_index<vector<unique_ptr<Component>>> & components_by_id + = this->components.at(type); if (id >= components_by_id.size()) return {}; RefVector<T> out = {}; @@ -151,7 +152,8 @@ RefVector<T> ComponentManager::get_components_by_type() const { } template <typename T> -std::set<game_object_id_t> ComponentManager::get_objects_by_predicate(const std::function<bool (const T &)> & pred) const { +std::set<game_object_id_t> +ComponentManager::get_objects_by_predicate(const std::function<bool(const T &)> & pred) const { using namespace std; set<game_object_id_t> objects = {}; @@ -168,9 +170,10 @@ std::set<game_object_id_t> ComponentManager::get_objects_by_predicate(const std: } template <typename T> -RefVector<T> ComponentManager::get_components_by_ids(const std::set<game_object_id_t> & ids) const { +RefVector<T> +ComponentManager::get_components_by_ids(const std::set<game_object_id_t> & ids) const { using namespace std; - + RefVector<T> out = {}; for (game_object_id_t id : ids) { RefVector<T> components = get_components_by_id<T>(id); |