DART 6.7.3
Loading...
Searching...
No Matches
Composite.hpp
Go to the documentation of this file.
1/*
2 * Copyright (c) 2011-2019, The DART development contributors
3 * All rights reserved.
4 *
5 * The list of contributors can be found at:
6 * https://github.com/dartsim/dart/blob/master/LICENSE
7 *
8 * This file is provided under the following "BSD-style" License:
9 * Redistribution and use in source and binary forms, with or
10 * without modification, are permitted provided that the following
11 * conditions are met:
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
19 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
20 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
26 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 */
32
33#ifndef DART_COMMON_COMPOSITE_HPP_
34#define DART_COMMON_COMPOSITE_HPP_
35
37
38namespace dart {
39namespace common {
40
52{
53public:
54
57
58 using AspectMap = std::map< std::type_index, std::unique_ptr<Aspect> >;
59 using RequiredAspectSet = std::unordered_set<std::type_index>;
60
61 template <typename... Aspects>
63
64 template <typename... Aspects>
66
68 virtual ~Composite() = default;
69
71 Composite() = default;
72
74 // TODO(MXG): Consider making this safe by cloning Aspects into the new copy
75 Composite(const Composite&) = delete;
76
78 Composite(Composite&&) = delete;
79
81 Composite& operator=(const Composite&) = delete;
82
85
87 template <class T>
88 bool has() const;
89
91 template <class T>
92 T* get();
93
95 template <class T>
96 const T* get() const;
97
101 template <class T>
102 void set(const T* aspect);
103
107 template <class T>
108 void set(std::unique_ptr<T>&& aspect);
109
111 template <class T, typename ...Args>
112 T* createAspect(Args&&... args);
113
115 template <class T>
116 void removeAspect();
117
121 template <class T>
122 std::unique_ptr<T> releaseAspect();
123
127 template <class T>
128 static constexpr bool isSpecializedFor();
129
131 template <class T>
132 bool requiresAspect() const;
133
137 void setCompositeState(const State& newStates);
138
140 State getCompositeState() const;
141
143 void copyCompositeStateTo(State& outgoingStates) const;
144
148 void setCompositeProperties(const Properties& newProperties);
149
152
155 void copyCompositePropertiesTo(Properties& outgoingProperties) const;
156
158 void duplicateAspects(const Composite* fromComposite);
159
163 void matchAspects(const Composite* otherComposite);
164
165protected:
166
169 void addToComposite(Aspect* aspect);
170
173 void removeFromComposite(Aspect* aspect);
174
176 void _set(std::type_index type_idx, const Aspect* aspect);
177
179 void _set(std::type_index type_idx, std::unique_ptr<Aspect> aspect);
180
183
187};
188
189//==============================================================================
191// TODO(MXG): Consider putting this functionality into the Composite class
192// itself. Also consider allowing the user to specify arguments for the
193// constructors of the Aspects.
194template <class T>
195void createAspects(T* /*comp*/);
196
197//==============================================================================
198template <class T, class NextAspect, class... Aspects>
199void createAspects(T* comp);
200
201} // namespace common
202} // namespace dart
203
205
206#endif // DART_COMMON_COMPOSITE_HPP_
Definition Aspect.hpp:47
Composite is a base class that should be virtually inherited by any class that wants to be able to ma...
Definition Composite.hpp:52
std::unordered_set< std::type_index > RequiredAspectSet
Definition Composite.hpp:59
RequiredAspectSet mRequiredAspects
A set containing type information for Aspects which are not allowed to leave this composite.
Definition Composite.hpp:186
Composite & operator=(Composite &&)=delete
It is currently unsafe to move an Composite.
State getCompositeState() const
Get the states of the aspects inside of this Composite.
Definition Composite.cpp:154
void duplicateAspects(const Composite *fromComposite)
Give this Composite a copy of each Aspect from otherComposite.
Definition Composite.cpp:197
static constexpr bool isSpecializedFor()
Check if this Composite is specialized for a specific type of Aspect.
Definition Composite.hpp:131
void copyCompositeStateTo(State &outgoingStates) const
Fill outgoingStates with the states of the aspects inside this Composite.
Definition Composite.cpp:163
void removeAspect()
Remove an Aspect from this Composite.
Definition Composite.hpp:102
bool requiresAspect() const
Check if this Composite requires this specific type of Aspect.
Definition Composite.hpp:138
void _set(std::type_index type_idx, const Aspect *aspect)
Non-templated version of set(const T*)
Definition Composite.cpp:278
T * get()
Get a certain type of Aspect from this Composite.
Definition Composite.hpp:59
Composite & operator=(const Composite &)=delete
It is currently unsafe to copy an Composite.
Properties getCompositeProperties() const
Get the properties of the aspects inside of this Composite.
Definition Composite.cpp:179
void addToComposite(Aspect *aspect)
Add this Aspect to the Composite.
Definition Composite.cpp:264
void removeFromComposite(Aspect *aspect)
Remove this Aspect from the Composite.
Definition Composite.cpp:271
Composite(Composite &&)=delete
It is currently unsafe to move an Composite.
Composite()=default
Default constructor.
std::unique_ptr< T > releaseAspect()
Remove an Aspect from this Composite, but return its unique_ptr instead of letting it be deleted.
Definition Composite.hpp:115
void setCompositeProperties(const Properties &newProperties)
Set the properties of the aspects in this Composite based on the given Composite::Properties.
Definition Composite.cpp:171
std::map< std::type_index, std::unique_ptr< Aspect > > AspectMap
Definition Composite.hpp:58
bool has() const
Check if this Composite currently has a certain type of Aspect.
Definition Composite.hpp:52
void copyCompositePropertiesTo(Properties &outgoingProperties) const
Fill outgoingProperties with the properties of the aspects inside this Composite.
Definition Composite.cpp:188
Composite(const Composite &)=delete
It is currently unsafe to copy an Composite.
void setCompositeState(const State &newStates)
Set the states of the aspects in this Composite based on the given Composite::State.
Definition Composite.cpp:147
T * createAspect(Args &&... args)
Construct an Aspect inside of this Composite.
Definition Composite.hpp:91
AspectMap mAspectMap
A map that relates the type of Aspect to its pointer.
Definition Composite.hpp:182
virtual ~Composite()=default
Virtual destructor.
void matchAspects(const Composite *otherComposite)
Make the Aspects of this Composite match the Aspects of otherComposite.
Definition Composite.cpp:247
void set(const T *aspect)
Make a clone of the aspect and place the clone into this Composite.
Definition Composite.hpp:77
Definition CompositeData.hpp:180
Definition CompositeData.hpp:104
CompositeData< CompositeStateMap, GetState > CompositeState
Definition CompositeData.hpp:174
CompositeData< CompositePropertiesMap, GetProperties > CompositeProperties
Definition CompositeData.hpp:175
void createAspects(T *)
Attach an arbitrary number of Aspects to the specified Composite type.
Definition Composite.hpp:145
Definition BulletCollisionDetector.cpp:63