Commit aebab240 authored by haiyoucuv's avatar haiyoucuv

exchangePanel

parent 1e485e75
This diff is collapsed.
{
"code": "000000",
"data": [
{
"image": "https://source.unsplash.com/user/erondu/100x100",
"ename": "111111",
"amount": 20,
"exchangeInfo": [
{
"name": "核桃",
"storage": 110,
"type": "PECAN",
"value": 10
}
],
"restStock": 1000,
"isLimitStock": true,
"name": "权益奖品",
"startTime": 1591682068000,
"_id": "5edf3a16f344891ad1f6adab",
"endTime": 1591682068000,
"type": 1
},
{
"image": "https://source.unsplash.com/user/erondu/100x100",
"ename": "111111",
"amount": 20,
"exchangeInfo": [
{
"name": "核桃",
"storage": 0,
"type": "CHESTNUT",
"value": 10
},
{
"name": "核桃",
"storage": 5,
"type": "PECAN",
"value": 10
},
{
"name": "核桃",
"storage": 1,
"type": "PEANUT",
"value": 10
},
{
"name": "核桃",
"storage": 11,
"type": "MELON",
"value": 10
},
{
"name": "核桃",
"storage": 10,
"type": "PISTACHIONUT",
"value": 10
},
{
"name": "核桃",
"storage": 0,
"type": "CASHEWNUT",
"value": 10
}
],
"restStock": 1000,
"isLimitStock": true,
"name": "权益奖品",
"startTime": 1591682068000,
"_id": "5edf3a16f344891ad1f6adab",
"endTime": 1591682068000,
"type": 1
},
{
"image": "https://source.unsplash.com/user/erondu/100x100",
"ename": "111111",
"amount": 20,
"exchangeInfo": [
{
"name": "核桃",
"storage": 10,
"type": "PECAN",
"value": 10
}
],
"restStock": 1000,
"isLimitStock": true,
"name": "权益奖品",
"startTime": 1591682068000,
"_id": "5edf3a16f344891ad1f6adab",
"endTime": 1591682068000,
"type": 1
}
],
"success": true
}
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
"plant": true, "plant": true,
"level": 3, "level": 3,
"plantType": "PEANUT", "plantType": "PEANUT",
"waterTime": 1591790173326, "waterTime": 1591891173326,
"totalTime": 300000000, "totalTime": 300000000,
"waterRestCount": 0 "waterRestCount": 0
}, },
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
"plant": true, "plant": true,
"level": 1, "level": 1,
"plantType": "CASHEWNUT", "plantType": "CASHEWNUT",
"waterTime": 0, "waterTime": 1591891173326,
"totalTime": 3000, "totalTime": 3000,
"waterRestCount": 0 "waterRestCount": 0
}, },
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
"plant": true, "plant": true,
"level": 1, "level": 1,
"plantType": "PECAN", "plantType": "PECAN",
"waterTime": 1591780173326, "waterTime": 1591891173326,
"totalTime": 300000000, "totalTime": 300000000,
"waterRestCount": 0 "waterRestCount": 0
}, },
......
This diff is collapsed.
...@@ -89,7 +89,7 @@ ...@@ -89,7 +89,7 @@
"name": "exchangePanel" "name": "exchangePanel"
}, },
{ {
"keys": "btn_仓库.png,btn_兑换记录.png,btn_商店.png,btn_规则.png,btn_领水滴.png,game_bg.jpg,广告.png,用户_bg.png,用户_头像.png,用户_水.png,田_初始.png,田_种植.png,田_选择.png,种植框_bg.png,种植框_left.png,种植框_right.png,种植框_time_bg.png,种植框_山核桃.png,种植框_开心果.png,种植框_板栗.png,种植框_瓜子.png,种植框_腰果.png,种植框_花生.png,袋子.png,进度_bg.png,进度_fill.png", "keys": "btn_仓库.png,btn_兑换记录.png,btn_商店.png,btn_规则.png,btn_领水滴.png,game_bg.jpg,广告.png,用户_bg.png,用户_头像.png,用户_水.png,田_初始.png,田_种植.png,田_选择.png,种植框_bg.png,种植框_left.png,种植框_right.png,种植框_time_bg.png,种植框_开心果.png,种植框_板栗.png,种植框_核桃.png,种植框_瓜子.png,种植框_腰果.png,种植框_花生.png,袋子.png,进度_bg.png,进度_fill.png",
"name": "gameScene" "name": "gameScene"
}, },
{ {
......
This diff is collapsed.
...@@ -31,6 +31,8 @@ export enum TbNetName { ...@@ -31,6 +31,8 @@ export enum TbNetName {
baseInfo = 'qiaqia2.getActivityBaseInfoById', baseInfo = 'qiaqia2.getActivityBaseInfoById',
shopList = 'qiaqia2.getExchangeGoodsList',
taskList = 'qiaqia2.getTaskList', taskList = 'qiaqia2.getTaskList',
wareHouse = 'qiaqiaHome.getStorages', wareHouse = 'qiaqiaHome.getStorages',
......
export enum G_EVENT {
GET_WAREHOUSE = 'getWareHouse',
GET_SHOPLIST = 'getShopList'
}
...@@ -41,7 +41,7 @@ export const s_PlantData = { ...@@ -41,7 +41,7 @@ export const s_PlantData = {
}, },
PECAN: { PECAN: {
key: PLANT_TYPE.PECAN, key: PLANT_TYPE.PECAN,
name: '核桃', name: '核桃',
time: 2, time: 2,
}, },
PEANUT: { PEANUT: {
......
import { Panel } from "../../module/views/Panel"; import { Panel } from "../../module/views/Panel";
import { Tool } from "../Tools"; import { Tool } from "../Tools";
import { s_PlantData } from "../const/staticData";
import Sprite = FYGE.Sprite; import Sprite = FYGE.Sprite;
import Graphics = FYGE.Graphics; import Graphics = FYGE.Graphics;
import Texture = FYGE.Texture; import Texture = FYGE.Texture;
import MouseEvent = FYGE.MouseEvent; import MouseEvent = FYGE.MouseEvent;
import Container = FYGE.Container;
import TEXT_ALIGN = FYGE.TEXT_ALIGN;
import TEXT_lINETYPE = FYGE.TEXT_lINETYPE;
export class ExchangePanel extends Panel { export class ExchangePanel extends Panel {
get groupNames() { get groupNames() {
...@@ -20,29 +24,95 @@ export class ExchangePanel extends Panel { ...@@ -20,29 +24,95 @@ export class ExchangePanel extends Panel {
this.closeBtn.height = this.closeBtn.width = 44; this.closeBtn.height = this.closeBtn.width = 44;
console.log('ExchangePanel', this.data); console.log('ExchangePanel', this.data);
const nameLabel = this.addChild(Tool.getText(this.data.prizeName, 26, '#ffffff')); const nameLabel = this.addChild(Tool.getText(this.data.name, 26, '#ffffff'));
nameLabel.position.set((this.width - nameLabel.textWidth) / 2, 710); nameLabel.position.set((this.width - nameLabel.textWidth) / 2, 700);
const prizeImg = this.addChild(new Sprite()); const prizeImg = this.addChild(new Sprite());
prizeImg.texture = Texture.fromUrl(this.data.prizeImg); prizeImg.texture = Texture.fromUrl(this.data.image);
// prizeImg.texture.addEventListener('update', () => {
prizeImg.position.set((this.width - 143) / 2, 523); prizeImg.position.set((this.width - 143) / 2, 523);
prizeImg.width = prizeImg.height = 143; prizeImg.width = prizeImg.height = 143;
// });
const imgMask = this.addChild(new Graphics()); const imgMask = this.addChild(new Graphics());
imgMask.position.set((this.width - 143) / 2, 523); imgMask.position.set((this.width - 143) / 2, 523);
imgMask.drawCircle(71.5, 71.5, 71.5); imgMask.drawCircle(71.5, 71.5, 71.5);
prizeImg.mask = imgMask; prizeImg.mask = imgMask;
this.btn = this.addChild( let enough = true;
Tool.getSprite( 'exchange_btn_en.png';
this.data.count > 0 for (let i = 0; i < this.data.exchangeInfo.length; i++) {
? 'exchange_btn_en.png' let d = this.data.exchangeInfo[i];
: 'exchange_btn_dis.png' if (d.value > d.storage) {
) enough = false;
); 'exchange_btn_dis.png';
break;
}
}
this.btn = this.addChild(Tool.getSprite(enough ? 'exchange_btn_en.png' : 'exchange_btn_dis.png'));
enough && this.btn.addEventListener(MouseEvent.CLICK, () => {
console.log('兑换');
/// TODO
});
this.btn.position.set((this.width - this.btn.width) / 2, 876); this.btn.position.set((this.width - this.btn.width) / 2, 876);
this.setExchangeInfo();
let introduction = this.addChild(Tool.getText(`商品介绍:${this.data.name}`, 20, '#dbd2ca'));
introduction.textWidth = 470;
introduction.lineType = TEXT_lINETYPE.MULTI;
introduction.textAlign = TEXT_ALIGN.LEFT;
introduction.position.set(139, 980);
if (this.data.type == 1) {
// let sDate = new Date(this.data.startTime);
let eDate = new Date(this.data.endTime);
// let sLabel = `${sDate.getFullYear()}/${sDate.getMonth() + 1}/${sDate.getDate()}`;
let eLabel = `${eDate.getFullYear()}/${eDate.getMonth() + 1}/${eDate.getDate()} ${eDate.getHours()}:${eDate.getMinutes()}`;
let date = this.addChild(Tool.getText(`${eLabel}合成截止`, 20, '#dbd2ca'));
date.position.set(137, introduction.y + introduction.textHeight + 5);
}
if (this.data.isLimitStock) {
// 库存剩余label
}
}
private setExchangeInfo() {
// {
// "name": "核桃",
// "storage": 0,
// "type": "PECAN",
// "value": 10
// }
// @ts-ignore
const exchangeInfo = this.data.exchangeInfo;
let exchangeInfoRoot = new Container();
exchangeInfo.forEach((v, index) => {
let n = exchangeInfoRoot.addChild(new Container())
let img = n.addChild(Tool.getSprite(`种植框_${s_PlantData[v.type].name}.png`));
let textNode = n.addChild(new Container());
let leftText = textNode.addChild(Tool.getText(`${v.storage}`, 22, v.storage >= v.value ? '#ffffff' : '#ff0000'));
textNode.addChild(Tool.getText(`/${v.value}`, 22, '#ffffff'))
.position.set(leftText.x + leftText.textWidth, leftText.y);
if (textNode.width > img.width) {
img.x = (textNode.width - img.width);
} else {
textNode.x = (img.width - textNode.width) / 2;
}
textNode.y = 60;
n.position.set(75 * index, 0);
if (index >= exchangeInfo.length - 1) return;
exchangeInfoRoot.addChild(Tool.getText('+', 26, '#ffffff'))
.position.set(n.x + 55, 10);
});
this.addChild(exchangeInfoRoot);
exchangeInfoRoot.position.set((this.width - exchangeInfoRoot.width) / 2, 763);
} }
start(data) { start(data) {
......
import { Panel } from "../../module/views/Panel"; import { Panel } from "../../module/views/Panel";
import { Tool } from "../Tools"; import { Tool } from "../Tools";
import Sprite = FYGE.Sprite;
import { layers } from "../../module/views/layers"; import { layers } from "../../module/views/layers";
import PanelCtrl from "../../module/ctrls/panelCtrl";
import { ExchangePanel } from "./ExchangePanel";
import { GDispatcher } from "../Main";
import { G_EVENT } from "../const/GEVENT";
import { activityId, sendTbNet, TbNetName } from "../TaoBaoNet";
import Sprite = FYGE.Sprite;
import Tween = FYGE.Tween; import Tween = FYGE.Tween;
import Container = FYGE.Container; import Container = FYGE.Container;
import IScrollListItem = FYGE.IScrollListItem; import IScrollListItem = FYGE.IScrollListItem;
...@@ -11,8 +16,7 @@ import Graphics = FYGE.Graphics; ...@@ -11,8 +16,7 @@ import Graphics = FYGE.Graphics;
import TextField = FYGE.TextField; import TextField = FYGE.TextField;
import Ease = FYGE.Ease; import Ease = FYGE.Ease;
import MouseEvent = FYGE.MouseEvent; import MouseEvent = FYGE.MouseEvent;
import PanelCtrl from "../../module/ctrls/panelCtrl"; import { s_PlantData } from "../const/staticData";
import { ExchangePanel } from "./ExchangePanel";
export default class ShopPanel extends Panel { export default class ShopPanel extends Panel {
get groupNames() { get groupNames() {
...@@ -34,39 +38,6 @@ export default class ShopPanel extends Panel { ...@@ -34,39 +38,6 @@ export default class ShopPanel extends Panel {
this.scroll = this.addChild(new ScrollList(ShopItem, 635, 227, 635, 830)); this.scroll = this.addChild(new ScrollList(ShopItem, 635, 227, 635, 830));
this.scroll.position.set((this.width - this.scroll.width) / 2, 210); this.scroll.position.set((this.width - this.scroll.width) / 2, 210);
this.scroll.updateData([
{
prizeName: '恰恰免单',
prizeImg: 'https://source.unsplash.com/user/erondu/116x116',
count: 0,
},
{
prizeName: '恰恰-50元加价卷',
prizeImg: 'https://source.unsplash.com/user/erondu/116x116',
count: 1000,
},
{
prizeName: '恰恰-100元加价卷',
prizeImg: 'https://source.unsplash.com/user/erondu/116x116',
count: 10000,
},
{
prizeName: '恰恰-1折卷',
prizeImg: 'https://source.unsplash.com/user/erondu/116x116',
count: 10000,
},
{
prizeName: '恰恰-5折卷',
prizeImg: 'https://source.unsplash.com/user/erondu/116x116',
count: 5000,
},
{
prizeName: '恰恰-9折卷',
prizeImg: 'https://source.unsplash.com/user/erondu/116x116',
count: 1000,
},
]);
} }
public showAni() { public showAni() {
...@@ -94,14 +65,29 @@ export default class ShopPanel extends Panel { ...@@ -94,14 +65,29 @@ export default class ShopPanel extends Panel {
start(data) { start(data) {
super.start(); super.start();
GDispatcher.dispatchEvent(G_EVENT.GET_SHOPLIST);
}
shopList() {
sendTbNet(TbNetName.shopList, {
activityId: activityId
}, (success, res) => {
if (!success) return;
this.scroll.updateData(res.data);
});
} }
initEvents() { initEvents() {
this.closeBtn.addEventListener(FYGE.MouseEvent.CLICK, this.hidePanel, this) super.initEvents();
this.closeBtn.addEventListener(FYGE.MouseEvent.CLICK, this.hidePanel, this);
GDispatcher.addEventListener(G_EVENT.GET_SHOPLIST, this.shopList, this);
} }
removeEvents() { removeEvents() {
this.closeBtn.removeEventListener(FYGE.MouseEvent.CLICK, this.hidePanel, this) super.removeEvents();
this.closeBtn.removeEventListener(FYGE.MouseEvent.CLICK, this.hidePanel, this);
GDispatcher.removeEventListener(G_EVENT.GET_SHOPLIST, this.shopList, this);
} }
} }
...@@ -120,16 +106,62 @@ class ShopItem extends Container implements IScrollListItem { ...@@ -120,16 +106,62 @@ class ShopItem extends Container implements IScrollListItem {
if (!data) return; if (!data) return;
this.data = data; this.data = data;
this.itemName.text = data.prizeName;
this.itemImg.texture = Texture.fromUrl(data.prizeImg); this.itemName.text = data.name;
this.itemNum.text = (data.count <= 0) ? '来晚一步,抢光了' : `剩余${data.count}份`; this.itemImg.texture = Texture.fromUrl(data.image);
this.itemNum.position.set((this.width - this.itemNum.textWidth) / 2, 176);
this.itemMask.visible = (data.count <= 0); if (data.isLimitStock) {
this.itemNum.text = (data.restStock <= 0) ? '来晚一步,抢光了' : `剩余${data.restStock}份`;
this.itemNum.position.set((this.width - this.itemNum.textWidth) / 2, 176);
} else {
this.itemNum.text = '';
}
this.itemMask.visible = (data.isLimitStock && data.restStock <= 0);
this.removeAllEventListener(); this.removeAllEventListener();
(data.count > 0) && this.addEventListener(MouseEvent.CLICK, () => { (!data.isLimitStock || (data.isLimitStock && data.restStock > 0)) && this.addEventListener(MouseEvent.CLICK, () => {
PanelCtrl.instance.show(ExchangePanel, this.data); PanelCtrl.instance.show(ExchangePanel, this.data);
}); });
this.setExchangeInfo();
}
private setExchangeInfo() {
// {
// "name": "核桃",
// "storage": 0,
// "type": "PECAN",
// "value": 10
// }
// @ts-ignore
const exchangeInfo = this.data.exchangeInfo;
let exchangeInfoRoot = new Container();
exchangeInfo.forEach((v, index) => {
let n = exchangeInfoRoot.addChild(new Container())
let img = n.addChild(Tool.getSprite(`种植框_${s_PlantData[v.type].name}.png`));
let textNode = n.addChild(new Container());
let leftText = textNode.addChild(Tool.getText(`${v.storage}`, 22, v.storage >= v.value ? '#8b572b' : '#ff0000'));
textNode.addChild(Tool.getText(`/${v.value}`, 22, '#8b572b'))
.position.set(leftText.x + leftText.textWidth, leftText.y);
if (textNode.width > img.width) {
img.x = (textNode.width - img.width);
} else {
textNode.x = (img.width - textNode.width) / 2;
}
textNode.y = 60;
n.position.set(75 * index, 0);
if (index >= exchangeInfo.length - 1) return;
exchangeInfoRoot.addChild(Tool.getText('+', 26, '#8b572b'))
.position.set(n.x + 55, 10);
});
this.addChild(exchangeInfoRoot);
exchangeInfoRoot.position.set(180, 60);
} }
constructor() { constructor() {
...@@ -138,6 +170,8 @@ class ShopItem extends Container implements IScrollListItem { ...@@ -138,6 +170,8 @@ class ShopItem extends Container implements IScrollListItem {
this.itemImg = this.addChild(new Sprite()); this.itemImg = this.addChild(new Sprite());
this.itemImg.position.set(35, 26); this.itemImg.position.set(35, 26);
this.itemImg.width = 116;
this.itemImg.height = 116;
const mask = this.addChild(new Graphics()); const mask = this.addChild(new Graphics());
mask.drawCircle(92, 83, 58); mask.drawCircle(92, 83, 58);
......
...@@ -7,6 +7,8 @@ import { activityId, sendTbNet, TbNetName } from "../TaoBaoNet"; ...@@ -7,6 +7,8 @@ import { activityId, sendTbNet, TbNetName } from "../TaoBaoNet";
import Sprite = FYGE.Sprite; import Sprite = FYGE.Sprite;
import Tween = FYGE.Tween; import Tween = FYGE.Tween;
import Ease = FYGE.Ease; import Ease = FYGE.Ease;
import { GDispatcher } from "../Main";
import { G_EVENT } from "../const/GEVENT";
export default class WareHousePanel extends Panel { export default class WareHousePanel extends Panel {
get groupNames() { get groupNames() {
...@@ -38,21 +40,16 @@ export default class WareHousePanel extends Panel { ...@@ -38,21 +40,16 @@ export default class WareHousePanel extends Panel {
[354, 736], [354, 736],
]; ];
sendTbNet(TbNetName.wareHouse, { let i = 0;
activityId: activityId for (let k in s_PlantData) {
}, (success, res) => { this.items[k] = scroll.view.addChild(new WareHouseItem(k));
let ds = res.data.storages; this.items[k].position.set(pos[i][0], pos[i][1]);
let i = 0; i++;
for (let k in s_PlantData) { }
this.items[k] = scroll.view.addChild(new WareHouseItem(k));
this.items[k].count = ds[k];
this.items[k].position.set(pos[i][0], pos[i][1]);
i++;
}
});
} }
public showAni() {
showAni() {
if (this.isShowing) return; if (this.isShowing) return;
this.isShowing = true; this.isShowing = true;
this.y = 1624 - layers.stageOffsetY + 100; this.y = 1624 - layers.stageOffsetY + 100;
...@@ -64,12 +61,23 @@ export default class WareHousePanel extends Panel { ...@@ -64,12 +61,23 @@ export default class WareHousePanel extends Panel {
}); });
} }
public hideAni() { public getWareHouse() {
sendTbNet(TbNetName.wareHouse, {
activityId: activityId
}, (success, res) => {
let ds = res.data.storages;
for (let k in s_PlantData) {
this.items[k].count = ds[k];
}
});
}
hideAni() {
return Tween.get(this) return Tween.get(this)
.to({y: 1624 - layers.stageOffsetY + 100}, 500, Ease.quartOut); .to({y: 1624 - layers.stageOffsetY + 100}, 500, Ease.quartOut);
} }
public hidePanel() { hidePanel() {
this.hideAni().call(() => { this.hideAni().call(() => {
super.hidePanel(); super.hidePanel();
}); });
...@@ -77,19 +85,23 @@ export default class WareHousePanel extends Panel { ...@@ -77,19 +85,23 @@ export default class WareHousePanel extends Panel {
start(data) { start(data) {
super.start(); super.start();
GDispatcher.dispatchEvent(G_EVENT.GET_WAREHOUSE);
} }
initEvents() { initEvents() {
this.closeBtn.addEventListener(FYGE.MouseEvent.CLICK, this.hidePanel, this) this.closeBtn.addEventListener(FYGE.MouseEvent.CLICK, this.hidePanel, this);
GDispatcher.addEventListener(G_EVENT.GET_WAREHOUSE, this.getWareHouse, this);
} }
removeEvents() { removeEvents() {
this.closeBtn.removeEventListener(FYGE.MouseEvent.CLICK, this.hidePanel, this) this.closeBtn.removeEventListener(FYGE.MouseEvent.CLICK, this.hidePanel, this);
GDispatcher.removeEventListener(G_EVENT.GET_WAREHOUSE, this.getWareHouse, this);
} }
} }
class WareHouseItem extends Container { class WareHouseItem
extends Container {
private countLabel: TextField; private countLabel: TextField;
private _count: number = 0; private _count: number = 0;
......
...@@ -27,9 +27,6 @@ export class UILayer extends Container { ...@@ -27,9 +27,6 @@ export class UILayer extends Container {
private wareHouseBtn: Sprite; // 仓库按钮 private wareHouseBtn: Sprite; // 仓库按钮
private storeBtn: Sprite; // 商店按钮 private storeBtn: Sprite; // 商店按钮
// 广告按钮
private adBtn: Sprite; // 广告按钮
constructor() { constructor() {
super(); super();
...@@ -45,13 +42,13 @@ export class UILayer extends Container { ...@@ -45,13 +42,13 @@ export class UILayer extends Container {
} }
public initEvents() { public initEvents() {
[this.ruleBtn, this.taskBtn, this.wareHouseBtn, this.storeBtn, this.adBtn].forEach((v) => { [this.ruleBtn, this.taskBtn, this.wareHouseBtn, this.storeBtn].forEach((v) => {
v.addEventListener(MouseEvent.CLICK, this.touchBtn, this); v.addEventListener(MouseEvent.CLICK, this.touchBtn, this);
}); });
} }
public removeEvents() { public removeEvents() {
[this.ruleBtn, this.taskBtn, this.wareHouseBtn, this.storeBtn, this.adBtn].forEach((v) => { [this.ruleBtn, this.taskBtn, this.wareHouseBtn, this.storeBtn].forEach((v) => {
v.removeEventListener(MouseEvent.CLICK, this.touchBtn, this); v.removeEventListener(MouseEvent.CLICK, this.touchBtn, this);
}); });
} }
...@@ -80,9 +77,6 @@ export class UILayer extends Container { ...@@ -80,9 +77,6 @@ export class UILayer extends Container {
PanelCtrl.instance.show(RulePanel); PanelCtrl.instance.show(RulePanel);
// PanelCtrl.instance.show(ExRecordPanel); // PanelCtrl.instance.show(ExRecordPanel);
break; break;
case this.adBtn:
console.log('点击了广告');
break;
} }
} }
...@@ -121,11 +115,6 @@ export class UILayer extends Container { ...@@ -121,11 +115,6 @@ export class UILayer extends Container {
this.ruleBtn.name = '规则'; this.ruleBtn.name = '规则';
topGroup.y = getAdjustTopHeight(topGroup, 117 / 1624); topGroup.y = getAdjustTopHeight(topGroup, 117 / 1624);
// 广告按钮
this.adBtn = this.addChild(Tool.getSprite('广告.png'));
this.adBtn.position.set(30, (1624 - this.adBtn.height) / 2);
this.adBtn.name = '广告';
} }
} }
...@@ -4,9 +4,8 @@ import GameLayer from "../parts/Game/GameLayer"; ...@@ -4,9 +4,8 @@ import GameLayer from "../parts/Game/GameLayer";
import { UILayer } from "../parts/UI/UILayer"; import { UILayer } from "../parts/UI/UILayer";
import { Land } from "../parts/Game/Land"; import { Land } from "../parts/Game/Land";
import MouseEvent = FYGE.MouseEvent; import MouseEvent = FYGE.MouseEvent;
import FrameAni = FYGE.FrameAni;
import { RES } from "../../module/RES";
import { gameResource } from "../const/staticData"; import { gameResource } from "../const/staticData";
import Sprite = FYGE.Sprite;
export class GameScene extends Scene { export class GameScene extends Scene {
...@@ -20,6 +19,9 @@ export class GameScene extends Scene { ...@@ -20,6 +19,9 @@ export class GameScene extends Scene {
// UI层 // UI层
private uiLayer: UILayer; private uiLayer: UILayer;
// 广告按钮
private adBtn: Sprite; // 广告按钮
initUi() { initUi() {
// 背景图 // 背景图
this.addChild(Tool.getSprite('game_bg.jpg')) this.addChild(Tool.getSprite('game_bg.jpg'))
...@@ -36,6 +38,12 @@ export class GameScene extends Scene { ...@@ -36,6 +38,12 @@ export class GameScene extends Scene {
// 游戏层 // 游戏层
this.gameLayer = this.addChild(GameLayer.ins); this.gameLayer = this.addChild(GameLayer.ins);
// 广告按钮
this.adBtn = this.addChild(Tool.getSprite('广告.png'));
this.adBtn.position.set(30, (1624 - this.adBtn.height) / 2);
this.adBtn.name = '广告';
} }
start() { start() {
...@@ -43,12 +51,18 @@ export class GameScene extends Scene { ...@@ -43,12 +51,18 @@ export class GameScene extends Scene {
} }
private ad(){
console.log('点击了广告');
}
initEvents() { initEvents() {
super.initEvents(); super.initEvents();
this.gameLayer.initEvent(); this.gameLayer.initEvent();
this.uiLayer.initEvents(); this.uiLayer.initEvents();
this.adBtn.addEventListener(MouseEvent.CLICK, this.ad, this);
} }
removeEvents() { removeEvents() {
...@@ -56,6 +70,8 @@ export class GameScene extends Scene { ...@@ -56,6 +70,8 @@ export class GameScene extends Scene {
this.gameLayer.removeEvent(); this.gameLayer.removeEvent();
this.uiLayer.removeEvents(); this.uiLayer.removeEvents();
this.adBtn.removeEventListener(MouseEvent.CLICK, this.ad, this);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment