2

我在游戏中有一个实体,它有一个更新方法,它需要定位最近的僵尸,目前僵尸列表只是我访问的一个全局对象,但这似乎是错误的,我可以将列表传递给更新方法,但我'不确定这是否是最好的方法?

这是我的更新方法的简化版本:

this.update = function () {
                var targetedZombie = null;
                //TODO: should not be using the zombies object - tight coupling should be removed
                var alivezombies = [];
                for (var zombie in zombies) {
                    if (zombies[zombie].Alive) {
                        alivezombies.push(zombies[zombie]);
                    }
                }

                targetedZombie = this.GetClosestEntity(alivezombies);
                if (targetedZombie) {
                    Fire(this, targetedZombie);
                }
});
4

2 回答 2

1

使用闭包 //初始化你的 api

    (function(global) {
      var zombies = []; // accessible only to you

      function zombieManager() { 
         this.addZombie = function() {  zombies.push() }
         this.killHalfZombies = function() { 
                  zombies = zombies.filter(function(item,i) { return i % 2 == 0});
         }
      }
      global.zombieManager = new zombieManager();

      function hero() {

      };

      hero.prototype.update = function() {
        //dig zombies[]
        //do whatever state change
      };
      global.hero = hero;
    })(window); //<-- you pass in whatever rootlevel object we have. window in a browser.

//use api
    var myhero = new hero();
    hero.update() //<-- this can access zombies

    zombieManager.addZombie(); //<-- zombieManager is a singleton and is responsible for zombification
于 2012-04-23T20:32:26.547 回答
1

一些让您入门的游戏架构的好资源是“学习游戏架构的好资源”?在游戏开发上。一般来说,一个好的做法是将游戏的组件分解为单个概念。在这个简单的场景中,我会将僵尸列表作为 Game 类的一个组件,并在其上有一个 FindClosest(PositionOfHero) 方法。该窗口将仅启动正确的对象图,而不是将图之间的链接保持为全局数组。

于 2012-04-23T20:40:08.563 回答