GLTFLoader.js 79 KB

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