javascript - 使用 Phaser 在世界中随机放置平台

标签 javascript random phaser-framework

我正在使用 Phaser 制作垂直滚动平台游戏,但我不知道如何创建随机放置的平台来跳跃。这是我到目前为止的代码(删除了不必要的东西):

Platformer.Game = function (game) {
            this._platforms = null;
            this._platform = null;
            this._numberOfPlatforms = 15;
            this._x = this.x;
            this._y = this.y;
        };

        Platformer.Game.prototype = {
            create: function (){
                this.physics.startSystem(Phaser.Physics.ARCADE);
                this.physics.arcade.gravity.y = 200;

                this._platforms = this.add.group();
                Platformer.platform.createPlatform(this);
                Platformer.platform.createPlatform(this);
                Platformer.platform.createPlatform(this);
                Platformer.platform.createPlatform(this);
                Platformer.platform.createPlatform(this);
                Platformer.platform.createPlatform(this);

                game.camera.follow(this._player);

            },

            managePause: function () {
                this.game.paused = true;
                var pausedText = this.add.text(100, 250, "Game paused. Click anywhere to continue.", this._fontStyle);
                this.input.onDown.add(function(){
                    pausedText.destroy();
                    this.game.paused = false;
                }, this);
            },

            update: function () {

            }
        };

        Platformer.platform = {
            createPlatform: function (game) {
                var posX = Math.floor(Math.random() * Platformer.GAME_WIDTH * this._numberOfPlatforms * 70);
                var posY = Math.floor(Math.random() * Platformer.GAME_HEIGHT * this._numberOfPlatforms * 50);
                var platform = game.add.sprite(posX, posY, 'platform');


                game._platforms.add(platform);
                platform.events.onOutOfBounds.add(this.removePlatform, this);
            },

            removePlatform: function (game) {
                this._platform.kill();
            }

        }

我可以让它随机放置它们,但平台游戏的想法应该是你实际上可以跳上它。距离足够但又不太远,所以我猜不是完全随机的。

希望您有一些想法!

最佳答案

这是一个简单的方法,只是一个开始。

这个想法是根据每个平台的位置建立一些基本规则。例如,如果最后一个位于左侧,则将下一个放在右侧的某个位置。

在这些情况下,最小/最大范围也很好:在此示例中,下一个平台始终比上一个平台高出至少 200 像素,并且高出不超过 300 像素。

有一个playable example here on codepen

platforms = game.add.group();
platforms.enableBody = true;
platforms.physicsBodyType = Phaser.Physics.ARCADE;

// start off on the left 220px above the ground
var x = 0, y = height - 220;

// keep adding platforms until close to the top
while(y > 200) {
  var platform = platforms.create(x, y, 'platform');
  platform.body.immovable = true;
  platform.body.allowGravity = false;

  // find center of game canvas
  var center = width / 2;

  if(x > center) {
    // if the last platform was to the right of the 
    // center, put the next one on the left
    x = Math.random() * center;
  }
  else {
    // if it was on the left, put the next one on the right
    x = center + Math.random() * (center - platformWidth);
  }
  // place the next platform at least 200px higher and at most 300px higher 
  y = y - 200 - 100 * Math.random();
}

关于javascript - 使用 Phaser 在世界中随机放置平台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26648207/

相关文章:

Excel VBA 按顺序生成随机数并根据多少个

java - 随机行走程序

java - 使用时从随机中删除数组

javascript - 如何将 Phaser.Game 移动到浏览器的中心?

javascript - 如何从嵌套集合模型中的对象数组生成嵌套对象数组?

javascript - 如何将解析云代码的query.count结果保存在变量中?

html - Canvas 游戏在调整大小时不适合父 div

javascript - 如何在 Phaser.js 中对 Sprite 产生 'Flash' 效果?

javascript - 发送电子邮件时出现 Node.js 404 错误,忽略了我的 res.status

javascript - 如何分析创建 react 应用程序构建大小并减少它?