phaser/v3/src/camera/3d/Camera3D.js

442 lines
10 KiB
JavaScript
Raw Normal View History

var Class = require('../../utils/Class');
var Matrix4 = require('../../math/Matrix4');
var RotateVec3 = require('../../math/RotateVec3');
var Set = require('../../structs/Set');
var Sprite3D = require('../../gameobjects/sprite3d/Sprite3D');
var Vector2 = require('../../math/Vector2');
var Vector3 = require('../../math/Vector3');
var Vector4 = require('../../math/Vector4');
2017-09-16 01:31:33 +00:00
// Local cache vars
2017-09-15 03:04:51 +00:00
var tmpVec3 = new Vector3();
var tmpVec4 = new Vector4();
var dirvec = new Vector3();
var rightvec = new Vector3();
var billboardMatrix = new Matrix4();
2017-09-15 03:04:51 +00:00
var Camera3D = new Class({
initialize: function (scene)
2017-09-16 01:31:33 +00:00
{
this.scene = scene;
this.displayList = scene.sys.displayList;
this.updateList = scene.sys.updateList;
this.name = '';
2017-09-15 03:04:51 +00:00
this.direction = new Vector3(0, 0, -1);
this.up = new Vector3(0, 1, 0);
this.position = new Vector3();
// The mapping from 3D size units to pixels.
// In the default case 1 3D unit = 128 pixels. So a sprite that is
// 256 x 128 px in size will be 2 x 1 units.
// Change to whatever best fits your game assets.
this.pixelScale = 128;
2017-09-15 03:04:51 +00:00
this.projection = new Matrix4();
this.view = new Matrix4();
this.combined = new Matrix4();
this.invProjectionView = new Matrix4();
this.near = 1;
this.far = 100;
this.ray = {
origin: new Vector3(),
direction: new Vector3()
};
this.viewportWidth = 0;
this.viewportHeight = 0;
this.billboardMatrixDirty = true;
this.children = new Set();
},
setScene: function (scene)
{
this.scene = scene;
return this;
},
add: function (sprite3D)
{
this.children.set(sprite3D);
this.updateChildren();
return sprite3D;
},
remove: function (child)
{
this.displayList.remove(child.gameObject);
this.updateList.remove(child.gameObject);
this.children.delete(child);
return this;
},
clear: function ()
{
var children = this.getChildren();
for (var i = 0; i < children.length; i++)
{
this.remove(children[i]);
}
return this;
},
getChildren: function ()
{
return this.children.entries;
},
create: function (x, y, z, key, frame, visible)
{
if (visible === undefined) { visible = true; }
var child = new Sprite3D(this.scene, x, y, z, key, frame);
this.displayList.add(child.gameObject);
this.updateList.add(child.gameObject);
child.visible = visible;
this.children.set(child);
this.updateChildren();
return child;
2017-09-15 03:04:51 +00:00
},
setPosition: function (x, y, z)
{
this.position.set(x, y, z);
return this.update();
},
2017-09-15 03:04:51 +00:00
/**
* Sets the width and height of the viewport. Does not
* update any matrices.
*
* @method setViewport
* @param {Number} width the viewport width
* @param {Number} height the viewport height
*/
2017-09-16 01:31:33 +00:00
setViewport: function (width, height)
{
2017-09-15 03:04:51 +00:00
this.viewportWidth = width;
this.viewportHeight = height;
2017-09-16 01:31:33 +00:00
return this.update();
2017-09-15 03:04:51 +00:00
},
/**
* Translates this camera by a specified Vector3 object
* or x, y, z parameters. Any undefined x y z values will
* default to zero, leaving that component unaffected.
* If you wish to set the camera position directly call setPosition instead.
2017-09-15 03:04:51 +00:00
*
* @param {[type]} vec [description]
* @return {[type]} [description]
*/
2017-09-16 01:31:33 +00:00
translate: function (x, y, z)
{
if (typeof x === 'object')
{
2017-09-15 03:04:51 +00:00
this.position.x += x.x || 0;
this.position.y += x.y || 0;
this.position.z += x.z || 0;
2017-09-16 01:31:33 +00:00
}
else
{
2017-09-15 03:04:51 +00:00
this.position.x += x || 0;
this.position.y += y || 0;
this.position.z += z || 0;
}
2017-09-16 01:31:33 +00:00
return this.update();
2017-09-15 03:04:51 +00:00
},
2017-09-16 01:31:33 +00:00
lookAt: function (x, y, z)
{
var dir = this.direction;
var up = this.up;
2017-09-15 03:04:51 +00:00
2017-09-16 01:31:33 +00:00
if (typeof x === 'object')
{
2017-09-15 03:04:51 +00:00
dir.copy(x);
2017-09-16 01:31:33 +00:00
}
else
{
2017-09-15 03:04:51 +00:00
dir.set(x, y, z);
}
dir.sub(this.position).normalize();
2017-09-16 01:31:33 +00:00
// Calculate right vector
2017-09-15 03:04:51 +00:00
tmpVec3.copy(dir).cross(up).normalize();
2017-09-16 01:31:33 +00:00
// Calculate up vector
2017-09-15 03:04:51 +00:00
up.copy(tmpVec3).cross(dir).normalize();
2017-09-16 01:31:33 +00:00
return this.update();
2017-09-15 03:04:51 +00:00
},
2017-09-16 01:31:33 +00:00
rotate: function (radians, axis)
{
RotateVec3(this.direction, axis, radians);
RotateVec3(this.up, axis, radians);
return this.update();
2017-09-15 03:04:51 +00:00
},
2017-09-16 01:31:33 +00:00
rotateAround: function (point, radians, axis)
{
2017-09-16 03:00:45 +00:00
tmpVec3.copy(point).sub(this.position);
2017-09-16 01:31:33 +00:00
2017-09-16 03:00:45 +00:00
this.translate(tmpVec3);
2017-09-15 03:04:51 +00:00
this.rotate(radians, axis);
2017-09-16 03:00:45 +00:00
this.translate(tmpVec3.negate());
2017-09-16 01:31:33 +00:00
return this.update();
2017-09-15 03:04:51 +00:00
},
2017-09-16 01:31:33 +00:00
project: function (vec, out)
{
if (out === undefined) { out = new Vector4(); }
2017-09-15 03:04:51 +00:00
2017-09-16 01:31:33 +00:00
// TODO: support viewport XY
var viewportWidth = this.viewportWidth;
var viewportHeight = this.viewportHeight;
var n = Camera3D.NEAR_RANGE;
var f = Camera3D.FAR_RANGE;
2017-09-15 03:04:51 +00:00
2017-09-16 01:31:33 +00:00
// For useful Z and W values we should do the usual steps: clip space -> NDC -> window coords
2017-09-15 03:04:51 +00:00
2017-09-16 01:31:33 +00:00
// Implicit 1.0 for w component
2017-09-15 03:04:51 +00:00
tmpVec4.set(vec.x, vec.y, vec.z, 1.0);
2017-09-16 01:31:33 +00:00
// Transform into clip space
2017-09-15 03:04:51 +00:00
tmpVec4.transformMat4(this.combined);
// Avoid divide by zero when 0x0x0 camera projects to a 0x0x0 vec3
if (tmpVec4.w === 0)
{
tmpVec4.w = 1;
}
2017-09-16 01:31:33 +00:00
// Now into NDC
2017-09-15 03:04:51 +00:00
tmpVec4.x = tmpVec4.x / tmpVec4.w;
tmpVec4.y = tmpVec4.y / tmpVec4.w;
tmpVec4.z = tmpVec4.z / tmpVec4.w;
2017-09-16 01:31:33 +00:00
// And finally into window coordinates
2017-09-15 03:04:51 +00:00
out.x = viewportWidth / 2 * tmpVec4.x + (0 + viewportWidth / 2);
out.y = viewportHeight / 2 * tmpVec4.y + (0 + viewportHeight / 2);
out.z = (f - n) / 2 * tmpVec4.z + (f + n) / 2;
2017-09-16 01:31:33 +00:00
// If the out vector has a fourth component, we also store (1/clip.w), same idea as gl_FragCoord.w
2017-09-15 03:04:51 +00:00
if (out.w === 0 || out.w)
2017-09-16 01:31:33 +00:00
{
2017-09-15 03:04:51 +00:00
out.w = 1 / tmpVec4.w;
2017-09-16 01:31:33 +00:00
}
2017-09-15 03:04:51 +00:00
return out;
},
2017-09-16 01:31:33 +00:00
unproject: function (vec, out)
{
if (out === undefined) { out = new Vector3(); }
2017-09-15 03:04:51 +00:00
var viewport = tmpVec4.set(0, 0, this.viewportWidth, this.viewportHeight);
2017-09-16 01:31:33 +00:00
2017-09-15 03:04:51 +00:00
return out.copy(vec).unproject(viewport, this.invProjectionView);
},
2017-09-16 01:31:33 +00:00
getPickRay: function (x, y)
{
var origin = this.ray.origin.set(x, y, 0);
var direction = this.ray.direction.set(x, y, 1);
var viewport = tmpVec4.set(0, 0, this.viewportWidth, this.viewportHeight);
var mtx = this.invProjectionView;
2017-09-15 03:04:51 +00:00
origin.unproject(viewport, mtx);
2017-09-16 01:31:33 +00:00
2017-09-15 03:04:51 +00:00
direction.unproject(viewport, mtx);
direction.sub(origin).normalize();
2017-09-16 01:31:33 +00:00
2017-09-15 03:04:51 +00:00
return this.ray;
},
updateChildren: function ()
{
var children = this.children.entries;
for (var i = 0; i < children.length; i++)
{
children[i].project(this);
}
},
// Overriden by subclasses
2017-09-16 01:31:33 +00:00
update: function ()
{
this.updateChildren();
return this;
},
updateBillboardMatrix: function ()
{
var dir = dirvec.set(this.direction).negate();
// Better view-aligned billboards might use this:
// var dir = tmp.set(camera.position).sub(p).normalize();
var right = rightvec.set(this.up).cross(dir).normalize();
var up = tmpVec3.set(dir).cross(right).normalize();
var out = billboardMatrix.val;
out[0] = right.x;
out[1] = right.y;
out[2] = right.z;
out[3] = 0;
out[4] = up.x;
out[5] = up.y;
out[6] = up.z;
out[7] = 0;
out[8] = dir.x;
out[9] = dir.y;
out[10] = dir.z;
out[11] = 0;
out[12] = 0;
out[13] = 0;
out[14] = 0;
out[15] = 1;
this.billboardMatrixDirty = false;
},
/**
* This is a utility function for canvas 3D rendering,
* which determines the "point size" of a camera-facing
* sprite billboard given its 3D world position
* (origin at center of sprite) and its world width
* and height in x/y.
*
* We place into the output Vector2 the scaled width
* and height. If no `out` is specified, a new Vector2
* will be created for convenience (this should be avoided
* in tight loops).
*
* @param {Vector3} vec the position of the 3D sprite
* @param {Vector2} size the x and y dimensions of the sprite
* @param {Vector2} out the result, scaled x and y dimensions in 3D space
* @return {Vector2} returns the out parameter, or a new Vector2 if none was given
*/
getPointSize: function (vec, size, out)
{
if (out === undefined) { out = new Vector2(); }
//TODO: optimize this with a simple distance calculation:
//https://developer.valvesoftware.com/wiki/Field_of_View
if (this.billboardMatrixDirty)
{
this.updateBillboardMatrix();
}
var tmp = tmpVec3;
var dx = (size.x / this.pixelScale) / 2;
var dy = (size.y / this.pixelScale) / 2;
tmp.set(-dx, -dy, 0).transformMat4(billboardMatrix).add(vec);
this.project(tmp, tmp);
var tlx = tmp.x;
var tly = tmp.y;
tmp.set(dx, dy, 0).transformMat4(billboardMatrix).add(vec);
this.project(tmp, tmp);
var brx = tmp.x;
var bry = tmp.y;
var w = Math.abs(brx - tlx);
var h = Math.abs(bry - tly);
return out.set(w, h);
},
destroy: function ()
{
this.children.clear();
this.scene = undefined;
this.children = undefined;
},
x: {
get: function ()
{
return this.position.x;
},
set: function (value)
{
this.position.x = value;
this.update();
}
},
y: {
get: function ()
{
return this.position.y;
},
set: function (value)
{
this.position.y = value;
this.update();
}
},
z: {
get: function ()
{
return this.position.z;
},
set: function (value)
{
this.position.z = value;
this.update();
}
2017-09-15 03:04:51 +00:00
}
2017-09-15 03:04:51 +00:00
});
Camera3D.FAR_RANGE = 1.0;
Camera3D.NEAR_RANGE = 0.0;
module.exports = Camera3D;