obj2gltf/bin/obj2gltf.js

183 lines
7.1 KiB
JavaScript
Raw Normal View History

2015-10-16 17:32:23 -04:00
#!/usr/bin/env node
2017-03-13 15:28:51 -04:00
'use strict';
2016-06-23 16:25:40 -04:00
var Cesium = require('cesium');
var fsExtra = require('fs-extra');
2017-03-13 15:28:51 -04:00
var path = require('path');
var yargs = require('yargs');
2017-04-12 16:55:03 -04:00
var obj2gltf = require('../lib/obj2gltf');
2015-10-16 17:32:23 -04:00
2017-03-13 15:28:51 -04:00
var defined = Cesium.defined;
2017-04-12 16:55:03 -04:00
var defaults = obj2gltf.defaults;
2017-04-10 17:57:56 -04:00
2017-03-13 15:28:51 -04:00
var args = process.argv;
2015-10-16 17:32:23 -04:00
2017-03-13 15:28:51 -04:00
var argv = yargs
.usage('Usage: node $0 -i inputPath -o outputPath')
.example('node $0 -i ./specs/data/box/box.obj -o box.gltf')
.help('h')
.alias('h', 'help')
.options({
2017-04-04 15:09:58 -04:00
input : {
alias : 'i',
describe : 'Path to the obj file.',
type : 'string',
normalize : true,
demandOption : true
2017-03-13 15:28:51 -04:00
},
2017-04-04 15:09:58 -04:00
output : {
alias : 'o',
describe : 'Path of the converted glTF or glb file.',
type : 'string',
normalize : true
2017-03-13 15:28:51 -04:00
},
2017-04-04 15:09:58 -04:00
binary : {
alias : 'b',
describe : 'Save as binary glTF (.glb)',
type : 'boolean',
default : defaults.binary
2017-03-13 15:28:51 -04:00
},
2017-04-04 15:09:58 -04:00
separate : {
alias : 's',
describe : 'Write separate buffers and textures instead of embedding them in the glTF.',
type : 'boolean',
default : defaults.separate
2017-03-13 15:28:51 -04:00
},
2017-04-04 15:09:58 -04:00
separateTextures : {
alias : 't',
describe : 'Write out separate textures only.',
type : 'boolean',
default : defaults.separateTextures
2017-03-13 15:28:51 -04:00
},
2017-04-10 17:57:56 -04:00
checkTransparency : {
describe : 'Do a more exhaustive check for texture transparency by looking at the alpha channel of each pixel. By default textures are considered to be opaque.',
type : 'boolean',
default : defaults.checkTransparency
2017-04-04 16:45:21 -04:00
},
secure : {
describe : 'Prevent the converter from reading textures or mtl files outside of the input obj directory.',
type : 'boolean',
default : defaults.secure
2017-05-04 14:34:33 -04:00
},
packOcclusion : {
describe : 'Pack the occlusion texture in the red channel of metallic-roughness texture.',
type : 'boolean',
default : defaults.packOcclusion
},
2017-05-04 15:39:01 -04:00
metallicRoughness : {
describe : 'The values in the .mtl file are already metallic-roughness PBR values and no conversion step should be applied. Metallic is stored in the Ks and map_Ks slots and roughness is stored in the Ns and map_Ns slots.',
type : 'boolean',
default : defaults.metallicRoughness
},
2017-05-04 15:39:01 -04:00
specularGlossiness : {
describe : 'The values in the .mtl file are already specular-glossiness PBR values and no conversion step should be applied. Specular is stored in the Ks and map_Ks slots and glossiness is stored in the Ns and map_Ns slots. The glTF will be saved with the KHR_materials_pbrSpecularGlossiness extension.',
type : 'boolean',
default : defaults.specularGlossiness
2017-05-04 15:39:01 -04:00
},
materialsCommon : {
describe : 'The glTF will be saved with the KHR_materials_common extension.',
type : 'boolean',
default : defaults.materialsCommon
2017-07-24 18:21:01 -04:00
},
metallicRoughnessOcclusionTexture : {
describe : 'Path to the metallic-roughness-occlusion texture that should override textures in the .mtl file, where occlusion is stored in the red channel, roughness is stored in the green channel, and metallic is stored in the blue channel. The model will be saved with a pbrMetallicRoughness material. This is often convenient in workflows where the .mtl does not exist or is not set up to use PBR materials. Intended for models with a single material',
type : 'string',
normalize : true
2017-07-24 18:21:01 -04:00
},
specularGlossinessTexture : {
describe : 'Path to the specular-glossiness texture that should override textures in the .mtl file, where specular color is stored in the red, green, and blue channels and specular glossiness is stored in the alpha channel. The model will be saved with a material using the KHR_materials_pbrSpecularGlossiness extension.',
type : 'string',
normalize : true
2017-07-24 18:21:01 -04:00
},
occlusionTexture : {
describe : 'Path to the occlusion texture that should override textures in the .mtl file.',
type : 'string',
normalize : true
2017-07-24 18:21:01 -04:00
},
normalTexture : {
describe : 'Path to the normal texture that should override textures in the .mtl file.',
type : 'string',
normalize : true
2017-07-24 18:21:01 -04:00
},
baseColorTexture : {
describe : 'Path to the baseColor/diffuse texture that should override textures in the .mtl file.',
type : 'string',
normalize : true
2017-07-24 18:21:01 -04:00
},
emissiveTexture : {
describe : 'Path to the emissive texture that should override textures in the .mtl file.',
type : 'string',
normalize : true
2017-03-13 15:28:51 -04:00
}
}).parse(args);
if (argv.metallicRoughness + argv.specularGlossiness + argv.materialsCommon > 1) {
console.error('Only one material type may be set from [--metallicRoughness, --specularGlossiness, --materialsCommon].');
process.exit(1);
}
if (defined(argv.metallicRoughnessOcclusionTexture) && defined(argv.specularGlossinessTexture)) {
console.error('--metallicRoughnessOcclusionTexture and --specularGlossinessTexture cannot both be set.');
process.exit(1);
}
var objPath = argv.input;
var gltfPath = argv.output;
var name = path.basename(objPath, path.extname(objPath));
2015-10-16 17:32:23 -04:00
2017-03-13 15:28:51 -04:00
if (!defined(gltfPath)) {
gltfPath = path.join(path.dirname(objPath), name + '.gltf');
2017-03-13 15:28:51 -04:00
}
2015-10-19 13:35:28 -04:00
var outputDirectory = path.dirname(gltfPath);
var extension = path.extname(gltfPath).toLowerCase();
if (argv.binary || extension === '.glb') {
argv.binary = true;
extension = '.glb';
}
gltfPath = path.join(outputDirectory, name + extension);
var overridingTextures = {
2017-07-28 16:56:28 -04:00
metallicRoughnessOcclusionTexture : argv.metallicRoughnessOcclusionTexture,
specularGlossinessTexture : argv.specularGlossinessTexture,
occlusionTexture : argv.occlusionTexture,
normalTexture : argv.normalTexture,
baseColorTexture : argv.baseColorTexture,
emissiveTexture : argv.emissiveTexture
};
var options = {
binary : argv.binary,
separate : argv.separate,
separateTextures : argv.separateTextures,
checkTransparency : argv.checkTransparency,
secure : argv.secure,
packOcclusion : argv.packOcclusion,
metallicRoughness : argv.metallicRoughness,
specularGlossiness : argv.specularGlossiness,
materialsCommon : argv.materialsCommon,
overridingTextures : overridingTextures,
outputDirectory : outputDirectory
2017-07-28 16:56:28 -04:00
};
2017-03-13 15:28:51 -04:00
console.time('Total');
obj2gltf(objPath, options)
.then(function(gltf) {
if (argv.binary) {
// gltf is a glb buffer
return fsExtra.outputFile(gltfPath, gltf);
}
var jsonOptions = {
spaces : 2
};
return fsExtra.outputJson(gltfPath, gltf, jsonOptions);
})
.then(function() {
console.timeEnd('Total');
})
.catch(function(error) {
console.log(error.message);
process.exit(1);
});