android機(jī)頂盒游戲開發(fā)(一)

目標(biāo):鍵盤導(dǎo)航

機(jī)頂盒游戲與手機(jī)運(yùn)行最大的區(qū)別是輸入方式不同,手機(jī)主要是觸摸輸入,機(jī)頂盒是遙控器和游戲手柄輸入(等價(jià)于鍵盤輸入)

游戲鍵盤導(dǎo)航主要處理上辞色、下、左浮定、右相满、回車操作层亿。
tip:模擬器調(diào)試請(qǐng)開啟軟鍵盤,以保證鍵盤事件的正確模擬立美。

"use strict";
define(function(require, exports, module) {
    var gameUtils = {};

    gameUtils.getByteLen = function(val) {
        var len = 0;
        for(var i = 0; i < val.length; i++) {
            var a = val.charAt(i);
            if(a.match(/[^\x00-\xff]/ig) != null) {
                len += 2;
            } else {
                len += 1;
            }
        }
        return len;
    }

    gameUtils.cutStr = function(str, len) {
        var res = "";
        var realLength = 0;
        for(var i = 0; i < str.length; i++) {
            var charCode = str.charCodeAt(i);
            if(charCode >= 0 && charCode <= 128) realLength += 1;
            else realLength += 2;
            if(realLength <= len) {
                res += str[i];
            } else {
                break;
            }
        }
        return res;
    }

    gameUtils.KeyNavigator = function(dimRow, dimCol) {
        if(!dimRow || !dimCol)
            return null;
        this.subNavs = [];
        this.currentSub = null;
        this.dimRow = dimRow;
        this.dimCol = dimCol;
        this.data = new Array();
        this.currentRow = -1;
        this.currentCol = -1;
        for(var i = 0; i < dimRow; i++) {
            this.data[i] = new Array();
        }
    };

    function SelButton(btn, onSel, onUnsel) {
        this.btn = btn;
        this.onSel = onSel;
        this.onUnsel = onUnsel;
    }

    gameUtils.KeyNavigator.prototype = {
        addSubNav: function(name, subNav) {
            if(subNav)
                this.subNavs[name] = subNav;
        },
        doSubNav: function(name) {
            this.hideCurrent();
            this.currentSub = this.subNavs[name];
        },
        endSubNav: function() {
            this.showCurrent();
            this.currentSub = null;
        },
        addButton: function(row, col, btn, onSel, onUnsel, beCurrent) {
            if(row < this.dimRow && col < this.dimCol) {
                this.data[row][col] = new SelButton(btn, onSel, onUnsel);
                if(beCurrent) {
                    this.setCurrent(row, col);
                }
                return true;
            } else {
                return false;
            }
        },
        showCurrent: function() {
            if(this.data[this.currentRow][this.currentCol]) {
                if(this.data[this.currentRow][this.currentCol].onSel)
                    this.data[this.currentRow][this.currentCol].onSel();
            }
        },
        hideCurrent: function() {
            if(this.data[this.currentRow][this.currentCol]) {
                if(this.data[this.currentRow][this.currentCol].onUnsel)
                    this.data[this.currentRow][this.currentCol].onUnsel();
            }

        },
        setCurrent: function(row, col) {
            try {
                if(this.data[row][col]) {
                    if(this.currentRow >= 0 && this.currentCol >= 0 && this.data[this.currentRow][this.currentCol]) {
                        if(this.data[this.currentRow][this.currentCol].onUnsel)
                            this.data[this.currentRow][this.currentCol].onUnsel();

                    }
                    this.currentRow = row;
                    this.currentCol = col;
                    if(this.data[this.currentRow][this.currentCol]) {
                        if(this.data[this.currentRow][this.currentCol].onSel)
                            this.data[this.currentRow][this.currentCol].onSel();
                    }
                    //console.log('current = ' + this.currentRow + " " + this.currentCol)
                    return true;
                } else {
                    return false;
                }
            } catch(err) {
                console.log('utils.KeyNavigator.setCurrent error!');
                throw err;
                return false;
            }
        },
        perform: function(cmd) {
            switch(cmd) {
                case "ENTER":
                    this.data[this.currentRow][this.currentCol].btn.onInputUp.dispatch();
                    break;
            }
        },
        navigate: function(dir) {
            if(this.currentRow < 0 || this.currentCol < 0) {
                return false;
            }
            //console.log('this.currentRow and Col = ' + this.currentRow + " " + this.currentCol)
            switch(dir) {
                case "UP":
                    if(this.currentRow < this.dimRow - 1) {
                        var col = -1;
                        for(var i = this.currentCol; i < this.dimCol; i++) {
                            if(this.data[this.currentRow + 1][i]) {
                                col = i;
                                break;
                            }
                        }
                        if(col < 0) {
                            for(var i = this.currentCol - 1; i >= 0; i--)
                                if(this.data[this.currentRow + 1][i]) {
                                    col = i;
                                    break;
                                }
                        }
                        if(col >= 0) {
                            this.setCurrent(this.currentRow + 1, col);
                        } else {
                            return false;
                        }
                    } else {
                        return false;
                    }
                    break;
                case "DOWN":
                    if(this.currentRow > 0) {
                        var col = -1;
                        for(var i = this.currentCol; i < this.dimCol; i++) {
                            if(this.data[this.currentRow - 1][i]) {
                                col = i;
                                break;
                            }
                        }
                        if(col < 0) {
                            for(var i = this.currentCol - 1; i >= 0; i--)
                                if(this.data[this.currentRow - 1][i]) {
                                    col = i;
                                    break;
                                }
                        }
                        if(col >= 0) {
                            this.setCurrent(this.currentRow - 1, col);
                        } else {
                            return false;
                        }
                    } else {
                        return false;
                    }
                    break;
                case "LEFT":
                    var col = this.currentCol - 1;
                    while(col >= 0 && !this.data[this.currentRow][col])
                        col--;
                    if(col >= 0) {
                        this.setCurrent(this.currentRow, col);
                    } else {
                        return false;
                    }
                    break;
                case "RIGHT":
                    var col = this.currentCol + 1;
                    while(col < this.dimCol && !this.data[this.currentRow][col])
                        col++;
                    if(col < this.dimCol) {
                        this.setCurrent(this.currentRow, col);
                    } else {
                        return false;
                    }
                    break;
                default:
                    return false;
            }

        }

    }
    return gameUtils;
});
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末匿又,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子建蹄,更是在濱河造成了極大的恐慌碌更,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,290評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件洞慎,死亡現(xiàn)場(chǎng)離奇詭異针贬,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)拢蛋,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來蔫巩,“玉大人谆棱,你說我怎么就攤上這事≡沧校” “怎么了垃瞧?”我有些...
    開封第一講書人閱讀 156,872評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)坪郭。 經(jīng)常有香客問我个从,道長(zhǎng),這世上最難降的妖魔是什么歪沃? 我笑而不...
    開封第一講書人閱讀 56,415評(píng)論 1 283
  • 正文 為了忘掉前任嗦锐,我火速辦了婚禮,結(jié)果婚禮上沪曙,老公的妹妹穿的比我還像新娘奕污。我一直安慰自己,他們只是感情好液走,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,453評(píng)論 6 385
  • 文/花漫 我一把揭開白布碳默。 她就那樣靜靜地躺著,像睡著了一般缘眶。 火紅的嫁衣襯著肌膚如雪嘱根。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,784評(píng)論 1 290
  • 那天巷懈,我揣著相機(jī)與錄音该抒,去河邊找鬼。 笑死砸喻,一個(gè)胖子當(dāng)著我的面吹牛柔逼,可吹牛的內(nèi)容都是我干的蒋譬。 我是一名探鬼主播,決...
    沈念sama閱讀 38,927評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼愉适,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼犯助!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起维咸,我...
    開封第一講書人閱讀 37,691評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤剂买,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后癌蓖,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體瞬哼,經(jīng)...
    沈念sama閱讀 44,137評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,472評(píng)論 2 326
  • 正文 我和宋清朗相戀三年租副,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了坐慰。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,622評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡用僧,死狀恐怖结胀,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情责循,我是刑警寧澤糟港,帶...
    沈念sama閱讀 34,289評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站院仿,受9級(jí)特大地震影響秸抚,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜歹垫,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,887評(píng)論 3 312
  • 文/蒙蒙 一剥汤、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧排惨,春花似錦秀姐、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至谴麦,卻和暖如春蠢沿,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背匾效。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來泰國打工舷蟀, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,316評(píng)論 2 360
  • 正文 我出身青樓野宜,卻偏偏與公主長(zhǎng)得像扫步,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子匈子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,490評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容

  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫河胎、插件、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,059評(píng)論 4 62
  • Android跨進(jìn)程通信IPC整體內(nèi)容如下 1虎敦、Android跨進(jìn)程通信IPC之1——Linux基礎(chǔ)2游岳、Andro...
    隔壁老李頭閱讀 9,156評(píng)論 3 23
  • 當(dāng)時(shí)胚迫,耶穌被圣靈引到曠野,受魔鬼的試探唾那。他禁食四十晝夜访锻,后來就餓了。那試探者進(jìn)前來對(duì)他說:"你若是上帝的兒子闹获,叫這...
    Demos顯之閱讀 341評(píng)論 0 1
  • 他娶她的時(shí)候是八抬大轎朗若,繞著廬鎮(zhèn)足足走了一圈,來往居戶無不出門觀望昌罩,與之熟絡(luò)的,都備上賀禮送至他家灾馒,這鎮(zhèn)里流露出了...
    蘇妍118閱讀 528評(píng)論 15 14
  • 鳴竹一夜說跋扈茎用,誰寐兩福約壽祿。薰風(fēng)婉轉(zhuǎn)醉何方睬罗,暖照溫柔眠幾許轨功? 今朝喜樂晴相駐,暮色遷來星點(diǎn)赴容达。玉梅共苑挽人歸古涧,...
    點(diǎn)下閱讀 296評(píng)論 1 5