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