Commit 66a90b69 by Matt

show touch area of catcher

parent c04468c7
...@@ -4,6 +4,7 @@ const gridsInX = 14 ...@@ -4,6 +4,7 @@ const gridsInX = 14
const gridsInY = 10 const gridsInY = 10
class Map extends egret.Sprite { class Map extends egret.Sprite {
private grids:any = [] private grids:any = []
private touchArea: egret.Bitmap
public constructor() { public constructor() {
super(); super();
this.init() this.init()
...@@ -11,7 +12,6 @@ class Map extends egret.Sprite { ...@@ -11,7 +12,6 @@ class Map extends egret.Sprite {
// 初始化(给开始按钮绑定点击事件) // 初始化(给开始按钮绑定点击事件)
private init() { private init() {
console.log('Map.init')
for (let i = 0; i < gridsInY; i++) { for (let i = 0; i < gridsInY; i++) {
this.grids.push([]) this.grids.push([])
for (let j = 0; j < gridsInX; j++) { for (let j = 0; j < gridsInX; j++) {
...@@ -22,21 +22,44 @@ class Map extends egret.Sprite { ...@@ -22,21 +22,44 @@ class Map extends egret.Sprite {
this.addChild(grid) this.addChild(grid)
} }
} }
if (Store.isCatcher()) {
const mask = new egret.Shape() this.touchArea = new egret.Bitmap()
mask.x = 100 this.touchArea.texture = RES.getRes('mask_jpg')
mask.y = 100 this.touchArea.alpha = 0
mask.graphics.lineStyle( 10, 0x00ff00 ); this.addChild(this.touchArea)
mask.graphics.beginFill( 0xff0000, 1); }
mask.graphics.drawCircle( 0, 0, 50 );
mask.graphics.endFill(); public getSurroundedGrids(x, y) {
mask.touchEnabled = false const left = Math.max(x / gridWidth - 2)
this.mask = mask const top = Math.max(y / gridHeight - 2)
const grids = []
for (let i = left; i < 5 + left; i++) {
for (let j = top; j < 5 + top; j++) {
if (i >= 0 && j >= 0 && i < gridsInX && j < gridsInY) {
grids.push(this.grids[j][i])
}
} }
// put display object to this scene }
return grids
}
public showSurroundedGrids(x, y) {
const surroundedGrids = this.getSurroundedGrids(x, y)
surroundedGrids.forEach(grid => {
grid.alpha = 1
})
this.touchArea.alpha = 1
this.touchArea.x = x - 2 * gridWidth
this.touchArea.y = y - 2 * gridHeight
setTimeout(() => {
surroundedGrids.forEach(grid => {
grid.alpha = 0
})
this.touchArea.alpha = 0
}, 1000);
} }
public release() { public release() {
// 移除事件
} }
} }
\ No newline at end of file
...@@ -6,25 +6,22 @@ class MapGrid extends egret.Sprite { ...@@ -6,25 +6,22 @@ class MapGrid extends egret.Sprite {
this.init() this.init()
} }
// 初始化(给开始按钮绑定点击事件)
private init() { private init() {
console.log('Map.init')
this.bg.texture = RES.getRes('grid_jpg') this.bg.texture = RES.getRes('grid_jpg')
this.addChild(this.bg) this.addChild(this.bg)
this.bg.touchEnabled = true this.touchEnabled = true
this.bg.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchTap, this) if (Store.isCatcher()) {
this.alpha = 0
this.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchTap, this)
}
} }
private onTouchTap() { private onTouchTap() {
console.log(this, this.parent)
if (Store.isCatcher()) { if (Store.isCatcher()) {
console.log(this, this.parent) this.parent.showSurroundedGrids(this.x, this.y)
// const map = SceneManager.getInstance().gameScene.map
} }
} }
public release() { public release() {
// 移除事件
} }
} }
\ No newline at end of file
...@@ -15,7 +15,7 @@ class SceneManager extends egret.DisplayObjectContainer { ...@@ -15,7 +15,7 @@ class SceneManager extends egret.DisplayObjectContainer {
this.roomScene = new RoomScene(); this.roomScene = new RoomScene();
this.gameScene = new GameScene(); this.gameScene = new GameScene();
// 默认添加开始场景 // 默认添加开始场景
this.addChild(this.roomScene); this.addChild(this.gameScene);
} }
// 实例化单例获取方法 // 实例化单例获取方法
public static getInstance(): SceneManager { public static getInstance(): SceneManager {
......
...@@ -31,6 +31,6 @@ class Store { ...@@ -31,6 +31,6 @@ class Store {
static isCatcher() { static isCatcher() {
return true return true
return _state.role === 'ghost' // return _state.role === 'ghost'
} }
} }
\ No newline at end of file
...@@ -26,7 +26,7 @@ class GameScene extends egret.Sprite { ...@@ -26,7 +26,7 @@ class GameScene extends egret.Sprite {
this.map.y = 15 this.map.y = 15
this.me.y = 15 this.me.y = 15
this.addChild(this.map) this.addChild(this.map)
this.addChild(this.me) this.map.addChild(this.me)
} }
private onPositionChange(delta){ private onPositionChange(delta){
......
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