[dali_1.0.39] Merge branch 'tizen'
[platform/core/uifw/dali-demo.git] / examples / dissolve-effect / dissolve-effect-example.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // EXTERNAL INCLUDES
19 #include <math.h>
20
21 // INTERNAL INCLUDES
22 #include "shared/view.h"
23
24 #include <dali/dali.h>
25 #include <dali-toolkit/dali-toolkit.h>
26
27 using namespace Dali;
28
29 using Dali::Toolkit::TextLabel;
30
31 // LOCAL STUFF
32 namespace
33 {
34
35 const char * const TOOLBAR_IMAGE( DALI_IMAGE_DIR "top-bar.png" );
36 const char * const APPLICATION_TITLE_HIGHP( "Dissolve Effect(highp)" );
37 const char * const APPLICATION_TITLE_MEDIUMP( "Dissolve Effect(mediump)" );
38 const char * const EFFECT_HIGHP_IMAGE( DALI_IMAGE_DIR "icon-highp.png" );
39 const char * const EFFECT_MEDIUMP_IMAGE( DALI_IMAGE_DIR "icon-mediump.png" );
40 const char * const PLAY_ICON( DALI_IMAGE_DIR "icon-play.png" );
41 const char * const STOP_ICON( DALI_IMAGE_DIR "icon-stop.png" );
42
43 const char* IMAGES[] =
44 {
45   DALI_IMAGE_DIR "gallery-large-1.jpg",
46   DALI_IMAGE_DIR "gallery-large-2.jpg",
47   DALI_IMAGE_DIR "gallery-large-3.jpg",
48   DALI_IMAGE_DIR "gallery-large-4.jpg",
49   DALI_IMAGE_DIR "gallery-large-5.jpg",
50   DALI_IMAGE_DIR "gallery-large-6.jpg",
51   DALI_IMAGE_DIR "gallery-large-7.jpg",
52   DALI_IMAGE_DIR "gallery-large-8.jpg",
53   DALI_IMAGE_DIR "gallery-large-9.jpg",
54   DALI_IMAGE_DIR "gallery-large-10.jpg",
55   DALI_IMAGE_DIR "gallery-large-11.jpg",
56   DALI_IMAGE_DIR "gallery-large-12.jpg",
57   DALI_IMAGE_DIR "gallery-large-13.jpg",
58   DALI_IMAGE_DIR "gallery-large-14.jpg",
59   DALI_IMAGE_DIR "gallery-large-15.jpg",
60   DALI_IMAGE_DIR "gallery-large-16.jpg",
61   DALI_IMAGE_DIR "gallery-large-17.jpg",
62   DALI_IMAGE_DIR "gallery-large-18.jpg",
63   DALI_IMAGE_DIR "gallery-large-19.jpg",
64   DALI_IMAGE_DIR "gallery-large-20.jpg",
65   DALI_IMAGE_DIR "gallery-large-21.jpg",
66 };
67
68 const int NUM_IMAGES( sizeof(IMAGES) / sizeof(IMAGES[0]) );
69
70 // The duration of the current image staying on screen when slideshow is on
71 const int VIEWINGTIME = 2000; // 2 seconds
72
73 const float TRANSITION_DURATION = 2.5f; //2.5 second
74
75 const float INITIAL_DEPTH = -10.0f;
76
77 /**
78  * @brief Load an image, scaled-down to no more than the stage dimensions.
79  *
80  * Uses image scaling mode SCALE_TO_FILL to resize the image at
81  * load time to cover the entire stage with pixels with no borders,
82  * and filter mode BOX_THEN_LINEAR to sample the image with
83  * maximum quality.
84  */
85 ResourceImage LoadStageFillingImage( const char * const imagePath )
86 {
87   Size stageSize = Stage::GetCurrent().GetSize();
88   return ResourceImage::New( imagePath, ImageDimensions( stageSize.x, stageSize.y ), Dali::FittingMode::SCALE_TO_FILL, Dali::SamplingMode::BOX_THEN_LINEAR );
89 }
90
91 } // namespace
92
93 class DissolveEffectApp : public ConnectionTracker
94 {
95 public:
96
97   /**
98    * Constructor
99    * @param application class, stored as reference
100    */
101   DissolveEffectApp( Application& application );
102
103   ~DissolveEffectApp();
104
105 private:
106
107   /**
108    * This method gets called once the main loop of application is up and running
109    */
110   void OnInit( Application& application );
111   /**
112    * PanGesture callback. This method gets called when the pan gesture is detected.
113    * @param[in] actor The actor receiving the pan gesture.
114    * @param[in] gesture The detected pan gesture.
115    */
116   void OnPanGesture( Actor actor, const PanGesture& gesture );
117
118   /**
119    * Set up the animations for transition
120    * @param[in] position The point ( locates within rectange {(0,0),(0,1),(1,0),(1,1)} ) passing through the central line of the dissolve effect
121    * @param[in] displacement The direction of the central line of the dissolve effect
122    */
123   void StartTransition(Vector2 position, Vector2 displacement);
124   /**
125    * Callback function of effect-switch button
126    * Change the precision of the effect shader when the effect button is clicked
127    * @param[in] button The handle of the clicked button
128    */
129   bool OnEffectButtonClicked( Toolkit::Button button );
130   /**
131    * Callback function of slideshow button
132    * Start or stop the automatical image display when the slideshow button is clicked
133    * @param[in] button The handle of the clicked button
134    */
135   bool OnSildeshowButtonClicked( Toolkit::Button button );
136   /**
137    * Callback function of cube transition completed signal
138    * @param[in] effect The cube effect used for the transition
139    * @param[in] imageActor The target imageActor of the completed transition
140    */
141   void OnTransitionCompleted(Animation& source);
142   /**
143    * Callback function of timer tick
144    * The timer is used to count the image display duration after cube transition in slideshow,
145    */
146   bool OnTimerTick();
147
148   /**
149    * Main key event handler
150    */
151   void OnKeyEvent(const KeyEvent& event);
152
153 private:
154   Application&                    mApplication;
155   Toolkit::View                   mView;
156   Toolkit::ToolBar                mToolBar;
157   Layer                           mContent;
158   Toolkit::TextLabel              mTitleActor;
159   Actor                           mParent;
160
161   ImageActor                      mCurrentImage;
162   ImageActor                      mNextImage;
163   unsigned int                    mIndex;
164
165   Toolkit::DissolveEffect         mCurrentImageEffect;
166   Toolkit::DissolveEffect         mNextImageEffect;
167   bool                            mUseHighPrecision;
168   Animation                       mAnimation;
169
170   PanGestureDetector              mPanGestureDetector;
171   bool                            mIsTransiting;
172
173   bool                            mSlideshow;
174   Timer                           mViewTimer;
175   bool                            mTimerReady;
176   unsigned int                    mCentralLineIndex;
177
178   Image                           mIconPlay;
179   Image                           mIconStop;
180   Toolkit::PushButton             mPlayStopButton;
181
182   Image                           mIconHighP;
183   Image                           mIconMediumP;
184   Toolkit::PushButton             mEffectChangeButton;
185 };
186
187 DissolveEffectApp::DissolveEffectApp( Application& application )
188 : mApplication( application ),
189   mIndex( 0 ),
190   mUseHighPrecision(true),
191   mIsTransiting( false ),
192   mSlideshow( false ),
193   mTimerReady( false ),
194   mCentralLineIndex( 0 )
195 {
196   mApplication.InitSignal().Connect( this, &DissolveEffectApp::OnInit );
197 }
198
199 DissolveEffectApp::~DissolveEffectApp()
200 {
201   //Nothing to do
202 }
203
204 void DissolveEffectApp::OnInit( Application& application )
205 {
206   DemoHelper::RequestThemeChange();
207
208   Stage::GetCurrent().KeyEventSignal().Connect(this, &DissolveEffectApp::OnKeyEvent);
209
210   // Creates a default view with a default tool bar, the view is added to the stage.
211   mContent = DemoHelper::CreateView( application, mView,mToolBar, "", TOOLBAR_IMAGE, "" );
212
213   // Add an effect-changing button on the right of the tool bar.
214   mIconHighP = ResourceImage::New( EFFECT_HIGHP_IMAGE );
215   mIconMediumP = ResourceImage::New( EFFECT_MEDIUMP_IMAGE );
216   mEffectChangeButton = Toolkit::PushButton::New();
217   mEffectChangeButton.SetBackgroundImage(mIconHighP);
218   mEffectChangeButton.ClickedSignal().Connect( this, &DissolveEffectApp::OnEffectButtonClicked );
219   mToolBar.AddControl( mEffectChangeButton, DemoHelper::DEFAULT_VIEW_STYLE.mToolBarButtonPercentage, Toolkit::Alignment::HorizontalRight, DemoHelper::DEFAULT_MODE_SWITCH_PADDING );
220
221   // Add title to the tool bar.
222   mTitleActor = DemoHelper::CreateToolBarLabel( APPLICATION_TITLE_HIGHP );
223   mToolBar.AddControl( mTitleActor, DemoHelper::DEFAULT_VIEW_STYLE.mToolBarTitlePercentage, Toolkit::Alignment::HorizontalCenter );
224
225   // Add an slide-show button on the right of the title
226   mIconPlay = ResourceImage::New( PLAY_ICON );
227   mIconStop = ResourceImage::New( STOP_ICON );
228   mPlayStopButton = Toolkit::PushButton::New();
229   mPlayStopButton.SetBackgroundImage( mIconPlay );
230   mPlayStopButton.ClickedSignal().Connect( this, &DissolveEffectApp::OnSildeshowButtonClicked );
231   mToolBar.AddControl( mPlayStopButton, DemoHelper::DEFAULT_VIEW_STYLE.mToolBarButtonPercentage, Toolkit::Alignment::HorizontalCenter, DemoHelper::DEFAULT_PLAY_PADDING );
232
233   // use pan gesture to detect the cursor or finger movement
234   mPanGestureDetector = PanGestureDetector::New();
235   mPanGestureDetector.DetectedSignal().Connect( this, &DissolveEffectApp::OnPanGesture );
236
237   // create the dissolve effect object
238   mCurrentImageEffect = Toolkit::DissolveEffect::New(mUseHighPrecision);
239   mNextImageEffect = Toolkit::DissolveEffect::New(mUseHighPrecision);
240
241   mViewTimer = Timer::New( VIEWINGTIME );
242   mViewTimer.TickSignal().Connect( this, &DissolveEffectApp::OnTimerTick );
243   mTimerReady = true;
244
245   // Set size to stage size to avoid seeing a black border on transition
246   mParent = Actor::New();
247   mParent.SetSize( Stage::GetCurrent().GetSize() );
248   mParent.SetPositionInheritanceMode( USE_PARENT_POSITION );
249   mContent.Add( mParent );
250
251   // show the first image
252   mCurrentImage = ImageActor::New( LoadStageFillingImage( IMAGES[mIndex] ) );
253   mCurrentImage.SetPositionInheritanceMode(USE_PARENT_POSITION_PLUS_LOCAL_POSITION);
254   mCurrentImage.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::ALL_DIMENSIONS );
255   mCurrentImage.SetSizeScalePolicy( SizeScalePolicy::FIT_WITH_ASPECT_RATIO );
256   mParent.Add( mCurrentImage );
257
258   mPanGestureDetector.Attach( mCurrentImage );
259 }
260
261 // signal handler, called when the pan gesture is detected
262 void DissolveEffectApp::OnPanGesture( Actor actor, const PanGesture& gesture )
263 {
264   // does not response when the animation has not finished
265   if( mIsTransiting || mSlideshow )
266   {
267     return;
268   }
269
270   if( gesture.state == Gesture::Continuing )
271   {
272     if( gesture.displacement.x < 0)
273     {
274       mIndex = (mIndex + 1)%NUM_IMAGES;
275     }
276     else
277     {
278       mIndex = (mIndex + NUM_IMAGES -1)%NUM_IMAGES;
279     }
280
281     Image image = LoadStageFillingImage( IMAGES[ mIndex ] );
282     mNextImage = ImageActor::New( image );
283     mNextImage.SetPositionInheritanceMode(USE_PARENT_POSITION_PLUS_LOCAL_POSITION);
284     mNextImage.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::ALL_DIMENSIONS );
285     mNextImage.SetSizeScalePolicy( SizeScalePolicy::FIT_WITH_ASPECT_RATIO );
286     mNextImage.SetZ(INITIAL_DEPTH);
287     mParent.Add( mNextImage );
288     Vector2 size = Vector2( mCurrentImage.GetCurrentSize() );
289     StartTransition( gesture.position / size, gesture.displacement * Vector2(1.0, size.x/size.y));
290   }
291 }
292
293 void DissolveEffectApp::StartTransition(Vector2 position, Vector2 displacement)
294 {
295   mAnimation = Animation::New(TRANSITION_DURATION);
296
297   mCurrentImageEffect.SetCentralLine(position,displacement);
298   mCurrentImageEffect.SetDistortion(0.0f);
299   mCurrentImage.SetShaderEffect(mCurrentImageEffect);
300   mAnimation.AnimateTo( Property(mCurrentImageEffect, mCurrentImageEffect.GetDistortionPropertyName()), 1.0f, AlphaFunctions::Linear );
301
302   mNextImage.SetOpacity(0.0f);
303   mAnimation.AnimateTo( Property( mNextImage, Actor::Property::COLOR_ALPHA ), 1.0f, AlphaFunctions::Linear );
304
305   if(mUseHighPrecision)
306   {
307     mNextImageEffect.SetCentralLine(position,-displacement);
308     mNextImageEffect.SetDistortion(1.0f);
309     mNextImage.SetShaderEffect(mNextImageEffect);
310     mAnimation.AnimateTo( Property(mNextImageEffect, mNextImageEffect.GetDistortionPropertyName()), 0.0f, AlphaFunctions::Linear );
311   }
312   else
313   {
314     mAnimation.AnimateTo( Property( mNextImage, Actor::Property::POSITION ), Vector3( 0.0f, 0.0f, 0.0f ), AlphaFunctions::Linear );
315   }
316
317   mAnimation.FinishedSignal().Connect( this, &DissolveEffectApp::OnTransitionCompleted );
318   mAnimation.Play();
319   mIsTransiting = true;
320 }
321
322 void DissolveEffectApp::OnKeyEvent(const KeyEvent& event)
323 {
324   if(event.state == KeyEvent::Down)
325   {
326     if( IsKey( event, Dali::DALI_KEY_ESCAPE) || IsKey( event, Dali::DALI_KEY_BACK) )
327     {
328       mApplication.Quit();
329     }
330   }
331 }
332
333 bool DissolveEffectApp::OnEffectButtonClicked( Toolkit::Button button )
334 {
335   mUseHighPrecision = !mUseHighPrecision;
336   mCurrentImageEffect = Toolkit::DissolveEffect::New(mUseHighPrecision);
337   if(mUseHighPrecision)
338   {
339     mTitleActor.SetProperty( TextLabel::Property::TEXT, std::string(APPLICATION_TITLE_HIGHP) );
340     mEffectChangeButton.SetBackgroundImage(mIconHighP);
341   }
342   else
343   {
344     mTitleActor.SetProperty( TextLabel::Property::TEXT, std::string(APPLICATION_TITLE_MEDIUMP) );
345     mEffectChangeButton.SetBackgroundImage(mIconMediumP);
346   }
347
348   return true;
349 }
350
351 bool DissolveEffectApp::OnSildeshowButtonClicked( Toolkit::Button button )
352 {
353   mSlideshow = !mSlideshow;
354   if( mSlideshow )
355   {
356     mPlayStopButton.SetBackgroundImage( mIconStop );
357     mPanGestureDetector.Detach( mParent );
358     mViewTimer.Start();
359     mTimerReady = false;
360   }
361   else
362   {
363     mPlayStopButton.SetBackgroundImage( mIconPlay );
364     mTimerReady = true;
365     mPanGestureDetector.Attach( mParent );
366   }
367   return true;
368 }
369
370 void DissolveEffectApp::OnTransitionCompleted( Animation& source )
371 {
372   mCurrentImage.RemoveShaderEffect();
373   mNextImage.RemoveShaderEffect();
374   mParent.Remove( mCurrentImage );
375   mPanGestureDetector.Detach( mCurrentImage );
376   mCurrentImage = mNextImage;
377   mPanGestureDetector.Attach( mCurrentImage );
378   mIsTransiting = false;
379
380   if( mSlideshow)
381   {
382     mViewTimer.Start();
383     mTimerReady = false;
384   }
385 }
386
387 bool DissolveEffectApp::OnTimerTick()
388 {
389   mTimerReady = true;
390   if(mSlideshow)
391   {
392     mIndex = (mIndex + 1)%NUM_IMAGES;
393     Image image = LoadStageFillingImage( IMAGES[ mIndex ] );
394     mNextImage = ImageActor::New( image );
395     mNextImage.SetPositionInheritanceMode(USE_PARENT_POSITION_PLUS_LOCAL_POSITION);
396     mNextImage.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::ALL_DIMENSIONS );
397     mNextImage.SetSizeScalePolicy( SizeScalePolicy::FIT_WITH_ASPECT_RATIO );
398     mNextImage.SetZ(INITIAL_DEPTH);
399     mParent.Add( mNextImage );
400     switch( mCentralLineIndex%4 )
401     {
402       case 0:
403       {
404         StartTransition(Vector2(1.0f,0.5f), Vector2(-1.0f, 0.0f));
405         break;
406       }
407       case 1:
408       {
409         StartTransition(Vector2(0.5f,0.0f), Vector2(0.0f, 1.0f));
410         break;
411       }
412       case 2:
413       {
414         StartTransition(Vector2(0.0f,0.5f), Vector2(1.0f, 0.0f));
415         break;
416       }
417       default:
418       {
419         StartTransition(Vector2(0.5f,1.0f), Vector2(0.0f, -1.0f));
420         break;
421       }
422
423     }
424     mCentralLineIndex++;
425   }
426   return false;   //return false to stop the timer
427 }
428
429 // Entry point for Linux & Tizen applications
430 int main( int argc, char **argv )
431 {
432   Application application = Application::New( &argc, &argv );
433   DissolveEffectApp test( application );
434   application.MainLoop();
435
436   return 0;
437 }