2013-08-11 11:15:53 +00:00
|
|
|
/// <reference path="../_definitions.ts" />
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Phaser - Physics - AABB
|
|
|
|
*/
|
|
|
|
|
|
|
|
module Phaser.Physics {
|
|
|
|
|
|
|
|
export class AABB {
|
|
|
|
|
2013-08-12 03:08:15 +00:00
|
|
|
constructor(game: Phaser.Game, x: number, y: number, width: number, height: number) {
|
2013-08-11 11:15:53 +00:00
|
|
|
|
|
|
|
this.game = game;
|
|
|
|
|
|
|
|
this.pos = new Phaser.Vec2(x, y);
|
|
|
|
this.oldpos = new Phaser.Vec2(x, y);
|
|
|
|
|
2013-08-12 03:08:15 +00:00
|
|
|
this.width = Math.abs(width);
|
|
|
|
this.height = Math.abs(height);
|
2013-08-11 11:15:53 +00:00
|
|
|
|
2013-08-13 03:22:24 +00:00
|
|
|
this.velocity = new Phaser.Vec2;
|
|
|
|
this.acceleration = new Phaser.Vec2;
|
|
|
|
this.bounce = new Phaser.Vec2(0, 0);
|
|
|
|
|
|
|
|
//this.drag = new Phaser.Vec2(1, 1);
|
|
|
|
//this.gravity = new Phaser.Vec2(0, 0.2);
|
|
|
|
|
|
|
|
this.drag = new Phaser.Vec2(0, 0);
|
2013-08-28 06:02:55 +00:00
|
|
|
this.gravity = new Phaser.Vec2(0, 0);
|
2013-08-13 03:22:24 +00:00
|
|
|
|
|
|
|
this.maxVelocity = new Phaser.Vec2(1000, 1000);
|
|
|
|
|
2013-08-11 11:15:53 +00:00
|
|
|
this.aabbTileProjections = {};
|
2013-08-11 18:02:10 +00:00
|
|
|
this.aabbTileProjections[Phaser.Physics.TileMapCell.CTYPE_22DEGs] = Phaser.Physics.Projection.AABB22Deg.CollideS;
|
|
|
|
this.aabbTileProjections[Phaser.Physics.TileMapCell.CTYPE_22DEGb] = Phaser.Physics.Projection.AABB22Deg.CollideB;
|
|
|
|
this.aabbTileProjections[Phaser.Physics.TileMapCell.CTYPE_45DEG] = Phaser.Physics.Projection.AABB45Deg.Collide;
|
|
|
|
this.aabbTileProjections[Phaser.Physics.TileMapCell.CTYPE_67DEGs] = Phaser.Physics.Projection.AABB67Deg.CollideS;
|
|
|
|
this.aabbTileProjections[Phaser.Physics.TileMapCell.CTYPE_67DEGb] = Phaser.Physics.Projection.AABB67Deg.CollideB;
|
2013-08-11 11:15:53 +00:00
|
|
|
this.aabbTileProjections[Phaser.Physics.TileMapCell.CTYPE_CONCAVE] = Phaser.Physics.Projection.AABBConcave.Collide;
|
|
|
|
this.aabbTileProjections[Phaser.Physics.TileMapCell.CTYPE_CONVEX] = Phaser.Physics.Projection.AABBConvex.Collide;
|
2013-08-11 18:02:10 +00:00
|
|
|
this.aabbTileProjections[Phaser.Physics.TileMapCell.CTYPE_FULL] = Phaser.Physics.Projection.AABBFull.Collide;
|
|
|
|
this.aabbTileProjections[Phaser.Physics.TileMapCell.CTYPE_HALF] = Phaser.Physics.Projection.AABBHalf.Collide;
|
2013-08-11 11:15:53 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public game: Phaser.Game;
|
|
|
|
|
2013-08-13 03:22:24 +00:00
|
|
|
public velocity: Phaser.Vec2;
|
|
|
|
public acceleration: Phaser.Vec2;
|
|
|
|
public drag: Phaser.Vec2;
|
|
|
|
public gravity: Phaser.Vec2;
|
|
|
|
public bounce: Phaser.Vec2;
|
|
|
|
public maxVelocity: Phaser.Vec2;
|
|
|
|
|
2013-08-11 11:15:53 +00:00
|
|
|
public static COL_NONE = 0;
|
|
|
|
public static COL_AXIS = 1;
|
|
|
|
public static COL_OTHER = 2;
|
|
|
|
|
|
|
|
public type: number = 0;
|
|
|
|
public pos: Phaser.Vec2;
|
|
|
|
public oldpos: Phaser.Vec2;
|
2013-08-12 03:08:15 +00:00
|
|
|
public width: number;
|
|
|
|
public height: number;
|
2013-08-11 11:15:53 +00:00
|
|
|
public oH: number;
|
|
|
|
public oV: number;
|
|
|
|
|
2013-08-13 03:22:24 +00:00
|
|
|
public _vx: number = 0;
|
|
|
|
public _vy: number = 0;
|
|
|
|
public _deltaX: number = 0;
|
|
|
|
public _deltaY: number = 0;
|
|
|
|
|
2013-08-11 11:15:53 +00:00
|
|
|
private aabbTileProjections;
|
|
|
|
|
2013-08-13 03:22:24 +00:00
|
|
|
public update() {
|
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
// N+ update loop
|
|
|
|
this.integrateVerlet();
|
|
|
|
|
|
|
|
if (this.acceleration.x != 0)
|
|
|
|
{
|
|
|
|
this.velocity.x += (this.acceleration.x * this.game.time.physicsElapsed);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.acceleration.y != 0)
|
|
|
|
{
|
|
|
|
this.velocity.y += (this.acceleration.y * this.game.time.physicsElapsed);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._vx = this.velocity.x * this.game.time.physicsElapsed;
|
|
|
|
this._vy = this.velocity.y * this.game.time.physicsElapsed;
|
|
|
|
|
|
|
|
var vx = this.pos.x - this.oldpos.x;
|
|
|
|
var vy = this.pos.y - this.oldpos.y;
|
|
|
|
|
|
|
|
this._deltaX = Math.min(20, Math.max(-20, vx + this._vx));
|
|
|
|
this._deltaY = Math.min(20, Math.max(-20, vy + this._vy));
|
|
|
|
|
|
|
|
this.pos.x = this.oldpos.x + this._deltaX;
|
|
|
|
this.pos.y = this.oldpos.y + this._deltaY;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public Nupdate() {
|
|
|
|
|
|
|
|
// N+ update loop
|
|
|
|
this.integrateVerlet();
|
|
|
|
|
|
|
|
var p = this.pos;
|
|
|
|
var o = this.oldpos;
|
|
|
|
var vx = p.x - o.x;
|
|
|
|
var vy = p.y - o.y;
|
|
|
|
|
|
|
|
var newx = Math.min(20, Math.max(-20, vx + this._vx));
|
|
|
|
var newy = Math.min(20, Math.max(-20, vy + this._vy));
|
|
|
|
|
|
|
|
this.pos.x = o.x + newx;
|
|
|
|
this.pos.y = o.y + newy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public updateFlixel() {
|
|
|
|
|
2013-08-13 03:22:24 +00:00
|
|
|
// Add 'go to sleep' option
|
|
|
|
|
|
|
|
this.oldpos.x = this.pos.x; //get vector values
|
|
|
|
this.oldpos.y = this.pos.y; //p = position
|
|
|
|
|
|
|
|
this._vx = (this.game.physics.computeVelocity(this.velocity.x, this.gravity.x, this.acceleration.x, this.drag.x, this.maxVelocity.x) - this.velocity.x) / 2;
|
|
|
|
this.velocity.x += this._vx;
|
|
|
|
//this.pos.x += (this.velocity.x * this.game.time.physicsElapsed) + this.gravity.x;
|
|
|
|
//this.pos.x += (this.velocity.x * this.game.time.physicsElapsed);
|
|
|
|
this._deltaX = this.velocity.x * this.game.time.physicsElapsed;
|
|
|
|
//body.aabb.pos.x += this._delta;
|
|
|
|
|
|
|
|
this._vy = (this.game.physics.computeVelocity(this.velocity.y, this.gravity.y, this.acceleration.y, this.drag.y, this.maxVelocity.y) - this.velocity.y) / 2;
|
|
|
|
//this._vy = this.game.physics.computeVelocity(this.velocity.y, this.gravity.y, this.acceleration.y, this.drag.y, this.maxVelocity.y);
|
|
|
|
this.velocity.y += this._vy;
|
|
|
|
//this.pos.y += (this.velocity.y * this.game.time.physicsElapsed) + this.gravity.y;
|
|
|
|
//this.pos.y += (this.velocity.y * this.game.time.physicsElapsed);
|
|
|
|
this._deltaY = this.velocity.y * this.game.time.physicsElapsed;
|
|
|
|
|
|
|
|
this.pos.x += this._deltaX;
|
|
|
|
this.pos.y += this._deltaY;
|
|
|
|
|
|
|
|
//this.integrateVerlet();
|
|
|
|
|
|
|
|
//var ox = this.oldpos.x;
|
|
|
|
//var oy = this.oldpos.y;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public FFupdate() {
|
|
|
|
|
|
|
|
this.oldpos.x = this.pos.x; //get vector values
|
|
|
|
this.oldpos.y = this.pos.y; //p = position
|
|
|
|
|
|
|
|
if (this.acceleration.x != 0)
|
|
|
|
{
|
|
|
|
this.velocity.x += (this.acceleration.x / 1000 * this.game.time.delta);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.acceleration.y != 0)
|
|
|
|
{
|
|
|
|
this.velocity.y += (this.acceleration.y / 1000 * this.game.time.delta);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._vx = ((this.velocity.x / 1000) * this.game.time.delta);
|
|
|
|
this._vy = ((this.velocity.y / 1000) * this.game.time.delta);
|
|
|
|
|
|
|
|
if (this._vx != 0)
|
|
|
|
{
|
|
|
|
if (this.drag.x != 0)
|
|
|
|
{
|
|
|
|
this._vx * this.drag.x;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.gravity.x != 0)
|
|
|
|
{
|
|
|
|
this._vx * this.gravity.x;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.velocity.x > this.maxVelocity.x)
|
|
|
|
{
|
|
|
|
this.velocity.x = this.maxVelocity.x;
|
|
|
|
}
|
|
|
|
else if (this.velocity.x < -this.maxVelocity.x)
|
|
|
|
{
|
|
|
|
this.velocity.x = -this.maxVelocity.x;
|
|
|
|
}
|
|
|
|
}
|
2013-08-11 11:15:53 +00:00
|
|
|
|
2013-08-13 03:22:24 +00:00
|
|
|
if (this._vy != 0)
|
|
|
|
{
|
|
|
|
if (this.drag.y != 0)
|
|
|
|
{
|
|
|
|
this._vy * this.drag.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.gravity.y != 0)
|
|
|
|
{
|
|
|
|
this._vy * this.gravity.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.velocity.y > this.maxVelocity.y)
|
|
|
|
{
|
|
|
|
this.velocity.y = this.maxVelocity.y;
|
|
|
|
}
|
|
|
|
else if (this.velocity.y < -this.maxVelocity.y)
|
|
|
|
{
|
|
|
|
this.velocity.y = -this.maxVelocity.y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.pos.x += this._vx;
|
|
|
|
this.pos.y += this._vy;
|
|
|
|
|
|
|
|
//this._vx = (this.game.physics.computeVelocity(this.velocity.x, this.gravity.x, this.acceleration.x, this.fdrag.x, this.maxVelocity.x) - this.velocity.x) / 2;
|
|
|
|
//this.velocity.x += this._vx;
|
|
|
|
//this.pos.x += (this.velocity.x * this.game.time.physicsElapsed) + this.gravity.x;
|
|
|
|
|
|
|
|
//this._vy = (this.game.physics.computeVelocity(this.velocity.y, this.gravity.y, this.acceleration.y, this.fdrag.y, this.maxVelocity.y) - this.velocity.y) / 2;
|
|
|
|
//this.velocity.y += this._vy;
|
|
|
|
//this.pos.y += (this.velocity.y * this.game.time.physicsElapsed) + this.gravity.y;
|
|
|
|
|
|
|
|
//this.integrateVerlet();
|
|
|
|
|
|
|
|
//var ox = this.oldpos.x;
|
|
|
|
//var oy = this.oldpos.y;
|
|
|
|
|
|
|
|
//this.oldpos.x = this.pos.x; //get vector values
|
|
|
|
//this.oldpos.y = this.pos.y; //p = position
|
|
|
|
|
|
|
|
//integrate
|
|
|
|
//this.pos.x += (this.drag.x * this.pos.x) - (this.drag.x * ox) + this.gravity.x;
|
|
|
|
//this.pos.y += (this.drag.y * this.pos.y) - (this.drag.y * oy) + this.gravity.y;
|
|
|
|
|
|
|
|
//this._vx = (this.velocity.x / 1000 * this.game.time.delta);
|
|
|
|
//this._vy = (this.velocity.y / 1000 * this.game.time.delta);
|
|
|
|
//this._vx = 0.2;
|
|
|
|
//this._vy = 0.2;
|
|
|
|
|
|
|
|
//this.pos.x = this.oldpos.x + Math.min(20, Math.max(-20, this.pos.x - this.oldpos.x + this._vx));
|
|
|
|
//this.pos.y = this.oldpos.y + Math.min(20, Math.max(-20, this.pos.y - this.oldpos.y + this._vy));
|
|
|
|
|
|
|
|
//this.integrateVerlet();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public integrateVerlet() {
|
2013-08-11 11:15:53 +00:00
|
|
|
|
2013-08-12 03:08:15 +00:00
|
|
|
var ox = this.oldpos.x;
|
|
|
|
var oy = this.oldpos.y;
|
2013-08-11 11:15:53 +00:00
|
|
|
|
2013-08-12 03:08:15 +00:00
|
|
|
this.oldpos.x = this.pos.x; //get vector values
|
|
|
|
this.oldpos.y = this.pos.y; //p = position
|
2013-08-11 11:15:53 +00:00
|
|
|
|
|
|
|
//integrate
|
2013-08-28 06:02:55 +00:00
|
|
|
this.pos.x += (this.drag.x * this.pos.x) - (this.drag.x * ox) + this.gravity.x;
|
|
|
|
this.pos.y += (this.drag.y * this.pos.y) - (this.drag.y * oy) + this.gravity.y;
|
2013-08-11 11:15:53 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-08-11 18:02:10 +00:00
|
|
|
public reportCollisionVsWorld(px: number, py: number, dx: number, dy: number, obj: TileMapCell = null) {
|
2013-08-11 11:15:53 +00:00
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
//calc velocity (original way)
|
|
|
|
var vx = this.pos.x - this.oldpos.x;
|
|
|
|
var vy = this.pos.y - this.oldpos.y;
|
|
|
|
|
|
|
|
//find component of velocity parallel to collision normal
|
|
|
|
var dp = (vx * dx + vy * dy);
|
|
|
|
var nx = dp * dx;//project velocity onto collision normal
|
|
|
|
var ny = dp * dy;//nx,ny is normal velocity
|
|
|
|
|
|
|
|
var tx = vx - nx;//px,py is tangent velocity
|
|
|
|
var ty = vy - ny;
|
|
|
|
|
|
|
|
//we only want to apply collision response forces if the object is travelling into, and not out of, the collision
|
|
|
|
|
|
|
|
// default is moving out of collision, don't apply force
|
|
|
|
var bx = 0;
|
|
|
|
var by = 0;
|
|
|
|
var fx = 0;
|
|
|
|
var fy = 0;
|
|
|
|
|
|
|
|
if (dp < 0)
|
|
|
|
{
|
|
|
|
// moving into collision, apply forces
|
|
|
|
var f = 0.05; // friction
|
|
|
|
fx = tx * f;
|
|
|
|
fy = ty * f;
|
|
|
|
|
|
|
|
var b = 1 + 0.5;//this bounce constant should be elsewhere, i.e inside the object/tile/etc..
|
|
|
|
|
|
|
|
bx = (nx * b);
|
|
|
|
by = (ny * b);
|
|
|
|
}
|
|
|
|
|
|
|
|
// project object out of collision
|
|
|
|
this.pos.x += px;
|
|
|
|
this.pos.y += py;
|
|
|
|
|
|
|
|
this.oldpos.x += px + bx + fx;
|
|
|
|
this.oldpos.y += py + by + fy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public TWEAKEDreportCollisionVsWorld(px: number, py: number, dx: number, dy: number, obj: TileMapCell = null) {
|
|
|
|
|
2013-08-13 03:22:24 +00:00
|
|
|
//calc velocity (original way)
|
|
|
|
//this._vx = this.pos.x - this.oldpos.x;
|
|
|
|
//this._vy = this.pos.y - this.oldpos.y;
|
|
|
|
//var vx = this.pos.x - this.oldpos.x;
|
|
|
|
//var vy = this.pos.y - this.oldpos.y;
|
2013-08-11 11:15:53 +00:00
|
|
|
|
|
|
|
//find component of velocity parallel to collision normal
|
2013-08-13 03:22:24 +00:00
|
|
|
//var dp = (vx * dx + vy * dy);
|
|
|
|
//var nx = dp * dx;//project velocity onto collision normal
|
|
|
|
//var ny = dp * dy;//nx,ny is normal velocity
|
|
|
|
|
|
|
|
//var tx = vx - nx;//px,py is tangent velocity
|
|
|
|
//var ty = vy - ny;
|
|
|
|
|
|
|
|
var dp = (this._vx * dx + this._vy * dy);
|
2013-08-11 11:15:53 +00:00
|
|
|
var nx = dp * dx;//project velocity onto collision normal
|
|
|
|
var ny = dp * dy;//nx,ny is normal velocity
|
|
|
|
|
2013-08-13 03:22:24 +00:00
|
|
|
var tx = this._vx - nx;//px,py is tangent velocity
|
|
|
|
var ty = this._vy - ny;
|
|
|
|
|
|
|
|
//console.log('nxy', nx, ny);
|
|
|
|
//console.log('nxy', nx, ny);
|
|
|
|
//console.log('txy', tx, ty);
|
2013-08-11 11:15:53 +00:00
|
|
|
|
2013-08-13 03:22:24 +00:00
|
|
|
this.pos.x += px; //project object out of collision
|
2013-08-12 03:08:15 +00:00
|
|
|
this.pos.y += py;
|
2013-08-11 11:15:53 +00:00
|
|
|
|
2013-08-13 03:22:24 +00:00
|
|
|
//this.oldpos.x += px;
|
|
|
|
//this.oldpos.y += py;
|
|
|
|
//this.pos.x += px;
|
|
|
|
//this.pos.y += py;
|
|
|
|
|
|
|
|
//this.velocity.x += nx;
|
|
|
|
//this.velocity.y += ny;
|
2013-08-11 11:15:53 +00:00
|
|
|
|
2013-08-12 03:08:15 +00:00
|
|
|
//we only want to apply collision response forces if the object is travelling into, and not out of, the collision
|
|
|
|
if (dp < 0)
|
2013-08-13 03:22:24 +00:00
|
|
|
//if (1 < 0)
|
2013-08-11 11:15:53 +00:00
|
|
|
{
|
2013-08-12 03:08:15 +00:00
|
|
|
// moving into collision, apply forces
|
2013-08-13 03:22:24 +00:00
|
|
|
//var b = 1 + 0.5;//this bounce constant should be elsewhere, i.e inside the object/tile/etc..
|
|
|
|
//var b = 0.5;//this bounce constant should be elsewhere, i.e inside the object/tile/etc..
|
|
|
|
//var f = 0.05; // friction
|
|
|
|
//var fx = tx * f;
|
|
|
|
//var fy = ty * f;
|
|
|
|
|
|
|
|
//this.oldpos.x += (nx * b) + fx;//apply bounce+friction impulses which alter velocity
|
|
|
|
//this.oldpos.y += (ny * b) + fy;
|
|
|
|
this.velocity.x += nx;
|
|
|
|
this.velocity.y += ny;
|
|
|
|
|
|
|
|
if (dx !== 0)
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
this.velocity.x *= -1 * this.bounce.x;
|
2013-08-13 03:22:24 +00:00
|
|
|
}
|
2013-08-12 03:08:15 +00:00
|
|
|
|
2013-08-13 03:22:24 +00:00
|
|
|
if (dy !== 0)
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
this.velocity.y *= -1 * this.bounce.y;
|
2013-08-13 03:22:24 +00:00
|
|
|
}
|
2013-08-11 11:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-08-12 03:08:15 +00:00
|
|
|
public collideAABBVsTile(tile: Phaser.Physics.TileMapCell) {
|
2013-08-11 11:15:53 +00:00
|
|
|
|
|
|
|
var pos = this.pos;
|
|
|
|
var c = tile;
|
|
|
|
|
|
|
|
var tx = c.pos.x;
|
|
|
|
var ty = c.pos.y;
|
|
|
|
var txw = c.xw;
|
|
|
|
var tyw = c.yw;
|
|
|
|
|
|
|
|
var dx = pos.x - tx;//tile->obj delta
|
2013-08-12 03:08:15 +00:00
|
|
|
var px = (txw + this.width) - Math.abs(dx);//penetration depth in x
|
2013-08-11 11:15:53 +00:00
|
|
|
|
|
|
|
if (0 < px)
|
|
|
|
{
|
|
|
|
var dy = pos.y - ty;//tile->obj delta
|
2013-08-12 03:08:15 +00:00
|
|
|
var py = (tyw + this.height) - Math.abs(dy);//pen depth in y
|
2013-08-11 11:15:53 +00:00
|
|
|
|
|
|
|
if (0 < py)
|
|
|
|
{
|
|
|
|
//object may be colliding with tile; call tile-specific collision function
|
|
|
|
|
|
|
|
//calculate projection vectors
|
|
|
|
if (px < py)
|
|
|
|
{
|
|
|
|
//project in x
|
|
|
|
if (dx < 0)
|
|
|
|
{
|
|
|
|
//project to the left
|
|
|
|
px *= -1;
|
|
|
|
py = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//proj to right
|
|
|
|
py = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//project in y
|
|
|
|
if (dy < 0)
|
|
|
|
{
|
|
|
|
//project up
|
|
|
|
px = 0;
|
|
|
|
py *= -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//project down
|
|
|
|
px = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-11 18:02:10 +00:00
|
|
|
this.resolveBoxTile(px, py, this, c);
|
2013-08-11 11:15:53 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-11 18:02:10 +00:00
|
|
|
public collideAABBVsWorldBounds() {
|
2013-08-11 11:15:53 +00:00
|
|
|
|
|
|
|
var p = this.pos;
|
2013-08-12 03:08:15 +00:00
|
|
|
var xw = this.width;
|
|
|
|
var yw = this.height;
|
2013-08-11 11:15:53 +00:00
|
|
|
var XMIN = 0;
|
|
|
|
var XMAX = 800;
|
|
|
|
var YMIN = 0;
|
|
|
|
var YMAX = 600;
|
|
|
|
|
|
|
|
//collide vs. x-bounds
|
2013-08-13 03:22:24 +00:00
|
|
|
//test XMIN left side
|
2013-08-11 11:15:53 +00:00
|
|
|
var dx = XMIN - (p.x - xw);
|
|
|
|
if (0 < dx)
|
|
|
|
{
|
|
|
|
//object is colliding with XMIN
|
2013-08-11 18:02:10 +00:00
|
|
|
this.reportCollisionVsWorld(dx, 0, 1, 0, null);
|
2013-08-11 11:15:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-08-13 03:22:24 +00:00
|
|
|
//test XMAX right side
|
2013-08-11 11:15:53 +00:00
|
|
|
dx = (p.x + xw) - XMAX;
|
|
|
|
if (0 < dx)
|
|
|
|
{
|
|
|
|
//object is colliding with XMAX
|
2013-08-11 18:02:10 +00:00
|
|
|
this.reportCollisionVsWorld(-dx, 0, -1, 0, null);
|
2013-08-11 11:15:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//collide vs. y-bounds
|
2013-08-13 03:22:24 +00:00
|
|
|
//test YMIN top
|
2013-08-11 11:15:53 +00:00
|
|
|
var dy = YMIN - (p.y - yw);
|
|
|
|
if (0 < dy)
|
|
|
|
{
|
|
|
|
//object is colliding with YMIN
|
2013-08-11 18:02:10 +00:00
|
|
|
this.reportCollisionVsWorld(0, dy, 0, 1, null);
|
2013-08-11 11:15:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-08-13 03:22:24 +00:00
|
|
|
//test YMAX bottom
|
2013-08-11 11:15:53 +00:00
|
|
|
dy = (p.y + yw) - YMAX;
|
|
|
|
if (0 < dy)
|
|
|
|
{
|
|
|
|
//object is colliding with YMAX
|
2013-08-11 18:02:10 +00:00
|
|
|
this.reportCollisionVsWorld(0, -dy, 0, -1, null);
|
2013-08-11 11:15:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-11 18:02:10 +00:00
|
|
|
public resolveBoxTile(x, y, box, t) {
|
2013-08-11 11:15:53 +00:00
|
|
|
|
|
|
|
if (0 < t.ID)
|
|
|
|
{
|
|
|
|
return this.aabbTileProjections[t.CTYPE](x, y, box, t);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-08-11 18:02:10 +00:00
|
|
|
//trace("resolveBoxTile() was called with an empty (or unknown) tile!: ID=" + t.ID + " ("+ t.i + "," + t.j + ")");
|
2013-08-11 11:15:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-13 03:22:24 +00:00
|
|
|
public render(context: CanvasRenderingContext2D) {
|
|
|
|
|
|
|
|
context.beginPath();
|
|
|
|
context.strokeStyle = 'rgb(0,255,0)';
|
|
|
|
context.strokeRect(this.pos.x - this.width, this.pos.y - this.height, this.width * 2, this.height * 2);
|
|
|
|
context.stroke();
|
|
|
|
context.closePath();
|
|
|
|
|
|
|
|
context.fillStyle = 'rgb(0,255,0)';
|
|
|
|
context.fillRect(this.pos.x, this.pos.y, 2, 2);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-08-11 11:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|