Стена для обнаружения столкновений Javascript - PullRequest
0 голосов
/ 11 января 2019

Я следовал руководству W3schools по созданию JavaScript-игры на холсте https://www.w3schools.com/graphics/game_obstacles.asp

Я попал на сцену, где они добавляют препятствие. В настоящее время у него есть обнаружение столкновений, которое останавливает игру, когда он падает на стену. Я пытаюсь найти способ рассматривать его как стену, где коробка может ударить, и больше не двигаться в этом направлении и продолжать игру, заставляя стену работать.

Ранее я пытался определить направление удара о стену и остановить движение в этом направлении, но когда я удерживаю клавишу со стрелкой, она проходит через нее.

Вот что у меня так далеко: https://jsfiddle.net/j9cy1mne/1/

<body onload="startGame()">
  <script>
    var myGamePiece;
    var myObstacle;

    var speed = 3;

    function startGame() {
      myGamePiece = new component(30, 30, "red", 10, 120);
      myObstacle = new component(10, 200, "green", 300, 120);
      myGameArea.start();
    }

    var myGameArea = {
      canvas: document.createElement("canvas"),
      start: function() {
        this.canvas.width = 480;
        this.canvas.height = 270;
        this.context = this.canvas.getContext("2d");
        document.body.insertBefore(this.canvas, document.body.childNodes[0]);
        this.interval = setInterval(updateGameArea, 20);
      },
      clear: function() {
        this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
      },
      stop: function() {
        clearInterval(this.interval);
      }
    }

    function component(width, height, color, x, y) {
      this.width = width;
      this.height = height;
      this.speedX = 0;
      this.speedY = 0;
      this.x = x;
      this.y = y;
      this.update = function() {
        ctx = myGameArea.context;
        ctx.fillStyle = color;
        ctx.fillRect(this.x, this.y, this.width, this.height);
      }
      this.crashWith = function(otherobj) {
        var myleft = this.x;
        var myright = this.x + (this.width);
        var mytop = this.y;
        var mybottom = this.y + (this.height);
        var otherleft = otherobj.x;
        var otherright = otherobj.x + (otherobj.width);
        var othertop = otherobj.y;
        var otherbottom = otherobj.y + (otherobj.height);
        var crash = true;

        if ((mybottom < othertop) || (mytop > otherbottom) || (myright < otherleft) || (myleft > otherright)) {
          crash = false;

        }


        return crash;
      }
    }

    function updateGameArea() {
      if (myGamePiece.crashWith(myObstacle)) {
        console.log("crash");
      } else {
        myGameArea.clear();
        myObstacle.update();
        myGamePiece.x += myGamePiece.speedX;
        myGamePiece.y += myGamePiece.speedY;
        myGamePiece.update();
      }
    }
    document.onkeydown = checkKeyD;

    function checkKeyD(e) {

      e = e || window.event;

      if (e.keyCode == '38') {
        // up arrow
        myGamePiece.speedY = -speed;
      } else if (e.keyCode == '40') {
        // down arrow
        myGamePiece.speedY = speed;
      } else if (e.keyCode == '37') {
        // left arrow
        myGamePiece.speedX = -speed;
      } else if (e.keyCode == '39') {
        // right arrow
        myGamePiece.speedX = speed;
      }

    }

    document.onkeyup = clearmove;

    function clearmove() {
      myGamePiece.speedX = 0;
      myGamePiece.speedY = 0;
    }

  </script>

</body>

1 Ответ

0 голосов
/ 11 января 2019

Проблема здесь:

  if (myGamePiece.crashWith(myObstacle)) {
    console.log("crash");
  } else {

В реальном физическом движке вы обнаруживаете столкновения, а затем разрешаете столкновения. Самым простым «разрешением столкновения» было бы переместить часть обратно на место, где она была до аварии. Что-то вроде:

  if (myGamePiece.crashWith(myObstacle)) {
    resolveCollision(myGamePiece, myObstacle);
  } else {

Но для этого вам нужно изменить физический движок и функцию движения, чтобы использовать вектор скорости. Это означает, что вместо function checkKeyD(e) перемещения фигуры эта функция устанавливает вектор скорости. Затем crashWith() определит, будет ли положение плюс вектор скорости падать, и разрешение столкновения приведет к его падению.

...