Merge "Add BuildPickingRay to devel api" into devel/master
[platform/core/uifw/dali-core.git] / dali / public-api / render-tasks / render-task.h
1 #ifndef DALI_RENDER_TASK_H
2 #define DALI_RENDER_TASK_H
3
4 /*
5  * Copyright (c) 2020 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 <cstdint> // uint32_t
23
24 // INTERNAL INCLUDES
25 #include <dali/public-api/math/viewport.h>
26 #include <dali/public-api/object/handle.h>
27 #include <dali/public-api/object/property-index-ranges.h>
28 #include <dali/public-api/signals/dali-signal.h>
29
30 namespace Dali
31 {
32 /**
33  * @addtogroup dali_core_rendering_effects
34  * @{
35  */
36
37 class Actor;
38 class CameraActor;
39 class FrameBufferImage;
40 class FrameBuffer;
41 struct Vector4;
42
43 namespace Internal DALI_INTERNAL
44 {
45 class RenderTask;
46 }
47
48 /**
49  * @brief RenderTasks describe how the Dali scene should be rendered.
50  *
51  * The Scene provides access to an ordered list of render-tasks.
52  *
53  * Each RenderTask must specify the source actors to be rendered, and a camera actor from
54  * which the scene is viewed.
55  *
56  * RenderTasks may optionally target a frame-buffer, otherwise the default GL surface is used;
57  * typically this is a window provided by the native system.
58  *
59  * By default Dali provides a single RenderTask, which renders the entire actor hierarchy using
60  * a default camera actor and GL surface. If stereoscopic rendering is enabled, Dali will create
61  * two additional render tasks, on for each eye. Each render task will have its own camera parented
62  * to the default camera actor.
63  *
64  * The first RenderTask used for input handling will be the last one rendered, which also has input enabled,
65  * and has a valid source & camera actor; see SetInputEnabled().
66  *
67  * If none of the actors are hit in the last RenderTask rendered, then input handling will continue
68  * with the second last RenderTask rendered, and so on.
69  *
70  * All RenderTasks which target a frame-buffer (i.e. off screen) will be rendered before all RenderTasks
71  * which target the default GL surface. This allows the user to render intermediate targets which are used
72  * later when targeting the screen.
73  *
74  * A RenderTask targeting a frame-buffer can still be hit-tested, provided that the
75  * screen->frame-buffer coordinate conversion is successful; see SetScreenToFrameBufferFunction().
76  *
77  * If the refresh rate id REFRESH_ONCE and a "Finish" signal is connected, it will be emitted when the RenderTask is completed.
78  * Note that all connected signals must be disconnected before the object is destroyed. This is typically done in the
79  * object destructor, and requires either the Dali::Connection object or Dali::RenderTask handle to be stored.
80  *
81  * Signals
82  * | %Signal Name | Method                |
83  * |--------------|-----------------------|
84  * | finished     | @ref FinishedSignal() |
85  * @SINCE_1_0.0
86  */
87 class DALI_CORE_API RenderTask : public Handle
88 {
89 public:
90   /**
91    * @brief Enumeration for instances of properties belonging to the RenderTask class.
92    * @SINCE_1_0.0
93    */
94   struct Property
95   {
96     /**
97      * @brief Enumeration for instances of properties belonging to the RenderTask class.
98      * @SINCE_1_0.0
99      */
100     enum
101     {
102       /**
103        * @brief name "viewportPosition", type Vector2
104        * @SINCE_1_0.0
105        */
106       VIEWPORT_POSITION = DEFAULT_OBJECT_PROPERTY_START_INDEX,
107       /**
108        * @brief name "viewportSize", type Vector2
109        * @SINCE_1_0.0
110        */
111       VIEWPORT_SIZE,
112       /**
113        * @brief name "clearColor", type Vector4
114        * @SINCE_1_0.0
115        */
116       CLEAR_COLOR,
117       /**
118        * @brief name "requiresSync", type BOOLEAN
119        * @details By default, the sync object is not created.
120        *  When native image source is used as render target, in order to track when the render to pixmap is completed, the GL sync should be enabled.
121        *  Thus the RENDER_ONCE finished signal can be emit at the correct timing.
122        * @SINCE_1_1.29
123        * @note The use of GL sync might cause deadlock with multiple access to the single pixmap happening in the same time.
124        */
125       REQUIRES_SYNC,
126     };
127   };
128
129   /**
130    * @brief Typedef for signals sent by this class.
131    * @SINCE_1_0.0
132    */
133   using RenderTaskSignalType = Signal<void(RenderTask&)>;
134
135   /**
136    * @brief A pointer to a function for converting screen to frame-buffer coordinates.
137    * @SINCE_1_0.0
138    * @param[in,out] coordinates The screen coordinates to convert where (0,0) is the top-left of the screen
139    * @return True if the conversion was successful, otherwise coordinates should be unmodified
140    */
141   using ScreenToFrameBufferFunction = bool (*)(Vector2&);
142
143   /**
144    * @brief A pointer to a function for converting screen to frame-buffer coordinates.
145    * @SINCE_1_0.0
146    * @param[in,out] coordinates The screen coordinates to convert where (0,0) is the top-left of the screen
147    * @return True if the conversion was successful, otherwise coordinates should be unmodified
148    */
149   using ConstScreenToFrameBufferFunction = bool (*const)(Vector2&);
150
151   /**
152    * @brief The default conversion function returns false for any screen coordinates.
153    *
154    * This effectively disables hit-testing for RenderTasks rendering to a frame buffer.
155    * See also FULLSCREEN_FRAMEBUFFER_FUNCTION below.
156    */
157   static ConstScreenToFrameBufferFunction DEFAULT_SCREEN_TO_FRAMEBUFFER_FUNCTION;
158
159   /**
160    * @brief This conversion function outputs the (unmodified) screen coordinates as frame-buffer coordinates.
161    *
162    * Therefore the contents of an off-screen image is expected to be rendered "full screen".
163    */
164   static ConstScreenToFrameBufferFunction FULLSCREEN_FRAMEBUFFER_FUNCTION;
165
166   /**
167    * @brief Enumeration for the refresh-rate of the RenderTask.
168    * @SINCE_1_0.0
169    */
170   enum RefreshRate
171   {
172     REFRESH_ONCE   = 0, ///< Process once only e.g. take a snap-shot of the scene. @SINCE_1_0.0
173     REFRESH_ALWAYS = 1  ///< Process every frame. @SINCE_1_0.0
174   };
175
176   static const bool     DEFAULT_EXCLUSIVE;     ///< false
177   static const bool     DEFAULT_INPUT_ENABLED; ///< true
178   static const Vector4  DEFAULT_CLEAR_COLOR;   ///< Color::BLACK
179   static const bool     DEFAULT_CLEAR_ENABLED; ///< false
180   static const bool     DEFAULT_CULL_MODE;     ///< true
181   static const uint32_t DEFAULT_REFRESH_RATE;  ///< REFRESH_ALWAYS
182
183   /**
184    * @brief Creates an empty RenderTask handle.
185    *
186    * This can be initialised with RenderTaskList::CreateRenderTask().
187    * @SINCE_1_0.0
188    */
189   RenderTask();
190
191   /**
192    * @brief Downcasts a handle to RenderTask handle.
193    *
194    * If handle points to a RenderTask, the
195    * downcast produces valid handle. If not, the returned handle is left uninitialized.
196    * @SINCE_1_0.0
197    * @param[in] handle A handle to an object
198    * @return A handle to a RenderTask or an uninitialized handle
199    */
200   static RenderTask DownCast(BaseHandle handle);
201
202   /**
203    * @brief Destructor.
204    *
205    * This is non-virtual since derived Handle types must not contain data or virtual methods.
206    * @SINCE_1_0.0
207    */
208   ~RenderTask();
209
210   /**
211    * @brief This copy constructor is required for (smart) pointer semantics.
212    *
213    * @SINCE_1_0.0
214    * @param[in] handle A reference to the copied handle
215    */
216   RenderTask(const RenderTask& handle);
217
218   /**
219    * @brief This assignment operator is required for (smart) pointer semantics.
220    *
221    * @SINCE_1_0.0
222    * @param[in] rhs A reference to the copied handle
223    * @return A reference to this
224    */
225   RenderTask& operator=(const RenderTask& rhs);
226
227   /**
228    * @brief Move constructor.
229    *
230    * @SINCE_1_9.22
231    * @param[in] rhs A reference to the moved handle
232    */
233   RenderTask(RenderTask&& rhs) noexcept;
234
235   /**
236    * @brief Move assignment operator.
237    *
238    * @SINCE_1_9.22
239    * @param[in] rhs A reference to the moved handle
240    * @return A reference to this
241    */
242   RenderTask& operator=(RenderTask&& rhs) noexcept;
243
244   /**
245    * @brief Sets the actors to be rendered.
246    * @SINCE_1_0.0
247    * @param[in] actor This actor and its children will be rendered.
248    * If actor is an empty handle, then nothing will be rendered
249    */
250   void SetSourceActor(Actor actor);
251
252   /**
253    * @brief Retrieves the actors to be rendered.
254    * @SINCE_1_0.0
255    * @return This actor and its children will be rendered
256    */
257   Actor GetSourceActor() const;
258
259   /**
260    * @brief Sets whether the RenderTask has exclusive access to the source actors; the default is false.
261    * @SINCE_1_0.0
262    * @param[in] exclusive True if the source actors will only be rendered by this render-task
263    */
264   void SetExclusive(bool exclusive);
265
266   /**
267    * @brief Queries whether the RenderTask has exclusive access to the source actors.
268    * @SINCE_1_0.0
269    * @return True if the source actors will only be rendered by this render-task
270    */
271   bool IsExclusive() const;
272
273   /**
274    * @brief Sets whether the render-task should be considered for input handling; the default is true.
275    *
276    * The task used for input handling will be last task in the RenderTaskList which has input enabled,
277    * and has a valid source & camera actor.
278    * A RenderTask targetting a frame-buffer can still be hit-tested, provided that the screen->frame-buffer
279    * coordinate conversion is successful; see also SetScreenToFrameBufferFunction().
280    * @SINCE_1_0.0
281    * @param[in] enabled True if the render-task should be considered for input handling
282    */
283   void SetInputEnabled(bool enabled);
284
285   /**
286    * @brief Queries whether the render-task should be considered for input handling.
287    * @SINCE_1_0.0
288    * @return True if the render-task should be considered for input handling
289    */
290   bool GetInputEnabled() const;
291
292   /**
293    * @brief Sets the actor from which the scene is viewed.
294    * @SINCE_1_0.0
295    * @param[in] cameraActor The scene is viewed from the perspective of this actor
296    */
297   void SetCameraActor(CameraActor cameraActor);
298
299   /**
300    * @brief Retrieves the actor from which the scene is viewed.
301    * @SINCE_1_0.0
302    * @return The scene is viewed from the perspective of this actor
303    */
304   CameraActor GetCameraActor() const;
305
306   /**
307    * @brief Sets the frame-buffer used as a render target.
308    * @SINCE_1_1.38
309    * @param[in] frameBuffer A valid FrameBuffer handle to enable off-screen rendering, or an uninitialized handle to disable it
310    */
311   void SetFrameBuffer(FrameBuffer frameBuffer);
312
313   /**
314    * @brief Retrieves the frame-buffer used as a render target.
315    * @SINCE_1_1.38
316    * @return The framebuffer
317    */
318   FrameBuffer GetFrameBuffer() const;
319
320   /**
321    * @brief Sets the function used to convert screen coordinates to frame-buffer coordinates.
322    *
323    * This is useful for hit-testing actors which are rendered off-screen.
324    * @SINCE_1_0.0
325    * @param[in] conversionFunction The conversion function
326    */
327   void SetScreenToFrameBufferFunction(ScreenToFrameBufferFunction conversionFunction);
328
329   /**
330    * @brief Retrieves the function used to convert screen coordinates to frame-buffer coordinates.
331    * @SINCE_1_0.0
332    * @return The conversion function
333    */
334   ScreenToFrameBufferFunction GetScreenToFrameBufferFunction() const;
335
336   /**
337    * @brief Sets the actor used to convert screen coordinates to frame-buffer coordinates.
338    *
339    * The local coordinates of the actor are mapped as frame-buffer coordinates.
340    * This is useful for hit-testing actors which are rendered off-screen.
341    * @SINCE_1_0.0
342    * @param[in] mappingActor The actor used for conversion
343    * @note The mapping actor needs to be rendered by the default render task to make the mapping work properly.
344    */
345   void SetScreenToFrameBufferMappingActor(Actor mappingActor);
346
347   /**
348    * @brief Retrieves the actor used to convert screen coordinates to frame-buffer coordinates.
349    * @SINCE_1_0.0
350    * @return The actor used for conversion
351    */
352   Actor GetScreenToFrameBufferMappingActor() const;
353
354   /**
355    * @brief Sets the actor to compute viewport of this render task.
356    * Actor should be added on Scene.
357    * @SINCE_2_1.36
358    * @param[in] actor This actor is used to compute viewport of the render task.
359    * @note If window default camera is rotated and the actor is no longer a rectangle on the screen, Viewport may be computed incorrectly.
360    * The Viewport properties VIEWPORT_POSITION and VIEWPORT_SIZE is kept during using ViewportGuideActor, but only current value is changed.
361    */
362   void SetViewportGuideActor(Actor actor);
363
364   /**
365    * @brief Retrieves the actor to compute viewport of this render task.
366    * @SINCE_2_1.36
367    * @return This actor is used to compute viewport of the render task.
368    */
369   Actor GetViewportGuideActor() const;
370
371   /**
372    * @brief Resets the actor to compute viewport of this render task.
373    * @SINCE_2_1.36
374    * @note The Viewport properties VIEWPORT_POSITION and VIEWPORT_SIZE is still kept.
375    */
376   void ResetViewportGuideActor();
377
378   /**
379    * @brief Sets the GL viewport position used when rendering.
380    *
381    * This specifies the transformation between normalized device coordinates and target window (or frame-buffer) coordinates.
382    * By default this will match the target window or frame-buffer size.
383    * @SINCE_1_0.0
384    * @param[in] position The viewports position (x,y)
385    * @note Unlike the glViewport method, the x & y coordinates refer to the top-left of the viewport rectangle.
386    */
387   void SetViewportPosition(Vector2 position);
388
389   /**
390    * @brief Retrieves the GL viewport position used when rendering.
391    * @SINCE_1_0.0
392    * @return The viewport
393    */
394   Vector2 GetCurrentViewportPosition() const;
395
396   /**
397    * @brief Sets the GL viewport size used when rendering.
398    *
399    * This specifies the transformation between normalized device coordinates and target window (or frame-buffer) coordinates.
400    * By default this will match the target window or frame-buffer size.
401    * @SINCE_1_0.0
402    * @param[in] size The viewports size (width,height)
403    */
404   void SetViewportSize(Vector2 size);
405
406   /**
407    * @brief Retrieves the GL viewport size used when rendering.
408    * @SINCE_1_0.0
409    * @return The viewport
410    */
411   Vector2 GetCurrentViewportSize() const;
412
413   /**
414    * @brief Sets the GL viewport used when rendering.
415    *
416    * This specifies the transformation between normalized device coordinates and target window (or frame-buffer) coordinates.
417    * By default this will match the target window or frame-buffer size.
418    * @SINCE_1_0.0
419    * @param[in] viewport The new viewport
420    * @note Unlike the glViewport method, the x & y coordinates refer to the top-left of the viewport rectangle.
421    */
422   void SetViewport(Viewport viewport);
423
424   /**
425    * @brief Retrieves the GL viewport used when rendering.
426    * @SINCE_1_0.0
427    * @return The viewport
428    */
429   Viewport GetViewport() const;
430
431   /**
432    * @brief Sets the clear color used when SetClearEnabled(true) is used.
433    * @SINCE_1_0.0
434    * @param[in] color The new clear color
435    */
436   void SetClearColor(const Vector4& color);
437
438   /**
439    * @brief Retrieves the clear color used when SetClearEnabled(true) is used.
440    * @SINCE_1_0.0
441    * @return The clear color
442    * @note This property can be animated; the return value may not match the value written with SetClearColor().
443    */
444   Vector4 GetClearColor() const;
445
446   /**
447    * @brief Sets whether the render-task will clear the results of previous render-tasks.
448    *
449    * The default is false.
450    *
451    * @SINCE_1_0.0
452    * @param[in] enabled True if the render-task should clear
453    * @note The default GL surface is cleared automatically at the
454    * beginning of each frame; this setting is only useful when 2+
455    * render-tasks are used, and the result of the first task needs to
456    * be (partially) cleared before rendering the second.
457    *
458    */
459   void SetClearEnabled(bool enabled);
460
461   /**
462    * @brief Queries whether the render-task will clear the results of previous render-tasks.
463    * @SINCE_1_0.0
464    * @return True if the render-task should clear
465    */
466   bool GetClearEnabled() const;
467
468   /**
469    * @brief Sets whether the render task will cull the actors to the camera's view frustum.
470    *
471    * @SINCE_1_0.0
472    * @param[in] cullMode True if the renderers should be culled
473    * @note The default mode is to cull actors.
474    * @note If the shader uses @ref Shader::Hint::MODIFIES_GEOMETRY then culling optimizations are disabled.
475    * @see Shader::Hint
476    */
477   void SetCullMode(bool cullMode);
478
479   /**
480    * @brief Gets the cull mode.
481    *
482    * @SINCE_1_0.0
483    * @return True if the render task should cull the actors to the camera's view frustum
484    */
485   bool GetCullMode() const;
486
487   /**
488    * @brief Sets the refresh-rate of the RenderTask.
489    *
490    * The default is REFRESH_ALWAYS (1), meaning that the RenderTask
491    * will be processed every frame if the scene graph is changing.  It
492    * may be desirable to process less frequently. For example,
493    * SetRefreshRate(3) will process once every 3 frames if the scene
494    * graph is changing. If the scene graph is not changing, then the
495    * render task will not be rendered, regardless of this value.
496    *
497    * The REFRESH_ONCE value means that the RenderTask will be
498    * processed once only, to take a snap-shot of the scene.
499    * Repeatedly calling SetRefreshRate(REFRESH_ONCE) will cause more
500    * snap-shots to be taken.
501    *
502    * @SINCE_1_0.0
503    * @param[in] refreshRate The new refresh rate
504    */
505   void SetRefreshRate(uint32_t refreshRate);
506
507   /**
508    * @brief Queries the refresh-rate of the RenderTask.
509    * @SINCE_1_0.0
510    * @return The refresh-rate
511    */
512   uint32_t GetRefreshRate() const;
513
514   /**
515    * @brief Gets viewport coordinates for given world position.
516    *
517    * @SINCE_1_1.13
518    * @param[in] position The world position
519    * @param[out] viewportX The viewport x position
520    * @param[out] viewportY The viewport y position
521    * @return true if the position has a screen coordinate
522    */
523   bool WorldToViewport(const Vector3& position, float& viewportX, float& viewportY) const;
524
525   /**
526    * @brief Gets actor local coordinates for given viewport coordinates.
527    *
528    * @SINCE_1_1.13
529    * @param[in] actor The actor describing local coordinate system
530    * @param[in] viewportX The viewport x position
531    * @param[in] viewportY The viewport y position
532    * @param[out] localX The local x position
533    * @param[out] localY The local y position
534    * @return true if the screen position has a local coordinate
535    */
536   bool ViewportToLocal(Actor actor, float viewportX, float viewportY, float& localX, float& localY) const;
537
538 public: // Signals
539   /**
540    * @brief If the refresh rate is REFRESH_ONCE, connect to this signal to be notified when a RenderTask has finished.
541    * @SINCE_1_0.0
542    * @return The signal to connect to
543    */
544   RenderTaskSignalType& FinishedSignal();
545
546 public: // Not intended for application developers
547   /// @cond internal
548   /**
549    * @brief This constructor is used by Dali New() methods.
550    * @SINCE_1_0.0
551    * @param[in] renderTask A pointer to a newly allocated render-task
552    */
553   explicit DALI_INTERNAL RenderTask(Internal::RenderTask* renderTask);
554   /// @endcond
555 };
556
557 /**
558  * @}
559  */
560 } // namespace Dali
561
562 #endif //DALI_RENDER_TASK_H