ccc切割刚体
// http://www.emanueleferonato.com/2011/08/05/slicing-splitting-and-cutting-objects-with-box2d-part-4-using-real-graphics/
const EPSILON = 0.1;
const POINT_SQR_EPSILON = 5;
function compare(a, b) {
if (a.fraction > b.fraction) {
return 1;
} else if (a.fraction < b.fraction) {
return -1;
}
return 0;
}
function equals (a, b, epsilon) {
epsilon = epsilon === undefined ? EPSILON : epsilon;
return Math.abs(a-b) < epsilon;
}
function equalsVec2(a,b, epsilon) {
return equals(a.x, b.x, epsilon) && equals(a.y, b.y, epsilon);
}
function pointInLine (point, a, b) {
return cc.Intersection.pointLineDistance(point, a, b, true) < 1;
}
cc.Class({
extends: cc.Component,
onEnable: function () {
this.debugDrawFlags = cc.director.getPhysicsManager().debugDrawFlags;
cc.director.getPhysicsManager().debugDrawFlags =
cc.PhysicsManager.DrawBits.e_jointBit |
cc.PhysicsManager.DrawBits.e_shapeBit
;
},
onDisable: function () {
cc.director.getPhysicsManager().debugDrawFlags = this.debugDrawFlags;
},
// use this for initialization
onLoad: function () {
var canvas = cc.find('Canvas');
canvas.on(cc.Node.EventType.TOUCH_START, this.onTouchStart, this);
canvas.on(cc.Node.EventType.TOUCH_END, this.onTouchEnd, this);
canvas.on(cc.Node.EventType.TOUCH_MOVE, this.onTouchMove, this);
this.ctx = this.getComponent(cc.Graphics);
},
onTouchStart: function (event) {
this.touching = true;
this.r1 = this.r2 = this.results = null;
this.touchStartPoint = this.touchPoint = cc.v2( event.touch.getLocation() );
},
onTouchMove: function (event) {
this.touchPoint = cc.v2( event.touch.getLocation() );
},
onTouchEnd: function (event) {
this.touchPoint = cc.v2( event.touch.getLocation() );
this.recalcResults();
this.touching = false;
let point = cc.v2( event.touch.getLocation() );
if ( equals(this.touchStartPoint.sub(point).magSqr(), 0) ) return;
// recalculate fraction, make fraction from one direction
this.r2.forEach(r => {
r.fraction = 1 - r.fraction;
});
let results = this.results;
let pairs = [];
for (let i = 0; i < results.length; i++) {
let find = false;
let result = results[i];
for (let j = 0; j < pairs.length; j++) {
let pair = pairs[j];
if (pair[0] && result.collider === pair[0].collider) {
find = true;
// one collider may contains several fixtures, so raycast may through the inner fixture side
// we need remove them from the result
let r = pair.find((r) => {
return r.point.sub(result.point).magSqr() <= POINT_SQR_EPSILON;
});
if (r) {
pair.splice(pair.indexOf(r), 1);
}
else {
pair.push(result);
}
break;
}
}
if (!find) {
pairs.push([result]);
}
}
for (let i = 0; i < pairs.length; i++) {
let pair = pairs[i];
if (pair.length < 2) {
continue;
}
// sort pair with fraction
pair = pair.sort(compare);
let splitResults = [];
// first calculate all results, not split collider right now
for (let j = 0; j < (pair.length - 1); j +=2) {
let r1 = pair[j];
let r2 = pair[j+1];
if (r1 && r2) {
this.split(r1.collider, r1.point, r2.point, splitResults);
}
}
if (splitResults.length <= 0) {
continue;
}
let collider = pair[0].collider;
let maxPointsResult;
for (let j = 0; j < splitResults.length; j++) {
let splitResult = splitResults[j];
for (let k = 0; k < splitResult.length; k++) {
if (typeof splitResult[k] === 'number') {
splitResult[k] = collider.points[splitResult[k]];
}
}
if (!maxPointsResult || splitResult.length > maxPointsResult.length) {
maxPointsResult = splitResult;
}
}
if (maxPointsResult.length < 3) {
continue;
}
// keep max length points to origin collider
collider.points = maxPointsResult;
collider.apply();
let body = collider.body;
for (let j = 0; j < splitResults.length; j++) {
let splitResult = splitResults[j];
if (splitResult.length < 3) continue;
if (splitResult == maxPointsResult) continue;
// create new body
let node = new cc.Node();
node.position = body.getWorldPosition();
node.rotation = body.getWorldRotation();
node.parent = cc.director.getScene();
node.addComponent(cc.RigidBody);
let newCollider = node.addComponent(cc.PhysicsPolygonCollider);
newCollider.points = splitResult;
newCollider.apply();
}
}
},
split: function (collider, p1, p2, splitResults) {
let body = collider.body;
let points = collider.points;
// The manager.rayCast() method returns points in world coordinates, so use the body.getLocalPoint() to convert them to local coordinates.
p1 = body.getLocalPoint(p1);
p2 = body.getLocalPoint(p2);
let newSplitResult1 = [p1, p2];
let newSplitResult2 = [p2, p1];
let index1, index2;
for (let i = 0; i < points.length; i++) {
let pp1 = points[i];
let pp2 = i === points.length - 1 ? points[0] : points[i+1];
if (index1 === undefined && pointInLine(p1, pp1, pp2)) {
index1 = i;
}
else if (index2 === undefined && pointInLine(p2, pp1, pp2)) {
index2 = i;
}
if (index1 !== undefined && index2 !== undefined) {
break;
}
}
// console.log(index1 + ' : ' + index2);
if (index1 === undefined || index2 === undefined) {
debugger
return;
}
let splitResult, indiceIndex1 = index1, indiceIndex2 = index2;
if (splitResults.length > 0) {
for (let i = 0; i < splitResults.length; i++) {
let indices = splitResults[i];
indiceIndex1 = indices.indexOf(index1);
indiceIndex2 = indices.indexOf(index2);
if (indiceIndex1 !== -1 && indiceIndex2 !== -1) {
splitResult = splitResults.splice(i, 1)[0];
break;
}
}
}
if (!splitResult) {
splitResult = points.map((p, i) => {
return i;
});
}
for (let i = indiceIndex1 + 1; i !== (indiceIndex2+1); i++) {
if (i >= splitResult.length) {
i = 0;
}
let p = splitResult[i];
p = typeof p === 'number' ? points[p] : p;
if (p.sub(p1).magSqr() < POINT_SQR_EPSILON || p.sub(p2).magSqr() < POINT_SQR_EPSILON) {
continue;
}
newSplitResult2.push(splitResult[i]);
}
for (let i = indiceIndex2 + 1; i !== indiceIndex1+1; i++) {
if (i >= splitResult.length) {
i = 0;
}
let p = splitResult[i];
p = typeof p === 'number' ? points[p] : p;
if (p.sub(p1).magSqr() < POINT_SQR_EPSILON || p.sub(p2).magSqr() < POINT_SQR_EPSILON) {
continue;
}
newSplitResult1.push(splitResult[i]);
}
splitResults.push(newSplitResult1);
splitResults.push(newSplitResult2);
},
recalcResults: function () {
if (!this.touching) return;
let startPoint = this.touchStartPoint;
let point = this.touchPoint;
this.ctx.clear();
this.ctx.moveTo(this.touchStartPoint.x, this.touchStartPoint.y);
this.ctx.lineTo(point.x, point.y);
this.ctx.stroke();
let manager = cc.director.getPhysicsManager();
// manager.rayCast() method calls this function only when it sees that a given line gets into the body - it doesnt see when the line gets out of it.
// I must have 2 intersection points with a body so that it can be sliced, thats why I use manager.rayCast() again, but this time from B to A - that way the point, at which BA enters the body is the point at which AB leaves it!
let r1 = manager.rayCast(this.touchStartPoint, point, cc.RayCastType.All);
let r2 = manager.rayCast(point, this.touchStartPoint, cc.RayCastType.All);
let results = r1.concat(r2);
for (let i = 0; i < results.length; i++) {
let p = results[i].point;
this.ctx.circle(p.x, p.y, 5);
}
this.ctx.fill();
this.r1 = r1;
this.r2 = r2;
this.results = results;
},
// called every frame, uncomment this function to activate update callback
update: function (dt) {
// body maybe moving, need calc raycast results in update
this.recalcResults();
},
});
ccc切割刚体的更多相关文章
- JAVA之旅(三十四)——自定义服务端,URLConnection,正则表达式特点,匹配,切割,替换,获取,网页爬虫
JAVA之旅(三十四)--自定义服务端,URLConnection,正则表达式特点,匹配,切割,替换,获取,网页爬虫 我们接着来说网络编程,TCP 一.自定义服务端 我们直接写一个服务端,让本机去连接 ...
- [sql]sql的select字符串切割
可以经常看看 mysql的refman,写的很棒 sql基础操作 查看表结构 show create table desc table show full columns from test1; li ...
- 数组遍历 map()、forEach() 及 字符串切割 split() / 字符串截取 slice()、substring()、substr()
JS数组遍历的几种方式 JS数组遍历,基本就是for,forin,foreach,forof,map等等一些方法,以下介绍几种本文分析用到的数组遍历方式以及进行性能分析对比 第一种:普通for循环 代 ...
- Ajax+Java实现大文件切割上传
技术体系:html5(formdata) + java + servlet3.0+maven + tomcat7 <!DOCTYPE html> <html> <head ...
- css3实现3D切割轮播图案例
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8&quo ...
- 3D切割轮播图
预览图: 实现原理:将图片切割构建一个和ul(电脑屏幕)同一个轴的立方体,利用延时旋转实现切割效果 知识点:transform-style属性(必须搭配transform属性使用) 值 描述 flat ...
- String常用使用方法,1.创建string的常用3+1种方式,2.引用类型使用==比较地址值,3.String当中获取相关的常用方法,4.字符串的截取方法,5.String转换常用方法,6.切割字符串----java
一个知识点使用一个代码块方便查看 1.创建string的常用3+1种方式 /* 创建string的常用3+1种方式 三种构造方法 public String():创建一个空字符串,不含有任何内容: p ...
- 案例:3D切割轮播图
一.3d转换 3D旋转套路:顺着轴的正方向看,顺时针旋转是负角度,逆时针旋转是正角度 二.代码 <!DOCTYPE html> <html lang="en"&g ...
- PHP搭建大文件切割分块上传功能
背景 在网站开发中,文件上传是很常见的一个功能.相信很多人都会遇到这种情况,想传一个文件上去,然后网页提示"该文件过大".因为一般情况下,我们都需要对上传的文件大小做限制,防止出现 ...
随机推荐
- matrix_chain_order
to calculate the min step of multiplicate some matixs package dynamic_programming; public class matr ...
- excel图片链接转图片
Sub LoadImage() Dim HLK As Hyperlink, Rng As Range For Each HLK In ActiveSheet.Hyperlinks '循环活动工作表中的 ...
- Cocos2dx利用intersectsRect函数检测碰撞
if (sp1->boundingBox().intersectsRect(sp2->boundingBox())) { pLabel->setString(“碰撞飞机爆炸”); } ...
- Gym101889B. Buggy ICPC(打表)
比赛链接:传送门 题目: Problem B – Buggy ICPC Author : Gabriel Poesia, Brasil Alan Curing is a famous sports p ...
- python:递归函数(汉诺塔)
#hanoi.py def hanoi(n,x,y,z): if n==1: print(x,"-->",z) else: hanoi(n-1,x,z,y) print(x, ...
- Ubuntu16.04交叉工具链安装
前言: 开发环境是64位的ubuntu16.04,交叉工具链是通过sudo apt-get install ....安装的,移植uboot2014.10,但是很奇怪,按照网上的介绍在start.s里面 ...
- 第一节《Git初始化》
创建版本库以及第一次提交 首先我看查看一下git的版本,本地的git是用的yum安装方式,如果想使用源码安装请参考官方文档. [root@git ~]# git --versiongit versio ...
- PythonStudy——函数的导入 Import of functions
# 函数:完成 特定 功能的代码块,作为一个整体,对其进行特定的命名,该名字就代表函数# 难点:如何定义个函数 # 现实中很多问题要通过一些工具进行处理 => 可以将工具提前生产出来并命名# = ...
- IDEA一定要改的八条配置
引言 坦白说,我很少写这种操作类型的文章.因为这种文章没啥新意,大家操作步骤肯定是一样的.然而,我答应了我的同事小阳,给她出一篇!毕竟人家打算从Eclipse转IDEA了,于是以示鼓励,写一篇给她! ...
- 项目管理软件 GanttProject 节日表
项目管理软件 GanttProject 节日表 GanttProject 是一款项目管理软件,对比一些商业项目管理软件一点不差,有些还更强大,比如以下的节假日自动选择. 文件地址在:C:\Progra ...