欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

html5怎么實現(xiàn)神經(jīng)貓游戲

本文小編為大家詳細介紹“html5怎么實現(xiàn)神經(jīng)貓游戲”,內(nèi)容詳細,步驟清晰,細節(jié)處理妥當,希望這篇“html5怎么實現(xiàn)神經(jīng)貓游戲”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

創(chuàng)新互聯(lián)建站是由多位在大型網(wǎng)絡公司、廣告設計公司的優(yōu)秀設計人員和策劃人員組成的一個具有豐富經(jīng)驗的團隊,其中包括網(wǎng)站策劃、網(wǎng)頁美工、網(wǎng)站程序員、網(wǎng)頁設計師、平面廣告設計師、網(wǎng)絡營銷人員及形象策劃。承接:網(wǎng)站設計制作、成都網(wǎng)站設計、網(wǎng)站改版、網(wǎng)頁設計制作、網(wǎng)站建設與維護、網(wǎng)絡推廣、數(shù)據(jù)庫開發(fā),以高性價比制作企業(yè)網(wǎng)站、行業(yè)門戶平臺等全方位的服務。

游戲設計思路

從貓當前的位置找六個方向中可通行的鄰居,然后從這些鄰居出發(fā),再找它們各自的可通行鄰居,一直這樣找下去,一邊找的過程中,一邊判斷當前已經(jīng)找到的鄰居中有沒有處在游戲區(qū)邊緣的,如果有,那么尋找過程提前結(jié)束,判斷結(jié)果是:貓沒有被圍住。如果直到所有的可通行鄰居都找到了,里面都沒有處在游戲區(qū)邊緣的,那么判斷結(jié)果是:貓被圍住了。

參考代碼

cat.html

app.js

var stage = new createjs.Stage("gameView");

createjs.Ticker.setFPS(30);

createjs.Ticker.addEventListener("tick",stage);

var gameView = new createjs.Container();

gameView.x = 30;

gameView.y = 30;

stage.addChild(gameView);

var circleArr = [[],[],[],[],[],[],[],[],[]];

var currentCat;

//定義7種狀態(tài) 表示 移動位置

var MOVE_NONE = -1,MOVE_LEFT = 0,MOVE_UP_LEFT = 1,MOVE_UP_RIGHT = 2,MOVE_RIGHT = 3,MOVE_DOWN_RIGHT = 4,MOVE_DOWN_LEFT = 5;

function getMoveDir(cat){

//分別判斷能走的位置

var distanceMap = [];

//left

var can = true;

for (var x = cat.indexX;x>=0;x--) {

if(circleArr[x][cat.indexY].getCircleType() == Circle.TYPE_SELECTED){

can = false;

distanceMap[MOVE_LEFT] = cat.indexX - x;

break;

}

}

if(can){

return MOVE_LEFT;

}

//left up

can =true;

var x = cat.indexX , y = cat.indexY;

while(true){

if(circleArr[x][y].getCircleType() == Circle.TYPE_SELECTED){

can = false;

distanceMap[MOVE_UP_LEFT] = can.indexY-y;

break;

}

if(y%2 == 0){

x--;

}

y--;

if(y<0 ||x<0){

break;

}

}

if(can){

return MOVE_UP_LEFT;

}

//right up

can =true;

var x = cat.indexX , y = cat.indexY;

while(true){

if(circleArr[x][y].getCircleType() == Circle.TYPE_SELECTED){

can = false;

distanceMap[MOVE_UP_RIGHT] = can.indexY-y;

break;

}

if(y%2 == 1){

x++;

}

y--;

if(y <0||x>8){

break;

}

}

if(can){

return MOVE_UP_RIGHT;

}

//right

can =true;

for (var x= cat.indexX;x<9;x++) {

if(circleArr[x][cat.indexY].getCircleType() == Circle.TYPE_SELECTED){

can =false;

distanceMap[MOVE_RIGHT] = x -cat.indexX;

break;

}

}

if(can){

return MOVE_RIGHT;

}

//ritht down

can = true;

x= cat.indexX,y = cat.indexY;

while(true){

if(circleArr[x][y].getCircleType() == Circle.TYPE_SELECTED){

can =false;

distanceMap[MOVE_DOWN_RIGHT] = y -cat.indexY;

break;

}

if(y%2 == 1){

x++;

}

y++;

if(y>8 ||x>8){

break;

}

}

if(can){

return MOVE_DOWN_RIGHT;

}

//left down

can = true;

x= cat.indexX,y = cat.indexY;

while(true){

if(circleArr[x][y].getCircleType() == Circle.TYPE_SELECTED){

can = false;

distanceMap[MOVE_DOWN_LEFT] = y -cat.index;

break;

}

if(y%2 == 0){

x--;

}

y++;

if(y>8 || x<0){

break;

}

}

if(can){

return MOVE_DOWN_LEFT;

}

var maxDir = -1,maxValue = -1;

for (var dir = 0;dir

if(distanceMap[dir]>maxValue){

maxValue = distanceMap[dir];

maxDir = dir;

}

}

if(maxValue > 1){

return maxDir;

}else{

return MOVE_NONE;

}

}

