mirror of
https://github.com/CesiumGS/obj2gltf.git
synced 2024-11-23 16:44:05 -05:00
398 lines
12 KiB
JavaScript
398 lines
12 KiB
JavaScript
'use strict';
|
|
var Cesium = require('cesium');
|
|
var getBufferPadded = require('./getBufferPadded');
|
|
var getDefaultMaterial = require('./loadMtl').getDefaultMaterial;
|
|
var Texture = require('./Texture');
|
|
|
|
var defined = Cesium.defined;
|
|
var WebGLConstants = Cesium.WebGLConstants;
|
|
|
|
module.exports = createGltf;
|
|
|
|
/**
|
|
* Create a glTF from obj data.
|
|
*
|
|
* @param {Object} objData An object containing an array of nodes containing geometry information and an array of materials.
|
|
* @param {Object} options The options object passed along from lib/obj2gltf.js
|
|
* @returns {Object} A glTF asset.
|
|
*
|
|
* @private
|
|
*/
|
|
function createGltf(objData, options) {
|
|
var nodes = objData.nodes;
|
|
var materials = objData.materials;
|
|
var name = objData.name;
|
|
|
|
var gltf = {
|
|
accessors : [],
|
|
asset : {},
|
|
buffers : [],
|
|
bufferViews : [],
|
|
extensionsUsed : [],
|
|
extensionsRequired : [],
|
|
images : [],
|
|
materials : [],
|
|
meshes : [],
|
|
nodes : [],
|
|
samplers : [],
|
|
scene : 0,
|
|
scenes : [],
|
|
textures : []
|
|
};
|
|
|
|
gltf.asset = {
|
|
generator : 'obj2gltf',
|
|
version: '2.0'
|
|
};
|
|
|
|
gltf.scenes.push({
|
|
nodes : []
|
|
});
|
|
|
|
var bufferState = {
|
|
positionBuffers : [],
|
|
normalBuffers : [],
|
|
uvBuffers : [],
|
|
indexBuffers : [],
|
|
positionAccessors : [],
|
|
normalAccessors : [],
|
|
uvAccessors : [],
|
|
indexAccessors : []
|
|
};
|
|
|
|
var uint32Indices = requiresUint32Indices(nodes);
|
|
|
|
var nodesLength = nodes.length;
|
|
for (var i = 0; i < nodesLength; ++i) {
|
|
var node = nodes[i];
|
|
var meshes = node.meshes;
|
|
var meshesLength = meshes.length;
|
|
var meshIndex;
|
|
|
|
if (meshesLength === 1) {
|
|
meshIndex = addMesh(gltf, materials, bufferState, uint32Indices, meshes[0], options);
|
|
addNode(gltf, node.name, meshIndex, undefined);
|
|
} else {
|
|
// Add meshes as child nodes
|
|
var parentIndex = addNode(gltf, node.name);
|
|
for (var j = 0; j < meshesLength; ++j) {
|
|
var mesh = meshes[j];
|
|
meshIndex = addMesh(gltf, materials, bufferState, uint32Indices, mesh, options);
|
|
addNode(gltf, mesh.name, meshIndex, parentIndex);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (gltf.images.length > 0) {
|
|
gltf.samplers.push({
|
|
magFilter : WebGLConstants.LINEAR,
|
|
minFilter : WebGLConstants.NEAREST_MIPMAP_LINEAR,
|
|
wrapS : WebGLConstants.REPEAT,
|
|
wrapT : WebGLConstants.REPEAT
|
|
});
|
|
}
|
|
|
|
addBuffers(gltf, bufferState, name);
|
|
|
|
if (options.specularGlossiness) {
|
|
gltf.extensionsUsed.push('KHR_materials_pbrSpecularGlossiness');
|
|
gltf.extensionsRequired.push('KHR_materials_pbrSpecularGlossiness');
|
|
} else if (options.materialsCommon) {
|
|
gltf.extensionsUsed.push('KHR_materials_common');
|
|
gltf.extensionsRequired.push('KHR_materials_common');
|
|
}
|
|
|
|
return gltf;
|
|
}
|
|
|
|
function addBufferView(gltf, buffers, accessors, byteStride, target) {
|
|
var length = buffers.length;
|
|
if (length === 0) {
|
|
return;
|
|
}
|
|
var bufferViewIndex = gltf.bufferViews.length;
|
|
var previousBufferView = gltf.bufferViews[bufferViewIndex - 1];
|
|
var byteOffset = defined(previousBufferView) ? previousBufferView.byteOffset + previousBufferView.byteLength : 0;
|
|
var byteLength = 0;
|
|
for (var i = 0; i < length; ++i) {
|
|
var accessor = gltf.accessors[accessors[i]];
|
|
accessor.bufferView = bufferViewIndex;
|
|
accessor.byteOffset = byteLength;
|
|
byteLength += buffers[i].length;
|
|
}
|
|
gltf.bufferViews.push({
|
|
name : 'bufferView_' + bufferViewIndex,
|
|
buffer : 0,
|
|
byteLength : byteLength,
|
|
byteOffset : byteOffset,
|
|
byteStride : byteStride,
|
|
target : target
|
|
});
|
|
}
|
|
|
|
function addBuffers(gltf, bufferState, name) {
|
|
addBufferView(gltf, bufferState.positionBuffers, bufferState.positionAccessors, 12, WebGLConstants.ARRAY_BUFFER);
|
|
addBufferView(gltf, bufferState.normalBuffers, bufferState.normalAccessors, 12, WebGLConstants.ARRAY_BUFFER);
|
|
addBufferView(gltf, bufferState.uvBuffers, bufferState.uvAccessors, 8, WebGLConstants.ARRAY_BUFFER);
|
|
addBufferView(gltf, bufferState.indexBuffers, bufferState.indexAccessors, undefined, WebGLConstants.ELEMENT_ARRAY_BUFFER);
|
|
|
|
var buffers = [];
|
|
buffers = buffers.concat(bufferState.positionBuffers, bufferState.normalBuffers, bufferState.uvBuffers, bufferState.indexBuffers);
|
|
var buffer = getBufferPadded(Buffer.concat(buffers));
|
|
|
|
gltf.buffers.push({
|
|
name : name,
|
|
byteLength : buffer.length,
|
|
extras : {
|
|
_obj2gltf : {
|
|
source : buffer
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function addTexture(gltf, texture) {
|
|
var imageName = texture.name;
|
|
var textureName = texture.name;
|
|
var imageIndex = gltf.images.length;
|
|
var textureIndex = gltf.textures.length;
|
|
|
|
gltf.images.push({
|
|
name : imageName,
|
|
extras : {
|
|
_obj2gltf : texture
|
|
}
|
|
});
|
|
|
|
gltf.textures.push({
|
|
name : textureName,
|
|
sampler : 0,
|
|
source : imageIndex
|
|
});
|
|
|
|
return textureIndex;
|
|
}
|
|
|
|
function getTexture(gltf, texture) {
|
|
var textureIndex;
|
|
var name = texture.name;
|
|
var textures = gltf.textures;
|
|
var length = textures.length;
|
|
for (var i = 0; i < length; ++i) {
|
|
if (textures[i].name === name) {
|
|
textureIndex = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!defined(textureIndex)) {
|
|
textureIndex = addTexture(gltf, texture);
|
|
}
|
|
|
|
return {
|
|
index : textureIndex
|
|
};
|
|
}
|
|
|
|
function resolveTextures(gltf, material) {
|
|
for (var name in material) {
|
|
if (material.hasOwnProperty(name)) {
|
|
var property = material[name];
|
|
if (property instanceof Texture) {
|
|
material[name] = getTexture(gltf, property);
|
|
} else if (!Array.isArray(property) && (typeof property === 'object')) {
|
|
resolveTextures(gltf, property);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function addMaterial(gltf, material) {
|
|
resolveTextures(gltf, material);
|
|
var materialIndex = gltf.materials.length;
|
|
gltf.materials.push(material);
|
|
return materialIndex;
|
|
}
|
|
|
|
function getMaterial(gltf, materials, materialName, options) {
|
|
if (!defined(materialName)) {
|
|
// Create a default material if the primitive does not specify one
|
|
materialName = 'default';
|
|
}
|
|
|
|
var i;
|
|
var material;
|
|
var materialsLength = materials.length;
|
|
for (i = 0; i < materialsLength; ++i) {
|
|
if (materials[i].name === materialName) {
|
|
material = materials[i];
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!defined(material)) {
|
|
material = getDefaultMaterial(options);
|
|
material.name = materialName;
|
|
}
|
|
|
|
var materialIndex;
|
|
materialsLength = gltf.materials.length;
|
|
for (i = 0; i < materialsLength; ++i) {
|
|
if (gltf.materials[i].name === materialName) {
|
|
materialIndex = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!defined(materialIndex)) {
|
|
materialIndex = addMaterial(gltf, material);
|
|
}
|
|
|
|
return materialIndex;
|
|
}
|
|
|
|
function addVertexAttribute(gltf, array, components, name) {
|
|
var count = array.length / components;
|
|
var minMax = array.getMinMax(components);
|
|
var type = (components === 3 ? 'VEC3' : 'VEC2');
|
|
|
|
var accessor = {
|
|
name : name,
|
|
componentType : WebGLConstants.FLOAT,
|
|
count : count,
|
|
min : minMax.min,
|
|
max : minMax.max,
|
|
type : type
|
|
};
|
|
|
|
var accessorIndex = gltf.accessors.length;
|
|
gltf.accessors.push(accessor);
|
|
return accessorIndex;
|
|
}
|
|
|
|
function addIndexArray(gltf, array, uint32Indices, name) {
|
|
var componentType = uint32Indices ? WebGLConstants.UNSIGNED_INT : WebGLConstants.UNSIGNED_SHORT;
|
|
var count = array.length;
|
|
var minMax = array.getMinMax(1);
|
|
|
|
var accessor = {
|
|
name : name,
|
|
componentType : componentType,
|
|
count : count,
|
|
min : minMax.min,
|
|
max : minMax.max,
|
|
type : 'SCALAR'
|
|
};
|
|
|
|
var accessorIndex = gltf.accessors.length;
|
|
gltf.accessors.push(accessor);
|
|
return accessorIndex;
|
|
}
|
|
|
|
function requiresUint32Indices(nodes) {
|
|
var nodesLength = nodes.length;
|
|
for (var i = 0; i < nodesLength; ++i) {
|
|
var meshes = nodes[i].meshes;
|
|
var meshesLength = meshes.length;
|
|
for (var j = 0; j < meshesLength; ++j) {
|
|
var primitives = meshes[j].primitives;
|
|
var primitivesLength = primitives.length;
|
|
for (var k = 0; k < primitivesLength; ++k) {
|
|
// Reserve the 65535 index for primitive restart
|
|
var vertexCount = primitives[k].positions.length / 3;
|
|
if (vertexCount > 65534) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function addPrimitive(gltf, materials, bufferState, uint32Indices, mesh, primitive, index, options) {
|
|
var hasPositions = primitive.positions.length > 0;
|
|
var hasNormals = primitive.normals.length > 0;
|
|
var hasUVs = primitive.uvs.length > 0;
|
|
|
|
var accessorIndex;
|
|
var attributes = {};
|
|
if (hasPositions) {
|
|
accessorIndex = addVertexAttribute(gltf, primitive.positions, 3, mesh.name + '_' + index + '_positions');
|
|
attributes.POSITION = accessorIndex;
|
|
bufferState.positionBuffers.push(primitive.positions.toFloatBuffer());
|
|
bufferState.positionAccessors.push(accessorIndex);
|
|
}
|
|
if (hasNormals) {
|
|
accessorIndex = addVertexAttribute(gltf, primitive.normals, 3, mesh.name + '_' + index + '_normals');
|
|
attributes.NORMAL = accessorIndex;
|
|
bufferState.normalBuffers.push(primitive.normals.toFloatBuffer());
|
|
bufferState.normalAccessors.push(accessorIndex);
|
|
}
|
|
if (hasUVs) {
|
|
accessorIndex = addVertexAttribute(gltf, primitive.uvs, 2, mesh.name + '_' + index + '_texcoords');
|
|
attributes.TEXCOORD_0 = accessorIndex;
|
|
bufferState.uvBuffers.push(primitive.uvs.toFloatBuffer());
|
|
bufferState.uvAccessors.push(accessorIndex);
|
|
}
|
|
|
|
var indexAccessorIndex = addIndexArray(gltf, primitive.indices, uint32Indices, mesh.name + '_' + index + '_indices');
|
|
var indexBuffer = uint32Indices ? primitive.indices.toUint32Buffer() : primitive.indices.toUint16Buffer();
|
|
bufferState.indexBuffers.push(indexBuffer);
|
|
bufferState.indexAccessors.push(indexAccessorIndex);
|
|
|
|
// Unload resources
|
|
primitive.positions = undefined;
|
|
primitive.normals = undefined;
|
|
primitive.uvs = undefined;
|
|
primitive.indices = undefined;
|
|
|
|
var materialIndex = getMaterial(gltf, materials, primitive.material, options);
|
|
|
|
return {
|
|
attributes : attributes,
|
|
indices : indexAccessorIndex,
|
|
material : materialIndex,
|
|
mode : WebGLConstants.TRIANGLES
|
|
};
|
|
}
|
|
|
|
function addMesh(gltf, materials, bufferState, uint32Indices, mesh, options) {
|
|
var gltfPrimitives = [];
|
|
var primitives = mesh.primitives;
|
|
var primitivesLength = primitives.length;
|
|
for (var i = 0; i < primitivesLength; ++i) {
|
|
gltfPrimitives.push(addPrimitive(gltf, materials, bufferState, uint32Indices, mesh, primitives[i], i, options));
|
|
}
|
|
|
|
var gltfMesh = {
|
|
name : mesh.name,
|
|
primitives : gltfPrimitives
|
|
};
|
|
|
|
var meshIndex = gltf.meshes.length;
|
|
gltf.meshes.push(gltfMesh);
|
|
return meshIndex;
|
|
}
|
|
|
|
function addNode(gltf, name, meshIndex, parentIndex) {
|
|
var node = {
|
|
name : name,
|
|
mesh : meshIndex
|
|
};
|
|
|
|
var nodeIndex = gltf.nodes.length;
|
|
gltf.nodes.push(node);
|
|
|
|
if (defined(parentIndex)) {
|
|
var parentNode = gltf.nodes[parentIndex];
|
|
if (!defined(parentNode.children)) {
|
|
parentNode.children = [];
|
|
}
|
|
parentNode.children.push(nodeIndex);
|
|
} else {
|
|
gltf.scenes[gltf.scene].nodes.push(nodeIndex);
|
|
}
|
|
|
|
return nodeIndex;
|
|
}
|