UILoadingBar.cpp
10.8 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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
/****************************************************************************
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#include "ui/UILoadingBar.h"
#include "ui/UIHelper.h"
#include "ui/UIScale9Sprite.h"
#include "2d/CCSprite.h"
#include "editor-support/cocostudio/CocosStudioExtension.h"
NS_CC_BEGIN
/* FIXME:
Code could be simplified by using Sprite's setContentSize feature.
Instead of scaling the sprite, set call setContentSize both in scale9 and non-scale9 modes
*/
namespace ui {
static const int BAR_RENDERER_Z = (-1);
IMPLEMENT_CLASS_GUI_INFO(LoadingBar)
LoadingBar::LoadingBar():
_direction(Direction::LEFT),
_percent(100.0),
_totalLength(0),
_barRenderer(nullptr),
_renderBarTexType(TextureResType::LOCAL),
_barRendererTextureSize(Size::ZERO),
_originalRect(Rect::ZERO),
_scale9Enabled(false),
_prevIgnoreSize(true),
_capInsets(Rect::ZERO),
_barRendererAdaptDirty(true),
_textureFile("")
{
}
LoadingBar::~LoadingBar()
{
}
LoadingBar* LoadingBar::create()
{
LoadingBar* widget = new (std::nothrow) LoadingBar();
if (widget && widget->init())
{
widget->autorelease();
return widget;
}
CC_SAFE_DELETE(widget);
return nullptr;
}
LoadingBar* LoadingBar::create(const std::string &textureName, float percentage)
{
return LoadingBar::create(textureName, TextureResType::LOCAL, percentage);
}
LoadingBar* LoadingBar::create(const std::string &textureName,
TextureResType texType,
float percentage)
{
LoadingBar* widget = new (std::nothrow) LoadingBar;
if (widget && widget->init())
{
widget->autorelease();
widget->loadTexture(textureName,texType);
widget->setPercent(percentage);
return widget;
}
CC_SAFE_DELETE(widget);
return nullptr;
}
void LoadingBar::initRenderer()
{
_barRenderer = Scale9Sprite::create();
_barRenderer->setScale9Enabled(false);
addProtectedChild(_barRenderer, BAR_RENDERER_Z, -1);
_barRenderer->setAnchorPoint(Vec2(0.0f,0.5f));
}
void LoadingBar::setDirection(cocos2d::ui::LoadingBar::Direction direction)
{
if (_direction == direction)
{
return;
}
_direction = direction;
switch (_direction)
{
case Direction::LEFT:
_barRenderer->setAnchorPoint(Vec2(0.0f,0.5f));
_barRenderer->setPosition(Vec2(0.0f,_contentSize.height*0.5f));
break;
case Direction::RIGHT:
_barRenderer->setAnchorPoint(Vec2(1.0f,0.5f));
_barRenderer->setPosition(Vec2(_totalLength,_contentSize.height*0.5f));
break;
}
this->handleSpriteFlipX();
}
LoadingBar::Direction LoadingBar::getDirection()const
{
return _direction;
}
void LoadingBar::loadTexture(const std::string& texture,TextureResType texType)
{
if (texture.empty())
{
return;
}
_textureFile = texture;
_renderBarTexType = texType;
switch (_renderBarTexType)
{
case TextureResType::LOCAL:
_barRenderer->setTexture(texture);
break;
case TextureResType::PLIST:
_barRenderer->setSpriteFrame(texture);
break;
default:
break;
}
//FIXME: https://github.com/cocos2d/cocos2d-x/issues/12249
if (!_ignoreSize && _customSize.equals(Size::ZERO)) {
_customSize = _barRenderer->getContentSize();
}
this->setupTexture();
}
void LoadingBar::loadTexture(SpriteFrame* spriteframe)
{
this->_barRenderer->initWithSpriteFrame(spriteframe);
this->setupTexture();
}
void LoadingBar::setupTexture()
{
_barRendererTextureSize = _barRenderer->getContentSize();
_originalRect = _barRenderer->getTextureRect();
switch (_direction)
{
case Direction::LEFT:
_barRenderer->setAnchorPoint(Vec2(0.0f,0.5f));
break;
case Direction::RIGHT:
_barRenderer->setAnchorPoint(Vec2(1.0f,0.5f));
break;
}
this->handleSpriteFlipX();
_barRenderer->setCapInsets(_capInsets);
this->updateChildrenDisplayedRGBA();
barRendererScaleChangedWithSize();
updateContentSizeWithTextureSize(_barRendererTextureSize);
this->updateProgressBar();
_barRendererAdaptDirty = true;
}
void LoadingBar::handleSpriteFlipX()
{
if (_direction == Direction::LEFT)
{
if (!_scale9Enabled)
{
_barRenderer->setFlippedX(false);
}
}
else
{
if (!_scale9Enabled)
{
_barRenderer->setFlippedX(true);
}
}
}
void LoadingBar::setScale9Enabled(bool enabled)
{
if (_scale9Enabled == enabled)
{
return;
}
_scale9Enabled = enabled;
_barRenderer->setScale9Enabled(_scale9Enabled);
if (_scale9Enabled)
{
bool ignoreBefore = _ignoreSize;
ignoreContentAdaptWithSize(false);
_prevIgnoreSize = ignoreBefore;
}
else
{
ignoreContentAdaptWithSize(_prevIgnoreSize);
}
setCapInsets(_capInsets);
updateProgressBar();
_barRendererAdaptDirty = true;
}
bool LoadingBar::isScale9Enabled()const
{
return _scale9Enabled;
}
void LoadingBar::setCapInsets(const Rect &capInsets)
{
_capInsets = ui::Helper::restrictCapInsetRect(capInsets, _barRendererTextureSize);
if (!_scale9Enabled)
{
return;
}
// textureRect should be restored in order to calculate the scale9 correctly
// https://github.com/cocos2d/cocos2d-x/issues/16930
_barRenderer->setTextureRect(_originalRect, _barRenderer->isTextureRectRotated(), _barRendererTextureSize);
_barRenderer->setCapInsets(_capInsets);
}
const Rect& LoadingBar::getCapInsets()const
{
return _capInsets;
}
void LoadingBar::setPercent(float percent)
{
if (percent > 100)
{
percent = 100;
}
if (percent < 0)
{
percent = 0;
}
if (_percent == percent)
{
return;
}
_percent = percent;
if (_totalLength <= 0)
{
return;
}
this->updateProgressBar();
}
void LoadingBar::updateProgressBar()
{
if (_scale9Enabled)
{
setScale9Scale();
}
else
{
float res = _percent / 100.0f;
Rect rect = _barRenderer->getTextureRect();
rect.size.width = _barRendererTextureSize.width * res;
_barRenderer->setTextureRect(rect, _barRenderer->isTextureRectRotated(), rect.size);
}
}
float LoadingBar::getPercent() const
{
return _percent;
}
void LoadingBar::onSizeChanged()
{
Widget::onSizeChanged();
_barRendererAdaptDirty = true;
}
void LoadingBar::adaptRenderers()
{
if (_barRendererAdaptDirty)
{
barRendererScaleChangedWithSize();
_barRendererAdaptDirty = false;
}
}
void LoadingBar::ignoreContentAdaptWithSize(bool ignore)
{
if (!_scale9Enabled || (_scale9Enabled && !ignore))
{
Widget::ignoreContentAdaptWithSize(ignore);
_prevIgnoreSize = ignore;
}
}
Size LoadingBar::getVirtualRendererSize() const
{
return _barRendererTextureSize;
}
Node* LoadingBar::getVirtualRenderer()
{
return _barRenderer;
}
void LoadingBar::barRendererScaleChangedWithSize()
{
if (_unifySize)
{
//_barRenderer->setPreferredSize(_contentSize);
_totalLength = _contentSize.width;
this->setPercent(_percent);
}
else if (_ignoreSize)
{
if (!_scale9Enabled)
{
_totalLength = _barRendererTextureSize.width;
_barRenderer->setScale(1.0f);
}
}
else
{
_totalLength = _contentSize.width;
if (_scale9Enabled)
{
this->setScale9Scale();
_barRenderer->setScale(1.0f);
}
else
{
Size textureSize = _barRendererTextureSize;
if (textureSize.width <= 0.0f || textureSize.height <= 0.0f)
{
_barRenderer->setScale(1.0f);
return;
}
float scaleX = _contentSize.width / textureSize.width;
float scaleY = _contentSize.height / textureSize.height;
_barRenderer->setScaleX(scaleX);
_barRenderer->setScaleY(scaleY);
}
}
switch (_direction)
{
case Direction::LEFT:
_barRenderer->setPosition(Vec2(0.0f,_contentSize.height*0.5f));
break;
case Direction::RIGHT:
_barRenderer->setPosition(Vec2(_totalLength,_contentSize.height*0.5f));
break;
default:
break;
}
}
void LoadingBar::setScale9Scale()
{
float width = (float)(_percent) / 100.0f * _totalLength;
_barRenderer->setPreferredSize(Size(width, _contentSize.height));
}
std::string LoadingBar::getDescription() const
{
return "LoadingBar";
}
Widget* LoadingBar::createCloneInstance()
{
return LoadingBar::create();
}
void LoadingBar::copySpecialProperties(Widget *widget)
{
LoadingBar* loadingBar = dynamic_cast<LoadingBar*>(widget);
if (loadingBar)
{
_prevIgnoreSize = loadingBar->_prevIgnoreSize;
setScale9Enabled(loadingBar->_scale9Enabled);
// clone the inner sprite: https://github.com/cocos2d/cocos2d-x/issues/16930
loadingBar->_barRenderer->copyTo(_barRenderer);
setupTexture();
setCapInsets(loadingBar->_capInsets);
setPercent(loadingBar->_percent);
setDirection(loadingBar->_direction);
_textureFile = loadingBar->_textureFile;
_totalLength = loadingBar->_totalLength;
_barRendererTextureSize = loadingBar->_barRendererTextureSize;
}
}
ResourceData LoadingBar::getRenderFile()
{
ResourceData rData;
rData.type = (int)_renderBarTexType;
rData.file = _textureFile;
return rData;
}
}
NS_CC_END