[Tizen] Add GetRenderTaskList to SceneHolder
[platform/core/uifw/dali-adaptor.git] / dali / integration-api / adaptor-framework / scene-holder-impl.cpp
1 /*
2  * Copyright (c) 2023 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/integration-api/adaptor-framework/scene-holder-impl.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/debug.h>
23 #include <dali/integration-api/events/hover-event-integ.h>
24 #include <dali/integration-api/events/key-event-integ.h>
25 #include <dali/integration-api/events/touch-event-integ.h>
26 #include <dali/integration-api/events/wheel-event-integ.h>
27 #include <dali/public-api/actors/actor.h>
28 #include <dali/public-api/actors/layer.h>
29 #include <dali/public-api/common/dali-common.h>
30 #include <dali/public-api/render-tasks/render-task-list.h>
31
32 // INTERNAL INCLUDES
33 #include <dali/internal/adaptor/common/adaptor-impl.h>
34 #include <dali/internal/adaptor/common/lifecycle-observer.h>
35 #include <dali/internal/graphics/gles/egl-graphics.h>
36 #include <dali/internal/input/common/key-impl.h>
37 #include <dali/internal/input/common/physical-keyboard-impl.h>
38 #include <dali/internal/system/common/time-service.h>
39
40 namespace Dali
41 {
42 namespace Internal
43 {
44 namespace Adaptor
45 {
46 namespace
47 {
48 #if defined(DEBUG_ENABLED)
49 Debug::Filter* gSceneHolderLogFilter = Debug::Filter::New(Debug::NoLogging, false, "LOG_SCENE_HOLDER");
50 #endif
51 } // unnamed namespace
52
53 uint32_t SceneHolder::mSceneHolderCounter = 0;
54
55 class SceneHolder::SceneHolderLifeCycleObserver : public LifeCycleObserver
56 {
57 public:
58   SceneHolderLifeCycleObserver(Adaptor*& adaptor)
59   : mAdaptor(adaptor){};
60
61 private: // Adaptor::LifeCycleObserver interface
62   void OnStart() override{};
63   void OnPause() override{};
64   void OnResume() override{};
65   void OnStop() override{};
66   void OnDestroy() override
67   {
68     mAdaptor = nullptr;
69   };
70
71 private:
72   Adaptor*& mAdaptor;
73 };
74
75 SceneHolder::SceneHolder()
76 : mLifeCycleObserver(new SceneHolderLifeCycleObserver(mAdaptor)),
77   mId(mSceneHolderCounter++),
78   mSurface(nullptr),
79   mAdaptor(nullptr),
80   mDpi(),
81   mIsBeingDeleted(false),
82   mAdaptorStarted(false),
83   mVisible(true)
84 {
85 }
86
87 SceneHolder::~SceneHolder()
88 {
89   if(mScene)
90   {
91     // The scene graph object should be removed first.
92     mScene.RemoveSceneObject();
93   }
94
95   if(mAdaptor)
96   {
97     mAdaptor->RemoveObserver(*mLifeCycleObserver.get());
98     mAdaptor->RemoveWindow(this);
99
100     // The event queue is flushed and we wait for the completion of the surface removal
101     mAdaptor->DeleteSurface(*mSurface.get());
102
103     mAdaptor = nullptr;
104   }
105
106   if(mScene)
107   {
108     // We should remove the surface from the Core last
109     mScene.Discard();
110   }
111 }
112
113 void SceneHolder::Add(Dali::Actor actor)
114 {
115   if(mScene)
116   {
117     mScene.Add(actor);
118   }
119 }
120
121 void SceneHolder::Remove(Dali::Actor actor)
122 {
123   if(mScene)
124   {
125     mScene.Remove(actor);
126   }
127 }
128
129 Dali::Layer SceneHolder::GetRootLayer() const
130 {
131   return mScene ? mScene.GetRootLayer() : Dali::Layer();
132 }
133
134 Dali::Layer SceneHolder::GetOverlayLayer()
135 {
136   return mScene ? mScene.GetOverlayLayer() : Dali::Layer();
137 }
138
139 uint32_t SceneHolder::GetId() const
140 {
141   return mId;
142 }
143
144 std::string SceneHolder::GetName() const
145 {
146   return mName;
147 }
148
149 bool SceneHolder::IsVisible() const
150 {
151   return mVisible;
152 }
153
154 Dali::Integration::Scene SceneHolder::GetScene()
155 {
156   return mScene;
157 }
158
159 Uint16Pair SceneHolder::GetDpi() const
160 {
161   return mDpi;
162 }
163
164 void SceneHolder::SetSurface(Dali::RenderSurfaceInterface* surface)
165 {
166   mSurface.reset(surface);
167
168   mScene.SurfaceReplaced();
169
170   PositionSize surfacePositionSize = surface->GetPositionSize();
171
172   SurfaceResized(static_cast<float>(surfacePositionSize.width), static_cast<float>(surfacePositionSize.height));
173
174   InitializeDpi();
175
176   mSurface->SetAdaptor(*mAdaptor);
177   mSurface->SetScene(mScene);
178
179   // Recreate the render target
180   CreateRenderTarget();
181
182   OnSurfaceSet(surface);
183 }
184
185 void SceneHolder::SurfaceResized(float width, float height)
186 {
187   if(DALI_LIKELY(mScene))
188   {
189     mScene.SurfaceResized(width, height);
190   }
191
192   mSurface->SetFullSwapNextFrame();
193
194   // Recreate the render target
195   CreateRenderTarget();
196 }
197
198 Dali::RenderSurfaceInterface* SceneHolder::GetSurface() const
199 {
200   return mSurface.get();
201 }
202
203 void SceneHolder::SetBackgroundColor(const Vector4& color)
204 {
205   if(mScene)
206   {
207     mScene.SetBackgroundColor(color);
208
209     mSurface->SetFullSwapNextFrame();
210   }
211 }
212
213 Vector4 SceneHolder::GetBackgroundColor() const
214 {
215   return mScene ? mScene.GetBackgroundColor() : Color::BLACK;
216 }
217
218 void SceneHolder::SetAdaptor(Dali::Adaptor& adaptor)
219 {
220   // Avoid doing this more than once
221   if(mAdaptorStarted)
222   {
223     return;
224   }
225
226   DALI_ASSERT_DEBUG(mSurface && "Surface needs to be set before calling this method\n");
227
228   mAdaptorStarted = true;
229
230   // Create the scene
231   PositionSize surfacePositionSize = mSurface->GetPositionSize();
232   int          windowOrientation   = mSurface->GetSurfaceOrientation();
233   int          screenOrientation   = mSurface->GetScreenOrientation();
234
235   mScene = Dali::Integration::Scene::New(Size(static_cast<float>(surfacePositionSize.width), static_cast<float>(surfacePositionSize.height)), windowOrientation, screenOrientation);
236
237   Internal::Adaptor::Adaptor& adaptorImpl = Internal::Adaptor::Adaptor::GetImplementation(adaptor);
238   mAdaptor                                = &adaptorImpl;
239
240   // Create an observer for the adaptor lifecycle
241   mAdaptor->AddObserver(*mLifeCycleObserver);
242
243   InitializeDpi();
244
245   mSurface->SetAdaptor(*mAdaptor);
246   mSurface->SetScene(mScene);
247
248   // Create the render target
249   CreateRenderTarget();
250
251   OnAdaptorSet(adaptor);
252 }
253
254 void SceneHolder::CreateRenderTarget()
255 {
256   Graphics::RenderTargetCreateInfo rtInfo{};
257   rtInfo
258     .SetSurface(mSurface.get())
259     .SetExtent({static_cast<uint32_t>(mSurface->GetPositionSize().width), static_cast<uint32_t>(mSurface->GetPositionSize().height)})
260     .SetPreTransform(0 | Graphics::RenderTargetTransformFlagBits::TRANSFORM_IDENTITY_BIT);
261
262   mScene.SetSurfaceRenderTarget(rtInfo);
263 }
264
265 void SceneHolder::Pause()
266 {
267   Reset();
268
269   OnPause();
270 }
271
272 void SceneHolder::Resume()
273 {
274   Reset();
275
276   OnResume();
277 }
278
279 void SceneHolder::SurfaceRotated(float width, float height, int32_t windowOrientation, int32_t screenOrientation)
280 {
281   if(DALI_LIKELY(mScene))
282   {
283     mScene.SurfaceRotated(width, height, windowOrientation, screenOrientation);
284   }
285 }
286
287 void SceneHolder::SetRotationCompletedAcknowledgement()
288 {
289   if(DALI_LIKELY(mScene))
290   {
291     mScene.SetRotationCompletedAcknowledgement();
292   }
293 }
294
295 void SceneHolder::FeedTouchPoint(Dali::Integration::Point& point, int timeStamp)
296 {
297   if(timeStamp < 1)
298   {
299     timeStamp = TimeService::GetMilliSeconds();
300   }
301
302   Vector2 convertedPosition = RecalculatePosition(point.GetScreenPosition());
303   point.SetScreenPosition(convertedPosition);
304
305   Integration::TouchEvent                            touchEvent;
306   Integration::HoverEvent                            hoverEvent;
307   Integration::TouchEventCombiner::EventDispatchType type = mCombiner.GetNextTouchEvent(point, timeStamp, touchEvent, hoverEvent);
308   if(type != Integration::TouchEventCombiner::DISPATCH_NONE)
309   {
310     DALI_LOG_INFO(gSceneHolderLogFilter, Debug::Verbose, "%d: Device %d: Button state %d (%.2f, %.2f)\n", timeStamp, point.GetDeviceId(), point.GetState(), point.GetScreenPosition().x, point.GetScreenPosition().y);
311
312     // Signals can be emitted while processing core events, and the scene holder could be deleted in the signal callback.
313     // Keep the handle alive until the core events are processed.
314     Dali::BaseHandle sceneHolder(this);
315
316     // First the touch and/or hover event & related gesture events are queued
317     if(type == Integration::TouchEventCombiner::DISPATCH_TOUCH || type == Integration::TouchEventCombiner::DISPATCH_BOTH)
318     {
319       mScene.QueueEvent(touchEvent);
320     }
321
322     if(type == Integration::TouchEventCombiner::DISPATCH_HOVER || type == Integration::TouchEventCombiner::DISPATCH_BOTH)
323     {
324       mScene.QueueEvent(hoverEvent);
325     }
326
327     // Next the events are processed with a single call into Core
328     mAdaptor->ProcessCoreEvents();
329   }
330 }
331
332 void SceneHolder::FeedWheelEvent(Dali::Integration::WheelEvent& wheelEvent)
333 {
334   // Signals can be emitted while processing core events, and the scene holder could be deleted in the signal callback.
335   // Keep the handle alive until the core events are processed.
336   Dali::BaseHandle sceneHolder(this);
337
338   Vector2 convertedPosition = RecalculatePosition(wheelEvent.point);
339   wheelEvent.point          = convertedPosition;
340
341   mScene.QueueEvent(wheelEvent);
342   mAdaptor->ProcessCoreEvents();
343 }
344
345 void SceneHolder::FeedKeyEvent(Dali::Integration::KeyEvent& keyEvent)
346 {
347   Dali::PhysicalKeyboard physicalKeyboard = PhysicalKeyboard::Get();
348   if(physicalKeyboard)
349   {
350     if(!KeyLookup::IsDeviceButton(keyEvent.keyName.c_str()))
351     {
352       GetImplementation(physicalKeyboard).KeyReceived(keyEvent.time > 1);
353     }
354   }
355
356   // Signals can be emitted while processing core events, and the scene holder could be deleted in the signal callback.
357   // Keep the handle alive until the core events are processed.
358   Dali::BaseHandle sceneHolder(this);
359
360   // Create send KeyEvent to Core.
361   mScene.QueueEvent(keyEvent);
362   mAdaptor->ProcessCoreEvents();
363 }
364
365 void SceneHolder::AddFrameRenderedCallback(std::unique_ptr<CallbackBase> callback, int32_t frameId)
366 {
367   mScene.AddFrameRenderedCallback(std::move(callback), frameId);
368
369   DALI_LOG_RELEASE_INFO("SceneHolder::AddFrameRenderedCallback:: Added [%d]\n", frameId);
370 }
371
372 void SceneHolder::AddFramePresentedCallback(std::unique_ptr<CallbackBase> callback, int32_t frameId)
373 {
374   mScene.AddFramePresentedCallback(std::move(callback), frameId);
375
376   DALI_LOG_RELEASE_INFO("SceneHolder::AddFramePresentedCallback:: Added [%d]\n", frameId);
377 }
378
379 Dali::RenderTaskList SceneHolder::GetRenderTaskList() const
380 {
381   return mScene.GetRenderTaskList();
382 }
383
384 Dali::Integration::SceneHolder SceneHolder::Get(Dali::Actor actor)
385 {
386   SceneHolder* sceneHolderImpl = nullptr;
387
388   if(Internal::Adaptor::Adaptor::IsAvailable())
389   {
390     Dali::Internal::Adaptor::Adaptor& adaptor = Internal::Adaptor::Adaptor::GetImplementation(Internal::Adaptor::Adaptor::Get());
391     sceneHolderImpl                           = adaptor.GetWindow(actor);
392   }
393
394   return Dali::Integration::SceneHolder(sceneHolderImpl);
395 }
396
397 void SceneHolder::Reset()
398 {
399   mCombiner.Reset();
400
401   // Any touch listeners should be told of the interruption.
402   Integration::TouchEvent event;
403   Integration::Point      point;
404   point.SetState(PointState::INTERRUPTED);
405   event.AddPoint(point);
406
407   // First the touch event & related gesture events are queued
408   mScene.QueueEvent(event);
409
410   // Next the events are processed with a single call into Core
411   mAdaptor->ProcessCoreEvents();
412 }
413
414 void SceneHolder::InitializeDpi()
415 {
416   unsigned int dpiHorizontal, dpiVertical;
417   dpiHorizontal = dpiVertical = 0;
418
419   mSurface->GetDpi(dpiHorizontal, dpiVertical);
420   mScene.SetDpi(Vector2(static_cast<float>(dpiHorizontal), static_cast<float>(dpiVertical)));
421
422   mDpi.SetX(dpiHorizontal);
423   mDpi.SetY(dpiVertical);
424 }
425
426 } // namespace Adaptor
427
428 } // namespace Internal
429
430 } // namespace Dali