Merge changes I89471ca9,I866ffdec into devel/master
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / test-application.h
1 #ifndef DALI_TEST_APPLICATION_H
2 #define DALI_TEST_APPLICATION_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 // INTERNAL INCLUDES
22 #include <dali/integration-api/resource-policies.h>
23 #include <dali/integration-api/scene.h>
24 #include <dali/integration-api/trace.h>
25
26 #include <dali/public-api/common/dali-common.h>
27 #include <test-platform-abstraction.h>
28
29 #include "test-graphics-controller.h"
30 #include "test-render-controller.h"
31
32 namespace Dali
33 {
34 class DALI_CORE_API TestApplication : public ConnectionTracker
35 {
36 public:
37   // Default values derived from H2 device.
38   static const uint32_t DEFAULT_SURFACE_WIDTH  = 480;
39   static const uint32_t DEFAULT_SURFACE_HEIGHT = 800;
40
41   static const Rect<int> DEFAULT_SURFACE_RECT;
42
43   static constexpr uint32_t DEFAULT_HORIZONTAL_DPI = 220;
44   static constexpr uint32_t DEFAULT_VERTICAL_DPI   = 217;
45
46   static const uint32_t DEFAULT_RENDER_INTERVAL = 1;
47
48   static const uint32_t RENDER_FRAME_INTERVAL = 16;
49
50   TestApplication(uint32_t surfaceWidth        = DEFAULT_SURFACE_WIDTH,
51                   uint32_t surfaceHeight       = DEFAULT_SURFACE_HEIGHT,
52                   uint32_t horizontalDpi       = DEFAULT_HORIZONTAL_DPI,
53                   uint32_t verticalDpi         = DEFAULT_VERTICAL_DPI,
54                   bool     initialize          = true,
55                   bool     enablePartialUpdate = false);
56
57   void Initialize();
58   void CreateCore();
59   void CreateScene();
60   void InitializeCore();
61   ~TestApplication() override;
62   static void              LogMessage(Dali::Integration::Log::DebugPriority level, std::string& message);
63   static void              LogContext(bool start, const char* tag, const char* message);
64   Dali::Integration::Core& GetCore();
65   TestPlatformAbstraction& GetPlatform();
66   TestRenderController&    GetRenderController();
67   TestGraphicsController&  GetGraphicsController();
68
69   TestGlAbstraction&              GetGlAbstraction();
70   TestGlContextHelperAbstraction& GetGlContextHelperAbstraction();
71   TestGraphicsSyncImplementation& GetGraphicsSyncImpl();
72
73   void        ProcessEvent(const Integration::Event& event);
74   void        SendNotification();
75   bool        Render(uint32_t intervalMilliseconds = DEFAULT_RENDER_INTERVAL, const char* location = NULL, bool uploadOnly = false);
76   bool        PreRenderWithPartialUpdate(uint32_t intervalMilliseconds, const char* location, std::vector<Rect<int>>& damagedRects);
77   bool        RenderWithPartialUpdate(std::vector<Rect<int>>& damagedRects, Rect<int>& clippingRect);
78   bool        RenderWithPartialUpdate(uint32_t intervalMilliseconds, const char* location = NULL);
79   uint32_t    GetUpdateStatus();
80   bool        UpdateOnly(uint32_t intervalMilliseconds = DEFAULT_RENDER_INTERVAL);
81   bool        RenderOnly();
82   void        ResetContext();
83   bool        GetRenderNeedsUpdate();
84   bool        GetRenderNeedsPostRender();
85   uint32_t    Wait(uint32_t durationToWait);
86   static void EnableLogging(bool enabled)
87   {
88     mLoggingEnabled = enabled;
89   }
90
91   Integration::Scene GetScene() const
92   {
93     return mScene;
94   }
95
96   void AddScene(Integration::Scene scene);
97   void RemoveScene(Integration::Scene scene);
98
99 private:
100   void DoUpdate(uint32_t intervalMilliseconds, const char* location = NULL, bool uploadOnly = false);
101
102 protected:
103   TestPlatformAbstraction mPlatformAbstraction;
104   TestRenderController    mRenderController;
105   TestGraphicsController  mGraphicsController;
106
107   Integration::UpdateStatus mStatus;
108   Integration::RenderStatus mRenderStatus;
109
110   Integration::Core*              mCore;
111   Dali::Integration::Scene        mScene;
112   std::vector<Integration::Scene> mScenes;
113
114   uint32_t mSurfaceWidth;
115   uint32_t mSurfaceHeight;
116   uint32_t mFrame;
117
118   Graphics::UniquePtr<Graphics::RenderTarget> mRenderTarget;
119
120   struct
121   {
122     uint32_t x;
123     uint32_t y;
124   } mDpi;
125   uint32_t    mLastVSyncTime;
126   bool        mPartialUpdateEnabled;
127   static bool mLoggingEnabled;
128 };
129
130 } // namespace Dali
131
132 #endif // DALI_TEST_APPLICATION_H