Cleaned up Degree, Radian, AngleAxis and Quaternion classes
[platform/core/uifw/dali-demo.git] / examples / new-window / new-window-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 #include <dali-toolkit/dali-toolkit.h>
18 #include "shared/view.h"
19 #include <cstdio>
20 #include <iostream>
21
22 using namespace Dali;
23 using namespace Dali::Toolkit;
24
25 class NewWindowController;
26
27 namespace
28 {
29 const char * const BACKGROUND_IMAGE( DALI_IMAGE_DIR "background-2.jpg" );
30 const char * const TOOLBAR_IMAGE( DALI_IMAGE_DIR "top-bar.png" );
31 const char * const LOSE_CONTEXT_IMAGE( DALI_IMAGE_DIR "icon-cluster-wobble.png" );
32 const char * const BASE_IMAGE( DALI_IMAGE_DIR "gallery-large-14.jpg" );
33 const char * const EFFECT_IMAGE( DALI_IMAGE_DIR "gallery-large-18.jpg" );
34
35 const float EXPLOSION_DURATION(1.2f);
36 const unsigned int EMIT_INTERVAL_IN_MS(80);
37 const float TRACK_DURATION_IN_MS(970);
38
39 Application gApplication;
40 NewWindowController* gNewWindowController(NULL);
41
42 const char*const FRAG_SHADER=
43   "uniform mediump float alpha;\n"
44   "\n"
45   "void main()\n"
46   "{\n"
47   "  mediump vec4 fragColor = texture2D(sTexture, vTexCoord);\n"
48   "  mediump vec4 fxColor   = texture2D(sEffect, vTexCoord);\n"
49   "  gl_FragColor   = mix(fragColor,fxColor, alpha);\n"
50   "}\n";
51
52 }; // anonymous namespace
53
54
55 class NewWindowController : public ConnectionTracker
56 {
57 public:
58   NewWindowController( Application& app );
59   void Create( Application& app );
60   void Destroy( Application& app );
61   void OnKeyEvent(const KeyEvent& event);
62   bool OnLoseContextButtonClicked( Toolkit::Button button );
63   static void NewWindow(void);
64
65   void OnContextLost();
66   void OnContextRegained();
67   void CreateMeshActor();
68   Mesh CreateMesh(bool, Material);
69   void CreateBubbles(Vector2 stageSize);
70   void CreateBlending();
71   void CreateText();
72   bool OnTrackTimerTick();
73   bool OnExplodeTimerTick();
74   void SetUpAnimation( Vector2 emitPosition, Vector2 direction );
75   FrameBufferImage CreateMirrorImage(const char* imageName);
76   ImageActor CreateBlurredMirrorImage(const char* imageName);
77   FrameBufferImage CreateFrameBufferForImage(const char* imageName, Image image, ShaderEffect shaderEffect);
78
79
80 private:
81   Application                mApplication;
82   Actor                      mCastingLight;
83   TextLabel                  mTextActor;
84   ImageActor                 mImageActor;
85   ImageActor                 mBlendActor;
86   Image                      mEffectImage;
87   Image                      mBaseImage;
88   MeshActor                  mMeshActor;
89   MeshActor                  mAnimatedMeshActor;
90
91   Toolkit::View              mView;                              ///< The View instance.
92   Toolkit::ToolBar           mToolBar;                           ///< The View's Toolbar.
93   TextLabel                   mTitleActor;                        ///< The Toolbar's Title.
94   Layer                      mContentLayer;                      ///< Content layer (scrolling cluster content)
95   Toolkit::PushButton        mLoseContextButton;
96   Vector3                    mHSVDelta;
97   Toolkit::BubbleEmitter     mEmitter;
98
99   Timer                      mEmitTrackTimer;
100   Timer                      mExplodeTimer;
101   bool                       mNeedNewAnimation;
102
103   unsigned int               mAnimateComponentCount;
104   Animation                  mEmitAnimation;
105 };
106
107
108 NewWindowController::NewWindowController( Application& application )
109 : mApplication(application),
110   mHSVDelta(0.5f, 0.0f, 0.5f),
111   mNeedNewAnimation(true)
112 {
113   mApplication.InitSignal().Connect(this, &NewWindowController::Create);
114   mApplication.TerminateSignal().Connect(this, &NewWindowController::Destroy);
115 }
116
117 void NewWindowController::Create( Application& app )
118 {
119   DemoHelper::RequestThemeChange();
120
121   Stage stage = Stage::GetCurrent();
122   stage.SetBackgroundColor(Color::YELLOW);
123
124   stage.KeyEventSignal().Connect(this, &NewWindowController::OnKeyEvent);
125
126   // The Init signal is received once (only) during the Application lifetime
127
128   // Hide the indicator bar
129   mApplication.GetWindow().ShowIndicator( Dali::Window::INVISIBLE );
130
131   mContentLayer = DemoHelper::CreateView( app,
132                                           mView,
133                                           mToolBar,
134                                           BACKGROUND_IMAGE,
135                                           TOOLBAR_IMAGE,
136                                           "Context recovery" );
137
138   // Point the default render task at the view
139   RenderTaskList taskList = stage.GetRenderTaskList();
140   RenderTask defaultTask = taskList.GetTask( 0u );
141   if ( defaultTask )
142   {
143     defaultTask.SetSourceActor( mView );
144   }
145
146   mLoseContextButton = Toolkit::PushButton::New();
147   mLoseContextButton.SetBackgroundImage( ResourceImage::New( LOSE_CONTEXT_IMAGE ) );
148   mLoseContextButton.ClickedSignal().Connect( this, &NewWindowController::OnLoseContextButtonClicked );
149   mToolBar.AddControl( mLoseContextButton, DemoHelper::DEFAULT_VIEW_STYLE.mToolBarButtonPercentage, Toolkit::Alignment::HorizontalRight, DemoHelper::DEFAULT_MODE_SWITCH_PADDING );
150
151
152   Actor logoLayoutActor = Actor::New();
153   logoLayoutActor.SetParentOrigin(ParentOrigin::CENTER);
154   logoLayoutActor.SetPosition(0.0f, -200.0f, 0.0f);
155   logoLayoutActor.SetScale(0.5f);
156   mContentLayer.Add(logoLayoutActor);
157
158   Image image = ResourceImage::New(DALI_IMAGE_DIR "dali-logo.png");
159   mImageActor = ImageActor::New(image);
160   mImageActor.SetName("dali-logo");
161   mImageActor.SetParentOrigin(ParentOrigin::CENTER);
162   mImageActor.SetAnchorPoint(AnchorPoint::BOTTOM_CENTER);
163   logoLayoutActor.Add(mImageActor);
164
165   ImageActor mirrorImageActor = CreateBlurredMirrorImage(DALI_IMAGE_DIR "dali-logo.png");
166   mirrorImageActor.SetParentOrigin(ParentOrigin::CENTER);
167   mirrorImageActor.SetAnchorPoint(AnchorPoint::TOP_CENTER);
168   logoLayoutActor.Add(mirrorImageActor);
169
170   CreateBubbles(stage.GetSize());
171   CreateMeshActor();
172   CreateBlending();
173   CreateText();
174
175   stage.ContextLostSignal().Connect(this, &NewWindowController::OnContextLost);
176   stage.ContextRegainedSignal().Connect(this, &NewWindowController::OnContextRegained);
177 }
178
179 void NewWindowController::Destroy( Application& app )
180 {
181   UnparentAndReset(mTextActor);
182 }
183
184 bool NewWindowController::OnLoseContextButtonClicked( Toolkit::Button button )
185 {
186   // Add as an idle callback to avoid ProcessEvents being recursively called.
187   mApplication.AddIdle( MakeCallback( NewWindowController::NewWindow ) );
188   return true;
189 }
190
191 void NewWindowController::CreateMeshActor()
192 {
193   mEffectImage = ResourceImage::New(EFFECT_IMAGE);
194
195   Material baseMaterial = Material::New( "Material1" );
196   Dali::MeshActor meshActor = MeshActor::New( CreateMesh(true, baseMaterial) );
197   meshActor.SetScale( 100.0f );
198   meshActor.SetParentOrigin( ParentOrigin::CENTER );
199   meshActor.SetPosition(Vector3( -150.0f, 200.0f, 0.0f ));
200   meshActor.SetName("MeshActor");
201   mContentLayer.Add( meshActor );
202
203   Material orchidMaterial = Material::New( "Material2" );
204   orchidMaterial.SetDiffuseTexture(mEffectImage);
205
206   Dali::MeshActor meshActor2 = MeshActor::New( CreateMesh(false, orchidMaterial) );
207   meshActor2.SetScale( 100.0f );
208   meshActor2.SetParentOrigin( ParentOrigin::CENTER );
209   meshActor2.SetPosition(Vector3( -150.0f, 310.0f, 0.0f ));
210   meshActor2.SetName("MeshActor");
211   mContentLayer.Add( meshActor2 );
212 }
213
214 FrameBufferImage NewWindowController::CreateMirrorImage(const char* imageName)
215 {
216   FrameBufferImage fbo;
217   Image image = ResourceImage::New(imageName);
218   fbo = CreateFrameBufferForImage(imageName, image, ShaderEffect());
219   return fbo;
220 }
221
222 ImageActor NewWindowController::CreateBlurredMirrorImage(const char* imageName)
223 {
224   FrameBufferImage fbo;
225   Image image = ResourceImage::New( imageName );
226   Vector2 FBOSize = ResourceImage::GetImageSize(imageName);
227   fbo = FrameBufferImage::New( FBOSize.width, FBOSize.height, Pixel::RGBA8888);
228   GaussianBlurView gbv = GaussianBlurView::New(5, 2.0f, Pixel::RGBA8888, 0.5f, 0.5f, true);
229   gbv.SetBackgroundColor(Color::TRANSPARENT);
230   gbv.SetUserImageAndOutputRenderTarget( image, fbo );
231   gbv.SetSize(FBOSize);
232   Stage::GetCurrent().Add(gbv);
233   gbv.ActivateOnce();
234
235   ImageActor blurredActor = ImageActor::New(fbo);
236   blurredActor.SetSize(FBOSize);
237   blurredActor.SetScale(1.0f, -1.0f, 1.0f);
238   return blurredActor;
239 }
240
241 FrameBufferImage NewWindowController::CreateFrameBufferForImage(const char* imageName, Image image, ShaderEffect shaderEffect)
242 {
243   Stage stage = Stage::GetCurrent();
244   Vector2 FBOSize = ResourceImage::GetImageSize(imageName);
245
246   FrameBufferImage framebuffer = FrameBufferImage::New(FBOSize.x, FBOSize.y );
247
248   RenderTask renderTask = stage.GetRenderTaskList().CreateTask();
249
250   ImageActor imageActor = ImageActor::New(image);
251   imageActor.SetName("Source image actor");
252   if(shaderEffect)
253   {
254     imageActor.SetShaderEffect(shaderEffect);
255   }
256   imageActor.SetParentOrigin(ParentOrigin::CENTER);
257   imageActor.SetAnchorPoint(AnchorPoint::CENTER);
258   imageActor.SetScale(1.0f, -1.0f, 1.0f);
259   stage.Add(imageActor); // Not in default image view
260
261   CameraActor cameraActor = CameraActor::New(FBOSize);
262   cameraActor.SetParentOrigin(ParentOrigin::CENTER);
263   cameraActor.SetFieldOfView(Math::PI*0.25f);
264   cameraActor.SetNearClippingPlane(1.0f);
265   cameraActor.SetAspectRatio(FBOSize.width / FBOSize.height);
266   cameraActor.SetType(Dali::Camera::FREE_LOOK); // camera orientation based solely on actor
267   cameraActor.SetPosition(0.0f, 0.0f, ((FBOSize.height * 0.5f) / tanf(Math::PI * 0.125f)));
268   stage.Add(cameraActor);
269
270   renderTask.SetSourceActor(imageActor);
271   renderTask.SetInputEnabled(false);
272   renderTask.SetTargetFrameBuffer(framebuffer);
273   renderTask.SetCameraActor( cameraActor );
274   renderTask.SetClearColor( Color::TRANSPARENT );
275   renderTask.SetClearEnabled( true );
276   renderTask.SetRefreshRate(RenderTask::REFRESH_ONCE);
277
278   return framebuffer;
279 }
280
281 void NewWindowController::CreateBubbles(Vector2 stageSize)
282 {
283   mEmitter = Toolkit::BubbleEmitter::New( stageSize,
284                                           ResourceImage::New( DALI_IMAGE_DIR "bubble-ball.png" ),
285                                           1000, Vector2( 5.0f, 5.0f ) );
286
287   Image background = ResourceImage::New(BACKGROUND_IMAGE);
288   mEmitter.SetBackground( background, mHSVDelta );
289   Actor bubbleRoot = mEmitter.GetRootActor();
290   mContentLayer.Add( bubbleRoot );
291   bubbleRoot.SetParentOrigin(ParentOrigin::CENTER);
292   bubbleRoot.SetZ(0.1f);
293
294   mEmitTrackTimer = Timer::New( EMIT_INTERVAL_IN_MS );
295   mEmitTrackTimer.TickSignal().Connect(this, &NewWindowController::OnTrackTimerTick);
296   mEmitTrackTimer.Start();
297
298   //mExplodeTimer = Timer::New( Random::Range(4000.f, 8000.f) );
299   //mExplodeTimer.TickSignal().Connect(this, &NewWindowController::OnExplodeTimerTick);
300   //mExplodeTimer.Start();
301 }
302
303 bool NewWindowController::OnExplodeTimerTick()
304 {
305   mEmitter.StartExplosion( EXPLOSION_DURATION, 5.0f );
306
307   mExplodeTimer = Timer::New( Random::Range(4.f, 8.f) );
308   mExplodeTimer.TickSignal().Connect(this, &NewWindowController::OnExplodeTimerTick);
309   return false;
310 }
311
312 void NewWindowController::SetUpAnimation( Vector2 emitPosition, Vector2 direction )
313 {
314   if( mNeedNewAnimation )
315   {
316     float duration = Random::Range(1.f, 1.5f);
317     mEmitAnimation = Animation::New( duration );
318     mNeedNewAnimation = false;
319     mAnimateComponentCount = 0;
320   }
321
322   mEmitter.EmitBubble( mEmitAnimation, emitPosition, direction, Vector2(1, 1) );
323
324   mAnimateComponentCount++;
325
326   if( mAnimateComponentCount % 20 ==0 )
327   {
328     mEmitAnimation.Play();
329     mNeedNewAnimation = true;
330   }
331 }
332
333 bool NewWindowController::OnTrackTimerTick()
334 {
335   static int time=0;
336   const float radius(250.0f);
337
338   time += EMIT_INTERVAL_IN_MS;
339   float modTime = time / TRACK_DURATION_IN_MS;
340   float angle = 2.0f*Math::PI*modTime;
341
342   Vector2 position(radius*cosf(angle), radius*-sinf(angle));
343   Vector2 aimPos(radius*2*sinf(angle), radius*2*-cosf(angle));
344   Vector2 direction = aimPos-position;
345   Vector2 stageSize = Stage::GetCurrent().GetSize();
346
347   for(int i=0; i<20; i++)
348   {
349     SetUpAnimation( stageSize*0.5f+position, direction );
350   }
351
352   return true;
353 }
354
355
356 void NewWindowController::CreateBlending()
357 {
358   Toolkit::ColorAdjuster colorAdjuster = ColorAdjuster::New(mHSVDelta);
359   FrameBufferImage fb2 = CreateFrameBufferForImage( EFFECT_IMAGE, mEffectImage, colorAdjuster );
360
361   ImageActor tmpActor = ImageActor::New(fb2);
362   mContentLayer.Add(tmpActor);
363   tmpActor.SetParentOrigin(ParentOrigin::BOTTOM_RIGHT);
364   tmpActor.SetAnchorPoint(AnchorPoint::BOTTOM_RIGHT);
365   tmpActor.SetScale(0.25f);
366
367   // create blending shader effect
368   ShaderEffect blendShader = ShaderEffect::New( "", FRAG_SHADER );
369   blendShader.SetEffectImage( fb2 );
370   blendShader.SetUniform("alpha", 0.5f);
371
372   mBaseImage = ResourceImage::New(BASE_IMAGE);
373   mBlendActor = ImageActor::New( mBaseImage );
374   mBlendActor.SetParentOrigin(ParentOrigin::CENTER);
375   mBlendActor.SetPosition(Vector3(150.0f, 200.0f, 0.0f));
376   mBlendActor.SetSize(140, 140);
377   mBlendActor.SetShaderEffect( blendShader );
378   mContentLayer.Add(mBlendActor);
379 }
380
381 void NewWindowController::CreateText()
382 {
383   mTextActor = TextLabel::New("Some text");
384   mTextActor.SetParentOrigin(ParentOrigin::CENTER);
385   mTextActor.SetColor(Color::RED);
386   mTextActor.SetName("PushMe text");
387   mContentLayer.Add( mTextActor );
388 }
389
390 Mesh NewWindowController::CreateMesh(bool hasColor, Material material)
391 {
392   // Create vertices and specify their color
393   MeshData::VertexContainer vertices(4);
394   vertices[ 0 ] = MeshData::Vertex( Vector3( -0.5f, -0.5f, 0.0f ), Vector2(0.0f, 0.0f), Vector3(1.0f, 0.0f, 0.0f) );
395   vertices[ 1 ] = MeshData::Vertex( Vector3(  0.5f, -0.5f, 0.0f ), Vector2(1.0f, 0.0f), Vector3(1.0f, 1.0f, 0.0f) );
396   vertices[ 2 ] = MeshData::Vertex( Vector3( -0.5f,  0.5f, 0.0f ), Vector2(0.0f, 1.0f), Vector3(0.0f,1.0f,0.0f) );
397   vertices[ 3 ] = MeshData::Vertex( Vector3(  0.5f,  0.5f, 0.0f ), Vector2(1.0f, 1.0f), Vector3(0.0f,0.0f,1.0f) );
398
399   // Specify all the faces
400   MeshData::FaceIndices faces;
401   faces.reserve( 6 ); // 2 triangles in Quad
402   faces.push_back( 0 ); faces.push_back( 3 ); faces.push_back( 1 );
403   faces.push_back( 0 ); faces.push_back( 2 ); faces.push_back( 3 );
404
405   // Create the mesh data from the vertices and faces
406   MeshData meshData;
407   meshData.SetHasColor( hasColor );
408   meshData.SetMaterial( material );
409   meshData.SetVertices( vertices );
410   meshData.SetFaceIndices( faces );
411
412   // Create a mesh from the data
413   Dali::Mesh mesh = Mesh::New( meshData );
414   return mesh;
415 }
416
417 void NewWindowController::NewWindow(void)
418 {
419   PositionSize posSize(0, 0, 720, 1280);
420   gApplication.ReplaceWindow(posSize, "NewWindow"); // Generates a new window
421 }
422
423 void NewWindowController::OnKeyEvent(const KeyEvent& event)
424 {
425   if(event.state == KeyEvent::Down)
426   {
427     if( IsKey( event, Dali::DALI_KEY_ESCAPE) || IsKey( event, Dali::DALI_KEY_BACK) )
428     {
429       mApplication.Quit();
430     }
431   }
432 }
433
434 void NewWindowController::OnContextLost()
435 {
436   printf("Stage reporting context loss\n");
437 }
438
439 void NewWindowController::OnContextRegained()
440 {
441   printf("Stage reporting context regain\n");
442 }
443
444
445
446
447 void RunTest(Application& app)
448 {
449   gNewWindowController = new NewWindowController(app);
450   app.MainLoop(Configuration::APPLICATION_DOES_NOT_HANDLE_CONTEXT_LOSS);
451 }
452
453 // Entry point for Linux & Tizen applications
454 //
455
456 int main(int argc, char **argv)
457 {
458   gApplication = Application::New(&argc, &argv);
459   RunTest(gApplication);
460
461   return 0;
462 }