function circleClicked(event){

if(event.target.getCircleType() != Circle.TYPE_CAT){

event.target.setCircleType(Circle.TYPE_SELECTED);

}else{

return;

}

//表示碰到邊緣 游戲結(jié)束

if(currentCat.indexX == 0 ||currentCat.indexX == 8 ||currentCat.indexY==0 ||currentCat.indexY==8){

alert("游戲結(jié)束");

return;

}

var dir = getMoveDir(currentCat);

switch (dir){

//判斷他要走那一個方向

case MOVE_LEFT:

currentCat.setCircleType(Circle.TYPE_UNSELECTED);

currentCat = circleArr[currentCat.indexX - 1][currentCat.indexY];

currentCat.setCircleType(Circle.TYPE_CAT)

break;

case MOVE_UP_LEFT:

currentCat.setCircleType(Circle.TYPE_UNSELECTED);

currentCat = circleArr[currentCat.indexY%2?currentCat.indexX:currentCat.indexX- 1][currentCat.indexY-1];

currentCat.setCircleType(Circle.TYPE_CAT)

break;

case MOVE_UP_RIGHT:

currentCat.setCircleType(Circle.TYPE_UNSELECTED);

currentCat = circleArr[currentCat.indexY%2?currentCat.indexX+1:currentCat.indexX][currentCat.indexY-1];

currentCat.setCircleType(Circle.TYPE_CAT)

break;

case MOVE_RIGHT:

currentCat.setCircleType(Circle.TYPE_UNSELECTED);

currentCat = circleArr[currentCat.indexX+1][currentCat.indexY];

currentCat.setCircleType(Circle.TYPE_CAT)

break;

case MOVE_DOWN_RIGHT:

currentCat.setCircleType(Circle.TYPE_UNSELECTED);

currentCat = circleArr[currentCat.indexY%2?currentCat.indexX+1:currentCat.indexX][currentCat.indexY+1];

currentCat.setCircleType(Circle.TYPE_CAT)

break;

case MOVE_DOWN_LEFT:

currentCat.setCircleType(Circle.TYPE_UNSELECTED);

currentCat = circleArr[currentCat.indexY%2?currentCat.indexX:currentCat.indexX-1][currentCat.indexY+1];

currentCat.setCircleType(Circle.TYPE_CAT)

break;

//沒有方向走 游戲結(jié)束

default:

alert("游戲結(jié)束");

}

}

function addCircles(){

//生成游戲背景

for (var indexY = 0; indexY <9;indexY++ ) {

for (var indexX = 0;indexX<9;indexX++) {

var c = new Circle();

gameView.addChild(c);

circleArr[indexX][indexY] = c;

c.indexX = indexX;

c.indexY = indexY;

//因為Y軸是 一前一后 所有判斷一下 Y%2

c.x = indexY%2?indexX*55+25:indexX*55;

c.y = indexY * 55;

if(indexX == 4 && indexY == 4){

//中間出現(xiàn)一只貓

c.setCircleType(3);

currentCat = c;

}else if(Math.random() <0.1){

//讓頁面上隨機出現(xiàn) 不能走的方框 方便圍這只貓

c.setCircleType(Circle.TYPE_SELECTED);

}

//添加事件

c.addEventListener("click",circleClicked);

}

}

}

addCircles();

Circle.js

function Circle(){

createjs.Shape.call(this);

this.setCircleType = function(type){

this._circleType = type;

switch (type){

//沒有點擊過的顏色

case Circle.TYPE_UNSELECTED:

this.setColor("#cccccc");

break;

//點擊過的顏色

case Circle.TYPE_SELECTED:

this.setColor("#ff6600");

break;

//貓的顏色

case Circle.TYPE_CAT:

this.setColor("#0000ff");

break;

}

}

this.setColor = function(colorString){

this.graphics.beginFill(colorString);

this.graphics.drawCircle(0,0,25);

this.graphics.endFill();

}

this.getCircleType = function(){

return this._circleType;

}

this.setCircleType(1);

}

Circle.prototype = new createjs.Shape();

//三種狀態(tài) 表示 一個為點擊之后的 一個點擊之前 一個是貓

Circle.TYPE_UNSELECTED = 1;

Circle.TYPE_SELECTED = 2;

Circle.TYPE_CAT = 3;

讀到這里,這篇“html5怎么實現(xiàn)神經(jīng)貓游戲”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

網(wǎng)站題目:html5怎么實現(xiàn)神經(jīng)貓游戲
轉(zhuǎn)載注明:http://aaarwkj.com/article34/pegjse.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供定制開發(fā)網(wǎng)站導航、做網(wǎng)站云服務器、、關(guān)鍵詞優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

小程序開發(fā)
精品人妻一区二区三区观看| 国产网红女主播视频一区二区| 大香蕉欧美日韩在线视频| 亚洲欧美精品专区久久| 亚洲中文无码亚洲人vr在线| av国产剧情在线观看| 国产一区 亚洲精品| 禁止18黄色免费网站| 亚洲欧美日韩另类自拍| 男人午夜福利视频在线观看| 国产一区av剧情巨作| 高质量的性生活在线观看| 免费可以看的黄片欧美| 国产成人久久久精品一区| 九九在线视频免费观看精彩| 欧美香蕉高清视频免费| 国产国产成人精品久久| 亚洲欧美午夜激情啪啪视频| 成人在线免费观看视频国产| 成年人性生活一级视品| 日韩福利小视频在线| 青青草原在线免费视频| 亚洲欧美另类不卡专区| 国产激情久久久久久影院| 一区二区三区艳情播放| 黑人一区二区三区在线| 亚洲国产欲色有一二欲色| 欧美日本午夜福利在线观看| 深夜毛片一区二区三区| 亚洲人成免费在线观看| 成人av久久一区二区三区| 日本精品视频免费网| 国产三级网站在线观看播放| 日本欧美三级一二三区| 国产情侣自拍在线观看| 亚洲女同成人在线观看| 日本激情诱惑免费在线播放 | 啄木乌法国一区二区三区| 日韩丰满少妇在线观看| 亚洲精品视频一区二区| 精品一区二区日本高清|