Javascript Canvas:在旋转玩家时对抗不完全正常工作的敌人

时间:2015-10-31 18:09:25

标签: javascript canvas collision

注意: *我可以在帖子底部找到完整的 JSFiddle

问题:我试图摧毁触碰画布中心蓝线的所有敌人。然而,事实并非如此,我的实施只是“半工作”。当一方工作时,另一方不工作。我该如何解决这个问题?

我尝试了什么:一旦我设置了基本的绘图功能,我就计算了碰撞对象的x和y之间的差异。使用毕达哥拉斯距离来计算两点之间的距离。最后检查距离是否小于或等于两个物体的组合半径。使用arctangent我计算了物体运动的旋转。

我想到的替代解决方案:使用循环创建沿蓝线的各种不可见的圆圈或点作为碰撞受体。问题是:它占用了更多的资源,而且根本不会优雅。

您最感兴趣的Javascript函数将是:

function (player, spawn) {
    return (this.distance(player, spawn) <= player.radius + spawn.radius) && (this.tangent(player, spawn) <= angle - Math.PI * 1);
}

角度是旋转蓝线的角度(带有一个行程的半圆)。

this.tangent(player, spawn) <= angle - Math.PI * 1)

这仅适用于 - 和+ - 部分。更改&lt; = to&gt; =与预期相反。我需要找到一种从-1循环到1的方法。

this.tangent(player, spawn) >= angle - Math.PI * 2 && this.tangent(player, spawn) >= angle

适用于 - , - +,+但不适用于+ - (右下角)。

所以最后我完全混淆了为什么我的逻辑不起作用,但我很想知道如何实现这一目标:

在JSFiddle下面:

http://jsfiddle.net/mzg635p9/

我很乐意回复,因为我喜欢在Javascript中学习新东西:)

编辑(03.11.2015):如果可能只有纯粹的数学解决方案,但也可以发布其他解决方案。为了学习新技术,我们欢迎每一条信息。

3 个答案:

答案 0 :(得分:6)

简化了磁盘和弧http://jsfiddle.net/crl/2rz296tf/31之间的碰撞检测问题(编辑:@markE建议http://jsfiddle.net/crl/2rz296tf/32/)(用于调试:http://jsfiddle.net/crl/2rz296tf/27/

用于比较角度的一些util函数:

function mod(x, value){ // Euclidean modulo http://jsfiddle.net/cLvmrs6m/4/
    return x>=0 ? x%value : value+ x%value;
}

function angularize(x){
    return mod(x+pi, 2*pi)-pi;
}

碰撞检测:

var d_enemy_player = dist(enemy.pos, player.pos)
if (d_enemy_player>player.shieldradius-enemy.radius && d_enemy_player<player.shieldradius+enemy.radius){ 
    //only worth checking when we are approaching the shield distance
    var angle_enemy = atan2(enemy.pos.y-player.pos.y, enemy.pos.x-player.pos.x)

    var delta_with_leftofshield = angularize(angle_enemy-player.angle-player.shieldwidth)
    var delta_with_rightofshield = angularize(angle_enemy-player.angle+player.shieldwidth)
    var delta_with_shield = angularize(angle_enemy-player.angle)

    if (delta_with_leftofshield<0 && delta_with_rightofshield>0){
        console.log('boom')
        enemy.destroyed = true;
    } else if(delta_with_shield>=0 ){
        // check distance with right extremety of shield's arc
        console.log('right')
        var d_rightofshield_enemy = dist(enemy.pos, {x:player.pos.x+player.shieldradius*cos(player.angle+player.shieldwidth), y:player.pos.y+player.shieldradius*sin(player.angle+player.shieldwidth)});
        if (d_rightofshield_enemy<enemy.radius){
            console.log('right boom')
            enemy.destroyed = true;
        }
    } else {
        console.log('left')
        var d_leftofshield_enemy = dist(enemy.pos, {x:player.pos.x+player.shieldradius*cos(player.angle-player.shieldwidth), y:player.pos.y+player.shieldradius*sin(player.angle-player.shieldwidth)});
        if (d_leftofshield_enemy<enemy.radius){
            console.log('left boom')
            enemy.destroyed = true;
        }
    }
}

答案 1 :(得分:2)

您的代码问题似乎是您比较角度的方式。不要忘记2Pi与0完全相同。看看这个例子: 你有2个角度,a和b。

  

a = 0.1 * Pi

     

b = 1.9 * Pi

a略高于x轴,而b略低于x轴。

当看到两者时,似乎a领先于b,所以你期望一个&gt; b是真的。可是等等!看看数字,b比一个大! 当你想检查一个角度是否在一个区间之间时,你必须确保你的区间是连续的,在这种情况下,对于angle = 0,这是假的。

这是我的解决方案。我尽可能地测试它,但你永远不知道你是否错过了什么。

// Gets the equivalent angle between 0 and MAX
var normalize_angle = function( angle )
{
    var MAX = Math.PI * 2;  // Value for a full rotation. Should be 360 in degrees
    angle %= MAX;
    return angle < 0 ? angle + MAX : angle;
};

