94d9cdd0cb4bc76c98b4e4d19c88fc744f7a690e
[platform/core/uifw/dali-adaptor.git] / dali / internal / vector-animation / common / vector-animation-renderer-impl.h
1 #ifndef DALI_INTERNAL_VECTOR_ANIMATION_RENDERER_IMPL_H
2 #define DALI_INTERNAL_VECTOR_ANIMATION_RENDERER_IMPL_H
3
4 /*
5  * Copyright (c) 2022 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/object/base-object.h>
23
24 // INTERNAL INCLUDES
25 #include <dali/devel-api/adaptor-framework/vector-animation-renderer.h>
26 #include <dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.h>
27
28 namespace Dali
29 {
30 namespace Internal
31 {
32 namespace Adaptor
33 {
34 class VectorAnimationRenderer;
35 using VectorAnimationRendererPtr = IntrusivePtr<VectorAnimationRenderer>;
36
37 /**
38  * Dali internal VectorAnimationRenderer.
39  */
40 class VectorAnimationRenderer : public BaseObject, public ConnectionTracker
41 {
42 public:
43   /**
44    * @brief Creates a VectorAnimationRenderer object.
45    *
46    * @param[in] url The url of the vector animation file
47    */
48   static VectorAnimationRendererPtr New();
49
50   /**
51    * @copydoc Dali::VectorAnimationRenderer::Finalize()
52    */
53   void Finalize();
54
55   /**
56    * @copydoc Dali::VectorAnimationRenderer::Load()
57    */
58   bool Load(const std::string& url);
59
60   /**
61    * @copydoc Dali::VectorAnimationRenderer::SetRenderer()
62    */
63   void SetRenderer(Dali::Renderer renderer);
64
65   /**
66    * @copydoc Dali::VectorAnimationRenderer::SetSize()
67    */
68   void SetSize(uint32_t width, uint32_t height);
69
70   /**
71    * @copydoc Dali::VectorAnimationRenderer::Render()
72    */
73   bool Render(uint32_t frameNumber);
74
75   /**
76    * @copydoc Dali::VectorAnimationRenderer::RenderStopped()
77    */
78   void RenderStopped();
79
80   /**
81    * @copydoc Dali::VectorAnimationRenderer::GetTotalFrameNumber()
82    */
83   uint32_t GetTotalFrameNumber() const;
84
85   /**
86    * @copydoc Dali::VectorAnimationRenderer::GetFrameRate()
87    */
88   float GetFrameRate() const;
89
90   /**
91    * @copydoc Dali::VectorAnimationRenderer::GetDefaultSize()
92    */
93   void GetDefaultSize(uint32_t& width, uint32_t& height) const;
94
95   /**
96    * @copydoc Dali::VectorAnimationRenderer::GetLayerInfo()
97    */
98   void GetLayerInfo(Property::Map& map) const;
99
100   /**
101    * @copydoc Dali::VectorAnimationRenderer::GetMarkerInfo()
102    */
103   bool GetMarkerInfo(const std::string& marker, uint32_t& startFrame, uint32_t& endFrame) const;
104
105   /**
106    * @copydoc Dali::VectorAnimationRenderer::InvalidateBuffer()
107    */
108   void InvalidateBuffer();
109
110   /**
111    * @copydoc Dali::VectorAnimationRenderer::AddPropertyValueCallback()
112    */
113   void AddPropertyValueCallback(const std::string& keyPath, Dali::VectorAnimationRenderer::VectorProperty property, CallbackBase* callback, int32_t id);
114
115   /**
116    * @copydoc Dali::VectorAnimationRenderer::UploadCompletedSignal()
117    */
118   Dali::VectorAnimationRenderer::UploadCompletedSignalType& UploadCompletedSignal();
119
120 private:
121   /**
122    * @brief Constructor
123    */
124   VectorAnimationRenderer();
125
126   /**
127    * @brief Destructor.
128    */
129   ~VectorAnimationRenderer();
130
131 private:
132   VectorAnimationRenderer(const VectorAnimationRenderer&) = delete;
133   VectorAnimationRenderer& operator=(VectorAnimationRenderer&) = delete;
134
135 private:
136   VectorAnimationRendererPluginProxy mPlugin;
137 };
138
139 } // namespace Adaptor
140
141 } // namespace Internal
142
143 inline static Internal::Adaptor::VectorAnimationRenderer& GetImplementation(Dali::VectorAnimationRenderer& renderer)
144 {
145   DALI_ASSERT_ALWAYS(renderer && "VectorAnimationRenderer handle is empty.");
146
147   BaseObject& handle = renderer.GetBaseObject();
148
149   return static_cast<Internal::Adaptor::VectorAnimationRenderer&>(handle);
150 }
151
152 inline static const Internal::Adaptor::VectorAnimationRenderer& GetImplementation(const Dali::VectorAnimationRenderer& renderer)
153 {
154   DALI_ASSERT_ALWAYS(renderer && "VectorAnimationRenderer handle is empty.");
155
156   const BaseObject& handle = renderer.GetBaseObject();
157
158   return static_cast<const Internal::Adaptor::VectorAnimationRenderer&>(handle);
159 }
160
161 } // namespace Dali
162
163 #endif // DALI_INTERNAL_VECTOR_ANIMATION_RENDERER_IMPL_H