2024-07-02 16:16:39 -05:00
|
|
|
import Component from '@/ecs/component.js';
|
2024-07-25 10:45:23 -05:00
|
|
|
import {distance, intersects, transform} from '@/util/math.js';
|
2024-07-02 16:16:39 -05:00
|
|
|
|
|
|
|
import vector2d from './helpers/vector-2d';
|
|
|
|
|
|
|
|
export default class Collider extends Component {
|
|
|
|
instanceFromSchema() {
|
|
|
|
const {ecs} = this;
|
|
|
|
return class ColliderInstance extends super.instanceFromSchema() {
|
2024-07-25 10:45:23 -05:00
|
|
|
$$aabb = {x0: Infinity, x1: -Infinity, y0: Infinity, y1: -Infinity};
|
|
|
|
$$aabbs = [];
|
2024-07-25 16:39:05 -05:00
|
|
|
$$collisionStart;
|
|
|
|
$$collisionEnd;
|
|
|
|
$$collidingWith = {};
|
2024-07-04 21:47:14 -05:00
|
|
|
get aabb() {
|
|
|
|
const {Position: {x: px, y: py}} = ecs.get(this.entity);
|
|
|
|
return {
|
|
|
|
x0: this.$$aabb.x0 + px,
|
|
|
|
x1: this.$$aabb.x1 + px,
|
|
|
|
y0: this.$$aabb.y0 + py,
|
|
|
|
y1: this.$$aabb.y1 + py,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
get aabbs() {
|
|
|
|
const {Position: {x: px, y: py}} = ecs.get(this.entity);
|
|
|
|
const aabbs = [];
|
|
|
|
for (const aabb of this.$$aabbs) {
|
|
|
|
aabbs.push({
|
|
|
|
x0: aabb.x0 + px,
|
|
|
|
x1: aabb.x1 + px,
|
|
|
|
y0: aabb.y0 + py,
|
|
|
|
y1: aabb.y1 + py,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return aabbs;
|
|
|
|
}
|
2024-07-22 03:17:43 -05:00
|
|
|
closest(aabb) {
|
|
|
|
const entity = ecs.get(this.entity);
|
|
|
|
return Array.from(ecs.system('Colliders').within(aabb))
|
|
|
|
.filter((other) => other !== entity)
|
|
|
|
.sort(({Position: l}, {Position: r}) => {
|
|
|
|
return distance(entity.Position, l) > distance(entity.Position, r) ? -1 : 1;
|
|
|
|
});
|
|
|
|
}
|
2024-07-23 15:05:55 -05:00
|
|
|
destroy() {
|
|
|
|
const entity = ecs.get(this.entity);
|
2024-07-25 16:39:05 -05:00
|
|
|
for (const otherId in this.$$collidingWith) {
|
2024-07-23 15:05:55 -05:00
|
|
|
const other = ecs.get(otherId);
|
2024-07-25 16:39:05 -05:00
|
|
|
delete this.$$collidingWith[other.id];
|
|
|
|
delete other.Collider.$$collidingWith[entity.id];
|
2024-07-23 15:05:55 -05:00
|
|
|
}
|
|
|
|
}
|
2024-07-02 16:16:39 -05:00
|
|
|
isCollidingWith(other) {
|
|
|
|
const {aabb, aabbs} = this;
|
|
|
|
const {aabb: otherAabb, aabbs: otherAabbs} = other;
|
2024-07-03 16:13:14 -05:00
|
|
|
const intersections = [];
|
2024-07-02 16:16:39 -05:00
|
|
|
if (!intersects(aabb, otherAabb)) {
|
2024-07-03 16:13:14 -05:00
|
|
|
return intersections;
|
2024-07-02 16:16:39 -05:00
|
|
|
}
|
2024-07-03 16:13:14 -05:00
|
|
|
for (const i in aabbs) {
|
|
|
|
const aabb = aabbs[i];
|
|
|
|
for (const j in otherAabbs) {
|
|
|
|
const otherAabb = otherAabbs[j];
|
2024-07-02 16:16:39 -05:00
|
|
|
if (intersects(aabb, otherAabb)) {
|
2024-07-03 16:13:14 -05:00
|
|
|
intersections.push([this.bodies[i], other.bodies[j]]);
|
2024-07-02 16:16:39 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-07-03 16:13:14 -05:00
|
|
|
return intersections;
|
2024-07-02 16:16:39 -05:00
|
|
|
}
|
|
|
|
isWithin(query) {
|
|
|
|
const {aabb, aabbs} = this;
|
|
|
|
if (!intersects(aabb, query)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (const aabb of aabbs) {
|
|
|
|
if (intersects(aabb, query)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2024-07-25 10:45:23 -05:00
|
|
|
updateAabbs() {
|
|
|
|
this.$$aabb = {x0: Infinity, x1: -Infinity, y0: Infinity, y1: -Infinity};
|
|
|
|
this.$$aabbs = [];
|
|
|
|
const {bodies} = this;
|
|
|
|
const {Direction: {direction = 0} = {}} = ecs.get(this.entity);
|
|
|
|
for (const body of bodies) {
|
|
|
|
let x0 = Infinity, x1 = -Infinity, y0 = Infinity, y1 = -Infinity;
|
|
|
|
for (const point of transform(body.points, {rotation: direction})) {
|
|
|
|
const {x, y} = point;
|
|
|
|
if (x < x0) x0 = x;
|
|
|
|
if (x < this.$$aabb.x0) this.$$aabb.x0 = x;
|
|
|
|
if (x > x1) x1 = x;
|
|
|
|
if (x > this.$$aabb.x1) this.$$aabb.x1 = x;
|
|
|
|
if (y < y0) y0 = y;
|
|
|
|
if (y < this.$$aabb.y0) this.$$aabb.y0 = y;
|
|
|
|
if (y > y1) y1 = y;
|
|
|
|
if (y > this.$$aabb.y1) this.$$aabb.y1 = y;
|
|
|
|
}
|
|
|
|
this.$$aabbs.push({
|
|
|
|
x0: x0 > x1 ? x1 : x0,
|
|
|
|
x1: x0 > x1 ? x0 : x1,
|
|
|
|
y0: y0 > y1 ? y1 : y0,
|
|
|
|
y1: y0 > y1 ? y0 : y1,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2024-07-02 16:16:39 -05:00
|
|
|
}
|
|
|
|
}
|
2024-07-02 22:42:56 -05:00
|
|
|
async load(instance) {
|
2024-07-25 10:45:23 -05:00
|
|
|
instance.updateAabbs();
|
2024-07-02 22:42:56 -05:00
|
|
|
// heavy handed...
|
|
|
|
if ('undefined' !== typeof window) {
|
|
|
|
return;
|
|
|
|
}
|
2024-07-25 16:39:05 -05:00
|
|
|
instance.$$collisionEnd = await this.ecs.readScript(
|
2024-07-02 22:42:56 -05:00
|
|
|
instance.collisionEndScript,
|
|
|
|
{
|
|
|
|
ecs: this.ecs,
|
|
|
|
entity: this.ecs.get(instance.entity),
|
|
|
|
},
|
|
|
|
);
|
2024-07-25 16:39:05 -05:00
|
|
|
instance.$$collisionStart = await this.ecs.readScript(
|
2024-07-02 22:42:56 -05:00
|
|
|
instance.collisionStartScript,
|
|
|
|
{
|
|
|
|
ecs: this.ecs,
|
|
|
|
entity: this.ecs.get(instance.entity),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
2024-07-02 16:16:39 -05:00
|
|
|
static properties = {
|
|
|
|
bodies: {
|
|
|
|
type: 'array',
|
|
|
|
subtype: {
|
2024-07-03 16:13:14 -05:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
impassable: {type: 'uint8'},
|
|
|
|
points: {
|
|
|
|
type: 'array',
|
|
|
|
subtype: vector2d('int16'),
|
|
|
|
},
|
|
|
|
tags: {
|
|
|
|
type: 'array',
|
|
|
|
subtype: {type: 'string'},
|
|
|
|
},
|
2024-07-25 11:00:25 -05:00
|
|
|
unstoppable: {type: 'uint8'},
|
2024-07-03 16:13:14 -05:00
|
|
|
},
|
2024-07-02 16:16:39 -05:00
|
|
|
},
|
|
|
|
},
|
2024-07-02 22:42:56 -05:00
|
|
|
collisionEndScript: {type: 'string'},
|
|
|
|
collisionStartScript: {type: 'string'},
|
2024-07-02 16:16:39 -05:00
|
|
|
};
|
|
|
|
}
|