5df3cc4241ac2593846c4f051ddfe87f1e42505b
[platform/core/uifw/dali-demo.git] / examples / motion-blur / motion-blur-example.cpp
1 /*
2  * Copyright (c) 2020 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 #include <sstream>
19 #include <iomanip>
20
21 #include "shared/view.h"
22 #include <dali/dali.h>
23 #include <dali/devel-api/actors/actor-devel.h>
24 #include <dali-toolkit/dali-toolkit.h>
25 #include <dali-toolkit/devel-api/shader-effects/motion-blur-effect.h>
26
27 using namespace Dali;
28 using namespace Dali::Toolkit;
29
30
31
32 namespace // unnamed namespace
33 {
34
35 ////////////////////////////////////////////////////
36 //
37 // Demo setup parameters
38 //
39
40 const float MOTION_BLUR_ACTOR_WIDTH = 256;                                          // actor size on screen
41 const float MOTION_BLUR_ACTOR_HEIGHT = 256;                                         // ""
42 const unsigned int MOTION_BLUR_NUM_SAMPLES = 8;
43
44 const int MOTION_BLUR_NUM_ACTOR_IMAGES = 5;
45 const char* MOTION_BLUR_ACTOR_IMAGE1( DEMO_IMAGE_DIR "image-with-border-1.jpg" );
46 const char* MOTION_BLUR_ACTOR_IMAGE2( DEMO_IMAGE_DIR "image-with-border-2.jpg" );
47 const char* MOTION_BLUR_ACTOR_IMAGE3( DEMO_IMAGE_DIR "image-with-border-3.jpg" );
48 const char* MOTION_BLUR_ACTOR_IMAGE4( DEMO_IMAGE_DIR "image-with-border-4.jpg" );
49 const char* MOTION_BLUR_ACTOR_IMAGE5( DEMO_IMAGE_DIR "image-with-border-1.jpg" );
50
51 const char* MOTION_BLUR_ACTOR_IMAGES[] = {
52   MOTION_BLUR_ACTOR_IMAGE1,
53   MOTION_BLUR_ACTOR_IMAGE2,
54   MOTION_BLUR_ACTOR_IMAGE3,
55   MOTION_BLUR_ACTOR_IMAGE4,
56   MOTION_BLUR_ACTOR_IMAGE5,
57 };
58
59 const int NUM_ACTOR_ANIMATIONS = 4;
60 const int NUM_CAMERA_ANIMATIONS = 2;
61
62
63 const char* BACKGROUND_IMAGE_PATH = DEMO_IMAGE_DIR "background-default.png";
64
65 const char* TOOLBAR_IMAGE( DEMO_IMAGE_DIR "top-bar.png" );
66 const char* LAYOUT_IMAGE( DEMO_IMAGE_DIR "icon-change.png" );
67 const char* LAYOUT_IMAGE_SELECTED( DEMO_IMAGE_DIR "icon-change-selected.png" );
68 const char* APPLICATION_TITLE( "Motion Blur" );
69 const char* EFFECTS_OFF_ICON( DEMO_IMAGE_DIR "icon-effects-off.png" );
70 const char* EFFECTS_OFF_ICON_SELECTED( DEMO_IMAGE_DIR "icon-effects-off-selected.png" );
71 const char* EFFECTS_ON_ICON( DEMO_IMAGE_DIR "icon-effects-on.png" );
72 const char* EFFECTS_ON_ICON_SELECTED( DEMO_IMAGE_DIR "icon-effects-on-selected.png" );
73
74 const float UI_MARGIN = 4.0f;                              ///< Screen Margin for placement of UI buttons
75
76 const Vector3 BUTTON_SIZE_CONSTRAINT( 0.24f, 0.09f, 1.0f );
77 const Vector3 BUTTON_TITLE_LABEL_TAP_HERE_SIZE_CONSTRAINT( 0.55f, 0.06f, 1.0f );
78 const Vector3 BUTTON_TITLE_LABEL_INSTRUCTIONS_POPUP_SIZE_CONSTRAINT( 1.0f, 1.0f, 1.0f );
79
80 // move this button down a bit so it is visible on target and not covered up by toolbar
81 const float BUTTON_TITLE_LABEL_Y_OFFSET = 0.05f;
82
83 const float ORIENTATION_DURATION = 0.5f;                  ///< Time to rotate to new orientation.
84
85 /**
86  * @brief Set an image to image view, scaled-down to no more than the dimensions passed in.
87  *
88  * Uses SHRINK_TO_FIT which ensures the resulting image is
89  * smaller than or equal to the specified dimensions while preserving its original aspect ratio.
90  */
91 void SetImageFittedInBox( ImageView& imageView, Property::Map& shaderEffect, const char * const imagePath, int maxWidth, int maxHeight )
92 {
93   Property::Map map;
94   map[Visual::Property::TYPE] = Visual::IMAGE;
95   map[ImageVisual::Property::URL] = imagePath;
96   // Load the image nicely scaled-down to fit within the specified max width and height:
97   map[ImageVisual::Property::DESIRED_WIDTH] = maxWidth;
98   map[ImageVisual::Property::DESIRED_HEIGHT] = maxHeight;
99   map[ImageVisual::Property::FITTING_MODE] = FittingMode::SHRINK_TO_FIT;
100   map[ImageVisual::Property::SAMPLING_MODE] = SamplingMode::BOX_THEN_LINEAR;
101   map.Merge( shaderEffect );
102
103   imageView.SetProperty( ImageView::Property::IMAGE, map );
104 }
105
106 } // unnamed namespace
107
108
109 //
110 class MotionBlurExampleApp : public ConnectionTracker
111 {
112 public:
113
114   /**
115      * DeviceOrientation describes the four different
116      * orientations the device can be in based on accelerometer reports.
117      */
118   enum DeviceOrientation
119   {
120     PORTRAIT = 0,
121     LANDSCAPE = 90,
122     PORTRAIT_INVERSE = 180,
123     LANDSCAPE_INVERSE = 270
124   };
125
126   /**
127    * Constructor
128    * @param application class, stored as reference
129    */
130   MotionBlurExampleApp(Application &app)
131   : mApplication(app),
132     mActorEffectsEnabled(false),
133     mCurrentActorAnimation(0),
134     mCurrentImage(0),
135     mOrientation( PORTRAIT )
136   {
137     // Connect to the Application's Init signal
138     app.InitSignal().Connect(this, &MotionBlurExampleApp::OnInit);
139   }
140
141   ~MotionBlurExampleApp()
142   {
143     // Nothing to do here; everything gets deleted automatically
144   }
145
146   /**
147    * This method gets called once the main loop of application is up and running
148    */
149   void OnInit(Application& app)
150   {
151     // The Init signal is received once (only) during the Application lifetime
152     Window window = app.GetWindow();
153
154     window.KeyEventSignal().Connect(this, &MotionBlurExampleApp::OnKeyEvent);
155
156
157     // Creates a default view with a default tool bar.
158     // The view is added to the window.
159     mContentLayer = DemoHelper::CreateView( mApplication,
160                                             mView,
161                                             mToolBar,
162                                             BACKGROUND_IMAGE_PATH,
163                                             TOOLBAR_IMAGE,
164                                             APPLICATION_TITLE );
165
166     // Ensure the content layer is a square so the touch area works in all orientations
167     Vector2 windowSize = window.GetSize();
168     float size = std::max( windowSize.width, windowSize.height );
169     mContentLayer.SetProperty( Actor::Property::SIZE, Vector2( size, size ) );
170
171     //Add an effects icon on the right of the title
172     mActorEffectsButton = Toolkit::PushButton::New();
173     mActorEffectsButton.SetProperty( Toolkit::Button::Property::UNSELECTED_BACKGROUND_VISUAL, EFFECTS_OFF_ICON );
174     mActorEffectsButton.SetProperty( Toolkit::Button::Property::SELECTED_BACKGROUND_VISUAL, EFFECTS_OFF_ICON_SELECTED );
175     mActorEffectsButton.ClickedSignal().Connect( this, &MotionBlurExampleApp::OnEffectButtonClicked );
176     mToolBar.AddControl( mActorEffectsButton, DemoHelper::DEFAULT_VIEW_STYLE.mToolBarButtonPercentage, Toolkit::Alignment::HorizontalCenter, DemoHelper::DEFAULT_PLAY_PADDING );
177
178     // Creates a mode button.
179     // Create a effect toggle button. (right of toolbar)
180     Toolkit::PushButton layoutButton = Toolkit::PushButton::New();
181     layoutButton.SetProperty( Toolkit::Button::Property::UNSELECTED_BACKGROUND_VISUAL, LAYOUT_IMAGE );
182     layoutButton.SetProperty( Toolkit::Button::Property::SELECTED_BACKGROUND_VISUAL, LAYOUT_IMAGE_SELECTED );
183     layoutButton.ClickedSignal().Connect( this, &MotionBlurExampleApp::OnLayoutButtonClicked);
184     layoutButton.SetProperty( Actor::Property::LEAVE_REQUIRED, true );
185     mToolBar.AddControl( layoutButton, DemoHelper::DEFAULT_VIEW_STYLE.mToolBarButtonPercentage, Toolkit::Alignment::HorizontalRight, DemoHelper::DEFAULT_MODE_SWITCH_PADDING );
186
187     // Input
188     mTapGestureDetector = TapGestureDetector::New();
189     mTapGestureDetector.Attach( mContentLayer );
190     mTapGestureDetector.DetectedSignal().Connect( this, &MotionBlurExampleApp::OnTap );
191
192     Dali::Window winHandle = app.GetWindow();
193     winHandle.AddAvailableOrientation( Dali::Window::PORTRAIT );
194     winHandle.AddAvailableOrientation( Dali::Window::LANDSCAPE );
195     winHandle.AddAvailableOrientation( Dali::Window::PORTRAIT_INVERSE  );
196     winHandle.AddAvailableOrientation( Dali::Window::LANDSCAPE_INVERSE );
197     winHandle.ResizeSignal().Connect( this, &MotionBlurExampleApp::OnWindowResized );
198
199     // set initial orientation
200     Rotate( PORTRAIT );
201
202     ///////////////////////////////////////////////////////
203     //
204     // Motion blurred actor
205     //
206
207     // Scale down actor to fit on very low resolution screens with space to interact:
208     mMotionBlurActorSize = Size( std::min( windowSize.x * 0.3f, MOTION_BLUR_ACTOR_WIDTH ), std::min( windowSize.y * 0.3f, MOTION_BLUR_ACTOR_HEIGHT ) );
209     mMotionBlurActorUpdateSize = Size( std::max( mMotionBlurActorSize.x, mMotionBlurActorSize.y ), std::max( mMotionBlurActorSize.x, mMotionBlurActorSize.y ) );
210     mMotionBlurActorSize = Size( std::min( mMotionBlurActorSize.x, mMotionBlurActorSize.y ), std::min( mMotionBlurActorSize.x, mMotionBlurActorSize.y ) );
211
212     mMotionBlurEffect = CreateMotionBlurEffect();
213     mMotionBlurImageView = ImageView::New();
214     SetImageFittedInBox( mMotionBlurImageView, mMotionBlurEffect, MOTION_BLUR_ACTOR_IMAGE1, mMotionBlurActorSize.x, mMotionBlurActorSize.y );
215     mMotionBlurImageView.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER );
216     mMotionBlurImageView.SetProperty( Actor::Property::SIZE, mMotionBlurActorUpdateSize );
217     mMotionBlurImageView.SetProperty( DevelActor::Property::UPDATE_SIZE_HINT, mMotionBlurActorUpdateSize );
218
219     mContentLayer.Add( mMotionBlurImageView );
220
221     // Create shader used for doing motion blur
222     mMotionBlurEffect = CreateMotionBlurEffect();
223
224     // set actor shader to the blur one
225     Toolkit::SetMotionBlurProperties( mMotionBlurImageView, MOTION_BLUR_NUM_SAMPLES );
226
227   }
228
229   //////////////////////////////////////////////////////////////
230   //
231   // Device Orientation Support
232   //
233   //
234
235   void OnWindowResized( Window window, Window::WindowSize size )
236   {
237     Rotate( size.GetWidth() > size.GetHeight() ? LANDSCAPE : PORTRAIT );
238   }
239
240   void Rotate( DeviceOrientation orientation )
241   {
242     // Resize the root actor
243     const Vector2 targetSize = mApplication.GetWindow().GetSize();
244
245     if( mOrientation != orientation )
246     {
247       mOrientation = orientation;
248
249       // check if actor is on window
250       if( mView.GetParent() )
251       {
252         // has parent so we expect it to be on window, start animation
253         mRotateAnimation = Animation::New( ORIENTATION_DURATION );
254         mRotateAnimation.AnimateTo( Property( mView, Actor::Property::SIZE_WIDTH ), targetSize.width );
255         mRotateAnimation.AnimateTo( Property( mView, Actor::Property::SIZE_HEIGHT ), targetSize.height );
256         mRotateAnimation.Play();
257       }
258       else
259       {
260         mView.SetProperty( Actor::Property::SIZE, targetSize );
261       }
262     }
263     else
264     {
265       // for first time just set size
266       mView.SetProperty( Actor::Property::SIZE, targetSize );
267     }
268   }
269
270
271   //////////////////////////////////////////////////////////////
272   //
273   // Actor Animation
274   //
275   //
276
277   // move to point on screen that was tapped
278   void OnTap( Actor actor, const TapGesture& tapGesture )
279   {
280     Vector3 destPos;
281     float originOffsetX, originOffsetY;
282
283     // rotate offset (from top left origin to centre) into actor space
284     Vector2 windowSize = mApplication.GetWindow().GetSize();
285     actor.ScreenToLocal(originOffsetX, originOffsetY, windowSize.width * 0.5f, windowSize.height * 0.5f);
286
287     // get dest point in local actor space
288     destPos.x = tapGesture.localPoint.x - originOffsetX;
289     destPos.y = tapGesture.localPoint.y - originOffsetY;
290     destPos.z = 0.0f;
291
292     float animDuration = 0.5f;
293     mActorTapMovementAnimation = Animation::New( animDuration );
294     if ( mMotionBlurImageView )
295     {
296       mActorTapMovementAnimation.AnimateTo( Property(mMotionBlurImageView, Actor::Property::POSITION), destPos, AlphaFunction::EASE_IN_OUT_SINE, TimePeriod(animDuration) );
297     }
298     mActorTapMovementAnimation.SetEndAction( Animation::BAKE );
299     mActorTapMovementAnimation.Play();
300
301
302     // perform some spinning etc
303     if(mActorEffectsEnabled)
304     {
305       switch(mCurrentActorAnimation)
306       {
307         // spin around y
308         case 0:
309         {
310           float animDuration = 1.0f;
311           mActorAnimation = Animation::New(animDuration);
312           mActorAnimation.AnimateBy( Property( mMotionBlurImageView, Actor::Property::ORIENTATION ), Quaternion( Radian( Degree(360.0f) ), Vector3::YAXIS ), AlphaFunction::EASE_IN_OUT );
313           mActorAnimation.SetEndAction( Animation::BAKE );
314           mActorAnimation.Play();
315         }
316         break;
317
318         // spin around z
319         case 1:
320         {
321           float animDuration = 1.0f;
322           mActorAnimation = Animation::New(animDuration);
323           mActorAnimation.AnimateBy( Property( mMotionBlurImageView, Actor::Property::ORIENTATION ), Quaternion( Radian( Degree(360.0f) ), Vector3::ZAXIS ), AlphaFunction::EASE_IN_OUT );
324           mActorAnimation.SetEndAction( Animation::BAKE );
325           mActorAnimation.Play();
326         }
327         break;
328
329         // spin around y and z
330         case 2:
331         {
332           float animDuration = 1.0f;
333           mActorAnimation = Animation::New(animDuration);
334           mActorAnimation.AnimateBy( Property( mMotionBlurImageView, Actor::Property::ORIENTATION ), Quaternion( Radian( Degree(360.0f) ), Vector3::YAXIS ), AlphaFunction::EASE_IN_OUT );
335           mActorAnimation.AnimateBy( Property( mMotionBlurImageView, Actor::Property::ORIENTATION ), Quaternion( Radian( Degree(360.0f) ), Vector3::ZAXIS ), AlphaFunction::EASE_IN_OUT );
336           mActorAnimation.SetEndAction( Animation::BAKE );
337           mActorAnimation.Play();
338         }
339         break;
340
341         // scale
342         case 3:
343         {
344           float animDuration = 1.0f;
345           mActorAnimation = Animation::New(animDuration);
346           mActorAnimation.AnimateBy( Property( mMotionBlurImageView, Actor::Property::SCALE ), Vector3(2.0f, 2.0f, 2.0f), AlphaFunction::BOUNCE, TimePeriod( 0.0f, 1.0f ) );
347           mActorAnimation.SetEndAction( Animation::BAKE );
348           mActorAnimation.Play();
349         }
350         break;
351
352         default:
353           break;
354       }
355
356       mCurrentActorAnimation++;
357       if(NUM_ACTOR_ANIMATIONS == mCurrentActorAnimation)
358       {
359         mCurrentActorAnimation = 0;
360       }
361     }
362   }
363
364   void ToggleActorEffects()
365   {
366     if(!mActorEffectsEnabled)
367     {
368       mActorEffectsEnabled = true;
369       mActorEffectsButton.SetProperty( Toolkit::Button::Property::UNSELECTED_BACKGROUND_VISUAL, EFFECTS_ON_ICON );
370       mActorEffectsButton.SetProperty( Toolkit::Button::Property::SELECTED_BACKGROUND_VISUAL, EFFECTS_ON_ICON_SELECTED );
371     }
372     else
373     {
374       mActorEffectsEnabled = false;
375       mActorEffectsButton.SetProperty( Toolkit::Button::Property::UNSELECTED_BACKGROUND_VISUAL, EFFECTS_OFF_ICON );
376       mActorEffectsButton.SetProperty( Toolkit::Button::Property::SELECTED_BACKGROUND_VISUAL, EFFECTS_OFF_ICON_SELECTED );
377     }
378   }
379
380   //////////////////////////////////////////////////////////////
381   //
382   // Input handlers
383   //
384   //
385
386   bool OnLayoutButtonClicked( Toolkit::Button button )
387   {
388     ChangeImage();
389     return true;
390   }
391
392   bool OnEffectButtonClicked( Toolkit::Button button )
393   {
394     ToggleActorEffects();
395     return true;
396   }
397
398   /**
399    * Main key event handler
400    */
401   void OnKeyEvent(const KeyEvent& event)
402   {
403     if(event.GetState() == KeyEvent::DOWN)
404     {
405       if( IsKey( event, Dali::DALI_KEY_ESCAPE) || IsKey( event, Dali::DALI_KEY_BACK) )
406       {
407         mApplication.Quit();
408       }
409     }
410   }
411
412   //////////////////////////////////////////////////////////////
413   //
414   // Misc
415   //
416   //
417
418
419   void ChangeImage()
420   {
421     mCurrentImage++;
422     if(MOTION_BLUR_NUM_ACTOR_IMAGES == mCurrentImage)
423     {
424       mCurrentImage = 0;
425     }
426     SetImageFittedInBox( mMotionBlurImageView, mMotionBlurEffect, MOTION_BLUR_ACTOR_IMAGES[mCurrentImage], mMotionBlurActorSize.x, mMotionBlurActorSize.y );
427
428   }
429
430
431 private:
432   Application&               mApplication;            ///< Application instance
433   Toolkit::Control           mView;
434   Toolkit::ToolBar           mToolBar;
435
436   Layer                      mContentLayer;           ///< Content layer (contains actor for this blur demo)
437
438   PushButton                 mActorEffectsButton;     ///< The actor effects toggling Button.
439
440   // Motion blur
441   Property::Map mMotionBlurEffect;
442   ImageView mMotionBlurImageView;
443   Size mMotionBlurActorSize;
444   Size mMotionBlurActorUpdateSize;
445
446   // animate actor to position where user taps screen
447   Animation mActorTapMovementAnimation;
448
449   // show different animations to demonstrate blur effect working on an object only movement basis
450   bool mActorEffectsEnabled;
451   Animation mActorAnimation;
452   int mCurrentActorAnimation;
453
454   // offer a selection of images that user can cycle between
455   int mCurrentImage;
456
457   TapGestureDetector mTapGestureDetector;
458
459   DeviceOrientation mOrientation;               ///< Current Device orientation
460   Animation mRotateAnimation;                   ///< Animation for rotating between landscape and portrait.
461 };
462
463 int DALI_EXPORT_API main(int argc, char **argv)
464 {
465   Application app = Application::New(&argc, &argv, DEMO_THEME_PATH);
466   MotionBlurExampleApp test(app);
467   app.MainLoop();
468   return 0;
469 }