GLTFLoader.js 96 KB

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