Merge "Use Vector4 for the update area" into devel/master
[platform/core/uifw/dali-core.git] / dali / internal / update / manager / update-proxy-impl.h
1 #ifndef DALI_INTERNAL_UPDATE_PROXY_IMPL_H
2 #define DALI_INTERNAL_UPDATE_PROXY_IMPL_H
3
4 /*
5  * Copyright (c) 2023 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <cstdint>
23 #include <memory>
24
25 // INTERNAL INCLUDES
26 #include <dali/internal/common/buffer-index.h>
27 #include <dali/internal/update/manager/transform-manager.h>
28 #include <dali/internal/update/nodes/node.h>
29 #include <dali/public-api/common/vector-wrapper.h>
30 #include <dali/public-api/math/matrix.h>
31 #include <dali/public-api/math/vector3.h>
32
33 namespace Dali
34 {
35 namespace Internal
36 {
37 namespace SceneGraph
38 {
39 class UpdateManager;
40 }
41
42 /**
43  * @brief The implementation of Dali::UpdateProxy.
44  *
45  * Ref-counting is not required for this object.
46  *
47  * @see Dali::UpdateProxy
48  */
49 class UpdateProxy
50 {
51 public:
52   /**
53    * @brief Constructor.
54    * @param[in]  updateManager      Ref to the UpdateManager in order to add property resetters
55    * @param[in]  transformManager   Ref to the TransformManager in order to set/get transform properties of nodes
56    * @param[in]  rootNode           The root node for this proxy
57    */
58   UpdateProxy(SceneGraph::UpdateManager& updateManager, SceneGraph::TransformManager& transformManager, SceneGraph::Node& rootNode);
59
60   /**
61    * @brief Destructor.
62    */
63   ~UpdateProxy();
64
65   // Movable but not copyable
66
67   UpdateProxy(const UpdateProxy&) = delete;            ///< Deleted copy constructor.
68   UpdateProxy(UpdateProxy&&)      = default;           ///< Default move constructor.
69   UpdateProxy& operator=(const UpdateProxy&) = delete; ///< Deleted copy assignment operator.
70   UpdateProxy& operator=(UpdateProxy&&) = delete;      ///< Deleted move assignment operator.
71
72   /**
73    * @copydoc Dali::UpdateProxy::GetPosition()
74    */
75   bool GetPosition(uint32_t id, Vector3& position) const;
76
77   /**
78    * @copydoc Dali::UpdateProxy::SetPosition()
79    */
80   bool SetPosition(uint32_t id, const Vector3& position);
81
82   /**
83    * @copydoc Dali::UpdateProxy::BakePosition()
84    */
85   bool BakePosition(uint32_t id, const Vector3& position);
86
87   /**
88    * @copydoc Dali::UpdateProxy::GetOrientation()
89    */
90   bool GetOrientation(uint32_t id, Quaternion& orientation) const;
91
92   /**
93    * @copydoc Dali::UpdateProxy::SetOrientation()
94    */
95   bool SetOrientation(uint32_t id, const Quaternion& orientation);
96
97   /**
98    * @copydoc Dali::UpdateProxy::BakeOrientation()
99    */
100   bool BakeOrientation(uint32_t id, const Quaternion& orientation);
101
102   /**
103    * @copydoc Dali::UpdateProxy::GetSize()
104    */
105   bool GetSize(uint32_t id, Vector3& size) const;
106
107   /**
108    * @copydoc Dali::UpdateProxy::SetSize()
109    */
110   bool SetSize(uint32_t id, const Vector3& size);
111
112   /**
113    * @copydoc Dali::UpdateProxy::BakeSize()
114    */
115   bool BakeSize(uint32_t id, const Vector3& size);
116
117   /**
118    * @copydoc Dali::UpdateProxy::GetPositionAndSize()
119    */
120   bool GetPositionAndSize(uint32_t id, Vector3& position, Vector3& size) const;
121
122   /**
123    * @copydoc Dali::UpdateProxy::GetWorldPositionScaleAndSize()
124    */
125   bool GetWorldPositionScaleAndSize(uint32_t id, Vector3& position, Vector3& scale, Vector3& size) const;
126
127   /**
128    * @copydoc Dali::UpdateProxy::GetWorldTransformAndSize()
129    */
130   bool GetWorldTransformAndSize(uint32_t id, Vector3& position, Vector3& scale, Quaternion& orientation, Vector3& size) const;
131
132   /**
133    * @copydoc Dali::UpdateProxy::GetScale()
134    */
135   bool GetScale(uint32_t id, Vector3& scale) const;
136
137   /**
138    * @copydoc Dali::UpdateProxy::SetScale()
139    */
140   bool SetScale(uint32_t id, const Vector3& scale);
141
142   /**
143    * @copydoc Dali::UpdateProxy::BakeScale()
144    */
145   bool BakeScale(uint32_t id, const Vector3& scale);
146
147   /**
148    * @copydoc Dali::UpdateProxy::GetColor()
149    */
150   bool GetColor(uint32_t id, Vector4& color) const;
151
152   /**
153    * @copydoc Dali::UpdateProxy::SetColor()
154    */
155   bool SetColor(uint32_t id, const Vector4& color);
156
157   /**
158    * @copydoc Dali::UpdateProxy::BakeColor()
159    */
160   bool BakeColor(uint32_t id, const Vector4& color);
161
162   /**
163    * @brief Retrieves the root-node used by this class
164    * @return The root node used by this class.
165    */
166   SceneGraph::Node& GetRootNode() const
167   {
168     return mRootNode;
169   }
170
171   /**
172    * @brief Sets the buffer index to use when processing the next callback.
173    * @param[in]  bufferIndex  The current buffer index
174    */
175   void SetCurrentBufferIndex(BufferIndex bufferIndex)
176   {
177     mCurrentBufferIndex = bufferIndex;
178   }
179
180   /**
181    * @brief Informs the update-proxy that the node hierarchy has changed.
182    */
183   void NodeHierarchyChanged();
184
185   /**
186    * @brief Adds node resetter for each dirty node whose animatable properties have been changed.
187    */
188   void AddNodeResetters();
189
190 private:
191   /**
192    * @brief Retrieves the node with the specified ID.
193    * @param[in]  id  The ID of the node required
194    * @return A pointer to the required node if found.
195    * @note This caches the last accessed node.
196    */
197   SceneGraph::Node* GetNodeWithId(uint32_t id) const;
198
199   /**
200    * @brief Adds a property-resetter for non-transform properties so that they can be reset to their base value every frame.
201    * @param[in]  node          The node the property belongs to
202    * @param[in]  propertyBase  The property itself
203    */
204   void AddResetter(SceneGraph::Node& node, SceneGraph::PropertyBase& propertyBase);
205
206 private:
207   /**
208    * Structure to store the ID & Node pair
209    */
210   struct IdNodePair
211   {
212     uint32_t          id;   ///< The ID of the node
213     SceneGraph::Node* node; ///< The node itself
214   };
215
216   class PropertyModifier;
217   using PropertyModifierPtr = std::unique_ptr<PropertyModifier>;
218
219   mutable std::vector<IdNodePair> mNodeContainer;        ///< Used to store cached pointers to already searched for Nodes.
220   mutable IdNodePair              mLastCachedIdNodePair; ///< Used to cache the last retrieved id-node pair.
221   mutable std::vector<uint32_t>   mDirtyNodes;           ///< Used to store the ID of the dirty nodes with non-transform property modifications.
222   BufferIndex                     mCurrentBufferIndex;
223
224   SceneGraph::UpdateManager&    mUpdateManager;    ///< Reference to the Update Manager.
225   SceneGraph::TransformManager& mTransformManager; ///< Reference to the Transform Manager.
226   SceneGraph::Node&             mRootNode;         ///< The root node of this update proxy.
227
228   PropertyModifierPtr mPropertyModifier; ///< To ensure non-transform property modifications reset to base values.
229 };
230
231 } // namespace Internal
232
233 } // namespace Dali
234
235 #endif // DALI_INTERNAL_UPDATE_PROXY_IMPL_H