Merge "Fix webp&gif issue" into devel/master
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / test-application.cpp
1 /*
2  * Copyright (c) 2022 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 #include "test-application.h"
19
20 namespace Dali
21 {
22 const Rect<int> TestApplication::DEFAULT_SURFACE_RECT = Rect<int>(0, 0, TestApplication::DEFAULT_SURFACE_WIDTH, TestApplication::DEFAULT_SURFACE_HEIGHT);
23
24 bool TestApplication::mLoggingEnabled = true;
25
26 TestApplication::TestApplication(uint32_t surfaceWidth,
27                                  uint32_t surfaceHeight,
28                                  uint32_t horizontalDpi,
29                                  uint32_t verticalDpi,
30                                  bool     initialize,
31                                  bool     enablePartialUpdate)
32 : mCore(NULL),
33   mSurfaceWidth(surfaceWidth),
34   mSurfaceHeight(surfaceHeight),
35   mFrame(0u),
36   mDpi{horizontalDpi, verticalDpi},
37   mLastVSyncTime(0u),
38   mPartialUpdateEnabled(enablePartialUpdate)
39 {
40   if(initialize)
41   {
42     Initialize();
43   }
44 }
45
46 void TestApplication::Initialize()
47 {
48   CreateCore();
49   CreateScene();
50   InitializeCore();
51 }
52
53 void TestApplication::CreateCore()
54 {
55   // We always need the first update!
56   mStatus.keepUpdating = Integration::KeepUpdating::STAGE_KEEP_RENDERING;
57
58   mCore = Dali::Integration::Core::New(mRenderController,
59                                        mPlatformAbstraction,
60                                        mGraphicsController,
61                                        Integration::RenderToFrameBuffer::FALSE,
62                                        Integration::DepthBufferAvailable::TRUE,
63                                        Integration::StencilBufferAvailable::TRUE,
64                                        mPartialUpdateEnabled ? Integration::PartialUpdateAvailable::TRUE : Integration::PartialUpdateAvailable::FALSE);
65
66   mCore->ContextCreated();
67
68   Dali::Integration::Log::LogFunction logFunction(&TestApplication::LogMessage);
69   Dali::Integration::Log::InstallLogFunction(logFunction);
70
71   Dali::Integration::Trace::LogContextFunction logContextFunction(&TestApplication::LogContext);
72   Dali::Integration::Trace::InstallLogContextFunction(logContextFunction);
73
74   Dali::Integration::Trace::LogContext(true, "Test");
75 }
76
77 void TestApplication::CreateScene()
78 {
79   mScene = Dali::Integration::Scene::New(Size(static_cast<float>(mSurfaceWidth), static_cast<float>(mSurfaceHeight)));
80   mScene.SetDpi(Vector2(static_cast<float>(mDpi.x), static_cast<float>(mDpi.y)));
81
82   // Create render target for the scene
83   Graphics::RenderTargetCreateInfo rtInfo{};
84   rtInfo.SetExtent({mSurfaceWidth, mSurfaceHeight});
85   rtInfo.SetSurface(&mSurfaceWidth); // Can point to anything, really.
86
87   mScene.SetSurfaceRenderTarget(rtInfo);
88 }
89
90 void TestApplication::InitializeCore()
91 {
92   mCore->SceneCreated();
93   mCore->Initialize();
94 }
95
96 TestApplication::~TestApplication()
97 {
98   Dali::Integration::Log::UninstallLogFunction();
99   delete mCore;
100 }
101
102 void TestApplication::LogContext(bool start, const char* tag)
103 {
104   if(start)
105   {
106     fprintf(stderr, "INFO: Trace Start: %s\n", tag);
107   }
108   else
109   {
110     fprintf(stderr, "INFO: Trace End: %s\n", tag);
111   }
112 }
113
114 void TestApplication::LogMessage(Dali::Integration::Log::DebugPriority level, std::string& message)
115 {
116   if(mLoggingEnabled)
117   {
118     switch(level)
119     {
120       case Dali::Integration::Log::DebugInfo:
121         fprintf(stderr, "INFO: %s", message.c_str());
122         break;
123       case Dali::Integration::Log::DebugWarning:
124         fprintf(stderr, "WARN: %s", message.c_str());
125         break;
126       case Dali::Integration::Log::DebugError:
127         fprintf(stderr, "ERROR: %s", message.c_str());
128         break;
129       default:
130         fprintf(stderr, "DEFAULT: %s", message.c_str());
131         break;
132     }
133   }
134 }
135
136 Dali::Integration::Core& TestApplication::GetCore()
137 {
138   return *mCore;
139 }
140
141 TestPlatformAbstraction& TestApplication::GetPlatform()
142 {
143   return mPlatformAbstraction;
144 }
145
146 TestRenderController& TestApplication::GetRenderController()
147 {
148   return mRenderController;
149 }
150
151 TestGraphicsController& TestApplication::GetGraphicsController()
152 {
153   return mGraphicsController;
154 }
155
156 TestGlAbstraction& TestApplication::GetGlAbstraction()
157 {
158   return static_cast<TestGlAbstraction&>(mGraphicsController.GetGlAbstraction());
159 }
160
161 TestGlContextHelperAbstraction& TestApplication::GetGlContextHelperAbstraction()
162 {
163   return static_cast<TestGlContextHelperAbstraction&>(mGraphicsController.GetGlContextHelperAbstraction());
164 }
165
166 TestGraphicsSyncImplementation& TestApplication::GetGraphicsSyncImpl()
167 {
168   return static_cast<TestGraphicsSyncImplementation&>(mGraphicsController.GetGraphicsSyncImpl());
169 }
170
171 void TestApplication::ProcessEvent(const Integration::Event& event)
172 {
173   mCore->QueueEvent(event);
174   mCore->ProcessEvents();
175 }
176
177 void TestApplication::SendNotification()
178 {
179   mCore->ProcessEvents();
180 }
181
182 void TestApplication::DoUpdate(uint32_t intervalMilliseconds, const char* location, bool uploadOnly)
183 {
184   if(GetUpdateStatus() == 0 &&
185      mRenderStatus.NeedsUpdate() == false &&
186      !GetRenderController().WasCalled(TestRenderController::RequestUpdateFunc))
187   {
188     fprintf(stderr, "WARNING - Update not required :%s\n", location == NULL ? "NULL" : location);
189   }
190
191   uint32_t nextVSyncTime  = mLastVSyncTime + intervalMilliseconds;
192   float    elapsedSeconds = static_cast<float>(intervalMilliseconds) * 0.001f;
193
194   mCore->Update(elapsedSeconds, mLastVSyncTime, nextVSyncTime, mStatus, false, false, uploadOnly);
195
196   GetRenderController().Initialize();
197
198   mLastVSyncTime = nextVSyncTime;
199 }
200
201 bool TestApplication::Render(uint32_t intervalMilliseconds, const char* location, bool uploadOnly)
202 {
203   DoUpdate(intervalMilliseconds, location, uploadOnly);
204
205   // Reset the status
206   mRenderStatus.SetNeedsUpdate(false);
207   mRenderStatus.SetNeedsPostRender(false);
208
209   mCore->PreRender(mRenderStatus, false /*do not force clear*/);
210   if(!uploadOnly)
211   {
212     mCore->RenderScene(mRenderStatus, mScene, true /*render the off-screen buffers*/);
213     mCore->RenderScene(mRenderStatus, mScene, false /*render the surface*/);
214   }
215   mCore->PostRender();
216
217   mFrame++;
218
219   return mStatus.KeepUpdating() || mRenderStatus.NeedsUpdate();
220 }
221
222 bool TestApplication::PreRenderWithPartialUpdate(uint32_t intervalMilliseconds, const char* location, std::vector<Rect<int>>& damagedRects)
223 {
224   DoUpdate(intervalMilliseconds, location);
225
226   mCore->PreRender(mRenderStatus, false /*do not force clear*/);
227   mCore->PreRender(mScene, damagedRects);
228
229   return mStatus.KeepUpdating() || mRenderStatus.NeedsUpdate();
230 }
231
232 bool TestApplication::RenderWithPartialUpdate(std::vector<Rect<int>>& damagedRects, Rect<int>& clippingRect)
233 {
234   mCore->RenderScene(mRenderStatus, mScene, true /*render the off-screen buffers*/);
235   mCore->RenderScene(mRenderStatus, mScene, false /*render the surface*/, clippingRect);
236   mCore->PostRender();
237
238   mFrame++;
239
240   return mStatus.KeepUpdating() || mRenderStatus.NeedsUpdate();
241 }
242
243 uint32_t TestApplication::GetUpdateStatus()
244 {
245   return mStatus.KeepUpdating();
246 }
247
248 bool TestApplication::UpdateOnly(uint32_t intervalMilliseconds)
249 {
250   DoUpdate(intervalMilliseconds);
251   return mStatus.KeepUpdating();
252 }
253
254 bool TestApplication::GetRenderNeedsUpdate()
255 {
256   return mRenderStatus.NeedsUpdate();
257 }
258
259 bool TestApplication::GetRenderNeedsPostRender()
260 {
261   return mRenderStatus.NeedsPostRender();
262 }
263
264 bool TestApplication::RenderOnly()
265 {
266   // Update Time values
267   mCore->PreRender(mRenderStatus, false /*do not force clear*/);
268   mCore->RenderScene(mRenderStatus, mScene, true /*render the off-screen buffers*/);
269   mCore->RenderScene(mRenderStatus, mScene, false /*render the surface*/);
270   mCore->PostRender();
271
272   mFrame++;
273
274   return mRenderStatus.NeedsUpdate();
275 }
276
277 void TestApplication::ResetContext()
278 {
279   mCore->ContextDestroyed();
280   mGraphicsController.Initialize();
281   mCore->ContextCreated();
282 }
283
284 uint32_t TestApplication::Wait(uint32_t durationToWait)
285 {
286   int time = 0;
287
288   for(uint32_t i = 0; i <= (durationToWait / RENDER_FRAME_INTERVAL); i++)
289   {
290     SendNotification();
291     Render(RENDER_FRAME_INTERVAL);
292     time += RENDER_FRAME_INTERVAL;
293   }
294   return time;
295 }
296
297 } // namespace Dali