Fix for TextLabel demo styling
[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.SetOrientation(Quaternion(M_PI, Vector3::YAXIS));
268   cameraActor.SetPosition(0.0f, 0.0f, ((FBOSize.height * 0.5f) / tanf(Math::PI * 0.125f)));
269   stage.Add(cameraActor);
270
271   renderTask.SetSourceActor(imageActor);
272   renderTask.SetInputEnabled(false);
273   renderTask.SetTargetFrameBuffer(framebuffer);
274   renderTask.SetCameraActor( cameraActor );
275   renderTask.SetClearColor( Color::TRANSPARENT );
276   renderTask.SetClearEnabled( true );
277   renderTask.SetRefreshRate(RenderTask::REFRESH_ONCE);
278
279   return framebuffer;
280 }
281
282 void NewWindowController::CreateBubbles(Vector2 stageSize)
283 {
284   mEmitter = Toolkit::BubbleEmitter::New( stageSize,
285                                           ResourceImage::New( DALI_IMAGE_DIR "bubble-ball.png" ),
286                                           1000, Vector2( 5.0f, 5.0f ) );
287
288   Image background = ResourceImage::New(BACKGROUND_IMAGE);
289   mEmitter.SetBackground( background, mHSVDelta );
290   Actor bubbleRoot = mEmitter.GetRootActor();
291   mContentLayer.Add( bubbleRoot );
292   bubbleRoot.SetParentOrigin(ParentOrigin::CENTER);
293   bubbleRoot.SetZ(0.1f);
294
295   mEmitTrackTimer = Timer::New( EMIT_INTERVAL_IN_MS );
296   mEmitTrackTimer.TickSignal().Connect(this, &NewWindowController::OnTrackTimerTick);
297   mEmitTrackTimer.Start();
298
299   //mExplodeTimer = Timer::New( Random::Range(4000.f, 8000.f) );
300   //mExplodeTimer.TickSignal().Connect(this, &NewWindowController::OnExplodeTimerTick);
301   //mExplodeTimer.Start();
302 }
303
304 bool NewWindowController::OnExplodeTimerTick()
305 {
306   mEmitter.StartExplosion( EXPLOSION_DURATION, 5.0f );
307
308   mExplodeTimer = Timer::New( Random::Range(4.f, 8.f) );
309   mExplodeTimer.TickSignal().Connect(this, &NewWindowController::OnExplodeTimerTick);
310   return false;
311 }
312
313 void NewWindowController::SetUpAnimation( Vector2 emitPosition, Vector2 direction )
314 {
315   if( mNeedNewAnimation )
316   {
317     float duration = Random::Range(1.f, 1.5f);
318     mEmitAnimation = Animation::New( duration );
319     mNeedNewAnimation = false;
320     mAnimateComponentCount = 0;
321   }
322
323   mEmitter.EmitBubble( mEmitAnimation, emitPosition, direction, Vector2(1, 1) );
324
325   mAnimateComponentCount++;
326
327   if( mAnimateComponentCount % 20 ==0 )
328   {
329     mEmitAnimation.Play();
330     mNeedNewAnimation = true;
331   }
332 }
333
334 bool NewWindowController::OnTrackTimerTick()
335 {
336   static int time=0;
337   const float radius(250.0f);
338
339   time += EMIT_INTERVAL_IN_MS;
340   float modTime = time / TRACK_DURATION_IN_MS;
341   float angle = 2.0f*Math::PI*modTime;
342
343   Vector2 position(radius*cosf(angle), radius*-sinf(angle));
344   Vector2 aimPos(radius*2*sinf(angle), radius*2*-cosf(angle));
345   Vector2 direction = aimPos-position;
346   Vector2 stageSize = Stage::GetCurrent().GetSize();
347
348   for(int i=0; i<20; i++)
349   {
350     SetUpAnimation( stageSize*0.5f+position, direction );
351   }
352
353   return true;
354 }
355
356
357 void NewWindowController::CreateBlending()
358 {
359   Toolkit::ColorAdjuster colorAdjuster = ColorAdjuster::New(mHSVDelta);
360   FrameBufferImage fb2 = CreateFrameBufferForImage( EFFECT_IMAGE, mEffectImage, colorAdjuster );
361
362   ImageActor tmpActor = ImageActor::New(fb2);
363   mContentLayer.Add(tmpActor);
364   tmpActor.SetParentOrigin(ParentOrigin::BOTTOM_RIGHT);
365   tmpActor.SetAnchorPoint(AnchorPoint::BOTTOM_RIGHT);
366   tmpActor.SetScale(0.25f);
367
368   // create blending shader effect
369   ShaderEffect blendShader = ShaderEffect::New( "", FRAG_SHADER );
370   blendShader.SetEffectImage( fb2 );
371   blendShader.SetUniform("alpha", 0.5f);
372
373   mBaseImage = ResourceImage::New(BASE_IMAGE);
374   mBlendActor = ImageActor::New( mBaseImage );
375   mBlendActor.SetParentOrigin(ParentOrigin::CENTER);
376   mBlendActor.SetPosition(Vector3(150.0f, 200.0f, 0.0f));
377   mBlendActor.SetSize(140, 140);
378   mBlendActor.SetShaderEffect( blendShader );
379   mContentLayer.Add(mBlendActor);
380 }
381
382 void NewWindowController::CreateText()
383 {
384   mTextActor = TextLabel::New("Some text");
385   mTextActor.SetParentOrigin(ParentOrigin::CENTER);
386   mTextActor.SetColor(Color::RED);
387   mTextActor.SetName("PushMe text");
388   mContentLayer.Add( mTextActor );
389 }
390
391 Mesh NewWindowController::CreateMesh(bool hasColor, Material material)
392 {
393   // Create vertices and specify their color
394   MeshData::VertexContainer vertices(4);
395   vertices[ 0 ] = MeshData::Vertex( Vector3( -0.5f, -0.5f, 0.0f ), Vector2(0.0f, 0.0f), Vector3(1.0f, 0.0f, 0.0f) );
396   vertices[ 1 ] = MeshData::Vertex( Vector3(  0.5f, -0.5f, 0.0f ), Vector2(1.0f, 0.0f), Vector3(1.0f, 1.0f, 0.0f) );
397   vertices[ 2 ] = MeshData::Vertex( Vector3( -0.5f,  0.5f, 0.0f ), Vector2(0.0f, 1.0f), Vector3(0.0f,1.0f,0.0f) );
398   vertices[ 3 ] = MeshData::Vertex( Vector3(  0.5f,  0.5f, 0.0f ), Vector2(1.0f, 1.0f), Vector3(0.0f,0.0f,1.0f) );
399
400   // Specify all the faces
401   MeshData::FaceIndices faces;
402   faces.reserve( 6 ); // 2 triangles in Quad
403   faces.push_back( 0 ); faces.push_back( 3 ); faces.push_back( 1 );
404   faces.push_back( 0 ); faces.push_back( 2 ); faces.push_back( 3 );
405
406   // Create the mesh data from the vertices and faces
407   MeshData meshData;
408   meshData.SetHasColor( hasColor );
409   meshData.SetMaterial( material );
410   meshData.SetVertices( vertices );
411   meshData.SetFaceIndices( faces );
412
413   // Create a mesh from the data
414   Dali::Mesh mesh = Mesh::New( meshData );
415   return mesh;
416 }
417
418 void NewWindowController::NewWindow(void)
419 {
420   PositionSize posSize(0, 0, 720, 1280);
421   gApplication.ReplaceWindow(posSize, "NewWindow"); // Generates a new window
422 }
423
424 void NewWindowController::OnKeyEvent(const KeyEvent& event)
425 {
426   if(event.state == KeyEvent::Down)
427   {
428     if( IsKey( event, Dali::DALI_KEY_ESCAPE) || IsKey( event, Dali::DALI_KEY_BACK) )
429     {
430       mApplication.Quit();
431     }
432   }
433 }
434
435 void NewWindowController::OnContextLost()
436 {
437   printf("Stage reporting context loss\n");
438 }
439
440 void NewWindowController::OnContextRegained()
441 {
442   printf("Stage reporting context regain\n");
443 }
444
445
446
447
448 void RunTest(Application& app)
449 {
450   gNewWindowController = new NewWindowController(app);
451   app.MainLoop(Configuration::APPLICATION_DOES_NOT_HANDLE_CONTEXT_LOSS);
452 }
453
454 // Entry point for Linux & Tizen applications
455 //
456
457 int main(int argc, char **argv)
458 {
459   gApplication = Application::New(&argc, &argv);
460   RunTest(gApplication);
461
462   return 0;
463 }