GLTFLoader.js 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876
  1. THREE.GLTFLoader = ( function () {
  2. function GLTFLoader( manager ) {
  3. THREE.Loader.call( this, manager );
  4. this.dracoLoader = null;
  5. this.ktx2Loader = null;
  6. this.meshoptDecoder = null;
  7. this.pluginCallbacks = [];
  8. this.register( function ( parser ) {
  9. return new GLTFMaterialsClearcoatExtension( parser );
  10. } );
  11. this.register( function ( parser ) {
  12. return new GLTFTextureBasisUExtension( parser );
  13. } );
  14. this.register( function ( parser ) {
  15. return new GLTFTextureWebPExtension( parser );
  16. } );
  17. this.register( function ( parser ) {
  18. return new GLTFMaterialsTransmissionExtension( parser );
  19. } );
  20. this.register( function ( parser ) {
  21. return new GLTFLightsExtension( parser );
  22. } );
  23. this.register( function ( parser ) {
  24. return new GLTFMeshoptCompression( parser );
  25. } );
  26. }
  27. GLTFLoader.prototype = Object.assign( Object.create( THREE.Loader.prototype ), {
  28. constructor: GLTFLoader,
  29. load: function ( url, onLoad, onProgress, onError ) {
  30. var scope = this;
  31. var resourcePath;
  32. if ( this.resourcePath !== '' ) {
  33. resourcePath = this.resourcePath;
  34. } else if ( this.path !== '' ) {
  35. resourcePath = this.path;
  36. } else {
  37. resourcePath = THREE.LoaderUtils.extractUrlBase( url );
  38. }
  39. // Tells the LoadingManager to track an extra item, which resolves after
  40. // the model is fully loaded. This means the count of items loaded will
  41. // be incorrect, but ensures manager.onLoad() does not fire early.
  42. this.manager.itemStart( url );
  43. var _onError = function ( e ) {
  44. if ( onError ) {
  45. onError( e );
  46. } else {
  47. console.error( e );
  48. }
  49. scope.manager.itemError( url );
  50. scope.manager.itemEnd( url );
  51. };
  52. var loader = new THREE.FileLoader( this.manager );
  53. loader.setPath( this.path );
  54. loader.setResponseType( 'arraybuffer' );
  55. loader.setRequestHeader( this.requestHeader );
  56. loader.setWithCredentials( this.withCredentials );
  57. loader.load( url, function ( data ) {
  58. try {
  59. scope.parse( data, resourcePath, function ( gltf ) {
  60. onLoad( gltf );
  61. scope.manager.itemEnd( url );
  62. }, _onError );
  63. } catch ( e ) {
  64. _onError( e );
  65. }
  66. }, onProgress, _onError );
  67. },
  68. setDRACOLoader: function ( dracoLoader ) {
  69. this.dracoLoader = dracoLoader;
  70. return this;
  71. },
  72. setDDSLoader: function () {
  73. throw new Error(
  74. 'THREE.GLTFLoader: "MSFT_texture_dds" no longer supported. Please update to "KHR_texture_basisu".'
  75. );
  76. },
  77. setKTX2Loader: function ( ktx2Loader ) {
  78. this.ktx2Loader = ktx2Loader;
  79. return this;
  80. },
  81. setMeshoptDecoder: function ( meshoptDecoder ) {
  82. this.meshoptDecoder = meshoptDecoder;
  83. return this;
  84. },
  85. register: function ( callback ) {
  86. if ( this.pluginCallbacks.indexOf( callback ) === - 1 ) {
  87. this.pluginCallbacks.push( callback );
  88. }
  89. return this;
  90. },
  91. unregister: function ( callback ) {
  92. if ( this.pluginCallbacks.indexOf( callback ) !== - 1 ) {
  93. this.pluginCallbacks.splice( this.pluginCallbacks.indexOf( callback ), 1 );
  94. }
  95. return this;
  96. },
  97. parse: function ( data, path, onLoad, onError ) {
  98. var content;
  99. var extensions = {};
  100. var plugins = {};
  101. if ( typeof data === 'string' ) {
  102. content = data;
  103. } else {
  104. var magic = THREE.LoaderUtils.decodeText( new Uint8Array( data, 0, 4 ) );
  105. if ( magic === BINARY_EXTENSION_HEADER_MAGIC ) {
  106. try {
  107. extensions[ EXTENSIONS.KHR_BINARY_GLTF ] = new GLTFBinaryExtension( data );
  108. } catch ( error ) {
  109. if ( onError ) onError( error );
  110. return;
  111. }
  112. content = extensions[ EXTENSIONS.KHR_BINARY_GLTF ].content;
  113. } else {
  114. content = THREE.LoaderUtils.decodeText( new Uint8Array( data ) );
  115. }
  116. }
  117. var json = JSON.parse( content );
  118. if ( json.asset === undefined || json.asset.version[ 0 ] < 2 ) {
  119. if ( onError ) onError( new Error( 'THREE.GLTFLoader: Unsupported asset. glTF versions >=2.0 are supported.' ) );
  120. return;
  121. }
  122. var parser = new GLTFParser( json, {
  123. path: path || this.resourcePath || '',
  124. crossOrigin: this.crossOrigin,
  125. requestHeader: this.requestHeader,
  126. manager: this.manager,
  127. ktx2Loader: this.ktx2Loader,
  128. meshoptDecoder: this.meshoptDecoder
  129. } );
  130. parser.fileLoader.setRequestHeader( this.requestHeader );
  131. for ( var i = 0; i < this.pluginCallbacks.length; i ++ ) {
  132. var plugin = this.pluginCallbacks[ i ]( parser );
  133. plugins[ plugin.name ] = plugin;
  134. // Workaround to avoid determining as unknown extension
  135. // in addUnknownExtensionsToUserData().
  136. // Remove this workaround if we move all the existing
  137. // extension handlers to plugin system
  138. extensions[ plugin.name ] = true;
  139. }
  140. if ( json.extensionsUsed ) {
  141. for ( var i = 0; i < json.extensionsUsed.length; ++ i ) {
  142. var extensionName = json.extensionsUsed[ i ];
  143. var extensionsRequired = json.extensionsRequired || [];
  144. switch ( extensionName ) {
  145. case EXTENSIONS.KHR_MATERIALS_UNLIT:
  146. extensions[ extensionName ] = new GLTFMaterialsUnlitExtension();
  147. break;
  148. case EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS:
  149. extensions[ extensionName ] = new GLTFMaterialsPbrSpecularGlossinessExtension();
  150. break;
  151. case EXTENSIONS.KHR_DRACO_MESH_COMPRESSION:
  152. extensions[ extensionName ] = new GLTFDracoMeshCompressionExtension( json, this.dracoLoader );
  153. break;
  154. case EXTENSIONS.KHR_TEXTURE_TRANSFORM:
  155. extensions[ extensionName ] = new GLTFTextureTransformExtension();
  156. break;
  157. case EXTENSIONS.KHR_MESH_QUANTIZATION:
  158. extensions[ extensionName ] = new GLTFMeshQuantizationExtension();
  159. break;
  160. default:
  161. if ( extensionsRequired.indexOf( extensionName ) >= 0 && plugins[ extensionName ] === undefined ) {
  162. console.warn( 'THREE.GLTFLoader: Unknown extension "' + extensionName + '".' );
  163. }
  164. }
  165. }
  166. }
  167. parser.setExtensions( extensions );
  168. parser.setPlugins( plugins );
  169. parser.parse( onLoad, onError );
  170. }
  171. } );
  172. /* GLTFREGISTRY */
  173. function GLTFRegistry() {
  174. var objects = {};
  175. return {
  176. get: function ( key ) {
  177. return objects[ key ];
  178. },
  179. add: function ( key, object ) {
  180. objects[ key ] = object;
  181. },
  182. remove: function ( key ) {
  183. delete objects[ key ];
  184. },
  185. removeAll: function () {
  186. objects = {};
  187. }
  188. };
  189. }
  190. /*********************************/
  191. /********** EXTENSIONS ***********/
  192. /*********************************/
  193. var EXTENSIONS = {
  194. KHR_BINARY_GLTF: 'KHR_binary_glTF',
  195. KHR_DRACO_MESH_COMPRESSION: 'KHR_draco_mesh_compression',
  196. KHR_LIGHTS_PUNCTUAL: 'KHR_lights_punctual',
  197. KHR_MATERIALS_CLEARCOAT: 'KHR_materials_clearcoat',
  198. KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS: 'KHR_materials_pbrSpecularGlossiness',
  199. KHR_MATERIALS_TRANSMISSION: 'KHR_materials_transmission',
  200. KHR_MATERIALS_UNLIT: 'KHR_materials_unlit',
  201. KHR_TEXTURE_BASISU: 'KHR_texture_basisu',
  202. KHR_TEXTURE_TRANSFORM: 'KHR_texture_transform',
  203. KHR_MESH_QUANTIZATION: 'KHR_mesh_quantization',
  204. EXT_TEXTURE_WEBP: 'EXT_texture_webp',
  205. EXT_MESHOPT_COMPRESSION: 'EXT_meshopt_compression'
  206. };
  207. /**
  208. * Punctual Lights Extension
  209. *
  210. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_lights_punctual
  211. */
  212. function GLTFLightsExtension( parser ) {
  213. this.parser = parser;
  214. this.name = EXTENSIONS.KHR_LIGHTS_PUNCTUAL;
  215. // Object3D instance caches
  216. this.cache = { refs: {}, uses: {} };
  217. }
  218. GLTFLightsExtension.prototype._markDefs = function () {
  219. var parser = this.parser;
  220. var nodeDefs = this.parser.json.nodes || [];
  221. for ( var nodeIndex = 0, nodeLength = nodeDefs.length; nodeIndex < nodeLength; nodeIndex ++ ) {
  222. var nodeDef = nodeDefs[ nodeIndex ];
  223. if ( nodeDef.extensions
  224. && nodeDef.extensions[ this.name ]
  225. && nodeDef.extensions[ this.name ].light !== undefined ) {
  226. parser._addNodeRef( this.cache, nodeDef.extensions[ this.name ].light );
  227. }
  228. }
  229. };
  230. GLTFLightsExtension.prototype._loadLight = function ( lightIndex ) {
  231. var parser = this.parser;
  232. var cacheKey = 'light:' + lightIndex;
  233. var dependency = parser.cache.get( cacheKey );
  234. if ( dependency ) return dependency;
  235. var json = parser.json;
  236. var extensions = ( json.extensions && json.extensions[ this.name ] ) || {};
  237. var lightDefs = extensions.lights || [];
  238. var lightDef = lightDefs[ lightIndex ];
  239. var lightNode;
  240. var color = new THREE.Color( 0xffffff );
  241. if ( lightDef.color !== undefined ) color.fromArray( lightDef.color );
  242. var range = lightDef.range !== undefined ? lightDef.range : 0;
  243. switch ( lightDef.type ) {
  244. case 'directional':
  245. lightNode = new THREE.DirectionalLight( color );
  246. lightNode.target.position.set( 0, 0, - 1 );
  247. lightNode.add( lightNode.target );
  248. break;
  249. case 'point':
  250. lightNode = new THREE.PointLight( color );
  251. lightNode.distance = range;
  252. break;
  253. case 'spot':
  254. lightNode = new THREE.SpotLight( color );
  255. lightNode.distance = range;
  256. // Handle spotlight properties.
  257. lightDef.spot = lightDef.spot || {};
  258. lightDef.spot.innerConeAngle = lightDef.spot.innerConeAngle !== undefined ? lightDef.spot.innerConeAngle : 0;
  259. lightDef.spot.outerConeAngle = lightDef.spot.outerConeAngle !== undefined ? lightDef.spot.outerConeAngle : Math.PI / 4.0;
  260. lightNode.angle = lightDef.spot.outerConeAngle;
  261. lightNode.penumbra = 1.0 - lightDef.spot.innerConeAngle / lightDef.spot.outerConeAngle;
  262. lightNode.target.position.set( 0, 0, - 1 );
  263. lightNode.add( lightNode.target );
  264. break;
  265. default:
  266. throw new Error( 'THREE.GLTFLoader: Unexpected light type: ' + lightDef.type );
  267. }
  268. // Some lights (e.g. spot) default to a position other than the origin. Reset the position
  269. // here, because node-level parsing will only override position if explicitly specified.
  270. lightNode.position.set( 0, 0, 0 );
  271. lightNode.decay = 2;
  272. if ( lightDef.intensity !== undefined ) lightNode.intensity = lightDef.intensity;
  273. lightNode.name = parser.createUniqueName( lightDef.name || ( 'light_' + lightIndex ) );
  274. dependency = Promise.resolve( lightNode );
  275. parser.cache.add( cacheKey, dependency );
  276. return dependency;
  277. };
  278. GLTFLightsExtension.prototype.createNodeAttachment = function ( nodeIndex ) {
  279. var self = this;
  280. var parser = this.parser;
  281. var json = parser.json;
  282. var nodeDef = json.nodes[ nodeIndex ];
  283. var lightDef = ( nodeDef.extensions && nodeDef.extensions[ this.name ] ) || {};
  284. var lightIndex = lightDef.light;
  285. if ( lightIndex === undefined ) return null;
  286. return this._loadLight( lightIndex ).then( function ( light ) {
  287. return parser._getNodeRef( self.cache, lightIndex, light );
  288. } );
  289. };
  290. /**
  291. * Unlit Materials Extension
  292. *
  293. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_unlit
  294. */
  295. function GLTFMaterialsUnlitExtension() {
  296. this.name = EXTENSIONS.KHR_MATERIALS_UNLIT;
  297. }
  298. GLTFMaterialsUnlitExtension.prototype.getMaterialType = function () {
  299. return THREE.MeshBasicMaterial;
  300. };
  301. GLTFMaterialsUnlitExtension.prototype.extendParams = function ( materialParams, materialDef, parser ) {
  302. var pending = [];
  303. materialParams.color = new THREE.Color( 1.0, 1.0, 1.0 );
  304. materialParams.opacity = 1.0;
  305. var metallicRoughness = materialDef.pbrMetallicRoughness;
  306. if ( metallicRoughness ) {
  307. if ( Array.isArray( metallicRoughness.baseColorFactor ) ) {
  308. var array = metallicRoughness.baseColorFactor;
  309. materialParams.color.fromArray( array );
  310. materialParams.opacity = array[ 3 ];
  311. }
  312. if ( metallicRoughness.baseColorTexture !== undefined ) {
  313. pending.push( parser.assignTexture( materialParams, 'map', metallicRoughness.baseColorTexture ) );
  314. }
  315. }
  316. return Promise.all( pending );
  317. };
  318. /**
  319. * Clearcoat Materials Extension
  320. *
  321. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_clearcoat
  322. */
  323. function GLTFMaterialsClearcoatExtension( parser ) {
  324. this.parser = parser;
  325. this.name = EXTENSIONS.KHR_MATERIALS_CLEARCOAT;
  326. }
  327. GLTFMaterialsClearcoatExtension.prototype.getMaterialType = function ( materialIndex ) {
  328. var parser = this.parser;
  329. var materialDef = parser.json.materials[ materialIndex ];
  330. if ( ! materialDef.extensions || ! materialDef.extensions[ this.name ] ) return null;
  331. return THREE.MeshPhysicalMaterial;
  332. };
  333. GLTFMaterialsClearcoatExtension.prototype.extendMaterialParams = function ( materialIndex, materialParams ) {
  334. var parser = this.parser;
  335. var materialDef = parser.json.materials[ materialIndex ];
  336. if ( ! materialDef.extensions || ! materialDef.extensions[ this.name ] ) {
  337. return Promise.resolve();
  338. }
  339. var pending = [];
  340. var extension = materialDef.extensions[ this.name ];
  341. if ( extension.clearcoatFactor !== undefined ) {
  342. materialParams.clearcoat = extension.clearcoatFactor;
  343. }
  344. if ( extension.clearcoatTexture !== undefined ) {
  345. pending.push( parser.assignTexture( materialParams, 'clearcoatMap', extension.clearcoatTexture ) );
  346. }
  347. if ( extension.clearcoatRoughnessFactor !== undefined ) {
  348. materialParams.clearcoatRoughness = extension.clearcoatRoughnessFactor;
  349. }
  350. if ( extension.clearcoatRoughnessTexture !== undefined ) {
  351. pending.push( parser.assignTexture( materialParams, 'clearcoatRoughnessMap', extension.clearcoatRoughnessTexture ) );
  352. }
  353. if ( extension.clearcoatNormalTexture !== undefined ) {
  354. pending.push( parser.assignTexture( materialParams, 'clearcoatNormalMap', extension.clearcoatNormalTexture ) );
  355. if ( extension.clearcoatNormalTexture.scale !== undefined ) {
  356. var scale = extension.clearcoatNormalTexture.scale;
  357. // https://github.com/mrdoob/three.js/issues/11438#issuecomment-507003995
  358. materialParams.clearcoatNormalScale = new THREE.Vector2( scale, - scale );
  359. }
  360. }
  361. return Promise.all( pending );
  362. };
  363. /**
  364. * Transmission Materials Extension
  365. *
  366. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_transmission
  367. * Draft: https://github.com/KhronosGroup/glTF/pull/1698
  368. */
  369. function GLTFMaterialsTransmissionExtension( parser ) {
  370. this.parser = parser;
  371. this.name = EXTENSIONS.KHR_MATERIALS_TRANSMISSION;
  372. }
  373. GLTFMaterialsTransmissionExtension.prototype.getMaterialType = function ( materialIndex ) {
  374. var parser = this.parser;
  375. var materialDef = parser.json.materials[ materialIndex ];
  376. if ( ! materialDef.extensions || ! materialDef.extensions[ this.name ] ) return null;
  377. return THREE.MeshPhysicalMaterial;
  378. };
  379. GLTFMaterialsTransmissionExtension.prototype.extendMaterialParams = function ( materialIndex, materialParams ) {
  380. var parser = this.parser;
  381. var materialDef = parser.json.materials[ materialIndex ];
  382. if ( ! materialDef.extensions || ! materialDef.extensions[ this.name ] ) {
  383. return Promise.resolve();
  384. }
  385. var pending = [];
  386. var extension = materialDef.extensions[ this.name ];
  387. if ( extension.transmissionFactor !== undefined ) {
  388. materialParams.transmission = extension.transmissionFactor;
  389. }
  390. if ( extension.transmissionTexture !== undefined ) {
  391. pending.push( parser.assignTexture( materialParams, 'transmissionMap', extension.transmissionTexture ) );
  392. }
  393. return Promise.all( pending );
  394. };
  395. /**
  396. * BasisU Texture Extension
  397. *
  398. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_texture_basisu
  399. */
  400. function GLTFTextureBasisUExtension( parser ) {
  401. this.parser = parser;
  402. this.name = EXTENSIONS.KHR_TEXTURE_BASISU;
  403. }
  404. GLTFTextureBasisUExtension.prototype.loadTexture = function ( textureIndex ) {
  405. var parser = this.parser;
  406. var json = parser.json;
  407. var textureDef = json.textures[ textureIndex ];
  408. if ( ! textureDef.extensions || ! textureDef.extensions[ this.name ] ) {
  409. return null;
  410. }
  411. var extension = textureDef.extensions[ this.name ];
  412. var source = json.images[ extension.source ];
  413. var loader = parser.options.ktx2Loader;
  414. if ( ! loader ) {
  415. if ( json.extensionsRequired && json.extensionsRequired.indexOf( this.name ) >= 0 ) {
  416. throw new Error( 'THREE.GLTFLoader: setKTX2Loader must be called before loading KTX2 textures' );
  417. } else {
  418. // Assumes that the extension is optional and that a fallback texture is present
  419. return null;
  420. }
  421. }
  422. return parser.loadTextureImage( textureIndex, source, loader );
  423. };
  424. /**
  425. * WebP Texture Extension
  426. *
  427. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Vendor/EXT_texture_webp
  428. */
  429. function GLTFTextureWebPExtension( parser ) {
  430. this.parser = parser;
  431. this.name = EXTENSIONS.EXT_TEXTURE_WEBP;
  432. this.isSupported = null;
  433. }
  434. GLTFTextureWebPExtension.prototype.loadTexture = function ( textureIndex ) {
  435. var name = this.name;
  436. var parser = this.parser;
  437. var json = parser.json;
  438. var textureDef = json.textures[ textureIndex ];
  439. if ( ! textureDef.extensions || ! textureDef.extensions[ name ] ) {
  440. return null;
  441. }
  442. var extension = textureDef.extensions[ name ];
  443. var source = json.images[ extension.source ];
  444. var loader = parser.textureLoader;
  445. if ( source.uri ) {
  446. var handler = parser.options.manager.getHandler( source.uri );
  447. if ( handler !== null ) loader = handler;
  448. }
  449. return this.detectSupport().then( function ( isSupported ) {
  450. if ( isSupported ) return parser.loadTextureImage( textureIndex, source, loader );
  451. if ( json.extensionsRequired && json.extensionsRequired.indexOf( name ) >= 0 ) {
  452. throw new Error( 'THREE.GLTFLoader: WebP required by asset but unsupported.' );
  453. }
  454. // Fall back to PNG or JPEG.
  455. return parser.loadTexture( textureIndex );
  456. } );
  457. };
  458. GLTFTextureWebPExtension.prototype.detectSupport = function () {
  459. if ( ! this.isSupported ) {
  460. this.isSupported = new Promise( function ( resolve ) {
  461. var image = new Image();
  462. // Lossy test image. Support for lossy images doesn't guarantee support for all
  463. // WebP images, unfortunately.
  464. image.src = 'data:image/webp;base64,UklGRiIAAABXRUJQVlA4IBYAAAAwAQCdASoBAAEADsD+JaQAA3AAAAAA';
  465. image.onload = image.onerror = function () {
  466. resolve( image.height === 1 );
  467. };
  468. } );
  469. }
  470. return this.isSupported;
  471. };
  472. /**
  473. * meshopt BufferView Compression Extension
  474. *
  475. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Vendor/EXT_meshopt_compression
  476. */
  477. function GLTFMeshoptCompression( parser ) {
  478. this.name = EXTENSIONS.EXT_MESHOPT_COMPRESSION;
  479. this.parser = parser;
  480. }
  481. GLTFMeshoptCompression.prototype.loadBufferView = function ( index ) {
  482. var json = this.parser.json;
  483. var bufferView = json.bufferViews[ index ];
  484. if ( bufferView.extensions && bufferView.extensions[ this.name ] ) {
  485. var extensionDef = bufferView.extensions[ this.name ];
  486. var buffer = this.parser.getDependency( 'buffer', extensionDef.buffer );
  487. var decoder = this.parser.options.meshoptDecoder;
  488. if ( ! decoder || ! decoder.supported ) {
  489. if ( json.extensionsRequired && json.extensionsRequired.indexOf( this.name ) >= 0 ) {
  490. throw new Error( 'THREE.GLTFLoader: setMeshoptDecoder must be called before loading compressed files' );
  491. } else {
  492. // Assumes that the extension is optional and that fallback buffer data is present
  493. return null;
  494. }
  495. }
  496. return Promise.all( [ buffer, decoder.ready ] ).then( function ( res ) {
  497. var byteOffset = extensionDef.byteOffset || 0;
  498. var byteLength = extensionDef.byteLength || 0;
  499. var count = extensionDef.count;
  500. var stride = extensionDef.byteStride;
  501. var result = new ArrayBuffer( count * stride );
  502. var source = new Uint8Array( res[ 0 ], byteOffset, byteLength );
  503. decoder.decodeGltfBuffer( new Uint8Array( result ), count, stride, source, extensionDef.mode, extensionDef.filter );
  504. return result;
  505. } );
  506. } else {
  507. return null;
  508. }
  509. };
  510. /* BINARY EXTENSION */
  511. var BINARY_EXTENSION_HEADER_MAGIC = 'glTF';
  512. var BINARY_EXTENSION_HEADER_LENGTH = 12;
  513. var BINARY_EXTENSION_CHUNK_TYPES = { JSON: 0x4E4F534A, BIN: 0x004E4942 };
  514. function GLTFBinaryExtension( data ) {
  515. this.name = EXTENSIONS.KHR_BINARY_GLTF;
  516. this.content = null;
  517. this.body = null;
  518. var headerView = new DataView( data, 0, BINARY_EXTENSION_HEADER_LENGTH );
  519. this.header = {
  520. magic: THREE.LoaderUtils.decodeText( new Uint8Array( data.slice( 0, 4 ) ) ),
  521. version: headerView.getUint32( 4, true ),
  522. length: headerView.getUint32( 8, true )
  523. };
  524. if ( this.header.magic !== BINARY_EXTENSION_HEADER_MAGIC ) {
  525. throw new Error( 'THREE.GLTFLoader: Unsupported glTF-Binary header.' );
  526. } else if ( this.header.version < 2.0 ) {
  527. throw new Error( 'THREE.GLTFLoader: Legacy binary file detected.' );
  528. }
  529. var chunkContentsLength = this.header.length - BINARY_EXTENSION_HEADER_LENGTH;
  530. var chunkView = new DataView( data, BINARY_EXTENSION_HEADER_LENGTH );
  531. var chunkIndex = 0;
  532. while ( chunkIndex < chunkContentsLength ) {
  533. var chunkLength = chunkView.getUint32( chunkIndex, true );
  534. chunkIndex += 4;
  535. var chunkType = chunkView.getUint32( chunkIndex, true );
  536. chunkIndex += 4;
  537. if ( chunkType === BINARY_EXTENSION_CHUNK_TYPES.JSON ) {
  538. var contentArray = new Uint8Array( data, BINARY_EXTENSION_HEADER_LENGTH + chunkIndex, chunkLength );
  539. this.content = THREE.LoaderUtils.decodeText( contentArray );
  540. } else if ( chunkType === BINARY_EXTENSION_CHUNK_TYPES.BIN ) {
  541. var byteOffset = BINARY_EXTENSION_HEADER_LENGTH + chunkIndex;
  542. this.body = data.slice( byteOffset, byteOffset + chunkLength );
  543. }
  544. // Clients must ignore chunks with unknown types.
  545. chunkIndex += chunkLength;
  546. }
  547. if ( this.content === null ) {
  548. throw new Error( 'THREE.GLTFLoader: JSON content not found.' );
  549. }
  550. }
  551. /**
  552. * DRACO Mesh Compression Extension
  553. *
  554. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_draco_mesh_compression
  555. */
  556. function GLTFDracoMeshCompressionExtension( json, dracoLoader ) {
  557. if ( ! dracoLoader ) {
  558. throw new Error( 'THREE.GLTFLoader: No DRACOLoader instance provided.' );
  559. }
  560. this.name = EXTENSIONS.KHR_DRACO_MESH_COMPRESSION;
  561. this.json = json;
  562. this.dracoLoader = dracoLoader;
  563. this.dracoLoader.preload();
  564. }
  565. GLTFDracoMeshCompressionExtension.prototype.decodePrimitive = function ( primitive, parser ) {
  566. var json = this.json;
  567. var dracoLoader = this.dracoLoader;
  568. var bufferViewIndex = primitive.extensions[ this.name ].bufferView;
  569. var gltfAttributeMap = primitive.extensions[ this.name ].attributes;
  570. var threeAttributeMap = {};
  571. var attributeNormalizedMap = {};
  572. var attributeTypeMap = {};
  573. for ( var attributeName in gltfAttributeMap ) {
  574. var threeAttributeName = ATTRIBUTES[ attributeName ] || attributeName.toLowerCase();
  575. threeAttributeMap[ threeAttributeName ] = gltfAttributeMap[ attributeName ];
  576. }
  577. for ( attributeName in primitive.attributes ) {
  578. var threeAttributeName = ATTRIBUTES[ attributeName ] || attributeName.toLowerCase();
  579. if ( gltfAttributeMap[ attributeName ] !== undefined ) {
  580. var accessorDef = json.accessors[ primitive.attributes[ attributeName ] ];
  581. var componentType = WEBGL_COMPONENT_TYPES[ accessorDef.componentType ];
  582. attributeTypeMap[ threeAttributeName ] = componentType;
  583. attributeNormalizedMap[ threeAttributeName ] = accessorDef.normalized === true;
  584. }
  585. }
  586. return parser.getDependency( 'bufferView', bufferViewIndex ).then( function ( bufferView ) {
  587. return new Promise( function ( resolve ) {
  588. dracoLoader.decodeDracoFile( bufferView, function ( geometry ) {
  589. for ( var attributeName in geometry.attributes ) {
  590. var attribute = geometry.attributes[ attributeName ];
  591. var normalized = attributeNormalizedMap[ attributeName ];
  592. if ( normalized !== undefined ) attribute.normalized = normalized;
  593. }
  594. resolve( geometry );
  595. }, threeAttributeMap, attributeTypeMap );
  596. } );
  597. } );
  598. };
  599. /**
  600. * Texture Transform Extension
  601. *
  602. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_texture_transform
  603. */
  604. function GLTFTextureTransformExtension() {
  605. this.name = EXTENSIONS.KHR_TEXTURE_TRANSFORM;
  606. }
  607. GLTFTextureTransformExtension.prototype.extendTexture = function ( texture, transform ) {
  608. texture = texture.clone();
  609. if ( transform.offset !== undefined ) {
  610. texture.offset.fromArray( transform.offset );
  611. }
  612. if ( transform.rotation !== undefined ) {
  613. texture.rotation = transform.rotation;
  614. }
  615. if ( transform.scale !== undefined ) {
  616. texture.repeat.fromArray( transform.scale );
  617. }
  618. if ( transform.texCoord !== undefined ) {
  619. console.warn( 'THREE.GLTFLoader: Custom UV sets in "' + this.name + '" extension not yet supported.' );
  620. }
  621. texture.needsUpdate = true;
  622. return texture;
  623. };
  624. /**
  625. * Specular-Glossiness Extension
  626. *
  627. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_pbrSpecularGlossiness
  628. */
  629. /**
  630. * A sub class of THREE.StandardMaterial with some of the functionality
  631. * changed via the `onBeforeCompile` callback
  632. * @pailhead
  633. */
  634. function GLTFMeshStandardSGMaterial( params ) {
  635. THREE.MeshStandardMaterial.call( this );
  636. this.isGLTFSpecularGlossinessMaterial = true;
  637. //various chunks that need replacing
  638. var specularMapParsFragmentChunk = [
  639. '#ifdef USE_SPECULARMAP',
  640. ' uniform sampler2D specularMap;',
  641. '#endif'
  642. ].join( '\n' );
  643. var glossinessMapParsFragmentChunk = [
  644. '#ifdef USE_GLOSSINESSMAP',
  645. ' uniform sampler2D glossinessMap;',
  646. '#endif'
  647. ].join( '\n' );
  648. var specularMapFragmentChunk = [
  649. 'vec3 specularFactor = specular;',
  650. '#ifdef USE_SPECULARMAP',
  651. ' vec4 texelSpecular = texture2D( specularMap, vUv );',
  652. ' texelSpecular = sRGBToLinear( texelSpecular );',
  653. ' // reads channel RGB, compatible with a glTF Specular-Glossiness (RGBA) texture',
  654. ' specularFactor *= texelSpecular.rgb;',
  655. '#endif'
  656. ].join( '\n' );
  657. var glossinessMapFragmentChunk = [
  658. 'float glossinessFactor = glossiness;',
  659. '#ifdef USE_GLOSSINESSMAP',
  660. ' vec4 texelGlossiness = texture2D( glossinessMap, vUv );',
  661. ' // reads channel A, compatible with a glTF Specular-Glossiness (RGBA) texture',
  662. ' glossinessFactor *= texelGlossiness.a;',
  663. '#endif'
  664. ].join( '\n' );
  665. var lightPhysicalFragmentChunk = [
  666. 'PhysicalMaterial material;',
  667. 'material.diffuseColor = diffuseColor.rgb * ( 1. - max( specularFactor.r, max( specularFactor.g, specularFactor.b ) ) );',
  668. 'vec3 dxy = max( abs( dFdx( geometryNormal ) ), abs( dFdy( geometryNormal ) ) );',
  669. 'float geometryRoughness = max( max( dxy.x, dxy.y ), dxy.z );',
  670. 'material.specularRoughness = max( 1.0 - glossinessFactor, 0.0525 ); // 0.0525 corresponds to the base mip of a 256 cubemap.',
  671. 'material.specularRoughness += geometryRoughness;',
  672. 'material.specularRoughness = min( material.specularRoughness, 1.0 );',
  673. 'material.specularColor = specularFactor;',
  674. ].join( '\n' );
  675. var uniforms = {
  676. specular: { value: new THREE.Color().setHex( 0xffffff ) },
  677. glossiness: { value: 1 },
  678. specularMap: { value: null },
  679. glossinessMap: { value: null }
  680. };
  681. this._extraUniforms = uniforms;
  682. this.onBeforeCompile = function ( shader ) {
  683. for ( var uniformName in uniforms ) {
  684. shader.uniforms[ uniformName ] = uniforms[ uniformName ];
  685. }
  686. shader.fragmentShader = shader.fragmentShader
  687. .replace( 'uniform float roughness;', 'uniform vec3 specular;' )
  688. .replace( 'uniform float metalness;', 'uniform float glossiness;' )
  689. .replace( '#include <roughnessmap_pars_fragment>', specularMapParsFragmentChunk )
  690. .replace( '#include <metalnessmap_pars_fragment>', glossinessMapParsFragmentChunk )
  691. .replace( '#include <roughnessmap_fragment>', specularMapFragmentChunk )
  692. .replace( '#include <metalnessmap_fragment>', glossinessMapFragmentChunk )
  693. .replace( '#include <lights_physical_fragment>', lightPhysicalFragmentChunk );
  694. };
  695. Object.defineProperties( this, {
  696. specular: {
  697. get: function () {
  698. return uniforms.specular.value;
  699. },
  700. set: function ( v ) {
  701. uniforms.specular.value = v;
  702. }
  703. },
  704. specularMap: {
  705. get: function () {
  706. return uniforms.specularMap.value;
  707. },
  708. set: function ( v ) {
  709. uniforms.specularMap.value = v;
  710. if ( v ) {
  711. this.defines.USE_SPECULARMAP = ''; // USE_UV is set by the renderer for specular maps
  712. } else {
  713. delete this.defines.USE_SPECULARMAP;
  714. }
  715. }
  716. },
  717. glossiness: {
  718. get: function () {
  719. return uniforms.glossiness.value;
  720. },
  721. set: function ( v ) {
  722. uniforms.glossiness.value = v;
  723. }
  724. },
  725. glossinessMap: {
  726. get: function () {
  727. return uniforms.glossinessMap.value;
  728. },
  729. set: function ( v ) {
  730. uniforms.glossinessMap.value = v;
  731. if ( v ) {
  732. this.defines.USE_GLOSSINESSMAP = '';
  733. this.defines.USE_UV = '';
  734. } else {
  735. delete this.defines.USE_GLOSSINESSMAP;
  736. delete this.defines.USE_UV;
  737. }
  738. }
  739. }
  740. } );
  741. delete this.metalness;
  742. delete this.roughness;
  743. delete this.metalnessMap;
  744. delete this.roughnessMap;
  745. this.setValues( params );
  746. }
  747. GLTFMeshStandardSGMaterial.prototype = Object.create( THREE.MeshStandardMaterial.prototype );
  748. GLTFMeshStandardSGMaterial.prototype.constructor = GLTFMeshStandardSGMaterial;
  749. GLTFMeshStandardSGMaterial.prototype.copy = function ( source ) {
  750. THREE.MeshStandardMaterial.prototype.copy.call( this, source );
  751. this.specularMap = source.specularMap;
  752. this.specular.copy( source.specular );
  753. this.glossinessMap = source.glossinessMap;
  754. this.glossiness = source.glossiness;
  755. delete this.metalness;
  756. delete this.roughness;
  757. delete this.metalnessMap;
  758. delete this.roughnessMap;
  759. return this;
  760. };
  761. function GLTFMaterialsPbrSpecularGlossinessExtension() {
  762. return {
  763. name: EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS,
  764. specularGlossinessParams: [
  765. 'color',
  766. 'map',
  767. 'lightMap',
  768. 'lightMapIntensity',
  769. 'aoMap',
  770. 'aoMapIntensity',
  771. 'emissive',
  772. 'emissiveIntensity',
  773. 'emissiveMap',
  774. 'bumpMap',
  775. 'bumpScale',
  776. 'normalMap',
  777. 'normalMapType',
  778. 'displacementMap',
  779. 'displacementScale',
  780. 'displacementBias',
  781. 'specularMap',
  782. 'specular',
  783. 'glossinessMap',
  784. 'glossiness',
  785. 'alphaMap',
  786. 'envMap',
  787. 'envMapIntensity',
  788. 'refractionRatio',
  789. ],
  790. getMaterialType: function () {
  791. return GLTFMeshStandardSGMaterial;
  792. },
  793. extendParams: function ( materialParams, materialDef, parser ) {
  794. var pbrSpecularGlossiness = materialDef.extensions[ this.name ];
  795. materialParams.color = new THREE.Color( 1.0, 1.0, 1.0 );
  796. materialParams.opacity = 1.0;
  797. var pending = [];
  798. if ( Array.isArray( pbrSpecularGlossiness.diffuseFactor ) ) {
  799. var array = pbrSpecularGlossiness.diffuseFactor;
  800. materialParams.color.fromArray( array );
  801. materialParams.opacity = array[ 3 ];
  802. }
  803. if ( pbrSpecularGlossiness.diffuseTexture !== undefined ) {
  804. pending.push( parser.assignTexture( materialParams, 'map', pbrSpecularGlossiness.diffuseTexture ) );
  805. }
  806. materialParams.emissive = new THREE.Color( 0.0, 0.0, 0.0 );
  807. materialParams.glossiness = pbrSpecularGlossiness.glossinessFactor !== undefined ? pbrSpecularGlossiness.glossinessFactor : 1.0;
  808. materialParams.specular = new THREE.Color( 1.0, 1.0, 1.0 );
  809. if ( Array.isArray( pbrSpecularGlossiness.specularFactor ) ) {
  810. materialParams.specular.fromArray( pbrSpecularGlossiness.specularFactor );
  811. }
  812. if ( pbrSpecularGlossiness.specularGlossinessTexture !== undefined ) {
  813. var specGlossMapDef = pbrSpecularGlossiness.specularGlossinessTexture;
  814. pending.push( parser.assignTexture( materialParams, 'glossinessMap', specGlossMapDef ) );
  815. pending.push( parser.assignTexture( materialParams, 'specularMap', specGlossMapDef ) );
  816. }
  817. return Promise.all( pending );
  818. },
  819. createMaterial: function ( materialParams ) {
  820. var material = new GLTFMeshStandardSGMaterial( materialParams );
  821. material.fog = true;
  822. material.color = materialParams.color;
  823. material.map = materialParams.map === undefined ? null : materialParams.map;
  824. material.lightMap = null;
  825. material.lightMapIntensity = 1.0;
  826. material.aoMap = materialParams.aoMap === undefined ? null : materialParams.aoMap;
  827. material.aoMapIntensity = 1.0;
  828. material.emissive = materialParams.emissive;
  829. material.emissiveIntensity = 1.0;
  830. material.emissiveMap = materialParams.emissiveMap === undefined ? null : materialParams.emissiveMap;
  831. material.bumpMap = materialParams.bumpMap === undefined ? null : materialParams.bumpMap;
  832. material.bumpScale = 1;
  833. material.normalMap = materialParams.normalMap === undefined ? null : materialParams.normalMap;
  834. material.normalMapType = THREE.TangentSpaceNormalMap;
  835. if ( materialParams.normalScale ) material.normalScale = materialParams.normalScale;
  836. material.displacementMap = null;
  837. material.displacementScale = 1;
  838. material.displacementBias = 0;
  839. material.specularMap = materialParams.specularMap === undefined ? null : materialParams.specularMap;
  840. material.specular = materialParams.specular;
  841. material.glossinessMap = materialParams.glossinessMap === undefined ? null : materialParams.glossinessMap;
  842. material.glossiness = materialParams.glossiness;
  843. material.alphaMap = null;
  844. material.envMap = materialParams.envMap === undefined ? null : materialParams.envMap;
  845. material.envMapIntensity = 1.0;
  846. material.refractionRatio = 0.98;
  847. return material;
  848. },
  849. };
  850. }
  851. /**
  852. * Mesh Quantization Extension
  853. *
  854. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_mesh_quantization
  855. */
  856. function GLTFMeshQuantizationExtension() {
  857. this.name = EXTENSIONS.KHR_MESH_QUANTIZATION;
  858. }
  859. /*********************************/
  860. /********** INTERPOLATION ********/
  861. /*********************************/
  862. // Spline Interpolation
  863. // Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#appendix-c-spline-interpolation
  864. function GLTFCubicSplineInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) {
  865. THREE.Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer );
  866. }
  867. GLTFCubicSplineInterpolant.prototype = Object.create( THREE.Interpolant.prototype );
  868. GLTFCubicSplineInterpolant.prototype.constructor = GLTFCubicSplineInterpolant;
  869. GLTFCubicSplineInterpolant.prototype.copySampleValue_ = function ( index ) {
  870. // Copies a sample value to the result buffer. See description of glTF
  871. // CUBICSPLINE values layout in interpolate_() function below.
  872. var result = this.resultBuffer,
  873. values = this.sampleValues,
  874. valueSize = this.valueSize,
  875. offset = index * valueSize * 3 + valueSize;
  876. for ( var i = 0; i !== valueSize; i ++ ) {
  877. result[ i ] = values[ offset + i ];
  878. }
  879. return result;
  880. };
  881. GLTFCubicSplineInterpolant.prototype.beforeStart_ = GLTFCubicSplineInterpolant.prototype.copySampleValue_;
  882. GLTFCubicSplineInterpolant.prototype.afterEnd_ = GLTFCubicSplineInterpolant.prototype.copySampleValue_;
  883. GLTFCubicSplineInterpolant.prototype.interpolate_ = function ( i1, t0, t, t1 ) {
  884. var result = this.resultBuffer;
  885. var values = this.sampleValues;
  886. var stride = this.valueSize;
  887. var stride2 = stride * 2;
  888. var stride3 = stride * 3;
  889. var td = t1 - t0;
  890. var p = ( t - t0 ) / td;
  891. var pp = p * p;
  892. var ppp = pp * p;
  893. var offset1 = i1 * stride3;
  894. var offset0 = offset1 - stride3;
  895. var s2 = - 2 * ppp + 3 * pp;
  896. var s3 = ppp - pp;
  897. var s0 = 1 - s2;
  898. var s1 = s3 - pp + p;
  899. // Layout of keyframe output values for CUBICSPLINE animations:
  900. // [ inTangent_1, splineVertex_1, outTangent_1, inTangent_2, splineVertex_2, ... ]
  901. for ( var i = 0; i !== stride; i ++ ) {
  902. var p0 = values[ offset0 + i + stride ]; // splineVertex_k
  903. var m0 = values[ offset0 + i + stride2 ] * td; // outTangent_k * (t_k+1 - t_k)
  904. var p1 = values[ offset1 + i + stride ]; // splineVertex_k+1
  905. var m1 = values[ offset1 + i ] * td; // inTangent_k+1 * (t_k+1 - t_k)
  906. result[ i ] = s0 * p0 + s1 * m0 + s2 * p1 + s3 * m1;
  907. }
  908. return result;
  909. };
  910. /*********************************/
  911. /********** INTERNALS ************/
  912. /*********************************/
  913. /* CONSTANTS */
  914. var WEBGL_CONSTANTS = {
  915. FLOAT: 5126,
  916. //FLOAT_MAT2: 35674,
  917. FLOAT_MAT3: 35675,
  918. FLOAT_MAT4: 35676,
  919. FLOAT_VEC2: 35664,
  920. FLOAT_VEC3: 35665,
  921. FLOAT_VEC4: 35666,
  922. LINEAR: 9729,
  923. REPEAT: 10497,
  924. SAMPLER_2D: 35678,
  925. POINTS: 0,
  926. LINES: 1,
  927. LINE_LOOP: 2,
  928. LINE_STRIP: 3,
  929. TRIANGLES: 4,
  930. TRIANGLE_STRIP: 5,
  931. TRIANGLE_FAN: 6,
  932. UNSIGNED_BYTE: 5121,
  933. UNSIGNED_SHORT: 5123
  934. };
  935. var WEBGL_COMPONENT_TYPES = {
  936. 5120: Int8Array,
  937. 5121: Uint8Array,
  938. 5122: Int16Array,
  939. 5123: Uint16Array,
  940. 5125: Uint32Array,
  941. 5126: Float32Array
  942. };
  943. var WEBGL_FILTERS = {
  944. 9728: THREE.NearestFilter,
  945. 9729: THREE.LinearFilter,
  946. 9984: THREE.NearestMipmapNearestFilter,
  947. 9985: THREE.LinearMipmapNearestFilter,
  948. 9986: THREE.NearestMipmapLinearFilter,
  949. 9987: THREE.LinearMipmapLinearFilter
  950. };
  951. var WEBGL_WRAPPINGS = {
  952. 33071: THREE.ClampToEdgeWrapping,
  953. 33648: THREE.MirroredRepeatWrapping,
  954. 10497: THREE.RepeatWrapping
  955. };
  956. var WEBGL_TYPE_SIZES = {
  957. 'SCALAR': 1,
  958. 'VEC2': 2,
  959. 'VEC3': 3,
  960. 'VEC4': 4,
  961. 'MAT2': 4,
  962. 'MAT3': 9,
  963. 'MAT4': 16
  964. };
  965. var ATTRIBUTES = {
  966. POSITION: 'position',
  967. NORMAL: 'normal',
  968. TANGENT: 'tangent',
  969. TEXCOORD_0: 'uv',
  970. TEXCOORD_1: 'uv2',
  971. COLOR_0: 'color',
  972. WEIGHTS_0: 'skinWeight',
  973. JOINTS_0: 'skinIndex',
  974. };
  975. var PATH_PROPERTIES = {
  976. scale: 'scale',
  977. translation: 'position',
  978. rotation: 'quaternion',
  979. weights: 'morphTargetInfluences'
  980. };
  981. var INTERPOLATION = {
  982. CUBICSPLINE: undefined, // We use a custom interpolant (GLTFCubicSplineInterpolation) for CUBICSPLINE tracks. Each
  983. // keyframe track will be initialized with a default interpolation type, then modified.
  984. LINEAR: THREE.InterpolateLinear,
  985. STEP: THREE.InterpolateDiscrete
  986. };
  987. var ALPHA_MODES = {
  988. OPAQUE: 'OPAQUE',
  989. MASK: 'MASK',
  990. BLEND: 'BLEND'
  991. };
  992. /* UTILITY FUNCTIONS */
  993. function resolveURL( url, path ) {
  994. // Invalid URL
  995. if ( typeof url !== 'string' || url === '' ) return '';
  996. // Host Relative URL
  997. if ( /^https?:\/\//i.test( path ) && /^\//.test( url ) ) {
  998. path = path.replace( /(^https?:\/\/[^\/]+).*/i, '$1' );
  999. }
  1000. // Absolute URL http://,https://,//
  1001. if ( /^(https?:)?\/\//i.test( url ) ) return url;
  1002. // Data URI
  1003. if ( /^data:.*,.*$/i.test( url ) ) return url;
  1004. // Blob URL
  1005. if ( /^blob:.*$/i.test( url ) ) return url;
  1006. // Relative URL
  1007. return path + url;
  1008. }
  1009. /**
  1010. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#default-material
  1011. */
  1012. function createDefaultMaterial( cache ) {
  1013. if ( cache[ 'DefaultMaterial' ] === undefined ) {
  1014. cache[ 'DefaultMaterial' ] = new THREE.MeshStandardMaterial( {
  1015. color: 0xFFFFFF,
  1016. emissive: 0x000000,
  1017. metalness: 1,
  1018. roughness: 1,
  1019. transparent: false,
  1020. depthTest: true,
  1021. side: THREE.FrontSide
  1022. } );
  1023. }
  1024. return cache[ 'DefaultMaterial' ];
  1025. }
  1026. function addUnknownExtensionsToUserData( knownExtensions, object, objectDef ) {
  1027. // Add unknown glTF extensions to an object's userData.
  1028. for ( var name in objectDef.extensions ) {
  1029. if ( knownExtensions[ name ] === undefined ) {
  1030. object.userData.gltfExtensions = object.userData.gltfExtensions || {};
  1031. object.userData.gltfExtensions[ name ] = objectDef.extensions[ name ];
  1032. }
  1033. }
  1034. }
  1035. /**
  1036. * @param {THREE.Object3D|THREE.Material|THREE.BufferGeometry} object
  1037. * @param {GLTF.definition} gltfDef
  1038. */
  1039. function assignExtrasToUserData( object, gltfDef ) {
  1040. if ( gltfDef.extras !== undefined ) {
  1041. if ( typeof gltfDef.extras === 'object' ) {
  1042. Object.assign( object.userData, gltfDef.extras );
  1043. } else {
  1044. console.warn( 'THREE.GLTFLoader: Ignoring primitive type .extras, ' + gltfDef.extras );
  1045. }
  1046. }
  1047. }
  1048. /**
  1049. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#morph-targets
  1050. *
  1051. * @param {THREE.BufferGeometry} geometry
  1052. * @param {Array<GLTF.Target>} targets
  1053. * @param {GLTFParser} parser
  1054. * @return {Promise<THREE.BufferGeometry>}
  1055. */
  1056. function addMorphTargets( geometry, targets, parser ) {
  1057. var hasMorphPosition = false;
  1058. var hasMorphNormal = false;
  1059. for ( var i = 0, il = targets.length; i < il; i ++ ) {
  1060. var target = targets[ i ];
  1061. if ( target.POSITION !== undefined ) hasMorphPosition = true;
  1062. if ( target.NORMAL !== undefined ) hasMorphNormal = true;
  1063. if ( hasMorphPosition && hasMorphNormal ) break;
  1064. }
  1065. if ( ! hasMorphPosition && ! hasMorphNormal ) return Promise.resolve( geometry );
  1066. var pendingPositionAccessors = [];
  1067. var pendingNormalAccessors = [];
  1068. for ( var i = 0, il = targets.length; i < il; i ++ ) {
  1069. var target = targets[ i ];
  1070. if ( hasMorphPosition ) {
  1071. var pendingAccessor = target.POSITION !== undefined
  1072. ? parser.getDependency( 'accessor', target.POSITION )
  1073. : geometry.attributes.position;
  1074. pendingPositionAccessors.push( pendingAccessor );
  1075. }
  1076. if ( hasMorphNormal ) {
  1077. var pendingAccessor = target.NORMAL !== undefined
  1078. ? parser.getDependency( 'accessor', target.NORMAL )
  1079. : geometry.attributes.normal;
  1080. pendingNormalAccessors.push( pendingAccessor );
  1081. }
  1082. }
  1083. return Promise.all( [
  1084. Promise.all( pendingPositionAccessors ),
  1085. Promise.all( pendingNormalAccessors )
  1086. ] ).then( function ( accessors ) {
  1087. var morphPositions = accessors[ 0 ];
  1088. var morphNormals = accessors[ 1 ];
  1089. if ( hasMorphPosition ) geometry.morphAttributes.position = morphPositions;
  1090. if ( hasMorphNormal ) geometry.morphAttributes.normal = morphNormals;
  1091. geometry.morphTargetsRelative = true;
  1092. return geometry;
  1093. } );
  1094. }
  1095. /**
  1096. * @param {THREE.Mesh} mesh
  1097. * @param {GLTF.Mesh} meshDef
  1098. */
  1099. function updateMorphTargets( mesh, meshDef ) {
  1100. mesh.updateMorphTargets();
  1101. if ( meshDef.weights !== undefined ) {
  1102. for ( var i = 0, il = meshDef.weights.length; i < il; i ++ ) {
  1103. mesh.morphTargetInfluences[ i ] = meshDef.weights[ i ];
  1104. }
  1105. }
  1106. // .extras has user-defined data, so check that .extras.targetNames is an array.
  1107. if ( meshDef.extras && Array.isArray( meshDef.extras.targetNames ) ) {
  1108. var targetNames = meshDef.extras.targetNames;
  1109. if ( mesh.morphTargetInfluences.length === targetNames.length ) {
  1110. mesh.morphTargetDictionary = {};
  1111. for ( var i = 0, il = targetNames.length; i < il; i ++ ) {
  1112. mesh.morphTargetDictionary[ targetNames[ i ] ] = i;
  1113. }
  1114. } else {
  1115. console.warn( 'THREE.GLTFLoader: Invalid extras.targetNames length. Ignoring names.' );
  1116. }
  1117. }
  1118. }
  1119. function createPrimitiveKey( primitiveDef ) {
  1120. var dracoExtension = primitiveDef.extensions && primitiveDef.extensions[ EXTENSIONS.KHR_DRACO_MESH_COMPRESSION ];
  1121. var geometryKey;
  1122. if ( dracoExtension ) {
  1123. geometryKey = 'draco:' + dracoExtension.bufferView
  1124. + ':' + dracoExtension.indices
  1125. + ':' + createAttributesKey( dracoExtension.attributes );
  1126. } else {
  1127. geometryKey = primitiveDef.indices + ':' + createAttributesKey( primitiveDef.attributes ) + ':' + primitiveDef.mode;
  1128. }
  1129. return geometryKey;
  1130. }
  1131. function createAttributesKey( attributes ) {
  1132. var attributesKey = '';
  1133. var keys = Object.keys( attributes ).sort();
  1134. for ( var i = 0, il = keys.length; i < il; i ++ ) {
  1135. attributesKey += keys[ i ] + ':' + attributes[ keys[ i ] ] + ';';
  1136. }
  1137. return attributesKey;
  1138. }
  1139. function getNormalizedComponentScale( constructor ) {
  1140. // Reference:
  1141. // https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_mesh_quantization#encoding-quantized-data
  1142. switch ( constructor ) {
  1143. case Int8Array:
  1144. return 1 / 127;
  1145. case Uint8Array:
  1146. return 1 / 255;
  1147. case Int16Array:
  1148. return 1 / 32767;
  1149. case Uint16Array:
  1150. return 1 / 65535;
  1151. default:
  1152. throw new Error( 'THREE.GLTFLoader: Unsupported normalized accessor component type.' );
  1153. }
  1154. }
  1155. /* GLTF PARSER */
  1156. function GLTFParser( json, options ) {
  1157. this.json = json || {};
  1158. this.extensions = {};
  1159. this.plugins = {};
  1160. this.options = options || {};
  1161. // loader object cache
  1162. this.cache = new GLTFRegistry();
  1163. // associations between Three.js objects and glTF elements
  1164. this.associations = new Map();
  1165. // BufferGeometry caching
  1166. this.primitiveCache = {};
  1167. // Object3D instance caches
  1168. this.meshCache = { refs: {}, uses: {} };
  1169. this.cameraCache = { refs: {}, uses: {} };
  1170. this.lightCache = { refs: {}, uses: {} };
  1171. // Track node names, to ensure no duplicates
  1172. this.nodeNamesUsed = {};
  1173. // Use an ImageBitmapLoader if imageBitmaps are supported. Moves much of the
  1174. // expensive work of uploading a texture to the GPU off the main thread.
  1175. if ( typeof createImageBitmap !== 'undefined' && /Firefox/.test( navigator.userAgent ) === false ) {
  1176. this.textureLoader = new THREE.ImageBitmapLoader( this.options.manager );
  1177. } else {
  1178. this.textureLoader = new THREE.TextureLoader( this.options.manager );
  1179. }
  1180. this.textureLoader.setCrossOrigin( this.options.crossOrigin );
  1181. this.textureLoader.setRequestHeader( this.options.requestHeader );
  1182. this.fileLoader = new THREE.FileLoader( this.options.manager );
  1183. this.fileLoader.setResponseType( 'arraybuffer' );
  1184. if ( this.options.crossOrigin === 'use-credentials' ) {
  1185. this.fileLoader.setWithCredentials( true );
  1186. }
  1187. }
  1188. GLTFParser.prototype.setExtensions = function ( extensions ) {
  1189. this.extensions = extensions;
  1190. };
  1191. GLTFParser.prototype.setPlugins = function ( plugins ) {
  1192. this.plugins = plugins;
  1193. };
  1194. GLTFParser.prototype.parse = function ( onLoad, onError ) {
  1195. var parser = this;
  1196. var json = this.json;
  1197. var extensions = this.extensions;
  1198. // Clear the loader cache
  1199. this.cache.removeAll();
  1200. // Mark the special nodes/meshes in json for efficient parse
  1201. this._invokeAll( function ( ext ) {
  1202. return ext._markDefs && ext._markDefs();
  1203. } );
  1204. Promise.all( this._invokeAll( function ( ext ) {
  1205. return ext.beforeRoot && ext.beforeRoot();
  1206. } ) ).then( function () {
  1207. return Promise.all( [
  1208. parser.getDependencies( 'scene' ),
  1209. parser.getDependencies( 'animation' ),
  1210. parser.getDependencies( 'camera' ),
  1211. ] );
  1212. } ).then( function ( dependencies ) {
  1213. var result = {
  1214. scene: dependencies[ 0 ][ json.scene || 0 ],
  1215. scenes: dependencies[ 0 ],
  1216. animations: dependencies[ 1 ],
  1217. cameras: dependencies[ 2 ],
  1218. asset: json.asset,
  1219. parser: parser,
  1220. userData: {}
  1221. };
  1222. addUnknownExtensionsToUserData( extensions, result, json );
  1223. assignExtrasToUserData( result, json );
  1224. Promise.all( parser._invokeAll( function ( ext ) {
  1225. return ext.afterRoot && ext.afterRoot( result );
  1226. } ) ).then( function () {
  1227. onLoad( result );
  1228. } );
  1229. } ).catch( onError );
  1230. };
  1231. /**
  1232. * Marks the special nodes/meshes in json for efficient parse.
  1233. */
  1234. GLTFParser.prototype._markDefs = function () {
  1235. var nodeDefs = this.json.nodes || [];
  1236. var skinDefs = this.json.skins || [];
  1237. var meshDefs = this.json.meshes || [];
  1238. // Nothing in the node definition indicates whether it is a Bone or an
  1239. // Object3D. Use the skins' joint references to mark bones.
  1240. for ( var skinIndex = 0, skinLength = skinDefs.length; skinIndex < skinLength; skinIndex ++ ) {
  1241. var joints = skinDefs[ skinIndex ].joints;
  1242. for ( var i = 0, il = joints.length; i < il; i ++ ) {
  1243. nodeDefs[ joints[ i ] ].isBone = true;
  1244. }
  1245. }
  1246. // Iterate over all nodes, marking references to shared resources,
  1247. // as well as skeleton joints.
  1248. for ( var nodeIndex = 0, nodeLength = nodeDefs.length; nodeIndex < nodeLength; nodeIndex ++ ) {
  1249. var nodeDef = nodeDefs[ nodeIndex ];
  1250. if ( nodeDef.mesh !== undefined ) {
  1251. this._addNodeRef( this.meshCache, nodeDef.mesh );
  1252. // Nothing in the mesh definition indicates whether it is
  1253. // a SkinnedMesh or Mesh. Use the node's mesh reference
  1254. // to mark SkinnedMesh if node has skin.
  1255. if ( nodeDef.skin !== undefined ) {
  1256. meshDefs[ nodeDef.mesh ].isSkinnedMesh = true;
  1257. }
  1258. }
  1259. if ( nodeDef.camera !== undefined ) {
  1260. this._addNodeRef( this.cameraCache, nodeDef.camera );
  1261. }
  1262. }
  1263. };
  1264. /**
  1265. * Counts references to shared node / Object3D resources. These resources
  1266. * can be reused, or "instantiated", at multiple nodes in the scene
  1267. * hierarchy. Mesh, Camera, and Light instances are instantiated and must
  1268. * be marked. Non-scenegraph resources (like Materials, Geometries, and
  1269. * Textures) can be reused directly and are not marked here.
  1270. *
  1271. * Example: CesiumMilkTruck sample model reuses "Wheel" meshes.
  1272. */
  1273. GLTFParser.prototype._addNodeRef = function ( cache, index ) {
  1274. if ( index === undefined ) return;
  1275. if ( cache.refs[ index ] === undefined ) {
  1276. cache.refs[ index ] = cache.uses[ index ] = 0;
  1277. }
  1278. cache.refs[ index ] ++;
  1279. };
  1280. /** Returns a reference to a shared resource, cloning it if necessary. */
  1281. GLTFParser.prototype._getNodeRef = function ( cache, index, object ) {
  1282. if ( cache.refs[ index ] <= 1 ) return object;
  1283. var ref = object.clone();
  1284. ref.name += '_instance_' + ( cache.uses[ index ] ++ );
  1285. return ref;
  1286. };
  1287. GLTFParser.prototype._invokeOne = function ( func ) {
  1288. var extensions = Object.values( this.plugins );
  1289. extensions.push( this );
  1290. for ( var i = 0; i < extensions.length; i ++ ) {
  1291. var result = func( extensions[ i ] );
  1292. if ( result ) return result;
  1293. }
  1294. };
  1295. GLTFParser.prototype._invokeAll = function ( func ) {
  1296. var extensions = Object.values( this.plugins );
  1297. extensions.unshift( this );
  1298. var pending = [];
  1299. for ( var i = 0; i < extensions.length; i ++ ) {
  1300. var result = func( extensions[ i ] );
  1301. if ( result ) pending.push( result );
  1302. }
  1303. return pending;
  1304. };
  1305. /**
  1306. * Requests the specified dependency asynchronously, with caching.
  1307. * @param {string} type
  1308. * @param {number} index
  1309. * @return {Promise<THREE.Object3D|THREE.Material|THREE.Texture|THREE.AnimationClip|ArrayBuffer|Object>}
  1310. */
  1311. GLTFParser.prototype.getDependency = function ( type, index ) {
  1312. var cacheKey = type + ':' + index;
  1313. var dependency = this.cache.get( cacheKey );
  1314. if ( ! dependency ) {
  1315. switch ( type ) {
  1316. case 'scene':
  1317. dependency = this.loadScene( index );
  1318. break;
  1319. case 'node':
  1320. dependency = this.loadNode( index );
  1321. break;
  1322. case 'mesh':
  1323. dependency = this._invokeOne( function ( ext ) {
  1324. return ext.loadMesh && ext.loadMesh( index );
  1325. } );
  1326. break;
  1327. case 'accessor':
  1328. dependency = this.loadAccessor( index );
  1329. break;
  1330. case 'bufferView':
  1331. dependency = this._invokeOne( function ( ext ) {
  1332. return ext.loadBufferView && ext.loadBufferView( index );
  1333. } );
  1334. break;
  1335. case 'buffer':
  1336. dependency = this.loadBuffer( index );
  1337. break;
  1338. case 'material':
  1339. dependency = this._invokeOne( function ( ext ) {
  1340. return ext.loadMaterial && ext.loadMaterial( index );
  1341. } );
  1342. break;
  1343. case 'texture':
  1344. dependency = this._invokeOne( function ( ext ) {
  1345. return ext.loadTexture && ext.loadTexture( index );
  1346. } );
  1347. break;
  1348. case 'skin':
  1349. dependency = this.loadSkin( index );
  1350. break;
  1351. case 'animation':
  1352. dependency = this.loadAnimation( index );
  1353. break;
  1354. case 'camera':
  1355. dependency = this.loadCamera( index );
  1356. break;
  1357. default:
  1358. throw new Error( 'Unknown type: ' + type );
  1359. }
  1360. this.cache.add( cacheKey, dependency );
  1361. }
  1362. return dependency;
  1363. };
  1364. /**
  1365. * Requests all dependencies of the specified type asynchronously, with caching.
  1366. * @param {string} type
  1367. * @return {Promise<Array<Object>>}
  1368. */
  1369. GLTFParser.prototype.getDependencies = function ( type ) {
  1370. var dependencies = this.cache.get( type );
  1371. if ( ! dependencies ) {
  1372. var parser = this;
  1373. var defs = this.json[ type + ( type === 'mesh' ? 'es' : 's' ) ] || [];
  1374. dependencies = Promise.all( defs.map( function ( def, index ) {
  1375. return parser.getDependency( type, index );
  1376. } ) );
  1377. this.cache.add( type, dependencies );
  1378. }
  1379. return dependencies;
  1380. };
  1381. /**
  1382. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#buffers-and-buffer-views
  1383. * @param {number} bufferIndex
  1384. * @return {Promise<ArrayBuffer>}
  1385. */
  1386. GLTFParser.prototype.loadBuffer = function ( bufferIndex ) {
  1387. var bufferDef = this.json.buffers[ bufferIndex ];
  1388. var loader = this.fileLoader;
  1389. if ( bufferDef.type && bufferDef.type !== 'arraybuffer' ) {
  1390. throw new Error( 'THREE.GLTFLoader: ' + bufferDef.type + ' buffer type is not supported.' );
  1391. }
  1392. // If present, GLB container is required to be the first buffer.
  1393. if ( bufferDef.uri === undefined && bufferIndex === 0 ) {
  1394. return Promise.resolve( this.extensions[ EXTENSIONS.KHR_BINARY_GLTF ].body );
  1395. }
  1396. var options = this.options;
  1397. return new Promise( function ( resolve, reject ) {
  1398. loader.load( resolveURL( bufferDef.uri, options.path ), resolve, undefined, function () {
  1399. reject( new Error( 'THREE.GLTFLoader: Failed to load buffer "' + bufferDef.uri + '".' ) );
  1400. } );
  1401. } );
  1402. };
  1403. /**
  1404. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#buffers-and-buffer-views
  1405. * @param {number} bufferViewIndex
  1406. * @return {Promise<ArrayBuffer>}
  1407. */
  1408. GLTFParser.prototype.loadBufferView = function ( bufferViewIndex ) {
  1409. var bufferViewDef = this.json.bufferViews[ bufferViewIndex ];
  1410. return this.getDependency( 'buffer', bufferViewDef.buffer ).then( function ( buffer ) {
  1411. var byteLength = bufferViewDef.byteLength || 0;
  1412. var byteOffset = bufferViewDef.byteOffset || 0;
  1413. return buffer.slice( byteOffset, byteOffset + byteLength );
  1414. } );
  1415. };
  1416. /**
  1417. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#accessors
  1418. * @param {number} accessorIndex
  1419. * @return {Promise<THREE.BufferAttribute|THREE.InterleavedBufferAttribute>}
  1420. */
  1421. GLTFParser.prototype.loadAccessor = function ( accessorIndex ) {
  1422. var parser = this;
  1423. var json = this.json;
  1424. var accessorDef = this.json.accessors[ accessorIndex ];
  1425. if ( accessorDef.bufferView === undefined && accessorDef.sparse === undefined ) {
  1426. // Ignore empty accessors, which may be used to declare runtime
  1427. // information about attributes coming from another source (e.g. Draco
  1428. // compression extension).
  1429. return Promise.resolve( null );
  1430. }
  1431. var pendingBufferViews = [];
  1432. if ( accessorDef.bufferView !== undefined ) {
  1433. pendingBufferViews.push( this.getDependency( 'bufferView', accessorDef.bufferView ) );
  1434. } else {
  1435. pendingBufferViews.push( null );
  1436. }
  1437. if ( accessorDef.sparse !== undefined ) {
  1438. pendingBufferViews.push( this.getDependency( 'bufferView', accessorDef.sparse.indices.bufferView ) );
  1439. pendingBufferViews.push( this.getDependency( 'bufferView', accessorDef.sparse.values.bufferView ) );
  1440. }
  1441. return Promise.all( pendingBufferViews ).then( function ( bufferViews ) {
  1442. var bufferView = bufferViews[ 0 ];
  1443. var itemSize = WEBGL_TYPE_SIZES[ accessorDef.type ];
  1444. var TypedArray = WEBGL_COMPONENT_TYPES[ accessorDef.componentType ];
  1445. // For VEC3: itemSize is 3, elementBytes is 4, itemBytes is 12.
  1446. var elementBytes = TypedArray.BYTES_PER_ELEMENT;
  1447. var itemBytes = elementBytes * itemSize;
  1448. var byteOffset = accessorDef.byteOffset || 0;
  1449. var byteStride = accessorDef.bufferView !== undefined ? json.bufferViews[ accessorDef.bufferView ].byteStride : undefined;
  1450. var normalized = accessorDef.normalized === true;
  1451. var array, bufferAttribute;
  1452. // The buffer is not interleaved if the stride is the item size in bytes.
  1453. if ( byteStride && byteStride !== itemBytes ) {
  1454. // Each "slice" of the buffer, as defined by 'count' elements of 'byteStride' bytes, gets its own InterleavedBuffer
  1455. // This makes sure that IBA.count reflects accessor.count properly
  1456. var ibSlice = Math.floor( byteOffset / byteStride );
  1457. var ibCacheKey = 'InterleavedBuffer:' + accessorDef.bufferView + ':' + accessorDef.componentType + ':' + ibSlice + ':' + accessorDef.count;
  1458. var ib = parser.cache.get( ibCacheKey );
  1459. if ( ! ib ) {
  1460. array = new TypedArray( bufferView, ibSlice * byteStride, accessorDef.count * byteStride / elementBytes );
  1461. // Integer parameters to IB/IBA are in array elements, not bytes.
  1462. ib = new THREE.InterleavedBuffer( array, byteStride / elementBytes );
  1463. parser.cache.add( ibCacheKey, ib );
  1464. }
  1465. bufferAttribute = new THREE.InterleavedBufferAttribute( ib, itemSize, ( byteOffset % byteStride ) / elementBytes, normalized );
  1466. } else {
  1467. if ( bufferView === null ) {
  1468. array = new TypedArray( accessorDef.count * itemSize );
  1469. } else {
  1470. array = new TypedArray( bufferView, byteOffset, accessorDef.count * itemSize );
  1471. }
  1472. bufferAttribute = new THREE.BufferAttribute( array, itemSize, normalized );
  1473. }
  1474. // https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#sparse-accessors
  1475. if ( accessorDef.sparse !== undefined ) {
  1476. var itemSizeIndices = WEBGL_TYPE_SIZES.SCALAR;
  1477. var TypedArrayIndices = WEBGL_COMPONENT_TYPES[ accessorDef.sparse.indices.componentType ];
  1478. var byteOffsetIndices = accessorDef.sparse.indices.byteOffset || 0;
  1479. var byteOffsetValues = accessorDef.sparse.values.byteOffset || 0;
  1480. var sparseIndices = new TypedArrayIndices( bufferViews[ 1 ], byteOffsetIndices, accessorDef.sparse.count * itemSizeIndices );
  1481. var sparseValues = new TypedArray( bufferViews[ 2 ], byteOffsetValues, accessorDef.sparse.count * itemSize );
  1482. if ( bufferView !== null ) {
  1483. // Avoid modifying the original ArrayBuffer, if the bufferView wasn't initialized with zeroes.
  1484. bufferAttribute = new THREE.BufferAttribute( bufferAttribute.array.slice(), bufferAttribute.itemSize, bufferAttribute.normalized );
  1485. }
  1486. for ( var i = 0, il = sparseIndices.length; i < il; i ++ ) {
  1487. var index = sparseIndices[ i ];
  1488. bufferAttribute.setX( index, sparseValues[ i * itemSize ] );
  1489. if ( itemSize >= 2 ) bufferAttribute.setY( index, sparseValues[ i * itemSize + 1 ] );
  1490. if ( itemSize >= 3 ) bufferAttribute.setZ( index, sparseValues[ i * itemSize + 2 ] );
  1491. if ( itemSize >= 4 ) bufferAttribute.setW( index, sparseValues[ i * itemSize + 3 ] );
  1492. if ( itemSize >= 5 ) throw new Error( 'THREE.GLTFLoader: Unsupported itemSize in sparse BufferAttribute.' );
  1493. }
  1494. }
  1495. return bufferAttribute;
  1496. } );
  1497. };
  1498. /**
  1499. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#textures
  1500. * @param {number} textureIndex
  1501. * @return {Promise<THREE.Texture>}
  1502. */
  1503. GLTFParser.prototype.loadTexture = function ( textureIndex ) {
  1504. var json = this.json;
  1505. var options = this.options;
  1506. var textureDef = json.textures[ textureIndex ];
  1507. var source = json.images[ textureDef.source ];
  1508. var loader = this.textureLoader;
  1509. if ( source.uri ) {
  1510. var handler = options.manager.getHandler( source.uri );
  1511. if ( handler !== null ) loader = handler;
  1512. }
  1513. return this.loadTextureImage( textureIndex, source, loader );
  1514. };
  1515. GLTFParser.prototype.loadTextureImage = function ( textureIndex, source, loader ) {
  1516. var parser = this;
  1517. var json = this.json;
  1518. var options = this.options;
  1519. var textureDef = json.textures[ textureIndex ];
  1520. var URL = self.URL || self.webkitURL;
  1521. var sourceURI = source.uri;
  1522. var isObjectURL = false;
  1523. var hasAlpha = true;
  1524. if ( source.mimeType === 'image/jpeg' ) hasAlpha = false;
  1525. if ( source.bufferView !== undefined ) {
  1526. // Load binary image data from bufferView, if provided.
  1527. sourceURI = parser.getDependency( 'bufferView', source.bufferView ).then( function ( bufferView ) {
  1528. if ( source.mimeType === 'image/png' ) {
  1529. // Inspect the PNG 'IHDR' chunk to determine whether the image could have an
  1530. // alpha channel. This check is conservative — the image could have an alpha
  1531. // channel with all values == 1, and the indexed type (colorType == 3) only
  1532. // sometimes contains alpha.
  1533. //
  1534. // https://en.wikipedia.org/wiki/Portable_Network_Graphics#File_header
  1535. var colorType = new DataView( bufferView, 25, 1 ).getUint8( 0, false );
  1536. hasAlpha = colorType === 6 || colorType === 4 || colorType === 3;
  1537. }
  1538. isObjectURL = true;
  1539. var blob = new Blob( [ bufferView ], { type: source.mimeType } );
  1540. sourceURI = URL.createObjectURL( blob );
  1541. return sourceURI;
  1542. } );
  1543. } else if ( source.uri === undefined ) {
  1544. throw new Error( 'THREE.GLTFLoader: Image ' + textureIndex + ' is missing URI and bufferView' );
  1545. }
  1546. return Promise.resolve( sourceURI ).then( function ( sourceURI ) {
  1547. return new Promise( function ( resolve, reject ) {
  1548. var onLoad = resolve;
  1549. if ( loader.isImageBitmapLoader === true ) {
  1550. onLoad = function ( imageBitmap ) {
  1551. resolve( new THREE.CanvasTexture( imageBitmap ) );
  1552. };
  1553. }
  1554. loader.load( resolveURL( sourceURI, options.path ), onLoad, undefined, reject );
  1555. } );
  1556. } ).then( function ( texture ) {
  1557. // Clean up resources and configure Texture.
  1558. if ( isObjectURL === true ) {
  1559. URL.revokeObjectURL( sourceURI );
  1560. }
  1561. texture.flipY = false;
  1562. if ( textureDef.name ) texture.name = textureDef.name;
  1563. // When there is definitely no alpha channel in the texture, set RGBFormat to save space.
  1564. if ( ! hasAlpha ) texture.format = THREE.RGBFormat;
  1565. var samplers = json.samplers || {};
  1566. var sampler = samplers[ textureDef.sampler ] || {};
  1567. texture.magFilter = WEBGL_FILTERS[ sampler.magFilter ] || THREE.LinearFilter;
  1568. texture.minFilter = WEBGL_FILTERS[ sampler.minFilter ] || THREE.LinearMipmapLinearFilter;
  1569. texture.wrapS = WEBGL_WRAPPINGS[ sampler.wrapS ] || THREE.RepeatWrapping;
  1570. texture.wrapT = WEBGL_WRAPPINGS[ sampler.wrapT ] || THREE.RepeatWrapping;
  1571. parser.associations.set( texture, {
  1572. type: 'textures',
  1573. index: textureIndex
  1574. } );
  1575. return texture;
  1576. } );
  1577. };
  1578. /**
  1579. * Asynchronously assigns a texture to the given material parameters.
  1580. * @param {Object} materialParams
  1581. * @param {string} mapName
  1582. * @param {Object} mapDef
  1583. * @return {Promise}
  1584. */
  1585. GLTFParser.prototype.assignTexture = function ( materialParams, mapName, mapDef ) {
  1586. var parser = this;
  1587. return this.getDependency( 'texture', mapDef.index ).then( function ( texture ) {
  1588. // Materials sample aoMap from UV set 1 and other maps from UV set 0 - this can't be configured
  1589. // However, we will copy UV set 0 to UV set 1 on demand for aoMap
  1590. if ( mapDef.texCoord !== undefined && mapDef.texCoord != 0 && ! ( mapName === 'aoMap' && mapDef.texCoord == 1 ) ) {
  1591. console.warn( 'THREE.GLTFLoader: Custom UV set ' + mapDef.texCoord + ' for texture ' + mapName + ' not yet supported.' );
  1592. }
  1593. if ( parser.extensions[ EXTENSIONS.KHR_TEXTURE_TRANSFORM ] ) {
  1594. var transform = mapDef.extensions !== undefined ? mapDef.extensions[ EXTENSIONS.KHR_TEXTURE_TRANSFORM ] : undefined;
  1595. if ( transform ) {
  1596. var gltfReference = parser.associations.get( texture );
  1597. texture = parser.extensions[ EXTENSIONS.KHR_TEXTURE_TRANSFORM ].extendTexture( texture, transform );
  1598. parser.associations.set( texture, gltfReference );
  1599. }
  1600. }
  1601. materialParams[ mapName ] = texture;
  1602. } );
  1603. };
  1604. /**
  1605. * Assigns final material to a Mesh, Line, or Points instance. The instance
  1606. * already has a material (generated from the glTF material options alone)
  1607. * but reuse of the same glTF material may require multiple threejs materials
  1608. * to accommodate different primitive types, defines, etc. New materials will
  1609. * be created if necessary, and reused from a cache.
  1610. * @param {THREE.Object3D} mesh Mesh, Line, or Points instance.
  1611. */
  1612. GLTFParser.prototype.assignFinalMaterial = function ( mesh ) {
  1613. var geometry = mesh.geometry;
  1614. var material = mesh.material;
  1615. var useVertexTangents = geometry.attributes.tangent !== undefined;
  1616. var useVertexColors = geometry.attributes.color !== undefined;
  1617. var useFlatShading = geometry.attributes.normal === undefined;
  1618. var useSkinning = mesh.isSkinnedMesh === true;
  1619. var useMorphTargets = Object.keys( geometry.morphAttributes ).length > 0;
  1620. var useMorphNormals = useMorphTargets && geometry.morphAttributes.normal !== undefined;
  1621. if ( mesh.isPoints ) {
  1622. var cacheKey = 'PointsMaterial:' + material.uuid;
  1623. var pointsMaterial = this.cache.get( cacheKey );
  1624. if ( ! pointsMaterial ) {
  1625. pointsMaterial = new THREE.PointsMaterial();
  1626. THREE.Material.prototype.copy.call( pointsMaterial, material );
  1627. pointsMaterial.color.copy( material.color );
  1628. pointsMaterial.map = material.map;
  1629. pointsMaterial.sizeAttenuation = false; // glTF spec says points should be 1px
  1630. this.cache.add( cacheKey, pointsMaterial );
  1631. }
  1632. material = pointsMaterial;
  1633. } else if ( mesh.isLine ) {
  1634. var cacheKey = 'LineBasicMaterial:' + material.uuid;
  1635. var lineMaterial = this.cache.get( cacheKey );
  1636. if ( ! lineMaterial ) {
  1637. lineMaterial = new THREE.LineBasicMaterial();
  1638. THREE.Material.prototype.copy.call( lineMaterial, material );
  1639. lineMaterial.color.copy( material.color );
  1640. this.cache.add( cacheKey, lineMaterial );
  1641. }
  1642. material = lineMaterial;
  1643. }
  1644. // Clone the material if it will be modified
  1645. if ( useVertexTangents || useVertexColors || useFlatShading || useSkinning || useMorphTargets ) {
  1646. var cacheKey = 'ClonedMaterial:' + material.uuid + ':';
  1647. if ( material.isGLTFSpecularGlossinessMaterial ) cacheKey += 'specular-glossiness:';
  1648. if ( useSkinning ) cacheKey += 'skinning:';
  1649. if ( useVertexTangents ) cacheKey += 'vertex-tangents:';
  1650. if ( useVertexColors ) cacheKey += 'vertex-colors:';
  1651. if ( useFlatShading ) cacheKey += 'flat-shading:';
  1652. if ( useMorphTargets ) cacheKey += 'morph-targets:';
  1653. if ( useMorphNormals ) cacheKey += 'morph-normals:';
  1654. var cachedMaterial = this.cache.get( cacheKey );
  1655. if ( ! cachedMaterial ) {
  1656. cachedMaterial = material.clone();
  1657. if ( useSkinning ) cachedMaterial.skinning = true;
  1658. if ( useVertexColors ) cachedMaterial.vertexColors = true;
  1659. if ( useFlatShading ) cachedMaterial.flatShading = true;
  1660. if ( useMorphTargets ) cachedMaterial.morphTargets = true;
  1661. if ( useMorphNormals ) cachedMaterial.morphNormals = true;
  1662. if ( useVertexTangents ) {
  1663. cachedMaterial.vertexTangents = true;
  1664. // https://github.com/mrdoob/three.js/issues/11438#issuecomment-507003995
  1665. if ( cachedMaterial.normalScale ) cachedMaterial.normalScale.y *= - 1;
  1666. if ( cachedMaterial.clearcoatNormalScale ) cachedMaterial.clearcoatNormalScale.y *= - 1;
  1667. }
  1668. this.cache.add( cacheKey, cachedMaterial );
  1669. this.associations.set( cachedMaterial, this.associations.get( material ) );
  1670. }
  1671. material = cachedMaterial;
  1672. }
  1673. // workarounds for mesh and geometry
  1674. if ( material.aoMap && geometry.attributes.uv2 === undefined && geometry.attributes.uv !== undefined ) {
  1675. geometry.setAttribute( 'uv2', geometry.attributes.uv );
  1676. }
  1677. mesh.material = material;
  1678. };
  1679. GLTFParser.prototype.getMaterialType = function ( /* materialIndex */ ) {
  1680. return THREE.MeshStandardMaterial;
  1681. };
  1682. /**
  1683. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#materials
  1684. * @param {number} materialIndex
  1685. * @return {Promise<THREE.Material>}
  1686. */
  1687. GLTFParser.prototype.loadMaterial = function ( materialIndex ) {
  1688. var parser = this;
  1689. var json = this.json;
  1690. var extensions = this.extensions;
  1691. var materialDef = json.materials[ materialIndex ];
  1692. var materialType;
  1693. var materialParams = {};
  1694. var materialExtensions = materialDef.extensions || {};
  1695. var pending = [];
  1696. if ( materialExtensions[ EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS ] ) {
  1697. var sgExtension = extensions[ EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS ];
  1698. materialType = sgExtension.getMaterialType();
  1699. pending.push( sgExtension.extendParams( materialParams, materialDef, parser ) );
  1700. } else if ( materialExtensions[ EXTENSIONS.KHR_MATERIALS_UNLIT ] ) {
  1701. var kmuExtension = extensions[ EXTENSIONS.KHR_MATERIALS_UNLIT ];
  1702. materialType = kmuExtension.getMaterialType();
  1703. pending.push( kmuExtension.extendParams( materialParams, materialDef, parser ) );
  1704. } else {
  1705. // Specification:
  1706. // https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#metallic-roughness-material
  1707. var metallicRoughness = materialDef.pbrMetallicRoughness || {};
  1708. materialParams.color = new THREE.Color( 1.0, 1.0, 1.0 );
  1709. materialParams.opacity = 1.0;
  1710. if ( Array.isArray( metallicRoughness.baseColorFactor ) ) {
  1711. var array = metallicRoughness.baseColorFactor;
  1712. materialParams.color.fromArray( array );
  1713. materialParams.opacity = array[ 3 ];
  1714. }
  1715. if ( metallicRoughness.baseColorTexture !== undefined ) {
  1716. pending.push( parser.assignTexture( materialParams, 'map', metallicRoughness.baseColorTexture ) );
  1717. }
  1718. materialParams.metalness = metallicRoughness.metallicFactor !== undefined ? metallicRoughness.metallicFactor : 1.0;
  1719. materialParams.roughness = metallicRoughness.roughnessFactor !== undefined ? metallicRoughness.roughnessFactor : 1.0;
  1720. if ( metallicRoughness.metallicRoughnessTexture !== undefined ) {
  1721. pending.push( parser.assignTexture( materialParams, 'metalnessMap', metallicRoughness.metallicRoughnessTexture ) );
  1722. pending.push( parser.assignTexture( materialParams, 'roughnessMap', metallicRoughness.metallicRoughnessTexture ) );
  1723. }
  1724. materialType = this._invokeOne( function ( ext ) {
  1725. return ext.getMaterialType && ext.getMaterialType( materialIndex );
  1726. } );
  1727. pending.push( Promise.all( this._invokeAll( function ( ext ) {
  1728. return ext.extendMaterialParams && ext.extendMaterialParams( materialIndex, materialParams );
  1729. } ) ) );
  1730. }
  1731. if ( materialDef.doubleSided === true ) {
  1732. materialParams.side = THREE.DoubleSide;
  1733. }
  1734. var alphaMode = materialDef.alphaMode || ALPHA_MODES.OPAQUE;
  1735. if ( alphaMode === ALPHA_MODES.BLEND ) {
  1736. materialParams.transparent = true;
  1737. // See: https://github.com/mrdoob/three.js/issues/17706
  1738. materialParams.depthWrite = false;
  1739. } else {
  1740. materialParams.transparent = false;
  1741. if ( alphaMode === ALPHA_MODES.MASK ) {
  1742. materialParams.alphaTest = materialDef.alphaCutoff !== undefined ? materialDef.alphaCutoff : 0.5;
  1743. }
  1744. }
  1745. if ( materialDef.normalTexture !== undefined && materialType !== THREE.MeshBasicMaterial ) {
  1746. pending.push( parser.assignTexture( materialParams, 'normalMap', materialDef.normalTexture ) );
  1747. // https://github.com/mrdoob/three.js/issues/11438#issuecomment-507003995
  1748. materialParams.normalScale = new THREE.Vector2( 1, - 1 );
  1749. if ( materialDef.normalTexture.scale !== undefined ) {
  1750. materialParams.normalScale.set( materialDef.normalTexture.scale, - materialDef.normalTexture.scale );
  1751. }
  1752. }
  1753. if ( materialDef.occlusionTexture !== undefined && materialType !== THREE.MeshBasicMaterial ) {
  1754. pending.push( parser.assignTexture( materialParams, 'aoMap', materialDef.occlusionTexture ) );
  1755. if ( materialDef.occlusionTexture.strength !== undefined ) {
  1756. materialParams.aoMapIntensity = materialDef.occlusionTexture.strength;
  1757. }
  1758. }
  1759. if ( materialDef.emissiveFactor !== undefined && materialType !== THREE.MeshBasicMaterial ) {
  1760. materialParams.emissive = new THREE.Color().fromArray( materialDef.emissiveFactor );
  1761. }
  1762. if ( materialDef.emissiveTexture !== undefined && materialType !== THREE.MeshBasicMaterial ) {
  1763. pending.push( parser.assignTexture( materialParams, 'emissiveMap', materialDef.emissiveTexture ) );
  1764. }
  1765. return Promise.all( pending ).then( function () {
  1766. var material;
  1767. if ( materialType === GLTFMeshStandardSGMaterial ) {
  1768. material = extensions[ EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS ].createMaterial( materialParams );
  1769. } else {
  1770. material = new materialType( materialParams );
  1771. }
  1772. if ( materialDef.name ) material.name = materialDef.name;
  1773. // baseColorTexture, emissiveTexture, and specularGlossinessTexture use sRGB encoding.
  1774. if ( material.map ) material.map.encoding = THREE.sRGBEncoding;
  1775. if ( material.emissiveMap ) material.emissiveMap.encoding = THREE.sRGBEncoding;
  1776. assignExtrasToUserData( material, materialDef );
  1777. parser.associations.set( material, { type: 'materials', index: materialIndex } );
  1778. if ( materialDef.extensions ) addUnknownExtensionsToUserData( extensions, material, materialDef );
  1779. return material;
  1780. } );
  1781. };
  1782. /** When Object3D instances are targeted by animation, they need unique names. */
  1783. GLTFParser.prototype.createUniqueName = function ( originalName ) {
  1784. var sanitizedName = THREE.PropertyBinding.sanitizeNodeName( originalName || '' );
  1785. var name = sanitizedName;
  1786. for ( var i = 1; this.nodeNamesUsed[ name ]; ++ i ) {
  1787. name = sanitizedName + '_' + i;
  1788. }
  1789. this.nodeNamesUsed[ name ] = true;
  1790. return name;
  1791. };
  1792. /**
  1793. * @param {THREE.BufferGeometry} geometry
  1794. * @param {GLTF.Primitive} primitiveDef
  1795. * @param {GLTFParser} parser
  1796. */
  1797. function computeBounds( geometry, primitiveDef, parser ) {
  1798. var attributes = primitiveDef.attributes;
  1799. var box = new THREE.Box3();
  1800. if ( attributes.POSITION !== undefined ) {
  1801. var accessor = parser.json.accessors[ attributes.POSITION ];
  1802. var min = accessor.min;
  1803. var max = accessor.max;
  1804. // glTF requires 'min' and 'max', but VRM (which extends glTF) currently ignores that requirement.
  1805. if ( min !== undefined && max !== undefined ) {
  1806. box.set(
  1807. new THREE.Vector3( min[ 0 ], min[ 1 ], min[ 2 ] ),
  1808. new THREE.Vector3( max[ 0 ], max[ 1 ], max[ 2 ] )
  1809. );
  1810. if ( accessor.normalized ) {
  1811. var boxScale = getNormalizedComponentScale( WEBGL_COMPONENT_TYPES[ accessor.componentType ] );
  1812. box.min.multiplyScalar( boxScale );
  1813. box.max.multiplyScalar( boxScale );
  1814. }
  1815. } else {
  1816. console.warn( 'THREE.GLTFLoader: Missing min/max properties for accessor POSITION.' );
  1817. return;
  1818. }
  1819. } else {
  1820. return;
  1821. }
  1822. var targets = primitiveDef.targets;
  1823. if ( targets !== undefined ) {
  1824. var maxDisplacement = new THREE.Vector3();
  1825. var vector = new THREE.Vector3();
  1826. for ( var i = 0, il = targets.length; i < il; i ++ ) {
  1827. var target = targets[ i ];
  1828. if ( target.POSITION !== undefined ) {
  1829. var accessor = parser.json.accessors[ target.POSITION ];
  1830. var min = accessor.min;
  1831. var max = accessor.max;
  1832. // glTF requires 'min' and 'max', but VRM (which extends glTF) currently ignores that requirement.
  1833. if ( min !== undefined && max !== undefined ) {
  1834. // we need to get max of absolute components because target weight is [-1,1]
  1835. vector.setX( Math.max( Math.abs( min[ 0 ] ), Math.abs( max[ 0 ] ) ) );
  1836. vector.setY( Math.max( Math.abs( min[ 1 ] ), Math.abs( max[ 1 ] ) ) );
  1837. vector.setZ( Math.max( Math.abs( min[ 2 ] ), Math.abs( max[ 2 ] ) ) );
  1838. if ( accessor.normalized ) {
  1839. var boxScale = getNormalizedComponentScale( WEBGL_COMPONENT_TYPES[ accessor.componentType ] );
  1840. vector.multiplyScalar( boxScale );
  1841. }
  1842. // Note: this assumes that the sum of all weights is at most 1. This isn't quite correct - it's more conservative
  1843. // to assume that each target can have a max weight of 1. However, for some use cases - notably, when morph targets
  1844. // are used to implement key-frame animations and as such only two are active at a time - this results in very large
  1845. // boxes. So for now we make a box that's sometimes a touch too small but is hopefully mostly of reasonable size.
  1846. maxDisplacement.max( vector );
  1847. } else {
  1848. console.warn( 'THREE.GLTFLoader: Missing min/max properties for accessor POSITION.' );
  1849. }
  1850. }
  1851. }
  1852. // As per comment above this box isn't conservative, but has a reasonable size for a very large number of morph targets.
  1853. box.expandByVector( maxDisplacement );
  1854. }
  1855. geometry.boundingBox = box;
  1856. var sphere = new THREE.Sphere();
  1857. box.getCenter( sphere.center );
  1858. sphere.radius = box.min.distanceTo( box.max ) / 2;
  1859. geometry.boundingSphere = sphere;
  1860. }
  1861. /**
  1862. * @param {THREE.BufferGeometry} geometry
  1863. * @param {GLTF.Primitive} primitiveDef
  1864. * @param {GLTFParser} parser
  1865. * @return {Promise<THREE.BufferGeometry>}
  1866. */
  1867. function addPrimitiveAttributes( geometry, primitiveDef, parser ) {
  1868. var attributes = primitiveDef.attributes;
  1869. var pending = [];
  1870. function assignAttributeAccessor( accessorIndex, attributeName ) {
  1871. return parser.getDependency( 'accessor', accessorIndex )
  1872. .then( function ( accessor ) {
  1873. geometry.setAttribute( attributeName, accessor );
  1874. } );
  1875. }
  1876. for ( var gltfAttributeName in attributes ) {
  1877. var threeAttributeName = ATTRIBUTES[ gltfAttributeName ] || gltfAttributeName.toLowerCase();
  1878. // Skip attributes already provided by e.g. Draco extension.
  1879. if ( threeAttributeName in geometry.attributes ) continue;
  1880. pending.push( assignAttributeAccessor( attributes[ gltfAttributeName ], threeAttributeName ) );
  1881. }
  1882. if ( primitiveDef.indices !== undefined && ! geometry.index ) {
  1883. var accessor = parser.getDependency( 'accessor', primitiveDef.indices ).then( function ( accessor ) {
  1884. geometry.setIndex( accessor );
  1885. } );
  1886. pending.push( accessor );
  1887. }
  1888. assignExtrasToUserData( geometry, primitiveDef );
  1889. computeBounds( geometry, primitiveDef, parser );
  1890. return Promise.all( pending ).then( function () {
  1891. return primitiveDef.targets !== undefined
  1892. ? addMorphTargets( geometry, primitiveDef.targets, parser )
  1893. : geometry;
  1894. } );
  1895. }
  1896. /**
  1897. * @param {THREE.BufferGeometry} geometry
  1898. * @param {Number} drawMode
  1899. * @return {THREE.BufferGeometry}
  1900. */
  1901. function toTrianglesDrawMode( geometry, drawMode ) {
  1902. var index = geometry.getIndex();
  1903. // generate index if not present
  1904. if ( index === null ) {
  1905. var indices = [];
  1906. var position = geometry.getAttribute( 'position' );
  1907. if ( position !== undefined ) {
  1908. for ( var i = 0; i < position.count; i ++ ) {
  1909. indices.push( i );
  1910. }
  1911. geometry.setIndex( indices );
  1912. index = geometry.getIndex();
  1913. } else {
  1914. console.error( 'THREE.GLTFLoader.toTrianglesDrawMode(): Undefined position attribute. Processing not possible.' );
  1915. return geometry;
  1916. }
  1917. }
  1918. //
  1919. var numberOfTriangles = index.count - 2;
  1920. var newIndices = [];
  1921. if ( drawMode === THREE.TriangleFanDrawMode ) {
  1922. // gl.TRIANGLE_FAN
  1923. for ( var i = 1; i <= numberOfTriangles; i ++ ) {
  1924. newIndices.push( index.getX( 0 ) );
  1925. newIndices.push( index.getX( i ) );
  1926. newIndices.push( index.getX( i + 1 ) );
  1927. }
  1928. } else {
  1929. // gl.TRIANGLE_STRIP
  1930. for ( var i = 0; i < numberOfTriangles; i ++ ) {
  1931. if ( i % 2 === 0 ) {
  1932. newIndices.push( index.getX( i ) );
  1933. newIndices.push( index.getX( i + 1 ) );
  1934. newIndices.push( index.getX( i + 2 ) );
  1935. } else {
  1936. newIndices.push( index.getX( i + 2 ) );
  1937. newIndices.push( index.getX( i + 1 ) );
  1938. newIndices.push( index.getX( i ) );
  1939. }
  1940. }
  1941. }
  1942. if ( ( newIndices.length / 3 ) !== numberOfTriangles ) {
  1943. console.error( 'THREE.GLTFLoader.toTrianglesDrawMode(): Unable to generate correct amount of triangles.' );
  1944. }
  1945. // build final geometry
  1946. var newGeometry = geometry.clone();
  1947. newGeometry.setIndex( newIndices );
  1948. return newGeometry;
  1949. }
  1950. /**
  1951. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#geometry
  1952. *
  1953. * Creates BufferGeometries from primitives.
  1954. *
  1955. * @param {Array<GLTF.Primitive>} primitives
  1956. * @return {Promise<Array<THREE.BufferGeometry>>}
  1957. */
  1958. GLTFParser.prototype.loadGeometries = function ( primitives ) {
  1959. var parser = this;
  1960. var extensions = this.extensions;
  1961. var cache = this.primitiveCache;
  1962. function createDracoPrimitive( primitive ) {
  1963. return extensions[ EXTENSIONS.KHR_DRACO_MESH_COMPRESSION ]
  1964. .decodePrimitive( primitive, parser )
  1965. .then( function ( geometry ) {
  1966. return addPrimitiveAttributes( geometry, primitive, parser );
  1967. } );
  1968. }
  1969. var pending = [];
  1970. for ( var i = 0, il = primitives.length; i < il; i ++ ) {
  1971. var primitive = primitives[ i ];
  1972. var cacheKey = createPrimitiveKey( primitive );
  1973. // See if we've already created this geometry
  1974. var cached = cache[ cacheKey ];
  1975. if ( cached ) {
  1976. // Use the cached geometry if it exists
  1977. pending.push( cached.promise );
  1978. } else {
  1979. var geometryPromise;
  1980. if ( primitive.extensions && primitive.extensions[ EXTENSIONS.KHR_DRACO_MESH_COMPRESSION ] ) {
  1981. // Use DRACO geometry if available
  1982. geometryPromise = createDracoPrimitive( primitive );
  1983. } else {
  1984. // Otherwise create a new geometry
  1985. geometryPromise = addPrimitiveAttributes( new THREE.BufferGeometry(), primitive, parser );
  1986. }
  1987. // Cache this geometry
  1988. cache[ cacheKey ] = { primitive: primitive, promise: geometryPromise };
  1989. pending.push( geometryPromise );
  1990. }
  1991. }
  1992. return Promise.all( pending );
  1993. };
  1994. /**
  1995. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#meshes
  1996. * @param {number} meshIndex
  1997. * @return {Promise<THREE.Group|THREE.Mesh|THREE.SkinnedMesh>}
  1998. */
  1999. GLTFParser.prototype.loadMesh = function ( meshIndex ) {
  2000. var parser = this;
  2001. var json = this.json;
  2002. var extensions = this.extensions;
  2003. var meshDef = json.meshes[ meshIndex ];
  2004. var primitives = meshDef.primitives;
  2005. var pending = [];
  2006. for ( var i = 0, il = primitives.length; i < il; i ++ ) {
  2007. var material = primitives[ i ].material === undefined
  2008. ? createDefaultMaterial( this.cache )
  2009. : this.getDependency( 'material', primitives[ i ].material );
  2010. pending.push( material );
  2011. }
  2012. pending.push( parser.loadGeometries( primitives ) );
  2013. return Promise.all( pending ).then( function ( results ) {
  2014. var materials = results.slice( 0, results.length - 1 );
  2015. var geometries = results[ results.length - 1 ];
  2016. var meshes = [];
  2017. for ( var i = 0, il = geometries.length; i < il; i ++ ) {
  2018. var geometry = geometries[ i ];
  2019. var primitive = primitives[ i ];
  2020. // 1. create Mesh
  2021. var mesh;
  2022. var material = materials[ i ];
  2023. if ( primitive.mode === WEBGL_CONSTANTS.TRIANGLES ||
  2024. primitive.mode === WEBGL_CONSTANTS.TRIANGLE_STRIP ||
  2025. primitive.mode === WEBGL_CONSTANTS.TRIANGLE_FAN ||
  2026. primitive.mode === undefined ) {
  2027. // .isSkinnedMesh isn't in glTF spec. See ._markDefs()
  2028. mesh = meshDef.isSkinnedMesh === true
  2029. ? new THREE.SkinnedMesh( geometry, material )
  2030. : new THREE.Mesh( geometry, material );
  2031. if ( mesh.isSkinnedMesh === true && ! mesh.geometry.attributes.skinWeight.normalized ) {
  2032. // we normalize floating point skin weight array to fix malformed assets (see #15319)
  2033. // it's important to skip this for non-float32 data since normalizeSkinWeights assumes non-normalized inputs
  2034. mesh.normalizeSkinWeights();
  2035. }
  2036. if ( primitive.mode === WEBGL_CONSTANTS.TRIANGLE_STRIP ) {
  2037. mesh.geometry = toTrianglesDrawMode( mesh.geometry, THREE.TriangleStripDrawMode );
  2038. } else if ( primitive.mode === WEBGL_CONSTANTS.TRIANGLE_FAN ) {
  2039. mesh.geometry = toTrianglesDrawMode( mesh.geometry, THREE.TriangleFanDrawMode );
  2040. }
  2041. } else if ( primitive.mode === WEBGL_CONSTANTS.LINES ) {
  2042. mesh = new THREE.LineSegments( geometry, material );
  2043. } else if ( primitive.mode === WEBGL_CONSTANTS.LINE_STRIP ) {
  2044. mesh = new THREE.Line( geometry, material );
  2045. } else if ( primitive.mode === WEBGL_CONSTANTS.LINE_LOOP ) {
  2046. mesh = new THREE.LineLoop( geometry, material );
  2047. } else if ( primitive.mode === WEBGL_CONSTANTS.POINTS ) {
  2048. mesh = new THREE.Points( geometry, material );
  2049. } else {
  2050. throw new Error( 'THREE.GLTFLoader: Primitive mode unsupported: ' + primitive.mode );
  2051. }
  2052. if ( Object.keys( mesh.geometry.morphAttributes ).length > 0 ) {
  2053. updateMorphTargets( mesh, meshDef );
  2054. }
  2055. mesh.name = parser.createUniqueName( meshDef.name || ( 'mesh_' + meshIndex ) );
  2056. assignExtrasToUserData( mesh, meshDef );
  2057. if ( primitive.extensions ) addUnknownExtensionsToUserData( extensions, mesh, primitive );
  2058. parser.assignFinalMaterial( mesh );
  2059. meshes.push( mesh );
  2060. }
  2061. if ( meshes.length === 1 ) {
  2062. return meshes[ 0 ];
  2063. }
  2064. var group = new THREE.Group();
  2065. for ( var i = 0, il = meshes.length; i < il; i ++ ) {
  2066. group.add( meshes[ i ] );
  2067. }
  2068. return group;
  2069. } );
  2070. };
  2071. /**
  2072. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#cameras
  2073. * @param {number} cameraIndex
  2074. * @return {Promise<THREE.Camera>}
  2075. */
  2076. GLTFParser.prototype.loadCamera = function ( cameraIndex ) {
  2077. var camera;
  2078. var cameraDef = this.json.cameras[ cameraIndex ];
  2079. var params = cameraDef[ cameraDef.type ];
  2080. if ( ! params ) {
  2081. console.warn( 'THREE.GLTFLoader: Missing camera parameters.' );
  2082. return;
  2083. }
  2084. if ( cameraDef.type === 'perspective' ) {
  2085. camera = new THREE.PerspectiveCamera( THREE.MathUtils.radToDeg( params.yfov ), params.aspectRatio || 1, params.znear || 1, params.zfar || 2e6 );
  2086. } else if ( cameraDef.type === 'orthographic' ) {
  2087. camera = new THREE.OrthographicCamera( - params.xmag, params.xmag, params.ymag, - params.ymag, params.znear, params.zfar );
  2088. }
  2089. if ( cameraDef.name ) camera.name = this.createUniqueName( cameraDef.name );
  2090. assignExtrasToUserData( camera, cameraDef );
  2091. return Promise.resolve( camera );
  2092. };
  2093. /**
  2094. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#skins
  2095. * @param {number} skinIndex
  2096. * @return {Promise<Object>}
  2097. */
  2098. GLTFParser.prototype.loadSkin = function ( skinIndex ) {
  2099. var skinDef = this.json.skins[ skinIndex ];
  2100. var skinEntry = { joints: skinDef.joints };
  2101. if ( skinDef.inverseBindMatrices === undefined ) {
  2102. return Promise.resolve( skinEntry );
  2103. }
  2104. return this.getDependency( 'accessor', skinDef.inverseBindMatrices ).then( function ( accessor ) {
  2105. skinEntry.inverseBindMatrices = accessor;
  2106. return skinEntry;
  2107. } );
  2108. };
  2109. /**
  2110. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#animations
  2111. * @param {number} animationIndex
  2112. * @return {Promise<THREE.AnimationClip>}
  2113. */
  2114. GLTFParser.prototype.loadAnimation = function ( animationIndex ) {
  2115. var json = this.json;
  2116. var animationDef = json.animations[ animationIndex ];
  2117. var pendingNodes = [];
  2118. var pendingInputAccessors = [];
  2119. var pendingOutputAccessors = [];
  2120. var pendingSamplers = [];
  2121. var pendingTargets = [];
  2122. for ( var i = 0, il = animationDef.channels.length; i < il; i ++ ) {
  2123. var channel = animationDef.channels[ i ];
  2124. var sampler = animationDef.samplers[ channel.sampler ];
  2125. var target = channel.target;
  2126. var name = target.node !== undefined ? target.node : target.id; // NOTE: target.id is deprecated.
  2127. var input = animationDef.parameters !== undefined ? animationDef.parameters[ sampler.input ] : sampler.input;
  2128. var output = animationDef.parameters !== undefined ? animationDef.parameters[ sampler.output ] : sampler.output;
  2129. pendingNodes.push( this.getDependency( 'node', name ) );
  2130. pendingInputAccessors.push( this.getDependency( 'accessor', input ) );
  2131. pendingOutputAccessors.push( this.getDependency( 'accessor', output ) );
  2132. pendingSamplers.push( sampler );
  2133. pendingTargets.push( target );
  2134. }
  2135. return Promise.all( [
  2136. Promise.all( pendingNodes ),
  2137. Promise.all( pendingInputAccessors ),
  2138. Promise.all( pendingOutputAccessors ),
  2139. Promise.all( pendingSamplers ),
  2140. Promise.all( pendingTargets )
  2141. ] ).then( function ( dependencies ) {
  2142. var nodes = dependencies[ 0 ];
  2143. var inputAccessors = dependencies[ 1 ];
  2144. var outputAccessors = dependencies[ 2 ];
  2145. var samplers = dependencies[ 3 ];
  2146. var targets = dependencies[ 4 ];
  2147. var tracks = [];
  2148. for ( var i = 0, il = nodes.length; i < il; i ++ ) {
  2149. var node = nodes[ i ];
  2150. var inputAccessor = inputAccessors[ i ];
  2151. var outputAccessor = outputAccessors[ i ];
  2152. var sampler = samplers[ i ];
  2153. var target = targets[ i ];
  2154. if ( node === undefined ) continue;
  2155. node.updateMatrix();
  2156. node.matrixAutoUpdate = true;
  2157. var TypedKeyframeTrack;
  2158. switch ( PATH_PROPERTIES[ target.path ] ) {
  2159. case PATH_PROPERTIES.weights:
  2160. TypedKeyframeTrack = THREE.NumberKeyframeTrack;
  2161. break;
  2162. case PATH_PROPERTIES.rotation:
  2163. TypedKeyframeTrack = THREE.QuaternionKeyframeTrack;
  2164. break;
  2165. case PATH_PROPERTIES.position:
  2166. case PATH_PROPERTIES.scale:
  2167. default:
  2168. TypedKeyframeTrack = THREE.VectorKeyframeTrack;
  2169. break;
  2170. }
  2171. var targetName = node.name ? node.name : node.uuid;
  2172. var interpolation = sampler.interpolation !== undefined ? INTERPOLATION[ sampler.interpolation ] : THREE.InterpolateLinear;
  2173. var targetNames = [];
  2174. if ( PATH_PROPERTIES[ target.path ] === PATH_PROPERTIES.weights ) {
  2175. // Node may be a THREE.Group (glTF mesh with several primitives) or a THREE.Mesh.
  2176. node.traverse( function ( object ) {
  2177. if ( object.isMesh === true && object.morphTargetInfluences ) {
  2178. targetNames.push( object.name ? object.name : object.uuid );
  2179. }
  2180. } );
  2181. } else {
  2182. targetNames.push( targetName );
  2183. }
  2184. var outputArray = outputAccessor.array;
  2185. if ( outputAccessor.normalized ) {
  2186. var scale = getNormalizedComponentScale( outputArray.constructor );
  2187. var scaled = new Float32Array( outputArray.length );
  2188. for ( var j = 0, jl = outputArray.length; j < jl; j ++ ) {
  2189. scaled[ j ] = outputArray[ j ] * scale;
  2190. }
  2191. outputArray = scaled;
  2192. }
  2193. for ( var j = 0, jl = targetNames.length; j < jl; j ++ ) {
  2194. var track = new TypedKeyframeTrack(
  2195. targetNames[ j ] + '.' + PATH_PROPERTIES[ target.path ],
  2196. inputAccessor.array,
  2197. outputArray,
  2198. interpolation
  2199. );
  2200. // Override interpolation with custom factory method.
  2201. if ( sampler.interpolation === 'CUBICSPLINE' ) {
  2202. track.createInterpolant = function InterpolantFactoryMethodGLTFCubicSpline( result ) {
  2203. // A CUBICSPLINE keyframe in glTF has three output values for each input value,
  2204. // representing inTangent, splineVertex, and outTangent. As a result, track.getValueSize()
  2205. // must be divided by three to get the interpolant's sampleSize argument.
  2206. return new GLTFCubicSplineInterpolant( this.times, this.values, this.getValueSize() / 3, result );
  2207. };
  2208. // Mark as CUBICSPLINE. `track.getInterpolation()` doesn't support custom interpolants.
  2209. track.createInterpolant.isInterpolantFactoryMethodGLTFCubicSpline = true;
  2210. }
  2211. tracks.push( track );
  2212. }
  2213. }
  2214. var name = animationDef.name ? animationDef.name : 'animation_' + animationIndex;
  2215. return new THREE.AnimationClip( name, undefined, tracks );
  2216. } );
  2217. };
  2218. /**
  2219. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#nodes-and-hierarchy
  2220. * @param {number} nodeIndex
  2221. * @return {Promise<THREE.Object3D>}
  2222. */
  2223. GLTFParser.prototype.loadNode = function ( nodeIndex ) {
  2224. var json = this.json;
  2225. var extensions = this.extensions;
  2226. var parser = this;
  2227. var nodeDef = json.nodes[ nodeIndex ];
  2228. // reserve node's name before its dependencies, so the root has the intended name.
  2229. var nodeName = nodeDef.name ? parser.createUniqueName( nodeDef.name ) : '';
  2230. return ( function () {
  2231. var pending = [];
  2232. if ( nodeDef.mesh !== undefined ) {
  2233. pending.push( parser.getDependency( 'mesh', nodeDef.mesh ).then( function ( mesh ) {
  2234. var node = parser._getNodeRef( parser.meshCache, nodeDef.mesh, mesh );
  2235. // if weights are provided on the node, override weights on the mesh.
  2236. if ( nodeDef.weights !== undefined ) {
  2237. node.traverse( function ( o ) {
  2238. if ( ! o.isMesh ) return;
  2239. for ( var i = 0, il = nodeDef.weights.length; i < il; i ++ ) {
  2240. o.morphTargetInfluences[ i ] = nodeDef.weights[ i ];
  2241. }
  2242. } );
  2243. }
  2244. return node;
  2245. } ) );
  2246. }
  2247. if ( nodeDef.camera !== undefined ) {
  2248. pending.push( parser.getDependency( 'camera', nodeDef.camera ).then( function ( camera ) {
  2249. return parser._getNodeRef( parser.cameraCache, nodeDef.camera, camera );
  2250. } ) );
  2251. }
  2252. parser._invokeAll( function ( ext ) {
  2253. return ext.createNodeAttachment && ext.createNodeAttachment( nodeIndex );
  2254. } ).forEach( function ( promise ) {
  2255. pending.push( promise );
  2256. } );
  2257. return Promise.all( pending );
  2258. }() ).then( function ( objects ) {
  2259. var node;
  2260. // .isBone isn't in glTF spec. See ._markDefs
  2261. if ( nodeDef.isBone === true ) {
  2262. node = new THREE.Bone();
  2263. } else if ( objects.length > 1 ) {
  2264. node = new THREE.Group();
  2265. } else if ( objects.length === 1 ) {
  2266. node = objects[ 0 ];
  2267. } else {
  2268. node = new THREE.Object3D();
  2269. }
  2270. if ( node !== objects[ 0 ] ) {
  2271. for ( var i = 0, il = objects.length; i < il; i ++ ) {
  2272. node.add( objects[ i ] );
  2273. }
  2274. }
  2275. if ( nodeDef.name ) {
  2276. node.userData.name = nodeDef.name;
  2277. node.name = nodeName;
  2278. }
  2279. assignExtrasToUserData( node, nodeDef );
  2280. if ( nodeDef.extensions ) addUnknownExtensionsToUserData( extensions, node, nodeDef );
  2281. if ( nodeDef.matrix !== undefined ) {
  2282. var matrix = new THREE.Matrix4();
  2283. matrix.fromArray( nodeDef.matrix );
  2284. node.applyMatrix4( matrix );
  2285. } else {
  2286. if ( nodeDef.translation !== undefined ) {
  2287. node.position.fromArray( nodeDef.translation );
  2288. }
  2289. if ( nodeDef.rotation !== undefined ) {
  2290. node.quaternion.fromArray( nodeDef.rotation );
  2291. }
  2292. if ( nodeDef.scale !== undefined ) {
  2293. node.scale.fromArray( nodeDef.scale );
  2294. }
  2295. }
  2296. parser.associations.set( node, { type: 'nodes', index: nodeIndex } );
  2297. return node;
  2298. } );
  2299. };
  2300. /**
  2301. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#scenes
  2302. * @param {number} sceneIndex
  2303. * @return {Promise<THREE.Group>}
  2304. */
  2305. GLTFParser.prototype.loadScene = function () {
  2306. // scene node hierachy builder
  2307. function buildNodeHierachy( nodeId, parentObject, json, parser ) {
  2308. var nodeDef = json.nodes[ nodeId ];
  2309. return parser.getDependency( 'node', nodeId ).then( function ( node ) {
  2310. if ( nodeDef.skin === undefined ) return node;
  2311. // build skeleton here as well
  2312. var skinEntry;
  2313. return parser.getDependency( 'skin', nodeDef.skin ).then( function ( skin ) {
  2314. skinEntry = skin;
  2315. var pendingJoints = [];
  2316. for ( var i = 0, il = skinEntry.joints.length; i < il; i ++ ) {
  2317. pendingJoints.push( parser.getDependency( 'node', skinEntry.joints[ i ] ) );
  2318. }
  2319. return Promise.all( pendingJoints );
  2320. } ).then( function ( jointNodes ) {
  2321. node.traverse( function ( mesh ) {
  2322. if ( ! mesh.isMesh ) return;
  2323. var bones = [];
  2324. var boneInverses = [];
  2325. for ( var j = 0, jl = jointNodes.length; j < jl; j ++ ) {
  2326. var jointNode = jointNodes[ j ];
  2327. if ( jointNode ) {
  2328. bones.push( jointNode );
  2329. var mat = new THREE.Matrix4();
  2330. if ( skinEntry.inverseBindMatrices !== undefined ) {
  2331. mat.fromArray( skinEntry.inverseBindMatrices.array, j * 16 );
  2332. }
  2333. boneInverses.push( mat );
  2334. } else {
  2335. console.warn( 'THREE.GLTFLoader: Joint "%s" could not be found.', skinEntry.joints[ j ] );
  2336. }
  2337. }
  2338. mesh.bind( new THREE.Skeleton( bones, boneInverses ), mesh.matrixWorld );
  2339. } );
  2340. return node;
  2341. } );
  2342. } ).then( function ( node ) {
  2343. // build node hierachy
  2344. parentObject.add( node );
  2345. var pending = [];
  2346. if ( nodeDef.children ) {
  2347. var children = nodeDef.children;
  2348. for ( var i = 0, il = children.length; i < il; i ++ ) {
  2349. var child = children[ i ];
  2350. pending.push( buildNodeHierachy( child, node, json, parser ) );
  2351. }
  2352. }
  2353. return Promise.all( pending );
  2354. } );
  2355. }
  2356. return function loadScene( sceneIndex ) {
  2357. var json = this.json;
  2358. var extensions = this.extensions;
  2359. var sceneDef = this.json.scenes[ sceneIndex ];
  2360. var parser = this;
  2361. // Loader returns Group, not Scene.
  2362. // See: https://github.com/mrdoob/three.js/issues/18342#issuecomment-578981172
  2363. var scene = new THREE.Group();
  2364. if ( sceneDef.name ) scene.name = parser.createUniqueName( sceneDef.name );
  2365. assignExtrasToUserData( scene, sceneDef );
  2366. if ( sceneDef.extensions ) addUnknownExtensionsToUserData( extensions, scene, sceneDef );
  2367. var nodeIds = sceneDef.nodes || [];
  2368. var pending = [];
  2369. for ( var i = 0, il = nodeIds.length; i < il; i ++ ) {
  2370. pending.push( buildNodeHierachy( nodeIds[ i ], scene, json, parser ) );
  2371. }
  2372. return Promise.all( pending ).then( function () {
  2373. return scene;
  2374. } );
  2375. };
  2376. }();
  2377. return GLTFLoader;
  2378. } )();