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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
import { asyncDelay, onHomeworkFinish } from "../script/util";
import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent";
import shop from "./model/shop";
import pg from "./pg";
import Api from "./net/api";
import user from "./model/user";
import Item from "./model/item";
import kitchen from "./model/kitchen";
import { ITEM_TYPE } from "./config/config";
const { ccclass, property } = cc._decorator;
@ccclass
export default class SceneComponent extends MyCocosSceneComponent {
@property(cc.SpriteFrame)
icon_1: cc.SpriteFrame = null;
@property(cc.SpriteFrame)
icon_2: cc.SpriteFrame = null;
@property(cc.SpriteFrame)
icon_3: cc.SpriteFrame = null;
@property(cc.SpriteFrame)
icon_4: cc.SpriteFrame = null;
@property(cc.SpriteFrame)
icon_5: cc.SpriteFrame = null;
@property(cc.SpriteFrame)
icon_6: cc.SpriteFrame = null;
@property(cc.SpriteFrame)
icon_7: cc.SpriteFrame = null;
@property(cc.SpriteFrame)
icon_8: cc.SpriteFrame = null;
addPreloadImage() {
// TODO 根据自己的配置预加载图片资源
this._imageResList.push({ url: this.data.pic_url });
this._imageResList.push({ url: this.data.pic_url_2 });
}
addPreloadAudio() {
// TODO 根据自己的配置预加载音频资源
this._audioResList.push({ url: this.data.audio_url });
}
addPreloadAnima() {
}
onLoadEnd() {
globalThis.USER_TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE2Mzk2MjE3MTIsImV4cCI6MTY0MjIxMzcxMiwiaWQiOjQwMDY2LCJwYXNzd29yZCI6IjE5QTEwM0E3NUUzM0QzQTNCODg0QkQxNTUwMjhENTA1Iiwic2Nob29sX2lkIjoyODYsInBob25lIjoiMTMxMDAwMDAwMDAiLCJuYW1lIjoi5bCP546J5rWL6K-VMCIsInN0YXR1cyI6MCwidHlwZSI6MCwicm9sZXMiOjEsImV4cGlyZWQiOiIyMDIyLTAzLTE5VDE2OjAwOjAwLjAwMFoiLCJzY2hvb2xfbmFtZSI6Iue7mOeOqea1i-ivleeOr-Wig-WtpuagoSIsInNjaG9vbF90eXBlIjoyLCJjcmVhdGVvbiI6MTU3MDc2MTk3NDAwMCwiY2xhc3NfbmFtZSI6IuS4ieW5tDHnj60iLCJjbGFzc19pbmZvIjpbeyJjbGFzc19pZCI6MzkxNSwiY2xhc3NfbmFtZSI6IuS4ieW5tDHnj60ifV0sIm90aGVycyI6W119.4T-Lnsl25aJ-rvUOCDwShq4F5u3BbR86ZLPew4zyULU"
globalThis.CLIENT_TYPE = 'student'
globalThis.SERVER_HOST = 'http://192.168.3.127:3900'
// globalThis.SERVER_HOST = 'http://staging.ireadabc.com'
this.initGame();
this.initView();
this.initEvent();
this.initTipSys();
// TODO 加载完成后的逻辑写在这里, 下面的代码仅供参考
this.fetchUserData();
return Promise.resolve()
}
fetchUserData() {
this.showWaitingLetters();
return Api.askUser().then(() => {
this.hideWaitingLetters()
this.initData();
}).catch((e) => {
this.hideWaitingLetters()
this.openTipAlert({message: '网络错误,请返回重新进入',
callback: () => {
this.closeTipAlert();
this.fetchUserData();
}})
})
}
initGame() {
//基础效果 需要隐藏的内容处理。 首屏展示
}
_cantouch = null;
initData() {
// 所有全局变量 默认都是null
this._cantouch = true;
}
private home: cc.Node;
private kitchen: cc.Node;
private shop: cc.Node;
private loading: cc.Node;
private exitButton: cc.Node;
tws: any[] = [];
LoadingCount: number = 1;
initView() {
this.tws = [];
this.LoadingCount = 0;
this.home = pg.view.find(this, "home");
this.kitchen = pg.view.find(this, "kitchen");
this.shop = pg.view.find(this, "shop");
this.elephant = pg.view.find(this.home, "elephant");
this.loading = pg.view.find(this, "loading");
this.exitButton = pg.view.find(this.home, "exit_btn");
this.elephentState(0);
}
initEvent() {
pg.view.touchOn(pg.view.find(this.home, "btn_kitchen"), this.onTouchKitchen, this);
pg.view.touchOn(pg.view.find(this, "kitchen/btn_close"), this.onTouchKitchenClose, this);
pg.view.touchOn(pg.view.find(this.home, "btn_shop"), this.onTouchShop, this);
pg.view.touchOn(pg.view.find(this, "shop/btn_close"), this.onTouchShopClose, this);
pg.view.touchOn(pg.view.find(this.elephant, "walk"), this.onTouchElephent, this);
pg.view.touchOn(pg.view.find(this.elephant, "panel_info/btn_close"), this.onTouchPanel, this);
pg.view.touchOn(this.exitButton, this.onExitPetRoom, this);
}
//----------------------------商店部分--------------------------------------
// 推出按钮
onExitPetRoom() {
cc.find('middleLayer').getComponent('middleLayer').exit();
}
//商店按钮
private shopType = 0;
onTouchShop() {
this.shop.active = true;
this.updateShopCoin();
let btns = pg.view.find(this.shop, "btns");
let btn_food_wait = pg.view.find(btns, "btn_food_wait");
let btn_house_wait = pg.view.find(btns, "btn_house_wait");
let btn_clothes_wait = pg.view.find(btns, "btn_clothes_wait");
pg.view.touchOn(btn_food_wait, this.onTouchShopFood, this);
pg.view.touchOn(btn_house_wait, this.onTouchShopHouse, this);
pg.view.touchOn(btn_clothes_wait, this.onTouchShopClothes, this);
this.shopType = ITEM_TYPE.FOOD;
this.updateShopList();
this.updateShopBtns();
}
onTouchShopClose() {
this.shop.active = false;
}
onTouchShopFood() {
this.shopType = ITEM_TYPE.FOOD;
this.updateShopList();
this.updateShopBtns();
}
onTouchShopHouse() {
this.shopType = ITEM_TYPE.HOUSE;
const list = this.updateShopList();
if (!list.length) {
this.openTipEmpty(() => {
this.closeTipEmpty();
});
return;
}
this.updateShopBtns();
}
onTouchShopClothes() {
this.openTipEmpty(() => {
this.closeTipEmpty();
})
// this.shopType = ITEM_TYPE.CLOTHES;
// this.updateShopList();
// this.updateShopBtns();
}
updateShopCoin() {
let coin = pg.view.find(this.shop, "coin/num");
pg.view.setString(coin, user.coin);
}
updateShopList() {
let scroll = pg.view.find(this.shop, "scrollview");
let svt = scroll.getComponent("svt");
let list = shop.getListByType(this.shopType);
svt.list = list;
if (list.length == 0) {
return list;
}
svt.updateItem = this.updateShopItems;
svt.target = this;
svt.addNum = 4;
svt.flush();
return list;
}
updateShopBtns() {
let btns = pg.view.find(this.shop, "btns");
let btn_food_wait = pg.view.find(btns, "btn_food_wait");
let btn_food_active = pg.view.find(btns, "btn_food_active");
let btn_house_wait = pg.view.find(btns, "btn_house_wait");
let btn_house_active = pg.view.find(btns, "btn_house_active");
let btn_clothes_wait = pg.view.find(btns, "btn_clothes_wait");
let btn_clothes_active = pg.view.find(btns, "btn_clothes_active");
btn_food_wait.active = this.shopType != ITEM_TYPE.FOOD;
btn_food_active.active = this.shopType == ITEM_TYPE.FOOD;
btn_house_wait.active = this.shopType != ITEM_TYPE.HOUSE;
btn_house_active.active = this.shopType == ITEM_TYPE.HOUSE;
btn_clothes_wait.active = this.shopType != ITEM_TYPE.CLOTHES;
btn_clothes_active.active = this.shopType == ITEM_TYPE.CLOTHES;
}
updateShopItems(item, datas) {
item.children.forEach(it => it.active = false);
for (let i = 0; i < datas.length; i++) {
let it = item.children[i];
let dt = datas[i];
if (dt) {
// console.log(dt.name);
this.updateShopItem(it, dt);
}
}
}
updateShopItem(item, data: Item) {
item.active = true;
let growth = pg.view.find(item, "bg_food/growth");
let txt = pg.view.find(item, "bg_food/txt");
let name = pg.view.find(item, "bg_food/name");
let icon = pg.view.find(item, "bg_food/icon");
let discount = pg.view.find(item, "bg_food/discount");
let btn_buy = pg.view.find(item, "bg_food/btn_buy");
pg.view.setString(txt, `可增加 个成长值`)
pg.view.setString(growth, data.growthValue)
pg.view.setString(name, data.name)
// console.log(data.cover);
pg.view.setNetImg(icon, data.cover, false)
// icon.getComponent(cc.Sprite).spriteFrame = this[data.icon];
let dis = Math.round((1 - data.discount) * 100);
if (dis > 0) {
pg.view.setString(discount, `${dis}%`)
pg.view.visible(pg.view.find(item, "bg_food/bg_sale"), true);
pg.view.visible(pg.view.find(item, "bg_food/discount"), true);
} else {
pg.view.visible(pg.view.find(item, "bg_food/bg_sale"), false);
pg.view.visible(pg.view.find(item, "bg_food/discount"), false);
}
pg.view.setString(pg.view.find(btn_buy, "num"), data.cost)
pg.view.touchOn(item, this.onTouchShopItem, this);
item.data = data;
}
onTouchShopItem(e) {
let item = e.target; // .parent;
let data: Item = item.data;
if (data.type == 1) {
//弹出购买弹窗
console.log(user)
if (user.coin >= data.cost * data.discount) {
this.openTipNormal(data, () => {
this.buy(data);
this.closeTipNormal();
}, () => {
this.closeTipNormal();
})
} else {
this.openTipFail(data, () => {
this.closeTipFail();
}, () => {
this.closeTipFail();
})
}
} else if (data.type == 2) {
//物品已购买
if (data.num >= 0) return;
} else if (data.type == 3) {
//物品已购买
if (data.num >= 0) return;
}
}
buy(data) {
this.showWaitingLetters();
Api.askBuyItem(data).then((resp) => {
this.fetchUserData().then(ud => {
this.hideWaitingLetters(true)
this.updateShopCoin();
this.openTipBuy(data, () => {
this.closeTipBuy();
});
}).catch(e => {
this.hideWaitingLetters(true);
this.openTipAlert({message: '网络错误,请重试(err: 1)',
callback: () => {
this.closeTipAlert();
}
})
});
}).catch(e => {
this.hideWaitingLetters(true);
this.openTipAlert({message: '网络错误,请重试(err: 2)',
callback: () => {
this.closeTipAlert();
}
})
})
}
//----------------------------冰箱部分--------------------------------------
onTouchKitchen() {
this.kitchen.active = true;
let coin = pg.view.find(this.kitchen, "coin/num");
pg.view.setString(coin, user.coin);
let scroll = pg.view.find(this.kitchen, "scrollview");
let svt = scroll.getComponent("svt");
svt.list = kitchen.list;
svt.updateItem = this.updateChickenItems;
svt.target = this;
svt.addNum = 4;
svt.flush();
}
onTouchKitchenClose() {
this.kitchen.active = false;
}
updateChickenItems(item, datas) {
item.children.forEach(it => it.active = false);
for (let i = 0; i < datas.length; i++) {
let it = item.children[i];
it.active = false;
let dt = datas[i];
if (dt) {
this.updateChickenItem(it, dt);
}
}
}
updateChickenItem(item, data: Item) {
// console.log(data);
item.active = true;
let growth = pg.view.find(item, "growth");
let name = pg.view.find(item, "name");
let icon = pg.view.find(item, "icon");
let num = pg.view.find(item, "num");
pg.view.setString(growth, `成长值+${data.growthValue}`)
pg.view.setString(name, data.name)
pg.view.setString(num, data.num)
// icon.getComponent(cc.Sprite).spriteFrame = this[data.icon];
pg.view.setNetImg(icon, data.cover)
pg.view.touchOn(item, this.onTouchChickenItem, this);
item.data = data;
}
onTouchChickenItem(e) {
let item = e.target;
let data: Item = item.data;
//吃东西。 关闭界面,并展示吃东西的画面,如果不足的情况提示不足。
if (data.num <= 0) return;
if (data.type == 1) {
this.eating(data);
} else if (data.type == 2) {
//物品使用
}
}
eating(data) {
//可以检测是否升级等---升级说明之类的
this.showWaitingLetters();
Api.askUseItem(data).then((resp) => {
this.fetchUserData().then(ud => {
this.hideWaitingLetters(true);
this.elephentState(3);
this.onTouchKitchenClose();
}).catch(e => {
this.hideWaitingLetters(true);
this.openTipAlert({message: '网络错误,请重试(err: 1)',
callback: () => {
this.closeTipAlert();
}
})
});
}).catch(e => {
this.hideWaitingLetters(true);
this.openTipAlert({message: '网络错误,请重试(err: 2)',
callback: () => {
this.closeTipAlert();
}
})
})
}
//----------------------------主界面部分--------------------------------------
//打开提示面板
onTouchElephent() {
this.elephentState(user.mood == 0 ? 1 : 2);
let panel_info = pg.view.find(this.elephant, "panel_info");
panel_info.active = true;
//刷新内容
let label_name = pg.view.find(panel_info, "label_name");
pg.view.setString(label_name, user.name);
let label_level = pg.view.find(panel_info, "label_level");
pg.view.setString(label_level, `LV.${user.level}`);
let icon_happy = pg.view.find(panel_info, "icon_happy");
let icon_hungry = pg.view.find(panel_info, "icon_hungry");
icon_happy.active = user.mood == 0;
icon_hungry.active = user.mood == 1;
let percent = user.growth / user.growthLevel;
let progress = pg.view.find(panel_info, "progress");
progress.getComponent(cc.ProgressBar).progress = percent;
}
//关闭提示面板
onTouchPanel() {
let panel_info = pg.view.find(this.elephant, "panel_info");
panel_info.active = false;
this.elephentState(0);
}
//小象的动作管理。
private elephant: cc.Node;
private _timer: number;
elephentState(state) {
switch (state) {
case 0:
this.elephantWalk();
break;
case 1:
this.elephantHappy();
break;
case 2:
this.elephantHungry();
break;
case 3:
this.elephantEating();
break;
}
}
elephantWalk() {
let walkAni = pg.view.find(this.elephant, "walk");
let eatAni = pg.view.find(this.elephant, "eat");
walkAni.active = true;
eatAni.active = false;
let db = pg.view.playDBAnimation(walkAni, "walking", 0);
this.removeHungryAudio(db);
cc.Tween.stopAllByTarget(this.elephant);
walkAni.scaleX = 1;
let moveX = 400;
let moveY = 0;
let winSize = cc.winSize;
if (winSize.width / winSize.height < 16 / 9) {
moveY = -(16 / 9 - winSize.width / winSize.height) * 750 / 2;
}
if (!this.elephant.active) {
this.elephant.active = true;
this.elephant.x = 0;
this.elephant.y = moveY + Math.random() * 100;
}
cc.tween(this.elephant)
.to(4, { x: moveX, y: moveY + Math.random() * 100 })
.call(() => {
walkAni.scaleX = -1;
})
.to(4, { x: 0, y: moveY + Math.random() * 100 })
.to(4, { x: -moveX, y: moveY + Math.random() * 100 })
.call(() => {
walkAni.scaleX = 1;
})
.to(4, { x: 0, y: moveY + Math.random() * 100 })
.call(() => {
this.elephentState(0);
})
.start();
}
elephantHappy() {
let walkAni = pg.view.find(this.elephant, "walk");
let eatAni = pg.view.find(this.elephant, "eat");
walkAni.active = true;
eatAni.active = false;
let db = pg.view.playDBAnimation(walkAni, "happy", 0);
this.removeHungryAudio(db);
cc.Tween.stopAllByTarget(this.elephant);
walkAni.scaleX = 1;
}
elephantHungry() {
let walkAni = pg.view.find(this.elephant, "walk");
let eatAni = pg.view.find(this.elephant, "eat");
walkAni.active = true;
eatAni.active = false;
this.playLocalAudio("hungry");
let db: dragonBones.ArmatureDisplay = pg.view.playDBAnimation(walkAni, "hungry", 0);
this.removeHungryAudio(db);
this.addHungryAudio(db);
cc.Tween.stopAllByTarget(this.elephant);
walkAni.scaleX = 1;
}
elephantEating() {
let walkAni = pg.view.find(this.elephant, "walk");
let eatAni = pg.view.find(this.elephant, "eat");
walkAni.active = false;
eatAni.active = true;
pg.view.playDBAnimation(eatAni, "eating", 0);
cc.Tween.stopAllByTarget(this.elephant);
this.playLocalAudio("eating");
setTimeout(() => {
this.elephentState(0);
}, 3500);
}
addHungryAudio(db: dragonBones.ArmatureDisplay) {
db.addEventListener(dragonBones.EventObject.LOOP_COMPLETE, this.playHungryAudio, this)
}
removeHungryAudio(db: dragonBones.ArmatureDisplay) {
db.removeEventListener(dragonBones.EventObject.LOOP_COMPLETE, this.playHungryAudio, this)
}
playHungryAudio() {
this.playLocalAudio("hungry");
}
//-----------------------------提示面板部分-----------------------------------------
private tip_normal: cc.Node;
private tip_buy: cc.Node;
private tip_fail: cc.Node;
private tip_empty: cc.Node;
private tip_alert: cc.Node;
private tipSuccess: Function;
private tipCancel: Function;
private tipBuySuccess: Function;
private tipFailSuccess: Function;
private tipFailCancel: Function;
private tipEmptySuccess: Function;
private tipAlertCallback: Function;
initTipSys() {
this.tip_normal = pg.view.find(this, "tip_normal");
this.tip_buy = pg.view.find(this, "tip_buy");
this.tip_fail = pg.view.find(this, "tip_fail");
this.tip_empty = pg.view.find(this, "tip_empty");
this.tip_alert = pg.view.find(this, "tip_alert");
pg.view.touchOn(pg.view.find(this.tip_normal, "btn_sure"), () => { this.tipSuccess && this.tipSuccess() }, this);
pg.view.touchOn(pg.view.find(this.tip_normal, "btn_cancel"), () => { this.tipCancel && this.tipCancel() }, this);
pg.view.touchOn(pg.view.find(this.tip_buy, "btn_cancel"), () => { this.tipBuySuccess && this.tipBuySuccess() }, this);
pg.view.touchOn(pg.view.find(this.tip_fail, "btn_sure"), () => { this.tipFailSuccess && this.tipFailSuccess() }, this);
pg.view.touchOn(pg.view.find(this.tip_fail, "btn_cancel"), () => { this.tipFailCancel && this.tipFailCancel() }, this);
pg.view.touchOn(pg.view.find(this.tip_empty, "btn_cancel"), () => { this.tipEmptySuccess && this.tipEmptySuccess() }, this);
pg.view.touchOn(pg.view.find(this.tip_alert, "btn_cancel"), () => { this.tipAlertCallback && this.tipAlertCallback() }, this);
}
openTipNormal(data: Item, success, cancel) {
this.tip_normal.active = true;
this.tipSuccess = success;
this.tipCancel = cancel;
if (data) {
pg.view.setString(pg.view.find(this.tip_normal, "desc"), `确定花${data.cost * data.discount}金币购买${data.name}吗?`);
let icon = pg.view.find(this.tip_normal, "icon");
// icon.getComponent(cc.Sprite).spriteFrame = this[data.icon];
pg.view.setNetImg(icon, data.cover)
}
}
closeTipNormal() {
this.tip_normal.active = false;
this.tipSuccess = null;
this.tipCancel = null;
}
openTipFail(data: Item, success, cancel) {
this.tip_fail.active = true;
this.tipFailSuccess = success;
this.tipFailCancel = cancel;
}
closeTipFail() {
this.tip_fail.active = false;
this.tipFailSuccess = null;
this.tipFailCancel = null;
}
openTipBuy(data: Item, success) {
this.tip_buy.active = true;
this.tipBuySuccess = success;
if (data) {
let icon = pg.view.find(this.tip_buy, "icon");
// icon.getComponent(cc.Sprite).spriteFrame = this[data.icon];
pg.view.setNetImg(icon, data.cover, false)
}
}
closeTipBuy() {
this.tip_buy.active = false;
this.tipBuySuccess = null;
}
openTipEmpty(success) {
this.tip_empty.active = true;
this.tipEmptySuccess = success;
}
closeTipEmpty() {
this.tip_empty.active = false;
}
openTipAlert({message, btnText, callback}: {message?: string, btnText?: string, callback: (...args) => void}) {
if (message) {
const tipNode = this.tip_alert.getChildByName('tip_empty');
const messageNode = tipNode.getChildByName('message');
const lbl = messageNode.getComponent(cc.RichText);
lbl.string = `<color=#333333>${message}</color>`;
}
if (btnText) {
const btnNode = this.tip_alert.getChildByName('btn_ok');
const btnTxtNode = btnNode.getChildByName('txt');
const lbl = btnTxtNode.getComponent(cc.Label);
lbl.string = btnText;
}
this.tip_alert.active = true;
this.tipAlertCallback = callback;
}
closeTipAlert() {
this.tip_alert.active = false;
}
hideWaitingLetters(force = false) {
if (force) {
this.LoadingCount = 0;
} else {
this.LoadingCount--;
}
if (this.LoadingCount <= 0) {
this.LoadingCount = 0;
setTimeout(() => {
if (this.tws){
for (const tw of this.tws) {
tw.node.y = 0;
tw.tw.stop();
}
}
this.loading.active = false;
});
}
}
showWaitingLetters() {
this.LoadingCount += 1;
if (this.loading.active) {
return;
}
const colorList = this.getRainbowColorList();
const text = this.loading.getChildByName('text')
text.children.forEach((node, idx) => {
node.color = colorList[idx];
const tw = cc.tween(node)
.delay(idx / 4)
.to(0.3, { y: 30 }, { easing: 'sineOut' })
.to(0.3, { y: -30 }, { easing: 'sineIn' })
.delay((text.children.length - idx) / 4)
.union()
.repeatForever()
.start();
this.tws.push({
tw,
node
});
});
this.loading.active = true;
}
getRainbowColorList() {
return [
cc.color(255, 255, 0),
cc.color(128, 255, 0),
cc.color(0, 255, 0),
cc.color(0, 255, 128),
cc.color(0, 255, 255),
cc.color(0, 128, 255),
cc.color(0, 0, 255),
cc.color(128, 0, 255),
cc.color(255, 0, 255),
cc.color(255, 0, 128),
cc.color(255, 0, 0),
cc.color(255, 128, 0),
cc.color(255, 255, 0),
];
}
initBg() {
const bgNode = cc.find('Canvas/bg');
bgNode.scale = this._mapScaleMax;
}
playLocalAudio(audioName) {
const audio = cc.find(`Canvas/res/audio/${audioName}`).getComponent(cc.AudioSource);
return new Promise((resolve, reject) => {
const id = cc.audioEngine.playEffect(audio.clip, false);
cc.audioEngine.setFinishCallback(id, () => {
resolve(id);
});
})
}
}
//未完成功能。
//1.商城购买流程。 不足提示框
//2.商城切换流程。 空提示框
//3.物品使用http请求。
//未确定功能
// 1.所有的家具使用
// 2.所有的衣服使用