var is_angle_between = function( alpha, min, max )
{
    // Convert all the angles to be on the same rotation, between 0 and MAX
    alpha = normalize_angle( alpha );
    min = normalize_angle( min );
    max = normalize_angle( max );

    if( max > min )
    {   // Check if the equal case fits your needs. It's a bit pointless for floats
        return max >= alpha && min <= alpha;    // Traditional method works
    } else {    // This happens when max goes beyond MAX, so it starts from 0 again
        return max >= alpha || min <= alpha;    // alpha has to be between max and 0 or
                                                //                 between min and MAX
    }
};

要使用它,请将屏蔽功能更改为:

shield: 
    function (player, spawn) {
        return (this.distance(player, spawn) <= player.radius + spawn.radius) && 
            is_angle_between(this.tangent(player, spawn), angle , angle - Math.PI );
    }
}

答案 2 :(得分:2)

Html5 canvas有一个非常好的命中测试方法:context.isPointInPath

您可以使用此方法测试圆圈是否与您的盾牌发生碰撞。它可以在盾牌的各个角度工作。

在您的情况下,路径将是半径为player.shield.radius-enemy.radius的内弧和半径为player.shield.radius+enemy.radius的外弧。

mousemove内,只需绘制(不抚摸)盾牌路径的2个弧线,并使用context.isPointInside( enemy.centerX, enemy.centerY )测试每个敌人的中心点。

为了获得更好的准确性,请将屏蔽路径扫描扩展到两端敌人的半径。

以下是示例代码和演示:

&#13;
&#13;
function log() {
  console.log.apply(console, arguments);
}

var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
var cw = canvas.width;
var ch = canvas.height;

function reOffset() {
  var BB = canvas.getBoundingClientRect();
  offsetX = BB.left;
  offsetY = BB.top;
}
var offsetX, offsetY;
reOffset();
window.onscroll = function(e) {
  reOffset();
}
window.onresize = function(e) {
  reOffset();
}

var isDown = false;
var startX, startY;


var cx = cw / 2;
var cy = ch / 2;
var radius = 100;
var startAngle = Math.PI/6;
var enemyRadius = 15;
var shieldStrokeWidth = 8;
var endRadians = enemyRadius / (2 * Math.PI * radius) * (Math.PI * 2);

defineShieldHitPath(cx, cy, radius, enemyRadius, startAngle);
drawShield(cx, cy, radius, startAngle, shieldStrokeWidth);

$("#canvas").mousemove(function(e) {
  handleMouseMove(e);
});


function defineShieldHitPath(cx, cy, r, enemyRadius, startAngle) {
  ctx.beginPath();
  ctx.arc(cx, cy, r - enemyRadius - shieldStrokeWidth / 2, startAngle - endRadians, startAngle + Math.PI + endRadians);
  ctx.arc(cx, cy, r + enemyRadius + shieldStrokeWidth / 2, startAngle + Math.PI + endRadians, startAngle - endRadians, true);
  ctx.closePath();
  ctx.lineWidth = 1;
  ctx.strokeStyle = 'black';
  // stroked just for the demo.
  // you don't have to stroke() if all you're doing is 'isPointInPath'
  ctx.stroke();
}

function drawShield(cx, cy, r, startAngle, strokeWidth) {
  ctx.beginPath();
  ctx.arc(cx, cy, r, startAngle, startAngle + Math.PI);
  ctx.lineWidth = strokeWidth;
  ctx.strokeStyle = 'blue';
  ctx.stroke();
}

function drawEnemy(cx, cy, r, fill) {
  ctx.beginPath();
  ctx.arc(cx, cy, r, 0, Math.PI * 2);
  ctx.fillStyle = fill;
  ctx.fill();
}



function handleMouseMove(e) {

  // tell the browser we're handling this event
  e.preventDefault();
  e.stopPropagation();

  mouseX = parseInt(e.clientX - offsetX);
  mouseY = parseInt(e.clientY - offsetY);

  ctx.clearRect(0, 0, cw, ch);

  drawShield(cx, cy, radius, startAngle, shieldStrokeWidth);

  defineShieldHitPath(cx, cy, radius, enemyRadius, startAngle);
  if (ctx.isPointInPath(mouseX, mouseY)) {
    drawEnemy(mouseX, mouseY, enemyRadius, 'red');
  } else {
    drawEnemy(mouseX, mouseY, enemyRadius, 'green');
  }

}
&#13;
body{ background-color: ivory; }
#canvas{border:1px solid red; }
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<h4>The shield is the blue arc.<br>The filled circle that moves with the mouse is the enemy.<br>The black stroked arc is the shield perimiter.<br>The enemy turns red when colliding with the blue shield.<br>Test by moving the mouse-enemy in / out of the shield perimiter.</h4>
<canvas id="canvas" width=400 height=400></canvas>
&#13;
&#13;
&#13;

为获得最佳性能,您也可以用数学方法进行相同的isPointInPath命中测试。

这是一个2部分测试。测试#1:敌人的中心点是否在护盾的扫掠角内(使用Math.atan2)。测试#2:敌方中心点是否在屏蔽路径弧的内半径和外半径之间的距离处。如果两个测试均为真,那么敌人就会与盾牌路径相撞。