DALi Version 1.4.8
[platform/core/uifw/dali-core.git] / dali / internal / event / actors / camera-actor-impl.h
1 #ifndef DALI_INTERNAL_CAMERA_ACTOR_H
2 #define DALI_INTERNAL_CAMERA_ACTOR_H
3
4 /*
5  * Copyright (c) 2018 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 INCLUES
22 #include <dali/public-api/actors/camera-actor.h>
23 #include <dali/internal/event/actors/actor-impl.h>
24 #include <dali/internal/event/actors/actor-declarations.h>
25
26 namespace Dali
27 {
28
29 namespace Internal
30 {
31
32 namespace SceneGraph
33 {
34 class Camera;
35 }
36
37 /**
38  * An actor with Camera.
39  */
40 class CameraActor : public Actor
41 {
42 public:
43
44   /**
45    * Create an initialised camera actor.
46    *
47    * Sets the default camera perspective projection for the given canvas size. @see SetPerspectiveProjection().
48    *
49    * @param[in] size The canvas size.
50    *
51    * @return A smart-pointer to a newly allocated camera actor.
52    */
53   static CameraActorPtr New( const Size& size );
54
55   /**
56    * @copydoc Dali::CameraActor::SetTargetPosition
57    */
58   void SetTarget( const Vector3& targetPosition );
59
60   /**
61    * @copydoc Dali::CameraActor::GetTargetPosition
62    */
63   Vector3 GetTarget() const;
64
65   /**
66    * @copydoc Dali::CameraActor::SetType
67    */
68   void SetType( Dali::Camera::Type type );
69
70   /**
71    * @copydoc Dali::CameraActor::GetType
72    */
73   Dali::Camera::Type GetType() const;
74
75   /**
76    * @copydoc Dali::CameraActor::SetProjectionMode
77    */
78   void SetProjectionMode( Dali::Camera::ProjectionMode mode );
79
80   /**
81    * @copydoc Dali::CameraActor::GetProjectionMode
82    */
83   Dali::Camera::ProjectionMode GetProjectionMode() const;
84
85   /**
86    * @copydoc Dali::CameraActor::SetFieldOfView
87    */
88   void SetFieldOfView( float fieldOfView );
89
90   /**
91    * @copydoc Dali::CameraActor::GetFieldOfView
92    */
93   float GetFieldOfView() const;
94
95   /**
96    * @copydoc Dali::CameraActor::SetAspectRatio
97    */
98   void SetAspectRatio( float aspectRatio );
99
100   /**
101    * @copydoc Dali::CameraActor::GetAspectRatio
102    */
103   float GetAspectRatio() const;
104
105   /**
106    * @copydoc Dali::CameraActor::SetNearClippingPlane
107    */
108   void SetNearClippingPlane( float nearClippingPlane );
109
110   /**
111    * @copydoc Dali::CameraActor::GetNearClippingPlane
112    */
113   float GetNearClippingPlane() const;
114
115   /**
116    * @copydoc Dali::CameraActor::SetFarClippingPlane
117    */
118   void SetFarClippingPlane( float farClippingPlane );
119
120   /**
121    * @copydoc Dali::CameraActor::GetFarClippingPlane
122    */
123   float GetFarClippingPlane() const;
124
125   /**
126    * @param leftClippingPlane to use
127    */
128   void SetLeftClippingPlane( float leftClippingPlane );
129
130   /**
131    * @param rightClippingPlane to use
132    */
133   void SetRightClippingPlane( float rightClippingPlane );
134
135   /**
136    * @param topClippingPlane to use
137    */
138   void SetTopClippingPlane( float topClippingPlane );
139
140   /**
141    * @param bottomClippingPlane to use
142    */
143   void SetBottomClippingPlane( float bottomClippingPlane );
144
145   /**
146    * @copydoc Dali::CameraActor::SetInvertYAxis
147    */
148   void SetInvertYAxis( bool invertYAxis );
149
150   /**
151    * @copydoc Dali::CameraActor::GetCurrentInvertYAxis
152    */
153   bool GetInvertYAxis() const;
154
155   /**
156    * @copydoc Dali::CameraActor::SetPerspectiveProjection()
157    * @param[in] stereoBias The frustum horizontal and vertical offset for stereoscopic cameras
158    */
159   void SetPerspectiveProjection( const Size& size, const Vector2& stereoBias = Vector2::ZERO );
160
161   /**
162    * @copydoc Dali::CameraActor::SetOrthographicProjection(const Vector2& size);
163    */
164   void SetOrthographicProjection( const Vector2& size );
165
166   /**
167    * @copydoc Dali::CameraActor::SetOrthographicProjection(float left, float right, float top, float bottom, float near, float far);
168    */
169   void SetOrthographicProjection( float left, float right, float top, float bottom, float near, float far );
170
171   /**
172    * Build a picking ray with this camera and given screen coordinates
173    * @param [in] screenCoordinates the ray passed through
174    * @param [in] viewport to use
175    * @param [out] rayOrigin for the picking ray
176    * @param [out] rayDirection for the picking ray
177    * @return true if the building was successful, false if its not possible (camera is not valid for hit testing)
178    */
179   bool BuildPickingRay( const Vector2& screenCoordinates, const Viewport& viewport, Vector4& rayOrigin, Vector4& rayDirection );
180
181   /**
182    * Retrieve the view-matrix; This will only be valid when the actor is on-stage.
183    * @return The view-matrix.
184    */
185   const Matrix& GetViewMatrix() const;
186
187   /**
188    * Retrieve the projection-matrix; This will only be valid when the actor is on-stage.
189    * @return The projection-matrix.
190    */
191   const Matrix& GetProjectionMatrix() const;
192
193   /**
194    * Return the scene graph camera (for RenderTask)
195    * @return The scene graph camera.
196    */
197   const SceneGraph::Camera* GetCamera() const;
198
199 public: // properties
200
201   /**
202    * copydoc Dali::Internal::Object::SetDefaultProperty()
203    */
204   virtual void SetDefaultProperty( Property::Index index, const Property::Value& propertyValue );
205
206   /**
207    * copydoc Dali::Internal::Object::GetDefaultProperty()
208    */
209   virtual Property::Value GetDefaultProperty( Property::Index index ) const;
210
211   /**
212    * copydoc Dali::Internal::Object::GetDefaultPropertyCurrentValue()
213    */
214   virtual Property::Value GetDefaultPropertyCurrentValue( Property::Index index ) const;
215
216   /**
217    * @copydoc Dali::Internal::Object::GetSceneObjectInputProperty()
218    */
219   virtual const PropertyInputImpl* GetSceneObjectInputProperty( Property::Index index ) const;
220
221 private:
222
223   /**
224    * Constructor; see also CameraActor::New()
225    * @param node the scene graph node
226    */
227   CameraActor( const SceneGraph::Node& node );
228
229   /**
230    * A reference counted object may only be deleted by calling Unreference()
231    */
232   virtual ~CameraActor();
233
234
235   /**
236    * @copydoc Dali::Internal::Actor::OnInitialize()
237    */
238   virtual void OnInitialize();
239
240
241 private: // Data
242
243   const SceneGraph::Camera* mSceneObject; ///< Not owned
244
245   Vector3            mTarget;
246   Dali::Camera::Type mType;
247   Dali::Camera::ProjectionMode mProjectionMode;
248   float              mFieldOfView;
249   float              mAspectRatio;
250   float              mNearClippingPlane;
251   float              mFarClippingPlane;
252   float              mLeftClippingPlane;
253   float              mRightClippingPlane;
254   float              mTopClippingPlane;
255   float              mBottomClippingPlane;
256   bool               mInvertYAxis;
257
258 };
259
260 } // namespace Internal
261
262 // Helpers for public-api forwarding methods
263
264 inline Internal::CameraActor& GetImplementation(Dali::CameraActor& camera)
265 {
266   DALI_ASSERT_ALWAYS(camera && "Camera handle is empty");
267
268   BaseObject& handle = camera.GetBaseObject();
269
270   return static_cast<Internal::CameraActor&>(handle);
271 }
272
273 inline const Internal::CameraActor& GetImplementation(const Dali::CameraActor& camera)
274 {
275   DALI_ASSERT_ALWAYS(camera && "Camera handle is empty");
276
277   const BaseObject& handle = camera.GetBaseObject();
278
279   return static_cast<const Internal::CameraActor&>(handle);
280 }
281
282 } // namespace Dali
283
284 #endif // DALI_INTERNAL_CAMERA_ACTOR_H