Further Setter/Getter public API removal from Dali::Actor
[platform/core/uifw/dali-demo.git] / examples / textured-mesh / textured-mesh-example.cpp
1 /*
2  * Copyright (c) 2017 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 <dali-toolkit/dali-toolkit.h>
20
21 // INTERNAL INCLUDES
22 #include "shared/view.h"
23 #include "shared/utility.h"
24
25 using namespace Dali;
26
27 namespace
28 {
29 const char* MATERIAL_SAMPLE( DEMO_IMAGE_DIR "gallery-small-48.jpg" );
30 const char* MATERIAL_SAMPLE2( DEMO_IMAGE_DIR "gallery-medium-19.jpg" );
31
32 #define MAKE_SHADER(A)#A
33
34 const char* VERTEX_SHADER = MAKE_SHADER(
35 attribute mediump vec2    aPosition;
36 attribute highp   vec2    aTexCoord;
37 varying   mediump vec2    vTexCoord;
38 uniform   mediump mat4    uMvpMatrix;
39 uniform   mediump vec3    uSize;
40 uniform   lowp    vec4    uFadeColor;
41
42 void main()
43 {
44   mediump vec4 vertexPosition = vec4(aPosition, 0.0, 1.0);
45   vertexPosition.xyz *= uSize;
46   vertexPosition = uMvpMatrix * vertexPosition;
47   vTexCoord = aTexCoord;
48   gl_Position = vertexPosition;
49 }
50 );
51
52 const char* FRAGMENT_SHADER = MAKE_SHADER(
53 varying mediump vec2  vTexCoord;
54 uniform lowp    vec4  uColor;
55 uniform sampler2D     sTexture;
56 uniform lowp    vec4  uFadeColor;
57
58 void main()
59 {
60   gl_FragColor = texture2D( sTexture, vTexCoord ) * uColor * uFadeColor;
61 }
62 );
63
64 /**
65  * Sinusoidal curve starting at zero with 2 cycles
66  */
67 float AlphaFunctionSineX2(float progress)
68 {
69   return 0.5f - cosf(progress * 4.0f * Math::PI) * 0.5f;
70 }
71
72 } // anonymous namespace
73
74 // This example shows how to use a simple mesh
75 //
76 class ExampleController : public ConnectionTracker
77 {
78 public:
79
80   /**
81    * The example controller constructor.
82    * @param[in] application The application instance
83    */
84   ExampleController( Application& application )
85   : mApplication( application )
86   {
87     // Connect to the Application's Init signal
88     mApplication.InitSignal().Connect( this, &ExampleController::Create );
89   }
90
91   /**
92    * The example controller destructor
93    */
94   ~ExampleController()
95   {
96     // Nothing to do here;
97   }
98
99   /**
100    * Invoked upon creation of application
101    * @param[in] application The application instance
102    */
103   void Create( Application& application )
104   {
105     // The Init signal is received once (only) during the Application lifetime
106
107     Stage stage = Stage::GetCurrent();
108     stage.KeyEventSignal().Connect(this, &ExampleController::OnKeyEvent);
109
110     mStageSize = stage.GetSize();
111
112     // Hide the indicator bar
113     application.GetWindow().ShowIndicator( Dali::Window::INVISIBLE );
114
115     Texture texture1 = DemoHelper::LoadTexture( MATERIAL_SAMPLE );
116     Texture texture2 = DemoHelper::LoadTexture( MATERIAL_SAMPLE2 );
117
118     mShader = Shader::New( VERTEX_SHADER, FRAGMENT_SHADER );
119     mTextureSet1 = TextureSet::New();
120     mTextureSet1.SetTexture( 0u, texture1 );
121
122     mTextureSet2 = TextureSet::New();
123     mTextureSet2.SetTexture( 0u, texture2 );
124
125     mGeometry = DemoHelper::CreateTexturedQuad();
126
127     mRenderer = Renderer::New( mGeometry, mShader );
128     mRenderer.SetTextures( mTextureSet1 );
129
130     mMeshActor = Actor::New();
131     mMeshActor.AddRenderer( mRenderer );
132     mMeshActor.SetProperty( Actor::Property::SIZE, Vector2(400, 400) );
133
134     Property::Index fadeColorIndex = mRenderer.RegisterProperty( "uFadeColor", Color::MAGENTA );
135     mRenderer.SetProperty( Renderer::Property::DEPTH_INDEX, 0 );
136
137     mMeshActor.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_CENTER );
138     mMeshActor.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_CENTER );
139     stage.Add( mMeshActor );
140
141     mRenderer2 = Renderer::New( mGeometry, mShader );
142     mRenderer2.SetTextures( mTextureSet2 );
143
144     mMeshActor2 = Actor::New();
145     mMeshActor2.AddRenderer( mRenderer2 );
146     mMeshActor2.SetProperty( Actor::Property::SIZE, Vector2(400, 400) );
147
148     mMeshActor2.RegisterProperty( "anotherProperty",    Color::GREEN );
149
150     mRenderer2.RegisterProperty( "anotherProperty",    Vector3::ZERO );
151     mRenderer2.RegisterProperty( "aCoefficient",  0.008f );
152     Property::Index fadeColorIndex2 = mRenderer2.RegisterProperty( "uFadeColor", Color::BLUE );
153     mRenderer2.SetProperty( Renderer::Property::DEPTH_INDEX, 0 );
154
155     mMeshActor2.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::BOTTOM_CENTER );
156     mMeshActor2.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::BOTTOM_CENTER );
157     stage.Add( mMeshActor2 );
158
159     Animation  animation = Animation::New(5);
160     KeyFrames keyFrames = KeyFrames::New();
161     keyFrames.Add(0.0f, Vector4::ZERO);
162     keyFrames.Add(1.0f, Vector4( Color::GREEN ));
163
164     KeyFrames keyFrames2 = KeyFrames::New();
165     keyFrames2.Add(0.0f, Vector4::ZERO);
166     keyFrames2.Add(1.0f, Color::MAGENTA);
167
168     animation.AnimateBetween( Property( mRenderer, fadeColorIndex ), keyFrames, AlphaFunction(AlphaFunction::SIN) );
169     animation.AnimateBetween( Property( mRenderer2, fadeColorIndex2 ), keyFrames2, AlphaFunction(AlphaFunctionSineX2) );
170     animation.SetLooping(true);
171     animation.Play();
172
173     stage.SetBackgroundColor(Vector4(0.0f, 0.2f, 0.2f, 1.0f));
174   }
175
176   /**
177    * Invoked whenever the quit button is clicked
178    * @param[in] button the quit button
179    */
180   bool OnQuitButtonClicked( Toolkit::Button button )
181   {
182     // quit the application
183     mApplication.Quit();
184     return true;
185   }
186
187   void OnKeyEvent(const KeyEvent& event)
188   {
189     if(event.state == KeyEvent::Down)
190     {
191       if( IsKey( event, Dali::DALI_KEY_ESCAPE) || IsKey( event, Dali::DALI_KEY_BACK) )
192       {
193         mApplication.Quit();
194       }
195     }
196   }
197
198 private:
199
200   Application&  mApplication;                             ///< Application instance
201   Vector3 mStageSize;                                     ///< The size of the stage
202
203   Shader   mShader;
204   TextureSet mTextureSet1;
205   TextureSet mTextureSet2;
206   Geometry mGeometry;
207   Renderer mRenderer;
208   Actor    mMeshActor;
209   Renderer mRenderer2;
210   Actor    mMeshActor2;
211   Timer    mChangeImageTimer;
212 };
213
214 int DALI_EXPORT_API main( int argc, char **argv )
215 {
216   Application application = Application::New( &argc, &argv );
217   ExampleController test( application );
218   application.MainLoop();
219   return 0;
220 }