super-blur-bloom-example.cpp
9.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
/*
* Copyright (c) 2015 Samsung Electronics Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include <dali/dali.h>
#include <dali-toolkit/dali-toolkit.h>
#include <dali-toolkit/devel-api/controls/super-blur-view/super-blur-view.h>
#include <dali-toolkit/devel-api/controls/bloom-view/bloom-view.h>
#include "shared/view.h"
#include "shared/utility.h"
using namespace Dali;
namespace
{
const char * const TOOLBAR_IMAGE( DEMO_IMAGE_DIR "top-bar.png" );
const char * const TITLE_SUPER_BLUR( "Super Blur" );
const char * const TITLE_BLOOM( "Bloom" );
const char * const CHANGE_BACKGROUND_ICON( DEMO_IMAGE_DIR "icon-change.png" );
const char * const CHANGE_BACKGROUND_ICON_SELECTED( DEMO_IMAGE_DIR "icon-change-selected.png" );
const char * const CHANGE_BLUR_ICON( DEMO_IMAGE_DIR "icon-replace.png" );
const char * const CHANGE_BLUR_ICON_SELECTED( DEMO_IMAGE_DIR "icon-replace-selected.png" );
const char* BACKGROUND_IMAGES[]=
{
DEMO_IMAGE_DIR "background-1.jpg",
DEMO_IMAGE_DIR "background-2.jpg",
DEMO_IMAGE_DIR "background-3.jpg",
DEMO_IMAGE_DIR "background-4.jpg",
DEMO_IMAGE_DIR "background-5.jpg",
DEMO_IMAGE_DIR "background-magnifier.jpg",
};
const unsigned int NUM_BACKGROUND_IMAGES( sizeof( BACKGROUND_IMAGES ) / sizeof( BACKGROUND_IMAGES[0] ) );
}
class BlurExample : public ConnectionTracker
{
public:
BlurExample(Application &app)
: mApp(app),
mImageIndex( 0 ),
mIsBlurring( false )
{
// Connect to the Application's Init signal
app.InitSignal().Connect(this, &BlurExample::Create);
}
~BlurExample()
{
}
private:
// The Init signal is received once (only) during the Application lifetime
void Create(Application& app)
{
Stage stage = Stage::GetCurrent();
Vector2 stageSize = stage.GetSize();
stage.KeyEventSignal().Connect(this, &BlurExample::OnKeyEvent);
// Creates a default view with a default tool bar.
// The view is added to the stage.
Layer content = DemoHelper::CreateView( app,
mBackground,
mToolBar,
"",
TOOLBAR_IMAGE,
"" );
// Add a button to change background. (right of toolbar)
Toolkit::PushButton changeBackgroundButton = Toolkit::PushButton::New();
changeBackgroundButton.SetUnselectedImage( CHANGE_BACKGROUND_ICON );
changeBackgroundButton.SetSelectedImage( CHANGE_BACKGROUND_ICON_SELECTED );
changeBackgroundButton.ClickedSignal().Connect( this, &BlurExample::OnChangeBackgroundIconClicked );
mToolBar.AddControl( changeBackgroundButton,
DemoHelper::DEFAULT_VIEW_STYLE.mToolBarButtonPercentage,
Toolkit::Alignment::HorizontalRight,
DemoHelper::DEFAULT_MODE_SWITCH_PADDING );
// Add a button to change the blur view. (left of toolbar)
Toolkit::PushButton changeBlurButton = Toolkit::PushButton::New();
changeBlurButton.SetUnselectedImage( CHANGE_BLUR_ICON );
changeBlurButton.SetSelectedImage( CHANGE_BLUR_ICON_SELECTED );
changeBlurButton.ClickedSignal().Connect( this, &BlurExample::OnChangeBlurIconClicked );
mToolBar.AddControl( changeBlurButton,
DemoHelper::DEFAULT_VIEW_STYLE.mToolBarButtonPercentage,
Toolkit::Alignment::HorizontalLeft,
DemoHelper::DEFAULT_MODE_SWITCH_PADDING );
mSuperBlurView = Toolkit::SuperBlurView::New( 5 );
mSuperBlurView.SetSize( stageSize );
mSuperBlurView.SetParentOrigin( ParentOrigin::CENTER );
mSuperBlurView.SetAnchorPoint( AnchorPoint::CENTER );
mSuperBlurView.BlurFinishedSignal().Connect(this, &BlurExample::OnBlurFinished);
mCurrentImage = DemoHelper::LoadStageFillingImage( BACKGROUND_IMAGES[mImageIndex] );
mSuperBlurView.SetImage( mCurrentImage );
mBackground.Add( mSuperBlurView );
mIsBlurring = true;
SetTitle( TITLE_SUPER_BLUR );
mBloomView = Toolkit::BloomView::New();
mBloomView.SetParentOrigin(ParentOrigin::CENTER);
mBloomView.SetSize(stageSize);
mBloomActor = Toolkit::ImageView::New(mCurrentImage);
mBloomActor.SetParentOrigin( ParentOrigin::CENTER );
mBloomView.Add( mBloomActor );
// Connect the callback to the touch signal on the background
mSuperBlurView.TouchSignal().Connect( this, &BlurExample::OnTouch );
mBloomView.TouchSignal().Connect( this, &BlurExample::OnTouch );
}
// Callback function of the touch signal on the background
bool OnTouch(Dali::Actor actor, const Dali::TouchData& event)
{
switch( event.GetState( 0 ) )
{
case PointState::DOWN:
{
if( mAnimation )
{
mAnimation.Clear();
}
mAnimation = Animation::New( 2.f );
if( mSuperBlurView.OnStage() )
{
mAnimation.AnimateTo( Property( mSuperBlurView, mSuperBlurView.GetBlurStrengthPropertyIndex() ), 1.f );
}
else
{
mAnimation.AnimateTo( Property( mBloomView, mBloomView.GetBloomIntensityPropertyIndex() ), 3.f );
}
mAnimation.Play();
break;
}
case PointState::UP:
case PointState::LEAVE:
case PointState::INTERRUPTED:
{
if( mAnimation )
{
mAnimation.Clear();
}
mAnimation = Animation::New( 2.f );
if( mSuperBlurView.OnStage() )
{
mAnimation.AnimateTo( Property( mSuperBlurView, mSuperBlurView.GetBlurStrengthPropertyIndex() ), 0.f );
}
else
{
mAnimation.AnimateTo( Property( mBloomView, mBloomView.GetBloomIntensityPropertyIndex() ), 0.f );
}
mAnimation.Play();
break;
}
case PointState::MOTION:
case PointState::STATIONARY:
{
break;
}
}
return true;
}
/**
* Main key event handler
*/
void OnKeyEvent(const KeyEvent& event)
{
if(event.state == KeyEvent::Down)
{
if( IsKey( event, Dali::DALI_KEY_ESCAPE) || IsKey( event, Dali::DALI_KEY_BACK) )
{
mApp.Quit();
}
}
}
bool OnChangeBackgroundIconClicked( Toolkit::Button button )
{
if( mIsBlurring )
{
return true;
}
if( mAnimation )
{
mAnimation.Clear();
}
mImageIndex = (mImageIndex+1u)%NUM_BACKGROUND_IMAGES;
mCurrentImage = DemoHelper::LoadStageFillingImage( BACKGROUND_IMAGES[mImageIndex] );
if( mSuperBlurView.OnStage() )
{
mIsBlurring = true;
mSuperBlurView.SetBlurStrength( 0.f );
mSuperBlurView.SetImage( mCurrentImage );
}
else
{
mBloomView.SetProperty( mBloomView.GetBloomIntensityPropertyIndex(), 0.f );
mBloomActor.SetImage( mCurrentImage );
}
return true;
}
bool OnChangeBlurIconClicked( Toolkit::Button button )
{
if( mSuperBlurView.OnStage() )
{
SetTitle( TITLE_BLOOM );
mBackground.Remove( mSuperBlurView );
mBloomActor.SetImage( mCurrentImage );
mBloomView.SetProperty( mBloomView.GetBloomIntensityPropertyIndex(), 0.f );
mBackground.Add( mBloomView );
mBloomView.Activate();
}
else
{
SetTitle( TITLE_SUPER_BLUR );
mBackground.Remove( mBloomView );
mBloomView.Deactivate();
mBackground.Add( mSuperBlurView );
mSuperBlurView.SetBlurStrength( 0.f );
mSuperBlurView.SetImage( mCurrentImage );
mIsBlurring = true;
}
return true;
}
void OnBlurFinished( Toolkit::SuperBlurView blurView )
{
mIsBlurring = false;
}
/**
* Sets/Updates the title of the View
* @param[in] title The new title for the view.
*/
void SetTitle(const std::string& title)
{
if(!mTitleActor)
{
mTitleActor = DemoHelper::CreateToolBarLabel( title );
// Add title to the tool bar.
mToolBar.AddControl( mTitleActor, DemoHelper::DEFAULT_VIEW_STYLE.mToolBarTitlePercentage, Toolkit::Alignment::HorizontalCenter );
}
mTitleActor.SetProperty( Toolkit::TextLabel::Property::TEXT, title );
}
private:
Application& mApp;
Toolkit::ToolBar mToolBar;
Toolkit::TextLabel mTitleActor; ///< The Toolbar's Title.
Toolkit::Control mBackground;
Toolkit::SuperBlurView mSuperBlurView;
Toolkit::BloomView mBloomView;
Animation mAnimation;
Toolkit::ImageView mBloomActor;
Image mCurrentImage;
unsigned int mImageIndex;
bool mIsBlurring;
};
/*****************************************************************************/
static void
RunTest(Application& app)
{
BlurExample theApp(app);
app.MainLoop();
}
/*****************************************************************************/
int DALI_EXPORT_API main(int argc, char **argv)
{
Application app = Application::New(&argc, &argv, DEMO_THEME_PATH);
RunTest(app);
return 0;
}