Enable masking for Scene3D::SceneView
[platform/core/uifw/dali-toolkit.git] / dali-scene3d / internal / controls / scene-view / scene-view-impl.h
1 #ifndef DALI_SCENE3D_INTERNAL_SCENE_VIEW_H
2 #define DALI_SCENE3D_INTERNAL_SCENE_VIEW_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 <dali-toolkit/internal/visuals/image/image-visual.h>
23 #include <dali-toolkit/public-api/controls/control-impl.h>
24 #include <dali/integration-api/adaptor-framework/scene-holder.h>
25 #include <dali/public-api/actors/camera-actor.h>
26 #include <dali/public-api/actors/layer.h>
27 #include <dali/public-api/adaptor-framework/window.h>
28 #include <dali/public-api/animation/animation.h>
29 #include <dali/public-api/object/weak-handle.h>
30 #include <dali/public-api/render-tasks/render-task.h>
31 #include <dali/public-api/rendering/frame-buffer.h>
32 #include <dali/public-api/rendering/texture.h>
33
34 // INTERNAL INCLUDES
35 #include <dali-scene3d/internal/common/environment-map-load-task.h>
36 #include <dali-scene3d/internal/common/light-observer.h>
37 #include <dali-scene3d/public-api/controls/scene-view/scene-view.h>
38 #include <dali-scene3d/public-api/loader/shader-manager.h>
39
40 namespace Dali
41 {
42 namespace Scene3D
43 {
44 class SceneView;
45
46 namespace Internal
47 {
48 /**
49  * @brief Impl class for SceneView.
50  */
51 class SceneView : public Dali::Toolkit::Internal::Control
52 {
53 public:
54   /**
55    * @brief Creates a new SceneView.
56    *
57    * @return A public handle to the newly allocated SceneView.
58    */
59   static Dali::Scene3D::SceneView New();
60
61   /**
62    * @copydoc SceneView::AddCamera()
63    */
64   void AddCamera(Dali::CameraActor camera);
65
66   /**
67    * @copydoc SceneView::RemoveCamera()
68    */
69   void RemoveCamera(CameraActor camera);
70
71   /**
72    * @copydoc SceneView::GetCameraCount()
73    */
74   uint32_t GetCameraCount() const;
75
76   /**
77    * @copydoc SceneView::GetSelectedCamera()
78    */
79   CameraActor GetSelectedCamera() const;
80
81   /**
82    * @copydoc SceneView::GetCamera()
83    */
84   CameraActor GetCamera(uint32_t index) const;
85
86   /**
87    * @copydoc SceneView::GetCamera()
88    */
89   CameraActor GetCamera(const std::string& name) const;
90
91   /**
92    * @copydoc SceneView::SelectCamera()
93    */
94   void SelectCamera(uint32_t index);
95
96   /**
97    * @copydoc SceneView::SelectCamera()
98    */
99   void SelectCamera(const std::string& name);
100
101   /**
102    * @brief Register an item.
103    *
104    * Some works(e.g, lighting) of SceneView should be propagated to the child 3D items.
105    * SceneView can avoid unnecessary tree traversal to find 3D items by storing only 3D items as a list.
106    *
107    * @param[in] item scene observer to be registered.
108    */
109   void RegisterSceneItem(Scene3D::Internal::LightObserver* item);
110
111   /**
112    * @brief Unregister an item
113    *
114    * @param[in] item scene observer to be unregistered.
115    */
116   void UnregisterSceneItem(Scene3D::Internal::LightObserver* item);
117
118   /**
119    * @copydoc SceneView::SetImageBasedLightSource()
120    */
121   void SetImageBasedLightSource(const std::string& diffuseUrl, const std::string& specularUrl, float scaleFactor);
122
123   /**
124    * @copydoc SceneView::SetImageBasedLightScaleFactor()
125    */
126   void SetImageBasedLightScaleFactor(float scaleFactor);
127
128   /**
129    * @copydoc SceneView::GetImageBasedLightScaleFactor()
130    */
131   float GetImageBasedLightScaleFactor() const;
132
133   /**
134    * @brief Adds a Light object to this SceneView.
135    * Multiple light object can be added on this SceneView
136    * But the number of lights those actually turned on has limitation.
137    * Scene3D::Light::GetMaximumEnabledLightCount() method can be used to know the maximum namber.
138    *
139    * @param[in] light Light object to be added.
140    */
141   void AddLight(Scene3D::Light light);
142
143   /**
144    * @brief Removes a Light object to this SceneView.
145    * If the light is currently turned on, and SceneView has lights more than maximum number of enabled light.
146    * One of light in queue is turned on after this light is removed.
147    *
148    * @param[in] light Light object to be removed.
149    */
150   void RemoveLight(Scene3D::Light light);
151
152   /**
153    * @brief Set a shadow to this scene by input light.
154    * Currently, SceneView supports only one shadow.
155    *
156    * @param[in] light Light object to make shadow.
157    * @note The shadow will be drawn if the input light is turn on in current scene.
158    */
159   void SetShadow(Scene3D::Light light);
160
161   /**
162    * @brief Removes Shadow from this SceneView.
163    *
164    * @param[in] light Light object to be removed.
165    */
166   void RemoveShadow(Scene3D::Light light);
167
168   /**
169    * @copydoc SceneView::GetActivatedLightCount()
170    */
171   uint32_t GetActivatedLightCount() const;
172
173   /**
174    * @copydoc SceneView::UseFramebuffer()
175    */
176   void UseFramebuffer(bool useFramebuffer);
177
178   /**
179    * @copydoc SceneView::IsUsingFramebuffer()
180    */
181   bool IsUsingFramebuffer() const;
182
183   /**
184    * @copydoc SceneView::SetFramebufferMultiSamplingLevel()
185    */
186   void SetFramebufferMultiSamplingLevel(uint8_t multiSamplingLevel);
187
188   /**
189    * @copydoc SceneView::GetFramebufferMultiSamplingLevel()
190    */
191   uint8_t GetFramebufferMultiSamplingLevel() const;
192
193   /**
194    * @copydoc SceneView::SetSkybox()
195    */
196   void SetSkybox(const std::string& skyboxUrl);
197
198   /**
199    * @copydoc SceneView::SetSkyboxEnvironmentMapType()
200    */
201   void SetSkyboxEnvironmentMapType(Scene3D::EnvironmentMapType skyboxEnvironmentMapType);
202
203   /**
204    * @copydoc SceneView::SetSkyboxIntensity()
205    */
206   void SetSkyboxIntensity(float intensity);
207
208   /**
209    * @copydoc SceneView::GetSkyboxIntensity()
210    */
211   float GetSkyboxIntensity() const;
212
213   /**
214    * @copydoc SceneView::SetSkyboxOrientation()
215    */
216   void SetSkyboxOrientation(const Quaternion& orientation);
217
218   /**
219    * @copydoc SceneView::GetSkyboxOrientation()
220    */
221   Quaternion GetSkyboxOrientation() const;
222
223   /**
224    * @brief Retrieves ShaderManager of this SceneView.
225    * @return ShaderManager of this SceneView.
226    */
227   Dali::Scene3D::Loader::ShaderManagerPtr GetShaderManager() const;
228
229   /**
230    * @brief Updates shader uniforms about shadow.
231    * @param[in] light Light that makes shadow.
232    */
233   void UpdateShadowUniform(Scene3D::Light light);
234
235   /**
236    * @brief Sets alpha mask url
237    * @param[in] alphaMaskUrl Url for alpha mask.
238    */
239   void SetAlphaMaskUrl(std::string& alphaMaskUrl);
240
241   /**
242    * @brief Retrieves alpha mask url
243    * @return Alpha mask url.
244    */
245   std::string GetAlphaMaskUrl();
246
247   /**
248    * @brief Sets mask content scale factor
249    * @param[in] maskContentScaleFactor Scale factor for mask content.
250    */
251   void SetMaskContentScaleFactor(float maskContentScaleFactor);
252
253   /**
254    * @brief Retrieves mask content scale factor
255    * @return Scale factor for mask content.
256    */
257   float GetMaskContentScaleFactor();
258
259   /**
260    * @brief Sets whether the rendered result will be crop to mask or not.
261    * @param[in] enableCropToMask True for crop rendered result to mask.
262    */
263   void EnableCropToMask(bool enableCropToMask);
264
265   /**
266    * @brief Retrieves whether the crop to mask is enabled or not.
267    * @return True when rendered result is cropped to mask.
268    */
269   bool IsEnabledCropToMask();
270
271   // Properties
272
273   /**
274    * Called when a property of an object of this type is set.
275    * @param[in] object The object whose property is set.
276    * @param[in] index The property index.
277    * @param[in] value The new property value.
278    */
279   static void SetProperty(BaseObject* object, Property::Index index, const Property::Value& value);
280
281   /**
282    * Called to retrieve a property of an object of this type.
283    * @param[in] object The object whose property is to be retrieved.
284    * @param[in] index The property index.
285    * @return The current value of the property.
286    */
287   static Property::Value GetProperty(BaseObject* object, Property::Index index);
288
289 protected:
290   /**
291    * @brief Constructs a new SceneView.
292    */
293   SceneView();
294
295   /**
296    * A reference counted object may only be deleted by calling Unreference()
297    */
298   virtual ~SceneView();
299
300 private:
301   /**
302    * @copydoc CustomActorImpl::OnSceneConnection()
303    */
304   void OnSceneConnection(int depth) override;
305
306   /**
307    * @copydoc CustomActorImpl::OnSceneDisconnection()
308    */
309   void OnSceneDisconnection() override;
310
311   /**
312    * @copydoc Toolkit::Control::OnInitialize()
313    */
314   void OnInitialize() override;
315
316   /**
317    * @copydoc Toolkit::Control::OnChildAdd()
318    */
319   void OnChildAdd(Actor& child) override;
320
321   /**
322    * @copydoc Toolkit::Control::OnChildRemove()
323    */
324   void OnChildRemove(Actor& child) override;
325
326   /**
327    * @copydoc Toolkit::Control::GetHeightForWidth()
328    */
329   float GetHeightForWidth(float width) override;
330
331   /**
332    * @copydoc Toolkit::Control::GetWidthForHeight()
333    */
334   float GetWidthForHeight(float height) override;
335
336   /**
337    * @copydoc Toolkit::Control::OnRelayout()
338    */
339   void OnRelayout(const Vector2& size, RelayoutContainer& container) override;
340
341   /**
342    * @copydoc Toolkit::Control::IsResourceReady()
343    */
344   bool IsResourceReady() const override;
345
346   /**
347    * @brief Changes main camera as a input camera
348    *
349    * @param camera CameraActor that will be a main camera of the SceneView
350    */
351   void UpdateCamera(CameraActor camera);
352
353   /**
354    * @brief Updates RenderTask to use selected camera and to make framebuffer
355    */
356   void UpdateRenderTask();
357
358   /**
359    * @brief Callback that will be called when window is resized.
360    */
361   void OnWindowResized(Window window, Window::WindowSize size);
362
363   /**
364    * @brief Updates camera's projection orientation according to the screen orientation.
365    */
366   void RotateCamera();
367
368   /**
369    * @brief UpdateSkybox with skybox url and skybox environment map type.
370    *
371    * @param[in] skyboxUrl image url for skybox.
372    * @param[in] skyboxEnvironmentMapType The environment type of skybox.
373    */
374   void UpdateSkybox(const std::string& skyboxUrl, Scene3D::EnvironmentMapType skyboxEnvironmentMapType);
375
376   /**
377    * @brief Asynchronously skybox loading finished.
378    */
379   void OnSkyboxLoadComplete();
380
381   /**
382    * @brief Asynchronously ibl diffusel image loading finished.
383    */
384   void OnIblDiffuseLoadComplete();
385
386   /**
387    * @brief Asynchronously ibl specular image loading finished.
388    */
389   void OnIblSpecularLoadComplete();
390
391   /**
392    * @brief Asynchronously ibl loading finished.
393    */
394   void OnIblLoadComplete();
395
396   /**
397    * @brief Notify the changes of Ibl textures to the child items.
398    */
399   void NotifyImageBasedLightTextureChange();
400
401   /**
402    * @brief Update shadowMap framebuffer when the size should be changed.
403    * @param[in] shadowMapSize The size of shadowMap texture. The texture's width and hight is equal.
404    */
405   void UpdateShadowMapBuffer(uint32_t shadowMapSize);
406
407 private:
408   Toolkit::Visual::Base mVisual;
409
410   /////////////////////////////////////////////////////////////
411   // FrameBuffer and Rendertask to render child objects as a 3D Scene
412   Dali::WeakHandle<Dali::Window>                 mWindow;
413   Integration::SceneHolder                       mSceneHolder;
414   CameraActor                                    mDefaultCamera;
415   CameraActor                                    mSelectedCamera;
416   std::vector<CameraActor>                       mCameras;
417   std::vector<Scene3D::Internal::LightObserver*> mItems;
418   Dali::FrameBuffer                              mFrameBuffer;
419   Dali::Texture                                  mTexture;
420   Dali::RenderTask                               mRenderTask;
421   Layer                                          mRootLayer;
422   int32_t                                        mWindowOrientation;
423   Dali::Actor                                    mSkybox;
424   Quaternion                                     mSkyboxOrientation;
425   float                                          mSkyboxIntensity{1.0f};
426   uint8_t                                        mFrameBufferMultiSamplingLevel{0u};
427
428   // Masking
429   std::string mAlphaMaskUrl;
430   float       mMaskContentScaleFactor{1.0f};
431   bool        mCropToMask{true};
432   bool        mMaskingPropertyChanged{false};
433
434   // Shader Factory
435   Dali::Scene3D::Loader::ShaderManagerPtr mShaderManager;
436
437   // Light
438   std::vector<std::pair<Scene3D::Light, bool>> mLights; // Pair of Light object and flag that denotes the light is currently activated or not.
439   Dali::FrameBuffer                            mShadowFrameBuffer;
440   Dali::RenderTask                             mShadowMapRenderTask;
441   Scene3D::Light                               mShadowLight;
442   Dali::Texture                                mShadowTexture;
443
444   // Asynchronous Loading.
445   EnvironmentMapLoadTaskPtr mSkyboxLoadTask;
446   EnvironmentMapLoadTaskPtr mIblDiffuseLoadTask;
447   EnvironmentMapLoadTaskPtr mIblSpecularLoadTask;
448   std::string               mSkyboxUrl;
449   std::string               mDiffuseIblUrl;
450   std::string               mSpecularIblUrl;
451
452   Scene3D::EnvironmentMapType mSkyboxEnvironmentMapType{Scene3D::EnvironmentMapType::AUTO};
453   Dali::Texture               mSkyboxTexture;
454   Dali::Texture               mDiffuseTexture;
455   Dali::Texture               mSpecularTexture;
456   float                       mIblScaleFactor{1.0f};
457   uint32_t                    mSpecularMipmapLevels{1u};
458   bool                        mUseFrameBuffer{false};
459   bool                        mSkyboxResourceReady{true};
460   bool                        mIblDiffuseResourceReady{true};
461   bool                        mIblSpecularResourceReady{true};
462   bool                        mSkyboxDirty{false};
463   bool                        mIblDiffuseDirty{false};
464   bool                        mIblSpecularDirty{false};
465 };
466
467 } // namespace Internal
468
469 // Helpers for public-api forwarding methods
470 inline Dali::Scene3D::Internal::SceneView& GetImpl(Dali::Scene3D::SceneView& obj)
471 {
472   DALI_ASSERT_ALWAYS(obj);
473   Dali::RefObject& handle = obj.GetImplementation();
474   return static_cast<Dali::Scene3D::Internal::SceneView&>(handle);
475 }
476
477 inline const Dali::Scene3D::Internal::SceneView& GetImpl(const Dali::Scene3D::SceneView& obj)
478 {
479   DALI_ASSERT_ALWAYS(obj);
480   const Dali::RefObject& handle = obj.GetImplementation();
481   return static_cast<const Dali::Scene3D::Internal::SceneView&>(handle);
482 }
483
484 } // namespace Scene3D
485
486 } // namespace Dali
487
488 #endif // DALI_SCENE3D_INTERNAL_SCENE_VIEW_H