Castor3D 0.16.0
Multiplatform 3D engine
|
#include <CacheView.hpp>
Types publics | |
using | ElementCacheT = CacheT |
using | ElementT = typename ElementCacheT::ElementT |
using | ElementKeyT = typename ElementCacheT::ElementKeyT |
using | ElementCacheTraitsT = typename ElementCacheT::ElementCacheTraitsT |
using | ElementPtrT = typename ElementCacheT::ElementPtrT |
using | ElementObsT = typename ElementCacheT::ElementObsT |
using | ElementContT = typename ElementCacheT::ElementContT |
using | ElementInitialiserT = typename ElementCacheT::ElementInitialiserT |
using | ElementCleanerT = typename ElementCacheT::ElementCleanerT |
using | ElementMergerT = typename ElementCacheT::ElementMergerT |
Fonctions membres publiques | |
CacheViewT (castor::String const &name, ElementCacheT &cache, ElementInitialiserT initialise=[](ElementObsT const &){}, ElementCleanerT clean=[](ElementObsT const &){}) | |
Constructeur. | |
void | clear () |
Supprime du cache les éléments créés via cette vue. | |
template<typename ... ParametersT> | |
ElementObsT | add (ElementKeyT const &name, ParametersT &&... params) |
Crée un élément avec les informations données. | |
template<typename ... ParametersT> | |
ElementObsT | tryAdd (ElementKeyT const &name, bool initialise, ElementObsT &created, ParametersT &&... params) |
Crée ou récupère un élément avec les informations données. | |
bool | tryAdd (ElementKeyT const &name, ElementPtrT &element, bool initialise=false) |
Ajoute un élément déjà créé. | |
ElementObsT | add (ElementKeyT const &name, ElementPtrT &element, bool initialise=false) |
Ajoute un élément déjà créé. | |
bool | isEmpty () const |
bool | has (ElementKeyT const &name) const |
ElementObsT | tryFind (ElementKeyT const &name) const |
Cherche un élément par son nom. | |
ElementObsT | find (ElementKeyT const &name) const |
Cherche un élément par son nom. | |
ElementPtrT | tryRemove (ElementKeyT const &name) |
Retire un élément à partir d'un nom. | |
ElementPtrT | remove (ElementKeyT const &name) |
Retire un objet à partir d'un nom. | |
auto & | getCache () const |
Itération. | |
auto | begin () |
auto | begin () const |
auto | end () |
auto | end () const |
Fonctions membres publiques hérités de castor::NamedBaseT< T > | |
NamedBaseT (T name) noexcept | |
Constructeur. | |
T const & | getName () const noexcept |
Récupère le nom. | |
void | rename (T name) noexcept |
Membres hérités additionnels | |
Attributs protégés hérités de castor::NamedBaseT< T > | |
T | m_name |
Vue sur un cache de ressources.
using castor3d::CacheViewT< CacheT, EventT >::ElementCacheT = CacheT |
using castor3d::CacheViewT< CacheT, EventT >::ElementCacheTraitsT = typename ElementCacheT::ElementCacheTraitsT |
using castor3d::CacheViewT< CacheT, EventT >::ElementCleanerT = typename ElementCacheT::ElementCleanerT |
using castor3d::CacheViewT< CacheT, EventT >::ElementContT = typename ElementCacheT::ElementContT |
using castor3d::CacheViewT< CacheT, EventT >::ElementInitialiserT = typename ElementCacheT::ElementInitialiserT |
using castor3d::CacheViewT< CacheT, EventT >::ElementKeyT = typename ElementCacheT::ElementKeyT |
using castor3d::CacheViewT< CacheT, EventT >::ElementMergerT = typename ElementCacheT::ElementMergerT |
using castor3d::CacheViewT< CacheT, EventT >::ElementObsT = typename ElementCacheT::ElementObsT |
using castor3d::CacheViewT< CacheT, EventT >::ElementPtrT = typename ElementCacheT::ElementPtrT |
using castor3d::CacheViewT< CacheT, EventT >::ElementT = typename ElementCacheT::ElementT |
castor3d::CacheViewT< CacheT, EventT >::CacheViewT | ( | castor::String const & | name, |
ElementCacheT & | cache, | ||
ElementInitialiserT | initialise = [](ElementObsT const &){}, | ||
ElementCleanerT | clean = [](ElementObsT const &){} ) |
Constructeur.
[in] | name | The view name. |
[in] | initialise | L'initialiseur d'objet. |
[in] | clean | Le nettoyeur d'objet. |
[in] | cache | The viewed cache. |
ElementObsT castor3d::CacheViewT< CacheT, EventT >::add | ( | ElementKeyT const & | name, |
ElementPtrT & | element, | ||
bool | initialise = false ) |
Ajoute un élément déjà créé.
[in] | name | Le nom d'élément. |
[in] | element | L'élément. |
[in] | initialise | Dit si l'élément doit être initialisé après sa création. |
ElementObsT castor3d::CacheViewT< CacheT, EventT >::add | ( | ElementKeyT const & | name, |
ParametersT &&... | params ) |
Crée un élément avec les informations données.
.=
[in] | name | Le nom de l'élément. |
[in] | params | Les paramètres transmis au cache vu. |
|
inline |
|
inline |
void castor3d::CacheViewT< CacheT, EventT >::clear | ( | ) |
Supprime du cache les éléments créés via cette vue.
|
inline |
|
inline |
ElementObsT castor3d::CacheViewT< CacheT, EventT >::find | ( | ElementKeyT const & | name | ) | const |
Cherche un élément par son nom.
[in] | name | Le nom d'objet. |
|
inline |
bool castor3d::CacheViewT< CacheT, EventT >::has | ( | ElementKeyT const & | name | ) | const |
[in] | name | Le nom d'objet. |
true
Si un élément avec le nom donné existe. bool castor3d::CacheViewT< CacheT, EventT >::isEmpty | ( | ) | const |
true
si la vue est vide. ElementPtrT castor3d::CacheViewT< CacheT, EventT >::remove | ( | ElementKeyT const & | name | ) |
Retire un objet à partir d'un nom.
[in] | name | Le nom d'objet. |
ElementObsT castor3d::CacheViewT< CacheT, EventT >::tryAdd | ( | ElementKeyT const & | name, |
bool | initialise, | ||
ElementObsT & | created, | ||
ParametersT &&... | params ) |
Crée ou récupère un élément avec les informations données.
.=
[in] | name | Le nom de l'élément. |
[out] | created | Reçoit l'élement créé s'il l'a été. |
[in] | initialise | Dit si l'élément doit être initialisé après sa création. |
[in] | params | Les paramètres transmis au cache vu. |
bool castor3d::CacheViewT< CacheT, EventT >::tryAdd | ( | ElementKeyT const & | name, |
ElementPtrT & | element, | ||
bool | initialise = false ) |
Ajoute un élément déjà créé.
[in] | name | Le nom d'élément. |
[in] | element | L'élément. |
[in] | initialise | Dit si l'élément doit être initialisé après sa création. |
ElementObsT castor3d::CacheViewT< CacheT, EventT >::tryFind | ( | ElementKeyT const & | name | ) | const |
Cherche un élément par son nom.
[in] | name | Le nom d'objet. |
ElementPtrT castor3d::CacheViewT< CacheT, EventT >::tryRemove | ( | ElementKeyT const & | name | ) |
Retire un élément à partir d'un nom.
[in] | name | Le nom d'élément. |