[dali_2.3.33] Merge branch 'devel/master'
[platform/core/uifw/dali-core.git] / dali / internal / event / rendering / geometry-impl.h
1 #ifndef DALI_INTERNAL_GEOMETRY_H
2 #define DALI_INTERNAL_GEOMETRY_H
3
4 /*
5  * Copyright (c) 2021 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 <dali/public-api/common/vector-wrapper.h> // std::vector
23
24 // INTERNAL INCLUDES
25 #include <dali/public-api/common/dali-common.h>   // DALI_ASSERT_ALWAYS
26 #include <dali/public-api/common/intrusive-ptr.h> // Dali::IntrusivePtr
27 #include <dali/public-api/object/base-object.h>
28 #include <dali/public-api/rendering/geometry.h> // Dali::Geometry
29
30 #include <dali/internal/event/rendering/vertex-buffer-impl.h> // Dali::Internal::VertexBuffer
31 #include <dali/internal/render/renderers/render-geometry.h>
32
33 namespace Dali
34 {
35 namespace Internal
36 {
37 namespace SceneGraph
38 {
39 class Geometry;
40 }
41
42 class Geometry;
43 using GeometryPtr = IntrusivePtr<Geometry>;
44
45 /**
46  * Geometry is an object that contains an array of structures of values that
47  * can be accessed as properties.
48  */
49 class Geometry : public BaseObject
50 {
51 public:
52   /**
53    * Create a new Geometry.
54    * @return A smart-pointer to the newly allocated Geometry.
55    */
56   static GeometryPtr New();
57
58   /**
59    * @copydoc Dali::Geometry::AddVertexBuffer()
60    */
61   uint32_t AddVertexBuffer(VertexBuffer& vertexBuffer);
62
63   /**
64    * @copydoc Dali::Geometry::GetNumberOfVertexBuffers()
65    */
66   uint32_t GetNumberOfVertexBuffers() const;
67
68   /**
69    * @copydoc Dali::Geometry::RemoveVertexBuffer()
70    */
71   void RemoveVertexBuffer(uint32_t index);
72
73   /**
74    * @copydoc Dali::Geometry::SetIndexBuffer()
75    */
76   void SetIndexBuffer(const uint16_t* indices, uint32_t count);
77
78   /**
79    * @copydoc Dali::Geometry::SetIndexBuffer()
80    */
81   void SetIndexBuffer(const uint32_t* indices, uint32_t count);
82
83   /**
84    * @copydoc Dali::Geometry::SetType()
85    */
86   void SetType(Dali::Geometry::Type geometryType);
87
88   /**
89    * @copydoc Dali::Geometry::GetType()
90    */
91   Dali::Geometry::Type GetType() const;
92
93   /**
94    * @brief Get the geometry scene object
95    *
96    * @return the geometry scene object
97    */
98   const Render::Geometry* GetRenderObject() const;
99
100 private: // implementation
101   /**
102    * Constructor
103    */
104   Geometry();
105
106   /**
107    * Second stage initialization of the Geometry
108    */
109   void Initialize();
110
111 protected:
112   /**
113    * A reference counted object may only be deleted by calling Unreference()
114    */
115   ~Geometry() override;
116
117 private: // unimplemented methods
118   Geometry(const Geometry&);
119   Geometry& operator=(const Geometry&);
120
121 private:                                     // data
122   EventThreadServices& mEventThreadServices; ///<Used to send messages to the render thread via update thread
123   Render::Geometry*    mRenderObject;
124
125   std::vector<VertexBufferPtr> mVertexBuffers; ///< Vector of intrusive pointers to vertex buffers
126   Dali::Geometry::Type         mType;          ///< Geometry type (cached)
127 };
128
129 } // namespace Internal
130
131 // Helpers for public-api forwarding methods
132 inline Internal::Geometry& GetImplementation(Dali::Geometry& handle)
133 {
134   DALI_ASSERT_ALWAYS(handle && "Geometry handle is empty");
135
136   BaseObject& object = handle.GetBaseObject();
137
138   return static_cast<Internal::Geometry&>(object);
139 }
140
141 inline const Internal::Geometry& GetImplementation(const Dali::Geometry& handle)
142 {
143   DALI_ASSERT_ALWAYS(handle && "Geometry handle is empty");
144
145   const BaseObject& object = handle.GetBaseObject();
146
147   return static_cast<const Internal::Geometry&>(object);
148 }
149
150 } // namespace Dali
151
152 #endif // DALI_INTERNAL_GEOMETRY_H