2018-05-07 13:22:16 +00:00
|
|
|
/**
|
|
|
|
* @author Joachim Grill <joachim@codeandweb.com>
|
|
|
|
* @copyright 2018 CodeAndWeb GmbH
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
var Bodies = require('./lib/factory/Bodies');
|
|
|
|
var Body = require('./lib/body/Body');
|
|
|
|
var GetFastValue = require('../../utils/object/GetFastValue');
|
|
|
|
var Common = require('./lib/core/Common');
|
|
|
|
var Vertices = require('./lib/geometry/Vertices');
|
|
|
|
var Bounds = require('./lib/geometry/Bounds');
|
|
|
|
var Vector = require('./lib/geometry/Vector');
|
|
|
|
|
|
|
|
|
|
|
|
var PhysicsEditorLoader = {
|
|
|
|
|
|
|
|
loadBody: function (x, y, w, h, config)
|
|
|
|
{
|
|
|
|
const fixtureConfigs = GetFastValue(config, 'fixtures', []);
|
|
|
|
const fixtures = [];
|
|
|
|
for (let fixtureConfig of fixtureConfigs)
|
|
|
|
{
|
|
|
|
const f = this.loadFixture(fixtureConfig);
|
|
|
|
fixtures.push(...f);
|
|
|
|
}
|
|
|
|
|
|
|
|
var matterConfig = Common.extend({}, false, config);
|
|
|
|
delete matterConfig.fixtures;
|
|
|
|
delete matterConfig.type;
|
|
|
|
|
|
|
|
const body = Body.create(matterConfig);
|
|
|
|
Body.setParts(body, fixtures);
|
|
|
|
body.render.sprite.xOffset = body.position.x / w;
|
|
|
|
body.render.sprite.yOffset = body.position.y / h;
|
|
|
|
Body.setPosition(body, { x: x, y: y });
|
|
|
|
|
|
|
|
return body;
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
loadFixture: function (fixtureConfig)
|
|
|
|
{
|
|
|
|
var matterConfig = Common.extend({}, false, fixtureConfig);
|
|
|
|
delete matterConfig.circle;
|
|
|
|
delete matterConfig.vertices;
|
|
|
|
|
|
|
|
let fixtures;
|
|
|
|
if (fixtureConfig.circle)
|
|
|
|
{
|
|
|
|
const x = GetFastValue(fixtureConfig.circle, 'x');
|
|
|
|
const y = GetFastValue(fixtureConfig.circle, 'y');
|
|
|
|
const r = GetFastValue(fixtureConfig.circle, 'radius');
|
|
|
|
fixtures = [ Bodies.circle(x, y, r, matterConfig) ];
|
|
|
|
}
|
|
|
|
else if (fixtureConfig.vertices)
|
|
|
|
{
|
|
|
|
fixtures = this.loadVertices(fixtureConfig.vertices, matterConfig);
|
|
|
|
}
|
|
|
|
return fixtures;
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
loadVertices: function (vertexSets, options)
|
|
|
|
{
|
|
|
|
var i, j, k, v, z;
|
|
|
|
var parts = [];
|
|
|
|
|
|
|
|
options = options || {};
|
|
|
|
|
2018-06-04 09:12:02 +00:00
|
|
|
for (v = 0; v < vertexSets.length; v += 1)
|
|
|
|
{
|
2018-05-07 13:22:16 +00:00
|
|
|
parts.push(Body.create(Common.extend({
|
|
|
|
position: Vertices.centre(vertexSets[v]),
|
|
|
|
vertices: vertexSets[v]
|
|
|
|
}, options)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// flag coincident part edges
|
2018-06-04 09:12:02 +00:00
|
|
|
var coincidentMaxDist = 5;
|
2018-05-07 13:22:16 +00:00
|
|
|
|
2018-06-04 09:12:02 +00:00
|
|
|
for (i = 0; i < parts.length; i++)
|
|
|
|
{
|
2018-05-07 13:22:16 +00:00
|
|
|
var partA = parts[i];
|
|
|
|
|
2018-06-04 09:12:02 +00:00
|
|
|
for (j = i + 1; j < parts.length; j++)
|
|
|
|
{
|
2018-05-07 13:22:16 +00:00
|
|
|
var partB = parts[j];
|
|
|
|
|
2018-06-04 09:12:02 +00:00
|
|
|
if (Bounds.overlaps(partA.bounds, partB.bounds))
|
|
|
|
{
|
2018-05-07 13:22:16 +00:00
|
|
|
var pav = partA.vertices,
|
|
|
|
pbv = partB.vertices;
|
|
|
|
|
|
|
|
// iterate vertices of both parts
|
2018-06-04 09:12:02 +00:00
|
|
|
for (k = 0; k < partA.vertices.length; k++)
|
|
|
|
{
|
|
|
|
for (z = 0; z < partB.vertices.length; z++)
|
|
|
|
{
|
2018-05-07 13:22:16 +00:00
|
|
|
// find distances between the vertices
|
|
|
|
var da = Vector.magnitudeSquared(Vector.sub(pav[(k + 1) % pav.length], pbv[z])),
|
|
|
|
db = Vector.magnitudeSquared(Vector.sub(pav[k], pbv[(z + 1) % pbv.length]));
|
|
|
|
|
|
|
|
// if both vertices are very close, consider the edge concident (internal)
|
2018-06-04 09:12:02 +00:00
|
|
|
if (da < coincidentMaxDist && db < coincidentMaxDist)
|
|
|
|
{
|
2018-05-07 13:22:16 +00:00
|
|
|
pav[k].isInternal = true;
|
|
|
|
pbv[z].isInternal = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return parts;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = PhysicsEditorLoader;
|