Html5 Canvas动画基础碰撞检测的实现
在canvas中进行碰撞检测,大家往往直接采用游戏引擎(cocos2d-js、egret)或物理引擎(box2d)内置的碰撞检测功能,好奇的你有思考过它们的内部运行机制吗?下面将针对基本的碰撞检测技术进行讲解:
1、基于矩形的碰撞检测
所谓碰撞检测就是判断物体间是否发生重叠,这里我们假设讨论的碰撞体都是矩形物体。下面示例中我们将创建两个rect对象a和b(以下简称a,b),其中a位置固定,b跟随鼠标移动,当a,b重叠时控制台将提示intercect!!
1、创建rect对象
这里我们新建rect.js,建立rect对象并为其添加原型方法draw,该方法将根据当前对象的属性(位置、大小)绘制到传入的画布对象(context)中。
代码如下 :
function rect(x,y,width,height) { this.x = x; this.y = y; this.width = width; this.height = height; } rect.prototype.draw = function(context){ context.save(); context.translate(this.x,this.y); context.fillrect(0,0,this.width,this.height); context.restore(); }
2、获取鼠标位置
因为b需要跟随鼠标移动所以我们需要检测鼠标在画布的当前位置。创建capturemouse函数检测鼠标在传入的文档节点(element)上的移动并返回一个mouse对象(其中包含了鼠标的x,y坐标)。
代码如下:
function capturemouse (element) { var mouse={x:null,y:null}; element.addeventlistener('mousemove',function (event) { var x, y; if(event.pagex || event.pagey){ x = event.pagex; y = event.pagey; }else{ x = event.clientx+document.body.scrollleft+ document.documentelement.scrollleft; y = event.clienty+document.body.scrolltop+ document.documentelement.scrolltop; } x -=element.offsetleft; y -=element.offsettop; mouse.x = x; mouse.y = y; },false); return mouse; }
3、碰撞检测
检测a,b是否发生重叠,在讨论是否发生重叠时我们可以先看看没有重叠的四种情况,如下图:
以下是对这四种状态的判断:
1、rectb.y+rectb.height < recta.y
2、rectb.y > recta.x +recta.width
3、rectb.y > recta.y + recta.height
4、rectb.x+rectb.width < recta.x
知道如何判断没有重叠的状态,那发生重叠的状态该如何判断呢?没错“取反”!,我们创建函数interaect并添加到init.js中,该函数传入两个rect对象参数,当两rect对象发生重叠将返回true。
代码如下:
function intersect(recta,rectb) { return !(rectb.y+rectb.height < recta.y || rectb.y > recta.x +recta.width || rectb.y > recta.y + recta.height|| rectb.x+rectb.width < recta.x) }
4、动画循环
新建animationjs,设置requestanimationframe()动画函数。
在循环体中将做以下两件事:
- “清空”当前canvas中内容,为绘制下一帧做准备。
- 检测a,b是否发生重叠,若重叠则在控制台输出interact!!!
- 检测当前鼠标在canvas上的移动并将鼠标位置更新到b的位置属性中。
- 根据新的位置属性重新绘制a,b(当然,a的位置不会更新但因为每次循环将清空canvas所以需要重新绘制)
代码如下:
function drawanimation() { window.requestanimationframe(drawanimation); context.clearrect(0, 0, canvas.width, canvas.height); if(intersect(recta,rectb)){ console.log('interact!!!!'); } if(mouse.x){ rectb.x = mouse.x; rectb.y = mouse.y; } recta.draw(context); rectb.draw(context); }
3、初始化
新建init.js ,获取canvas元素并绑定鼠标移动检测,初始化rect对象a和b,最后开启动画循环。
代码如下:
window.onload = function () { canvas = document.getelementbyid('collcanvas'); context = canvas.getcontext('2d'); capturemouse(canvas); recta = new rect(canvas.width/2,canvas.height/2,100,100); rectb = new rect(100,100,100,100); drawanimation(); }
2、基于圆形的碰撞检测
说完矩形碰撞,我们再来聊聊圆形碰撞,同样我们将创建两个circle对象a和b(以下简称a,b),其中a位置固定,b跟随鼠标移动,当a,b重叠时控制台将提示intercect!!
1、创建circle对象
function circle(x,y,radius) { this.x = x; this.y = y; this.radius = radius; } circle.prototype.draw = function(context){ context.save(); context.translate(this.x,this.y); context.beginpath(); context.arc(0,0,this.radius,0,math.pi*2,false); context.fill(); context.restore(); }
2、检测圆形碰撞
圆形间碰撞检测可以简单地通过两圆心间距离与两圆半径之和的比较做判断,当两圆心距离小于两圆半径之和时则发生碰撞。
如下图:
所以我们首先需要做的是计算出两圆心间的距离,这里我们将用到两点间的距离公式,如下:
当取得两圆心间的距离之后将与两圆半径之和比较,如果距离小于半径之和则返回true。
现在我们更新interaect函数。
代码如下:
function intersect(circlea,circleb) { var dx = circlea.x-circleb.x; var dy = circlea.y-circleb.y; var distance = math.sqrt(dx*dx+dy*dy); return distance < (circlea.radius + circleb.radius); }
3、动画循环
更新animation.js,这里我们替换rect对象为circle对象。
代码如下:
function drawanimation() { window.requestanimationframe(drawanimation); context.clearrect(0, 0, canvas.width, canvas.height); if(intersect(circlea,circleb)){ console.log('interact!!!!'); } if(mouse.x){ circleb.x = mouse.x; circleb.y = mouse.y; } circlea.draw(context); circleb.draw(context); }
4、初始化
更新init.js ,初始化circle对象a和b,最后开启动画循环。
代码如下:
window.onload = function () { canvas = document.getelementbyid('collcanvas'); context = canvas.getcontext('2d'); capturemouse(canvas); circlea = new circle(canvas.width/2,canvas.height/2,100); circleb = new circle(100,100,100); drawanimation(); }
3、基于矩形与圆形间的碰撞检测
前面讲解都是单一形状间的碰撞检测,下面我们将检测矩形和圆形间的碰撞。
1、检测碰撞
和矩形检测一样,我们先看看没有发生碰撞的四种情况。
如下图:
以下是对这四种状态的判断:
- circle.y + circle.radius < rect.y
- circle.x - circle.radius > rect.x + rect.width
- circle.y - circle.radius > rect.y + rect.height
- circle.x + circle.radius < rect.x
更新interaect函数,将没有重叠的状态“取反”,向该函数传入rect对象和circle对象,当rect对象与circle对象发生重叠将返回true。
代码如下:
function intersect(rect,circle) { return !(circle.y + circle.radius < rect.y || circle.x - circle.radius > rect.x + rect.width || circle.y - circle.radius > rect.y + rect.height || circle.x + circle.radius < rect.x) }
2、动画循环
更新animation.js,这里我们将circle对象跟随鼠标运动,并检测与固定位置的rect对象的碰撞。
代码如下:
function drawanimation() { window.requestanimationframe(drawanimation); context.clearrect(0, 0, canvas.width, canvas.height); if(intersect(rect,circle)){ console.log('interact!!!!'); } if(mouse.x){ circle.x = mouse.x; circle.y = mouse.y; } circle.draw(context); rect.draw(context); }
3、初始化
更新init.js ,初始化circle对象和rect对象,最后开启动画循环。
代码如下:
window.onload = function () { canvas = document.getelementbyid('collcanvas'); context = canvas.getcontext('2d'); capturemouse(canvas); circle = new circle(100,100,100); rect = new rect(canvas.width/2,canvas.height/2,100,100); drawanimation(); }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。