-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfootballField.js
442 lines (442 loc) · 18.5 KB
/
footballField.js
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
// class Field_ball extends egret.DisplayObjectContainer{
var __reflect = (this && this.__reflect) || function (p, c, t) {
p.__class__ = c, t ? t.push(c) : t = [c], p.__types__ = p.__types__ ? t.concat(p.__types__) : t;
};
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var Field_ball = (function (_super) {
__extends(Field_ball, _super);
// 设置锚点和x值 头像 队名 赔率 ( 感觉得设置成 修改类的方式 ) ,这里加了一个参数bgUrl,用来控制不同赛场的背景
function Field_ball(bgUrl) {
var _this = _super.call(this) || this;
_this.anchorOffsetX = 242.5;
_this.x = window['store']['stage_Width'] / 2;
_this.drawField(bgUrl);
return _this;
}
Field_ball.prototype.drawField = function (bgUrl) {
var court = new egret.Bitmap(RES.getRes(bgUrl));
this.courtHeight = court.height;
this.courtAnHeight = this.courtHeight / 2;
this.addChild(court);
//两个金币收集的背景, 这里要考虑假如没人投注的情况,是否要隐藏 62+246;
this.goldItems_left = new egret.Bitmap(RES.getRes('gold-items_png'));
this.goldItems_left.x = 62;
this.goldItems_left.y = -6;
this.goldItems_left02 = new egret.Bitmap(RES.getRes('gold-items02_png'));
this.goldItems_left02.x = 62;
this.goldItems_left02.y = -6;
this.goldItems_right = new egret.Bitmap(RES.getRes('gold-items_png'));
this.goldItems_right.x = 308;
this.goldItems_right.y = -6;
this.goldItems_right02 = new egret.Bitmap(RES.getRes('gold-items02_png'));
this.goldItems_right02.x = 308;
this.goldItems_right02.y = -6;
// 左边队伍头像容器
var leftUserBox = new egret.DisplayObjectContainer();
leftUserBox.width = 68;
leftUserBox.height = 68;
leftUserBox.anchorOffsetY = 34;
leftUserBox.x = 25;
leftUserBox.y = this.courtAnHeight;
this.addChild(leftUserBox);
// 插入边框
var bgBorder = new egret.Bitmap(RES.getRes('bg-item_png'));
leftUserBox.addChild(bgBorder);
// 插入遮罩层
var bgMask = new egret.Bitmap(RES.getRes('bg-user_png'));
bgMask.x = 3;
bgMask.y = 3;
// leftUserBox.addChild(bgMask);
//队伍icon
this.leftTeam = new eui.Image();
// leftTeam.source = leftImg;
this.leftTeam.width = 68;
this.leftTeam.height = 68;
leftUserBox.addChild(this.leftTeam);
this.leftTeam.mask = bgMask;
// this.addChild( leftTeam )
// 左边队伍队名
this.leftTitle = new egret.TextField();
this.leftTitle.size = 22;
this.leftTitle.x = 102;
this.leftTitle.y = this.courtAnHeight - 6;
this.leftTitle.anchorOffsetY = 22;
this.addChild(this.leftTitle);
// 左边队伍赔率
this.leftOdds = new egret.TextField();
this.leftOdds.size = 28;
this.leftOdds.x = 102;
this.leftOdds.y = this.courtAnHeight + 2;
this.leftOdds.bold = true;
this.addChild(this.leftOdds);
// 右边同上
var rightUserBox = new egret.DisplayObjectContainer();
rightUserBox.anchorOffsetY = 34;
rightUserBox.width = 68;
rightUserBox.height = 68;
rightUserBox.x = 400;
rightUserBox.y = this.courtAnHeight;
this.addChild(rightUserBox);
// 插入边框
var bgBorder02 = new egret.Bitmap(RES.getRes('bg-item_png'));
rightUserBox.addChild(bgBorder02);
// 插入遮罩层
var bgMask02 = new egret.Bitmap(RES.getRes('bg-user_png'));
bgMask02.x = 3;
bgMask02.y = 3;
// rightUserBox.addChild(bgMask02);
//队伍icon
this.rightTeam = new eui.Image();
this.rightTeam.width = 68;
this.rightTeam.height = 68;
rightUserBox.addChild(this.rightTeam);
this.rightTeam.mask = bgMask02;
this.rightTitle = new egret.TextField();
this.rightTitle.width = 140;
this.rightTitle.textAlign = egret.HorizontalAlign.RIGHT;
this.rightTitle.size = 22;
this.rightTitle.x = 250;
this.rightTitle.y = this.courtAnHeight - 6;
this.rightTitle.anchorOffsetY = 22;
this.addChild(this.rightTitle);
this.rightOdds = new egret.TextField();
this.rightOdds.width = 140;
this.rightOdds.textAlign = egret.HorizontalAlign.RIGHT;
this.rightOdds.size = 28;
this.rightOdds.x = 250;
this.rightOdds.y = this.courtAnHeight + 2;
this.rightOdds.bold = true;
this.addChild(this.rightOdds);
//比分
this.bgScore = new egret.Bitmap(RES.getRes('bg-vs_png'));
this.bgScore.anchorOffsetY = 29;
this.bgScore.x = 188;
this.bgScore.y = this.courtHeight / 2;
this.score = new egret.TextField();
// this.score.text= '2:0';
this.score.textColor = 0xffffff;
this.score.size = 52;
this.score.bold = true;
this.score.width = 485;
this.score.height = this.courtHeight;
this.score.textAlign = egret.HorizontalAlign.CENTER;
this.score.verticalAlign = egret.VerticalAlign.MIDDLE;
// this.addChild(this.score)
};
/**
* 比分
*/
Field_ball.prototype.writeScore = function (num) {
if (num === '') {
if (this.score.parent) {
this.removeChild(this.bgScore);
this.removeChild(this.score);
}
}
else {
this.score.text = num;
if (!this.score.parent) {
this.addChild(this.bgScore);
this.addChild(this.score);
}
}
};
// 更新场地数据 赔率, 对阵 ,homeid awayid ( 初始的 投注数据 )
Field_ball.prototype.upFieldAllData = function (leftImg, leftT, leftO, rightImg, rightT, rightO, homeid, awayid, matchid, home_golds, away_golds) {
var $store_coinNum = window['store']['coin_Num'];
this.leftTeam.source = leftImg;
this.leftTitle.text = leftT;
this.leftOdds.text = leftO;
this.rightTitle.text = rightT;
this.rightOdds.text = rightO;
this.rightTeam.source = rightImg;
this.homeid = homeid;
this.awayid = awayid;
this.matchid = matchid;
if (!$store_coinNum[matchid]) {
$store_coinNum[matchid] = {
home_golds: null,
my_golds_l: null,
my_golds_r: null,
away_golds: null,
};
}
if (home_golds && home_golds !== '0') {
$store_coinNum[matchid]['home_golds'] = $store_coinNum[matchid]['home_golds'] ? parseInt($store_coinNum[matchid]['home_golds']) + home_golds :
parseInt(home_golds);
this.addLeftAllCoin(window['formateGold'](home_golds));
}
if (away_golds && away_golds !== '0') {
$store_coinNum[matchid]['away_golds'] = $store_coinNum[matchid]['away_golds'] ? parseInt($store_coinNum[matchid]['away_golds']) + away_golds :
parseInt(away_golds);
this.addRightAllCoin(window['formateGold'](away_golds));
}
};
/**
* 获取 对应场地的 img & name
*/
Field_ball.prototype.getFieldImg = function () {
return {
l_img: this.leftTeam.source,
r_img: this.rightTeam.source,
l_name: this.leftTitle.text,
r_name: this.rightTitle.text,
};
};
// 当前对阵数据
Field_ball.prototype.getCurrMatchData = function () {
return {
homeid: this.homeid,
awayid: this.awayid,
matchid: this.matchid,
leftOdds: this.leftOdds.text,
rightOdds: this.rightOdds.text,
};
};
// 删除所有 win 图标
Field_ball.prototype.removeWinIcon = function () {
if (this.winIcon_l && this.winIcon_l.parent) {
this.removeChild(this.winIcon_l);
}
if (this.winIcon_r && this.winIcon_r.parent) {
this.removeChild(this.winIcon_r);
}
};
// left add icon win 胜利图标
Field_ball.prototype.addwinIcon_l = function () {
var $store = window['store'];
if (!!this.winIcon_l) {
this.addChild(this.winIcon_l);
if (!(($store['env_variable'].src === 'qqsd' || $store['env_variable'].src === '500app') && window['platform'] === 'android')) {
egret.Tween.get(this.winIcon_l).to({ width: 203, height: 203 }, 400).to({ width: 300, height: 300 }, 400).to({ width: 203, height: 202 }, 400);
}
}
else {
this.winIcon_l = new egret.Bitmap(RES.getRes('win_png'));
this.winIcon_l.width = 203;
this.winIcon_l.height = 203;
this.winIcon_l.anchorOffsetY = 101;
this.winIcon_l.y = this.courtAnHeight;
this.winIcon_l.x = -60;
this.addChild(this.winIcon_l);
if (!(($store['env_variable'].src === 'qqsd' || $store['env_variable'].src === '500app') && window['platform'] === 'android')) {
egret.Tween.get(this.winIcon_l).to({ width: 203, height: 203 }, 400).to({ width: 300, height: 300 }, 400).to({ width: 203, height: 202 }, 400);
}
}
};
// right add icon
Field_ball.prototype.addwinIcon_r = function () {
var $store = window['store'];
if (!!this.winIcon_r) {
this.addChild(this.winIcon_r);
if (!(($store['env_variable'].src === 'qqsd' || $store['env_variable'].src === '500app') && window['platform'] === 'android')) {
egret.Tween.get(this.winIcon_r).to({ width: 203, height: 203 }, 400).to({ width: 300, height: 300 }, 400).to({ width: 203, height: 202 }, 400);
}
}
else {
this.winIcon_r = new egret.Bitmap(RES.getRes('win_png'));
this.winIcon_r.width = 203;
this.winIcon_r.height = 203;
this.winIcon_r.anchorOffsetY = 101;
this.winIcon_r.x = 330;
this.winIcon_r.y = this.courtAnHeight;
this.addChild(this.winIcon_r);
if (!(($store['env_variable'].src === 'qqsd' || $store['env_variable'].src === '500app') && window['platform'] === 'android')) {
egret.Tween.get(this.winIcon_r).to({ width: 203, height: 203 }, 400).to({ width: 300, height: 300 }, 400).to({ width: 203, height: 202 }, 400);
}
}
};
// 更新左边总金币的背景
Field_ball.prototype.upLeftCoinBg = function () {
if (this.goldItems_left02.parent) {
this.removeChild(this.goldItems_left02);
}
// 提高层级,不然会被挡住
if (this.allLeftCoin && this.allLeftCoin.parent) {
this.addChild(this.goldItems_left);
this.setChildIndex(this.allLeftCoin, this.getChildIndex(this.goldItems_left));
}
};
// 更新右边总金币的背景
Field_ball.prototype.upRightCoinBg = function () {
if (this.goldItems_right02.parent) {
this.removeChild(this.goldItems_right02);
}
if (this.allRightCoin && this.allRightCoin.parent) {
this.addChild(this.goldItems_right);
this.setChildIndex(this.allRightCoin, this.getChildIndex(this.goldItems_right));
}
};
// 创建 左边 收起的类
Field_ball.prototype.addLeftAllCoin = function (coin) {
// 左边队伍金币收集
if (!!this.allLeftCoin) {
this.allLeftCoin.text = coin;
if (!this.goldItems_left02.parent) {
this.addChild(this.goldItems_left02);
}
if (!this.allLeftCoin.parent) {
this.addChild(this.allLeftCoin);
}
}
else {
this.allLeftCoin = new egret.TextField();
this.allLeftCoin.text = coin;
this.allLeftCoin.textColor = 0xbbcfc6;
this.allLeftCoin.size = 20;
this.allLeftCoin.width = 110;
this.allLeftCoin.height = 28;
this.allLeftCoin.x = 75;
this.allLeftCoin.y = -6;
this.allLeftCoin.verticalAlign = egret.VerticalAlign.MIDDLE;
this.allLeftCoin.textAlign = egret.HorizontalAlign.CENTER;
this.addChild(this.goldItems_left02);
this.addChild(this.allLeftCoin);
// this.setChildIndex( this.allLeftCoin , this.getChildIndex( this.goldItems_left ))
}
};
// 创建 右边 收起的类
Field_ball.prototype.addRightAllCoin = function (coin) {
if (!!this.allRightCoin) {
this.allRightCoin.text = coin;
if (!this.goldItems_right02.parent) {
this.addChild(this.goldItems_right02);
}
if (!this.allRightCoin.parent) {
this.addChild(this.allRightCoin);
}
}
else {
this.allRightCoin = new egret.TextField();
this.allRightCoin.text = coin;
this.allRightCoin.textColor = 0xbbcfc6;
this.allRightCoin.size = 20;
this.allRightCoin.width = 110;
this.allRightCoin.height = 28;
this.allRightCoin.x = 320;
this.allRightCoin.y = -6;
this.allRightCoin.verticalAlign = egret.VerticalAlign.MIDDLE;
this.allRightCoin.textAlign = egret.HorizontalAlign.CENTER;
this.addChild(this.goldItems_right02);
this.addChild(this.allRightCoin);
// this.setChildIndex( this.allLeftCoin , this.getChildIndex( this.goldItems_left ))
}
};
// 更新 自己投注的数值 (判断是否有该事物 left)
Field_ball.prototype.upLeftMyMoney = function (coin) {
if (!!this.leftMyMoneyBox) {
this.leftMyMoneyText.text = coin;
if (!this.leftMyMoneyBox.parent) {
this.addChild(this.leftMyMoneyBox);
}
}
else {
this.leftMyMoneyBox = new egret.DisplayObjectContainer();
this.leftMyMoneyBox.width = 196;
this.leftMyMoneyBox.height = 27;
this.leftMyMoneyBox.x = 25;
this.leftMyMoneyBox.anchorOffsetY = 27;
this.leftMyMoneyBox.y = this.courtHeight - 5;
var leftMyMoneyBg = new egret.Bitmap(RES.getRes('bg-betting_png'));
this.leftMyMoneyBox.addChild(leftMyMoneyBg);
this.leftMyMoneyText = new egret.TextField();
this.leftMyMoneyText.text = coin;
this.leftMyMoneyText.width = 196;
this.leftMyMoneyText.height = 27;
this.leftMyMoneyText.textColor = 0xffd146;
this.leftMyMoneyText.size = 22;
this.leftMyMoneyText.verticalAlign = egret.VerticalAlign.MIDDLE;
this.leftMyMoneyText.textAlign = egret.HorizontalAlign.CENTER;
this.leftMyMoneyBox.addChild(this.leftMyMoneyText);
this.addChild(this.leftMyMoneyBox);
}
};
// 更新 自己投注的数值 (判断是否有该事物 right)
Field_ball.prototype.upRightMyMoney = function (coin) {
if (!!this.rightMyMoneyBox) {
this.rightMyMoneyText.text = coin;
if (!this.rightMyMoneyBox.parent) {
this.addChild(this.rightMyMoneyBox);
}
}
else {
this.rightMyMoneyBox = new egret.DisplayObjectContainer();
this.rightMyMoneyBox.width = 196;
this.rightMyMoneyBox.height = 27;
this.rightMyMoneyBox.x = 270;
this.rightMyMoneyBox.y = 148;
this.rightMyMoneyBox.anchorOffsetY = 27;
this.rightMyMoneyBox.y = this.courtHeight - 5;
var rightMyMoneyBg = new egret.Bitmap(RES.getRes('bg-betting_png'));
this.rightMyMoneyBox.addChild(rightMyMoneyBg);
this.rightMyMoneyText = new egret.TextField();
this.rightMyMoneyText.text = coin;
this.rightMyMoneyText.width = 196;
this.rightMyMoneyText.height = 27;
this.rightMyMoneyText.textColor = 0xffd146;
this.rightMyMoneyText.size = 22;
this.rightMyMoneyText.verticalAlign = egret.VerticalAlign.MIDDLE;
this.rightMyMoneyText.textAlign = egret.HorizontalAlign.CENTER;
this.rightMyMoneyBox.addChild(this.rightMyMoneyText);
this.addChild(this.rightMyMoneyBox);
}
};
// 清除 自己投的和他人投 的 区域 以及总的背景 ? 是否必须
Field_ball.prototype.cleanAllCoinText = function () {
if (this.rightMyMoneyBox && this.rightMyMoneyBox.parent) {
this.removeChild(this.rightMyMoneyBox);
}
if (this.leftMyMoneyBox && this.leftMyMoneyBox.parent) {
this.removeChild(this.leftMyMoneyBox);
}
if (this.allRightCoin && this.allRightCoin.parent) {
this.removeChild(this.allRightCoin);
}
if (this.allLeftCoin && this.allLeftCoin.parent) {
this.removeChild(this.allLeftCoin);
}
// 总的金币背景
if (this.goldItems_right && this.goldItems_right.parent) {
this.removeChild(this.goldItems_right);
}
// 总的金币背景
if (this.goldItems_left && this.goldItems_left.parent) {
this.removeChild(this.goldItems_left);
}
if (this.goldItems_left02 && this.goldItems_left02.parent) {
this.removeChild(this.goldItems_left02);
}
if (this.goldItems_right02 && this.goldItems_right02.parent) {
this.removeChild(this.goldItems_right02);
}
};
// findWinLocation ==> findLocal
/**
* @return _l left _r right
*/
Field_ball.prototype.findLocal = function (winid) {
if (winid) {
if (this.homeid === winid) {
return '_l';
}
else if (this.awayid === winid) {
return '_r';
}
}
else {
console.warn('footballfield findLocal not find winid');
}
};
return Field_ball;
}(eui.UILayer));
__reflect(Field_ball.prototype, "Field_ball");
//# sourceMappingURL=footballField.js.map