0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2024-11-23 09:26:51 -05:00
liabru-matter-js/examples/terrain.js

123 lines
3.4 KiB
JavaScript
Raw Normal View History

2016-11-20 19:41:57 -05:00
var Example = Example || {};
2015-08-25 14:12:52 -04:00
2016-11-20 19:41:57 -05:00
Example.terrain = function() {
var Engine = Matter.Engine,
Render = Matter.Render,
Runner = Matter.Runner,
2015-08-25 14:12:52 -04:00
Composites = Matter.Composites,
Common = Matter.Common,
2016-11-20 19:41:57 -05:00
MouseConstraint = Matter.MouseConstraint,
Mouse = Matter.Mouse,
World = Matter.World,
2015-08-25 14:12:52 -04:00
Query = Matter.Query,
2016-11-20 19:41:57 -05:00
Svg = Matter.Svg,
Bodies = Matter.Bodies;
2015-08-25 14:12:52 -04:00
2016-11-20 19:41:57 -05:00
// create engine
var engine = Engine.create(),
world = engine.world;
2015-08-25 14:12:52 -04:00
2016-11-20 19:41:57 -05:00
// create renderer
var render = Render.create({
element: document.body,
engine: engine,
options: {
width: 800,
height: 600
2016-11-20 19:41:57 -05:00
}
});
2015-08-25 14:12:52 -04:00
2016-11-20 19:41:57 -05:00
Render.run(render);
2015-08-25 14:12:52 -04:00
2016-11-20 19:41:57 -05:00
// create runner
var runner = Runner.create();
Runner.run(runner, engine);
2015-08-25 14:12:52 -04:00
2016-11-20 19:41:57 -05:00
// add bodies
if (typeof fetch !== 'undefined') {
var select = function(root, selector) {
return Array.prototype.slice.call(root.querySelectorAll(selector));
};
var loadSvg = function(url) {
return fetch(url)
.then(function(response) { return response.text(); })
.then(function(raw) { return (new window.DOMParser()).parseFromString(raw, 'image/svg+xml'); });
};
loadSvg('./svg/terrain.svg')
.then(function(root) {
var paths = select(root, 'path');
var vertexSets = paths.map(function(path) { return Svg.pathToVertices(path, 30); });
var terrain = Bodies.fromVertices(400, 350, vertexSets, {
isStatic: true,
render: {
fillStyle: '#060a19',
strokeStyle: '#060a19',
lineWidth: 1
}
}, true);
World.add(world, terrain);
var bodyOptions = {
frictionAir: 0,
friction: 0.0001,
restitution: 0.6
};
World.add(world, Composites.stack(80, 100, 20, 20, 10, 10, function(x, y) {
if (Query.point([terrain], { x: x, y: y }).length === 0) {
return Bodies.polygon(x, y, 5, 12, bodyOptions);
}
}));
2019-09-14 13:54:50 -04:00
});
} else {
Common.warn('Fetch is not available. Could not load SVG.');
2019-09-14 13:54:50 -04:00
}
2016-11-20 19:41:57 -05:00
// add mouse control
var mouse = Mouse.create(render.canvas),
mouseConstraint = MouseConstraint.create(engine, {
mouse: mouse,
constraint: {
stiffness: 0.2,
2015-08-25 14:12:52 -04:00
render: {
2016-11-20 19:41:57 -05:00
visible: false
2015-08-25 14:12:52 -04:00
}
2016-11-20 19:41:57 -05:00
}
2015-08-25 14:12:52 -04:00
});
2016-11-20 19:41:57 -05:00
World.add(world, mouseConstraint);
// keep the mouse in sync with rendering
render.mouse = mouse;
2015-08-25 14:12:52 -04:00
2016-11-20 19:41:57 -05:00
// fit the render viewport to the scene
Render.lookAt(render, {
min: { x: 0, y: 0 },
max: { x: 800, y: 600 }
});
// context for MatterTools.Demo
return {
engine: engine,
runner: runner,
render: render,
canvas: render.canvas,
stop: function() {
Matter.Render.stop(render);
Matter.Runner.stop(runner);
}
};
2019-09-14 13:54:50 -04:00
};
2021-02-07 18:56:08 -05:00
Example.terrain.title = 'Terrain';
2020-12-30 18:18:38 -05:00
Example.terrain.for = '>=0.14.2';
if (typeof module !== 'undefined') {
2020-12-30 18:18:38 -05:00
module.exports = Example.terrain;
}