2015-07-03 13:27:05 +02:00
|
|
|
var Log = require('../lib/NodeLog.js');
|
2015-11-13 10:36:54 +01:00
|
|
|
var L3D = require('../../static/js/l3d.min.js');
|
|
|
|
var THREE = require('three');
|
2015-07-03 13:27:05 +02:00
|
|
|
|
2016-01-04 17:49:05 +01:00
|
|
|
/**
|
|
|
|
* Clones a vector
|
|
|
|
* @private
|
|
|
|
* @param {Object} vec an object with attributes x, y, and z
|
|
|
|
* @return {Object} a new object with the same x, y, and z attributes
|
|
|
|
*/
|
2015-10-20 16:30:52 +02:00
|
|
|
function clone(vec) {
|
|
|
|
return {x : vec.x, y : vec.y, z : vec.z};
|
|
|
|
}
|
|
|
|
|
2016-01-04 17:49:05 +01:00
|
|
|
/**
|
|
|
|
* Rotates a vector, three.js style
|
|
|
|
* @private
|
|
|
|
* @param {Object} vec1 an object with attributes x, y, and z
|
|
|
|
* @param {Number} x three.js's rotateX value
|
|
|
|
* @param {Number} y three.js's rotateY value
|
|
|
|
* @param {Number} z three.js's rotateZ value
|
|
|
|
* @return {Object} a new vector corresponding to the rotated vector
|
|
|
|
*/
|
2015-10-20 16:30:52 +02:00
|
|
|
function rotation(vec1, x, y, z) {
|
|
|
|
|
|
|
|
var cos = Math.cos(z);
|
|
|
|
var sin = Math.sin(z);
|
|
|
|
|
|
|
|
var newVec = {x:0, y:0, z:0};
|
|
|
|
oldVec = clone(vec1);
|
|
|
|
|
|
|
|
newVec.x = cos * oldVec.x - sin * oldVec.y;
|
|
|
|
newVec.y = sin * oldVec.x + cos * oldVec.y;
|
|
|
|
newVec.z = oldVec.z;
|
|
|
|
|
|
|
|
oldVec = clone(newVec);
|
|
|
|
|
|
|
|
cos = Math.cos(y);
|
|
|
|
sin = Math.sin(y);
|
|
|
|
|
|
|
|
newVec.x = cos * oldVec.x + sin * oldVec.z;
|
|
|
|
newVec.y = oldVec.y;
|
|
|
|
newVec.z = - sin * oldVec.x + cos * oldVec.z;
|
|
|
|
|
|
|
|
cos = Math.cos(x);
|
|
|
|
sin = Math.sin(x);
|
|
|
|
|
|
|
|
oldVec = clone(newVec);
|
|
|
|
|
|
|
|
newVec.x = oldVec.x;
|
|
|
|
newVec.y = oldVec.y * cos - oldVec.z * sin;
|
|
|
|
newVec.z = oldVec.y * sin + oldVec.z * cos;
|
|
|
|
|
|
|
|
return clone(newVec);
|
|
|
|
}
|
|
|
|
|
2016-01-04 17:49:05 +01:00
|
|
|
/**
|
|
|
|
* Applies a transformation to a vector
|
|
|
|
* @param {Object} vector an object with attributes x, y, and z
|
|
|
|
* @param {Object} transfo an object with attributes
|
|
|
|
* <ul>
|
|
|
|
* <li><code>translation</code> : an object with attributes x, y, and z representing the translation</li>
|
|
|
|
* <li><code>rotation</code> : an object with attributes x, y, and z representing the rotation</li>
|
|
|
|
* <li><code>scale</code> : a number representing the scaling </li>
|
|
|
|
* </ul>
|
|
|
|
* @see {@link rotation}
|
|
|
|
* @return {Object} a new object with attributes x, y and z corresponding to the transformation applied to <code>vector</code>
|
|
|
|
*/
|
2015-10-20 16:30:52 +02:00
|
|
|
function applyTransformation(vector, transfo) {
|
|
|
|
|
|
|
|
var ret = rotation(vector, transfo.rotation.x, transfo.rotation.y, transfo.rotation.z);
|
|
|
|
var scale = transfo.scale || 1;
|
|
|
|
|
|
|
|
return {
|
|
|
|
x: (ret.x + transfo.translation.x) * scale,
|
|
|
|
y: (ret.y + transfo.translation.y) * scale,
|
|
|
|
z: (ret.z + transfo.translation.z) * scale
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-29 09:50:26 +02:00
|
|
|
/**
|
2015-06-29 15:41:18 +02:00
|
|
|
* Represents a mesh. All meshes are loaded once in geo.availableMesh to avoid
|
2015-06-29 09:50:26 +02:00
|
|
|
* loading at each mesh request
|
|
|
|
* @constructor
|
2016-01-04 17:49:05 +01:00
|
|
|
* @param {String} path path to the .obj file
|
|
|
|
* @param {Object} transfo a transformation object to apply during the loading
|
|
|
|
* @param {function} callback callback to call on the mesh
|
2015-06-29 15:41:18 +02:00
|
|
|
* @memberOf geo
|
2015-06-29 09:50:26 +02:00
|
|
|
*/
|
2015-10-20 16:30:52 +02:00
|
|
|
geo.MeshContainer = function(path, transfo, callback) {
|
|
|
|
|
|
|
|
if (callback === undefined && typeof transfo === 'function') {
|
|
|
|
callback = transfo;
|
|
|
|
transfo = {translation: {x:0,y:0,z:0}, rotation: {x:0,y:0,z:0}};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (transfo === undefined) {
|
|
|
|
transfo = {translation: {x:0,y:0,z:0}, rotation: {x:0,y:0,z:0}};
|
|
|
|
}
|
2015-06-29 09:50:26 +02:00
|
|
|
|
|
|
|
/**
|
2016-01-04 17:49:05 +01:00
|
|
|
* Array of each part of the mesh
|
2015-06-29 15:41:18 +02:00
|
|
|
* @type {geo.Mesh[]}
|
2015-06-29 09:50:26 +02:00
|
|
|
*/
|
|
|
|
this.meshes = [];
|
|
|
|
|
|
|
|
/**
|
2016-01-04 17:49:05 +01:00
|
|
|
* Array of the vertices of the meshes (all merged)
|
2015-06-29 15:41:18 +02:00
|
|
|
* @type {geo.Vertex[]}
|
2015-06-29 09:50:26 +02:00
|
|
|
*/
|
|
|
|
this.vertices = [];
|
|
|
|
|
|
|
|
/**
|
2016-01-04 17:49:05 +01:00
|
|
|
* Array of the faces of the meshes (all merged)
|
2015-06-29 15:41:18 +02:00
|
|
|
* @type {geo.Face[]}
|
2015-06-29 09:50:26 +02:00
|
|
|
*/
|
|
|
|
this.faces = [];
|
|
|
|
|
|
|
|
/**
|
2016-01-04 17:49:05 +01:00
|
|
|
* Array of the normals of the meshes (all merged)
|
2015-06-29 15:41:18 +02:00
|
|
|
* @type {geo.Normal[]}
|
2015-06-29 09:50:26 +02:00
|
|
|
*/
|
|
|
|
this.normals = [];
|
|
|
|
|
|
|
|
/**
|
2016-01-04 17:49:05 +01:00
|
|
|
* Array of the texture coordinates (all merged)
|
2015-06-29 15:41:18 +02:00
|
|
|
* @type {geo.TexCoord[]}
|
2015-06-29 09:50:26 +02:00
|
|
|
*/
|
|
|
|
this.texCoords = [];
|
|
|
|
|
2015-07-07 11:47:21 +02:00
|
|
|
/**
|
|
|
|
* Number of elements to stream in the mesh
|
|
|
|
* @type {Number}
|
|
|
|
*/
|
2015-07-07 14:40:32 +02:00
|
|
|
this.numberOfFaces = 0;
|
2015-07-07 11:47:21 +02:00
|
|
|
|
2016-01-04 17:49:05 +01:00
|
|
|
/**
|
|
|
|
* Transformation that should be applied to the mesh when loading it
|
|
|
|
* @type {Object}
|
|
|
|
* @see {@link applyTransformation}
|
|
|
|
*/
|
2015-10-20 16:30:52 +02:00
|
|
|
this.transfo = transfo;
|
|
|
|
|
2016-01-04 17:49:05 +01:00
|
|
|
/**
|
|
|
|
* Function to call on the mesh once it is loaded
|
|
|
|
* @type {function}
|
|
|
|
*/
|
2015-07-02 15:05:59 +02:00
|
|
|
this.callback = callback;
|
|
|
|
|
2015-06-29 09:50:26 +02:00
|
|
|
if (path !== undefined) {
|
|
|
|
|
2015-11-13 10:36:54 +01:00
|
|
|
this.loadFromFile('../' + path);
|
2015-06-29 09:50:26 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-07-01 10:14:15 +02:00
|
|
|
};
|
2015-06-29 09:50:26 +02:00
|
|
|
|
|
|
|
/**
|
2016-01-04 17:49:05 +01:00
|
|
|
* Loads a obj file and apply the transformation
|
2015-06-29 09:50:26 +02:00
|
|
|
* @param {string} path the path to the file
|
|
|
|
*/
|
2015-06-29 15:41:18 +02:00
|
|
|
geo.MeshContainer.prototype.loadFromFile = function(path) {
|
2015-06-29 09:50:26 +02:00
|
|
|
var self = this;
|
|
|
|
|
2015-07-02 15:05:59 +02:00
|
|
|
fs.readFile(path, {encoding: 'utf-8'}, function(err, data) {
|
2015-06-29 09:50:26 +02:00
|
|
|
|
|
|
|
var currentMesh;
|
|
|
|
|
|
|
|
// Get lines from file
|
|
|
|
var lines = data.toString('utf-8').split("\n");
|
|
|
|
|
|
|
|
// For each line
|
|
|
|
for (var i = 0; i < lines.length; i++) {
|
|
|
|
|
|
|
|
var line = lines[i];
|
|
|
|
|
|
|
|
if (line[0] === 'v') {
|
|
|
|
|
|
|
|
if (line[1] === 't') {
|
|
|
|
|
|
|
|
// Texture coord
|
2015-06-29 15:41:18 +02:00
|
|
|
var texCoord = new geo.TexCoord(line);
|
2015-06-29 09:50:26 +02:00
|
|
|
texCoord.index = self.texCoords.length;
|
|
|
|
self.texCoords.push(texCoord);
|
|
|
|
|
|
|
|
} else if (line[1] === 'n') {
|
|
|
|
|
2015-06-29 15:41:18 +02:00
|
|
|
var normal = new geo.Normal(line);
|
2015-06-29 09:50:26 +02:00
|
|
|
normal.index = self.normals.length;
|
|
|
|
self.normals.push(normal);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Just a simple vertex
|
2015-06-29 15:41:18 +02:00
|
|
|
var vertex = new geo.Vertex(line);
|
2015-10-20 16:30:52 +02:00
|
|
|
var vertexTransformed = applyTransformation(vertex, self.transfo);
|
|
|
|
|
|
|
|
vertex.x = vertexTransformed.x;
|
|
|
|
vertex.y = vertexTransformed.y;
|
|
|
|
vertex.z = vertexTransformed.z;
|
|
|
|
|
2015-06-29 09:50:26 +02:00
|
|
|
vertex.index = self.vertices.length;
|
|
|
|
self.vertices.push(vertex);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (line[0] === 'f') {
|
|
|
|
|
2015-07-07 14:40:32 +02:00
|
|
|
self.numberOfFaces++;
|
2015-07-07 11:47:21 +02:00
|
|
|
|
2015-06-29 09:50:26 +02:00
|
|
|
// Create mesh if it doesn't exist
|
|
|
|
if (currentMesh === undefined) {
|
2015-06-29 15:41:18 +02:00
|
|
|
currentMesh = new geo.Mesh();
|
2015-06-29 09:50:26 +02:00
|
|
|
self.meshes.push(currentMesh);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create faces (two if Face4)
|
|
|
|
var faces = currentMesh.addFaces(line);
|
|
|
|
|
|
|
|
faces[0].index = self.faces.length;
|
|
|
|
faces[0].meshIndex = self.meshes.length - 1;
|
|
|
|
self.faces.push(faces[0]);
|
|
|
|
|
|
|
|
if (faces.length === 2) {
|
|
|
|
|
2015-07-07 14:40:32 +02:00
|
|
|
self.numberOfFaces++;
|
2015-06-29 09:50:26 +02:00
|
|
|
faces[1].index = self.faces.length;
|
|
|
|
faces[1].meshIndex = self.meshes.length - 1;
|
|
|
|
self.faces.push(faces[1]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (line[0] === 'u') {
|
|
|
|
|
2016-01-04 17:49:05 +01:00
|
|
|
// usemtl : create a new mesh
|
2015-06-29 15:41:18 +02:00
|
|
|
currentMesh = new geo.Mesh();
|
2015-06-29 09:50:26 +02:00
|
|
|
self.meshes.push(currentMesh);
|
2015-06-29 15:41:18 +02:00
|
|
|
currentMesh.material = (new geo.Material(line)).name;
|
2015-06-29 09:50:26 +02:00
|
|
|
// console.log(currentMesh.material);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-07-02 15:05:59 +02:00
|
|
|
|
|
|
|
if (typeof self.callback === 'function') {
|
|
|
|
|
|
|
|
self.callback();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2015-07-01 10:14:15 +02:00
|
|
|
};
|
2015-06-29 09:50:26 +02:00
|
|
|
|
2015-07-02 15:05:59 +02:00
|
|
|
function trySetLoaded() {
|
|
|
|
for (var name in availableMeshNames) {
|
|
|
|
|
2015-10-20 16:30:52 +02:00
|
|
|
if (availableMeshNames[name].done === false) {
|
2015-07-02 15:05:59 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-10-20 16:30:52 +02:00
|
|
|
Log.ready("Meshes loaded in " + (Date.now() - start) + 'ms');
|
2015-07-02 15:05:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var availableMeshNames = {
|
2015-10-20 16:30:52 +02:00
|
|
|
'/static/data/castle/princess peaches castle (outside).obj': {
|
2015-11-13 10:36:54 +01:00
|
|
|
done: false,
|
|
|
|
recommendations : L3D.createPeachRecommendations(1134, 768)
|
|
|
|
|
2015-10-20 16:30:52 +02:00
|
|
|
},
|
|
|
|
'/static/data/mountain/coocoolmountain.obj': {
|
2015-11-13 10:36:54 +01:00
|
|
|
done: false,
|
|
|
|
recommendations : L3D.createMountainRecommendations(1134, 768)
|
|
|
|
},
|
|
|
|
'/static/data/mountain/coocoolmountain_sub.obj': {
|
|
|
|
done: false,
|
|
|
|
recommendations : L3D.createMountainRecommendations(1134, 768)
|
2015-10-20 16:30:52 +02:00
|
|
|
},
|
|
|
|
'/static/data/whomp/Whomps Fortress.obj': {
|
|
|
|
done: false,
|
|
|
|
transfo: {
|
|
|
|
rotation: {
|
|
|
|
x: -Math.PI / 2,
|
|
|
|
y: 0,
|
|
|
|
z: Math.PI / 2
|
|
|
|
},
|
|
|
|
translation: {
|
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
z: 0
|
|
|
|
},
|
|
|
|
scale: 0.1
|
2015-11-13 10:36:54 +01:00
|
|
|
},
|
|
|
|
recommendations : L3D.createWhompRecommendations(1134, 768)
|
|
|
|
},
|
|
|
|
'/static/data/whomp/Whomps Fortress_sub.obj': {
|
|
|
|
done: false,
|
|
|
|
transfo: {
|
|
|
|
rotation: {
|
|
|
|
x: -Math.PI / 2,
|
|
|
|
y: 0,
|
|
|
|
z: Math.PI / 2
|
|
|
|
},
|
|
|
|
translation: {
|
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
z: 0
|
|
|
|
},
|
|
|
|
scale: 0.1
|
|
|
|
},
|
|
|
|
recommendations : L3D.createWhompRecommendations(1134, 768)
|
2015-10-20 16:30:52 +02:00
|
|
|
},
|
|
|
|
'/static/data/bobomb/bobomb battlefeild.obj': {
|
|
|
|
done: false,
|
|
|
|
transfo: {
|
|
|
|
rotation: {
|
|
|
|
x: 0,
|
|
|
|
y: Math.PI - 0.27,
|
|
|
|
z: 0
|
|
|
|
},
|
|
|
|
translation: {
|
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
z: 0
|
|
|
|
}
|
2015-11-13 10:36:54 +01:00
|
|
|
},
|
|
|
|
recommendations : L3D.createBobombRecommendations(1134, 768)
|
|
|
|
},
|
|
|
|
|
|
|
|
'/static/data/bobomb/bobomb battlefeild_sub.obj': {
|
|
|
|
done: false,
|
|
|
|
transfo: {
|
|
|
|
rotation: {
|
|
|
|
x: 0,
|
|
|
|
y: Math.PI - 0.27,
|
|
|
|
z: 0
|
|
|
|
},
|
|
|
|
translation: {
|
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
z: 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
recommendations : L3D.createBobombRecommendations(1134, 768)
|
2015-10-20 16:30:52 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
'/static/data/sponza/sponza.obj': {
|
2015-11-16 09:55:09 +01:00
|
|
|
done: false,
|
2016-01-04 09:29:13 +01:00
|
|
|
transfo : {
|
|
|
|
rotation: {
|
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
z: 0
|
|
|
|
},
|
|
|
|
translation: {
|
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
z: 0
|
|
|
|
},
|
|
|
|
scale: 0.02
|
|
|
|
},
|
2015-11-16 09:55:09 +01:00
|
|
|
recommendations : L3D.createSponzaRecommendations(1134,768)
|
2015-10-20 16:30:52 +02:00
|
|
|
}
|
|
|
|
|
2015-07-02 15:05:59 +02:00
|
|
|
};
|
2015-06-29 09:50:26 +02:00
|
|
|
|
|
|
|
for (var i = 1; i < 26; i++) {
|
|
|
|
|
2015-10-20 16:51:54 +02:00
|
|
|
availableMeshNames['/static/data/spheres/' + i + '.obj'] = { done: false};
|
2015-06-29 09:50:26 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-06-29 15:41:18 +02:00
|
|
|
geo.availableMeshes = {};
|
2015-06-29 09:50:26 +02:00
|
|
|
|
2015-10-20 16:30:52 +02:00
|
|
|
var start = Date.now();
|
|
|
|
|
2015-07-06 11:26:19 +02:00
|
|
|
function pushMesh(name) {
|
|
|
|
|
2015-10-20 16:30:52 +02:00
|
|
|
geo.availableMeshes[name] = new geo.MeshContainer(
|
|
|
|
name.substring(1, name.length),
|
|
|
|
availableMeshNames[name].transfo,
|
|
|
|
function() {
|
2015-11-13 10:36:54 +01:00
|
|
|
geo.availableMeshes[name].recommendations = [];
|
|
|
|
|
|
|
|
if (availableMeshNames[name].recommendations !== undefined) {
|
|
|
|
|
|
|
|
for (var i = 0; i < availableMeshNames[name].recommendations.length; i++) {
|
|
|
|
|
|
|
|
var reco = availableMeshNames[name].recommendations[i].camera;
|
|
|
|
|
2016-01-04 09:29:13 +01:00
|
|
|
reco.aspect = 1134 / 768;
|
|
|
|
|
2015-11-13 10:36:54 +01:00
|
|
|
reco.lookAt(reco.target);
|
|
|
|
|
|
|
|
reco.updateMatrix();
|
|
|
|
reco.updateProjectionMatrix();
|
|
|
|
reco.updateMatrixWorld();
|
|
|
|
|
|
|
|
reco.matrixWorldInverse.getInverse( reco.matrixWorld );
|
|
|
|
|
|
|
|
var frustum = new THREE.Frustum();
|
|
|
|
frustum.setFromMatrix(new THREE.Matrix4().multiplyMatrices(reco.projectionMatrix, reco.matrixWorldInverse));
|
|
|
|
|
|
|
|
geo.availableMeshes[name].recommendations.push({
|
|
|
|
position: reco.position,
|
2015-11-16 09:55:09 +01:00
|
|
|
target: reco.target,
|
|
|
|
planes: frustum.planes
|
2015-11-13 10:36:54 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-20 16:30:52 +02:00
|
|
|
availableMeshNames[name].done = true;
|
|
|
|
trySetLoaded();
|
|
|
|
}
|
|
|
|
);
|
2015-07-06 11:26:19 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-07-02 15:05:59 +02:00
|
|
|
for (var name in availableMeshNames) {
|
2015-06-29 09:50:26 +02:00
|
|
|
|
2015-07-06 11:26:19 +02:00
|
|
|
pushMesh(name);
|
2015-06-29 09:50:26 +02:00
|
|
|
|
|
|
|
}
|