avocado-old/packages/physics/dummy/body.js
2019-03-24 00:46:31 -05:00

40 lines
745 B
JavaScript

import * as I from 'immutable';
import {compose} from '@avocado/core';
import {Rectangle, Vector} from '@avocado/math';
import {EventEmitter} from '@avocado/mixins';
const decorate = compose(
EventEmitter,
Vector.Mixin('position', 'x', 'y', {
default: [0, 0],
track: true,
}),
);
class BodyBase {
constructor(shape) {
this.force = [0, 0];
this.impulse = [0, 0];
this.contacts = I.Set();
this.shape = shape;
}
get aabb() {
return Rectangle.translated(this.shape.aabb, this.position);
}
applyForce(vector) {
this.force = Vector.add(this.force, vector);
}
applyImpulse(vector) {
this.impulse = Vector.add(this.impulse, vector);
}
}
export class Body extends decorate(BodyBase) {}