12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349 |
- /**
- * @author fernandojsg / http://fernandojsg.com
- */
- //------------------------------------------------------------------------------
- // Constants
- //------------------------------------------------------------------------------
- var WEBGL_CONSTANTS = {
- POINTS: 0x0000,
- LINES: 0x0001,
- LINE_LOOP: 0x0002,
- LINE_STRIP: 0x0003,
- TRIANGLES: 0x0004,
- TRIANGLE_STRIP: 0x0005,
- TRIANGLE_FAN: 0x0006,
- UNSIGNED_BYTE: 0x1401,
- UNSIGNED_SHORT: 0x1403,
- FLOAT: 0x1406,
- UNSIGNED_INT: 0x1405,
- ARRAY_BUFFER: 0x8892,
- ELEMENT_ARRAY_BUFFER: 0x8893,
- NEAREST: 0x2600,
- LINEAR: 0x2601,
- NEAREST_MIPMAP_NEAREST: 0x2700,
- LINEAR_MIPMAP_NEAREST: 0x2701,
- NEAREST_MIPMAP_LINEAR: 0x2702,
- LINEAR_MIPMAP_LINEAR: 0x2703
- };
- var THREE_TO_WEBGL = {
- // @TODO Replace with computed property name [THREE.*] when available on es6
- 1003: WEBGL_CONSTANTS.NEAREST,
- 1004: WEBGL_CONSTANTS.NEAREST_MIPMAP_NEAREST,
- 1005: WEBGL_CONSTANTS.NEAREST_MIPMAP_LINEAR,
- 1006: WEBGL_CONSTANTS.LINEAR,
- 1007: WEBGL_CONSTANTS.LINEAR_MIPMAP_NEAREST,
- 1008: WEBGL_CONSTANTS.LINEAR_MIPMAP_LINEAR
- };
- var PATH_PROPERTIES = {
- scale: 'scale',
- position: 'translation',
- quaternion: 'rotation',
- morphTargetInfluences: 'weights'
- };
- //------------------------------------------------------------------------------
- // GLTF Exporter
- //------------------------------------------------------------------------------
- THREE.GLTFExporter = function () {};
- THREE.GLTFExporter.prototype = {
- constructor: THREE.GLTFExporter,
- /**
- * Parse scenes and generate GLTF output
- * @param {THREE.Scene or [THREE.Scenes]} input THREE.Scene or Array of THREE.Scenes
- * @param {Function} onDone Callback on completed
- * @param {Object} options options
- */
- parse: function ( input, onDone, options ) {
- var DEFAULT_OPTIONS = {
- trs: false,
- onlyVisible: true,
- truncateDrawRange: true,
- embedImages: true,
- animations: []
- };
- options = Object.assign( {}, DEFAULT_OPTIONS, options );
- if ( options.animations.length > 0 ) {
- // Only TRS properties, and not matrices, may be targeted by animation.
- options.trs = true;
- }
- var outputJSON = {
- asset: {
- version: "2.0",
- generator: "THREE.GLTFExporter"
- }
- };
- var byteOffset = 0;
- var dataViews = [];
- var nodeMap = {};
- var skins = [];
- var cachedData = {
- images: {},
- materials: {}
- };
- var cachedCanvas;
- /**
- * Compare two arrays
- */
- /**
- * Compare two arrays
- * @param {Array} array1 Array 1 to compare
- * @param {Array} array2 Array 2 to compare
- * @return {Boolean} Returns true if both arrays are equal
- */
- function equalArray( array1, array2 ) {
- return ( array1.length === array2.length ) && array1.every( function ( element, index ) {
- return element === array2[ index ];
- } );
- }
- /**
- * Converts a string to an ArrayBuffer.
- * @param {string} text
- * @return {ArrayBuffer}
- */
- function stringToArrayBuffer( text ) {
- if ( window.TextEncoder !== undefined ) {
- return new TextEncoder().encode( text ).buffer;
- }
- var buffer = new ArrayBuffer( text.length );
- var bufferView = new Uint8Array( buffer );
- for ( var i = 0; i < text.length; ++ i ) {
- bufferView[ i ] = text.charCodeAt( i );
- }
- return buffer;
- }
- /**
- * Get the min and max vectors from the given attribute
- * @param {THREE.BufferAttribute} attribute Attribute to find the min/max
- * @return {Object} Object containing the `min` and `max` values (As an array of attribute.itemSize components)
- */
- function getMinMax( attribute ) {
- var output = {
- min: new Array( attribute.itemSize ).fill( Number.POSITIVE_INFINITY ),
- max: new Array( attribute.itemSize ).fill( Number.NEGATIVE_INFINITY )
- };
- for ( var i = 0; i < attribute.count; i ++ ) {
- for ( var a = 0; a < attribute.itemSize; a ++ ) {
- var value = attribute.array[ i * attribute.itemSize + a ];
- output.min[ a ] = Math.min( output.min[ a ], value );
- output.max[ a ] = Math.max( output.max[ a ], value );
- }
- }
- return output;
- }
- /**
- * Process a buffer to append to the default one.
- * @param {THREE.BufferAttribute} attribute Attribute to store
- * @param {Integer} componentType Component type (Unsigned short, unsigned int or float)
- * @return {Integer} Index of the buffer created (Currently always 0)
- */
- function processBuffer( attribute, componentType, start, count ) {
- if ( ! outputJSON.buffers ) {
- outputJSON.buffers = [
- {
- byteLength: 0,
- uri: ''
- }
- ];
- }
- var offset = 0;
- var componentSize = componentType === WEBGL_CONSTANTS.UNSIGNED_SHORT ? 2 : 4;
- // Create a new dataview and dump the attribute's array into it
- var byteLength = count * attribute.itemSize * componentSize;
- var dataView = new DataView( new ArrayBuffer( byteLength ) );
- for ( var i = start; i < start + count; i ++ ) {
- for ( var a = 0; a < attribute.itemSize; a ++ ) {
- var value = attribute.array[ i * attribute.itemSize + a ];
- if ( componentType === WEBGL_CONSTANTS.FLOAT ) {
- dataView.setFloat32( offset, value, true );
- } else if ( componentType === WEBGL_CONSTANTS.UNSIGNED_INT ) {
- dataView.setUint8( offset, value, true );
- } else if ( componentType === WEBGL_CONSTANTS.UNSIGNED_SHORT ) {
- dataView.setUint16( offset, value, true );
- }
- offset += componentSize;
- }
- }
- // We just use one buffer
- dataViews.push( dataView );
- // Always using just one buffer
- return 0;
- }
- /**
- * Process and generate a BufferView
- * @param {THREE.BufferAttribute} data
- * @param {number} componentType
- * @param {number} start
- * @param {number} count
- * @param {number} target (Optional) Target usage of the BufferView
- * @return {Object}
- */
- function processBufferView( data, componentType, start, count, target ) {
- if ( ! outputJSON.bufferViews ) {
- outputJSON.bufferViews = [];
- }
- var componentSize = componentType === WEBGL_CONSTANTS.UNSIGNED_SHORT ? 2 : 4;
- // Create a new dataview and dump the attribute's array into it
- var byteLength = count * data.itemSize * componentSize;
- var gltfBufferView = {
- buffer: processBuffer( data, componentType, start, count ),
- byteOffset: byteOffset,
- byteLength: byteLength
- };
- if ( target !== undefined ) gltfBufferView.target = target;
- if ( target === WEBGL_CONSTANTS.ARRAY_BUFFER ) {
- // Only define byteStride for vertex attributes.
- gltfBufferView.byteStride = data.itemSize * componentSize;
- }
- byteOffset += byteLength;
- outputJSON.bufferViews.push( gltfBufferView );
- // @TODO Ideally we'll have just two bufferviews: 0 is for vertex attributes, 1 for indices
- var output = {
- id: outputJSON.bufferViews.length - 1,
- byteLength: 0
- };
- return output;
- }
- /**
- * Process attribute to generate an accessor
- * @param {THREE.BufferAttribute} attribute Attribute to process
- * @param {THREE.BufferGeometry} geometry (Optional) Geometry used for truncated draw range
- * @return {Integer} Index of the processed accessor on the "accessors" array
- */
- function processAccessor( attribute, geometry ) {
- if ( ! outputJSON.accessors ) {
- outputJSON.accessors = [];
- }
- var types = {
- 1: 'SCALAR',
- 2: 'VEC2',
- 3: 'VEC3',
- 4: 'VEC4',
- 16: 'MAT4'
- };
- var componentType;
- // Detect the component type of the attribute array (float, uint or ushort)
- if ( attribute.array.constructor === Float32Array ) {
- componentType = WEBGL_CONSTANTS.FLOAT;
- } else if ( attribute.array.constructor === Uint32Array ) {
- componentType = WEBGL_CONSTANTS.UNSIGNED_INT;
- } else if ( attribute.array.constructor === Uint16Array ) {
- componentType = WEBGL_CONSTANTS.UNSIGNED_SHORT;
- } else {
- throw new Error( 'THREE.GLTFExporter: Unsupported bufferAttribute component type.' );
- }
- var minMax = getMinMax( attribute );
- var start = 0;
- var count = attribute.count;
- // @TODO Indexed buffer geometry with drawRange not supported yet
- if ( options.truncateDrawRange && geometry !== undefined && geometry.index === null ) {
- start = geometry.drawRange.start;
- count = geometry.drawRange.count !== Infinity ? geometry.drawRange.count : attribute.count;
- }
- var bufferViewTarget;
- // If geometry isn't provided, don't infer the target usage of the bufferView. For
- // animation samplers, target must not be set.
- if ( geometry !== undefined ) {
- var isVertexAttributes = componentType === WEBGL_CONSTANTS.FLOAT;
- bufferViewTarget = isVertexAttributes ? WEBGL_CONSTANTS.ARRAY_BUFFER : WEBGL_CONSTANTS.ELEMENT_ARRAY_BUFFER;
- }
- var bufferView = processBufferView( attribute, componentType, start, count, bufferViewTarget );
- var gltfAccessor = {
- bufferView: bufferView.id,
- byteOffset: bufferView.byteOffset,
- componentType: componentType,
- count: count,
- max: minMax.max,
- min: minMax.min,
- type: types[ attribute.itemSize ]
- };
- outputJSON.accessors.push( gltfAccessor );
- return outputJSON.accessors.length - 1;
- }
- /**
- * Process image
- * @param {Texture} map Texture to process
- * @return {Integer} Index of the processed texture in the "images" array
- */
- function processImage( map ) {
- if ( cachedData.images[ map.uuid ] !== undefined ) {
- return cachedData.images[ map.uuid ];
- }
- if ( ! outputJSON.images ) {
- outputJSON.images = [];
- }
- var mimeType = map.format === THREE.RGBAFormat ? 'image/png' : 'image/jpeg';
- var gltfImage = {mimeType: mimeType};
- if ( options.embedImages ) {
- var canvas = cachedCanvas = cachedCanvas || document.createElement( 'canvas' );
- canvas.width = map.image.width;
- canvas.height = map.image.height;
- var ctx = canvas.getContext( '2d' );
- if ( map.flipY === true ) {
- ctx.translate( 0, map.image.height );
- ctx.scale( 1, -1 );
- }
- ctx.drawImage( map.image, 0, 0 );
- // @TODO Embed in { bufferView } if options.binary set.
- gltfImage.uri = canvas.toDataURL( mimeType );
- } else {
- gltfImage.uri = map.image.src;
- }
- outputJSON.images.push( gltfImage );
- var index = outputJSON.images.length - 1;
- cachedData.images[ map.uuid ] = index;
- return index;
- }
- /**
- * Process sampler
- * @param {Texture} map Texture to process
- * @return {Integer} Index of the processed texture in the "samplers" array
- */
- function processSampler( map ) {
- if ( ! outputJSON.samplers ) {
- outputJSON.samplers = [];
- }
- var gltfSampler = {
- magFilter: THREE_TO_WEBGL[ map.magFilter ],
- minFilter: THREE_TO_WEBGL[ map.minFilter ],
- wrapS: THREE_TO_WEBGL[ map.wrapS ],
- wrapT: THREE_TO_WEBGL[ map.wrapT ]
- };
- outputJSON.samplers.push( gltfSampler );
- return outputJSON.samplers.length - 1;
- }
- /**
- * Process texture
- * @param {Texture} map Map to process
- * @return {Integer} Index of the processed texture in the "textures" array
- */
- function processTexture( map ) {
- if ( ! outputJSON.textures ) {
- outputJSON.textures = [];
- }
- var gltfTexture = {
- sampler: processSampler( map ),
- source: processImage( map )
- };
- outputJSON.textures.push( gltfTexture );
- return outputJSON.textures.length - 1;
- }
- /**
- * Process material
- * @param {THREE.Material} material Material to process
- * @return {Integer} Index of the processed material in the "materials" array
- */
- function processMaterial( material ) {
- if ( cachedData.materials[ material.uuid ] !== undefined ) {
- return cachedData.materials[ material.uuid ];
- }
- if ( ! outputJSON.materials ) {
- outputJSON.materials = [];
- }
- if ( material instanceof THREE.ShaderMaterial ) {
- console.warn( 'GLTFExporter: THREE.ShaderMaterial not supported.' );
- return null;
- }
- if ( ! ( material instanceof THREE.MeshStandardMaterial ) ) {
- console.warn( 'GLTFExporter: Currently just THREE.StandardMaterial is supported. Material conversion may lose information.' );
- }
- // @QUESTION Should we avoid including any attribute that has the default value?
- var gltfMaterial = {
- pbrMetallicRoughness: {}
- };
- // pbrMetallicRoughness.baseColorFactor
- var color = material.color.toArray().concat( [ material.opacity ] );
- if ( ! equalArray( color, [ 1, 1, 1, 1 ] ) ) {
- gltfMaterial.pbrMetallicRoughness.baseColorFactor = color;
- }
- if ( material instanceof THREE.MeshStandardMaterial ) {
- gltfMaterial.pbrMetallicRoughness.metallicFactor = material.metalness;
- gltfMaterial.pbrMetallicRoughness.roughnessFactor = material.roughness;
- } else {
- gltfMaterial.pbrMetallicRoughness.metallicFactor = 0.5;
- gltfMaterial.pbrMetallicRoughness.roughnessFactor = 0.5;
- }
- // pbrMetallicRoughness.baseColorTexture
- if ( material.map ) {
- gltfMaterial.pbrMetallicRoughness.baseColorTexture = {
- index: processTexture( material.map )
- };
- }
- if ( material instanceof THREE.MeshBasicMaterial ||
- material instanceof THREE.LineBasicMaterial ||
- material instanceof THREE.PointsMaterial ) {
- } else {
- // emissiveFactor
- var emissive = material.emissive.clone().multiplyScalar( material.emissiveIntensity ).toArray();
- if ( ! equalArray( emissive, [ 0, 0, 0 ] ) ) {
- gltfMaterial.emissiveFactor = emissive;
- }
- // emissiveTexture
- if ( material.emissiveMap ) {
- gltfMaterial.emissiveTexture = {
- index: processTexture( material.emissiveMap )
- };
- }
- }
- // normalTexture
- if ( material.normalMap ) {
- gltfMaterial.normalTexture = {
- index: processTexture( material.normalMap )
- };
- if ( material.normalScale.x !== - 1 ) {
- if ( material.normalScale.x !== material.normalScale.y ) {
- console.warn( 'THREE.GLTFExporter: Normal scale components are different, ignoring Y and exporting X.' );
- }
- gltfMaterial.normalTexture.scale = material.normalScale.x;
- }
- }
- // occlusionTexture
- if ( material.aoMap ) {
- gltfMaterial.occlusionTexture = {
- index: processTexture( material.aoMap )
- };
- if ( material.aoMapIntensity !== 1.0 ) {
- gltfMaterial.occlusionTexture.strength = material.aoMapIntensity;
- }
- }
- // alphaMode
- if ( material.transparent || material.alphaTest > 0.0 ) {
- gltfMaterial.alphaMode = material.opacity < 1.0 ? 'BLEND' : 'MASK';
- // Write alphaCutoff if it's non-zero and different from the default (0.5).
- if ( material.alphaTest > 0.0 && material.alphaTest !== 0.5 ) {
- gltfMaterial.alphaCutoff = material.alphaTest;
- }
- }
- // doubleSided
- if ( material.side === THREE.DoubleSide ) {
- gltfMaterial.doubleSided = true;
- }
- if ( material.name ) {
- gltfMaterial.name = material.name;
- }
- outputJSON.materials.push( gltfMaterial );
- var index = outputJSON.materials.length - 1;
- cachedData.materials[ material.uuid ] = index;
- return index;
- }
- /**
- * Process mesh
- * @param {THREE.Mesh} mesh Mesh to process
- * @return {Integer} Index of the processed mesh in the "meshes" array
- */
- function processMesh( mesh ) {
- if ( ! outputJSON.meshes ) {
- outputJSON.meshes = [];
- }
- var geometry = mesh.geometry;
- var mode;
- // Use the correct mode
- if ( mesh instanceof THREE.LineSegments ) {
- mode = WEBGL_CONSTANTS.LINES;
- } else if ( mesh instanceof THREE.LineLoop ) {
- mode = WEBGL_CONSTANTS.LINE_LOOP;
- } else if ( mesh instanceof THREE.Line ) {
- mode = WEBGL_CONSTANTS.LINE_STRIP;
- } else if ( mesh instanceof THREE.Points ) {
- mode = WEBGL_CONSTANTS.POINTS;
- } else {
- if ( ! geometry.isBufferGeometry ) {
- var geometryTemp = new THREE.BufferGeometry();
- geometryTemp.fromGeometry( geometry );
- geometry = geometryTemp;
- }
- if ( mesh.drawMode === THREE.TriangleFanDrawMode ) {
- console.warn( 'GLTFExporter: TriangleFanDrawMode and wireframe incompatible.' );
- mode = WEBGL_CONSTANTS.TRIANGLE_FAN;
- } else if ( mesh.drawMode === THREE.TriangleStripDrawMode ) {
- mode = mesh.material.wireframe ? WEBGL_CONSTANTS.LINE_STRIP : WEBGL_CONSTANTS.TRIANGLE_STRIP;
- } else {
- mode = mesh.material.wireframe ? WEBGL_CONSTANTS.LINES : WEBGL_CONSTANTS.TRIANGLES;
- }
- }
- var gltfMesh = {
- primitives: [
- {
- mode: mode,
- attributes: {},
- }
- ]
- };
- var material = processMaterial( mesh.material );
- if ( material !== null ) {
- gltfMesh.primitives[ 0 ].material = material;
- }
- if ( geometry.index ) {
- gltfMesh.primitives[ 0 ].indices = processAccessor( geometry.index, geometry );
- }
- // We've just one primitive per mesh
- var gltfAttributes = gltfMesh.primitives[ 0 ].attributes;
- // Conversion between attributes names in threejs and gltf spec
- var nameConversion = {
- uv: 'TEXCOORD_0',
- uv2: 'TEXCOORD_1',
- color: 'COLOR_0',
- skinWeight: 'WEIGHTS_0',
- skinIndex: 'JOINTS_0'
- };
- // @QUESTION Detect if .vertexColors = THREE.VertexColors?
- // For every attribute create an accessor
- for ( var attributeName in geometry.attributes ) {
- var attribute = geometry.attributes[ attributeName ];
- attributeName = nameConversion[ attributeName ] || attributeName.toUpperCase();
- if ( attributeName.substr( 0, 5 ) !== 'MORPH' ) {
- gltfAttributes[ attributeName ] = processAccessor( attribute, geometry );
- }
- }
- // Morph targets
- if ( mesh.morphTargetInfluences !== undefined && mesh.morphTargetInfluences.length > 0 ) {
- gltfMesh.primitives[ 0 ].targets = [];
- for ( var i = 0; i < mesh.morphTargetInfluences.length; ++ i ) {
- var target = {};
- for ( var attributeName in geometry.morphAttributes ) {
- var attribute = geometry.morphAttributes[ attributeName ][ i ];
- attributeName = nameConversion[ attributeName ] || attributeName.toUpperCase();
- target[ attributeName ] = processAccessor( attribute, geometry );
- }
- gltfMesh.primitives[ 0 ].targets.push( target );
- }
- }
- outputJSON.meshes.push( gltfMesh );
- return outputJSON.meshes.length - 1;
- }
- /**
- * Process camera
- * @param {THREE.Camera} camera Camera to process
- * @return {Integer} Index of the processed mesh in the "camera" array
- */
- function processCamera( camera ) {
- if ( ! outputJSON.cameras ) {
- outputJSON.cameras = [];
- }
- var isOrtho = camera instanceof THREE.OrthographicCamera;
- var gltfCamera = {
- type: isOrtho ? 'orthographic' : 'perspective'
- };
- if ( isOrtho ) {
- gltfCamera.orthographic = {
- xmag: camera.right * 2,
- ymag: camera.top * 2,
- zfar: camera.far,
- znear: camera.near
- };
- } else {
- gltfCamera.perspective = {
- aspectRatio: camera.aspect,
- yfov: THREE.Math.degToRad( camera.fov ) / camera.aspect,
- zfar: camera.far,
- znear: camera.near
- };
- }
- if ( camera.name ) {
- gltfCamera.name = camera.type;
- }
- outputJSON.cameras.push( gltfCamera );
- return outputJSON.cameras.length - 1;
- }
- /**
- * Creates glTF animation entry from AnimationClip object.
- *
- * Status:
- * - Only properties listed in PATH_PROPERTIES may be animated.
- * - Only LINEAR and STEP interpolation currently supported.
- *
- * @param {THREE.AnimationClip} clip
- * @param {THREE.Object3D} root
- * @return {number}
- */
- function processAnimation ( clip, root ) {
- if ( ! outputJSON.animations ) {
- outputJSON.animations = [];
- }
- var channels = [];
- var samplers = [];
- for ( var i = 0; i < clip.tracks.length; ++ i ) {
- var track = clip.tracks[ i ];
- var trackBinding = THREE.PropertyBinding.parseTrackName( track.name );
- var trackNode = THREE.PropertyBinding.findNode( root, trackBinding.nodeName );
- var trackProperty = PATH_PROPERTIES[ trackBinding.propertyName ];
- if ( trackBinding.objectName === 'bones' ) {
- if ( trackNode.isSkinnedMesh === true ) {
- trackNode = trackNode.skeleton.getBoneByName( trackBinding.objectIndex );
- } else {
- trackNode = undefined;
- }
- }
- if ( ! trackNode || ! trackProperty ) {
- console.warn( 'THREE.GLTFExporter: Could not export animation track "%s".', track.name );
- return null;
- }
- var inputItemSize = 1;
- var outputItemSize = track.values.length / track.times.length;
- if ( trackProperty === PATH_PROPERTIES.morphTargetInfluences ) {
- outputItemSize /= trackNode.morphTargetInfluences.length;
- }
- samplers.push( {
- input: processAccessor( new THREE.BufferAttribute( track.times, inputItemSize ) ),
- output: processAccessor( new THREE.BufferAttribute( track.values, outputItemSize ) ),
- interpolation: track.interpolation === THREE.InterpolateDiscrete ? 'STEP' : 'LINEAR'
- } );
- channels.push( {
- sampler: samplers.length - 1,
- target: {
- node: nodeMap[ trackNode.uuid ],
- path: trackProperty
- }
- } );
- }
- outputJSON.animations.push( {
- name: clip.name || 'clip_' + outputJSON.animations.length,
- samplers: samplers,
- channels: channels
- } );
- return outputJSON.animations.length - 1;
- }
- function processSkin( object ) {
- var node = outputJSON.nodes[ nodeMap[ object.uuid ] ];
- var skeleton = object.skeleton;
- var rootJoint = object.skeleton.bones[ 0 ];
- if ( rootJoint === undefined ) return null;
- var joints = [];
- var inverseBindMatrices = new Float32Array( skeleton.bones.length * 16 );
- for ( var i = 0; i < skeleton.bones.length; ++ i ) {
- joints.push( nodeMap[ skeleton.bones[ i ].uuid ] );
- skeleton.boneInverses[ i ].toArray( inverseBindMatrices, i * 16 );
- }
- if ( outputJSON.skins === undefined ) {
- outputJSON.skins = [];
- }
- outputJSON.skins.push( {
- inverseBindMatrices: processAccessor( new THREE.BufferAttribute( inverseBindMatrices, 16 ) ),
- joints: joints,
- skeleton: nodeMap[ rootJoint.uuid ]
- } );
- var skinIndex = node.skin = outputJSON.skins.length - 1;
- return skinIndex;
- }
- /**
- * Process Object3D node
- * @param {THREE.Object3D} node Object3D to processNode
- * @return {Integer} Index of the node in the nodes list
- */
- function processNode( object ) {
- if ( object instanceof THREE.Light ) {
- console.warn( 'GLTFExporter: Unsupported node type:', object.constructor.name );
- return null;
- }
- if ( ! outputJSON.nodes ) {
- outputJSON.nodes = [];
- }
- var gltfNode = {};
- if ( options.trs ) {
- var rotation = object.quaternion.toArray();
- var position = object.position.toArray();
- var scale = object.scale.toArray();
- if ( ! equalArray( rotation, [ 0, 0, 0, 1 ] ) ) {
- gltfNode.rotation = rotation;
- }
- if ( ! equalArray( position, [ 0, 0, 0 ] ) ) {
- gltfNode.translation = position;
- }
- if ( ! equalArray( scale, [ 1, 1, 1 ] ) ) {
- gltfNode.scale = scale;
- }
- } else {
- object.updateMatrix();
- if ( ! equalArray( object.matrix.elements, [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ] ) ) {
- gltfNode.matrix = object.matrix.elements;
- }
- }
- if ( object.name ) {
- gltfNode.name = object.name;
- }
- if ( object.userData && Object.keys( object.userData ).length > 0 ) {
- try {
- gltfNode.extras = JSON.parse( JSON.stringify( object.userData ) );
- } catch ( e ) {
- throw new Error( 'THREE.GLTFExporter: userData can\'t be serialized' );
- }
- }
- if ( object instanceof THREE.Mesh ||
- object instanceof THREE.Line ||
- object instanceof THREE.Points ) {
- gltfNode.mesh = processMesh( object );
- } else if ( object instanceof THREE.Camera ) {
- gltfNode.camera = processCamera( object );
- }
- if ( object instanceof THREE.SkinnedMesh ) {
- skins.push( object );
- }
- if ( object.children.length > 0 ) {
- var children = [];
- for ( var i = 0, l = object.children.length; i < l; i ++ ) {
- var child = object.children[ i ];
- if ( child.visible || options.onlyVisible === false ) {
- var node = processNode( child );
- if ( node !== null ) {
- children.push( node );
- }
- }
- }
- if ( children.length > 0 ) {
- gltfNode.children = children;
- }
- }
- outputJSON.nodes.push( gltfNode );
- var nodeIndex = nodeMap[ object.uuid ] = outputJSON.nodes.length - 1;
- return nodeIndex;
- }
- /**
- * Process Scene
- * @param {THREE.Scene} node Scene to process
- */
- function processScene( scene ) {
- if ( ! outputJSON.scenes ) {
- outputJSON.scenes = [];
- outputJSON.scene = 0;
- }
- var gltfScene = {
- nodes: []
- };
- if ( scene.name ) {
- gltfScene.name = scene.name;
- }
- outputJSON.scenes.push( gltfScene );
- var nodes = [];
- for ( var i = 0, l = scene.children.length; i < l; i ++ ) {
- var child = scene.children[ i ];
- if ( child.visible || options.onlyVisible === false ) {
- var node = processNode( child );
- if ( node !== null ) {
- nodes.push( node );
- }
- }
- }
- if ( nodes.length > 0 ) {
- gltfScene.nodes = nodes;
- }
- }
- /**
- * Creates a THREE.Scene to hold a list of objects and parse it
- * @param {Array} objects List of objects to process
- */
- function processObjects( objects ) {
- var scene = new THREE.Scene();
- scene.name = 'AuxScene';
- for ( var i = 0; i < objects.length; i ++ ) {
- // We push directly to children instead of calling `add` to prevent
- // modify the .parent and break its original scene and hierarchy
- scene.children.push( objects[ i ] );
- }
- processScene( scene );
- }
- function processInput( input ) {
- input = input instanceof Array ? input : [ input ];
- var objectsWithoutScene = [];
- for ( var i = 0; i < input.length; i ++ ) {
- if ( input[ i ] instanceof THREE.Scene ) {
- processScene( input[ i ] );
- } else {
- objectsWithoutScene.push( input[ i ] );
- }
- }
- if ( objectsWithoutScene.length > 0 ) {
- processObjects( objectsWithoutScene );
- }
- for ( var i = 0; i < skins.length; ++ i ) {
- processSkin( skins[ i ] );
- }
- for ( var i = 0; i < options.animations.length; ++ i ) {
- processAnimation( options.animations[ i ], input[ 0 ] );
- }
- }
- processInput( input );
- // Generate buffer
- // Create a new blob with all the dataviews from the buffers
- var blob = new Blob( dataViews, { type: 'application/octet-stream' } );
- // Update the bytlength of the only main buffer and update the uri with the base64 representation of it
- if ( outputJSON.buffers && outputJSON.buffers.length > 0 ) {
- outputJSON.buffers[ 0 ].byteLength = blob.size;
- var reader = new window.FileReader();
- if ( options.binary === true ) {
- // https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#glb-file-format-specification
- var GLB_HEADER_BYTES = 12;
- var GLB_HEADER_MAGIC = 0x46546C67;
- var GLB_VERSION = 2;
- var GLB_CHUNK_PREFIX_BYTES = 8;
- var GLB_CHUNK_TYPE_JSON = 0x4E4F534A;
- var GLB_CHUNK_TYPE_BIN = 0x004E4942;
- reader.readAsArrayBuffer( blob );
- reader.onloadend = function () {
- // Binary chunk.
- var binaryChunk = reader.result;
- var binaryChunkPrefix = new DataView( new ArrayBuffer( GLB_CHUNK_PREFIX_BYTES ) );
- binaryChunkPrefix.setUint32( 0, binaryChunk.byteLength, true );
- binaryChunkPrefix.setUint32( 4, GLB_CHUNK_TYPE_BIN, true );
- // JSON chunk.
- delete outputJSON.buffers[ 0 ].uri; // Omitted URI indicates use of binary chunk.
- var jsonChunk = stringToArrayBuffer( JSON.stringify( outputJSON ) );
- var jsonChunkPrefix = new DataView( new ArrayBuffer( GLB_CHUNK_PREFIX_BYTES ) );
- jsonChunkPrefix.setUint32( 0, jsonChunk.byteLength, true );
- jsonChunkPrefix.setUint32( 4, GLB_CHUNK_TYPE_JSON, true );
- // GLB header.
- var header = new ArrayBuffer( GLB_HEADER_BYTES );
- var headerView = new DataView( header );
- headerView.setUint32( 0, GLB_HEADER_MAGIC, true );
- headerView.setUint32( 4, GLB_VERSION, true );
- var totalByteLength = GLB_HEADER_BYTES
- + jsonChunkPrefix.byteLength + jsonChunk.byteLength
- + binaryChunkPrefix.byteLength + binaryChunk.byteLength;
- headerView.setUint32( 8, totalByteLength, true );
- var glbBlob = new Blob( [
- header,
- jsonChunkPrefix,
- jsonChunk,
- binaryChunkPrefix,
- binaryChunk
- ], { type: 'application/octet-stream' } );
- var glbReader = new window.FileReader();
- glbReader.readAsArrayBuffer( glbBlob );
- glbReader.onloadend = function () {
- onDone( glbReader.result );
- };
- };
- } else {
- reader.readAsDataURL( blob );
- reader.onloadend = function () {
- var base64data = reader.result;
- outputJSON.buffers[ 0 ].uri = base64data;
- onDone( outputJSON );
- };
- }
- } else {
- onDone( outputJSON );
- }
- }
- };
|