3d-interface/server/geo/MeshStreamer.js

770 lines
20 KiB
JavaScript
Raw Normal View History

2015-11-16 09:55:09 +01:00
var fs = require('fs');
2015-11-13 10:36:54 +01:00
var THREE = require('three');
var L3D = require('../../static/js/l3d.min.js');
2015-12-01 15:47:10 +01:00
function readIt(sceneNumber, recoId) {
var toZip = {
2015-12-01 15:47:10 +01:00
triangles :
JSON.parse(fs.readFileSync('./geo/generated/scene' + sceneNumber + '/triangles' + recoId + '.json')),
areas :
JSON.parse(fs.readFileSync('./geo/generated/scene' + sceneNumber + '/areas' + recoId + '.json'))
};
var ret = [];
for (var i = 0; i < toZip.triangles.length; i++) {
ret.push({
index: toZip.triangles[i],
area: toZip.areas[i]
});
}
return ret;
2015-12-01 15:47:10 +01:00
}
2016-01-04 09:29:13 +01:00
numberOfReco = [0, 0, 12, 12, 11, 2];
2015-12-01 15:47:10 +01:00
function readAll(sceneNumber) {
var ret = [];
for (var i = 0; i < numberOfReco[sceneNumber]; i++) {
ret.push(readIt(sceneNumber, i));
}
return ret;
}
2015-11-16 09:55:09 +01:00
try
{
var predictionTables = [
2015-11-17 10:41:05 +01:00
JSON.parse(fs.readFileSync('./geo/mat1.json')),
JSON.parse(fs.readFileSync('./geo/mat2.json')),
JSON.parse(fs.readFileSync('./geo/mat3.json')),
2016-01-04 09:29:13 +01:00
[[1,1],
[1,2]]
2015-11-16 09:55:09 +01:00
];
2015-12-01 15:47:10 +01:00
var facesToSend = [
readAll(2),
readAll(3),
2016-01-04 09:29:13 +01:00
readAll(4),
readAll(5)
2015-12-01 15:47:10 +01:00
];
2015-11-16 09:55:09 +01:00
} catch (e) {
process.stderr.write('No prefetching will be done !');
predictionTables = [];
}
/**
* Checks quickly if a triangle might be in a frustum
* @private
* @param {Object[]} element array of thre 3 vertices of the triangle to test
* @param {Object[]} planes array of planes (Object with normal and constant values)
* @return {Boolean} false if we can be sure that the triangle is not in the frustum, true oherwise
*/
2015-11-13 10:36:54 +01:00
function isInFrustum(element, planes) {
if (element instanceof Array) {
var outcodes = [];
for (var i = 0; i < element.length; i++) {
var vertex = element[i];
var currentOutcode = "";
2015-11-17 10:41:05 +01:00
for (var j = 0; j < planes.length; j++) {
2015-11-13 10:36:54 +01:00
var plane = planes[j];
distance =
plane.normal.x * vertex.x +
plane.normal.y * vertex.y +
plane.normal.z * vertex.z +
plane.constant;
// if (distance < 0) {
// exitToContinue = true;
// break;
// }
currentOutcode += distance > 0 ? '0' : '1';
}
outcodes.push(parseInt(currentOutcode,2));
}
// http://vterrain.org/LOD/culling.html
// I have no idea what i'm doing
// http://i.kinja-img.com/gawker-media/image/upload/japbcvpavbzau9dbuaxf.jpg
// But it seems to work
// EDIT : Not, this should be ok http://www.cs.unc.edu/~blloyd/comp770/Lecture07.pdf
if ((outcodes[0] | outcodes[1] | outcodes[2]) === 0) {
return true;
} else if ((outcodes[0] & outcodes[1] & outcodes[2]) !== 0) {
return false;
} else {
// part of the triangle is inside the viewing volume
return true;
}
}
}
2015-06-23 15:31:23 +02:00
/**
* A class that streams easily a mesh via socket.io
* @memberOf geo
* @constructor
* @param {string} path to the mesh
*/
geo.MeshStreamer = function(path) {
2015-06-15 17:04:19 +02:00
2015-06-29 10:43:29 +02:00
/**
* array of array telling if the jth face of the ith mesh has already been sent
2015-06-29 15:41:18 +02:00
*
* For each mesh, there is an object containing
* <ul>
* <li>`counter` : the number of faces currently sent</li>
* <li>`array` : an array boolean telling if the ith face has already been sent</li>
* </ul>
* @type {Object[]}
2015-06-29 10:43:29 +02:00
*/
this.meshFaces = [];
2015-06-23 15:31:23 +02:00
/**
* array of booleans telling if the ith vertex has already been sent
* @type {Boolean[]}
2015-06-23 15:31:23 +02:00
*/
2015-06-15 17:04:19 +02:00
this.vertices = [];
2015-06-23 15:31:23 +02:00
/**
* array of booleans telling if the ith face has already been sent
* @type {Boolean[]}
2015-06-23 15:31:23 +02:00
*/
2015-06-15 17:04:19 +02:00
this.faces = [];
2015-06-23 15:31:23 +02:00
/**
* array of booleans telling if the ith normal has already been sent
* @type {Boolean[]}
2015-06-23 15:31:23 +02:00
*/
this.normals = [];
2015-06-23 15:31:23 +02:00
/**
* array of booleans telling if the ith texCoord has already been sent
* @type {Boolean[]}
2015-06-23 15:31:23 +02:00
*/
2015-06-15 17:04:19 +02:00
this.texCoords = [];
2015-06-23 15:31:23 +02:00
2016-01-04 09:29:13 +01:00
this.beginningThreshold = 0.9;
2015-12-01 15:47:10 +01:00
this.frustumPercentage = 0.6;
this.prefetchPercentage = 1 - this.frustumPercentage;
2015-06-23 15:31:23 +02:00
/**
* Number of element to send by packet
* @type {Number}
*/
2016-01-04 09:29:13 +01:00
// this.chunk = 100000;
2015-11-30 13:44:55 +01:00
this.chunk = 1250;
2015-11-16 09:55:09 +01:00
this.previousReco = 0;
2015-06-15 17:04:19 +02:00
if (path !== undefined) {
2015-06-29 15:41:18 +02:00
this.mesh = geo.availableMeshes[path];
2015-06-15 17:04:19 +02:00
}
};
2015-06-15 17:04:19 +02:00
/**
* Checks if a face is oriented towards the camera
* @param {Object} camera a camera (with a position, and a direction)
* @param {geo.Face} the face to test
* @return {Boolean} true if the face is in the good orientation, face otherwise
*/
2015-11-13 10:36:54 +01:00
geo.MeshStreamer.prototype.isBackFace = function(camera, face) {
2015-11-16 09:55:09 +01:00
var directionCamera = L3D.Tools.diff(
L3D.Tools.mul(
L3D.Tools.sum(
L3D.Tools.sum(
this.mesh.vertices[face.a],
this.mesh.vertices[face.b]
),
this.mesh.vertices[face.c]
),
1/3),
camera.position
);
2015-11-13 10:36:54 +01:00
var v1 = L3D.Tools.diff(this.mesh.vertices[face.b], this.mesh.vertices[face.a]);
var v2 = L3D.Tools.diff(this.mesh.vertices[face.c], this.mesh.vertices[face.a]);
var normal = L3D.Tools.cross(v1, v2);
return L3D.Tools.dot(directionCamera, normal) > 0;
};
2015-06-23 15:31:23 +02:00
/**
* Compute a function that can compare two faces
* @param {Camera} camera a camera seeing or not face
2015-10-13 16:32:36 +02:00
* @returns {function} the function that compares two faces : the higher face is the most interesting for the camera
2015-06-23 15:31:23 +02:00
*/
2015-06-18 16:30:37 +02:00
geo.MeshStreamer.prototype.faceComparator = function(camera) {
var self = this;
2015-06-18 16:30:37 +02:00
return function(face1, face2) {
var center1 = {
2015-11-24 09:26:12 +01:00
x: (self.mesh.vertices[face1.a].x + self.mesh.vertices[face1.b].x + self.mesh.vertices[face1.c].x) / 3,
y: (self.mesh.vertices[face1.a].y + self.mesh.vertices[face1.b].y + self.mesh.vertices[face1.c].y) / 3,
z: (self.mesh.vertices[face1.a].z + self.mesh.vertices[face1.b].z + self.mesh.vertices[face1.c].z) / 3
2015-06-18 16:30:37 +02:00
};
var dir1 = {
x: center1.x - camera.position.x,
y: center1.y - camera.position.y,
z: center1.z - camera.position.z
};
2015-11-24 09:26:12 +01:00
var dot1 = dir1.x * dir1.x + dir1.y * dir1.y + dir1.z * dir1.z;
2015-06-18 16:30:37 +02:00
var center2 = {
2015-11-24 09:26:12 +01:00
x: (self.mesh.vertices[face2.a].x + self.mesh.vertices[face2.b].x + self.mesh.vertices[face2.c].x) / 3,
y: (self.mesh.vertices[face2.a].y + self.mesh.vertices[face2.b].y + self.mesh.vertices[face2.c].y) / 3,
z: (self.mesh.vertices[face2.a].z + self.mesh.vertices[face2.b].z + self.mesh.vertices[face2.c].z) / 3
};
2015-06-18 16:30:37 +02:00
var dir2 = {
x: center2.x - camera.position.x,
y: center2.y - camera.position.y,
z: center2.z - camera.position.z
};
2015-11-24 09:26:12 +01:00
var dot2 = dir2.x * dir2.x + dir2.y * dir2.y + dir2.z * dir2.z;
2015-06-18 16:30:37 +02:00
// Decreasing order
2015-11-24 09:26:12 +01:00
if (dot1 < dot2) {
2015-06-18 16:30:37 +02:00
return -1;
}
2015-11-24 09:26:12 +01:00
if (dot1 > dot2) {
2015-06-18 16:30:37 +02:00
return 1;
}
return 0;
};
};
2015-06-18 16:30:37 +02:00
2015-06-23 15:31:23 +02:00
/**
* Initialize the socket.io callbacks
2015-06-23 15:31:23 +02:00
* @param {socket} socket the socket to initialize
*/
2015-06-15 17:04:19 +02:00
geo.MeshStreamer.prototype.start = function(socket) {
this.socket = socket;
2015-06-15 17:04:19 +02:00
var self = this;
2015-11-17 10:41:05 +01:00
socket.on('request', function(path, laggy, prefetch) {
if (laggy === true) {
self.chunk = 1;
}
2015-06-15 17:04:19 +02:00
2015-06-29 15:41:18 +02:00
self.mesh = geo.availableMeshes[path];
2015-11-16 09:55:09 +01:00
switch (path) {
case '/static/data/bobomb/bobomb battlefeild.obj':
case '/static/data/bobomb/bobomb battlefeild_sub.obj':
self.predictionTable = predictionTables[0];
2015-12-01 15:47:10 +01:00
self.facesToSend = facesToSend[0];
2015-11-16 09:55:09 +01:00
break;
case '/static/data/mountain/coocoolmountain.obj':
case '/static/data/mountain/coocoolmountain_sub.obj':
self.predictionTable = predictionTables[1];
2015-12-01 15:47:10 +01:00
self.facesToSend = facesToSend[1];
2015-11-16 09:55:09 +01:00
break;
case '/static/data/whomp/Whomps Fortress.obj':
case '/static/data/whomp/Whomps Fortress_sub.obj':
self.predictionTable = predictionTables[2];
2015-12-01 15:47:10 +01:00
self.facesToSend = facesToSend[2];
2015-11-16 09:55:09 +01:00
break;
2016-01-04 09:29:13 +01:00
case '/static/data/sponza/sponza.obj':
self.predictionTable = predictionTables[3];
self.facesToSend = facesToSend[3];
break;
2015-11-17 10:41:05 +01:00
default:
self.predictionTable = predictionTables[3];
2015-11-16 09:55:09 +01:00
};
2016-01-08 16:05:09 +01:00
console.log(prefetch);
self.generator = geo.ConfigGenerator.createFromString(prefetch, self);
self.backupGenerator = new geo.ConfigGenerator(self);
2015-11-13 10:36:54 +01:00
if (self.mesh === undefined) {
process.stderr.write('Wrong path for model : ' + path);
socket.emit('refused');
socket.disconnect();
return;
}
2015-06-29 10:43:29 +02:00
self.meshFaces = new Array(self.mesh.meshes.length);
for (var i = 0; i < self.meshFaces.length; i++) {
self.meshFaces[i] = {
counter: 0,
array: new Array(self.mesh.meshes[i].faces.length)
};
}
socket.emit('ok');
2015-06-15 17:04:19 +02:00
});
socket.on('materials', function() {
var data = self.nextMaterials();
socket.emit('elements', data);
});
2015-11-16 09:55:09 +01:00
socket.on('reco', function(recoId) {
self.previousReco = recoId + 1;
});
2015-12-01 15:47:10 +01:00
socket.on('next', function(_camera) { // score) {
2015-11-16 09:55:09 +01:00
var cameraFrustum = {};
2016-01-04 09:29:13 +01:00
var beginning = self.beginning;
var cameraExists = false;
2015-11-16 09:55:09 +01:00
// Clean camera attribute
if (_camera !== null) {
cameraFrustum = {
position: {
x: _camera[0][0],
y: _camera[0][1],
z: _camera[0][2]
},
target: {
x: _camera[1][0],
y: _camera[1][1],
z: _camera[1][2]
},
planes: []
};
2015-11-27 10:20:13 +01:00
var recommendationClicked = _camera[2];
2015-11-16 09:55:09 +01:00
for (i = 3; i < _camera.length; i++) {
cameraFrustum.planes.push({
normal: {
x: _camera[i][0],
y: _camera[i][1],
z: _camera[i][2]
},
constant: _camera[i][3]
});
}
2016-01-04 09:29:13 +01:00
cameraExists = true;
2015-11-16 09:55:09 +01:00
}
if (cameraExists) {
2015-12-01 15:47:10 +01:00
// Create config for proportions of chunks
var didPrefetch = false;
var config = self.generator.generateMainConfig(cameraFrustum, recommendationClicked);
2015-12-01 15:47:10 +01:00
// Send next elements
var oldTime = Date.now();
var next = self.nextElements(config);
2015-11-27 10:20:13 +01:00
// console.log(
// 'Adding ' +
// next.size +
// ' for newConfig : '
// + JSON.stringify(config.map(function(o) { return o.proportion}))
// );
2015-11-27 10:20:13 +01:00
2016-01-04 09:29:13 +01:00
if (self.beginning === true && next.size < self.chunk) {
2015-11-30 13:44:55 +01:00
self.beginning = false;
config = self.generator.generateMainConfig(cameraFrustum, recommendationClicked);
2015-11-30 13:44:55 +01:00
}
2015-11-30 13:44:55 +01:00
var fillElements = self.nextElements(config, self.chunk - next.size);
2015-11-30 13:44:55 +01:00
next.configSizes = fillElements.configSizes;
next.data.push.apply(next.data, fillElements.data);
next.size += fillElements.size;
2015-11-27 10:20:13 +01:00
// Chunk is not empty, compute fill config
if (next.size < self.chunk) {
2015-11-17 10:41:05 +01:00
config = self.generator.generateFillingConfig(config, next, cameraFrustum, recommendationClicked);
fillElements = self.nextElements(config, self.chunk - next.size);
2015-11-17 10:41:05 +01:00
next.data.push.apply(next.data, fillElements.data);
next.size += fillElements.size;
2015-11-17 10:41:05 +01:00
2016-01-04 09:29:13 +01:00
}
2015-11-17 10:41:05 +01:00
2016-01-04 09:29:13 +01:00
// If still not empty, fill linear
if (next.size < self.chunk) {
2015-11-16 09:55:09 +01:00
2016-01-04 09:29:13 +01:00
fillElements = self.nextElements([], self.chunk - next.size);
2015-11-16 09:55:09 +01:00
2016-01-04 09:29:13 +01:00
next.data.push.apply(next.data, fillElements.data);
next.size += fillElements.size;
2015-11-17 10:41:05 +01:00
2016-01-04 09:29:13 +01:00
}
2015-11-17 10:41:05 +01:00
} else {
2015-11-17 10:41:05 +01:00
config = self.backupGenerator.generateMainConfig();
next = self.nextElements(config, self.chunk);
}
2016-01-04 09:29:13 +01:00
console.log('Chunk of size ' + next.size + ' (generated in ' + (Date.now() - oldTime) + 'ms)');
2015-11-16 09:55:09 +01:00
2016-01-04 09:29:13 +01:00
if (next.data.length === 0) {
2015-11-16 09:55:09 +01:00
2016-01-04 09:29:13 +01:00
socket.disconnect();
2015-11-16 09:55:09 +01:00
2016-01-04 09:29:13 +01:00
} else {
2015-11-16 09:55:09 +01:00
2016-01-04 09:29:13 +01:00
socket.emit('elements', next.data);
2015-11-17 10:41:05 +01:00
2016-01-04 09:29:13 +01:00
}
2015-11-17 10:41:05 +01:00
2016-01-04 09:29:13 +01:00
});
};
2015-11-17 10:41:05 +01:00
2016-01-04 09:29:13 +01:00
/**
* Prepare the array of materials
* @return array the array to send with all materials of the current mesh
*/
geo.MeshStreamer.prototype.nextMaterials = function() {
2015-11-16 09:55:09 +01:00
2016-01-04 09:29:13 +01:00
var data = [];
data.push(['g', this.mesh.numberOfFaces]);
for (var i = 0; i < this.mesh.meshes.length; i++) {
var currentMesh = this.mesh.meshes[i];
2015-06-15 17:04:19 +02:00
2016-01-04 09:29:13 +01:00
// Send usemtl
data.push([
'u',
currentMesh.material,
currentMesh.vertices.length,
currentMesh.faces.length,
this.mesh.texCoords.length > 0,
this.mesh.normals.length > 0
]);
2015-06-15 17:04:19 +02:00
2016-01-04 09:29:13 +01:00
}
2015-11-27 10:20:13 +01:00
2016-01-04 09:29:13 +01:00
return data;
2015-11-27 10:20:13 +01:00
2016-01-04 09:29:13 +01:00
};
2015-11-17 10:41:05 +01:00
2015-06-23 15:31:23 +02:00
/**
* Prepare the next elements
* @param {Object[]} config a configuration list
2015-06-23 15:31:23 +02:00
* @returns {array} an array of elements ready to send
* @see {@link https://github.com/DragonRock/3dinterface/wiki/Streaming-configuration|Configuration list documentation}
2015-06-23 15:31:23 +02:00
*/
2015-11-17 10:41:05 +01:00
geo.MeshStreamer.prototype.nextElements = function(config, chunk) {
if (chunk === undefined)
chunk = this.chunk;
var i;
2015-11-16 09:55:09 +01:00
var data = [];
2015-11-17 10:41:05 +01:00
var configSizes = [];
2015-11-24 09:26:12 +01:00
var buffers = [];
2015-11-17 10:41:05 +01:00
2015-11-16 09:55:09 +01:00
var mightBeCompletetlyFinished = true;
2015-11-16 09:55:09 +01:00
// BOOM
// if (camera != null)
// this.mesh.faces.sort(this.faceComparator(camera));
2015-11-17 10:41:05 +01:00
if (config.length === 0) {
config.push({
proportion: 1
});
}
2015-06-18 15:03:06 +02:00
2015-11-17 10:41:05 +01:00
totalSize = 0;
for (var configIndex = 0; configIndex < config.length; configIndex++) {
2015-11-17 10:41:05 +01:00
configSizes[configIndex] = 0;
2015-11-24 09:26:12 +01:00
buffers[configIndex] = [];
2015-11-17 10:41:05 +01:00
}
2015-11-17 10:41:05 +01:00
faceloop:
for (var faceIndex = 0; faceIndex < this.mesh.faces.length; faceIndex++) {
2015-06-15 17:04:19 +02:00
2015-11-17 10:41:05 +01:00
var currentFace = this.mesh.faces[faceIndex];
2015-06-15 17:04:19 +02:00
2015-11-17 10:41:05 +01:00
if (this.faces[currentFace.index] === true) {
2015-06-15 17:04:19 +02:00
2015-11-17 10:41:05 +01:00
continue;
2015-06-15 17:04:19 +02:00
2015-11-17 10:41:05 +01:00
}
2015-06-15 17:04:19 +02:00
2015-11-17 10:41:05 +01:00
mightBeCompletetlyFinished = false;
2015-11-17 10:41:05 +01:00
var vertex1 = this.mesh.vertices[currentFace.a];
var vertex2 = this.mesh.vertices[currentFace.b];
var vertex3 = this.mesh.vertices[currentFace.c];
2015-11-17 10:41:05 +01:00
for (var configIndex = 0; configIndex < config.length; configIndex++) {
var currentConfig = config[configIndex];
2015-11-24 09:26:12 +01:00
var display = false;
var exitToContinue = false;
var threeVertices = [vertex1, vertex2, vertex3];
2015-11-24 09:26:12 +01:00
// Frustum culling
2015-12-01 15:47:10 +01:00
if (!currentConfig.smart && (currentConfig.frustum === undefined || (isInFrustum(threeVertices, currentConfig.frustum.planes) && !this.isBackFace(currentConfig.frustum, currentFace)))) {
2015-11-24 09:26:12 +01:00
buffers[configIndex].push(currentFace);
continue faceloop;
2015-11-24 09:26:12 +01:00
}
2015-11-24 09:26:12 +01:00
}
2015-11-24 09:26:12 +01:00
}
2015-12-01 15:47:10 +01:00
// Fill smart recos
for (var configIndex = 0; configIndex < config.length; configIndex++) {
var currentConfig = config[configIndex];
if (!currentConfig.smart) {
continue;
}
var area = 0;
var currentArea = 0;
// Fill buffer using facesToSend
for (var faceIndex = 0; faceIndex < this.facesToSend[currentConfig.recommendationId].length; faceIndex++) {
2015-12-01 15:47:10 +01:00
var faceInfo = this.facesToSend[currentConfig.recommendationId][faceIndex];
2015-12-01 15:47:10 +01:00
area += faceInfo.area;
if (area > 0.9) {
break;
}
2016-01-04 09:29:13 +01:00
2015-12-01 15:47:10 +01:00
if (this.faces[faceInfo.index] !== true) {
var face = this.mesh.faces[faceInfo.index];
if (face === undefined) {
console.log(faceInfo.index, this.mesh.faces.length);
console.log('ERROR !!!');
2016-01-04 09:29:13 +01:00
} else {
buffers[configIndex].push(face);
2015-12-01 15:47:10 +01:00
}
2016-01-04 09:29:13 +01:00
} else if (this.beginning === true) {
2015-12-01 15:47:10 +01:00
currentArea += faceInfo.area;
2016-01-04 09:29:13 +01:00
if (currentArea > this.beginningThreshold) {
2015-12-01 15:47:10 +01:00
2016-01-04 09:29:13 +01:00
this.beginning = false;
2015-12-01 15:47:10 +01:00
}
}
}
}
2015-11-24 09:26:12 +01:00
var totalSize = 0;
var configSize = 0;
2015-11-13 10:36:54 +01:00
2015-11-24 09:26:12 +01:00
for (var configIndex = 0; configIndex < config.length; configIndex++) {
2015-11-24 09:26:12 +01:00
// Sort buffer
if (config[configIndex].frustum !== undefined) {
2015-11-27 10:20:13 +01:00
2015-11-24 09:26:12 +01:00
buffers[configIndex].sort(this.faceComparator(config[configIndex].frustum));
2015-11-27 10:20:13 +01:00
2015-11-24 09:26:12 +01:00
} else {
2015-11-27 10:20:13 +01:00
2015-11-24 09:26:12 +01:00
// console.log("Did not sort");
2015-11-27 10:20:13 +01:00
2015-11-24 09:26:12 +01:00
}
2015-11-24 09:26:12 +01:00
// Fill chunk
for(var i = 0; i < buffers[configIndex].length; i++) {
2015-12-01 15:47:10 +01:00
// console.log(buffers[configIndex][i]);
2015-11-24 09:26:12 +01:00
var size = this.pushFace(buffers[configIndex][i], data);
2015-11-24 09:26:12 +01:00
totalSize += size;
2015-11-27 10:20:13 +01:00
configSizes[configIndex] += size;
2015-11-27 10:20:13 +01:00
if (configSizes[configIndex] > chunk * config[configIndex].proportion) {
2015-11-24 09:26:12 +01:00
break;
2015-11-24 09:26:12 +01:00
}
2015-11-24 09:26:12 +01:00
}
2015-11-24 09:26:12 +01:00
if (totalSize > chunk) {
2015-11-24 09:26:12 +01:00
// console.log(configIndex, sent/(chunk * currentConfig.proportion));
return {data: data, finsihed:false, configSizes: configSizes, size: totalSize};
2015-11-24 09:26:12 +01:00
}
}
2015-11-24 09:26:12 +01:00
return {data: data, finished: mightBeCompletetlyFinished, configSizes: configSizes, size:totalSize};
2015-11-24 09:26:12 +01:00
};
2015-11-24 09:26:12 +01:00
geo.MeshStreamer.prototype.pushFace = function(face, buffer) {
2015-11-24 09:26:12 +01:00
var totalSize = 0;
2015-11-24 09:26:12 +01:00
var vertex1 = this.mesh.vertices[face.a];
var vertex2 = this.mesh.vertices[face.b];
var vertex3 = this.mesh.vertices[face.c];
2015-11-24 09:26:12 +01:00
// Send face
if (!this.vertices[face.a]) {
2015-11-24 09:26:12 +01:00
buffer.push(vertex1.toList());
this.vertices[face.a] = true;
totalSize++;
2015-06-16 16:35:43 +02:00
2015-11-24 09:26:12 +01:00
}
2015-06-16 16:35:43 +02:00
2015-11-24 09:26:12 +01:00
if (!this.vertices[face.b]) {
2015-06-16 16:35:43 +02:00
2015-11-24 09:26:12 +01:00
buffer.push(vertex2.toList());
this.vertices[face.b] = true;
totalSize++;
2015-06-16 16:35:43 +02:00
2015-11-24 09:26:12 +01:00
}
2015-06-16 16:35:43 +02:00
2015-11-24 09:26:12 +01:00
if (!this.vertices[face.c]) {
2015-06-19 11:24:37 +02:00
2015-11-24 09:26:12 +01:00
buffer.push(vertex3.toList());
this.vertices[face.c] = true;
totalSize++;
2015-06-19 11:24:37 +02:00
2015-11-24 09:26:12 +01:00
}
2015-06-19 11:24:37 +02:00
2015-11-24 09:26:12 +01:00
var normal1 = this.mesh.normals[face.aNormal];
var normal2 = this.mesh.normals[face.bNormal];
var normal3 = this.mesh.normals[face.cNormal];
2015-06-16 16:35:43 +02:00
2015-11-24 09:26:12 +01:00
if (normal1 !== undefined && !this.normals[face.aNormal]) {
2015-11-24 09:26:12 +01:00
buffer.push(normal1.toList());
this.normals[face.aNormal] = true;
totalSize++;
2015-11-16 09:55:09 +01:00
2015-11-24 09:26:12 +01:00
}
2015-06-19 11:24:37 +02:00
2015-11-24 09:26:12 +01:00
if (normal2 !== undefined && !this.normals[face.bNormal]) {
2015-11-18 16:13:01 +01:00
2015-11-24 09:26:12 +01:00
buffer.push(normal2.toList());
this.normals[face.bNormal] = true;
totalSize++;
2015-06-15 17:04:19 +02:00
2015-11-24 09:26:12 +01:00
}
2015-11-24 09:26:12 +01:00
if (normal3 !== undefined && !this.normals[face.cNormal]) {
2015-11-24 09:26:12 +01:00
buffer.push(normal3.toList());
this.normals[face.cNormal] = true;
totalSize++;
2015-06-19 11:24:37 +02:00
2015-11-24 09:26:12 +01:00
}
var tex1 = this.mesh.texCoords[face.aTexture];
var tex2 = this.mesh.texCoords[face.bTexture];
var tex3 = this.mesh.texCoords[face.cTexture];
if (tex1 !== undefined && !this.texCoords[face.aTexture]) {
buffer.push(tex1.toList());
this.texCoords[face.aTexture] = true;
totalSize++;
2015-11-16 09:55:09 +01:00
}
2015-11-24 09:26:12 +01:00
if (tex2 !== undefined && !this.texCoords[face.bTexture]) {
buffer.push(tex2.toList());
this.texCoords[face.bTexture] = true;
totalSize++;
}
if (tex3 !== undefined && !this.texCoords[face.cTexture]) {
buffer.push(tex3.toList());
this.texCoords[face.cTexture] = true;
totalSize++;
}
buffer.push(face.toList());
this.faces[face.index] = true;
totalSize+=3;
2015-06-16 16:35:43 +02:00
2015-11-24 09:26:12 +01:00
return totalSize;
};
2015-06-15 17:04:19 +02:00
2015-06-29 10:43:29 +02:00
geo.MeshStreamer.prototype.isFinished = function(i) {
return this.meshFaces[i].counter === this.meshFaces[i].array.length;
};