Merge "DALi Version 1.0.47" into devel/master
[platform/core/uifw/dali-demo.git] / examples / cube-transition-effect / cube-transition-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 #include <dali-toolkit/devel-api/transition-effects/cube-transition-effect.h>
27 #include <dali-toolkit/devel-api/transition-effects/cube-transition-cross-effect.h>
28 #include <dali-toolkit/devel-api/transition-effects/cube-transition-fold-effect.h>
29 #include <dali-toolkit/devel-api/transition-effects/cube-transition-wave-effect.h>
30
31
32 using namespace Dali;
33
34 using Dali::Toolkit::TextLabel;
35
36 // LOCAL STUFF
37 namespace
38 {
39
40 const char * const TOOLBAR_IMAGE( DALI_IMAGE_DIR "top-bar.png" );
41 const char * const APPLICATION_TITLE_WAVE( "Cube Transition: Wave" );
42 const char * const APPLICATION_TITLE_CROSS( "Cube Transition: Cross" );
43 const char * const APPLICATION_TITLE_FOLD( "Cube Transition: Fold" );
44 const char * const EFFECT_WAVE_IMAGE( DALI_IMAGE_DIR "icon-effect-wave.png" );
45 const char * const EFFECT_WAVE_IMAGE_SELECTED( DALI_IMAGE_DIR "icon-effect-wave-selected.png" );
46 const char * const EFFECT_CROSS_IMAGE( DALI_IMAGE_DIR "icon-effect-cross.png" );
47 const char * const EFFECT_CROSS_IMAGE_SELECTED( DALI_IMAGE_DIR "icon-effect-cross-selected.png" );
48 const char * const EFFECT_FOLD_IMAGE( DALI_IMAGE_DIR "icon-effect-fold.png" );
49 const char * const EFFECT_FOLD_IMAGE_SELECTED( DALI_IMAGE_DIR "icon-effect-fold-selected.png" );
50 const char * const SLIDE_SHOW_START_ICON( DALI_IMAGE_DIR "icon-play.png" );
51 const char * const SLIDE_SHOW_START_ICON_SELECTED( DALI_IMAGE_DIR "icon-play-selected.png" );
52 const char * const SLIDE_SHOW_STOP_ICON( DALI_IMAGE_DIR "icon-stop.png" );
53 const char * const SLIDE_SHOW_STOP_ICON_SELECTED( DALI_IMAGE_DIR "icon-stop-selected.png" );
54
55 const char* IMAGES[] =
56 {
57   DALI_IMAGE_DIR "gallery-large-1.jpg",
58   DALI_IMAGE_DIR "gallery-large-2.jpg",
59   DALI_IMAGE_DIR "gallery-large-3.jpg",
60   DALI_IMAGE_DIR "gallery-large-4.jpg",
61   DALI_IMAGE_DIR "gallery-large-5.jpg",
62   DALI_IMAGE_DIR "gallery-large-6.jpg",
63   DALI_IMAGE_DIR "gallery-large-7.jpg",
64   DALI_IMAGE_DIR "gallery-large-8.jpg",
65   DALI_IMAGE_DIR "gallery-large-9.jpg",
66   DALI_IMAGE_DIR "gallery-large-10.jpg",
67   DALI_IMAGE_DIR "gallery-large-11.jpg",
68   DALI_IMAGE_DIR "gallery-large-12.jpg",
69   DALI_IMAGE_DIR "gallery-large-13.jpg",
70   DALI_IMAGE_DIR "gallery-large-14.jpg",
71   DALI_IMAGE_DIR "gallery-large-15.jpg",
72   DALI_IMAGE_DIR "gallery-large-16.jpg",
73   DALI_IMAGE_DIR "gallery-large-17.jpg",
74   DALI_IMAGE_DIR "gallery-large-18.jpg",
75   DALI_IMAGE_DIR "gallery-large-19.jpg",
76   DALI_IMAGE_DIR "gallery-large-20.jpg",
77   DALI_IMAGE_DIR "gallery-large-21.jpg",
78 };
79 const int NUM_IMAGES( sizeof(IMAGES) / sizeof(IMAGES[0]) );
80
81 // the number of cubes: NUM_COLUMNS*NUM_ROWS
82 // better choose the numbers that can divide viewAreaSize.x
83 const int NUM_COLUMNS_WAVE(16);
84 const int NUM_COLUMNS_CROSS(8);
85 const int NUM_COLUMNS_FOLD(8);
86 // better choose the numbers that can divide viewAreaSize.y
87 const int NUM_ROWS_WAVE(20);
88 const int NUM_ROWS_CROSS(10);
89 const int NUM_ROWS_FOLD(10);
90 //transition effect duration
91 const float ANIMATION_DURATION_WAVE(1.5f);
92 const float ANIMATION_DURATION_CROSS(1.f);
93 const float ANIMATION_DURATION_FOLD(1.f);
94 //transition effect displacement
95 const float CUBE_DISPLACEMENT_WAVE(70.f);
96 const float CUBE_DISPLACEMENT_CROSS(30.f);
97
98 // The duration of the current image staying on screen when slideshow is on
99 const int VIEWINGTIME = 2000; // 2 seconds
100
101 /**
102  * @brief Load an image, scaled-down to no more than the stage dimensions.
103  *
104  * Uses image scaling mode SCALE_TO_FILL to resize the image at
105  * load time to cover the entire stage with pixels with no borders,
106  * and filter mode BOX_THEN_LINEAR to sample the image with
107  * maximum quality.
108  */
109 ResourceImage LoadStageFillingImage( const char * const imagePath )
110 {
111   Size stageSize = Stage::GetCurrent().GetSize();
112   return ResourceImage::New( imagePath, ImageDimensions( stageSize.x, stageSize.y ), Dali::FittingMode::SCALE_TO_FILL, Dali::SamplingMode::BOX_THEN_LINEAR );
113 }
114
115 } // namespace
116
117 class CubeTransitionApp : public ConnectionTracker
118 {
119 public:
120
121   /**
122    * Constructor
123    * @param application class, stored as reference
124    */
125   CubeTransitionApp( Application& application );
126
127   ~CubeTransitionApp();
128
129 private:
130
131   /**
132    * This method gets called once the main loop of application is up and running
133    */
134   void OnInit( Application& application );
135   /**
136    * PanGesture callback. This method gets called when the pan gesture is detected.
137    * @param[in] actor The actor receiving the pan gesture.
138    * @param[in] gesture The detected pan gesture.
139    */
140   void OnPanGesture( Actor actor, const PanGesture& gesture );
141   /**
142    * Load the next image and start the transition;
143    */
144   void GoToNextImage();
145   /**
146    * Callback function of image resource loading succeed
147    * Start the transition
148    * @param[in] image The image content of the imageActor for transition
149    */
150   void OnImageLoaded(ResourceImage image);
151   /**
152    * Main key event handler
153    */
154   void OnKeyEvent(const KeyEvent& event);
155   /**
156    * Callback function of effect-switch button
157    * Change the effect when the effect button is clicked
158    * @param[in] button The handle of the clicked button
159    */
160   bool OnEffectButtonClicked( Toolkit::Button button );
161   /**
162    * Callback function of slideshow button
163    * Start or stop the automatical image display when the slideshow button is clicked
164    * @param[in] button The handle of the clicked button
165    */
166   bool OnSildeshowButtonClicked( Toolkit::Button button );
167   /**
168    * Callback function of cube transition completed signal
169    * @param[in] effect The cube effect used for the transition
170    * @param[in] imageActor The target imageActor of the completed transition
171    */
172   void OnTransitionCompleted(Toolkit::CubeTransitionEffect effect, ImageActor imageActor);
173   /**
174    * Callback function of timer tick
175    * The timer is used to count the image display duration in slideshow,
176    */
177   bool OnTimerTick();
178
179 private:
180   Application&                    mApplication;
181   Toolkit::Control                mView;
182   Toolkit::ToolBar                mToolBar;
183   Layer                           mContent;
184   Toolkit::TextLabel              mTitleActor;
185   Actor                           mParent;
186
187   Vector2                         mViewSize;
188
189   ImageActor                      mCurrentImage;
190   ImageActor                      mNextImage;
191   unsigned int                    mIndex;
192   bool                            mIsImageLoading;
193
194   PanGestureDetector              mPanGestureDetector;
195
196   Toolkit::CubeTransitionEffect   mCubeWaveEffect;
197   Toolkit::CubeTransitionEffect   mCubeCrossEffect;
198   Toolkit::CubeTransitionEffect   mCubeFoldEffect;
199   Toolkit::CubeTransitionEffect   mCurrentEffect;
200
201   bool                            mSlideshow;
202   Timer                           mViewTimer;
203   Toolkit::PushButton             mSlideshowButton;
204   Image                           mIconSlideshowStart;
205   Image                           mIconSlideshowStartSelected;
206   Image                           mIconSlideshowStop;
207   Image                           mIconSlideshowStopSelected;
208
209   Vector2                         mPanPosition;
210   Vector2                         mPanDisplacement;
211
212   Image                           mImageWave;
213   Image                           mImageWaveSelected;
214   Image                           mImageCross;
215   Image                           mImageCrossSelected;
216   Image                           mImageFold;
217   Image                           mImageFoldSelected;
218   Toolkit::PushButton             mEffectChangeButton;
219 };
220
221 CubeTransitionApp::CubeTransitionApp( Application& application )
222 : mApplication( application ),
223   mIndex( 0 ),
224   mIsImageLoading( false ),
225   mSlideshow( false )
226 {
227   mApplication.InitSignal().Connect( this, &CubeTransitionApp::OnInit );
228 }
229
230 CubeTransitionApp::~CubeTransitionApp()
231 {
232   //Nothing to do
233 }
234
235 void CubeTransitionApp::OnInit( Application& application )
236 {
237   Stage::GetCurrent().KeyEventSignal().Connect(this, &CubeTransitionApp::OnKeyEvent);
238
239   // Creates a default view with a default tool bar, the view is added to the stage.
240   mContent = DemoHelper::CreateView( application, mView, mToolBar, "", TOOLBAR_IMAGE, "" );
241
242   // Add an effect-changing button on the right of the tool bar.
243   mImageWave = ResourceImage::New( EFFECT_WAVE_IMAGE );
244   mImageWaveSelected = ResourceImage::New( EFFECT_WAVE_IMAGE_SELECTED );
245   mImageCross = ResourceImage::New( EFFECT_CROSS_IMAGE );
246   mImageCrossSelected = ResourceImage::New( EFFECT_CROSS_IMAGE_SELECTED );
247   mImageFold = ResourceImage::New( EFFECT_FOLD_IMAGE );
248   mImageFoldSelected = ResourceImage::New( EFFECT_FOLD_IMAGE_SELECTED );
249   mEffectChangeButton = Toolkit::PushButton::New();
250   mEffectChangeButton.SetButtonImage( mImageWave );
251   mEffectChangeButton.SetSelectedImage( mImageWaveSelected );
252   mEffectChangeButton.ClickedSignal().Connect( this, &CubeTransitionApp::OnEffectButtonClicked );
253   mToolBar.AddControl( mEffectChangeButton, DemoHelper::DEFAULT_VIEW_STYLE.mToolBarButtonPercentage, Toolkit::Alignment::HorizontalRight, DemoHelper::DEFAULT_MODE_SWITCH_PADDING );
254
255   // Add title to the tool bar.
256   mTitleActor = DemoHelper::CreateToolBarLabel( APPLICATION_TITLE_WAVE );
257   mToolBar.AddControl( mTitleActor, DemoHelper::DEFAULT_VIEW_STYLE.mToolBarTitlePercentage, Toolkit::Alignment::HorizontalCenter );
258
259   //Add an slideshow icon on the right of the title
260   mIconSlideshowStart = ResourceImage::New( SLIDE_SHOW_START_ICON );
261   mIconSlideshowStartSelected = ResourceImage::New( SLIDE_SHOW_START_ICON_SELECTED );
262   mIconSlideshowStop = ResourceImage::New( SLIDE_SHOW_STOP_ICON );
263   mIconSlideshowStopSelected = ResourceImage::New( SLIDE_SHOW_STOP_ICON_SELECTED );
264   mSlideshowButton = Toolkit::PushButton::New();
265   mSlideshowButton.SetButtonImage( mIconSlideshowStart );
266   mSlideshowButton.SetSelectedImage( mIconSlideshowStartSelected );
267   mSlideshowButton.ClickedSignal().Connect( this, &CubeTransitionApp::OnSildeshowButtonClicked );
268   mToolBar.AddControl( mSlideshowButton, DemoHelper::DEFAULT_VIEW_STYLE.mToolBarButtonPercentage, Toolkit::Alignment::HorizontalCenter, DemoHelper::DEFAULT_PLAY_PADDING );
269
270   // Set size to stage size to avoid seeing a black border on transition
271   mViewSize = Stage::GetCurrent().GetSize();
272
273   mParent = Actor::New();
274   mParent.SetSize( mViewSize );
275   mParent.SetPositionInheritanceMode( USE_PARENT_POSITION );
276   mContent.Add( mParent );
277
278   // use pan gesture to detect the cursor or finger movement
279   mPanGestureDetector = PanGestureDetector::New();
280   mPanGestureDetector.DetectedSignal().Connect( this, &CubeTransitionApp::OnPanGesture );
281   mPanGestureDetector.Attach( mParent );
282
283   //use small cubes
284   mCubeWaveEffect = Toolkit::CubeTransitionWaveEffect::New(NUM_ROWS_WAVE, NUM_COLUMNS_WAVE, mViewSize);
285   mCubeWaveEffect.SetTransitionDuration( ANIMATION_DURATION_WAVE );
286   mCubeWaveEffect.SetCubeDisplacement( CUBE_DISPLACEMENT_WAVE );
287   mCubeWaveEffect.TransitionCompletedSignal().Connect(this, &CubeTransitionApp::OnTransitionCompleted);
288   mParent.Add(mCubeWaveEffect.GetRoot());
289   // use big cubes
290   mCubeCrossEffect = Toolkit::CubeTransitionCrossEffect::New(NUM_ROWS_CROSS, NUM_COLUMNS_CROSS, mViewSize);
291   mCubeCrossEffect.SetTransitionDuration( ANIMATION_DURATION_CROSS);
292   mCubeCrossEffect.SetCubeDisplacement( CUBE_DISPLACEMENT_CROSS );
293   mCubeCrossEffect.TransitionCompletedSignal().Connect(this, &CubeTransitionApp::OnTransitionCompleted);
294   mParent.Add(mCubeCrossEffect.GetRoot());
295
296   mCubeFoldEffect = Toolkit::CubeTransitionFoldEffect::New(NUM_ROWS_FOLD, NUM_COLUMNS_FOLD, mViewSize);
297   mCubeFoldEffect.SetTransitionDuration( ANIMATION_DURATION_FOLD);
298   mCubeFoldEffect.TransitionCompletedSignal().Connect(this, &CubeTransitionApp::OnTransitionCompleted);
299   mParent.Add(mCubeFoldEffect.GetRoot());
300
301   mViewTimer = Timer::New( VIEWINGTIME );
302   mViewTimer.TickSignal().Connect( this, &CubeTransitionApp::OnTimerTick );
303
304   // show the first image
305   mCurrentImage = ImageActor::New( LoadStageFillingImage( IMAGES[mIndex] ) );
306   mCurrentImage.SetPositionInheritanceMode( USE_PARENT_POSITION );
307   mCurrentImage.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::ALL_DIMENSIONS );
308   mCurrentImage.SetSizeScalePolicy( SizeScalePolicy::FIT_WITH_ASPECT_RATIO );
309   mParent.Add( mCurrentImage );
310
311   mCurrentEffect = mCubeWaveEffect;
312   mCurrentEffect.SetCurrentImage( mCurrentImage );
313 }
314
315 // signal handler, called when the pan gesture is detected
316 void CubeTransitionApp::OnPanGesture( Actor actor, const PanGesture& gesture )
317 {
318   // does not response when the transition has not finished
319   if( mIsImageLoading || mCubeWaveEffect.IsTransiting() || mCubeCrossEffect.IsTransiting() || mCubeFoldEffect.IsTransiting() || mSlideshow )
320   {
321     return;
322   }
323
324   if( gesture.state == Gesture::Continuing )
325   {
326     if( gesture.displacement.x < 0)
327     {
328       mIndex = (mIndex + 1)%NUM_IMAGES;
329     }
330     else
331     {
332       mIndex = (mIndex + NUM_IMAGES -1)%NUM_IMAGES;
333     }
334
335     mPanPosition = gesture.position;
336     mPanDisplacement = gesture.displacement;
337     GoToNextImage();
338   }
339 }
340
341 void CubeTransitionApp::GoToNextImage()
342 {
343   ResourceImage image = LoadStageFillingImage( IMAGES[ mIndex ] );
344   mNextImage = ImageActor::New( image );
345
346   mNextImage.SetPositionInheritanceMode(USE_PARENT_POSITION);
347   mNextImage.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::ALL_DIMENSIONS );
348   mNextImage.SetSizeScalePolicy( SizeScalePolicy::FIT_WITH_ASPECT_RATIO );
349   mCurrentEffect.SetTargetImage(mNextImage);
350   if( image.GetLoadingState() == ResourceLoadingSucceeded )
351   {
352     mIsImageLoading = false;
353     OnImageLoaded( image );
354   }
355   else
356   {
357     mIsImageLoading = true;
358     image.LoadingFinishedSignal().Connect( this, &CubeTransitionApp::OnImageLoaded );
359   }
360 }
361
362 void CubeTransitionApp::OnImageLoaded(ResourceImage image)
363 {
364    mIsImageLoading = false;
365    mCurrentEffect.StartTransition( mPanPosition, mPanDisplacement );
366    mParent.Remove(mCurrentImage);
367    mParent.Add(mNextImage);
368    mCurrentImage = mNextImage;
369 }
370
371 bool CubeTransitionApp::OnEffectButtonClicked( Toolkit::Button button )
372 {
373   if(mCurrentEffect == mCubeWaveEffect)
374   {
375     mCurrentEffect = mCubeCrossEffect;
376     mTitleActor.SetProperty( TextLabel::Property::TEXT, std::string(APPLICATION_TITLE_CROSS) );
377     mEffectChangeButton.SetButtonImage( mImageCross );
378     mEffectChangeButton.SetSelectedImage( mImageCrossSelected );
379
380   }
381   else if(mCurrentEffect == mCubeCrossEffect)
382   {
383     mCurrentEffect = mCubeFoldEffect;
384     mTitleActor.SetProperty( TextLabel::Property::TEXT, std::string(APPLICATION_TITLE_FOLD) );
385     mEffectChangeButton.SetButtonImage( mImageFold );
386     mEffectChangeButton.SetSelectedImage( mImageFoldSelected );
387   }
388   else
389   {
390     mCurrentEffect = mCubeWaveEffect;
391     mTitleActor.SetProperty( TextLabel::Property::TEXT, std::string(APPLICATION_TITLE_WAVE) );
392     mEffectChangeButton.SetButtonImage( mImageWave );
393     mEffectChangeButton.SetSelectedImage( mImageWaveSelected );
394   }
395
396   // Set the current image to cube transition effect
397   // only need to set at beginning or change from another effect
398   mCurrentEffect.SetCurrentImage(mCurrentImage);
399   return true;
400 }
401
402 bool CubeTransitionApp::OnSildeshowButtonClicked( Toolkit::Button button )
403 {
404   mSlideshow = !mSlideshow;
405   if( mSlideshow )
406   {
407     mPanGestureDetector.Detach( mParent );
408     mSlideshowButton.SetButtonImage( mIconSlideshowStop );
409     mSlideshowButton.SetSelectedImage( mIconSlideshowStopSelected );
410     mPanPosition = Vector2( mViewSize.width, mViewSize.height*0.5f );
411     mPanDisplacement = Vector2( -10.f, 0.f );
412     mViewTimer.Start();
413   }
414   else
415   {
416     mPanGestureDetector.Attach( mParent );
417     mSlideshowButton.SetButtonImage( mIconSlideshowStart );
418     mSlideshowButton.SetSelectedImage( mIconSlideshowStartSelected );
419     mViewTimer.Stop();
420   }
421   return true;
422 }
423
424 void CubeTransitionApp::OnTransitionCompleted(Toolkit::CubeTransitionEffect effect, ImageActor imageActor)
425 {
426   if( mSlideshow )
427   {
428     mViewTimer.Start();
429   }
430 }
431
432 bool CubeTransitionApp::OnTimerTick()
433 {
434   if(mSlideshow)
435   {
436     mIndex = (mIndex + 1)%NUM_IMAGES;
437     GoToNextImage();
438   }
439
440   //return false to stop the timer
441   return false;
442 }
443
444 void CubeTransitionApp::OnKeyEvent(const KeyEvent& event)
445 {
446   if(event.state == KeyEvent::Down)
447   {
448     if( IsKey( event, Dali::DALI_KEY_ESCAPE) || IsKey( event, Dali::DALI_KEY_BACK) )
449     {
450       mApplication.Quit();
451     }
452   }
453 }
454
455 // Entry point for Linux & Tizen applications
456 int main( int argc, char **argv )
457 {
458   Application application = Application::New( &argc, &argv, DALI_DEMO_THEME_PATH );
459   CubeTransitionApp test( application );
460   application.MainLoop();
461
462   return 0;
463 }