[dali_1.1.28] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / bubble-effect / bubble-emitter-impl.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_BUBBLE_EMITTER_IMPL_H__
2 #define __DALI_TOOLKIT_INTERNAL_BUBBLE_EMITTER_IMPL_H__
3
4 /*
5  * Copyright (c) 2015 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 <dali/public-api/actors/camera-actor.h>
23 #include <dali/public-api/actors/image-actor.h>
24 #include <dali/public-api/common/stage.h>
25 #include <dali/public-api/images/frame-buffer-image.h>
26 #include <dali/public-api/render-tasks/render-task.h>
27 #include <dali/devel-api/object/property-buffer.h>
28 #include <dali/devel-api/rendering/geometry.h>
29 #include <dali/devel-api/rendering/renderer.h>
30 #include <dali/devel-api/rendering/sampler.h>
31 #include <dali/devel-api/rendering/shader.h>
32
33 // INTERNAL INCLUDES
34 #include <dali-toolkit/public-api/controls/control-impl.h>
35 #include <dali-toolkit/devel-api/controls/bubble-effect/bubble-emitter.h>
36
37 namespace Dali
38 {
39
40 namespace Toolkit
41 {
42
43 namespace Internal
44 {
45
46 class BubbleActor;
47 typedef IntrusivePtr<BubbleActor> BubbleActorPtr;
48
49 /**
50  * BubbleEmitter implementation class.
51  */
52 class BubbleEmitter : public Control
53 {
54 public:
55
56   /**
57    * Destructor
58    */
59   ~BubbleEmitter();
60
61   /**
62    * @copydoc Toolkit::BubbleEmitter::New
63    */
64   static Toolkit::BubbleEmitter New( const Vector2& winSize,
65                                      Image shapeImage,
66                                      unsigned int maximumNumberOfBubble,
67                                      const Vector2& bubbleSizeRange );
68
69   /**
70    * @copydoc Toolkit::BubbleEmitter::GetRootActor
71    */
72   Actor GetRootActor();
73
74   /**
75    * @copydoc Toolkit::BubbleEmitter::SetBackground
76    */
77   void SetBackground( Image bgImage, const Vector3& hsvDelta );
78
79   /**
80    * @copydoc Toolkit::BubbleEmitter::SetShapeImage
81    */
82   void SetShapeImage( Image shapeImage );
83
84   /**
85    * @copydoc Toolkit::BubbleEmiter::SetBubbleScale
86    */
87   void SetBubbleScale( float scale );
88
89   /**
90    * @copydoc Toolkit::BubbleEmitter::SetBubbleDensity
91    */
92   void SetBubbleDensity( unsigned int density );
93
94   /**
95    * @copydoc Toolkit::BubbleEmitter::EmitBubble
96    */
97   void EmitBubble( Animation& animation, const Vector2& emitPosition, const Vector2& direction, const Vector2& displacement );
98
99   /**
100    * @copydoc Toolkit::BubbleEmitter::Restore
101    */
102   void Restore();
103
104 private:
105
106   /**
107    * Construct a new BubbleEmitter object.
108    * @param[in] movementArea The size of the bubble moving area
109    * @param[in] shapeImage The alpha channnel of this texture defines the bubble shape.
110    * @param[in] maximumNumberOfBubble The maximum number of bubble needed.
111    * @param[in] bubbleSizeRange The size range of the bubbles; x component is the minimal size, and y component is the maximum size.
112    */
113   BubbleEmitter( const Vector2& movementArea,
114                  Image shapeImage,
115                  unsigned int maximumNumberOfBubble,
116                  const Vector2& bubbleSizeRange );
117
118   /**
119    * This method is called after the CubeTransitionEffect has been initialized.
120    * The meshActors and BubbleEffects are created here.
121    */
122   void OnInitialize();
123
124   /**
125    * Create the geometry of a mesh.
126    * @param[in] numOfPatch The triangle number in the mesh is 2*numOfPatch; two triangles for each bubble.
127    * @return The mesh geometry.
128    */
129   Geometry CreateGeometry( unsigned int numOfPatch );
130
131   /**
132    * Callback function of the finished signal of off-screen render task.
133    * @param[in] source The render task used to create the color adjusted background image.
134    */
135   void OnRenderFinished(RenderTask& source);
136
137   /**
138    * Callback function from Stage to tell us if the context has been regained.
139    */
140   void OnContextRegained();
141
142   /**
143    * Set the uniform values to the shader effect to emit a bubble
144    * @param[in] bubbleActor The BubbleActor to render the current bubble
145    * @param[in] curUniform The index of the uniform array in the shader
146    * @param[in] emitPosition The start position of the bubble movement.
147    * @param[in] direction The direction used to constrain the bubble to move in an adjacent direction around it.
148    * @param[in] displacement The displacement used to bound the moving distance of the bubble.
149    */
150   void SetBubbleParameter( BubbleActorPtr bubbleActor, unsigned int curUniform,
151                            const Vector2& emitPosition, const Vector2& direction, const Vector2& displacement );
152
153 private:
154
155   Actor                       mBubbleRoot;          ///<The bubble root actor. Need to add it to stage to get the bubbles rendered.
156   Image                       mShapeImage;          ///< The alpha channnel of this texture defines the bubble shape.
157   Image                       mBackgroundImage;     ///< The original background image
158   FrameBufferImage            mEffectImage;         ///< The image stores the adjusted color of the background image.The bubbles pick color from this image.
159   CameraActor                 mCameraActor;         ///< The render task views the scene from the perspective of this actor.
160
161   Geometry                    mMeshGeometry;         ///< The mesh geometry which contains the vertices and indices data
162   Material                    mMaterial;             ///< The material which controls the bubble display
163   std::vector<BubbleActorPtr> mBubbleActors;         ///< The meshActor vector, its size is mNumShader.
164
165   Vector2                     mMovementArea;        ///< The size of the bubble moving area, usually the same size as the background image actor.
166   Vector2                     mBubbleSizeRange;     ///< The size range of the bubbles; x component is the low bound, and y component is the up bound.
167   Vector3                     mHSVDelta;            ///< The HSV difference used to adjust the background image color.
168
169   unsigned int                mNumBubblePerActor;   ///< How many bubbles for each BubbleActor.
170   unsigned int                mNumActor;            ///< How many BubbleActors are used.
171   unsigned int                mDensity;             ///< How many bubbles will emit at each time, they are controlled by same uniforms in the shader.
172   unsigned int                mTotalNumOfBubble;    ///< mNumBubblePerShader*mNumShader.
173   unsigned int                mCurrentBubble;       ///< Keep track of the index for the newly emitted bubble
174   unsigned int                mRandomSeed;          ///< Seed to generate random number.
175
176   bool                        mRenderTaskRunning;   ///< If the background render task is currently running
177
178 };
179
180 } // namespace Internal
181
182 // Helpers for public-api forwarding methods
183 inline Internal::BubbleEmitter& GetImpl(Dali::Toolkit::BubbleEmitter& obj)
184 {
185   DALI_ASSERT_ALWAYS(obj && "BubbleEmitter handle is empty");
186   Dali::RefObject& handle = obj.GetImplementation();
187   return static_cast<Toolkit::Internal::BubbleEmitter&>(handle);
188 }
189
190 inline const Internal::BubbleEmitter& GetImpl(const Dali::Toolkit::BubbleEmitter& obj)
191 {
192   DALI_ASSERT_ALWAYS(obj && "BubbleEmitter handle is empty");
193   const Dali::RefObject& handle = obj.GetImplementation();
194   return static_cast<const Toolkit::Internal::BubbleEmitter&>(handle);
195 }
196
197 } // namespace Toolkit
198
199 } // namespace Dali
200
201 #endif /* __DALI_TOOLKIT_INTERNAL_BUBBLE_EMITTER_IMPL_H__ */