javascript - 在我们的 javascript 游戏中触发下一个级别?

标签 javascript jquery html canvas

我们正在为我们的学校做一个游戏,它很简单,但是我们不知道如何让它触发下一个级别。目前,我们有一个按钮设置为在他们完成关卡时加载新页面,但显然,使用这种方法很容易作弊。我们想知道如何才能做到当红点( Angular 色)到达顶部框时,将加载下一个级别。我会发布一级以供引用。

   <html>
<head>
<style>
            canvas, img {
            display:block; margin:1em auto; border:1px solid black;
            }
            canvas { 
            background:url(Clouds.png);
            }
        </style>
</head>
<body>
<canvas id="canvas" style="border:1px solid #000"></canvas>
<script>
    (function () {
    var requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame || window.msRequestAnimationFrame;
    window.requestAnimationFrame = requestAnimationFrame;
})();

var canvas = document.getElementById("canvas"),
    ctx = canvas.getContext("2d"),
    width = 500,
    height = 200,
    player = {
        x: width / 2,
        y: height - 15,
        width: 5,
        height: 5,
        speed: 3,
        velX: 0,
        velY: 0,
        jumping: false,
        grounded: false
    },
    keys = [],
    friction = 0.8,
    gravity = 0.3;

var boxes = [];

// dimensions
boxes.push({
    x: 0,
    y: 0,
    width: 10,
    height: height
});
boxes.push({
    x: 0,
    y: height - 2,
    width: width,
    height: 50
});
boxes.push({
    x: width - 10,
    y: 0,
    width: 50,
    height: height
});

boxes.push({
    x: 120,
    y: 10,
    width: 80,
    height: 80
});
boxes.push({
    x: 170,
    y: 50,
    width: 80,
    height: 80
});
boxes.push({
    x: 220,
    y: 100,
    width: 80,
    height: 80
});
boxes.push({
    x: 270,
    y: 150,
    width: 40,
    height: 40
});

canvas.width = width;
canvas.height = height;

function update() {
    // check keys
    if (keys[38] || keys[32] || keys[87]) {
        // up arrow or space
        if (!player.jumping && player.grounded) {
            player.jumping = true;
            player.grounded = false;
            player.velY = -player.speed * 2;
        }
    }
    if (keys[39] || keys[68]) {
        // right arrow
        if (player.velX < player.speed) {
            player.velX++;
        }
    }
    if (keys[37] || keys[65]) {
        // left arrow
        if (player.velX > -player.speed) {
            player.velX--;
        }
    }

    player.velX *= friction;
    player.velY += gravity;

    ctx.clearRect(0, 0, width, height);
    ctx.fillStyle = "black";
    ctx.beginPath();

    player.grounded = false;
    for (var i = 0; i < boxes.length; i++) {
        ctx.rect(boxes[i].x, boxes[i].y, boxes[i].width, boxes[i].height);

        var dir = colCheck(player, boxes[i]);

        if (dir === "l" || dir === "r") {
            player.velX = 0;
            player.jumping = false;
        } else if (dir === "b") {
            player.grounded = true;
            player.jumping = false;
        } else if (dir === "t") {
            player.velY *= -1;
        }

    }

    if(player.grounded){
         player.velY = 0;
    }

    player.x += player.velX;
    player.y += player.velY;

    ctx.fill();
    ctx.fillStyle = "red";
    ctx.fillRect(player.x, player.y, player.width, player.height);

    requestAnimationFrame(update);
}

function colCheck(shapeA, shapeB) {
    // get the vectors to check against
    var vX = (shapeA.x + (shapeA.width / 2)) - (shapeB.x + (shapeB.width / 2)),
        vY = (shapeA.y + (shapeA.height / 2)) - (shapeB.y + (shapeB.height / 2)),
        // add the half widths and half heights of the objects
        hWidths = (shapeA.width / 2) + (shapeB.width / 2),
        hHeights = (shapeA.height / 2) + (shapeB.height / 2),
        colDir = null;

    // if the x and y vector are less than the half width or half height, they we must be inside the object, causing a collision
    if (Math.abs(vX) < hWidths && Math.abs(vY) < hHeights) {
        // figures out on which side we are colliding (top, bottom, left, or right)
        var oX = hWidths - Math.abs(vX),
            oY = hHeights - Math.abs(vY);
        if (oX >= oY) {
            if (vY > 0) {
                colDir = "t";
                shapeA.y += oY;
            } else {
                colDir = "b";
                shapeA.y -= oY;
            }
        } else {
            if (vX > 0) {
                colDir = "l";
                shapeA.x += oX;
            } else {
                colDir = "r";
                shapeA.x -= oX;
            }
        }
    }
    return colDir;
}

document.body.addEventListener("keydown", function (e) {
    keys[e.keyCode] = true;
});

document.body.addEventListener("keyup", function (e) {
    keys[e.keyCode] = false;
});


window.addEventListener("load", function () {
    update();
});
</script>
<br>
<center>
<input type="button" name="next" value="Click me when finished! No cheating! ;)" onclick="location.href='level2.html';">
</center>
<center>
<input type="button" name="restart" value="Restart" onclick="location.href='javagame.html';">
</center>
</body>
</html>

最佳答案

在您的更新函数中,您可以添加逻辑来检查玩家是否处于与您的完成条件匹配的位置。然后在条件设置location.href='level2.html';

我假设条件是使用 colCheck 函数,将播放器和顶部框作为参数并寻找特定的返回值,这可以作为您完成的练习。进入下一级别的一般代码如下所示:

if(playerReachedFinish()) {
  location.href = 'level2.html';
}

关于javascript - 在我们的 javascript 游戏中触发下一个级别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22052950/

相关文章:

javascript - 如何在 JavaScript 中调用静态子类方法

javascript - Li 元素在单击时不会保持选中状态

javascript - 还使用 jQuery 时如何处理 Javascript 错误?

javascript - 如何让二维码阅读器识别我生成的二维码?

javascript - 如何使用webrtc录制高质量立体声音频?

javascript - ThreeJS 更改不透明度时更新场景

html - 如何从网站的 3 个部分制作背景

html - 我可以将垂直滚动条稍微远离 div 容器中的内容文本吗?

php - 使用 PHP 邮件 - 设置正确的 MIME 类型

javascript - 提示确认框,取消应该停止执行