GLTFLoader.js 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213
  1. /**
  2. * @author Rich Tibbett / https://github.com/richtr
  3. * @author mrdoob / http://mrdoob.com/
  4. * @author Tony Parisi / http://www.tonyparisi.com/
  5. * @author Takahiro / https://github.com/takahirox
  6. * @author Don McCurdy / https://www.donmccurdy.com
  7. */
  8. THREE.GLTFLoader = ( function () {
  9. function GLTFLoader( manager ) {
  10. this.manager = ( manager !== undefined ) ? manager : THREE.DefaultLoadingManager;
  11. this.dracoLoader = null;
  12. this.ddsLoader = null;
  13. }
  14. GLTFLoader.prototype = {
  15. constructor: GLTFLoader,
  16. crossOrigin: 'anonymous',
  17. load: function ( url, onLoad, onProgress, onError ) {
  18. var scope = this;
  19. var resourcePath;
  20. if ( this.resourcePath !== undefined ) {
  21. resourcePath = this.resourcePath;
  22. } else if ( this.path !== undefined ) {
  23. resourcePath = this.path;
  24. } else {
  25. resourcePath = THREE.LoaderUtils.extractUrlBase( url );
  26. }
  27. // Tells the LoadingManager to track an extra item, which resolves after
  28. // the model is fully loaded. This means the count of items loaded will
  29. // be incorrect, but ensures manager.onLoad() does not fire early.
  30. scope.manager.itemStart( url );
  31. var _onError = function ( e ) {
  32. if ( onError ) {
  33. onError( e );
  34. } else {
  35. console.error( e );
  36. }
  37. scope.manager.itemError( url );
  38. scope.manager.itemEnd( url );
  39. };
  40. var loader = new THREE.FileLoader( scope.manager );
  41. loader.setPath( this.path );
  42. loader.setResponseType( 'arraybuffer' );
  43. if ( scope.crossOrigin === 'use-credentials' ) {
  44. loader.setWithCredentials( true );
  45. }
  46. loader.load( url, function ( data ) {
  47. try {
  48. scope.parse( data, resourcePath, function ( gltf ) {
  49. onLoad( gltf );
  50. scope.manager.itemEnd( url );
  51. }, _onError );
  52. } catch ( e ) {
  53. _onError( e );
  54. }
  55. }, onProgress, _onError );
  56. },
  57. setCrossOrigin: function ( value ) {
  58. this.crossOrigin = value;
  59. return this;
  60. },
  61. setPath: function ( value ) {
  62. this.path = value;
  63. return this;
  64. },
  65. setResourcePath: function ( value ) {
  66. this.resourcePath = value;
  67. return this;
  68. },
  69. setDRACOLoader: function ( dracoLoader ) {
  70. this.dracoLoader = dracoLoader;
  71. return this;
  72. },
  73. setDDSLoader: function ( ddsLoader ) {
  74. this.ddsLoader = ddsLoader;
  75. return this;
  76. },
  77. parse: function ( data, path, onLoad, onError ) {
  78. var content;
  79. var extensions = {};
  80. if ( typeof data === 'string' ) {
  81. content = data;
  82. } else {
  83. var magic = THREE.LoaderUtils.decodeText( new Uint8Array( data, 0, 4 ) );
  84. if ( magic === BINARY_EXTENSION_HEADER_MAGIC ) {
  85. try {
  86. extensions[ EXTENSIONS.KHR_BINARY_GLTF ] = new GLTFBinaryExtension( data );
  87. } catch ( error ) {
  88. if ( onError ) onError( error );
  89. return;
  90. }
  91. content = extensions[ EXTENSIONS.KHR_BINARY_GLTF ].content;
  92. } else {
  93. content = THREE.LoaderUtils.decodeText( new Uint8Array( data ) );
  94. }
  95. }
  96. var json = JSON.parse( content );
  97. if ( json.asset === undefined || json.asset.version[ 0 ] < 2 ) {
  98. if ( onError ) onError( new Error( 'THREE.GLTFLoader: Unsupported asset. glTF versions >=2.0 are supported. Use LegacyGLTFLoader instead.' ) );
  99. return;
  100. }
  101. if ( json.extensionsUsed ) {
  102. for ( var i = 0; i < json.extensionsUsed.length; ++ i ) {
  103. var extensionName = json.extensionsUsed[ i ];
  104. var extensionsRequired = json.extensionsRequired || [];
  105. switch ( extensionName ) {
  106. case EXTENSIONS.KHR_LIGHTS_PUNCTUAL:
  107. extensions[ extensionName ] = new GLTFLightsExtension( json );
  108. break;
  109. case EXTENSIONS.KHR_MATERIALS_UNLIT:
  110. extensions[ extensionName ] = new GLTFMaterialsUnlitExtension();
  111. break;
  112. case EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS:
  113. extensions[ extensionName ] = new GLTFMaterialsPbrSpecularGlossinessExtension();
  114. break;
  115. case EXTENSIONS.KHR_DRACO_MESH_COMPRESSION:
  116. extensions[ extensionName ] = new GLTFDracoMeshCompressionExtension( json, this.dracoLoader );
  117. break;
  118. case EXTENSIONS.MSFT_TEXTURE_DDS:
  119. extensions[ EXTENSIONS.MSFT_TEXTURE_DDS ] = new GLTFTextureDDSExtension( this.ddsLoader );
  120. break;
  121. case EXTENSIONS.KHR_TEXTURE_TRANSFORM:
  122. extensions[ EXTENSIONS.KHR_TEXTURE_TRANSFORM ] = new GLTFTextureTransformExtension();
  123. break;
  124. default:
  125. if ( extensionsRequired.indexOf( extensionName ) >= 0 ) {
  126. console.warn( 'THREE.GLTFLoader: Unknown extension "' + extensionName + '".' );
  127. }
  128. }
  129. }
  130. }
  131. var parser = new GLTFParser( json, extensions, {
  132. path: path || this.resourcePath || '',
  133. crossOrigin: this.crossOrigin,
  134. manager: this.manager
  135. } );
  136. parser.parse( onLoad, onError );
  137. }
  138. };
  139. /* GLTFREGISTRY */
  140. function GLTFRegistry() {
  141. var objects = {};
  142. return {
  143. get: function ( key ) {
  144. return objects[ key ];
  145. },
  146. add: function ( key, object ) {
  147. objects[ key ] = object;
  148. },
  149. remove: function ( key ) {
  150. delete objects[ key ];
  151. },
  152. removeAll: function () {
  153. objects = {};
  154. }
  155. };
  156. }
  157. /*********************************/
  158. /********** EXTENSIONS ***********/
  159. /*********************************/
  160. var EXTENSIONS = {
  161. KHR_BINARY_GLTF: 'KHR_binary_glTF',
  162. KHR_DRACO_MESH_COMPRESSION: 'KHR_draco_mesh_compression',
  163. KHR_LIGHTS_PUNCTUAL: 'KHR_lights_punctual',
  164. KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS: 'KHR_materials_pbrSpecularGlossiness',
  165. KHR_MATERIALS_UNLIT: 'KHR_materials_unlit',
  166. KHR_TEXTURE_TRANSFORM: 'KHR_texture_transform',
  167. MSFT_TEXTURE_DDS: 'MSFT_texture_dds'
  168. };
  169. /**
  170. * DDS Texture Extension
  171. *
  172. * Specification:
  173. * https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Vendor/MSFT_texture_dds
  174. *
  175. */
  176. function GLTFTextureDDSExtension( ddsLoader ) {
  177. if ( ! ddsLoader ) {
  178. throw new Error( 'THREE.GLTFLoader: Attempting to load .dds texture without importing THREE.DDSLoader' );
  179. }
  180. this.name = EXTENSIONS.MSFT_TEXTURE_DDS;
  181. this.ddsLoader = ddsLoader;
  182. }
  183. /**
  184. * Lights Extension
  185. *
  186. * Specification: PENDING
  187. */
  188. function GLTFLightsExtension( json ) {
  189. this.name = EXTENSIONS.KHR_LIGHTS_PUNCTUAL;
  190. var extension = ( json.extensions && json.extensions[ EXTENSIONS.KHR_LIGHTS_PUNCTUAL ] ) || {};
  191. this.lightDefs = extension.lights || [];
  192. }
  193. GLTFLightsExtension.prototype.loadLight = function ( lightIndex ) {
  194. var lightDef = this.lightDefs[ lightIndex ];
  195. var lightNode;
  196. var color = new THREE.Color( 0xffffff );
  197. if ( lightDef.color !== undefined ) color.fromArray( lightDef.color );
  198. var range = lightDef.range !== undefined ? lightDef.range : 0;
  199. switch ( lightDef.type ) {
  200. case 'directional':
  201. lightNode = new THREE.DirectionalLight( color );
  202. lightNode.target.position.set( 0, 0, - 1 );
  203. lightNode.add( lightNode.target );
  204. break;
  205. case 'point':
  206. lightNode = new THREE.PointLight( color );
  207. lightNode.distance = range;
  208. break;
  209. case 'spot':
  210. lightNode = new THREE.SpotLight( color );
  211. lightNode.distance = range;
  212. // Handle spotlight properties.
  213. lightDef.spot = lightDef.spot || {};
  214. lightDef.spot.innerConeAngle = lightDef.spot.innerConeAngle !== undefined ? lightDef.spot.innerConeAngle : 0;
  215. lightDef.spot.outerConeAngle = lightDef.spot.outerConeAngle !== undefined ? lightDef.spot.outerConeAngle : Math.PI / 4.0;
  216. lightNode.angle = lightDef.spot.outerConeAngle;
  217. lightNode.penumbra = 1.0 - lightDef.spot.innerConeAngle / lightDef.spot.outerConeAngle;
  218. lightNode.target.position.set( 0, 0, - 1 );
  219. lightNode.add( lightNode.target );
  220. break;
  221. default:
  222. throw new Error( 'THREE.GLTFLoader: Unexpected light type, "' + lightDef.type + '".' );
  223. }
  224. // Some lights (e.g. spot) default to a position other than the origin. Reset the position
  225. // here, because node-level parsing will only override position if explicitly specified.
  226. lightNode.position.set( 0, 0, 0 );
  227. lightNode.decay = 2;
  228. if ( lightDef.intensity !== undefined ) lightNode.intensity = lightDef.intensity;
  229. lightNode.name = lightDef.name || ( 'light_' + lightIndex );
  230. return Promise.resolve( lightNode );
  231. };
  232. /**
  233. * Unlit Materials Extension (pending)
  234. *
  235. * PR: https://github.com/KhronosGroup/glTF/pull/1163
  236. */
  237. function GLTFMaterialsUnlitExtension() {
  238. this.name = EXTENSIONS.KHR_MATERIALS_UNLIT;
  239. }
  240. GLTFMaterialsUnlitExtension.prototype.getMaterialType = function () {
  241. return THREE.MeshBasicMaterial;
  242. };
  243. GLTFMaterialsUnlitExtension.prototype.extendParams = function ( materialParams, materialDef, parser ) {
  244. var pending = [];
  245. materialParams.color = new THREE.Color( 1.0, 1.0, 1.0 );
  246. materialParams.opacity = 1.0;
  247. var metallicRoughness = materialDef.pbrMetallicRoughness;
  248. if ( metallicRoughness ) {
  249. if ( Array.isArray( metallicRoughness.baseColorFactor ) ) {
  250. var array = metallicRoughness.baseColorFactor;
  251. materialParams.color.fromArray( array );
  252. materialParams.opacity = array[ 3 ];
  253. }
  254. if ( metallicRoughness.baseColorTexture !== undefined ) {
  255. pending.push( parser.assignTexture( materialParams, 'map', metallicRoughness.baseColorTexture ) );
  256. }
  257. }
  258. return Promise.all( pending );
  259. };
  260. /* BINARY EXTENSION */
  261. var BINARY_EXTENSION_HEADER_MAGIC = 'glTF';
  262. var BINARY_EXTENSION_HEADER_LENGTH = 12;
  263. var BINARY_EXTENSION_CHUNK_TYPES = { JSON: 0x4E4F534A, BIN: 0x004E4942 };
  264. function GLTFBinaryExtension( data ) {
  265. this.name = EXTENSIONS.KHR_BINARY_GLTF;
  266. this.content = null;
  267. this.body = null;
  268. var headerView = new DataView( data, 0, BINARY_EXTENSION_HEADER_LENGTH );
  269. this.header = {
  270. magic: THREE.LoaderUtils.decodeText( new Uint8Array( data.slice( 0, 4 ) ) ),
  271. version: headerView.getUint32( 4, true ),
  272. length: headerView.getUint32( 8, true )
  273. };
  274. if ( this.header.magic !== BINARY_EXTENSION_HEADER_MAGIC ) {
  275. throw new Error( 'THREE.GLTFLoader: Unsupported glTF-Binary header.' );
  276. } else if ( this.header.version < 2.0 ) {
  277. throw new Error( 'THREE.GLTFLoader: Legacy binary file detected. Use LegacyGLTFLoader instead.' );
  278. }
  279. var chunkView = new DataView( data, BINARY_EXTENSION_HEADER_LENGTH );
  280. var chunkIndex = 0;
  281. while ( chunkIndex < chunkView.byteLength ) {
  282. var chunkLength = chunkView.getUint32( chunkIndex, true );
  283. chunkIndex += 4;
  284. var chunkType = chunkView.getUint32( chunkIndex, true );
  285. chunkIndex += 4;
  286. if ( chunkType === BINARY_EXTENSION_CHUNK_TYPES.JSON ) {
  287. var contentArray = new Uint8Array( data, BINARY_EXTENSION_HEADER_LENGTH + chunkIndex, chunkLength );
  288. this.content = THREE.LoaderUtils.decodeText( contentArray );
  289. } else if ( chunkType === BINARY_EXTENSION_CHUNK_TYPES.BIN ) {
  290. var byteOffset = BINARY_EXTENSION_HEADER_LENGTH + chunkIndex;
  291. this.body = data.slice( byteOffset, byteOffset + chunkLength );
  292. }
  293. // Clients must ignore chunks with unknown types.
  294. chunkIndex += chunkLength;
  295. }
  296. if ( this.content === null ) {
  297. throw new Error( 'THREE.GLTFLoader: JSON content not found.' );
  298. }
  299. }
  300. /**
  301. * DRACO Mesh Compression Extension
  302. *
  303. * Specification: https://github.com/KhronosGroup/glTF/pull/874
  304. */
  305. function GLTFDracoMeshCompressionExtension( json, dracoLoader ) {
  306. if ( ! dracoLoader ) {
  307. throw new Error( 'THREE.GLTFLoader: No DRACOLoader instance provided.' );
  308. }
  309. this.name = EXTENSIONS.KHR_DRACO_MESH_COMPRESSION;
  310. this.json = json;
  311. this.dracoLoader = dracoLoader;
  312. }
  313. GLTFDracoMeshCompressionExtension.prototype.decodePrimitive = function ( primitive, parser ) {
  314. var json = this.json;
  315. var dracoLoader = this.dracoLoader;
  316. var bufferViewIndex = primitive.extensions[ this.name ].bufferView;
  317. var gltfAttributeMap = primitive.extensions[ this.name ].attributes;
  318. var threeAttributeMap = {};
  319. var attributeNormalizedMap = {};
  320. var attributeTypeMap = {};
  321. for ( var attributeName in gltfAttributeMap ) {
  322. var threeAttributeName = ATTRIBUTES[ attributeName ] || attributeName.toLowerCase();
  323. threeAttributeMap[ threeAttributeName ] = gltfAttributeMap[ attributeName ];
  324. }
  325. for ( attributeName in primitive.attributes ) {
  326. var threeAttributeName = ATTRIBUTES[ attributeName ] || attributeName.toLowerCase();
  327. if ( gltfAttributeMap[ attributeName ] !== undefined ) {
  328. var accessorDef = json.accessors[ primitive.attributes[ attributeName ] ];
  329. var componentType = WEBGL_COMPONENT_TYPES[ accessorDef.componentType ];
  330. attributeTypeMap[ threeAttributeName ] = componentType;
  331. attributeNormalizedMap[ threeAttributeName ] = accessorDef.normalized === true;
  332. }
  333. }
  334. return parser.getDependency( 'bufferView', bufferViewIndex ).then( function ( bufferView ) {
  335. return new Promise( function ( resolve ) {
  336. dracoLoader.decodeDracoFile( bufferView, function ( geometry ) {
  337. for ( var attributeName in geometry.attributes ) {
  338. var attribute = geometry.attributes[ attributeName ];
  339. var normalized = attributeNormalizedMap[ attributeName ];
  340. if ( normalized !== undefined ) attribute.normalized = normalized;
  341. }
  342. resolve( geometry );
  343. }, threeAttributeMap, attributeTypeMap );
  344. } );
  345. } );
  346. };
  347. /**
  348. * Texture Transform Extension
  349. *
  350. * Specification:
  351. */
  352. function GLTFTextureTransformExtension() {
  353. this.name = EXTENSIONS.KHR_TEXTURE_TRANSFORM;
  354. }
  355. GLTFTextureTransformExtension.prototype.extendTexture = function ( texture, transform ) {
  356. texture = texture.clone();
  357. if ( transform.offset !== undefined ) {
  358. texture.offset.fromArray( transform.offset );
  359. }
  360. if ( transform.rotation !== undefined ) {
  361. texture.rotation = transform.rotation;
  362. }
  363. if ( transform.scale !== undefined ) {
  364. texture.repeat.fromArray( transform.scale );
  365. }
  366. if ( transform.texCoord !== undefined ) {
  367. console.warn( 'THREE.GLTFLoader: Custom UV sets in "' + this.name + '" extension not yet supported.' );
  368. }
  369. texture.needsUpdate = true;
  370. return texture;
  371. };
  372. /**
  373. * Specular-Glossiness Extension
  374. *
  375. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_pbrSpecularGlossiness
  376. */
  377. function GLTFMaterialsPbrSpecularGlossinessExtension() {
  378. return {
  379. name: EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS,
  380. specularGlossinessParams: [
  381. 'color',
  382. 'map',
  383. 'lightMap',
  384. 'lightMapIntensity',
  385. 'aoMap',
  386. 'aoMapIntensity',
  387. 'emissive',
  388. 'emissiveIntensity',
  389. 'emissiveMap',
  390. 'bumpMap',
  391. 'bumpScale',
  392. 'normalMap',
  393. 'displacementMap',
  394. 'displacementScale',
  395. 'displacementBias',
  396. 'specularMap',
  397. 'specular',
  398. 'glossinessMap',
  399. 'glossiness',
  400. 'alphaMap',
  401. 'envMap',
  402. 'envMapIntensity',
  403. 'refractionRatio',
  404. ],
  405. getMaterialType: function () {
  406. return THREE.ShaderMaterial;
  407. },
  408. extendParams: function ( materialParams, materialDef, parser ) {
  409. var pbrSpecularGlossiness = materialDef.extensions[ this.name ];
  410. var shader = THREE.ShaderLib[ 'standard' ];
  411. var uniforms = THREE.UniformsUtils.clone( shader.uniforms );
  412. var specularMapParsFragmentChunk = [
  413. '#ifdef USE_SPECULARMAP',
  414. ' uniform sampler2D specularMap;',
  415. '#endif'
  416. ].join( '\n' );
  417. var glossinessMapParsFragmentChunk = [
  418. '#ifdef USE_GLOSSINESSMAP',
  419. ' uniform sampler2D glossinessMap;',
  420. '#endif'
  421. ].join( '\n' );
  422. var specularMapFragmentChunk = [
  423. 'vec3 specularFactor = specular;',
  424. '#ifdef USE_SPECULARMAP',
  425. ' vec4 texelSpecular = texture2D( specularMap, vUv );',
  426. ' texelSpecular = sRGBToLinear( texelSpecular );',
  427. ' // reads channel RGB, compatible with a glTF Specular-Glossiness (RGBA) texture',
  428. ' specularFactor *= texelSpecular.rgb;',
  429. '#endif'
  430. ].join( '\n' );
  431. var glossinessMapFragmentChunk = [
  432. 'float glossinessFactor = glossiness;',
  433. '#ifdef USE_GLOSSINESSMAP',
  434. ' vec4 texelGlossiness = texture2D( glossinessMap, vUv );',
  435. ' // reads channel A, compatible with a glTF Specular-Glossiness (RGBA) texture',
  436. ' glossinessFactor *= texelGlossiness.a;',
  437. '#endif'
  438. ].join( '\n' );
  439. var lightPhysicalFragmentChunk = [
  440. 'PhysicalMaterial material;',
  441. 'material.diffuseColor = diffuseColor.rgb;',
  442. 'material.specularRoughness = clamp( 1.0 - glossinessFactor, 0.04, 1.0 );',
  443. 'material.specularColor = specularFactor.rgb;',
  444. ].join( '\n' );
  445. var fragmentShader = shader.fragmentShader
  446. .replace( 'uniform float roughness;', 'uniform vec3 specular;' )
  447. .replace( 'uniform float metalness;', 'uniform float glossiness;' )
  448. .replace( '#include <roughnessmap_pars_fragment>', specularMapParsFragmentChunk )
  449. .replace( '#include <metalnessmap_pars_fragment>', glossinessMapParsFragmentChunk )
  450. .replace( '#include <roughnessmap_fragment>', specularMapFragmentChunk )
  451. .replace( '#include <metalnessmap_fragment>', glossinessMapFragmentChunk )
  452. .replace( '#include <lights_physical_fragment>', lightPhysicalFragmentChunk );
  453. delete uniforms.roughness;
  454. delete uniforms.metalness;
  455. delete uniforms.roughnessMap;
  456. delete uniforms.metalnessMap;
  457. uniforms.specular = { value: new THREE.Color().setHex( 0x111111 ) };
  458. uniforms.glossiness = { value: 0.5 };
  459. uniforms.specularMap = { value: null };
  460. uniforms.glossinessMap = { value: null };
  461. materialParams.vertexShader = shader.vertexShader;
  462. materialParams.fragmentShader = fragmentShader;
  463. materialParams.uniforms = uniforms;
  464. materialParams.defines = { 'STANDARD': '' };
  465. materialParams.color = new THREE.Color( 1.0, 1.0, 1.0 );
  466. materialParams.opacity = 1.0;
  467. var pending = [];
  468. if ( Array.isArray( pbrSpecularGlossiness.diffuseFactor ) ) {
  469. var array = pbrSpecularGlossiness.diffuseFactor;
  470. materialParams.color.fromArray( array );
  471. materialParams.opacity = array[ 3 ];
  472. }
  473. if ( pbrSpecularGlossiness.diffuseTexture !== undefined ) {
  474. pending.push( parser.assignTexture( materialParams, 'map', pbrSpecularGlossiness.diffuseTexture ) );
  475. }
  476. materialParams.emissive = new THREE.Color( 0.0, 0.0, 0.0 );
  477. materialParams.glossiness = pbrSpecularGlossiness.glossinessFactor !== undefined ? pbrSpecularGlossiness.glossinessFactor : 1.0;
  478. materialParams.specular = new THREE.Color( 1.0, 1.0, 1.0 );
  479. if ( Array.isArray( pbrSpecularGlossiness.specularFactor ) ) {
  480. materialParams.specular.fromArray( pbrSpecularGlossiness.specularFactor );
  481. }
  482. if ( pbrSpecularGlossiness.specularGlossinessTexture !== undefined ) {
  483. var specGlossMapDef = pbrSpecularGlossiness.specularGlossinessTexture;
  484. pending.push( parser.assignTexture( materialParams, 'glossinessMap', specGlossMapDef ) );
  485. pending.push( parser.assignTexture( materialParams, 'specularMap', specGlossMapDef ) );
  486. }
  487. return Promise.all( pending );
  488. },
  489. createMaterial: function ( params ) {
  490. // setup material properties based on MeshStandardMaterial for Specular-Glossiness
  491. var material = new THREE.ShaderMaterial( {
  492. defines: params.defines,
  493. vertexShader: params.vertexShader,
  494. fragmentShader: params.fragmentShader,
  495. uniforms: params.uniforms,
  496. fog: true,
  497. lights: true,
  498. opacity: params.opacity,
  499. transparent: params.transparent
  500. } );
  501. material.isGLTFSpecularGlossinessMaterial = true;
  502. material.color = params.color;
  503. material.map = params.map === undefined ? null : params.map;
  504. material.lightMap = null;
  505. material.lightMapIntensity = 1.0;
  506. material.aoMap = params.aoMap === undefined ? null : params.aoMap;
  507. material.aoMapIntensity = 1.0;
  508. material.emissive = params.emissive;
  509. material.emissiveIntensity = 1.0;
  510. material.emissiveMap = params.emissiveMap === undefined ? null : params.emissiveMap;
  511. material.bumpMap = params.bumpMap === undefined ? null : params.bumpMap;
  512. material.bumpScale = 1;
  513. material.normalMap = params.normalMap === undefined ? null : params.normalMap;
  514. if ( params.normalScale ) material.normalScale = params.normalScale;
  515. material.displacementMap = null;
  516. material.displacementScale = 1;
  517. material.displacementBias = 0;
  518. material.specularMap = params.specularMap === undefined ? null : params.specularMap;
  519. material.specular = params.specular;
  520. material.glossinessMap = params.glossinessMap === undefined ? null : params.glossinessMap;
  521. material.glossiness = params.glossiness;
  522. material.alphaMap = null;
  523. material.envMap = params.envMap === undefined ? null : params.envMap;
  524. material.envMapIntensity = 1.0;
  525. material.refractionRatio = 0.98;
  526. material.extensions.derivatives = true;
  527. return material;
  528. },
  529. /**
  530. * Clones a GLTFSpecularGlossinessMaterial instance. The ShaderMaterial.copy() method can
  531. * copy only properties it knows about or inherits, and misses many properties that would
  532. * normally be defined by MeshStandardMaterial.
  533. *
  534. * This method allows GLTFSpecularGlossinessMaterials to be cloned in the process of
  535. * loading a glTF model, but cloning later (e.g. by the user) would require these changes
  536. * AND also updating `.onBeforeRender` on the parent mesh.
  537. *
  538. * @param {THREE.ShaderMaterial} source
  539. * @return {THREE.ShaderMaterial}
  540. */
  541. cloneMaterial: function ( source ) {
  542. var target = source.clone();
  543. target.isGLTFSpecularGlossinessMaterial = true;
  544. var params = this.specularGlossinessParams;
  545. for ( var i = 0, il = params.length; i < il; i ++ ) {
  546. var value = source[ params[ i ] ];
  547. target[ params[ i ] ] = ( value && value.isColor ) ? value.clone() : value;
  548. }
  549. return target;
  550. },
  551. // Here's based on refreshUniformsCommon() and refreshUniformsStandard() in WebGLRenderer.
  552. refreshUniforms: function ( renderer, scene, camera, geometry, material ) {
  553. if ( material.isGLTFSpecularGlossinessMaterial !== true ) {
  554. return;
  555. }
  556. var uniforms = material.uniforms;
  557. var defines = material.defines;
  558. uniforms.opacity.value = material.opacity;
  559. uniforms.diffuse.value.copy( material.color );
  560. uniforms.emissive.value.copy( material.emissive ).multiplyScalar( material.emissiveIntensity );
  561. uniforms.map.value = material.map;
  562. uniforms.specularMap.value = material.specularMap;
  563. uniforms.alphaMap.value = material.alphaMap;
  564. uniforms.lightMap.value = material.lightMap;
  565. uniforms.lightMapIntensity.value = material.lightMapIntensity;
  566. uniforms.aoMap.value = material.aoMap;
  567. uniforms.aoMapIntensity.value = material.aoMapIntensity;
  568. // uv repeat and offset setting priorities
  569. // 1. color map
  570. // 2. specular map
  571. // 3. normal map
  572. // 4. bump map
  573. // 5. alpha map
  574. // 6. emissive map
  575. var uvScaleMap;
  576. if ( material.map ) {
  577. uvScaleMap = material.map;
  578. } else if ( material.specularMap ) {
  579. uvScaleMap = material.specularMap;
  580. } else if ( material.displacementMap ) {
  581. uvScaleMap = material.displacementMap;
  582. } else if ( material.normalMap ) {
  583. uvScaleMap = material.normalMap;
  584. } else if ( material.bumpMap ) {
  585. uvScaleMap = material.bumpMap;
  586. } else if ( material.glossinessMap ) {
  587. uvScaleMap = material.glossinessMap;
  588. } else if ( material.alphaMap ) {
  589. uvScaleMap = material.alphaMap;
  590. } else if ( material.emissiveMap ) {
  591. uvScaleMap = material.emissiveMap;
  592. }
  593. if ( uvScaleMap !== undefined ) {
  594. // backwards compatibility
  595. if ( uvScaleMap.isWebGLRenderTarget ) {
  596. uvScaleMap = uvScaleMap.texture;
  597. }
  598. if ( uvScaleMap.matrixAutoUpdate === true ) {
  599. uvScaleMap.updateMatrix();
  600. }
  601. uniforms.uvTransform.value.copy( uvScaleMap.matrix );
  602. }
  603. if ( material.envMap ) {
  604. uniforms.envMap.value = material.envMap;
  605. uniforms.envMapIntensity.value = material.envMapIntensity;
  606. // don't flip CubeTexture envMaps, flip everything else:
  607. // WebGLRenderTargetCube will be flipped for backwards compatibility
  608. // WebGLRenderTargetCube.texture will be flipped because it's a Texture and NOT a CubeTexture
  609. // this check must be handled differently, or removed entirely, if WebGLRenderTargetCube uses a CubeTexture in the future
  610. uniforms.flipEnvMap.value = material.envMap.isCubeTexture ? - 1 : 1;
  611. uniforms.reflectivity.value = material.reflectivity;
  612. uniforms.refractionRatio.value = material.refractionRatio;
  613. uniforms.maxMipLevel.value = renderer.properties.get( material.envMap ).__maxMipLevel;
  614. }
  615. uniforms.specular.value.copy( material.specular );
  616. uniforms.glossiness.value = material.glossiness;
  617. uniforms.glossinessMap.value = material.glossinessMap;
  618. uniforms.emissiveMap.value = material.emissiveMap;
  619. uniforms.bumpMap.value = material.bumpMap;
  620. uniforms.normalMap.value = material.normalMap;
  621. uniforms.displacementMap.value = material.displacementMap;
  622. uniforms.displacementScale.value = material.displacementScale;
  623. uniforms.displacementBias.value = material.displacementBias;
  624. if ( uniforms.glossinessMap.value !== null && defines.USE_GLOSSINESSMAP === undefined ) {
  625. defines.USE_GLOSSINESSMAP = '';
  626. // set USE_ROUGHNESSMAP to enable vUv
  627. defines.USE_ROUGHNESSMAP = '';
  628. }
  629. if ( uniforms.glossinessMap.value === null && defines.USE_GLOSSINESSMAP !== undefined ) {
  630. delete defines.USE_GLOSSINESSMAP;
  631. delete defines.USE_ROUGHNESSMAP;
  632. }
  633. }
  634. };
  635. }
  636. /*********************************/
  637. /********** INTERPOLATION ********/
  638. /*********************************/
  639. // Spline Interpolation
  640. // Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#appendix-c-spline-interpolation
  641. function GLTFCubicSplineInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) {
  642. THREE.Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer );
  643. }
  644. GLTFCubicSplineInterpolant.prototype = Object.create( THREE.Interpolant.prototype );
  645. GLTFCubicSplineInterpolant.prototype.constructor = GLTFCubicSplineInterpolant;
  646. GLTFCubicSplineInterpolant.prototype.copySampleValue_ = function ( index ) {
  647. // Copies a sample value to the result buffer. See description of glTF
  648. // CUBICSPLINE values layout in interpolate_() function below.
  649. var result = this.resultBuffer,
  650. values = this.sampleValues,
  651. valueSize = this.valueSize,
  652. offset = index * valueSize * 3 + valueSize;
  653. for ( var i = 0; i !== valueSize; i ++ ) {
  654. result[ i ] = values[ offset + i ];
  655. }
  656. return result;
  657. };
  658. GLTFCubicSplineInterpolant.prototype.beforeStart_ = GLTFCubicSplineInterpolant.prototype.copySampleValue_;
  659. GLTFCubicSplineInterpolant.prototype.afterEnd_ = GLTFCubicSplineInterpolant.prototype.copySampleValue_;
  660. GLTFCubicSplineInterpolant.prototype.interpolate_ = function ( i1, t0, t, t1 ) {
  661. var result = this.resultBuffer;
  662. var values = this.sampleValues;
  663. var stride = this.valueSize;
  664. var stride2 = stride * 2;
  665. var stride3 = stride * 3;
  666. var td = t1 - t0;
  667. var p = ( t - t0 ) / td;
  668. var pp = p * p;
  669. var ppp = pp * p;
  670. var offset1 = i1 * stride3;
  671. var offset0 = offset1 - stride3;
  672. var s2 = - 2 * ppp + 3 * pp;
  673. var s3 = ppp - pp;
  674. var s0 = 1 - s2;
  675. var s1 = s3 - pp + p;
  676. // Layout of keyframe output values for CUBICSPLINE animations:
  677. // [ inTangent_1, splineVertex_1, outTangent_1, inTangent_2, splineVertex_2, ... ]
  678. for ( var i = 0; i !== stride; i ++ ) {
  679. var p0 = values[ offset0 + i + stride ]; // splineVertex_k
  680. var m0 = values[ offset0 + i + stride2 ] * td; // outTangent_k * (t_k+1 - t_k)
  681. var p1 = values[ offset1 + i + stride ]; // splineVertex_k+1
  682. var m1 = values[ offset1 + i ] * td; // inTangent_k+1 * (t_k+1 - t_k)
  683. result[ i ] = s0 * p0 + s1 * m0 + s2 * p1 + s3 * m1;
  684. }
  685. return result;
  686. };
  687. /*********************************/
  688. /********** INTERNALS ************/
  689. /*********************************/
  690. /* CONSTANTS */
  691. var WEBGL_CONSTANTS = {
  692. FLOAT: 5126,
  693. //FLOAT_MAT2: 35674,
  694. FLOAT_MAT3: 35675,
  695. FLOAT_MAT4: 35676,
  696. FLOAT_VEC2: 35664,
  697. FLOAT_VEC3: 35665,
  698. FLOAT_VEC4: 35666,
  699. LINEAR: 9729,
  700. REPEAT: 10497,
  701. SAMPLER_2D: 35678,
  702. POINTS: 0,
  703. LINES: 1,
  704. LINE_LOOP: 2,
  705. LINE_STRIP: 3,
  706. TRIANGLES: 4,
  707. TRIANGLE_STRIP: 5,
  708. TRIANGLE_FAN: 6,
  709. UNSIGNED_BYTE: 5121,
  710. UNSIGNED_SHORT: 5123
  711. };
  712. var WEBGL_COMPONENT_TYPES = {
  713. 5120: Int8Array,
  714. 5121: Uint8Array,
  715. 5122: Int16Array,
  716. 5123: Uint16Array,
  717. 5125: Uint32Array,
  718. 5126: Float32Array
  719. };
  720. var WEBGL_FILTERS = {
  721. 9728: THREE.NearestFilter,
  722. 9729: THREE.LinearFilter,
  723. 9984: THREE.NearestMipmapNearestFilter,
  724. 9985: THREE.LinearMipmapNearestFilter,
  725. 9986: THREE.NearestMipmapLinearFilter,
  726. 9987: THREE.LinearMipmapLinearFilter
  727. };
  728. var WEBGL_WRAPPINGS = {
  729. 33071: THREE.ClampToEdgeWrapping,
  730. 33648: THREE.MirroredRepeatWrapping,
  731. 10497: THREE.RepeatWrapping
  732. };
  733. var WEBGL_TYPE_SIZES = {
  734. 'SCALAR': 1,
  735. 'VEC2': 2,
  736. 'VEC3': 3,
  737. 'VEC4': 4,
  738. 'MAT2': 4,
  739. 'MAT3': 9,
  740. 'MAT4': 16
  741. };
  742. var ATTRIBUTES = {
  743. POSITION: 'position',
  744. NORMAL: 'normal',
  745. TANGENT: 'tangent',
  746. TEXCOORD_0: 'uv',
  747. TEXCOORD_1: 'uv2',
  748. COLOR_0: 'color',
  749. WEIGHTS_0: 'skinWeight',
  750. JOINTS_0: 'skinIndex',
  751. };
  752. var PATH_PROPERTIES = {
  753. scale: 'scale',
  754. translation: 'position',
  755. rotation: 'quaternion',
  756. weights: 'morphTargetInfluences'
  757. };
  758. var INTERPOLATION = {
  759. CUBICSPLINE: undefined, // We use a custom interpolant (GLTFCubicSplineInterpolation) for CUBICSPLINE tracks. Each
  760. // keyframe track will be initialized with a default interpolation type, then modified.
  761. LINEAR: THREE.InterpolateLinear,
  762. STEP: THREE.InterpolateDiscrete
  763. };
  764. var ALPHA_MODES = {
  765. OPAQUE: 'OPAQUE',
  766. MASK: 'MASK',
  767. BLEND: 'BLEND'
  768. };
  769. var MIME_TYPE_FORMATS = {
  770. 'image/png': THREE.RGBAFormat,
  771. 'image/jpeg': THREE.RGBFormat
  772. };
  773. /* UTILITY FUNCTIONS */
  774. function resolveURL( url, path ) {
  775. // Invalid URL
  776. if ( typeof url !== 'string' || url === '' ) return '';
  777. // Host Relative URL
  778. if ( /^https?:\/\//i.test( path ) && /^\//.test( url ) ) {
  779. path = path.replace( /(^https?:\/\/[^\/]+).*/i , '$1' );
  780. }
  781. // Absolute URL http://,https://,//
  782. if ( /^(https?:)?\/\//i.test( url ) ) return url;
  783. // Data URI
  784. if ( /^data:.*,.*$/i.test( url ) ) return url;
  785. // Blob URL
  786. if ( /^blob:.*$/i.test( url ) ) return url;
  787. // Relative URL
  788. return path + url;
  789. }
  790. var defaultMaterial;
  791. /**
  792. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#default-material
  793. */
  794. function createDefaultMaterial() {
  795. defaultMaterial = defaultMaterial || new THREE.MeshStandardMaterial( {
  796. color: 0xFFFFFF,
  797. emissive: 0x000000,
  798. metalness: 1,
  799. roughness: 1,
  800. transparent: false,
  801. depthTest: true,
  802. side: THREE.FrontSide
  803. } );
  804. return defaultMaterial;
  805. }
  806. function addUnknownExtensionsToUserData( knownExtensions, object, objectDef ) {
  807. // Add unknown glTF extensions to an object's userData.
  808. for ( var name in objectDef.extensions ) {
  809. if ( knownExtensions[ name ] === undefined ) {
  810. object.userData.gltfExtensions = object.userData.gltfExtensions || {};
  811. object.userData.gltfExtensions[ name ] = objectDef.extensions[ name ];
  812. }
  813. }
  814. }
  815. /**
  816. * @param {THREE.Object3D|THREE.Material|THREE.BufferGeometry} object
  817. * @param {GLTF.definition} gltfDef
  818. */
  819. function assignExtrasToUserData( object, gltfDef ) {
  820. if ( gltfDef.extras !== undefined ) {
  821. if ( typeof gltfDef.extras === 'object' ) {
  822. Object.assign( object.userData, gltfDef.extras );
  823. } else {
  824. console.warn( 'THREE.GLTFLoader: Ignoring primitive type .extras, ' + gltfDef.extras );
  825. }
  826. }
  827. }
  828. /**
  829. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#morph-targets
  830. *
  831. * @param {THREE.BufferGeometry} geometry
  832. * @param {Array<GLTF.Target>} targets
  833. * @param {GLTFParser} parser
  834. * @return {Promise<THREE.BufferGeometry>}
  835. */
  836. function addMorphTargets( geometry, targets, parser ) {
  837. var hasMorphPosition = false;
  838. var hasMorphNormal = false;
  839. for ( var i = 0, il = targets.length; i < il; i ++ ) {
  840. var target = targets[ i ];
  841. if ( target.POSITION !== undefined ) hasMorphPosition = true;
  842. if ( target.NORMAL !== undefined ) hasMorphNormal = true;
  843. if ( hasMorphPosition && hasMorphNormal ) break;
  844. }
  845. if ( ! hasMorphPosition && ! hasMorphNormal ) return Promise.resolve( geometry );
  846. var pendingPositionAccessors = [];
  847. var pendingNormalAccessors = [];
  848. for ( var i = 0, il = targets.length; i < il; i ++ ) {
  849. var target = targets[ i ];
  850. if ( hasMorphPosition ) {
  851. var pendingAccessor = target.POSITION !== undefined
  852. ? parser.getDependency( 'accessor', target.POSITION )
  853. : geometry.attributes.position;
  854. pendingPositionAccessors.push( pendingAccessor );
  855. }
  856. if ( hasMorphNormal ) {
  857. var pendingAccessor = target.NORMAL !== undefined
  858. ? parser.getDependency( 'accessor', target.NORMAL )
  859. : geometry.attributes.normal;
  860. pendingNormalAccessors.push( pendingAccessor );
  861. }
  862. }
  863. return Promise.all( [
  864. Promise.all( pendingPositionAccessors ),
  865. Promise.all( pendingNormalAccessors )
  866. ] ).then( function ( accessors ) {
  867. var morphPositions = accessors[ 0 ];
  868. var morphNormals = accessors[ 1 ];
  869. // Clone morph target accessors before modifying them.
  870. for ( var i = 0, il = morphPositions.length; i < il; i ++ ) {
  871. if ( geometry.attributes.position === morphPositions[ i ] ) continue;
  872. morphPositions[ i ] = cloneBufferAttribute( morphPositions[ i ] );
  873. }
  874. for ( var i = 0, il = morphNormals.length; i < il; i ++ ) {
  875. if ( geometry.attributes.normal === morphNormals[ i ] ) continue;
  876. morphNormals[ i ] = cloneBufferAttribute( morphNormals[ i ] );
  877. }
  878. for ( var i = 0, il = targets.length; i < il; i ++ ) {
  879. var target = targets[ i ];
  880. var attributeName = 'morphTarget' + i;
  881. if ( hasMorphPosition ) {
  882. // Three.js morph position is absolute value. The formula is
  883. // basePosition
  884. // + weight0 * ( morphPosition0 - basePosition )
  885. // + weight1 * ( morphPosition1 - basePosition )
  886. // ...
  887. // while the glTF one is relative
  888. // basePosition
  889. // + weight0 * glTFmorphPosition0
  890. // + weight1 * glTFmorphPosition1
  891. // ...
  892. // then we need to convert from relative to absolute here.
  893. if ( target.POSITION !== undefined ) {
  894. var positionAttribute = morphPositions[ i ];
  895. positionAttribute.name = attributeName;
  896. var position = geometry.attributes.position;
  897. for ( var j = 0, jl = positionAttribute.count; j < jl; j ++ ) {
  898. positionAttribute.setXYZ(
  899. j,
  900. positionAttribute.getX( j ) + position.getX( j ),
  901. positionAttribute.getY( j ) + position.getY( j ),
  902. positionAttribute.getZ( j ) + position.getZ( j )
  903. );
  904. }
  905. }
  906. }
  907. if ( hasMorphNormal ) {
  908. // see target.POSITION's comment
  909. if ( target.NORMAL !== undefined ) {
  910. var normalAttribute = morphNormals[ i ];
  911. normalAttribute.name = attributeName;
  912. var normal = geometry.attributes.normal;
  913. for ( var j = 0, jl = normalAttribute.count; j < jl; j ++ ) {
  914. normalAttribute.setXYZ(
  915. j,
  916. normalAttribute.getX( j ) + normal.getX( j ),
  917. normalAttribute.getY( j ) + normal.getY( j ),
  918. normalAttribute.getZ( j ) + normal.getZ( j )
  919. );
  920. }
  921. }
  922. }
  923. }
  924. if ( hasMorphPosition ) geometry.morphAttributes.position = morphPositions;
  925. if ( hasMorphNormal ) geometry.morphAttributes.normal = morphNormals;
  926. return geometry;
  927. } );
  928. }
  929. /**
  930. * @param {THREE.Mesh} mesh
  931. * @param {GLTF.Mesh} meshDef
  932. */
  933. function updateMorphTargets( mesh, meshDef ) {
  934. mesh.updateMorphTargets();
  935. if ( meshDef.weights !== undefined ) {
  936. for ( var i = 0, il = meshDef.weights.length; i < il; i ++ ) {
  937. mesh.morphTargetInfluences[ i ] = meshDef.weights[ i ];
  938. }
  939. }
  940. // .extras has user-defined data, so check that .extras.targetNames is an array.
  941. if ( meshDef.extras && Array.isArray( meshDef.extras.targetNames ) ) {
  942. var targetNames = meshDef.extras.targetNames;
  943. if ( mesh.morphTargetInfluences.length === targetNames.length ) {
  944. mesh.morphTargetDictionary = {};
  945. for ( var i = 0, il = targetNames.length; i < il; i ++ ) {
  946. mesh.morphTargetDictionary[ targetNames[ i ] ] = i;
  947. }
  948. } else {
  949. console.warn( 'THREE.GLTFLoader: Invalid extras.targetNames length. Ignoring names.' );
  950. }
  951. }
  952. }
  953. function createPrimitiveKey( primitiveDef ) {
  954. var dracoExtension = primitiveDef.extensions && primitiveDef.extensions[ EXTENSIONS.KHR_DRACO_MESH_COMPRESSION ];
  955. var geometryKey;
  956. if ( dracoExtension ) {
  957. geometryKey = 'draco:' + dracoExtension.bufferView
  958. + ':' + dracoExtension.indices
  959. + ':' + createAttributesKey( dracoExtension.attributes );
  960. } else {
  961. geometryKey = primitiveDef.indices + ':' + createAttributesKey( primitiveDef.attributes ) + ':' + primitiveDef.mode;
  962. }
  963. return geometryKey;
  964. }
  965. function createAttributesKey( attributes ) {
  966. var attributesKey = '';
  967. var keys = Object.keys( attributes ).sort();
  968. for ( var i = 0, il = keys.length; i < il; i ++ ) {
  969. attributesKey += keys[ i ] + ':' + attributes[ keys[ i ] ] + ';';
  970. }
  971. return attributesKey;
  972. }
  973. function cloneBufferAttribute( attribute ) {
  974. if ( attribute.isInterleavedBufferAttribute ) {
  975. var count = attribute.count;
  976. var itemSize = attribute.itemSize;
  977. var array = attribute.array.slice( 0, count * itemSize );
  978. for ( var i = 0, j = 0; i < count; ++ i ) {
  979. array[ j ++ ] = attribute.getX( i );
  980. if ( itemSize >= 2 ) array[ j ++ ] = attribute.getY( i );
  981. if ( itemSize >= 3 ) array[ j ++ ] = attribute.getZ( i );
  982. if ( itemSize >= 4 ) array[ j ++ ] = attribute.getW( i );
  983. }
  984. return new THREE.BufferAttribute( array, itemSize, attribute.normalized );
  985. }
  986. return attribute.clone();
  987. }
  988. /* GLTF PARSER */
  989. function GLTFParser( json, extensions, options ) {
  990. this.json = json || {};
  991. this.extensions = extensions || {};
  992. this.options = options || {};
  993. // loader object cache
  994. this.cache = new GLTFRegistry();
  995. // BufferGeometry caching
  996. this.primitiveCache = {};
  997. this.textureLoader = new THREE.TextureLoader( this.options.manager );
  998. this.textureLoader.setCrossOrigin( this.options.crossOrigin );
  999. this.fileLoader = new THREE.FileLoader( this.options.manager );
  1000. this.fileLoader.setResponseType( 'arraybuffer' );
  1001. if ( this.options.crossOrigin === 'use-credentials' ) {
  1002. this.fileLoader.setWithCredentials( true );
  1003. }
  1004. }
  1005. GLTFParser.prototype.parse = function ( onLoad, onError ) {
  1006. var parser = this;
  1007. var json = this.json;
  1008. var extensions = this.extensions;
  1009. // Clear the loader cache
  1010. this.cache.removeAll();
  1011. // Mark the special nodes/meshes in json for efficient parse
  1012. this.markDefs();
  1013. Promise.all( [
  1014. this.getDependencies( 'scene' ),
  1015. this.getDependencies( 'animation' ),
  1016. this.getDependencies( 'camera' ),
  1017. ] ).then( function ( dependencies ) {
  1018. var result = {
  1019. scene: dependencies[ 0 ][ json.scene || 0 ],
  1020. scenes: dependencies[ 0 ],
  1021. animations: dependencies[ 1 ],
  1022. cameras: dependencies[ 2 ],
  1023. asset: json.asset,
  1024. parser: parser,
  1025. userData: {}
  1026. };
  1027. addUnknownExtensionsToUserData( extensions, result, json );
  1028. assignExtrasToUserData( result, json );
  1029. onLoad( result );
  1030. } ).catch( onError );
  1031. };
  1032. /**
  1033. * Marks the special nodes/meshes in json for efficient parse.
  1034. */
  1035. GLTFParser.prototype.markDefs = function () {
  1036. var nodeDefs = this.json.nodes || [];
  1037. var skinDefs = this.json.skins || [];
  1038. var meshDefs = this.json.meshes || [];
  1039. var meshReferences = {};
  1040. var meshUses = {};
  1041. // Nothing in the node definition indicates whether it is a Bone or an
  1042. // Object3D. Use the skins' joint references to mark bones.
  1043. for ( var skinIndex = 0, skinLength = skinDefs.length; skinIndex < skinLength; skinIndex ++ ) {
  1044. var joints = skinDefs[ skinIndex ].joints;
  1045. for ( var i = 0, il = joints.length; i < il; i ++ ) {
  1046. nodeDefs[ joints[ i ] ].isBone = true;
  1047. }
  1048. }
  1049. // Meshes can (and should) be reused by multiple nodes in a glTF asset. To
  1050. // avoid having more than one THREE.Mesh with the same name, count
  1051. // references and rename instances below.
  1052. //
  1053. // Example: CesiumMilkTruck sample model reuses "Wheel" meshes.
  1054. for ( var nodeIndex = 0, nodeLength = nodeDefs.length; nodeIndex < nodeLength; nodeIndex ++ ) {
  1055. var nodeDef = nodeDefs[ nodeIndex ];
  1056. if ( nodeDef.mesh !== undefined ) {
  1057. if ( meshReferences[ nodeDef.mesh ] === undefined ) {
  1058. meshReferences[ nodeDef.mesh ] = meshUses[ nodeDef.mesh ] = 0;
  1059. }
  1060. meshReferences[ nodeDef.mesh ] ++;
  1061. // Nothing in the mesh definition indicates whether it is
  1062. // a SkinnedMesh or Mesh. Use the node's mesh reference
  1063. // to mark SkinnedMesh if node has skin.
  1064. if ( nodeDef.skin !== undefined ) {
  1065. meshDefs[ nodeDef.mesh ].isSkinnedMesh = true;
  1066. }
  1067. }
  1068. }
  1069. this.json.meshReferences = meshReferences;
  1070. this.json.meshUses = meshUses;
  1071. };
  1072. /**
  1073. * Requests the specified dependency asynchronously, with caching.
  1074. * @param {string} type
  1075. * @param {number} index
  1076. * @return {Promise<THREE.Object3D|THREE.Material|THREE.Texture|THREE.AnimationClip|ArrayBuffer|Object>}
  1077. */
  1078. GLTFParser.prototype.getDependency = function ( type, index ) {
  1079. var cacheKey = type + ':' + index;
  1080. var dependency = this.cache.get( cacheKey );
  1081. if ( ! dependency ) {
  1082. switch ( type ) {
  1083. case 'scene':
  1084. dependency = this.loadScene( index );
  1085. break;
  1086. case 'node':
  1087. dependency = this.loadNode( index );
  1088. break;
  1089. case 'mesh':
  1090. dependency = this.loadMesh( index );
  1091. break;
  1092. case 'accessor':
  1093. dependency = this.loadAccessor( index );
  1094. break;
  1095. case 'bufferView':
  1096. dependency = this.loadBufferView( index );
  1097. break;
  1098. case 'buffer':
  1099. dependency = this.loadBuffer( index );
  1100. break;
  1101. case 'material':
  1102. dependency = this.loadMaterial( index );
  1103. break;
  1104. case 'texture':
  1105. dependency = this.loadTexture( index );
  1106. break;
  1107. case 'skin':
  1108. dependency = this.loadSkin( index );
  1109. break;
  1110. case 'animation':
  1111. dependency = this.loadAnimation( index );
  1112. break;
  1113. case 'camera':
  1114. dependency = this.loadCamera( index );
  1115. break;
  1116. case 'light':
  1117. dependency = this.extensions[ EXTENSIONS.KHR_LIGHTS_PUNCTUAL ].loadLight( index );
  1118. break;
  1119. default:
  1120. throw new Error( 'Unknown type: ' + type );
  1121. }
  1122. this.cache.add( cacheKey, dependency );
  1123. }
  1124. return dependency;
  1125. };
  1126. /**
  1127. * Requests all dependencies of the specified type asynchronously, with caching.
  1128. * @param {string} type
  1129. * @return {Promise<Array<Object>>}
  1130. */
  1131. GLTFParser.prototype.getDependencies = function ( type ) {
  1132. var dependencies = this.cache.get( type );
  1133. if ( ! dependencies ) {
  1134. var parser = this;
  1135. var defs = this.json[ type + ( type === 'mesh' ? 'es' : 's' ) ] || [];
  1136. dependencies = Promise.all( defs.map( function ( def, index ) {
  1137. return parser.getDependency( type, index );
  1138. } ) );
  1139. this.cache.add( type, dependencies );
  1140. }
  1141. return dependencies;
  1142. };
  1143. /**
  1144. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#buffers-and-buffer-views
  1145. * @param {number} bufferIndex
  1146. * @return {Promise<ArrayBuffer>}
  1147. */
  1148. GLTFParser.prototype.loadBuffer = function ( bufferIndex ) {
  1149. var bufferDef = this.json.buffers[ bufferIndex ];
  1150. var loader = this.fileLoader;
  1151. if ( bufferDef.type && bufferDef.type !== 'arraybuffer' ) {
  1152. throw new Error( 'THREE.GLTFLoader: ' + bufferDef.type + ' buffer type is not supported.' );
  1153. }
  1154. // If present, GLB container is required to be the first buffer.
  1155. if ( bufferDef.uri === undefined && bufferIndex === 0 ) {
  1156. return Promise.resolve( this.extensions[ EXTENSIONS.KHR_BINARY_GLTF ].body );
  1157. }
  1158. var options = this.options;
  1159. return new Promise( function ( resolve, reject ) {
  1160. loader.load( resolveURL( bufferDef.uri, options.path ), resolve, undefined, function () {
  1161. reject( new Error( 'THREE.GLTFLoader: Failed to load buffer "' + bufferDef.uri + '".' ) );
  1162. } );
  1163. } );
  1164. };
  1165. /**
  1166. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#buffers-and-buffer-views
  1167. * @param {number} bufferViewIndex
  1168. * @return {Promise<ArrayBuffer>}
  1169. */
  1170. GLTFParser.prototype.loadBufferView = function ( bufferViewIndex ) {
  1171. var bufferViewDef = this.json.bufferViews[ bufferViewIndex ];
  1172. return this.getDependency( 'buffer', bufferViewDef.buffer ).then( function ( buffer ) {
  1173. var byteLength = bufferViewDef.byteLength || 0;
  1174. var byteOffset = bufferViewDef.byteOffset || 0;
  1175. return buffer.slice( byteOffset, byteOffset + byteLength );
  1176. } );
  1177. };
  1178. /**
  1179. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#accessors
  1180. * @param {number} accessorIndex
  1181. * @return {Promise<THREE.BufferAttribute|THREE.InterleavedBufferAttribute>}
  1182. */
  1183. GLTFParser.prototype.loadAccessor = function ( accessorIndex ) {
  1184. var parser = this;
  1185. var json = this.json;
  1186. var accessorDef = this.json.accessors[ accessorIndex ];
  1187. if ( accessorDef.bufferView === undefined && accessorDef.sparse === undefined ) {
  1188. // Ignore empty accessors, which may be used to declare runtime
  1189. // information about attributes coming from another source (e.g. Draco
  1190. // compression extension).
  1191. return Promise.resolve( null );
  1192. }
  1193. var pendingBufferViews = [];
  1194. if ( accessorDef.bufferView !== undefined ) {
  1195. pendingBufferViews.push( this.getDependency( 'bufferView', accessorDef.bufferView ) );
  1196. } else {
  1197. pendingBufferViews.push( null );
  1198. }
  1199. if ( accessorDef.sparse !== undefined ) {
  1200. pendingBufferViews.push( this.getDependency( 'bufferView', accessorDef.sparse.indices.bufferView ) );
  1201. pendingBufferViews.push( this.getDependency( 'bufferView', accessorDef.sparse.values.bufferView ) );
  1202. }
  1203. return Promise.all( pendingBufferViews ).then( function ( bufferViews ) {
  1204. var bufferView = bufferViews[ 0 ];
  1205. var itemSize = WEBGL_TYPE_SIZES[ accessorDef.type ];
  1206. var TypedArray = WEBGL_COMPONENT_TYPES[ accessorDef.componentType ];
  1207. // For VEC3: itemSize is 3, elementBytes is 4, itemBytes is 12.
  1208. var elementBytes = TypedArray.BYTES_PER_ELEMENT;
  1209. var itemBytes = elementBytes * itemSize;
  1210. var byteOffset = accessorDef.byteOffset || 0;
  1211. var byteStride = accessorDef.bufferView !== undefined ? json.bufferViews[ accessorDef.bufferView ].byteStride : undefined;
  1212. var normalized = accessorDef.normalized === true;
  1213. var array, bufferAttribute;
  1214. // The buffer is not interleaved if the stride is the item size in bytes.
  1215. if ( byteStride && byteStride !== itemBytes ) {
  1216. // Each "slice" of the buffer, as defined by 'count' elements of 'byteStride' bytes, gets its own InterleavedBuffer
  1217. // This makes sure that IBA.count reflects accessor.count properly
  1218. var ibSlice = Math.floor( byteOffset / byteStride );
  1219. var ibCacheKey = 'InterleavedBuffer:' + accessorDef.bufferView + ':' + accessorDef.componentType + ':' + ibSlice + ':' + accessorDef.count;
  1220. var ib = parser.cache.get( ibCacheKey );
  1221. if ( ! ib ) {
  1222. array = new TypedArray( bufferView, ibSlice * byteStride, accessorDef.count * byteStride / elementBytes );
  1223. // Integer parameters to IB/IBA are in array elements, not bytes.
  1224. ib = new THREE.InterleavedBuffer( array, byteStride / elementBytes );
  1225. parser.cache.add( ibCacheKey, ib );
  1226. }
  1227. bufferAttribute = new THREE.InterleavedBufferAttribute( ib, itemSize, (byteOffset % byteStride) / elementBytes, normalized );
  1228. } else {
  1229. if ( bufferView === null ) {
  1230. array = new TypedArray( accessorDef.count * itemSize );
  1231. } else {
  1232. array = new TypedArray( bufferView, byteOffset, accessorDef.count * itemSize );
  1233. }
  1234. bufferAttribute = new THREE.BufferAttribute( array, itemSize, normalized );
  1235. }
  1236. // https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#sparse-accessors
  1237. if ( accessorDef.sparse !== undefined ) {
  1238. var itemSizeIndices = WEBGL_TYPE_SIZES.SCALAR;
  1239. var TypedArrayIndices = WEBGL_COMPONENT_TYPES[ accessorDef.sparse.indices.componentType ];
  1240. var byteOffsetIndices = accessorDef.sparse.indices.byteOffset || 0;
  1241. var byteOffsetValues = accessorDef.sparse.values.byteOffset || 0;
  1242. var sparseIndices = new TypedArrayIndices( bufferViews[ 1 ], byteOffsetIndices, accessorDef.sparse.count * itemSizeIndices );
  1243. var sparseValues = new TypedArray( bufferViews[ 2 ], byteOffsetValues, accessorDef.sparse.count * itemSize );
  1244. if ( bufferView !== null ) {
  1245. // Avoid modifying the original ArrayBuffer, if the bufferView wasn't initialized with zeroes.
  1246. bufferAttribute.setArray( bufferAttribute.array.slice() );
  1247. }
  1248. for ( var i = 0, il = sparseIndices.length; i < il; i ++ ) {
  1249. var index = sparseIndices[ i ];
  1250. bufferAttribute.setX( index, sparseValues[ i * itemSize ] );
  1251. if ( itemSize >= 2 ) bufferAttribute.setY( index, sparseValues[ i * itemSize + 1 ] );
  1252. if ( itemSize >= 3 ) bufferAttribute.setZ( index, sparseValues[ i * itemSize + 2 ] );
  1253. if ( itemSize >= 4 ) bufferAttribute.setW( index, sparseValues[ i * itemSize + 3 ] );
  1254. if ( itemSize >= 5 ) throw new Error( 'THREE.GLTFLoader: Unsupported itemSize in sparse BufferAttribute.' );
  1255. }
  1256. }
  1257. return bufferAttribute;
  1258. } );
  1259. };
  1260. /**
  1261. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#textures
  1262. * @param {number} textureIndex
  1263. * @return {Promise<THREE.Texture>}
  1264. */
  1265. GLTFParser.prototype.loadTexture = function ( textureIndex ) {
  1266. var parser = this;
  1267. var json = this.json;
  1268. var options = this.options;
  1269. var textureLoader = this.textureLoader;
  1270. var URL = window.URL || window.webkitURL;
  1271. var textureDef = json.textures[ textureIndex ];
  1272. var textureExtensions = textureDef.extensions || {};
  1273. var source;
  1274. if ( textureExtensions[ EXTENSIONS.MSFT_TEXTURE_DDS ] ) {
  1275. source = json.images[ textureExtensions[ EXTENSIONS.MSFT_TEXTURE_DDS ].source ];
  1276. } else {
  1277. source = json.images[ textureDef.source ];
  1278. }
  1279. var sourceURI = source.uri;
  1280. var isObjectURL = false;
  1281. if ( source.bufferView !== undefined ) {
  1282. // Load binary image data from bufferView, if provided.
  1283. sourceURI = parser.getDependency( 'bufferView', source.bufferView ).then( function ( bufferView ) {
  1284. isObjectURL = true;
  1285. var blob = new Blob( [ bufferView ], { type: source.mimeType } );
  1286. sourceURI = URL.createObjectURL( blob );
  1287. return sourceURI;
  1288. } );
  1289. }
  1290. return Promise.resolve( sourceURI ).then( function ( sourceURI ) {
  1291. // Load Texture resource.
  1292. var loader = THREE.Loader.Handlers.get( sourceURI );
  1293. if ( ! loader ) {
  1294. loader = textureExtensions[ EXTENSIONS.MSFT_TEXTURE_DDS ]
  1295. ? parser.extensions[ EXTENSIONS.MSFT_TEXTURE_DDS ].ddsLoader
  1296. : textureLoader;
  1297. }
  1298. return new Promise( function ( resolve, reject ) {
  1299. loader.load( resolveURL( sourceURI, options.path ), resolve, undefined, reject );
  1300. } );
  1301. } ).then( function ( texture ) {
  1302. // Clean up resources and configure Texture.
  1303. if ( isObjectURL === true ) {
  1304. URL.revokeObjectURL( sourceURI );
  1305. }
  1306. texture.flipY = false;
  1307. if ( textureDef.name !== undefined ) texture.name = textureDef.name;
  1308. // Ignore unknown mime types, like DDS files.
  1309. if ( source.mimeType in MIME_TYPE_FORMATS ) {
  1310. texture.format = MIME_TYPE_FORMATS[ source.mimeType ];
  1311. }
  1312. var samplers = json.samplers || {};
  1313. var sampler = samplers[ textureDef.sampler ] || {};
  1314. texture.magFilter = WEBGL_FILTERS[ sampler.magFilter ] || THREE.LinearFilter;
  1315. texture.minFilter = WEBGL_FILTERS[ sampler.minFilter ] || THREE.LinearMipmapLinearFilter;
  1316. texture.wrapS = WEBGL_WRAPPINGS[ sampler.wrapS ] || THREE.RepeatWrapping;
  1317. texture.wrapT = WEBGL_WRAPPINGS[ sampler.wrapT ] || THREE.RepeatWrapping;
  1318. return texture;
  1319. } );
  1320. };
  1321. /**
  1322. * Asynchronously assigns a texture to the given material parameters.
  1323. * @param {Object} materialParams
  1324. * @param {string} mapName
  1325. * @param {Object} mapDef
  1326. * @return {Promise}
  1327. */
  1328. GLTFParser.prototype.assignTexture = function ( materialParams, mapName, mapDef ) {
  1329. var parser = this;
  1330. return this.getDependency( 'texture', mapDef.index ).then( function ( texture ) {
  1331. if ( ! texture.isCompressedTexture ) {
  1332. switch ( mapName ) {
  1333. case 'aoMap':
  1334. case 'emissiveMap':
  1335. case 'metalnessMap':
  1336. case 'normalMap':
  1337. case 'roughnessMap':
  1338. texture.format = THREE.RGBFormat;
  1339. break;
  1340. }
  1341. }
  1342. if ( parser.extensions[ EXTENSIONS.KHR_TEXTURE_TRANSFORM ] ) {
  1343. var transform = mapDef.extensions !== undefined ? mapDef.extensions[ EXTENSIONS.KHR_TEXTURE_TRANSFORM ] : undefined;
  1344. if ( transform ) {
  1345. texture = parser.extensions[ EXTENSIONS.KHR_TEXTURE_TRANSFORM ].extendTexture( texture, transform );
  1346. }
  1347. }
  1348. materialParams[ mapName ] = texture;
  1349. } );
  1350. };
  1351. /**
  1352. * Assigns final material to a Mesh, Line, or Points instance. The instance
  1353. * already has a material (generated from the glTF material options alone)
  1354. * but reuse of the same glTF material may require multiple threejs materials
  1355. * to accomodate different primitive types, defines, etc. New materials will
  1356. * be created if necessary, and reused from a cache.
  1357. * @param {THREE.Object3D} mesh Mesh, Line, or Points instance.
  1358. */
  1359. GLTFParser.prototype.assignFinalMaterial = function ( mesh ) {
  1360. var geometry = mesh.geometry;
  1361. var material = mesh.material;
  1362. var extensions = this.extensions;
  1363. var useVertexTangents = geometry.attributes.tangent !== undefined;
  1364. var useVertexColors = geometry.attributes.color !== undefined;
  1365. var useFlatShading = geometry.attributes.normal === undefined;
  1366. var useSkinning = mesh.isSkinnedMesh === true;
  1367. var useMorphTargets = Object.keys( geometry.morphAttributes ).length > 0;
  1368. var useMorphNormals = useMorphTargets && geometry.morphAttributes.normal !== undefined;
  1369. if ( mesh.isPoints ) {
  1370. var cacheKey = 'PointsMaterial:' + material.uuid;
  1371. var pointsMaterial = this.cache.get( cacheKey );
  1372. if ( ! pointsMaterial ) {
  1373. pointsMaterial = new THREE.PointsMaterial();
  1374. THREE.Material.prototype.copy.call( pointsMaterial, material );
  1375. pointsMaterial.color.copy( material.color );
  1376. pointsMaterial.map = material.map;
  1377. pointsMaterial.lights = false; // PointsMaterial doesn't support lights yet
  1378. this.cache.add( cacheKey, pointsMaterial );
  1379. }
  1380. material = pointsMaterial;
  1381. } else if ( mesh.isLine ) {
  1382. var cacheKey = 'LineBasicMaterial:' + material.uuid;
  1383. var lineMaterial = this.cache.get( cacheKey );
  1384. if ( ! lineMaterial ) {
  1385. lineMaterial = new THREE.LineBasicMaterial();
  1386. THREE.Material.prototype.copy.call( lineMaterial, material );
  1387. lineMaterial.color.copy( material.color );
  1388. lineMaterial.lights = false; // LineBasicMaterial doesn't support lights yet
  1389. this.cache.add( cacheKey, lineMaterial );
  1390. }
  1391. material = lineMaterial;
  1392. }
  1393. // Clone the material if it will be modified
  1394. if ( useVertexTangents || useVertexColors || useFlatShading || useSkinning || useMorphTargets ) {
  1395. var cacheKey = 'ClonedMaterial:' + material.uuid + ':';
  1396. if ( material.isGLTFSpecularGlossinessMaterial ) cacheKey += 'specular-glossiness:';
  1397. if ( useSkinning ) cacheKey += 'skinning:';
  1398. if ( useVertexTangents ) cacheKey += 'vertex-tangents:';
  1399. if ( useVertexColors ) cacheKey += 'vertex-colors:';
  1400. if ( useFlatShading ) cacheKey += 'flat-shading:';
  1401. if ( useMorphTargets ) cacheKey += 'morph-targets:';
  1402. if ( useMorphNormals ) cacheKey += 'morph-normals:';
  1403. var cachedMaterial = this.cache.get( cacheKey );
  1404. if ( ! cachedMaterial ) {
  1405. cachedMaterial = material.isGLTFSpecularGlossinessMaterial
  1406. ? extensions[ EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS ].cloneMaterial( material )
  1407. : material.clone();
  1408. if ( useSkinning ) cachedMaterial.skinning = true;
  1409. if ( useVertexTangents ) cachedMaterial.vertexTangents = true;
  1410. if ( useVertexColors ) cachedMaterial.vertexColors = THREE.VertexColors;
  1411. if ( useFlatShading ) cachedMaterial.flatShading = true;
  1412. if ( useMorphTargets ) cachedMaterial.morphTargets = true;
  1413. if ( useMorphNormals ) cachedMaterial.morphNormals = true;
  1414. this.cache.add( cacheKey, cachedMaterial );
  1415. }
  1416. material = cachedMaterial;
  1417. }
  1418. // workarounds for mesh and geometry
  1419. if ( material.aoMap && geometry.attributes.uv2 === undefined && geometry.attributes.uv !== undefined ) {
  1420. console.log( 'THREE.GLTFLoader: Duplicating UVs to support aoMap.' );
  1421. geometry.addAttribute( 'uv2', new THREE.BufferAttribute( geometry.attributes.uv.array, 2 ) );
  1422. }
  1423. if ( material.isGLTFSpecularGlossinessMaterial ) {
  1424. // for GLTFSpecularGlossinessMaterial(ShaderMaterial) uniforms runtime update
  1425. mesh.onBeforeRender = extensions[ EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS ].refreshUniforms;
  1426. }
  1427. mesh.material = material;
  1428. };
  1429. /**
  1430. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#materials
  1431. * @param {number} materialIndex
  1432. * @return {Promise<THREE.Material>}
  1433. */
  1434. GLTFParser.prototype.loadMaterial = function ( materialIndex ) {
  1435. var parser = this;
  1436. var json = this.json;
  1437. var extensions = this.extensions;
  1438. var materialDef = json.materials[ materialIndex ];
  1439. var materialType;
  1440. var materialParams = {};
  1441. var materialExtensions = materialDef.extensions || {};
  1442. var pending = [];
  1443. if ( materialExtensions[ EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS ] ) {
  1444. var sgExtension = extensions[ EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS ];
  1445. materialType = sgExtension.getMaterialType();
  1446. pending.push( sgExtension.extendParams( materialParams, materialDef, parser ) );
  1447. } else if ( materialExtensions[ EXTENSIONS.KHR_MATERIALS_UNLIT ] ) {
  1448. var kmuExtension = extensions[ EXTENSIONS.KHR_MATERIALS_UNLIT ];
  1449. materialType = kmuExtension.getMaterialType();
  1450. pending.push( kmuExtension.extendParams( materialParams, materialDef, parser ) );
  1451. } else {
  1452. // Specification:
  1453. // https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#metallic-roughness-material
  1454. materialType = THREE.MeshStandardMaterial;
  1455. var metallicRoughness = materialDef.pbrMetallicRoughness || {};
  1456. materialParams.color = new THREE.Color( 1.0, 1.0, 1.0 );
  1457. materialParams.opacity = 1.0;
  1458. if ( Array.isArray( metallicRoughness.baseColorFactor ) ) {
  1459. var array = metallicRoughness.baseColorFactor;
  1460. materialParams.color.fromArray( array );
  1461. materialParams.opacity = array[ 3 ];
  1462. }
  1463. if ( metallicRoughness.baseColorTexture !== undefined ) {
  1464. pending.push( parser.assignTexture( materialParams, 'map', metallicRoughness.baseColorTexture ) );
  1465. }
  1466. materialParams.metalness = metallicRoughness.metallicFactor !== undefined ? metallicRoughness.metallicFactor : 1.0;
  1467. materialParams.roughness = metallicRoughness.roughnessFactor !== undefined ? metallicRoughness.roughnessFactor : 1.0;
  1468. if ( metallicRoughness.metallicRoughnessTexture !== undefined ) {
  1469. pending.push( parser.assignTexture( materialParams, 'metalnessMap', metallicRoughness.metallicRoughnessTexture ) );
  1470. pending.push( parser.assignTexture( materialParams, 'roughnessMap', metallicRoughness.metallicRoughnessTexture ) );
  1471. }
  1472. }
  1473. if ( materialDef.doubleSided === true ) {
  1474. materialParams.side = THREE.DoubleSide;
  1475. }
  1476. var alphaMode = materialDef.alphaMode || ALPHA_MODES.OPAQUE;
  1477. if ( alphaMode === ALPHA_MODES.BLEND ) {
  1478. materialParams.transparent = true;
  1479. } else {
  1480. materialParams.transparent = false;
  1481. if ( alphaMode === ALPHA_MODES.MASK ) {
  1482. materialParams.alphaTest = materialDef.alphaCutoff !== undefined ? materialDef.alphaCutoff : 0.5;
  1483. }
  1484. }
  1485. if ( materialDef.normalTexture !== undefined && materialType !== THREE.MeshBasicMaterial ) {
  1486. pending.push( parser.assignTexture( materialParams, 'normalMap', materialDef.normalTexture ) );
  1487. materialParams.normalScale = new THREE.Vector2( 1, 1 );
  1488. if ( materialDef.normalTexture.scale !== undefined ) {
  1489. materialParams.normalScale.set( materialDef.normalTexture.scale, materialDef.normalTexture.scale );
  1490. }
  1491. }
  1492. if ( materialDef.occlusionTexture !== undefined && materialType !== THREE.MeshBasicMaterial ) {
  1493. pending.push( parser.assignTexture( materialParams, 'aoMap', materialDef.occlusionTexture ) );
  1494. if ( materialDef.occlusionTexture.strength !== undefined ) {
  1495. materialParams.aoMapIntensity = materialDef.occlusionTexture.strength;
  1496. }
  1497. }
  1498. if ( materialDef.emissiveFactor !== undefined && materialType !== THREE.MeshBasicMaterial ) {
  1499. materialParams.emissive = new THREE.Color().fromArray( materialDef.emissiveFactor );
  1500. }
  1501. if ( materialDef.emissiveTexture !== undefined && materialType !== THREE.MeshBasicMaterial ) {
  1502. pending.push( parser.assignTexture( materialParams, 'emissiveMap', materialDef.emissiveTexture ) );
  1503. }
  1504. return Promise.all( pending ).then( function () {
  1505. var material;
  1506. if ( materialType === THREE.ShaderMaterial ) {
  1507. material = extensions[ EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS ].createMaterial( materialParams );
  1508. } else {
  1509. material = new materialType( materialParams );
  1510. }
  1511. if ( materialDef.name !== undefined ) material.name = materialDef.name;
  1512. // baseColorTexture, emissiveTexture, and specularGlossinessTexture use sRGB encoding.
  1513. if ( material.map ) material.map.encoding = THREE.sRGBEncoding;
  1514. if ( material.emissiveMap ) material.emissiveMap.encoding = THREE.sRGBEncoding;
  1515. if ( material.specularMap ) material.specularMap.encoding = THREE.sRGBEncoding;
  1516. assignExtrasToUserData( material, materialDef );
  1517. if ( materialDef.extensions ) addUnknownExtensionsToUserData( extensions, material, materialDef );
  1518. return material;
  1519. } );
  1520. };
  1521. /**
  1522. * @param {THREE.BufferGeometry} geometry
  1523. * @param {GLTF.Primitive} primitiveDef
  1524. * @param {GLTFParser} parser
  1525. * @return {Promise<THREE.BufferGeometry>}
  1526. */
  1527. function addPrimitiveAttributes( geometry, primitiveDef, parser ) {
  1528. var attributes = primitiveDef.attributes;
  1529. var pending = [];
  1530. function assignAttributeAccessor( accessorIndex, attributeName ) {
  1531. return parser.getDependency( 'accessor', accessorIndex )
  1532. .then( function ( accessor ) {
  1533. geometry.addAttribute( attributeName, accessor );
  1534. } );
  1535. }
  1536. for ( var gltfAttributeName in attributes ) {
  1537. var threeAttributeName = ATTRIBUTES[ gltfAttributeName ] || gltfAttributeName.toLowerCase();
  1538. // Skip attributes already provided by e.g. Draco extension.
  1539. if ( threeAttributeName in geometry.attributes ) continue;
  1540. pending.push( assignAttributeAccessor( attributes[ gltfAttributeName ], threeAttributeName ) );
  1541. }
  1542. if ( primitiveDef.indices !== undefined && ! geometry.index ) {
  1543. var accessor = parser.getDependency( 'accessor', primitiveDef.indices ).then( function ( accessor ) {
  1544. geometry.setIndex( accessor );
  1545. } );
  1546. pending.push( accessor );
  1547. }
  1548. assignExtrasToUserData( geometry, primitiveDef );
  1549. return Promise.all( pending ).then( function () {
  1550. return primitiveDef.targets !== undefined
  1551. ? addMorphTargets( geometry, primitiveDef.targets, parser )
  1552. : geometry;
  1553. } );
  1554. }
  1555. /**
  1556. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#geometry
  1557. *
  1558. * Creates BufferGeometries from primitives.
  1559. *
  1560. * @param {Array<GLTF.Primitive>} primitives
  1561. * @return {Promise<Array<THREE.BufferGeometry>>}
  1562. */
  1563. GLTFParser.prototype.loadGeometries = function ( primitives ) {
  1564. var parser = this;
  1565. var extensions = this.extensions;
  1566. var cache = this.primitiveCache;
  1567. function createDracoPrimitive( primitive ) {
  1568. return extensions[ EXTENSIONS.KHR_DRACO_MESH_COMPRESSION ]
  1569. .decodePrimitive( primitive, parser )
  1570. .then( function ( geometry ) {
  1571. return addPrimitiveAttributes( geometry, primitive, parser );
  1572. } );
  1573. }
  1574. var pending = [];
  1575. for ( var i = 0, il = primitives.length; i < il; i ++ ) {
  1576. var primitive = primitives[ i ];
  1577. var cacheKey = createPrimitiveKey( primitive );
  1578. // See if we've already created this geometry
  1579. var cached = cache[ cacheKey ];
  1580. if ( cached ) {
  1581. // Use the cached geometry if it exists
  1582. pending.push( cached.promise );
  1583. } else {
  1584. var geometryPromise;
  1585. if ( primitive.extensions && primitive.extensions[ EXTENSIONS.KHR_DRACO_MESH_COMPRESSION ] ) {
  1586. // Use DRACO geometry if available
  1587. geometryPromise = createDracoPrimitive( primitive );
  1588. } else {
  1589. // Otherwise create a new geometry
  1590. geometryPromise = addPrimitiveAttributes( new THREE.BufferGeometry(), primitive, parser );
  1591. }
  1592. // Cache this geometry
  1593. cache[ cacheKey ] = { primitive: primitive, promise: geometryPromise };
  1594. pending.push( geometryPromise );
  1595. }
  1596. }
  1597. return Promise.all( pending );
  1598. };
  1599. /**
  1600. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#meshes
  1601. * @param {number} meshIndex
  1602. * @return {Promise<THREE.Group|THREE.Mesh|THREE.SkinnedMesh>}
  1603. */
  1604. GLTFParser.prototype.loadMesh = function ( meshIndex ) {
  1605. var parser = this;
  1606. var json = this.json;
  1607. var meshDef = json.meshes[ meshIndex ];
  1608. var primitives = meshDef.primitives;
  1609. var pending = [];
  1610. for ( var i = 0, il = primitives.length; i < il; i ++ ) {
  1611. var material = primitives[ i ].material === undefined
  1612. ? createDefaultMaterial()
  1613. : this.getDependency( 'material', primitives[ i ].material );
  1614. pending.push( material );
  1615. }
  1616. return Promise.all( pending ).then( function ( originalMaterials ) {
  1617. return parser.loadGeometries( primitives ).then( function ( geometries ) {
  1618. var meshes = [];
  1619. for ( var i = 0, il = geometries.length; i < il; i ++ ) {
  1620. var geometry = geometries[ i ];
  1621. var primitive = primitives[ i ];
  1622. // 1. create Mesh
  1623. var mesh;
  1624. var material = originalMaterials[ i ];
  1625. if ( primitive.mode === WEBGL_CONSTANTS.TRIANGLES ||
  1626. primitive.mode === WEBGL_CONSTANTS.TRIANGLE_STRIP ||
  1627. primitive.mode === WEBGL_CONSTANTS.TRIANGLE_FAN ||
  1628. primitive.mode === undefined ) {
  1629. // .isSkinnedMesh isn't in glTF spec. See .markDefs()
  1630. mesh = meshDef.isSkinnedMesh === true
  1631. ? new THREE.SkinnedMesh( geometry, material )
  1632. : new THREE.Mesh( geometry, material );
  1633. if ( mesh.isSkinnedMesh === true && ! mesh.geometry.attributes.skinWeight.normalized ) {
  1634. // we normalize floating point skin weight array to fix malformed assets (see #15319)
  1635. // it's important to skip this for non-float32 data since normalizeSkinWeights assumes non-normalized inputs
  1636. mesh.normalizeSkinWeights();
  1637. }
  1638. if ( primitive.mode === WEBGL_CONSTANTS.TRIANGLE_STRIP ) {
  1639. mesh.drawMode = THREE.TriangleStripDrawMode;
  1640. } else if ( primitive.mode === WEBGL_CONSTANTS.TRIANGLE_FAN ) {
  1641. mesh.drawMode = THREE.TriangleFanDrawMode;
  1642. }
  1643. } else if ( primitive.mode === WEBGL_CONSTANTS.LINES ) {
  1644. mesh = new THREE.LineSegments( geometry, material );
  1645. } else if ( primitive.mode === WEBGL_CONSTANTS.LINE_STRIP ) {
  1646. mesh = new THREE.Line( geometry, material );
  1647. } else if ( primitive.mode === WEBGL_CONSTANTS.LINE_LOOP ) {
  1648. mesh = new THREE.LineLoop( geometry, material );
  1649. } else if ( primitive.mode === WEBGL_CONSTANTS.POINTS ) {
  1650. mesh = new THREE.Points( geometry, material );
  1651. } else {
  1652. throw new Error( 'THREE.GLTFLoader: Primitive mode unsupported: ' + primitive.mode );
  1653. }
  1654. if ( Object.keys( mesh.geometry.morphAttributes ).length > 0 ) {
  1655. updateMorphTargets( mesh, meshDef );
  1656. }
  1657. mesh.name = meshDef.name || ( 'mesh_' + meshIndex );
  1658. if ( geometries.length > 1 ) mesh.name += '_' + i;
  1659. assignExtrasToUserData( mesh, meshDef );
  1660. parser.assignFinalMaterial( mesh );
  1661. meshes.push( mesh );
  1662. }
  1663. if ( meshes.length === 1 ) {
  1664. return meshes[ 0 ];
  1665. }
  1666. var group = new THREE.Group();
  1667. for ( var i = 0, il = meshes.length; i < il; i ++ ) {
  1668. group.add( meshes[ i ] );
  1669. }
  1670. return group;
  1671. } );
  1672. } );
  1673. };
  1674. /**
  1675. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#cameras
  1676. * @param {number} cameraIndex
  1677. * @return {Promise<THREE.Camera>}
  1678. */
  1679. GLTFParser.prototype.loadCamera = function ( cameraIndex ) {
  1680. var camera;
  1681. var cameraDef = this.json.cameras[ cameraIndex ];
  1682. var params = cameraDef[ cameraDef.type ];
  1683. if ( ! params ) {
  1684. console.warn( 'THREE.GLTFLoader: Missing camera parameters.' );
  1685. return;
  1686. }
  1687. if ( cameraDef.type === 'perspective' ) {
  1688. camera = new THREE.PerspectiveCamera( THREE.Math.radToDeg( params.yfov ), params.aspectRatio || 1, params.znear || 1, params.zfar || 2e6 );
  1689. } else if ( cameraDef.type === 'orthographic' ) {
  1690. camera = new THREE.OrthographicCamera( params.xmag / - 2, params.xmag / 2, params.ymag / 2, params.ymag / - 2, params.znear, params.zfar );
  1691. }
  1692. if ( cameraDef.name !== undefined ) camera.name = cameraDef.name;
  1693. assignExtrasToUserData( camera, cameraDef );
  1694. return Promise.resolve( camera );
  1695. };
  1696. /**
  1697. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#skins
  1698. * @param {number} skinIndex
  1699. * @return {Promise<Object>}
  1700. */
  1701. GLTFParser.prototype.loadSkin = function ( skinIndex ) {
  1702. var skinDef = this.json.skins[ skinIndex ];
  1703. var skinEntry = { joints: skinDef.joints };
  1704. if ( skinDef.inverseBindMatrices === undefined ) {
  1705. return Promise.resolve( skinEntry );
  1706. }
  1707. return this.getDependency( 'accessor', skinDef.inverseBindMatrices ).then( function ( accessor ) {
  1708. skinEntry.inverseBindMatrices = accessor;
  1709. return skinEntry;
  1710. } );
  1711. };
  1712. /**
  1713. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#animations
  1714. * @param {number} animationIndex
  1715. * @return {Promise<THREE.AnimationClip>}
  1716. */
  1717. GLTFParser.prototype.loadAnimation = function ( animationIndex ) {
  1718. var json = this.json;
  1719. var animationDef = json.animations[ animationIndex ];
  1720. var pendingNodes = [];
  1721. var pendingInputAccessors = [];
  1722. var pendingOutputAccessors = [];
  1723. var pendingSamplers = [];
  1724. var pendingTargets = [];
  1725. for ( var i = 0, il = animationDef.channels.length; i < il; i ++ ) {
  1726. var channel = animationDef.channels[ i ];
  1727. var sampler = animationDef.samplers[ channel.sampler ];
  1728. var target = channel.target;
  1729. var name = target.node !== undefined ? target.node : target.id; // NOTE: target.id is deprecated.
  1730. var input = animationDef.parameters !== undefined ? animationDef.parameters[ sampler.input ] : sampler.input;
  1731. var output = animationDef.parameters !== undefined ? animationDef.parameters[ sampler.output ] : sampler.output;
  1732. pendingNodes.push( this.getDependency( 'node', name ) );
  1733. pendingInputAccessors.push( this.getDependency( 'accessor', input ) );
  1734. pendingOutputAccessors.push( this.getDependency( 'accessor', output ) );
  1735. pendingSamplers.push( sampler );
  1736. pendingTargets.push( target );
  1737. }
  1738. return Promise.all( [
  1739. Promise.all( pendingNodes ),
  1740. Promise.all( pendingInputAccessors ),
  1741. Promise.all( pendingOutputAccessors ),
  1742. Promise.all( pendingSamplers ),
  1743. Promise.all( pendingTargets )
  1744. ] ).then( function ( dependencies ) {
  1745. var nodes = dependencies[ 0 ];
  1746. var inputAccessors = dependencies[ 1 ];
  1747. var outputAccessors = dependencies[ 2 ];
  1748. var samplers = dependencies[ 3 ];
  1749. var targets = dependencies[ 4 ];
  1750. var tracks = [];
  1751. for ( var i = 0, il = nodes.length; i < il; i ++ ) {
  1752. var node = nodes[ i ];
  1753. var inputAccessor = inputAccessors[ i ];
  1754. var outputAccessor = outputAccessors[ i ];
  1755. var sampler = samplers[ i ];
  1756. var target = targets[ i ];
  1757. if ( node === undefined ) continue;
  1758. node.updateMatrix();
  1759. node.matrixAutoUpdate = true;
  1760. var TypedKeyframeTrack;
  1761. switch ( PATH_PROPERTIES[ target.path ] ) {
  1762. case PATH_PROPERTIES.weights:
  1763. TypedKeyframeTrack = THREE.NumberKeyframeTrack;
  1764. break;
  1765. case PATH_PROPERTIES.rotation:
  1766. TypedKeyframeTrack = THREE.QuaternionKeyframeTrack;
  1767. break;
  1768. case PATH_PROPERTIES.position:
  1769. case PATH_PROPERTIES.scale:
  1770. default:
  1771. TypedKeyframeTrack = THREE.VectorKeyframeTrack;
  1772. break;
  1773. }
  1774. var targetName = node.name ? node.name : node.uuid;
  1775. var interpolation = sampler.interpolation !== undefined ? INTERPOLATION[ sampler.interpolation ] : THREE.InterpolateLinear;
  1776. var targetNames = [];
  1777. if ( PATH_PROPERTIES[ target.path ] === PATH_PROPERTIES.weights ) {
  1778. // Node may be a THREE.Group (glTF mesh with several primitives) or a THREE.Mesh.
  1779. node.traverse( function ( object ) {
  1780. if ( object.isMesh === true && object.morphTargetInfluences ) {
  1781. targetNames.push( object.name ? object.name : object.uuid );
  1782. }
  1783. } );
  1784. } else {
  1785. targetNames.push( targetName );
  1786. }
  1787. var outputArray = outputAccessor.array;
  1788. if ( outputAccessor.normalized ) {
  1789. var scale;
  1790. if ( outputArray.constructor === Int8Array ) {
  1791. scale = 1 / 127;
  1792. } else if ( outputArray.constructor === Uint8Array ) {
  1793. scale = 1 / 255;
  1794. } else if ( outputArray.constructor == Int16Array ) {
  1795. scale = 1 / 32767;
  1796. } else if ( outputArray.constructor === Uint16Array ) {
  1797. scale = 1 / 65535;
  1798. } else {
  1799. throw new Error( 'THREE.GLTFLoader: Unsupported output accessor component type.' );
  1800. }
  1801. var scaled = new Float32Array( outputArray.length );
  1802. for ( var j = 0, jl = outputArray.length; j < jl; j ++ ) {
  1803. scaled[ j ] = outputArray[ j ] * scale;
  1804. }
  1805. outputArray = scaled;
  1806. }
  1807. for ( var j = 0, jl = targetNames.length; j < jl; j ++ ) {
  1808. var track = new TypedKeyframeTrack(
  1809. targetNames[ j ] + '.' + PATH_PROPERTIES[ target.path ],
  1810. inputAccessor.array,
  1811. outputArray,
  1812. interpolation
  1813. );
  1814. // Override interpolation with custom factory method.
  1815. if ( sampler.interpolation === 'CUBICSPLINE' ) {
  1816. track.createInterpolant = function InterpolantFactoryMethodGLTFCubicSpline( result ) {
  1817. // A CUBICSPLINE keyframe in glTF has three output values for each input value,
  1818. // representing inTangent, splineVertex, and outTangent. As a result, track.getValueSize()
  1819. // must be divided by three to get the interpolant's sampleSize argument.
  1820. return new GLTFCubicSplineInterpolant( this.times, this.values, this.getValueSize() / 3, result );
  1821. };
  1822. // Mark as CUBICSPLINE. `track.getInterpolation()` doesn't support custom interpolants.
  1823. track.createInterpolant.isInterpolantFactoryMethodGLTFCubicSpline = true;
  1824. }
  1825. tracks.push( track );
  1826. }
  1827. }
  1828. var name = animationDef.name !== undefined ? animationDef.name : 'animation_' + animationIndex;
  1829. return new THREE.AnimationClip( name, undefined, tracks );
  1830. } );
  1831. };
  1832. /**
  1833. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#nodes-and-hierarchy
  1834. * @param {number} nodeIndex
  1835. * @return {Promise<THREE.Object3D>}
  1836. */
  1837. GLTFParser.prototype.loadNode = function ( nodeIndex ) {
  1838. var json = this.json;
  1839. var extensions = this.extensions;
  1840. var parser = this;
  1841. var meshReferences = json.meshReferences;
  1842. var meshUses = json.meshUses;
  1843. var nodeDef = json.nodes[ nodeIndex ];
  1844. return ( function () {
  1845. var pending = [];
  1846. if ( nodeDef.mesh !== undefined ) {
  1847. pending.push( parser.getDependency( 'mesh', nodeDef.mesh ).then( function ( mesh ) {
  1848. var node;
  1849. if ( meshReferences[ nodeDef.mesh ] > 1 ) {
  1850. var instanceNum = meshUses[ nodeDef.mesh ] ++;
  1851. node = mesh.clone();
  1852. node.name += '_instance_' + instanceNum;
  1853. // onBeforeRender copy for Specular-Glossiness
  1854. node.onBeforeRender = mesh.onBeforeRender;
  1855. for ( var i = 0, il = node.children.length; i < il; i ++ ) {
  1856. node.children[ i ].name += '_instance_' + instanceNum;
  1857. node.children[ i ].onBeforeRender = mesh.children[ i ].onBeforeRender;
  1858. }
  1859. } else {
  1860. node = mesh;
  1861. }
  1862. // if weights are provided on the node, override weights on the mesh.
  1863. if ( nodeDef.weights !== undefined ) {
  1864. node.traverse( function ( o ) {
  1865. if ( ! o.isMesh ) return;
  1866. for ( var i = 0, il = nodeDef.weights.length; i < il; i ++ ) {
  1867. o.morphTargetInfluences[ i ] = nodeDef.weights[ i ];
  1868. }
  1869. } );
  1870. }
  1871. return node;
  1872. } ) );
  1873. }
  1874. if ( nodeDef.camera !== undefined ) {
  1875. pending.push( parser.getDependency( 'camera', nodeDef.camera ) );
  1876. }
  1877. if ( nodeDef.extensions
  1878. && nodeDef.extensions[ EXTENSIONS.KHR_LIGHTS_PUNCTUAL ]
  1879. && nodeDef.extensions[ EXTENSIONS.KHR_LIGHTS_PUNCTUAL ].light !== undefined ) {
  1880. pending.push( parser.getDependency( 'light', nodeDef.extensions[ EXTENSIONS.KHR_LIGHTS_PUNCTUAL ].light ) );
  1881. }
  1882. return Promise.all( pending );
  1883. }() ).then( function ( objects ) {
  1884. var node;
  1885. // .isBone isn't in glTF spec. See .markDefs
  1886. if ( nodeDef.isBone === true ) {
  1887. node = new THREE.Bone();
  1888. } else if ( objects.length > 1 ) {
  1889. node = new THREE.Group();
  1890. } else if ( objects.length === 1 ) {
  1891. node = objects[ 0 ];
  1892. } else {
  1893. node = new THREE.Object3D();
  1894. }
  1895. if ( node !== objects[ 0 ] ) {
  1896. for ( var i = 0, il = objects.length; i < il; i ++ ) {
  1897. node.add( objects[ i ] );
  1898. }
  1899. }
  1900. if ( nodeDef.name !== undefined ) {
  1901. node.userData.name = nodeDef.name;
  1902. node.name = THREE.PropertyBinding.sanitizeNodeName( nodeDef.name );
  1903. }
  1904. assignExtrasToUserData( node, nodeDef );
  1905. if ( nodeDef.extensions ) addUnknownExtensionsToUserData( extensions, node, nodeDef );
  1906. if ( nodeDef.matrix !== undefined ) {
  1907. var matrix = new THREE.Matrix4();
  1908. matrix.fromArray( nodeDef.matrix );
  1909. node.applyMatrix( matrix );
  1910. } else {
  1911. if ( nodeDef.translation !== undefined ) {
  1912. node.position.fromArray( nodeDef.translation );
  1913. }
  1914. if ( nodeDef.rotation !== undefined ) {
  1915. node.quaternion.fromArray( nodeDef.rotation );
  1916. }
  1917. if ( nodeDef.scale !== undefined ) {
  1918. node.scale.fromArray( nodeDef.scale );
  1919. }
  1920. }
  1921. return node;
  1922. } );
  1923. };
  1924. /**
  1925. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#scenes
  1926. * @param {number} sceneIndex
  1927. * @return {Promise<THREE.Scene>}
  1928. */
  1929. GLTFParser.prototype.loadScene = function () {
  1930. // scene node hierachy builder
  1931. function buildNodeHierachy( nodeId, parentObject, json, parser ) {
  1932. var nodeDef = json.nodes[ nodeId ];
  1933. return parser.getDependency( 'node', nodeId ).then( function ( node ) {
  1934. if ( nodeDef.skin === undefined ) return node;
  1935. // build skeleton here as well
  1936. var skinEntry;
  1937. return parser.getDependency( 'skin', nodeDef.skin ).then( function ( skin ) {
  1938. skinEntry = skin;
  1939. var pendingJoints = [];
  1940. for ( var i = 0, il = skinEntry.joints.length; i < il; i ++ ) {
  1941. pendingJoints.push( parser.getDependency( 'node', skinEntry.joints[ i ] ) );
  1942. }
  1943. return Promise.all( pendingJoints );
  1944. } ).then( function ( jointNodes ) {
  1945. node.traverse( function ( mesh ) {
  1946. if ( ! mesh.isMesh ) return;
  1947. var bones = [];
  1948. var boneInverses = [];
  1949. for ( var j = 0, jl = jointNodes.length; j < jl; j ++ ) {
  1950. var jointNode = jointNodes[ j ];
  1951. if ( jointNode ) {
  1952. bones.push( jointNode );
  1953. var mat = new THREE.Matrix4();
  1954. if ( skinEntry.inverseBindMatrices !== undefined ) {
  1955. mat.fromArray( skinEntry.inverseBindMatrices.array, j * 16 );
  1956. }
  1957. boneInverses.push( mat );
  1958. } else {
  1959. console.warn( 'THREE.GLTFLoader: Joint "%s" could not be found.', skinEntry.joints[ j ] );
  1960. }
  1961. }
  1962. mesh.bind( new THREE.Skeleton( bones, boneInverses ), mesh.matrixWorld );
  1963. } );
  1964. return node;
  1965. } );
  1966. } ).then( function ( node ) {
  1967. // build node hierachy
  1968. parentObject.add( node );
  1969. var pending = [];
  1970. if ( nodeDef.children ) {
  1971. var children = nodeDef.children;
  1972. for ( var i = 0, il = children.length; i < il; i ++ ) {
  1973. var child = children[ i ];
  1974. pending.push( buildNodeHierachy( child, node, json, parser ) );
  1975. }
  1976. }
  1977. return Promise.all( pending );
  1978. } );
  1979. }
  1980. return function loadScene( sceneIndex ) {
  1981. var json = this.json;
  1982. var extensions = this.extensions;
  1983. var sceneDef = this.json.scenes[ sceneIndex ];
  1984. var parser = this;
  1985. var scene = new THREE.Scene();
  1986. if ( sceneDef.name !== undefined ) scene.name = sceneDef.name;
  1987. assignExtrasToUserData( scene, sceneDef );
  1988. if ( sceneDef.extensions ) addUnknownExtensionsToUserData( extensions, scene, sceneDef );
  1989. var nodeIds = sceneDef.nodes || [];
  1990. var pending = [];
  1991. for ( var i = 0, il = nodeIds.length; i < il; i ++ ) {
  1992. pending.push( buildNodeHierachy( nodeIds[ i ], scene, json, parser ) );
  1993. }
  1994. return Promise.all( pending ).then( function () {
  1995. return scene;
  1996. } );
  1997. };
  1998. }();
  1999. return GLTFLoader;
  2000. } )();