Merge "Fix resource leaks in layouting." into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / transition-effects / cube-transition-wave-effect-impl.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_CUBE_TRANSITION_WAVE_EFFECT_H__
2 #define __DALI_TOOLKIT_INTERNAL_CUBE_TRANSITION_WAVE_EFFECT_H__
3
4 /*
5  * Copyright (c) 2014 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
23 // INTERNAL INCLUDES
24 #include <dali-toolkit/devel-api/transition-effects/cube-transition-wave-effect.h>
25 #include <dali-toolkit/internal/transition-effects/cube-transition-effect-impl.h>
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 class CubeTransitionWaveEffect;
34
35 namespace Internal
36 {
37
38 class CubeTransitionEffect;
39
40 class CubeTransitionWaveEffect : public CubeTransitionEffect
41 {
42
43 public:
44
45   /**
46    * @copydoc Toolkit::CubeTransitionWaveEffect::New
47    */
48   static Toolkit::CubeTransitionWaveEffect New(unsigned int numRows, unsigned int numColumns );
49
50 protected:
51
52   /**
53    * @copydoc Toolkit::Internal::CubeTransitionEffect::OnInitialize
54    */
55   virtual void OnInitialize();
56
57   /**
58    * @copydoc Toolkit::Internal::CubeTransitionEffect::OnStartTransition
59    */
60   virtual void OnStartTransition( Vector2 panPosition, Vector2 panDisplacement );
61
62 private:
63
64   /**
65    * Construct a new CubeTransitionWaveEffect object
66    * @param[in] numRows How many rows of cubes
67    * @param[in] numColumns How many columns of cubes
68    */
69   CubeTransitionWaveEffect( unsigned int numRows, unsigned int numColumns );
70
71   /**
72    * The Saddle surface (Hyperbolic paraboloid)function is used to calculate the delay of rotating animation for each cube
73    * This function calculates the Hyperbolic paraboloid parameters,
74    * and the translation and rotation params for mapping the current stage coordinate to the function defining coordinate system
75    * @param[in] position The press down position of panGesture
76    * @param[in] displacement The displacement vector of panGesture
77    */
78   void CalculateSaddleSurfaceParameters( Vector2 position, Vector2 displacement);
79
80   /**
81    * Calculate the delay of the animation for each cube
82    * @param[in] x The X coordinate of the cube
83    * @param[in] y The Y coordinate of the cube
84    * @return The delay time of the animation
85    */
86   float CalculateDelay( float x, float y, bool forward );
87
88 private:
89
90   //saddle surface(Hyperbolic paraboloid)function, used to calculate the delay time of each cube
91   //z = 1.0 + y*y/a/a - x*x/b/b
92   //with our selection of parameters(a and b), this value for any cube is between 0.0 and 2.0
93   float                      mSaddleAA; //a*a
94   float                      mSaddleBB; //b*b
95   float                      mSaddleB;  //b
96   Vector2                    mTranslation;
97   Vector2                    mRotation;
98
99 }; // class CubeTransitionWaveEffect
100
101 } // namespace Internal
102
103 // Helpers for public-api forwarding methods
104
105 inline Internal::CubeTransitionWaveEffect& GetImpl( Dali::Toolkit::CubeTransitionWaveEffect& obj )
106 {
107   DALI_ASSERT_ALWAYS( obj );
108
109   Dali::RefObject& handle = obj.GetImplementation();
110
111   return static_cast< Internal::CubeTransitionWaveEffect& >( handle );
112 }
113
114 inline const Internal::CubeTransitionWaveEffect& GetImpl( const Dali::Toolkit::CubeTransitionWaveEffect& obj )
115 {
116   DALI_ASSERT_ALWAYS( obj );
117
118   const Dali::RefObject& handle = obj.GetImplementation();
119
120   return static_cast< const Internal::CubeTransitionWaveEffect& >( handle );
121 }
122
123 } // namespace Toolkit
124
125 } // namespace Dali
126
127 #endif /* __DALI_TOOLKIT_INTERNAL_CUBE_TRANSITION_WAVE_EFFECT_H__ */