babylon.glTFFileLoader.js 230 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590
  1. /// <reference path="../../../dist/preview release/babylon.d.ts"/>
  2. var BABYLON;
  3. (function (BABYLON) {
  4. var GLTFLoaderCoordinateSystemMode;
  5. (function (GLTFLoaderCoordinateSystemMode) {
  6. /**
  7. * Automatically convert the glTF right-handed data to the appropriate system based on the current coordinate system mode of the scene.
  8. */
  9. GLTFLoaderCoordinateSystemMode[GLTFLoaderCoordinateSystemMode["AUTO"] = 0] = "AUTO";
  10. /**
  11. * Sets the useRightHandedSystem flag on the scene.
  12. */
  13. GLTFLoaderCoordinateSystemMode[GLTFLoaderCoordinateSystemMode["FORCE_RIGHT_HANDED"] = 1] = "FORCE_RIGHT_HANDED";
  14. })(GLTFLoaderCoordinateSystemMode = BABYLON.GLTFLoaderCoordinateSystemMode || (BABYLON.GLTFLoaderCoordinateSystemMode = {}));
  15. var GLTFLoaderAnimationStartMode;
  16. (function (GLTFLoaderAnimationStartMode) {
  17. /**
  18. * No animation will start.
  19. */
  20. GLTFLoaderAnimationStartMode[GLTFLoaderAnimationStartMode["NONE"] = 0] = "NONE";
  21. /**
  22. * The first animation will start.
  23. */
  24. GLTFLoaderAnimationStartMode[GLTFLoaderAnimationStartMode["FIRST"] = 1] = "FIRST";
  25. /**
  26. * All animations will start.
  27. */
  28. GLTFLoaderAnimationStartMode[GLTFLoaderAnimationStartMode["ALL"] = 2] = "ALL";
  29. })(GLTFLoaderAnimationStartMode = BABYLON.GLTFLoaderAnimationStartMode || (BABYLON.GLTFLoaderAnimationStartMode = {}));
  30. var GLTFFileLoader = /** @class */ (function () {
  31. function GLTFFileLoader() {
  32. // #region Common options
  33. /**
  34. * Raised when the asset has been parsed.
  35. * The data.json property stores the glTF JSON.
  36. * The data.bin property stores the BIN chunk from a glTF binary or null if the input is not a glTF binary.
  37. */
  38. this.onParsedObservable = new BABYLON.Observable();
  39. // #endregion
  40. // #region V2 options
  41. /**
  42. * The coordinate system mode (AUTO, FORCE_RIGHT_HANDED).
  43. */
  44. this.coordinateSystemMode = GLTFLoaderCoordinateSystemMode.AUTO;
  45. /**
  46. * The animation start mode (NONE, FIRST, ALL).
  47. */
  48. this.animationStartMode = GLTFLoaderAnimationStartMode.FIRST;
  49. /**
  50. * Set to true to compile materials before raising the success callback.
  51. */
  52. this.compileMaterials = false;
  53. /**
  54. * Set to true to also compile materials with clip planes.
  55. */
  56. this.useClipPlane = false;
  57. /**
  58. * Set to true to compile shadow generators before raising the success callback.
  59. */
  60. this.compileShadowGenerators = false;
  61. /**
  62. * Raised when the loader creates a mesh after parsing the glTF properties of the mesh.
  63. */
  64. this.onMeshLoadedObservable = new BABYLON.Observable();
  65. /**
  66. * Raised when the loader creates a texture after parsing the glTF properties of the texture.
  67. */
  68. this.onTextureLoadedObservable = new BABYLON.Observable();
  69. /**
  70. * Raised when the loader creates a material after parsing the glTF properties of the material.
  71. */
  72. this.onMaterialLoadedObservable = new BABYLON.Observable();
  73. /**
  74. * Raised when the asset is completely loaded, immediately before the loader is disposed.
  75. * For assets with LODs, raised when all of the LODs are complete.
  76. * For assets without LODs, raised when the model is complete, immediately after onSuccess.
  77. */
  78. this.onCompleteObservable = new BABYLON.Observable();
  79. /**
  80. * Raised when the loader is disposed.
  81. */
  82. this.onDisposeObservable = new BABYLON.Observable();
  83. // #endregion
  84. this._loader = null;
  85. this.name = "gltf";
  86. this.extensions = {
  87. ".gltf": { isBinary: false },
  88. ".glb": { isBinary: true }
  89. };
  90. }
  91. Object.defineProperty(GLTFFileLoader.prototype, "onParsed", {
  92. set: function (callback) {
  93. if (this._onParsedObserver) {
  94. this.onParsedObservable.remove(this._onParsedObserver);
  95. }
  96. this._onParsedObserver = this.onParsedObservable.add(callback);
  97. },
  98. enumerable: true,
  99. configurable: true
  100. });
  101. Object.defineProperty(GLTFFileLoader.prototype, "onMeshLoaded", {
  102. set: function (callback) {
  103. if (this._onMeshLoadedObserver) {
  104. this.onMeshLoadedObservable.remove(this._onMeshLoadedObserver);
  105. }
  106. this._onMeshLoadedObserver = this.onMeshLoadedObservable.add(callback);
  107. },
  108. enumerable: true,
  109. configurable: true
  110. });
  111. Object.defineProperty(GLTFFileLoader.prototype, "onTextureLoaded", {
  112. set: function (callback) {
  113. if (this._onTextureLoadedObserver) {
  114. this.onTextureLoadedObservable.remove(this._onTextureLoadedObserver);
  115. }
  116. this._onTextureLoadedObserver = this.onTextureLoadedObservable.add(callback);
  117. },
  118. enumerable: true,
  119. configurable: true
  120. });
  121. Object.defineProperty(GLTFFileLoader.prototype, "onMaterialLoaded", {
  122. set: function (callback) {
  123. if (this._onMaterialLoadedObserver) {
  124. this.onMaterialLoadedObservable.remove(this._onMaterialLoadedObserver);
  125. }
  126. this._onMaterialLoadedObserver = this.onMaterialLoadedObservable.add(callback);
  127. },
  128. enumerable: true,
  129. configurable: true
  130. });
  131. Object.defineProperty(GLTFFileLoader.prototype, "onComplete", {
  132. set: function (callback) {
  133. if (this._onCompleteObserver) {
  134. this.onCompleteObservable.remove(this._onCompleteObserver);
  135. }
  136. this._onCompleteObserver = this.onCompleteObservable.add(callback);
  137. },
  138. enumerable: true,
  139. configurable: true
  140. });
  141. Object.defineProperty(GLTFFileLoader.prototype, "onDispose", {
  142. set: function (callback) {
  143. if (this._onDisposeObserver) {
  144. this.onDisposeObservable.remove(this._onDisposeObserver);
  145. }
  146. this._onDisposeObserver = this.onDisposeObservable.add(callback);
  147. },
  148. enumerable: true,
  149. configurable: true
  150. });
  151. /**
  152. * Disposes the loader, releases resources during load, and cancels any outstanding requests.
  153. */
  154. GLTFFileLoader.prototype.dispose = function () {
  155. if (this._loader) {
  156. this._loader.dispose();
  157. this._loader = null;
  158. }
  159. this.onParsedObservable.clear();
  160. this.onMeshLoadedObservable.clear();
  161. this.onTextureLoadedObservable.clear();
  162. this.onMaterialLoadedObservable.clear();
  163. this.onCompleteObservable.clear();
  164. this.onDisposeObservable.notifyObservers(this);
  165. this.onDisposeObservable.clear();
  166. };
  167. GLTFFileLoader.prototype.importMeshAsync = function (meshesNames, scene, data, rootUrl, onSuccess, onProgress, onError) {
  168. try {
  169. var loaderData = this._parse(data);
  170. this._loader = this._getLoader(loaderData);
  171. this._loader.importMeshAsync(meshesNames, scene, loaderData, rootUrl, onSuccess, onProgress, onError);
  172. }
  173. catch (e) {
  174. if (onError) {
  175. onError(e.message, e);
  176. }
  177. else {
  178. BABYLON.Tools.Error(e.message);
  179. }
  180. }
  181. };
  182. GLTFFileLoader.prototype.loadAsync = function (scene, data, rootUrl, onSuccess, onProgress, onError) {
  183. try {
  184. var loaderData = this._parse(data);
  185. this._loader = this._getLoader(loaderData);
  186. this._loader.loadAsync(scene, loaderData, rootUrl, onSuccess, onProgress, onError);
  187. }
  188. catch (e) {
  189. if (onError) {
  190. onError(e.message, e);
  191. }
  192. else {
  193. BABYLON.Tools.Error(e.message);
  194. }
  195. }
  196. };
  197. GLTFFileLoader.prototype.loadAssetsAsync = function (scene, data, rootUrl, onSuccess, onProgress, onError) {
  198. try {
  199. var loaderData = this._parse(data);
  200. this._loader = this._getLoader(loaderData);
  201. this._loader.importMeshAsync(null, scene, loaderData, rootUrl, function (meshes, particleSystems, skeletons) {
  202. var container = new BABYLON.AssetContainer(scene);
  203. Array.prototype.push.apply(container.meshes, meshes);
  204. Array.prototype.push.apply(container.particleSystems, particleSystems);
  205. Array.prototype.push.apply(container.skeletons, skeletons);
  206. container.removeAllFromScene();
  207. onSuccess(container);
  208. }, onProgress, onError);
  209. }
  210. catch (e) {
  211. if (onError) {
  212. onError(e.message, e);
  213. }
  214. else {
  215. BABYLON.Tools.Error(e.message);
  216. }
  217. }
  218. };
  219. GLTFFileLoader.prototype.canDirectLoad = function (data) {
  220. return ((data.indexOf("scene") !== -1) && (data.indexOf("node") !== -1));
  221. };
  222. GLTFFileLoader.prototype.createPlugin = function () {
  223. return new GLTFFileLoader();
  224. };
  225. GLTFFileLoader.prototype._parse = function (data) {
  226. var parsedData;
  227. if (data instanceof ArrayBuffer) {
  228. parsedData = GLTFFileLoader._parseBinary(data);
  229. }
  230. else {
  231. parsedData = {
  232. json: JSON.parse(data),
  233. bin: null
  234. };
  235. }
  236. this.onParsedObservable.notifyObservers(parsedData);
  237. return parsedData;
  238. };
  239. GLTFFileLoader.prototype._getLoader = function (loaderData) {
  240. var _this = this;
  241. var loaderVersion = { major: 2, minor: 0 };
  242. var asset = loaderData.json.asset || {};
  243. var version = GLTFFileLoader._parseVersion(asset.version);
  244. if (!version) {
  245. throw new Error("Invalid version: " + asset.version);
  246. }
  247. if (asset.minVersion !== undefined) {
  248. var minVersion = GLTFFileLoader._parseVersion(asset.minVersion);
  249. if (!minVersion) {
  250. throw new Error("Invalid minimum version: " + asset.minVersion);
  251. }
  252. if (GLTFFileLoader._compareVersion(minVersion, loaderVersion) > 0) {
  253. throw new Error("Incompatible minimum version: " + asset.minVersion);
  254. }
  255. }
  256. var createLoaders = {
  257. 1: GLTFFileLoader.CreateGLTFLoaderV1,
  258. 2: GLTFFileLoader.CreateGLTFLoaderV2
  259. };
  260. var createLoader = createLoaders[version.major];
  261. if (!createLoader) {
  262. throw new Error("Unsupported version: " + asset.version);
  263. }
  264. var loader = createLoader();
  265. loader.coordinateSystemMode = this.coordinateSystemMode;
  266. loader.animationStartMode = this.animationStartMode;
  267. loader.compileMaterials = this.compileMaterials;
  268. loader.useClipPlane = this.useClipPlane;
  269. loader.compileShadowGenerators = this.compileShadowGenerators;
  270. loader.onMeshLoadedObservable.add(function (mesh) { return _this.onMeshLoadedObservable.notifyObservers(mesh); });
  271. loader.onTextureLoadedObservable.add(function (texture) { return _this.onTextureLoadedObservable.notifyObservers(texture); });
  272. loader.onMaterialLoadedObservable.add(function (material) { return _this.onMaterialLoadedObservable.notifyObservers(material); });
  273. loader.onCompleteObservable.add(function () { return _this.onCompleteObservable.notifyObservers(_this); });
  274. return loader;
  275. };
  276. GLTFFileLoader._parseBinary = function (data) {
  277. var Binary = {
  278. Magic: 0x46546C67
  279. };
  280. var binaryReader = new BinaryReader(data);
  281. var magic = binaryReader.readUint32();
  282. if (magic !== Binary.Magic) {
  283. throw new Error("Unexpected magic: " + magic);
  284. }
  285. var version = binaryReader.readUint32();
  286. switch (version) {
  287. case 1: return GLTFFileLoader._parseV1(binaryReader);
  288. case 2: return GLTFFileLoader._parseV2(binaryReader);
  289. }
  290. throw new Error("Unsupported version: " + version);
  291. };
  292. GLTFFileLoader._parseV1 = function (binaryReader) {
  293. var ContentFormat = {
  294. JSON: 0
  295. };
  296. var length = binaryReader.readUint32();
  297. if (length != binaryReader.getLength()) {
  298. throw new Error("Length in header does not match actual data length: " + length + " != " + binaryReader.getLength());
  299. }
  300. var contentLength = binaryReader.readUint32();
  301. var contentFormat = binaryReader.readUint32();
  302. var content;
  303. switch (contentFormat) {
  304. case ContentFormat.JSON: {
  305. content = JSON.parse(GLTFFileLoader._decodeBufferToText(binaryReader.readUint8Array(contentLength)));
  306. break;
  307. }
  308. default: {
  309. throw new Error("Unexpected content format: " + contentFormat);
  310. }
  311. }
  312. var bytesRemaining = binaryReader.getLength() - binaryReader.getPosition();
  313. var body = binaryReader.readUint8Array(bytesRemaining);
  314. return {
  315. json: content,
  316. bin: body
  317. };
  318. };
  319. GLTFFileLoader._parseV2 = function (binaryReader) {
  320. var ChunkFormat = {
  321. JSON: 0x4E4F534A,
  322. BIN: 0x004E4942
  323. };
  324. var length = binaryReader.readUint32();
  325. if (length !== binaryReader.getLength()) {
  326. throw new Error("Length in header does not match actual data length: " + length + " != " + binaryReader.getLength());
  327. }
  328. // JSON chunk
  329. var chunkLength = binaryReader.readUint32();
  330. var chunkFormat = binaryReader.readUint32();
  331. if (chunkFormat !== ChunkFormat.JSON) {
  332. throw new Error("First chunk format is not JSON");
  333. }
  334. var json = JSON.parse(GLTFFileLoader._decodeBufferToText(binaryReader.readUint8Array(chunkLength)));
  335. // Look for BIN chunk
  336. var bin = null;
  337. while (binaryReader.getPosition() < binaryReader.getLength()) {
  338. var chunkLength_1 = binaryReader.readUint32();
  339. var chunkFormat_1 = binaryReader.readUint32();
  340. switch (chunkFormat_1) {
  341. case ChunkFormat.JSON: {
  342. throw new Error("Unexpected JSON chunk");
  343. }
  344. case ChunkFormat.BIN: {
  345. bin = binaryReader.readUint8Array(chunkLength_1);
  346. break;
  347. }
  348. default: {
  349. // ignore unrecognized chunkFormat
  350. binaryReader.skipBytes(chunkLength_1);
  351. break;
  352. }
  353. }
  354. }
  355. return {
  356. json: json,
  357. bin: bin
  358. };
  359. };
  360. GLTFFileLoader._parseVersion = function (version) {
  361. if (version === "1.0" || version === "1.0.1") {
  362. return {
  363. major: 1,
  364. minor: 0
  365. };
  366. }
  367. var match = (version + "").match(/^(\d+)\.(\d+)/);
  368. if (!match) {
  369. return null;
  370. }
  371. return {
  372. major: parseInt(match[1]),
  373. minor: parseInt(match[2])
  374. };
  375. };
  376. GLTFFileLoader._compareVersion = function (a, b) {
  377. if (a.major > b.major)
  378. return 1;
  379. if (a.major < b.major)
  380. return -1;
  381. if (a.minor > b.minor)
  382. return 1;
  383. if (a.minor < b.minor)
  384. return -1;
  385. return 0;
  386. };
  387. GLTFFileLoader._decodeBufferToText = function (buffer) {
  388. var result = "";
  389. var length = buffer.byteLength;
  390. for (var i = 0; i < length; i++) {
  391. result += String.fromCharCode(buffer[i]);
  392. }
  393. return result;
  394. };
  395. // #endregion
  396. // #region V1 options
  397. GLTFFileLoader.IncrementalLoading = true;
  398. GLTFFileLoader.HomogeneousCoordinates = false;
  399. return GLTFFileLoader;
  400. }());
  401. BABYLON.GLTFFileLoader = GLTFFileLoader;
  402. var BinaryReader = /** @class */ (function () {
  403. function BinaryReader(arrayBuffer) {
  404. this._arrayBuffer = arrayBuffer;
  405. this._dataView = new DataView(arrayBuffer);
  406. this._byteOffset = 0;
  407. }
  408. BinaryReader.prototype.getPosition = function () {
  409. return this._byteOffset;
  410. };
  411. BinaryReader.prototype.getLength = function () {
  412. return this._arrayBuffer.byteLength;
  413. };
  414. BinaryReader.prototype.readUint32 = function () {
  415. var value = this._dataView.getUint32(this._byteOffset, true);
  416. this._byteOffset += 4;
  417. return value;
  418. };
  419. BinaryReader.prototype.readUint8Array = function (length) {
  420. var value = new Uint8Array(this._arrayBuffer, this._byteOffset, length);
  421. this._byteOffset += length;
  422. return value;
  423. };
  424. BinaryReader.prototype.skipBytes = function (length) {
  425. this._byteOffset += length;
  426. };
  427. return BinaryReader;
  428. }());
  429. if (BABYLON.SceneLoader) {
  430. BABYLON.SceneLoader.RegisterPlugin(new GLTFFileLoader());
  431. }
  432. })(BABYLON || (BABYLON = {}));
  433. //# sourceMappingURL=babylon.glTFFileLoader.js.map
  434. /// <reference path="../../../../dist/preview release/babylon.d.ts"/>
  435. var BABYLON;
  436. (function (BABYLON) {
  437. var GLTF1;
  438. (function (GLTF1) {
  439. /**
  440. * Enums
  441. */
  442. var EComponentType;
  443. (function (EComponentType) {
  444. EComponentType[EComponentType["BYTE"] = 5120] = "BYTE";
  445. EComponentType[EComponentType["UNSIGNED_BYTE"] = 5121] = "UNSIGNED_BYTE";
  446. EComponentType[EComponentType["SHORT"] = 5122] = "SHORT";
  447. EComponentType[EComponentType["UNSIGNED_SHORT"] = 5123] = "UNSIGNED_SHORT";
  448. EComponentType[EComponentType["FLOAT"] = 5126] = "FLOAT";
  449. })(EComponentType = GLTF1.EComponentType || (GLTF1.EComponentType = {}));
  450. var EShaderType;
  451. (function (EShaderType) {
  452. EShaderType[EShaderType["FRAGMENT"] = 35632] = "FRAGMENT";
  453. EShaderType[EShaderType["VERTEX"] = 35633] = "VERTEX";
  454. })(EShaderType = GLTF1.EShaderType || (GLTF1.EShaderType = {}));
  455. var EParameterType;
  456. (function (EParameterType) {
  457. EParameterType[EParameterType["BYTE"] = 5120] = "BYTE";
  458. EParameterType[EParameterType["UNSIGNED_BYTE"] = 5121] = "UNSIGNED_BYTE";
  459. EParameterType[EParameterType["SHORT"] = 5122] = "SHORT";
  460. EParameterType[EParameterType["UNSIGNED_SHORT"] = 5123] = "UNSIGNED_SHORT";
  461. EParameterType[EParameterType["INT"] = 5124] = "INT";
  462. EParameterType[EParameterType["UNSIGNED_INT"] = 5125] = "UNSIGNED_INT";
  463. EParameterType[EParameterType["FLOAT"] = 5126] = "FLOAT";
  464. EParameterType[EParameterType["FLOAT_VEC2"] = 35664] = "FLOAT_VEC2";
  465. EParameterType[EParameterType["FLOAT_VEC3"] = 35665] = "FLOAT_VEC3";
  466. EParameterType[EParameterType["FLOAT_VEC4"] = 35666] = "FLOAT_VEC4";
  467. EParameterType[EParameterType["INT_VEC2"] = 35667] = "INT_VEC2";
  468. EParameterType[EParameterType["INT_VEC3"] = 35668] = "INT_VEC3";
  469. EParameterType[EParameterType["INT_VEC4"] = 35669] = "INT_VEC4";
  470. EParameterType[EParameterType["BOOL"] = 35670] = "BOOL";
  471. EParameterType[EParameterType["BOOL_VEC2"] = 35671] = "BOOL_VEC2";
  472. EParameterType[EParameterType["BOOL_VEC3"] = 35672] = "BOOL_VEC3";
  473. EParameterType[EParameterType["BOOL_VEC4"] = 35673] = "BOOL_VEC4";
  474. EParameterType[EParameterType["FLOAT_MAT2"] = 35674] = "FLOAT_MAT2";
  475. EParameterType[EParameterType["FLOAT_MAT3"] = 35675] = "FLOAT_MAT3";
  476. EParameterType[EParameterType["FLOAT_MAT4"] = 35676] = "FLOAT_MAT4";
  477. EParameterType[EParameterType["SAMPLER_2D"] = 35678] = "SAMPLER_2D";
  478. })(EParameterType = GLTF1.EParameterType || (GLTF1.EParameterType = {}));
  479. var ETextureWrapMode;
  480. (function (ETextureWrapMode) {
  481. ETextureWrapMode[ETextureWrapMode["CLAMP_TO_EDGE"] = 33071] = "CLAMP_TO_EDGE";
  482. ETextureWrapMode[ETextureWrapMode["MIRRORED_REPEAT"] = 33648] = "MIRRORED_REPEAT";
  483. ETextureWrapMode[ETextureWrapMode["REPEAT"] = 10497] = "REPEAT";
  484. })(ETextureWrapMode = GLTF1.ETextureWrapMode || (GLTF1.ETextureWrapMode = {}));
  485. var ETextureFilterType;
  486. (function (ETextureFilterType) {
  487. ETextureFilterType[ETextureFilterType["NEAREST"] = 9728] = "NEAREST";
  488. ETextureFilterType[ETextureFilterType["LINEAR"] = 9728] = "LINEAR";
  489. ETextureFilterType[ETextureFilterType["NEAREST_MIPMAP_NEAREST"] = 9984] = "NEAREST_MIPMAP_NEAREST";
  490. ETextureFilterType[ETextureFilterType["LINEAR_MIPMAP_NEAREST"] = 9985] = "LINEAR_MIPMAP_NEAREST";
  491. ETextureFilterType[ETextureFilterType["NEAREST_MIPMAP_LINEAR"] = 9986] = "NEAREST_MIPMAP_LINEAR";
  492. ETextureFilterType[ETextureFilterType["LINEAR_MIPMAP_LINEAR"] = 9987] = "LINEAR_MIPMAP_LINEAR";
  493. })(ETextureFilterType = GLTF1.ETextureFilterType || (GLTF1.ETextureFilterType = {}));
  494. var ETextureFormat;
  495. (function (ETextureFormat) {
  496. ETextureFormat[ETextureFormat["ALPHA"] = 6406] = "ALPHA";
  497. ETextureFormat[ETextureFormat["RGB"] = 6407] = "RGB";
  498. ETextureFormat[ETextureFormat["RGBA"] = 6408] = "RGBA";
  499. ETextureFormat[ETextureFormat["LUMINANCE"] = 6409] = "LUMINANCE";
  500. ETextureFormat[ETextureFormat["LUMINANCE_ALPHA"] = 6410] = "LUMINANCE_ALPHA";
  501. })(ETextureFormat = GLTF1.ETextureFormat || (GLTF1.ETextureFormat = {}));
  502. var ECullingType;
  503. (function (ECullingType) {
  504. ECullingType[ECullingType["FRONT"] = 1028] = "FRONT";
  505. ECullingType[ECullingType["BACK"] = 1029] = "BACK";
  506. ECullingType[ECullingType["FRONT_AND_BACK"] = 1032] = "FRONT_AND_BACK";
  507. })(ECullingType = GLTF1.ECullingType || (GLTF1.ECullingType = {}));
  508. var EBlendingFunction;
  509. (function (EBlendingFunction) {
  510. EBlendingFunction[EBlendingFunction["ZERO"] = 0] = "ZERO";
  511. EBlendingFunction[EBlendingFunction["ONE"] = 1] = "ONE";
  512. EBlendingFunction[EBlendingFunction["SRC_COLOR"] = 768] = "SRC_COLOR";
  513. EBlendingFunction[EBlendingFunction["ONE_MINUS_SRC_COLOR"] = 769] = "ONE_MINUS_SRC_COLOR";
  514. EBlendingFunction[EBlendingFunction["DST_COLOR"] = 774] = "DST_COLOR";
  515. EBlendingFunction[EBlendingFunction["ONE_MINUS_DST_COLOR"] = 775] = "ONE_MINUS_DST_COLOR";
  516. EBlendingFunction[EBlendingFunction["SRC_ALPHA"] = 770] = "SRC_ALPHA";
  517. EBlendingFunction[EBlendingFunction["ONE_MINUS_SRC_ALPHA"] = 771] = "ONE_MINUS_SRC_ALPHA";
  518. EBlendingFunction[EBlendingFunction["DST_ALPHA"] = 772] = "DST_ALPHA";
  519. EBlendingFunction[EBlendingFunction["ONE_MINUS_DST_ALPHA"] = 773] = "ONE_MINUS_DST_ALPHA";
  520. EBlendingFunction[EBlendingFunction["CONSTANT_COLOR"] = 32769] = "CONSTANT_COLOR";
  521. EBlendingFunction[EBlendingFunction["ONE_MINUS_CONSTANT_COLOR"] = 32770] = "ONE_MINUS_CONSTANT_COLOR";
  522. EBlendingFunction[EBlendingFunction["CONSTANT_ALPHA"] = 32771] = "CONSTANT_ALPHA";
  523. EBlendingFunction[EBlendingFunction["ONE_MINUS_CONSTANT_ALPHA"] = 32772] = "ONE_MINUS_CONSTANT_ALPHA";
  524. EBlendingFunction[EBlendingFunction["SRC_ALPHA_SATURATE"] = 776] = "SRC_ALPHA_SATURATE";
  525. })(EBlendingFunction = GLTF1.EBlendingFunction || (GLTF1.EBlendingFunction = {}));
  526. })(GLTF1 = BABYLON.GLTF1 || (BABYLON.GLTF1 = {}));
  527. })(BABYLON || (BABYLON = {}));
  528. //# sourceMappingURL=babylon.glTFLoaderInterfaces.js.map
  529. /// <reference path="../../../../dist/preview release/babylon.d.ts"/>
  530. var BABYLON;
  531. (function (BABYLON) {
  532. var GLTF1;
  533. (function (GLTF1) {
  534. /**
  535. * Tokenizer. Used for shaders compatibility
  536. * Automatically map world, view, projection, worldViewProjection, attributes and so on
  537. */
  538. var ETokenType;
  539. (function (ETokenType) {
  540. ETokenType[ETokenType["IDENTIFIER"] = 1] = "IDENTIFIER";
  541. ETokenType[ETokenType["UNKNOWN"] = 2] = "UNKNOWN";
  542. ETokenType[ETokenType["END_OF_INPUT"] = 3] = "END_OF_INPUT";
  543. })(ETokenType || (ETokenType = {}));
  544. var Tokenizer = /** @class */ (function () {
  545. function Tokenizer(toParse) {
  546. this._pos = 0;
  547. this.isLetterOrDigitPattern = /^[a-zA-Z0-9]+$/;
  548. this._toParse = toParse;
  549. this._maxPos = toParse.length;
  550. }
  551. Tokenizer.prototype.getNextToken = function () {
  552. if (this.isEnd())
  553. return ETokenType.END_OF_INPUT;
  554. this.currentString = this.read();
  555. this.currentToken = ETokenType.UNKNOWN;
  556. if (this.currentString === "_" || this.isLetterOrDigitPattern.test(this.currentString)) {
  557. this.currentToken = ETokenType.IDENTIFIER;
  558. this.currentIdentifier = this.currentString;
  559. while (!this.isEnd() && (this.isLetterOrDigitPattern.test(this.currentString = this.peek()) || this.currentString === "_")) {
  560. this.currentIdentifier += this.currentString;
  561. this.forward();
  562. }
  563. }
  564. return this.currentToken;
  565. };
  566. Tokenizer.prototype.peek = function () {
  567. return this._toParse[this._pos];
  568. };
  569. Tokenizer.prototype.read = function () {
  570. return this._toParse[this._pos++];
  571. };
  572. Tokenizer.prototype.forward = function () {
  573. this._pos++;
  574. };
  575. Tokenizer.prototype.isEnd = function () {
  576. return this._pos >= this._maxPos;
  577. };
  578. return Tokenizer;
  579. }());
  580. /**
  581. * Values
  582. */
  583. var glTFTransforms = ["MODEL", "VIEW", "PROJECTION", "MODELVIEW", "MODELVIEWPROJECTION", "JOINTMATRIX"];
  584. var babylonTransforms = ["world", "view", "projection", "worldView", "worldViewProjection", "mBones"];
  585. var glTFAnimationPaths = ["translation", "rotation", "scale"];
  586. var babylonAnimationPaths = ["position", "rotationQuaternion", "scaling"];
  587. /**
  588. * Parse
  589. */
  590. var parseBuffers = function (parsedBuffers, gltfRuntime) {
  591. for (var buf in parsedBuffers) {
  592. var parsedBuffer = parsedBuffers[buf];
  593. gltfRuntime.buffers[buf] = parsedBuffer;
  594. gltfRuntime.buffersCount++;
  595. }
  596. };
  597. var parseShaders = function (parsedShaders, gltfRuntime) {
  598. for (var sha in parsedShaders) {
  599. var parsedShader = parsedShaders[sha];
  600. gltfRuntime.shaders[sha] = parsedShader;
  601. gltfRuntime.shaderscount++;
  602. }
  603. };
  604. var parseObject = function (parsedObjects, runtimeProperty, gltfRuntime) {
  605. for (var object in parsedObjects) {
  606. var parsedObject = parsedObjects[object];
  607. gltfRuntime[runtimeProperty][object] = parsedObject;
  608. }
  609. };
  610. /**
  611. * Utils
  612. */
  613. var normalizeUVs = function (buffer) {
  614. if (!buffer) {
  615. return;
  616. }
  617. for (var i = 0; i < buffer.length / 2; i++) {
  618. buffer[i * 2 + 1] = 1.0 - buffer[i * 2 + 1];
  619. }
  620. };
  621. var getAttribute = function (attributeParameter) {
  622. if (attributeParameter.semantic === "NORMAL") {
  623. return "normal";
  624. }
  625. else if (attributeParameter.semantic === "POSITION") {
  626. return "position";
  627. }
  628. else if (attributeParameter.semantic === "JOINT") {
  629. return "matricesIndices";
  630. }
  631. else if (attributeParameter.semantic === "WEIGHT") {
  632. return "matricesWeights";
  633. }
  634. else if (attributeParameter.semantic === "COLOR") {
  635. return "color";
  636. }
  637. else if (attributeParameter.semantic && attributeParameter.semantic.indexOf("TEXCOORD_") !== -1) {
  638. var channel = Number(attributeParameter.semantic.split("_")[1]);
  639. return "uv" + (channel === 0 ? "" : channel + 1);
  640. }
  641. return null;
  642. };
  643. /**
  644. * Loads and creates animations
  645. */
  646. var loadAnimations = function (gltfRuntime) {
  647. for (var anim in gltfRuntime.animations) {
  648. var animation = gltfRuntime.animations[anim];
  649. if (!animation.channels || !animation.samplers) {
  650. continue;
  651. }
  652. var lastAnimation = null;
  653. for (var i = 0; i < animation.channels.length; i++) {
  654. // Get parameters and load buffers
  655. var channel = animation.channels[i];
  656. var sampler = animation.samplers[channel.sampler];
  657. if (!sampler) {
  658. continue;
  659. }
  660. var inputData = null;
  661. var outputData = null;
  662. if (animation.parameters) {
  663. inputData = animation.parameters[sampler.input];
  664. outputData = animation.parameters[sampler.output];
  665. }
  666. else {
  667. inputData = sampler.input;
  668. outputData = sampler.output;
  669. }
  670. var bufferInput = GLTF1.GLTFUtils.GetBufferFromAccessor(gltfRuntime, gltfRuntime.accessors[inputData]);
  671. var bufferOutput = GLTF1.GLTFUtils.GetBufferFromAccessor(gltfRuntime, gltfRuntime.accessors[outputData]);
  672. var targetID = channel.target.id;
  673. var targetNode = gltfRuntime.scene.getNodeByID(targetID);
  674. if (targetNode === null) {
  675. targetNode = gltfRuntime.scene.getNodeByName(targetID);
  676. }
  677. if (targetNode === null) {
  678. BABYLON.Tools.Warn("Creating animation named " + anim + ". But cannot find node named " + targetID + " to attach to");
  679. continue;
  680. }
  681. var isBone = targetNode instanceof BABYLON.Bone;
  682. // Get target path (position, rotation or scaling)
  683. var targetPath = channel.target.path;
  684. var targetPathIndex = glTFAnimationPaths.indexOf(targetPath);
  685. if (targetPathIndex !== -1) {
  686. targetPath = babylonAnimationPaths[targetPathIndex];
  687. }
  688. // Determine animation type
  689. var animationType = BABYLON.Animation.ANIMATIONTYPE_MATRIX;
  690. if (!isBone) {
  691. if (targetPath === "rotationQuaternion") {
  692. animationType = BABYLON.Animation.ANIMATIONTYPE_QUATERNION;
  693. targetNode.rotationQuaternion = new BABYLON.Quaternion();
  694. }
  695. else {
  696. animationType = BABYLON.Animation.ANIMATIONTYPE_VECTOR3;
  697. }
  698. }
  699. // Create animation and key frames
  700. var babylonAnimation = null;
  701. var keys = [];
  702. var arrayOffset = 0;
  703. var modifyKey = false;
  704. if (isBone && lastAnimation && lastAnimation.getKeys().length === bufferInput.length) {
  705. babylonAnimation = lastAnimation;
  706. modifyKey = true;
  707. }
  708. if (!modifyKey) {
  709. babylonAnimation = new BABYLON.Animation(anim, isBone ? "_matrix" : targetPath, 1, animationType, BABYLON.Animation.ANIMATIONLOOPMODE_CYCLE);
  710. }
  711. // For each frame
  712. for (var j = 0; j < bufferInput.length; j++) {
  713. var value = null;
  714. if (targetPath === "rotationQuaternion") {
  715. value = BABYLON.Quaternion.FromArray([bufferOutput[arrayOffset], bufferOutput[arrayOffset + 1], bufferOutput[arrayOffset + 2], bufferOutput[arrayOffset + 3]]);
  716. arrayOffset += 4;
  717. }
  718. else {
  719. value = BABYLON.Vector3.FromArray([bufferOutput[arrayOffset], bufferOutput[arrayOffset + 1], bufferOutput[arrayOffset + 2]]);
  720. arrayOffset += 3;
  721. }
  722. if (isBone) {
  723. var bone = targetNode;
  724. var translation = BABYLON.Vector3.Zero();
  725. var rotationQuaternion = new BABYLON.Quaternion();
  726. var scaling = BABYLON.Vector3.Zero();
  727. // Warning on decompose
  728. var mat = bone.getBaseMatrix();
  729. if (modifyKey && lastAnimation) {
  730. mat = lastAnimation.getKeys()[j].value;
  731. }
  732. mat.decompose(scaling, rotationQuaternion, translation);
  733. if (targetPath === "position") {
  734. translation = value;
  735. }
  736. else if (targetPath === "rotationQuaternion") {
  737. rotationQuaternion = value;
  738. }
  739. else {
  740. scaling = value;
  741. }
  742. value = BABYLON.Matrix.Compose(scaling, rotationQuaternion, translation);
  743. }
  744. if (!modifyKey) {
  745. keys.push({
  746. frame: bufferInput[j],
  747. value: value
  748. });
  749. }
  750. else if (lastAnimation) {
  751. lastAnimation.getKeys()[j].value = value;
  752. }
  753. }
  754. // Finish
  755. if (!modifyKey && babylonAnimation) {
  756. babylonAnimation.setKeys(keys);
  757. targetNode.animations.push(babylonAnimation);
  758. }
  759. lastAnimation = babylonAnimation;
  760. gltfRuntime.scene.stopAnimation(targetNode);
  761. gltfRuntime.scene.beginAnimation(targetNode, 0, bufferInput[bufferInput.length - 1], true, 1.0);
  762. }
  763. }
  764. };
  765. /**
  766. * Returns the bones transformation matrix
  767. */
  768. var configureBoneTransformation = function (node) {
  769. var mat = null;
  770. if (node.translation || node.rotation || node.scale) {
  771. var scale = BABYLON.Vector3.FromArray(node.scale || [1, 1, 1]);
  772. var rotation = BABYLON.Quaternion.FromArray(node.rotation || [0, 0, 0, 1]);
  773. var position = BABYLON.Vector3.FromArray(node.translation || [0, 0, 0]);
  774. mat = BABYLON.Matrix.Compose(scale, rotation, position);
  775. }
  776. else {
  777. mat = BABYLON.Matrix.FromArray(node.matrix);
  778. }
  779. return mat;
  780. };
  781. /**
  782. * Returns the parent bone
  783. */
  784. var getParentBone = function (gltfRuntime, skins, jointName, newSkeleton) {
  785. // Try to find
  786. for (var i = 0; i < newSkeleton.bones.length; i++) {
  787. if (newSkeleton.bones[i].name === jointName) {
  788. return newSkeleton.bones[i];
  789. }
  790. }
  791. // Not found, search in gltf nodes
  792. var nodes = gltfRuntime.nodes;
  793. for (var nde in nodes) {
  794. var node = nodes[nde];
  795. if (!node.jointName) {
  796. continue;
  797. }
  798. var children = node.children;
  799. for (var i = 0; i < children.length; i++) {
  800. var child = gltfRuntime.nodes[children[i]];
  801. if (!child.jointName) {
  802. continue;
  803. }
  804. if (child.jointName === jointName) {
  805. var mat = configureBoneTransformation(node);
  806. var bone = new BABYLON.Bone(node.name || "", newSkeleton, getParentBone(gltfRuntime, skins, node.jointName, newSkeleton), mat);
  807. bone.id = nde;
  808. return bone;
  809. }
  810. }
  811. }
  812. return null;
  813. };
  814. /**
  815. * Returns the appropriate root node
  816. */
  817. var getNodeToRoot = function (nodesToRoot, id) {
  818. for (var i = 0; i < nodesToRoot.length; i++) {
  819. var nodeToRoot = nodesToRoot[i];
  820. for (var j = 0; j < nodeToRoot.node.children.length; j++) {
  821. var child = nodeToRoot.node.children[j];
  822. if (child === id) {
  823. return nodeToRoot.bone;
  824. }
  825. }
  826. }
  827. return null;
  828. };
  829. /**
  830. * Returns the node with the joint name
  831. */
  832. var getJointNode = function (gltfRuntime, jointName) {
  833. var nodes = gltfRuntime.nodes;
  834. var node = nodes[jointName];
  835. if (node) {
  836. return {
  837. node: node,
  838. id: jointName
  839. };
  840. }
  841. for (var nde in nodes) {
  842. node = nodes[nde];
  843. if (node.jointName === jointName) {
  844. return {
  845. node: node,
  846. id: nde
  847. };
  848. }
  849. }
  850. return null;
  851. };
  852. /**
  853. * Checks if a nodes is in joints
  854. */
  855. var nodeIsInJoints = function (skins, id) {
  856. for (var i = 0; i < skins.jointNames.length; i++) {
  857. if (skins.jointNames[i] === id) {
  858. return true;
  859. }
  860. }
  861. return false;
  862. };
  863. /**
  864. * Fills the nodes to root for bones and builds hierarchy
  865. */
  866. var getNodesToRoot = function (gltfRuntime, newSkeleton, skins, nodesToRoot) {
  867. // Creates nodes for root
  868. for (var nde in gltfRuntime.nodes) {
  869. var node = gltfRuntime.nodes[nde];
  870. var id = nde;
  871. if (!node.jointName || nodeIsInJoints(skins, node.jointName)) {
  872. continue;
  873. }
  874. // Create node to root bone
  875. var mat = configureBoneTransformation(node);
  876. var bone = new BABYLON.Bone(node.name || "", newSkeleton, null, mat);
  877. bone.id = id;
  878. nodesToRoot.push({ bone: bone, node: node, id: id });
  879. }
  880. // Parenting
  881. for (var i = 0; i < nodesToRoot.length; i++) {
  882. var nodeToRoot = nodesToRoot[i];
  883. var children = nodeToRoot.node.children;
  884. for (var j = 0; j < children.length; j++) {
  885. var child = null;
  886. for (var k = 0; k < nodesToRoot.length; k++) {
  887. if (nodesToRoot[k].id === children[j]) {
  888. child = nodesToRoot[k];
  889. break;
  890. }
  891. }
  892. if (child) {
  893. child.bone._parent = nodeToRoot.bone;
  894. nodeToRoot.bone.children.push(child.bone);
  895. }
  896. }
  897. }
  898. };
  899. /**
  900. * Imports a skeleton
  901. */
  902. var importSkeleton = function (gltfRuntime, skins, mesh, newSkeleton, id) {
  903. if (!newSkeleton) {
  904. newSkeleton = new BABYLON.Skeleton(skins.name || "", "", gltfRuntime.scene);
  905. }
  906. if (!skins.babylonSkeleton) {
  907. return newSkeleton;
  908. }
  909. // Find the root bones
  910. var nodesToRoot = [];
  911. var nodesToRootToAdd = [];
  912. getNodesToRoot(gltfRuntime, newSkeleton, skins, nodesToRoot);
  913. newSkeleton.bones = [];
  914. // Joints
  915. for (var i = 0; i < skins.jointNames.length; i++) {
  916. var jointNode = getJointNode(gltfRuntime, skins.jointNames[i]);
  917. if (!jointNode) {
  918. continue;
  919. }
  920. var node = jointNode.node;
  921. if (!node) {
  922. BABYLON.Tools.Warn("Joint named " + skins.jointNames[i] + " does not exist");
  923. continue;
  924. }
  925. var id = jointNode.id;
  926. // Optimize, if the bone already exists...
  927. var existingBone = gltfRuntime.scene.getBoneByID(id);
  928. if (existingBone) {
  929. newSkeleton.bones.push(existingBone);
  930. continue;
  931. }
  932. // Search for parent bone
  933. var foundBone = false;
  934. var parentBone = null;
  935. for (var j = 0; j < i; j++) {
  936. var jointNode_1 = getJointNode(gltfRuntime, skins.jointNames[j]);
  937. if (!jointNode_1) {
  938. continue;
  939. }
  940. var joint = jointNode_1.node;
  941. if (!joint) {
  942. BABYLON.Tools.Warn("Joint named " + skins.jointNames[j] + " does not exist when looking for parent");
  943. continue;
  944. }
  945. var children = joint.children;
  946. if (!children) {
  947. continue;
  948. }
  949. foundBone = false;
  950. for (var k = 0; k < children.length; k++) {
  951. if (children[k] === id) {
  952. parentBone = getParentBone(gltfRuntime, skins, skins.jointNames[j], newSkeleton);
  953. foundBone = true;
  954. break;
  955. }
  956. }
  957. if (foundBone) {
  958. break;
  959. }
  960. }
  961. // Create bone
  962. var mat = configureBoneTransformation(node);
  963. if (!parentBone && nodesToRoot.length > 0) {
  964. parentBone = getNodeToRoot(nodesToRoot, id);
  965. if (parentBone) {
  966. if (nodesToRootToAdd.indexOf(parentBone) === -1) {
  967. nodesToRootToAdd.push(parentBone);
  968. }
  969. }
  970. }
  971. var bone = new BABYLON.Bone(node.jointName || "", newSkeleton, parentBone, mat);
  972. bone.id = id;
  973. }
  974. // Polish
  975. var bones = newSkeleton.bones;
  976. newSkeleton.bones = [];
  977. for (var i = 0; i < skins.jointNames.length; i++) {
  978. var jointNode = getJointNode(gltfRuntime, skins.jointNames[i]);
  979. if (!jointNode) {
  980. continue;
  981. }
  982. for (var j = 0; j < bones.length; j++) {
  983. if (bones[j].id === jointNode.id) {
  984. newSkeleton.bones.push(bones[j]);
  985. break;
  986. }
  987. }
  988. }
  989. newSkeleton.prepare();
  990. // Finish
  991. for (var i = 0; i < nodesToRootToAdd.length; i++) {
  992. newSkeleton.bones.push(nodesToRootToAdd[i]);
  993. }
  994. return newSkeleton;
  995. };
  996. /**
  997. * Imports a mesh and its geometries
  998. */
  999. var importMesh = function (gltfRuntime, node, meshes, id, newMesh) {
  1000. if (!newMesh) {
  1001. newMesh = new BABYLON.Mesh(node.name || "", gltfRuntime.scene);
  1002. newMesh.id = id;
  1003. }
  1004. if (!node.babylonNode) {
  1005. return newMesh;
  1006. }
  1007. var subMaterials = [];
  1008. var vertexData = new BABYLON.VertexData();
  1009. var geometry = new BABYLON.Geometry(id, gltfRuntime.scene, vertexData, false, newMesh);
  1010. var verticesStarts = new Array();
  1011. var verticesCounts = new Array();
  1012. var indexStarts = new Array();
  1013. var indexCounts = new Array();
  1014. for (var meshIndex = 0; meshIndex < meshes.length; meshIndex++) {
  1015. var meshID = meshes[meshIndex];
  1016. var mesh = gltfRuntime.meshes[meshID];
  1017. if (!mesh) {
  1018. continue;
  1019. }
  1020. // Positions, normals and UVs
  1021. for (var i = 0; i < mesh.primitives.length; i++) {
  1022. // Temporary vertex data
  1023. var tempVertexData = new BABYLON.VertexData();
  1024. var primitive = mesh.primitives[i];
  1025. if (primitive.mode !== 4) {
  1026. // continue;
  1027. }
  1028. var attributes = primitive.attributes;
  1029. var accessor = null;
  1030. var buffer = null;
  1031. // Set positions, normal and uvs
  1032. for (var semantic in attributes) {
  1033. // Link accessor and buffer view
  1034. accessor = gltfRuntime.accessors[attributes[semantic]];
  1035. buffer = GLTF1.GLTFUtils.GetBufferFromAccessor(gltfRuntime, accessor);
  1036. if (semantic === "NORMAL") {
  1037. tempVertexData.normals = new Float32Array(buffer.length);
  1038. tempVertexData.normals.set(buffer);
  1039. }
  1040. else if (semantic === "POSITION") {
  1041. if (BABYLON.GLTFFileLoader.HomogeneousCoordinates) {
  1042. tempVertexData.positions = new Float32Array(buffer.length - buffer.length / 4);
  1043. for (var j = 0; j < buffer.length; j += 4) {
  1044. tempVertexData.positions[j] = buffer[j];
  1045. tempVertexData.positions[j + 1] = buffer[j + 1];
  1046. tempVertexData.positions[j + 2] = buffer[j + 2];
  1047. }
  1048. }
  1049. else {
  1050. tempVertexData.positions = new Float32Array(buffer.length);
  1051. tempVertexData.positions.set(buffer);
  1052. }
  1053. verticesCounts.push(tempVertexData.positions.length);
  1054. }
  1055. else if (semantic.indexOf("TEXCOORD_") !== -1) {
  1056. var channel = Number(semantic.split("_")[1]);
  1057. var uvKind = BABYLON.VertexBuffer.UVKind + (channel === 0 ? "" : (channel + 1));
  1058. var uvs = new Float32Array(buffer.length);
  1059. uvs.set(buffer);
  1060. normalizeUVs(uvs);
  1061. tempVertexData.set(uvs, uvKind);
  1062. }
  1063. else if (semantic === "JOINT") {
  1064. tempVertexData.matricesIndices = new Float32Array(buffer.length);
  1065. tempVertexData.matricesIndices.set(buffer);
  1066. }
  1067. else if (semantic === "WEIGHT") {
  1068. tempVertexData.matricesWeights = new Float32Array(buffer.length);
  1069. tempVertexData.matricesWeights.set(buffer);
  1070. }
  1071. else if (semantic === "COLOR") {
  1072. tempVertexData.colors = new Float32Array(buffer.length);
  1073. tempVertexData.colors.set(buffer);
  1074. }
  1075. }
  1076. // Indices
  1077. accessor = gltfRuntime.accessors[primitive.indices];
  1078. if (accessor) {
  1079. buffer = GLTF1.GLTFUtils.GetBufferFromAccessor(gltfRuntime, accessor);
  1080. tempVertexData.indices = new Int32Array(buffer.length);
  1081. tempVertexData.indices.set(buffer);
  1082. indexCounts.push(tempVertexData.indices.length);
  1083. }
  1084. else {
  1085. // Set indices on the fly
  1086. var indices = [];
  1087. for (var j = 0; j < tempVertexData.positions.length / 3; j++) {
  1088. indices.push(j);
  1089. }
  1090. tempVertexData.indices = new Int32Array(indices);
  1091. indexCounts.push(tempVertexData.indices.length);
  1092. }
  1093. vertexData.merge(tempVertexData);
  1094. // Sub material
  1095. var material_1 = gltfRuntime.scene.getMaterialByID(primitive.material);
  1096. subMaterials.push(material_1 === null ? GLTF1.GLTFUtils.GetDefaultMaterial(gltfRuntime.scene) : material_1);
  1097. // Update vertices start and index start
  1098. verticesStarts.push(verticesStarts.length === 0 ? 0 : verticesStarts[verticesStarts.length - 1] + verticesCounts[verticesCounts.length - 2]);
  1099. indexStarts.push(indexStarts.length === 0 ? 0 : indexStarts[indexStarts.length - 1] + indexCounts[indexCounts.length - 2]);
  1100. }
  1101. }
  1102. var material;
  1103. if (subMaterials.length > 1) {
  1104. material = new BABYLON.MultiMaterial("multimat" + id, gltfRuntime.scene);
  1105. material.subMaterials = subMaterials;
  1106. }
  1107. else {
  1108. material = new BABYLON.StandardMaterial("multimat" + id, gltfRuntime.scene);
  1109. }
  1110. if (subMaterials.length === 1) {
  1111. material = subMaterials[0];
  1112. }
  1113. if (!newMesh.material) {
  1114. newMesh.material = material;
  1115. }
  1116. // Apply geometry
  1117. geometry.setAllVerticesData(vertexData, false);
  1118. newMesh.computeWorldMatrix(true);
  1119. // Apply submeshes
  1120. newMesh.subMeshes = [];
  1121. var index = 0;
  1122. for (var meshIndex = 0; meshIndex < meshes.length; meshIndex++) {
  1123. var meshID = meshes[meshIndex];
  1124. var mesh = gltfRuntime.meshes[meshID];
  1125. if (!mesh) {
  1126. continue;
  1127. }
  1128. for (var i = 0; i < mesh.primitives.length; i++) {
  1129. if (mesh.primitives[i].mode !== 4) {
  1130. //continue;
  1131. }
  1132. BABYLON.SubMesh.AddToMesh(index, verticesStarts[index], verticesCounts[index], indexStarts[index], indexCounts[index], newMesh, newMesh, true);
  1133. index++;
  1134. }
  1135. }
  1136. // Finish
  1137. return newMesh;
  1138. };
  1139. /**
  1140. * Configure node transformation from position, rotation and scaling
  1141. */
  1142. var configureNode = function (newNode, position, rotation, scaling) {
  1143. if (newNode.position) {
  1144. newNode.position = position;
  1145. }
  1146. if (newNode.rotationQuaternion || newNode.rotation) {
  1147. newNode.rotationQuaternion = rotation;
  1148. }
  1149. if (newNode.scaling) {
  1150. newNode.scaling = scaling;
  1151. }
  1152. };
  1153. /**
  1154. * Configures node from transformation matrix
  1155. */
  1156. var configureNodeFromMatrix = function (newNode, node, parent) {
  1157. if (node.matrix) {
  1158. var position = new BABYLON.Vector3(0, 0, 0);
  1159. var rotation = new BABYLON.Quaternion();
  1160. var scaling = new BABYLON.Vector3(0, 0, 0);
  1161. var mat = BABYLON.Matrix.FromArray(node.matrix);
  1162. mat.decompose(scaling, rotation, position);
  1163. configureNode(newNode, position, rotation, scaling);
  1164. }
  1165. else if (node.translation && node.rotation && node.scale) {
  1166. configureNode(newNode, BABYLON.Vector3.FromArray(node.translation), BABYLON.Quaternion.FromArray(node.rotation), BABYLON.Vector3.FromArray(node.scale));
  1167. }
  1168. newNode.computeWorldMatrix(true);
  1169. };
  1170. /**
  1171. * Imports a node
  1172. */
  1173. var importNode = function (gltfRuntime, node, id, parent) {
  1174. var lastNode = null;
  1175. if (gltfRuntime.importOnlyMeshes && (node.skin || node.meshes)) {
  1176. if (gltfRuntime.importMeshesNames && gltfRuntime.importMeshesNames.length > 0 && gltfRuntime.importMeshesNames.indexOf(node.name || "") === -1) {
  1177. return null;
  1178. }
  1179. }
  1180. // Meshes
  1181. if (node.skin) {
  1182. if (node.meshes) {
  1183. var skin = gltfRuntime.skins[node.skin];
  1184. var newMesh = importMesh(gltfRuntime, node, node.meshes, id, node.babylonNode);
  1185. newMesh.skeleton = gltfRuntime.scene.getLastSkeletonByID(node.skin);
  1186. if (newMesh.skeleton === null) {
  1187. newMesh.skeleton = importSkeleton(gltfRuntime, skin, newMesh, skin.babylonSkeleton, node.skin);
  1188. if (!skin.babylonSkeleton) {
  1189. skin.babylonSkeleton = newMesh.skeleton;
  1190. }
  1191. }
  1192. lastNode = newMesh;
  1193. }
  1194. }
  1195. else if (node.meshes) {
  1196. /**
  1197. * Improve meshes property
  1198. */
  1199. var newMesh = importMesh(gltfRuntime, node, node.mesh ? [node.mesh] : node.meshes, id, node.babylonNode);
  1200. lastNode = newMesh;
  1201. }
  1202. else if (node.light && !node.babylonNode && !gltfRuntime.importOnlyMeshes) {
  1203. var light = gltfRuntime.lights[node.light];
  1204. if (light) {
  1205. if (light.type === "ambient") {
  1206. var ambienLight = light[light.type];
  1207. var hemiLight = new BABYLON.HemisphericLight(node.light, BABYLON.Vector3.Zero(), gltfRuntime.scene);
  1208. hemiLight.name = node.name || "";
  1209. if (ambienLight.color) {
  1210. hemiLight.diffuse = BABYLON.Color3.FromArray(ambienLight.color);
  1211. }
  1212. lastNode = hemiLight;
  1213. }
  1214. else if (light.type === "directional") {
  1215. var directionalLight = light[light.type];
  1216. var dirLight = new BABYLON.DirectionalLight(node.light, BABYLON.Vector3.Zero(), gltfRuntime.scene);
  1217. dirLight.name = node.name || "";
  1218. if (directionalLight.color) {
  1219. dirLight.diffuse = BABYLON.Color3.FromArray(directionalLight.color);
  1220. }
  1221. lastNode = dirLight;
  1222. }
  1223. else if (light.type === "point") {
  1224. var pointLight = light[light.type];
  1225. var ptLight = new BABYLON.PointLight(node.light, BABYLON.Vector3.Zero(), gltfRuntime.scene);
  1226. ptLight.name = node.name || "";
  1227. if (pointLight.color) {
  1228. ptLight.diffuse = BABYLON.Color3.FromArray(pointLight.color);
  1229. }
  1230. lastNode = ptLight;
  1231. }
  1232. else if (light.type === "spot") {
  1233. var spotLight = light[light.type];
  1234. var spLight = new BABYLON.SpotLight(node.light, BABYLON.Vector3.Zero(), BABYLON.Vector3.Zero(), 0, 0, gltfRuntime.scene);
  1235. spLight.name = node.name || "";
  1236. if (spotLight.color) {
  1237. spLight.diffuse = BABYLON.Color3.FromArray(spotLight.color);
  1238. }
  1239. if (spotLight.fallOfAngle) {
  1240. spLight.angle = spotLight.fallOfAngle;
  1241. }
  1242. if (spotLight.fallOffExponent) {
  1243. spLight.exponent = spotLight.fallOffExponent;
  1244. }
  1245. lastNode = spLight;
  1246. }
  1247. }
  1248. }
  1249. else if (node.camera && !node.babylonNode && !gltfRuntime.importOnlyMeshes) {
  1250. var camera = gltfRuntime.cameras[node.camera];
  1251. if (camera) {
  1252. if (camera.type === "orthographic") {
  1253. var orthoCamera = new BABYLON.FreeCamera(node.camera, BABYLON.Vector3.Zero(), gltfRuntime.scene);
  1254. orthoCamera.name = node.name || "";
  1255. orthoCamera.mode = BABYLON.Camera.ORTHOGRAPHIC_CAMERA;
  1256. orthoCamera.attachControl(gltfRuntime.scene.getEngine().getRenderingCanvas());
  1257. lastNode = orthoCamera;
  1258. }
  1259. else if (camera.type === "perspective") {
  1260. var perspectiveCamera = camera[camera.type];
  1261. var persCamera = new BABYLON.FreeCamera(node.camera, BABYLON.Vector3.Zero(), gltfRuntime.scene);
  1262. persCamera.name = node.name || "";
  1263. persCamera.attachControl(gltfRuntime.scene.getEngine().getRenderingCanvas());
  1264. if (!perspectiveCamera.aspectRatio) {
  1265. perspectiveCamera.aspectRatio = gltfRuntime.scene.getEngine().getRenderWidth() / gltfRuntime.scene.getEngine().getRenderHeight();
  1266. }
  1267. if (perspectiveCamera.znear && perspectiveCamera.zfar) {
  1268. persCamera.maxZ = perspectiveCamera.zfar;
  1269. persCamera.minZ = perspectiveCamera.znear;
  1270. }
  1271. lastNode = persCamera;
  1272. }
  1273. }
  1274. }
  1275. // Empty node
  1276. if (!node.jointName) {
  1277. if (node.babylonNode) {
  1278. return node.babylonNode;
  1279. }
  1280. else if (lastNode === null) {
  1281. var dummy = new BABYLON.Mesh(node.name || "", gltfRuntime.scene);
  1282. node.babylonNode = dummy;
  1283. lastNode = dummy;
  1284. }
  1285. }
  1286. if (lastNode !== null) {
  1287. if (node.matrix && lastNode instanceof BABYLON.Mesh) {
  1288. configureNodeFromMatrix(lastNode, node, parent);
  1289. }
  1290. else {
  1291. var translation = node.translation || [0, 0, 0];
  1292. var rotation = node.rotation || [0, 0, 0, 1];
  1293. var scale = node.scale || [1, 1, 1];
  1294. configureNode(lastNode, BABYLON.Vector3.FromArray(translation), BABYLON.Quaternion.FromArray(rotation), BABYLON.Vector3.FromArray(scale));
  1295. }
  1296. lastNode.updateCache(true);
  1297. node.babylonNode = lastNode;
  1298. }
  1299. return lastNode;
  1300. };
  1301. /**
  1302. * Traverses nodes and creates them
  1303. */
  1304. var traverseNodes = function (gltfRuntime, id, parent, meshIncluded) {
  1305. if (meshIncluded === void 0) { meshIncluded = false; }
  1306. var node = gltfRuntime.nodes[id];
  1307. var newNode = null;
  1308. if (gltfRuntime.importOnlyMeshes && !meshIncluded && gltfRuntime.importMeshesNames) {
  1309. if (gltfRuntime.importMeshesNames.indexOf(node.name || "") !== -1 || gltfRuntime.importMeshesNames.length === 0) {
  1310. meshIncluded = true;
  1311. }
  1312. else {
  1313. meshIncluded = false;
  1314. }
  1315. }
  1316. else {
  1317. meshIncluded = true;
  1318. }
  1319. if (!node.jointName && meshIncluded) {
  1320. newNode = importNode(gltfRuntime, node, id, parent);
  1321. if (newNode !== null) {
  1322. newNode.id = id;
  1323. newNode.parent = parent;
  1324. }
  1325. }
  1326. if (node.children) {
  1327. for (var i = 0; i < node.children.length; i++) {
  1328. traverseNodes(gltfRuntime, node.children[i], newNode, meshIncluded);
  1329. }
  1330. }
  1331. };
  1332. /**
  1333. * do stuff after buffers, shaders are loaded (e.g. hook up materials, load animations, etc.)
  1334. */
  1335. var postLoad = function (gltfRuntime) {
  1336. // Nodes
  1337. var currentScene = gltfRuntime.currentScene;
  1338. if (currentScene) {
  1339. for (var i = 0; i < currentScene.nodes.length; i++) {
  1340. traverseNodes(gltfRuntime, currentScene.nodes[i], null);
  1341. }
  1342. }
  1343. else {
  1344. for (var thing in gltfRuntime.scenes) {
  1345. currentScene = gltfRuntime.scenes[thing];
  1346. for (var i = 0; i < currentScene.nodes.length; i++) {
  1347. traverseNodes(gltfRuntime, currentScene.nodes[i], null);
  1348. }
  1349. }
  1350. }
  1351. // Set animations
  1352. loadAnimations(gltfRuntime);
  1353. for (var i = 0; i < gltfRuntime.scene.skeletons.length; i++) {
  1354. var skeleton = gltfRuntime.scene.skeletons[i];
  1355. gltfRuntime.scene.beginAnimation(skeleton, 0, Number.MAX_VALUE, true, 1.0);
  1356. }
  1357. };
  1358. /**
  1359. * onBind shaderrs callback to set uniforms and matrices
  1360. */
  1361. var onBindShaderMaterial = function (mesh, gltfRuntime, unTreatedUniforms, shaderMaterial, technique, material, onSuccess) {
  1362. var materialValues = material.values || technique.parameters;
  1363. for (var unif in unTreatedUniforms) {
  1364. var uniform = unTreatedUniforms[unif];
  1365. var type = uniform.type;
  1366. if (type === GLTF1.EParameterType.FLOAT_MAT2 || type === GLTF1.EParameterType.FLOAT_MAT3 || type === GLTF1.EParameterType.FLOAT_MAT4) {
  1367. if (uniform.semantic && !uniform.source && !uniform.node) {
  1368. GLTF1.GLTFUtils.SetMatrix(gltfRuntime.scene, mesh, uniform, unif, shaderMaterial.getEffect());
  1369. }
  1370. else if (uniform.semantic && (uniform.source || uniform.node)) {
  1371. var source = gltfRuntime.scene.getNodeByName(uniform.source || uniform.node || "");
  1372. if (source === null) {
  1373. source = gltfRuntime.scene.getNodeByID(uniform.source || uniform.node || "");
  1374. }
  1375. if (source === null) {
  1376. continue;
  1377. }
  1378. GLTF1.GLTFUtils.SetMatrix(gltfRuntime.scene, source, uniform, unif, shaderMaterial.getEffect());
  1379. }
  1380. }
  1381. else {
  1382. var value = materialValues[technique.uniforms[unif]];
  1383. if (!value) {
  1384. continue;
  1385. }
  1386. if (type === GLTF1.EParameterType.SAMPLER_2D) {
  1387. var texture = gltfRuntime.textures[material.values ? value : uniform.value].babylonTexture;
  1388. if (texture === null || texture === undefined) {
  1389. continue;
  1390. }
  1391. shaderMaterial.getEffect().setTexture(unif, texture);
  1392. }
  1393. else {
  1394. GLTF1.GLTFUtils.SetUniform((shaderMaterial.getEffect()), unif, value, type);
  1395. }
  1396. }
  1397. }
  1398. onSuccess(shaderMaterial);
  1399. };
  1400. /**
  1401. * Prepare uniforms to send the only one time
  1402. * Loads the appropriate textures
  1403. */
  1404. var prepareShaderMaterialUniforms = function (gltfRuntime, shaderMaterial, technique, material, unTreatedUniforms) {
  1405. var materialValues = material.values || technique.parameters;
  1406. var techniqueUniforms = technique.uniforms;
  1407. /**
  1408. * Prepare values here (not matrices)
  1409. */
  1410. for (var unif in unTreatedUniforms) {
  1411. var uniform = unTreatedUniforms[unif];
  1412. var type = uniform.type;
  1413. var value = materialValues[techniqueUniforms[unif]];
  1414. if (value === undefined) {
  1415. // In case the value is the same for all materials
  1416. value = uniform.value;
  1417. }
  1418. if (!value) {
  1419. continue;
  1420. }
  1421. var onLoadTexture = function (uniformName) {
  1422. return function (texture) {
  1423. if (uniform.value && uniformName) {
  1424. // Static uniform
  1425. shaderMaterial.setTexture(uniformName, texture);
  1426. delete unTreatedUniforms[uniformName];
  1427. }
  1428. };
  1429. };
  1430. // Texture (sampler2D)
  1431. if (type === GLTF1.EParameterType.SAMPLER_2D) {
  1432. GLTF1.GLTFLoaderExtension.LoadTextureAsync(gltfRuntime, material.values ? value : uniform.value, onLoadTexture(unif), function () { return onLoadTexture(null); });
  1433. }
  1434. else {
  1435. if (uniform.value && GLTF1.GLTFUtils.SetUniform(shaderMaterial, unif, material.values ? value : uniform.value, type)) {
  1436. // Static uniform
  1437. delete unTreatedUniforms[unif];
  1438. }
  1439. }
  1440. }
  1441. };
  1442. /**
  1443. * Shader compilation failed
  1444. */
  1445. var onShaderCompileError = function (program, shaderMaterial, onError) {
  1446. return function (effect, error) {
  1447. shaderMaterial.dispose(true);
  1448. onError("Cannot compile program named " + program.name + ". Error: " + error + ". Default material will be applied");
  1449. };
  1450. };
  1451. /**
  1452. * Shader compilation success
  1453. */
  1454. var onShaderCompileSuccess = function (gltfRuntime, shaderMaterial, technique, material, unTreatedUniforms, onSuccess) {
  1455. return function (_) {
  1456. prepareShaderMaterialUniforms(gltfRuntime, shaderMaterial, technique, material, unTreatedUniforms);
  1457. shaderMaterial.onBind = function (mesh) {
  1458. onBindShaderMaterial(mesh, gltfRuntime, unTreatedUniforms, shaderMaterial, technique, material, onSuccess);
  1459. };
  1460. };
  1461. };
  1462. /**
  1463. * Returns the appropriate uniform if already handled by babylon
  1464. */
  1465. var parseShaderUniforms = function (tokenizer, technique, unTreatedUniforms) {
  1466. for (var unif in technique.uniforms) {
  1467. var uniform = technique.uniforms[unif];
  1468. var uniformParameter = technique.parameters[uniform];
  1469. if (tokenizer.currentIdentifier === unif) {
  1470. if (uniformParameter.semantic && !uniformParameter.source && !uniformParameter.node) {
  1471. var transformIndex = glTFTransforms.indexOf(uniformParameter.semantic);
  1472. if (transformIndex !== -1) {
  1473. delete unTreatedUniforms[unif];
  1474. return babylonTransforms[transformIndex];
  1475. }
  1476. }
  1477. }
  1478. }
  1479. return tokenizer.currentIdentifier;
  1480. };
  1481. /**
  1482. * All shaders loaded. Create materials one by one
  1483. */
  1484. var importMaterials = function (gltfRuntime) {
  1485. // Create materials
  1486. for (var mat in gltfRuntime.materials) {
  1487. GLTF1.GLTFLoaderExtension.LoadMaterialAsync(gltfRuntime, mat, function (material) { }, function () { });
  1488. }
  1489. };
  1490. /**
  1491. * Implementation of the base glTF spec
  1492. */
  1493. var GLTFLoaderBase = /** @class */ (function () {
  1494. function GLTFLoaderBase() {
  1495. }
  1496. GLTFLoaderBase.CreateRuntime = function (parsedData, scene, rootUrl) {
  1497. var gltfRuntime = {
  1498. extensions: {},
  1499. accessors: {},
  1500. buffers: {},
  1501. bufferViews: {},
  1502. meshes: {},
  1503. lights: {},
  1504. cameras: {},
  1505. nodes: {},
  1506. images: {},
  1507. textures: {},
  1508. shaders: {},
  1509. programs: {},
  1510. samplers: {},
  1511. techniques: {},
  1512. materials: {},
  1513. animations: {},
  1514. skins: {},
  1515. extensionsUsed: [],
  1516. scenes: {},
  1517. buffersCount: 0,
  1518. shaderscount: 0,
  1519. scene: scene,
  1520. rootUrl: rootUrl,
  1521. loadedBufferCount: 0,
  1522. loadedBufferViews: {},
  1523. loadedShaderCount: 0,
  1524. importOnlyMeshes: false,
  1525. dummyNodes: []
  1526. };
  1527. // Parse
  1528. if (parsedData.extensions) {
  1529. parseObject(parsedData.extensions, "extensions", gltfRuntime);
  1530. }
  1531. if (parsedData.extensionsUsed) {
  1532. parseObject(parsedData.extensionsUsed, "extensionsUsed", gltfRuntime);
  1533. }
  1534. if (parsedData.buffers) {
  1535. parseBuffers(parsedData.buffers, gltfRuntime);
  1536. }
  1537. if (parsedData.bufferViews) {
  1538. parseObject(parsedData.bufferViews, "bufferViews", gltfRuntime);
  1539. }
  1540. if (parsedData.accessors) {
  1541. parseObject(parsedData.accessors, "accessors", gltfRuntime);
  1542. }
  1543. if (parsedData.meshes) {
  1544. parseObject(parsedData.meshes, "meshes", gltfRuntime);
  1545. }
  1546. if (parsedData.lights) {
  1547. parseObject(parsedData.lights, "lights", gltfRuntime);
  1548. }
  1549. if (parsedData.cameras) {
  1550. parseObject(parsedData.cameras, "cameras", gltfRuntime);
  1551. }
  1552. if (parsedData.nodes) {
  1553. parseObject(parsedData.nodes, "nodes", gltfRuntime);
  1554. }
  1555. if (parsedData.images) {
  1556. parseObject(parsedData.images, "images", gltfRuntime);
  1557. }
  1558. if (parsedData.textures) {
  1559. parseObject(parsedData.textures, "textures", gltfRuntime);
  1560. }
  1561. if (parsedData.shaders) {
  1562. parseShaders(parsedData.shaders, gltfRuntime);
  1563. }
  1564. if (parsedData.programs) {
  1565. parseObject(parsedData.programs, "programs", gltfRuntime);
  1566. }
  1567. if (parsedData.samplers) {
  1568. parseObject(parsedData.samplers, "samplers", gltfRuntime);
  1569. }
  1570. if (parsedData.techniques) {
  1571. parseObject(parsedData.techniques, "techniques", gltfRuntime);
  1572. }
  1573. if (parsedData.materials) {
  1574. parseObject(parsedData.materials, "materials", gltfRuntime);
  1575. }
  1576. if (parsedData.animations) {
  1577. parseObject(parsedData.animations, "animations", gltfRuntime);
  1578. }
  1579. if (parsedData.skins) {
  1580. parseObject(parsedData.skins, "skins", gltfRuntime);
  1581. }
  1582. if (parsedData.scenes) {
  1583. gltfRuntime.scenes = parsedData.scenes;
  1584. }
  1585. if (parsedData.scene && parsedData.scenes) {
  1586. gltfRuntime.currentScene = parsedData.scenes[parsedData.scene];
  1587. }
  1588. return gltfRuntime;
  1589. };
  1590. GLTFLoaderBase.LoadBufferAsync = function (gltfRuntime, id, onSuccess, onError, onProgress) {
  1591. var buffer = gltfRuntime.buffers[id];
  1592. if (GLTF1.GLTFUtils.IsBase64(buffer.uri)) {
  1593. setTimeout(function () { return onSuccess(new Uint8Array(GLTF1.GLTFUtils.DecodeBase64(buffer.uri))); });
  1594. }
  1595. else {
  1596. BABYLON.Tools.LoadFile(gltfRuntime.rootUrl + buffer.uri, function (data) { return onSuccess(new Uint8Array(data)); }, onProgress, undefined, true, function (request) {
  1597. if (request) {
  1598. onError(request.status + " " + request.statusText);
  1599. }
  1600. });
  1601. }
  1602. };
  1603. GLTFLoaderBase.LoadTextureBufferAsync = function (gltfRuntime, id, onSuccess, onError) {
  1604. var texture = gltfRuntime.textures[id];
  1605. if (!texture || !texture.source) {
  1606. onError("");
  1607. return;
  1608. }
  1609. if (texture.babylonTexture) {
  1610. onSuccess(null);
  1611. return;
  1612. }
  1613. var source = gltfRuntime.images[texture.source];
  1614. if (GLTF1.GLTFUtils.IsBase64(source.uri)) {
  1615. setTimeout(function () { return onSuccess(new Uint8Array(GLTF1.GLTFUtils.DecodeBase64(source.uri))); });
  1616. }
  1617. else {
  1618. BABYLON.Tools.LoadFile(gltfRuntime.rootUrl + source.uri, function (data) { return onSuccess(new Uint8Array(data)); }, undefined, undefined, true, function (request) {
  1619. if (request) {
  1620. onError(request.status + " " + request.statusText);
  1621. }
  1622. });
  1623. }
  1624. };
  1625. GLTFLoaderBase.CreateTextureAsync = function (gltfRuntime, id, buffer, onSuccess, onError) {
  1626. var texture = gltfRuntime.textures[id];
  1627. if (texture.babylonTexture) {
  1628. onSuccess(texture.babylonTexture);
  1629. return;
  1630. }
  1631. var sampler = gltfRuntime.samplers[texture.sampler];
  1632. var createMipMaps = (sampler.minFilter === GLTF1.ETextureFilterType.NEAREST_MIPMAP_NEAREST) ||
  1633. (sampler.minFilter === GLTF1.ETextureFilterType.NEAREST_MIPMAP_LINEAR) ||
  1634. (sampler.minFilter === GLTF1.ETextureFilterType.LINEAR_MIPMAP_NEAREST) ||
  1635. (sampler.minFilter === GLTF1.ETextureFilterType.LINEAR_MIPMAP_LINEAR);
  1636. var samplingMode = BABYLON.Texture.BILINEAR_SAMPLINGMODE;
  1637. var blob = new Blob([buffer]);
  1638. var blobURL = URL.createObjectURL(blob);
  1639. var revokeBlobURL = function () { return URL.revokeObjectURL(blobURL); };
  1640. var newTexture = new BABYLON.Texture(blobURL, gltfRuntime.scene, !createMipMaps, true, samplingMode, revokeBlobURL, revokeBlobURL);
  1641. if (sampler.wrapS !== undefined) {
  1642. newTexture.wrapU = GLTF1.GLTFUtils.GetWrapMode(sampler.wrapS);
  1643. }
  1644. if (sampler.wrapT !== undefined) {
  1645. newTexture.wrapV = GLTF1.GLTFUtils.GetWrapMode(sampler.wrapT);
  1646. }
  1647. newTexture.name = id;
  1648. texture.babylonTexture = newTexture;
  1649. onSuccess(newTexture);
  1650. };
  1651. GLTFLoaderBase.LoadShaderStringAsync = function (gltfRuntime, id, onSuccess, onError) {
  1652. var shader = gltfRuntime.shaders[id];
  1653. if (GLTF1.GLTFUtils.IsBase64(shader.uri)) {
  1654. var shaderString = atob(shader.uri.split(",")[1]);
  1655. onSuccess(shaderString);
  1656. }
  1657. else {
  1658. BABYLON.Tools.LoadFile(gltfRuntime.rootUrl + shader.uri, onSuccess, undefined, undefined, false, function (request) {
  1659. if (request) {
  1660. onError(request.status + " " + request.statusText);
  1661. }
  1662. });
  1663. }
  1664. };
  1665. GLTFLoaderBase.LoadMaterialAsync = function (gltfRuntime, id, onSuccess, onError) {
  1666. var material = gltfRuntime.materials[id];
  1667. if (!material.technique) {
  1668. if (onError) {
  1669. onError("No technique found.");
  1670. }
  1671. return;
  1672. }
  1673. var technique = gltfRuntime.techniques[material.technique];
  1674. if (!technique) {
  1675. var defaultMaterial = new BABYLON.StandardMaterial(id, gltfRuntime.scene);
  1676. defaultMaterial.diffuseColor = new BABYLON.Color3(0.5, 0.5, 0.5);
  1677. defaultMaterial.sideOrientation = BABYLON.Material.CounterClockWiseSideOrientation;
  1678. onSuccess(defaultMaterial);
  1679. return;
  1680. }
  1681. var program = gltfRuntime.programs[technique.program];
  1682. var states = technique.states;
  1683. var vertexShader = BABYLON.Effect.ShadersStore[program.vertexShader + "VertexShader"];
  1684. var pixelShader = BABYLON.Effect.ShadersStore[program.fragmentShader + "PixelShader"];
  1685. var newVertexShader = "";
  1686. var newPixelShader = "";
  1687. var vertexTokenizer = new Tokenizer(vertexShader);
  1688. var pixelTokenizer = new Tokenizer(pixelShader);
  1689. var unTreatedUniforms = {};
  1690. var uniforms = [];
  1691. var attributes = [];
  1692. var samplers = [];
  1693. // Fill uniform, sampler2D and attributes
  1694. for (var unif in technique.uniforms) {
  1695. var uniform = technique.uniforms[unif];
  1696. var uniformParameter = technique.parameters[uniform];
  1697. unTreatedUniforms[unif] = uniformParameter;
  1698. if (uniformParameter.semantic && !uniformParameter.node && !uniformParameter.source) {
  1699. var transformIndex = glTFTransforms.indexOf(uniformParameter.semantic);
  1700. if (transformIndex !== -1) {
  1701. uniforms.push(babylonTransforms[transformIndex]);
  1702. delete unTreatedUniforms[unif];
  1703. }
  1704. else {
  1705. uniforms.push(unif);
  1706. }
  1707. }
  1708. else if (uniformParameter.type === GLTF1.EParameterType.SAMPLER_2D) {
  1709. samplers.push(unif);
  1710. }
  1711. else {
  1712. uniforms.push(unif);
  1713. }
  1714. }
  1715. for (var attr in technique.attributes) {
  1716. var attribute = technique.attributes[attr];
  1717. var attributeParameter = technique.parameters[attribute];
  1718. if (attributeParameter.semantic) {
  1719. attributes.push(getAttribute(attributeParameter));
  1720. }
  1721. }
  1722. // Configure vertex shader
  1723. while (!vertexTokenizer.isEnd() && vertexTokenizer.getNextToken()) {
  1724. var tokenType = vertexTokenizer.currentToken;
  1725. if (tokenType !== ETokenType.IDENTIFIER) {
  1726. newVertexShader += vertexTokenizer.currentString;
  1727. continue;
  1728. }
  1729. var foundAttribute = false;
  1730. for (var attr in technique.attributes) {
  1731. var attribute = technique.attributes[attr];
  1732. var attributeParameter = technique.parameters[attribute];
  1733. if (vertexTokenizer.currentIdentifier === attr && attributeParameter.semantic) {
  1734. newVertexShader += getAttribute(attributeParameter);
  1735. foundAttribute = true;
  1736. break;
  1737. }
  1738. }
  1739. if (foundAttribute) {
  1740. continue;
  1741. }
  1742. newVertexShader += parseShaderUniforms(vertexTokenizer, technique, unTreatedUniforms);
  1743. }
  1744. // Configure pixel shader
  1745. while (!pixelTokenizer.isEnd() && pixelTokenizer.getNextToken()) {
  1746. var tokenType = pixelTokenizer.currentToken;
  1747. if (tokenType !== ETokenType.IDENTIFIER) {
  1748. newPixelShader += pixelTokenizer.currentString;
  1749. continue;
  1750. }
  1751. newPixelShader += parseShaderUniforms(pixelTokenizer, technique, unTreatedUniforms);
  1752. }
  1753. // Create shader material
  1754. var shaderPath = {
  1755. vertex: program.vertexShader + id,
  1756. fragment: program.fragmentShader + id
  1757. };
  1758. var options = {
  1759. attributes: attributes,
  1760. uniforms: uniforms,
  1761. samplers: samplers,
  1762. needAlphaBlending: states && states.enable && states.enable.indexOf(3042) !== -1
  1763. };
  1764. BABYLON.Effect.ShadersStore[program.vertexShader + id + "VertexShader"] = newVertexShader;
  1765. BABYLON.Effect.ShadersStore[program.fragmentShader + id + "PixelShader"] = newPixelShader;
  1766. var shaderMaterial = new BABYLON.ShaderMaterial(id, gltfRuntime.scene, shaderPath, options);
  1767. shaderMaterial.onError = onShaderCompileError(program, shaderMaterial, onError);
  1768. shaderMaterial.onCompiled = onShaderCompileSuccess(gltfRuntime, shaderMaterial, technique, material, unTreatedUniforms, onSuccess);
  1769. shaderMaterial.sideOrientation = BABYLON.Material.CounterClockWiseSideOrientation;
  1770. if (states && states.functions) {
  1771. var functions = states.functions;
  1772. if (functions.cullFace && functions.cullFace[0] !== GLTF1.ECullingType.BACK) {
  1773. shaderMaterial.backFaceCulling = false;
  1774. }
  1775. var blendFunc = functions.blendFuncSeparate;
  1776. if (blendFunc) {
  1777. if (blendFunc[0] === GLTF1.EBlendingFunction.SRC_ALPHA && blendFunc[1] === GLTF1.EBlendingFunction.ONE_MINUS_SRC_ALPHA && blendFunc[2] === GLTF1.EBlendingFunction.ONE && blendFunc[3] === GLTF1.EBlendingFunction.ONE) {
  1778. shaderMaterial.alphaMode = BABYLON.Engine.ALPHA_COMBINE;
  1779. }
  1780. else if (blendFunc[0] === GLTF1.EBlendingFunction.ONE && blendFunc[1] === GLTF1.EBlendingFunction.ONE && blendFunc[2] === GLTF1.EBlendingFunction.ZERO && blendFunc[3] === GLTF1.EBlendingFunction.ONE) {
  1781. shaderMaterial.alphaMode = BABYLON.Engine.ALPHA_ONEONE;
  1782. }
  1783. else if (blendFunc[0] === GLTF1.EBlendingFunction.SRC_ALPHA && blendFunc[1] === GLTF1.EBlendingFunction.ONE && blendFunc[2] === GLTF1.EBlendingFunction.ZERO && blendFunc[3] === GLTF1.EBlendingFunction.ONE) {
  1784. shaderMaterial.alphaMode = BABYLON.Engine.ALPHA_ADD;
  1785. }
  1786. else if (blendFunc[0] === GLTF1.EBlendingFunction.ZERO && blendFunc[1] === GLTF1.EBlendingFunction.ONE_MINUS_SRC_COLOR && blendFunc[2] === GLTF1.EBlendingFunction.ONE && blendFunc[3] === GLTF1.EBlendingFunction.ONE) {
  1787. shaderMaterial.alphaMode = BABYLON.Engine.ALPHA_SUBTRACT;
  1788. }
  1789. else if (blendFunc[0] === GLTF1.EBlendingFunction.DST_COLOR && blendFunc[1] === GLTF1.EBlendingFunction.ZERO && blendFunc[2] === GLTF1.EBlendingFunction.ONE && blendFunc[3] === GLTF1.EBlendingFunction.ONE) {
  1790. shaderMaterial.alphaMode = BABYLON.Engine.ALPHA_MULTIPLY;
  1791. }
  1792. else if (blendFunc[0] === GLTF1.EBlendingFunction.SRC_ALPHA && blendFunc[1] === GLTF1.EBlendingFunction.ONE_MINUS_SRC_COLOR && blendFunc[2] === GLTF1.EBlendingFunction.ONE && blendFunc[3] === GLTF1.EBlendingFunction.ONE) {
  1793. shaderMaterial.alphaMode = BABYLON.Engine.ALPHA_MAXIMIZED;
  1794. }
  1795. }
  1796. }
  1797. };
  1798. return GLTFLoaderBase;
  1799. }());
  1800. GLTF1.GLTFLoaderBase = GLTFLoaderBase;
  1801. /**
  1802. * glTF V1 Loader
  1803. */
  1804. var GLTFLoader = /** @class */ (function () {
  1805. function GLTFLoader() {
  1806. // #region Stubs for IGLTFLoader interface
  1807. this.coordinateSystemMode = BABYLON.GLTFLoaderCoordinateSystemMode.AUTO;
  1808. this.animationStartMode = BABYLON.GLTFLoaderAnimationStartMode.FIRST;
  1809. this.compileMaterials = false;
  1810. this.useClipPlane = false;
  1811. this.compileShadowGenerators = false;
  1812. this.onDisposeObservable = new BABYLON.Observable();
  1813. this.onMeshLoadedObservable = new BABYLON.Observable();
  1814. this.onTextureLoadedObservable = new BABYLON.Observable();
  1815. this.onMaterialLoadedObservable = new BABYLON.Observable();
  1816. this.onCompleteObservable = new BABYLON.Observable();
  1817. }
  1818. GLTFLoader.RegisterExtension = function (extension) {
  1819. if (GLTFLoader.Extensions[extension.name]) {
  1820. BABYLON.Tools.Error("Tool with the same name \"" + extension.name + "\" already exists");
  1821. return;
  1822. }
  1823. GLTFLoader.Extensions[extension.name] = extension;
  1824. };
  1825. GLTFLoader.prototype.dispose = function () { };
  1826. // #endregion
  1827. GLTFLoader.prototype.importMeshAsync = function (meshesNames, scene, data, rootUrl, onSuccess, onProgress, onError) {
  1828. var _this = this;
  1829. scene.useRightHandedSystem = true;
  1830. GLTF1.GLTFLoaderExtension.LoadRuntimeAsync(scene, data, rootUrl, function (gltfRuntime) {
  1831. gltfRuntime.importOnlyMeshes = true;
  1832. if (meshesNames === "") {
  1833. gltfRuntime.importMeshesNames = [];
  1834. }
  1835. else if (typeof meshesNames === "string") {
  1836. gltfRuntime.importMeshesNames = [meshesNames];
  1837. }
  1838. else if (meshesNames && !(meshesNames instanceof Array)) {
  1839. gltfRuntime.importMeshesNames = [meshesNames];
  1840. }
  1841. else {
  1842. gltfRuntime.importMeshesNames = [];
  1843. BABYLON.Tools.Warn("Argument meshesNames must be of type string or string[]");
  1844. }
  1845. // Create nodes
  1846. _this._createNodes(gltfRuntime);
  1847. var meshes = new Array();
  1848. var skeletons = new Array();
  1849. // Fill arrays of meshes and skeletons
  1850. for (var nde in gltfRuntime.nodes) {
  1851. var node = gltfRuntime.nodes[nde];
  1852. if (node.babylonNode instanceof BABYLON.AbstractMesh) {
  1853. meshes.push(node.babylonNode);
  1854. }
  1855. }
  1856. for (var skl in gltfRuntime.skins) {
  1857. var skin = gltfRuntime.skins[skl];
  1858. if (skin.babylonSkeleton instanceof BABYLON.Skeleton) {
  1859. skeletons.push(skin.babylonSkeleton);
  1860. }
  1861. }
  1862. // Load buffers, shaders, materials, etc.
  1863. _this._loadBuffersAsync(gltfRuntime, function () {
  1864. _this._loadShadersAsync(gltfRuntime, function () {
  1865. importMaterials(gltfRuntime);
  1866. postLoad(gltfRuntime);
  1867. if (!BABYLON.GLTFFileLoader.IncrementalLoading && onSuccess) {
  1868. onSuccess(meshes, [], skeletons);
  1869. }
  1870. });
  1871. }, onProgress);
  1872. if (BABYLON.GLTFFileLoader.IncrementalLoading && onSuccess) {
  1873. onSuccess(meshes, [], skeletons);
  1874. }
  1875. }, onError);
  1876. return true;
  1877. };
  1878. GLTFLoader.prototype.loadAsync = function (scene, data, rootUrl, onSuccess, onProgress, onError) {
  1879. var _this = this;
  1880. scene.useRightHandedSystem = true;
  1881. GLTF1.GLTFLoaderExtension.LoadRuntimeAsync(scene, data, rootUrl, function (gltfRuntime) {
  1882. // Load runtime extensios
  1883. GLTF1.GLTFLoaderExtension.LoadRuntimeExtensionsAsync(gltfRuntime, function () {
  1884. // Create nodes
  1885. _this._createNodes(gltfRuntime);
  1886. // Load buffers, shaders, materials, etc.
  1887. _this._loadBuffersAsync(gltfRuntime, function () {
  1888. _this._loadShadersAsync(gltfRuntime, function () {
  1889. importMaterials(gltfRuntime);
  1890. postLoad(gltfRuntime);
  1891. if (!BABYLON.GLTFFileLoader.IncrementalLoading) {
  1892. onSuccess();
  1893. }
  1894. });
  1895. });
  1896. if (BABYLON.GLTFFileLoader.IncrementalLoading) {
  1897. onSuccess();
  1898. }
  1899. }, onError);
  1900. }, onError);
  1901. };
  1902. GLTFLoader.prototype._loadShadersAsync = function (gltfRuntime, onload) {
  1903. var hasShaders = false;
  1904. var processShader = function (sha, shader) {
  1905. GLTF1.GLTFLoaderExtension.LoadShaderStringAsync(gltfRuntime, sha, function (shaderString) {
  1906. gltfRuntime.loadedShaderCount++;
  1907. if (shaderString) {
  1908. BABYLON.Effect.ShadersStore[sha + (shader.type === GLTF1.EShaderType.VERTEX ? "VertexShader" : "PixelShader")] = shaderString;
  1909. }
  1910. if (gltfRuntime.loadedShaderCount === gltfRuntime.shaderscount) {
  1911. onload();
  1912. }
  1913. }, function () {
  1914. BABYLON.Tools.Error("Error when loading shader program named " + sha + " located at " + shader.uri);
  1915. });
  1916. };
  1917. for (var sha in gltfRuntime.shaders) {
  1918. hasShaders = true;
  1919. var shader = gltfRuntime.shaders[sha];
  1920. if (shader) {
  1921. processShader.bind(this, sha, shader)();
  1922. }
  1923. else {
  1924. BABYLON.Tools.Error("No shader named: " + sha);
  1925. }
  1926. }
  1927. if (!hasShaders) {
  1928. onload();
  1929. }
  1930. };
  1931. ;
  1932. GLTFLoader.prototype._loadBuffersAsync = function (gltfRuntime, onLoad, onProgress) {
  1933. var hasBuffers = false;
  1934. var processBuffer = function (buf, buffer) {
  1935. GLTF1.GLTFLoaderExtension.LoadBufferAsync(gltfRuntime, buf, function (bufferView) {
  1936. gltfRuntime.loadedBufferCount++;
  1937. if (bufferView) {
  1938. if (bufferView.byteLength != gltfRuntime.buffers[buf].byteLength) {
  1939. BABYLON.Tools.Error("Buffer named " + buf + " is length " + bufferView.byteLength + ". Expected: " + buffer.byteLength); // Improve error message
  1940. }
  1941. gltfRuntime.loadedBufferViews[buf] = bufferView;
  1942. }
  1943. if (gltfRuntime.loadedBufferCount === gltfRuntime.buffersCount) {
  1944. onLoad();
  1945. }
  1946. }, function () {
  1947. BABYLON.Tools.Error("Error when loading buffer named " + buf + " located at " + buffer.uri);
  1948. });
  1949. };
  1950. for (var buf in gltfRuntime.buffers) {
  1951. hasBuffers = true;
  1952. var buffer = gltfRuntime.buffers[buf];
  1953. if (buffer) {
  1954. processBuffer.bind(this, buf, buffer)();
  1955. }
  1956. else {
  1957. BABYLON.Tools.Error("No buffer named: " + buf);
  1958. }
  1959. }
  1960. if (!hasBuffers) {
  1961. onLoad();
  1962. }
  1963. };
  1964. GLTFLoader.prototype._createNodes = function (gltfRuntime) {
  1965. var currentScene = gltfRuntime.currentScene;
  1966. if (currentScene) {
  1967. // Only one scene even if multiple scenes are defined
  1968. for (var i = 0; i < currentScene.nodes.length; i++) {
  1969. traverseNodes(gltfRuntime, currentScene.nodes[i], null);
  1970. }
  1971. }
  1972. else {
  1973. // Load all scenes
  1974. for (var thing in gltfRuntime.scenes) {
  1975. currentScene = gltfRuntime.scenes[thing];
  1976. for (var i = 0; i < currentScene.nodes.length; i++) {
  1977. traverseNodes(gltfRuntime, currentScene.nodes[i], null);
  1978. }
  1979. }
  1980. }
  1981. };
  1982. GLTFLoader.Extensions = {};
  1983. return GLTFLoader;
  1984. }());
  1985. GLTF1.GLTFLoader = GLTFLoader;
  1986. ;
  1987. BABYLON.GLTFFileLoader.CreateGLTFLoaderV1 = function () { return new GLTFLoader(); };
  1988. })(GLTF1 = BABYLON.GLTF1 || (BABYLON.GLTF1 = {}));
  1989. })(BABYLON || (BABYLON = {}));
  1990. //# sourceMappingURL=babylon.glTFLoader.js.map
  1991. /// <reference path="../../../../dist/preview release/babylon.d.ts"/>
  1992. var BABYLON;
  1993. (function (BABYLON) {
  1994. var GLTF1;
  1995. (function (GLTF1) {
  1996. /**
  1997. * Utils functions for GLTF
  1998. */
  1999. var GLTFUtils = /** @class */ (function () {
  2000. function GLTFUtils() {
  2001. }
  2002. /**
  2003. * Sets the given "parameter" matrix
  2004. * @param scene: the {BABYLON.Scene} object
  2005. * @param source: the source node where to pick the matrix
  2006. * @param parameter: the GLTF technique parameter
  2007. * @param uniformName: the name of the shader's uniform
  2008. * @param shaderMaterial: the shader material
  2009. */
  2010. GLTFUtils.SetMatrix = function (scene, source, parameter, uniformName, shaderMaterial) {
  2011. var mat = null;
  2012. if (parameter.semantic === "MODEL") {
  2013. mat = source.getWorldMatrix();
  2014. }
  2015. else if (parameter.semantic === "PROJECTION") {
  2016. mat = scene.getProjectionMatrix();
  2017. }
  2018. else if (parameter.semantic === "VIEW") {
  2019. mat = scene.getViewMatrix();
  2020. }
  2021. else if (parameter.semantic === "MODELVIEWINVERSETRANSPOSE") {
  2022. mat = BABYLON.Matrix.Transpose(source.getWorldMatrix().multiply(scene.getViewMatrix()).invert());
  2023. }
  2024. else if (parameter.semantic === "MODELVIEW") {
  2025. mat = source.getWorldMatrix().multiply(scene.getViewMatrix());
  2026. }
  2027. else if (parameter.semantic === "MODELVIEWPROJECTION") {
  2028. mat = source.getWorldMatrix().multiply(scene.getTransformMatrix());
  2029. }
  2030. else if (parameter.semantic === "MODELINVERSE") {
  2031. mat = source.getWorldMatrix().invert();
  2032. }
  2033. else if (parameter.semantic === "VIEWINVERSE") {
  2034. mat = scene.getViewMatrix().invert();
  2035. }
  2036. else if (parameter.semantic === "PROJECTIONINVERSE") {
  2037. mat = scene.getProjectionMatrix().invert();
  2038. }
  2039. else if (parameter.semantic === "MODELVIEWINVERSE") {
  2040. mat = source.getWorldMatrix().multiply(scene.getViewMatrix()).invert();
  2041. }
  2042. else if (parameter.semantic === "MODELVIEWPROJECTIONINVERSE") {
  2043. mat = source.getWorldMatrix().multiply(scene.getTransformMatrix()).invert();
  2044. }
  2045. else if (parameter.semantic === "MODELINVERSETRANSPOSE") {
  2046. mat = BABYLON.Matrix.Transpose(source.getWorldMatrix().invert());
  2047. }
  2048. else {
  2049. debugger;
  2050. }
  2051. if (mat) {
  2052. switch (parameter.type) {
  2053. case GLTF1.EParameterType.FLOAT_MAT2:
  2054. shaderMaterial.setMatrix2x2(uniformName, BABYLON.Matrix.GetAsMatrix2x2(mat));
  2055. break;
  2056. case GLTF1.EParameterType.FLOAT_MAT3:
  2057. shaderMaterial.setMatrix3x3(uniformName, BABYLON.Matrix.GetAsMatrix3x3(mat));
  2058. break;
  2059. case GLTF1.EParameterType.FLOAT_MAT4:
  2060. shaderMaterial.setMatrix(uniformName, mat);
  2061. break;
  2062. default: break;
  2063. }
  2064. }
  2065. };
  2066. /**
  2067. * Sets the given "parameter" matrix
  2068. * @param shaderMaterial: the shader material
  2069. * @param uniform: the name of the shader's uniform
  2070. * @param value: the value of the uniform
  2071. * @param type: the uniform's type (EParameterType FLOAT, VEC2, VEC3 or VEC4)
  2072. */
  2073. GLTFUtils.SetUniform = function (shaderMaterial, uniform, value, type) {
  2074. switch (type) {
  2075. case GLTF1.EParameterType.FLOAT:
  2076. shaderMaterial.setFloat(uniform, value);
  2077. return true;
  2078. case GLTF1.EParameterType.FLOAT_VEC2:
  2079. shaderMaterial.setVector2(uniform, BABYLON.Vector2.FromArray(value));
  2080. return true;
  2081. case GLTF1.EParameterType.FLOAT_VEC3:
  2082. shaderMaterial.setVector3(uniform, BABYLON.Vector3.FromArray(value));
  2083. return true;
  2084. case GLTF1.EParameterType.FLOAT_VEC4:
  2085. shaderMaterial.setVector4(uniform, BABYLON.Vector4.FromArray(value));
  2086. return true;
  2087. default: return false;
  2088. }
  2089. };
  2090. /**
  2091. * If the uri is a base64 string
  2092. * @param uri: the uri to test
  2093. */
  2094. GLTFUtils.IsBase64 = function (uri) {
  2095. return uri.length < 5 ? false : uri.substr(0, 5) === "data:";
  2096. };
  2097. /**
  2098. * Decode the base64 uri
  2099. * @param uri: the uri to decode
  2100. */
  2101. GLTFUtils.DecodeBase64 = function (uri) {
  2102. var decodedString = atob(uri.split(",")[1]);
  2103. var bufferLength = decodedString.length;
  2104. var bufferView = new Uint8Array(new ArrayBuffer(bufferLength));
  2105. for (var i = 0; i < bufferLength; i++) {
  2106. bufferView[i] = decodedString.charCodeAt(i);
  2107. }
  2108. return bufferView.buffer;
  2109. };
  2110. /**
  2111. * Returns the wrap mode of the texture
  2112. * @param mode: the mode value
  2113. */
  2114. GLTFUtils.GetWrapMode = function (mode) {
  2115. switch (mode) {
  2116. case GLTF1.ETextureWrapMode.CLAMP_TO_EDGE: return BABYLON.Texture.CLAMP_ADDRESSMODE;
  2117. case GLTF1.ETextureWrapMode.MIRRORED_REPEAT: return BABYLON.Texture.MIRROR_ADDRESSMODE;
  2118. case GLTF1.ETextureWrapMode.REPEAT: return BABYLON.Texture.WRAP_ADDRESSMODE;
  2119. default: return BABYLON.Texture.WRAP_ADDRESSMODE;
  2120. }
  2121. };
  2122. /**
  2123. * Returns the byte stride giving an accessor
  2124. * @param accessor: the GLTF accessor objet
  2125. */
  2126. GLTFUtils.GetByteStrideFromType = function (accessor) {
  2127. // Needs this function since "byteStride" isn't requiered in glTF format
  2128. var type = accessor.type;
  2129. switch (type) {
  2130. case "VEC2": return 2;
  2131. case "VEC3": return 3;
  2132. case "VEC4": return 4;
  2133. case "MAT2": return 4;
  2134. case "MAT3": return 9;
  2135. case "MAT4": return 16;
  2136. default: return 1;
  2137. }
  2138. };
  2139. /**
  2140. * Returns the texture filter mode giving a mode value
  2141. * @param mode: the filter mode value
  2142. */
  2143. GLTFUtils.GetTextureFilterMode = function (mode) {
  2144. switch (mode) {
  2145. case GLTF1.ETextureFilterType.LINEAR:
  2146. case GLTF1.ETextureFilterType.LINEAR_MIPMAP_NEAREST:
  2147. case GLTF1.ETextureFilterType.LINEAR_MIPMAP_LINEAR: return BABYLON.Texture.TRILINEAR_SAMPLINGMODE;
  2148. case GLTF1.ETextureFilterType.NEAREST:
  2149. case GLTF1.ETextureFilterType.NEAREST_MIPMAP_NEAREST: return BABYLON.Texture.NEAREST_SAMPLINGMODE;
  2150. default: return BABYLON.Texture.BILINEAR_SAMPLINGMODE;
  2151. }
  2152. };
  2153. GLTFUtils.GetBufferFromBufferView = function (gltfRuntime, bufferView, byteOffset, byteLength, componentType) {
  2154. var byteOffset = bufferView.byteOffset + byteOffset;
  2155. var loadedBufferView = gltfRuntime.loadedBufferViews[bufferView.buffer];
  2156. if (byteOffset + byteLength > loadedBufferView.byteLength) {
  2157. throw new Error("Buffer access is out of range");
  2158. }
  2159. var buffer = loadedBufferView.buffer;
  2160. byteOffset += loadedBufferView.byteOffset;
  2161. switch (componentType) {
  2162. case GLTF1.EComponentType.BYTE: return new Int8Array(buffer, byteOffset, byteLength);
  2163. case GLTF1.EComponentType.UNSIGNED_BYTE: return new Uint8Array(buffer, byteOffset, byteLength);
  2164. case GLTF1.EComponentType.SHORT: return new Int16Array(buffer, byteOffset, byteLength);
  2165. case GLTF1.EComponentType.UNSIGNED_SHORT: return new Uint16Array(buffer, byteOffset, byteLength);
  2166. default: return new Float32Array(buffer, byteOffset, byteLength);
  2167. }
  2168. };
  2169. /**
  2170. * Returns a buffer from its accessor
  2171. * @param gltfRuntime: the GLTF runtime
  2172. * @param accessor: the GLTF accessor
  2173. */
  2174. GLTFUtils.GetBufferFromAccessor = function (gltfRuntime, accessor) {
  2175. var bufferView = gltfRuntime.bufferViews[accessor.bufferView];
  2176. var byteLength = accessor.count * GLTFUtils.GetByteStrideFromType(accessor);
  2177. return GLTFUtils.GetBufferFromBufferView(gltfRuntime, bufferView, accessor.byteOffset, byteLength, accessor.componentType);
  2178. };
  2179. /**
  2180. * Decodes a buffer view into a string
  2181. * @param view: the buffer view
  2182. */
  2183. GLTFUtils.DecodeBufferToText = function (view) {
  2184. var result = "";
  2185. var length = view.byteLength;
  2186. for (var i = 0; i < length; ++i) {
  2187. result += String.fromCharCode(view[i]);
  2188. }
  2189. return result;
  2190. };
  2191. /**
  2192. * Returns the default material of gltf. Related to
  2193. * https://github.com/KhronosGroup/glTF/tree/master/specification/1.0#appendix-a-default-material
  2194. * @param scene: the Babylon.js scene
  2195. */
  2196. GLTFUtils.GetDefaultMaterial = function (scene) {
  2197. if (!GLTFUtils._DefaultMaterial) {
  2198. BABYLON.Effect.ShadersStore["GLTFDefaultMaterialVertexShader"] = [
  2199. "precision highp float;",
  2200. "",
  2201. "uniform mat4 worldView;",
  2202. "uniform mat4 projection;",
  2203. "",
  2204. "attribute vec3 position;",
  2205. "",
  2206. "void main(void)",
  2207. "{",
  2208. " gl_Position = projection * worldView * vec4(position, 1.0);",
  2209. "}"
  2210. ].join("\n");
  2211. BABYLON.Effect.ShadersStore["GLTFDefaultMaterialPixelShader"] = [
  2212. "precision highp float;",
  2213. "",
  2214. "uniform vec4 u_emission;",
  2215. "",
  2216. "void main(void)",
  2217. "{",
  2218. " gl_FragColor = u_emission;",
  2219. "}"
  2220. ].join("\n");
  2221. var shaderPath = {
  2222. vertex: "GLTFDefaultMaterial",
  2223. fragment: "GLTFDefaultMaterial"
  2224. };
  2225. var options = {
  2226. attributes: ["position"],
  2227. uniforms: ["worldView", "projection", "u_emission"],
  2228. samplers: new Array(),
  2229. needAlphaBlending: false
  2230. };
  2231. GLTFUtils._DefaultMaterial = new BABYLON.ShaderMaterial("GLTFDefaultMaterial", scene, shaderPath, options);
  2232. GLTFUtils._DefaultMaterial.setColor4("u_emission", new BABYLON.Color4(0.5, 0.5, 0.5, 1.0));
  2233. }
  2234. return GLTFUtils._DefaultMaterial;
  2235. };
  2236. // The GLTF default material
  2237. GLTFUtils._DefaultMaterial = null;
  2238. return GLTFUtils;
  2239. }());
  2240. GLTF1.GLTFUtils = GLTFUtils;
  2241. })(GLTF1 = BABYLON.GLTF1 || (BABYLON.GLTF1 = {}));
  2242. })(BABYLON || (BABYLON = {}));
  2243. //# sourceMappingURL=babylon.glTFLoaderUtils.js.map
  2244. /// <reference path="../../../../dist/preview release/babylon.d.ts"/>
  2245. var BABYLON;
  2246. (function (BABYLON) {
  2247. var GLTF1;
  2248. (function (GLTF1) {
  2249. var GLTFLoaderExtension = /** @class */ (function () {
  2250. function GLTFLoaderExtension(name) {
  2251. this._name = name;
  2252. }
  2253. Object.defineProperty(GLTFLoaderExtension.prototype, "name", {
  2254. get: function () {
  2255. return this._name;
  2256. },
  2257. enumerable: true,
  2258. configurable: true
  2259. });
  2260. /**
  2261. * Defines an override for loading the runtime
  2262. * Return true to stop further extensions from loading the runtime
  2263. */
  2264. GLTFLoaderExtension.prototype.loadRuntimeAsync = function (scene, data, rootUrl, onSuccess, onError) {
  2265. return false;
  2266. };
  2267. /**
  2268. * Defines an onverride for creating gltf runtime
  2269. * Return true to stop further extensions from creating the runtime
  2270. */
  2271. GLTFLoaderExtension.prototype.loadRuntimeExtensionsAsync = function (gltfRuntime, onSuccess, onError) {
  2272. return false;
  2273. };
  2274. /**
  2275. * Defines an override for loading buffers
  2276. * Return true to stop further extensions from loading this buffer
  2277. */
  2278. GLTFLoaderExtension.prototype.loadBufferAsync = function (gltfRuntime, id, onSuccess, onError, onProgress) {
  2279. return false;
  2280. };
  2281. /**
  2282. * Defines an override for loading texture buffers
  2283. * Return true to stop further extensions from loading this texture data
  2284. */
  2285. GLTFLoaderExtension.prototype.loadTextureBufferAsync = function (gltfRuntime, id, onSuccess, onError) {
  2286. return false;
  2287. };
  2288. /**
  2289. * Defines an override for creating textures
  2290. * Return true to stop further extensions from loading this texture
  2291. */
  2292. GLTFLoaderExtension.prototype.createTextureAsync = function (gltfRuntime, id, buffer, onSuccess, onError) {
  2293. return false;
  2294. };
  2295. /**
  2296. * Defines an override for loading shader strings
  2297. * Return true to stop further extensions from loading this shader data
  2298. */
  2299. GLTFLoaderExtension.prototype.loadShaderStringAsync = function (gltfRuntime, id, onSuccess, onError) {
  2300. return false;
  2301. };
  2302. /**
  2303. * Defines an override for loading materials
  2304. * Return true to stop further extensions from loading this material
  2305. */
  2306. GLTFLoaderExtension.prototype.loadMaterialAsync = function (gltfRuntime, id, onSuccess, onError) {
  2307. return false;
  2308. };
  2309. // ---------
  2310. // Utilities
  2311. // ---------
  2312. GLTFLoaderExtension.LoadRuntimeAsync = function (scene, data, rootUrl, onSuccess, onError) {
  2313. GLTFLoaderExtension.ApplyExtensions(function (loaderExtension) {
  2314. return loaderExtension.loadRuntimeAsync(scene, data, rootUrl, onSuccess, onError);
  2315. }, function () {
  2316. setTimeout(function () {
  2317. onSuccess(GLTF1.GLTFLoaderBase.CreateRuntime(data.json, scene, rootUrl));
  2318. });
  2319. });
  2320. };
  2321. GLTFLoaderExtension.LoadRuntimeExtensionsAsync = function (gltfRuntime, onSuccess, onError) {
  2322. GLTFLoaderExtension.ApplyExtensions(function (loaderExtension) {
  2323. return loaderExtension.loadRuntimeExtensionsAsync(gltfRuntime, onSuccess, onError);
  2324. }, function () {
  2325. setTimeout(function () {
  2326. onSuccess();
  2327. });
  2328. });
  2329. };
  2330. GLTFLoaderExtension.LoadBufferAsync = function (gltfRuntime, id, onSuccess, onError, onProgress) {
  2331. GLTFLoaderExtension.ApplyExtensions(function (loaderExtension) {
  2332. return loaderExtension.loadBufferAsync(gltfRuntime, id, onSuccess, onError, onProgress);
  2333. }, function () {
  2334. GLTF1.GLTFLoaderBase.LoadBufferAsync(gltfRuntime, id, onSuccess, onError, onProgress);
  2335. });
  2336. };
  2337. GLTFLoaderExtension.LoadTextureAsync = function (gltfRuntime, id, onSuccess, onError) {
  2338. GLTFLoaderExtension.LoadTextureBufferAsync(gltfRuntime, id, function (buffer) { return GLTFLoaderExtension.CreateTextureAsync(gltfRuntime, id, buffer, onSuccess, onError); }, onError);
  2339. };
  2340. GLTFLoaderExtension.LoadShaderStringAsync = function (gltfRuntime, id, onSuccess, onError) {
  2341. GLTFLoaderExtension.ApplyExtensions(function (loaderExtension) {
  2342. return loaderExtension.loadShaderStringAsync(gltfRuntime, id, onSuccess, onError);
  2343. }, function () {
  2344. GLTF1.GLTFLoaderBase.LoadShaderStringAsync(gltfRuntime, id, onSuccess, onError);
  2345. });
  2346. };
  2347. GLTFLoaderExtension.LoadMaterialAsync = function (gltfRuntime, id, onSuccess, onError) {
  2348. GLTFLoaderExtension.ApplyExtensions(function (loaderExtension) {
  2349. return loaderExtension.loadMaterialAsync(gltfRuntime, id, onSuccess, onError);
  2350. }, function () {
  2351. GLTF1.GLTFLoaderBase.LoadMaterialAsync(gltfRuntime, id, onSuccess, onError);
  2352. });
  2353. };
  2354. GLTFLoaderExtension.LoadTextureBufferAsync = function (gltfRuntime, id, onSuccess, onError) {
  2355. GLTFLoaderExtension.ApplyExtensions(function (loaderExtension) {
  2356. return loaderExtension.loadTextureBufferAsync(gltfRuntime, id, onSuccess, onError);
  2357. }, function () {
  2358. GLTF1.GLTFLoaderBase.LoadTextureBufferAsync(gltfRuntime, id, onSuccess, onError);
  2359. });
  2360. };
  2361. GLTFLoaderExtension.CreateTextureAsync = function (gltfRuntime, id, buffer, onSuccess, onError) {
  2362. GLTFLoaderExtension.ApplyExtensions(function (loaderExtension) {
  2363. return loaderExtension.createTextureAsync(gltfRuntime, id, buffer, onSuccess, onError);
  2364. }, function () {
  2365. GLTF1.GLTFLoaderBase.CreateTextureAsync(gltfRuntime, id, buffer, onSuccess, onError);
  2366. });
  2367. };
  2368. GLTFLoaderExtension.ApplyExtensions = function (func, defaultFunc) {
  2369. for (var extensionName in GLTF1.GLTFLoader.Extensions) {
  2370. var loaderExtension = GLTF1.GLTFLoader.Extensions[extensionName];
  2371. if (func(loaderExtension)) {
  2372. return;
  2373. }
  2374. }
  2375. defaultFunc();
  2376. };
  2377. return GLTFLoaderExtension;
  2378. }());
  2379. GLTF1.GLTFLoaderExtension = GLTFLoaderExtension;
  2380. })(GLTF1 = BABYLON.GLTF1 || (BABYLON.GLTF1 = {}));
  2381. })(BABYLON || (BABYLON = {}));
  2382. //# sourceMappingURL=babylon.glTFLoaderExtension.js.map
  2383. /// <reference path="../../../../dist/preview release/babylon.d.ts"/>
  2384. var __extends = (this && this.__extends) || (function () {
  2385. var extendStatics = Object.setPrototypeOf ||
  2386. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  2387. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  2388. return function (d, b) {
  2389. extendStatics(d, b);
  2390. function __() { this.constructor = d; }
  2391. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  2392. };
  2393. })();
  2394. var BABYLON;
  2395. (function (BABYLON) {
  2396. var GLTF1;
  2397. (function (GLTF1) {
  2398. var BinaryExtensionBufferName = "binary_glTF";
  2399. ;
  2400. ;
  2401. var GLTFBinaryExtension = /** @class */ (function (_super) {
  2402. __extends(GLTFBinaryExtension, _super);
  2403. function GLTFBinaryExtension() {
  2404. return _super.call(this, "KHR_binary_glTF") || this;
  2405. }
  2406. GLTFBinaryExtension.prototype.loadRuntimeAsync = function (scene, data, rootUrl, onSuccess, onError) {
  2407. var extensionsUsed = data.json.extensionsUsed;
  2408. if (!extensionsUsed || extensionsUsed.indexOf(this.name) === -1 || !data.bin) {
  2409. return false;
  2410. }
  2411. this._bin = data.bin;
  2412. onSuccess(GLTF1.GLTFLoaderBase.CreateRuntime(data.json, scene, rootUrl));
  2413. return true;
  2414. };
  2415. GLTFBinaryExtension.prototype.loadBufferAsync = function (gltfRuntime, id, onSuccess, onError) {
  2416. if (gltfRuntime.extensionsUsed.indexOf(this.name) === -1) {
  2417. return false;
  2418. }
  2419. if (id !== BinaryExtensionBufferName) {
  2420. return false;
  2421. }
  2422. onSuccess(this._bin);
  2423. return true;
  2424. };
  2425. GLTFBinaryExtension.prototype.loadTextureBufferAsync = function (gltfRuntime, id, onSuccess, onError) {
  2426. var texture = gltfRuntime.textures[id];
  2427. var source = gltfRuntime.images[texture.source];
  2428. if (!source.extensions || !(this.name in source.extensions)) {
  2429. return false;
  2430. }
  2431. var sourceExt = source.extensions[this.name];
  2432. var bufferView = gltfRuntime.bufferViews[sourceExt.bufferView];
  2433. var buffer = GLTF1.GLTFUtils.GetBufferFromBufferView(gltfRuntime, bufferView, 0, bufferView.byteLength, GLTF1.EComponentType.UNSIGNED_BYTE);
  2434. onSuccess(buffer);
  2435. return true;
  2436. };
  2437. GLTFBinaryExtension.prototype.loadShaderStringAsync = function (gltfRuntime, id, onSuccess, onError) {
  2438. var shader = gltfRuntime.shaders[id];
  2439. if (!shader.extensions || !(this.name in shader.extensions)) {
  2440. return false;
  2441. }
  2442. var binaryExtensionShader = shader.extensions[this.name];
  2443. var bufferView = gltfRuntime.bufferViews[binaryExtensionShader.bufferView];
  2444. var shaderBytes = GLTF1.GLTFUtils.GetBufferFromBufferView(gltfRuntime, bufferView, 0, bufferView.byteLength, GLTF1.EComponentType.UNSIGNED_BYTE);
  2445. setTimeout(function () {
  2446. var shaderString = GLTF1.GLTFUtils.DecodeBufferToText(shaderBytes);
  2447. onSuccess(shaderString);
  2448. });
  2449. return true;
  2450. };
  2451. return GLTFBinaryExtension;
  2452. }(GLTF1.GLTFLoaderExtension));
  2453. GLTF1.GLTFBinaryExtension = GLTFBinaryExtension;
  2454. GLTF1.GLTFLoader.RegisterExtension(new GLTFBinaryExtension());
  2455. })(GLTF1 = BABYLON.GLTF1 || (BABYLON.GLTF1 = {}));
  2456. })(BABYLON || (BABYLON = {}));
  2457. //# sourceMappingURL=babylon.glTFBinaryExtension.js.map
  2458. /// <reference path="../../../../dist/preview release/babylon.d.ts"/>
  2459. var __extends = (this && this.__extends) || (function () {
  2460. var extendStatics = Object.setPrototypeOf ||
  2461. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  2462. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  2463. return function (d, b) {
  2464. extendStatics(d, b);
  2465. function __() { this.constructor = d; }
  2466. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  2467. };
  2468. })();
  2469. var BABYLON;
  2470. (function (BABYLON) {
  2471. var GLTF1;
  2472. (function (GLTF1) {
  2473. ;
  2474. ;
  2475. ;
  2476. var GLTFMaterialsCommonExtension = /** @class */ (function (_super) {
  2477. __extends(GLTFMaterialsCommonExtension, _super);
  2478. function GLTFMaterialsCommonExtension() {
  2479. return _super.call(this, "KHR_materials_common") || this;
  2480. }
  2481. GLTFMaterialsCommonExtension.prototype.loadRuntimeExtensionsAsync = function (gltfRuntime, onSuccess, onError) {
  2482. if (!gltfRuntime.extensions)
  2483. return false;
  2484. var extension = gltfRuntime.extensions[this.name];
  2485. if (!extension)
  2486. return false;
  2487. // Create lights
  2488. var lights = extension.lights;
  2489. if (lights) {
  2490. for (var thing in lights) {
  2491. var light = lights[thing];
  2492. switch (light.type) {
  2493. case "ambient":
  2494. var ambientLight = new BABYLON.HemisphericLight(light.name, new BABYLON.Vector3(0, 1, 0), gltfRuntime.scene);
  2495. var ambient = light.ambient;
  2496. if (ambient) {
  2497. ambientLight.diffuse = BABYLON.Color3.FromArray(ambient.color || [1, 1, 1]);
  2498. }
  2499. break;
  2500. case "point":
  2501. var pointLight = new BABYLON.PointLight(light.name, new BABYLON.Vector3(10, 10, 10), gltfRuntime.scene);
  2502. var point = light.point;
  2503. if (point) {
  2504. pointLight.diffuse = BABYLON.Color3.FromArray(point.color || [1, 1, 1]);
  2505. }
  2506. break;
  2507. case "directional":
  2508. var dirLight = new BABYLON.DirectionalLight(light.name, new BABYLON.Vector3(0, -1, 0), gltfRuntime.scene);
  2509. var directional = light.directional;
  2510. if (directional) {
  2511. dirLight.diffuse = BABYLON.Color3.FromArray(directional.color || [1, 1, 1]);
  2512. }
  2513. break;
  2514. case "spot":
  2515. var spot = light.spot;
  2516. if (spot) {
  2517. var spotLight = new BABYLON.SpotLight(light.name, new BABYLON.Vector3(0, 10, 0), new BABYLON.Vector3(0, -1, 0), spot.fallOffAngle || Math.PI, spot.fallOffExponent || 0.0, gltfRuntime.scene);
  2518. spotLight.diffuse = BABYLON.Color3.FromArray(spot.color || [1, 1, 1]);
  2519. }
  2520. break;
  2521. default:
  2522. BABYLON.Tools.Warn("GLTF Material Common extension: light type \"" + light.type + "\” not supported");
  2523. break;
  2524. }
  2525. }
  2526. }
  2527. return false;
  2528. };
  2529. GLTFMaterialsCommonExtension.prototype.loadMaterialAsync = function (gltfRuntime, id, onSuccess, onError) {
  2530. var material = gltfRuntime.materials[id];
  2531. if (!material || !material.extensions)
  2532. return false;
  2533. var extension = material.extensions[this.name];
  2534. if (!extension)
  2535. return false;
  2536. var standardMaterial = new BABYLON.StandardMaterial(id, gltfRuntime.scene);
  2537. standardMaterial.sideOrientation = BABYLON.Material.CounterClockWiseSideOrientation;
  2538. if (extension.technique === "CONSTANT") {
  2539. standardMaterial.disableLighting = true;
  2540. }
  2541. standardMaterial.backFaceCulling = extension.doubleSided === undefined ? false : !extension.doubleSided;
  2542. standardMaterial.alpha = extension.values.transparency === undefined ? 1.0 : extension.values.transparency;
  2543. standardMaterial.specularPower = extension.values.shininess === undefined ? 0.0 : extension.values.shininess;
  2544. // Ambient
  2545. if (typeof extension.values.ambient === "string") {
  2546. this._loadTexture(gltfRuntime, extension.values.ambient, standardMaterial, "ambientTexture", onError);
  2547. }
  2548. else {
  2549. standardMaterial.ambientColor = BABYLON.Color3.FromArray(extension.values.ambient || [0, 0, 0]);
  2550. }
  2551. // Diffuse
  2552. if (typeof extension.values.diffuse === "string") {
  2553. this._loadTexture(gltfRuntime, extension.values.diffuse, standardMaterial, "diffuseTexture", onError);
  2554. }
  2555. else {
  2556. standardMaterial.diffuseColor = BABYLON.Color3.FromArray(extension.values.diffuse || [0, 0, 0]);
  2557. }
  2558. // Emission
  2559. if (typeof extension.values.emission === "string") {
  2560. this._loadTexture(gltfRuntime, extension.values.emission, standardMaterial, "emissiveTexture", onError);
  2561. }
  2562. else {
  2563. standardMaterial.emissiveColor = BABYLON.Color3.FromArray(extension.values.emission || [0, 0, 0]);
  2564. }
  2565. // Specular
  2566. if (typeof extension.values.specular === "string") {
  2567. this._loadTexture(gltfRuntime, extension.values.specular, standardMaterial, "specularTexture", onError);
  2568. }
  2569. else {
  2570. standardMaterial.specularColor = BABYLON.Color3.FromArray(extension.values.specular || [0, 0, 0]);
  2571. }
  2572. return true;
  2573. };
  2574. GLTFMaterialsCommonExtension.prototype._loadTexture = function (gltfRuntime, id, material, propertyPath, onError) {
  2575. // Create buffer from texture url
  2576. GLTF1.GLTFLoaderBase.LoadTextureBufferAsync(gltfRuntime, id, function (buffer) {
  2577. // Create texture from buffer
  2578. GLTF1.GLTFLoaderBase.CreateTextureAsync(gltfRuntime, id, buffer, function (texture) { return material[propertyPath] = texture; }, onError);
  2579. }, onError);
  2580. };
  2581. return GLTFMaterialsCommonExtension;
  2582. }(GLTF1.GLTFLoaderExtension));
  2583. GLTF1.GLTFMaterialsCommonExtension = GLTFMaterialsCommonExtension;
  2584. GLTF1.GLTFLoader.RegisterExtension(new GLTFMaterialsCommonExtension());
  2585. })(GLTF1 = BABYLON.GLTF1 || (BABYLON.GLTF1 = {}));
  2586. })(BABYLON || (BABYLON = {}));
  2587. //# sourceMappingURL=babylon.glTFMaterialsCommonExtension.js.map
  2588. /// <reference path="../../../../dist/preview release/babylon.d.ts"/>
  2589. var BABYLON;
  2590. (function (BABYLON) {
  2591. var GLTF2;
  2592. (function (GLTF2) {
  2593. /**
  2594. * Enums
  2595. */
  2596. var EComponentType;
  2597. (function (EComponentType) {
  2598. EComponentType[EComponentType["BYTE"] = 5120] = "BYTE";
  2599. EComponentType[EComponentType["UNSIGNED_BYTE"] = 5121] = "UNSIGNED_BYTE";
  2600. EComponentType[EComponentType["SHORT"] = 5122] = "SHORT";
  2601. EComponentType[EComponentType["UNSIGNED_SHORT"] = 5123] = "UNSIGNED_SHORT";
  2602. EComponentType[EComponentType["UNSIGNED_INT"] = 5125] = "UNSIGNED_INT";
  2603. EComponentType[EComponentType["FLOAT"] = 5126] = "FLOAT";
  2604. })(EComponentType = GLTF2.EComponentType || (GLTF2.EComponentType = {}));
  2605. var EMeshPrimitiveMode;
  2606. (function (EMeshPrimitiveMode) {
  2607. EMeshPrimitiveMode[EMeshPrimitiveMode["POINTS"] = 0] = "POINTS";
  2608. EMeshPrimitiveMode[EMeshPrimitiveMode["LINES"] = 1] = "LINES";
  2609. EMeshPrimitiveMode[EMeshPrimitiveMode["LINE_LOOP"] = 2] = "LINE_LOOP";
  2610. EMeshPrimitiveMode[EMeshPrimitiveMode["LINE_STRIP"] = 3] = "LINE_STRIP";
  2611. EMeshPrimitiveMode[EMeshPrimitiveMode["TRIANGLES"] = 4] = "TRIANGLES";
  2612. EMeshPrimitiveMode[EMeshPrimitiveMode["TRIANGLE_STRIP"] = 5] = "TRIANGLE_STRIP";
  2613. EMeshPrimitiveMode[EMeshPrimitiveMode["TRIANGLE_FAN"] = 6] = "TRIANGLE_FAN";
  2614. })(EMeshPrimitiveMode = GLTF2.EMeshPrimitiveMode || (GLTF2.EMeshPrimitiveMode = {}));
  2615. var ETextureMagFilter;
  2616. (function (ETextureMagFilter) {
  2617. ETextureMagFilter[ETextureMagFilter["NEAREST"] = 9728] = "NEAREST";
  2618. ETextureMagFilter[ETextureMagFilter["LINEAR"] = 9729] = "LINEAR";
  2619. })(ETextureMagFilter = GLTF2.ETextureMagFilter || (GLTF2.ETextureMagFilter = {}));
  2620. var ETextureMinFilter;
  2621. (function (ETextureMinFilter) {
  2622. ETextureMinFilter[ETextureMinFilter["NEAREST"] = 9728] = "NEAREST";
  2623. ETextureMinFilter[ETextureMinFilter["LINEAR"] = 9729] = "LINEAR";
  2624. ETextureMinFilter[ETextureMinFilter["NEAREST_MIPMAP_NEAREST"] = 9984] = "NEAREST_MIPMAP_NEAREST";
  2625. ETextureMinFilter[ETextureMinFilter["LINEAR_MIPMAP_NEAREST"] = 9985] = "LINEAR_MIPMAP_NEAREST";
  2626. ETextureMinFilter[ETextureMinFilter["NEAREST_MIPMAP_LINEAR"] = 9986] = "NEAREST_MIPMAP_LINEAR";
  2627. ETextureMinFilter[ETextureMinFilter["LINEAR_MIPMAP_LINEAR"] = 9987] = "LINEAR_MIPMAP_LINEAR";
  2628. })(ETextureMinFilter = GLTF2.ETextureMinFilter || (GLTF2.ETextureMinFilter = {}));
  2629. var ETextureWrapMode;
  2630. (function (ETextureWrapMode) {
  2631. ETextureWrapMode[ETextureWrapMode["CLAMP_TO_EDGE"] = 33071] = "CLAMP_TO_EDGE";
  2632. ETextureWrapMode[ETextureWrapMode["MIRRORED_REPEAT"] = 33648] = "MIRRORED_REPEAT";
  2633. ETextureWrapMode[ETextureWrapMode["REPEAT"] = 10497] = "REPEAT";
  2634. })(ETextureWrapMode = GLTF2.ETextureWrapMode || (GLTF2.ETextureWrapMode = {}));
  2635. })(GLTF2 = BABYLON.GLTF2 || (BABYLON.GLTF2 = {}));
  2636. })(BABYLON || (BABYLON = {}));
  2637. //# sourceMappingURL=babylon.glTFLoaderInterfaces.js.map
  2638. /// <reference path="../../../../dist/preview release/babylon.d.ts"/>
  2639. var BABYLON;
  2640. (function (BABYLON) {
  2641. var GLTF2;
  2642. (function (GLTF2) {
  2643. var GLTFLoaderTracker = /** @class */ (function () {
  2644. function GLTFLoaderTracker(onComplete) {
  2645. this._pendingCount = 0;
  2646. this._callback = onComplete;
  2647. }
  2648. GLTFLoaderTracker.prototype._addPendingData = function (data) {
  2649. this._pendingCount++;
  2650. };
  2651. GLTFLoaderTracker.prototype._removePendingData = function (data) {
  2652. if (--this._pendingCount === 0) {
  2653. this._callback();
  2654. }
  2655. };
  2656. return GLTFLoaderTracker;
  2657. }());
  2658. var GLTFLoader = /** @class */ (function () {
  2659. function GLTFLoader() {
  2660. this._disposed = false;
  2661. this._defaultSampler = {};
  2662. this._renderReady = false;
  2663. this._requests = new Array();
  2664. this._renderReadyObservable = new BABYLON.Observable();
  2665. // Count of pending work that needs to complete before the asset is rendered.
  2666. this._renderPendingCount = 0;
  2667. // Count of pending work that needs to complete before the loader is disposed.
  2668. this._loaderPendingCount = 0;
  2669. this._loaderTrackers = new Array();
  2670. this.coordinateSystemMode = BABYLON.GLTFLoaderCoordinateSystemMode.AUTO;
  2671. this.animationStartMode = BABYLON.GLTFLoaderAnimationStartMode.FIRST;
  2672. this.compileMaterials = false;
  2673. this.useClipPlane = false;
  2674. this.compileShadowGenerators = false;
  2675. this.onDisposeObservable = new BABYLON.Observable();
  2676. this.onMeshLoadedObservable = new BABYLON.Observable();
  2677. this.onTextureLoadedObservable = new BABYLON.Observable();
  2678. this.onMaterialLoadedObservable = new BABYLON.Observable();
  2679. this.onCompleteObservable = new BABYLON.Observable();
  2680. }
  2681. GLTFLoader.RegisterExtension = function (extension) {
  2682. if (GLTFLoader.Extensions[extension.name]) {
  2683. BABYLON.Tools.Error("Extension with the same name '" + extension.name + "' already exists");
  2684. return;
  2685. }
  2686. GLTFLoader.Extensions[extension.name] = extension;
  2687. // Keep the order of registration so that extensions registered first are called first.
  2688. GLTF2.GLTFLoaderExtension._Extensions.push(extension);
  2689. };
  2690. GLTFLoader.prototype.dispose = function () {
  2691. if (this._disposed) {
  2692. return;
  2693. }
  2694. this._disposed = true;
  2695. this._abortRequests();
  2696. this._releaseResources();
  2697. this.onDisposeObservable.notifyObservers(this);
  2698. };
  2699. GLTFLoader.prototype.importMeshAsync = function (meshesNames, scene, data, rootUrl, onSuccess, onProgress, onError) {
  2700. var _this = this;
  2701. this._loadAsync(meshesNames, scene, data, rootUrl, function () {
  2702. if (onSuccess) {
  2703. onSuccess(_this._getMeshes(), [], _this._getSkeletons());
  2704. }
  2705. }, onProgress, onError);
  2706. };
  2707. GLTFLoader.prototype.loadAsync = function (scene, data, rootUrl, onSuccess, onProgress, onError) {
  2708. this._loadAsync(null, scene, data, rootUrl, onSuccess, onProgress, onError);
  2709. };
  2710. GLTFLoader.prototype._loadAsync = function (nodeNames, scene, data, rootUrl, onSuccess, onProgress, onError) {
  2711. var _this = this;
  2712. this._babylonScene = scene;
  2713. this._rootUrl = rootUrl;
  2714. this._successCallback = onSuccess;
  2715. this._progressCallback = onProgress;
  2716. this._errorCallback = onError;
  2717. this._tryCatchOnError(function () {
  2718. _this._loadData(data);
  2719. _this._addPendingData(_this);
  2720. _this._loadDefaultScene(nodeNames);
  2721. _this._loadAnimations();
  2722. _this._removePendingData(_this);
  2723. });
  2724. };
  2725. GLTFLoader.prototype._onProgress = function () {
  2726. if (!this._progressCallback) {
  2727. return;
  2728. }
  2729. var lengthComputable = true;
  2730. var loaded = 0;
  2731. var total = 0;
  2732. for (var _i = 0, _a = this._requests; _i < _a.length; _i++) {
  2733. var request = _a[_i];
  2734. if (request._lengthComputable === undefined || request._loaded === undefined || request._total === undefined) {
  2735. return;
  2736. }
  2737. lengthComputable = lengthComputable && request._lengthComputable;
  2738. loaded += request._loaded;
  2739. total += request._total;
  2740. }
  2741. this._progressCallback(new BABYLON.SceneLoaderProgressEvent(lengthComputable, loaded, lengthComputable ? total : 0));
  2742. };
  2743. GLTFLoader.prototype._executeWhenRenderReady = function (func) {
  2744. if (this._renderReady) {
  2745. func();
  2746. }
  2747. else {
  2748. this._renderReadyObservable.add(func);
  2749. }
  2750. };
  2751. GLTFLoader.prototype._onRenderReady = function () {
  2752. this._rootNode.babylonMesh.setEnabled(true);
  2753. this._startAnimations();
  2754. if (this._successCallback) {
  2755. this._successCallback();
  2756. }
  2757. this._renderReadyObservable.notifyObservers(this);
  2758. };
  2759. GLTFLoader.prototype._onComplete = function () {
  2760. this._abortRequests();
  2761. this._releaseResources();
  2762. this.onCompleteObservable.notifyObservers(this);
  2763. };
  2764. GLTFLoader.prototype._loadData = function (data) {
  2765. this._gltf = data.json;
  2766. // Assign the index of each object for convinience.
  2767. GLTFLoader._AssignIndices(this._gltf.accessors);
  2768. GLTFLoader._AssignIndices(this._gltf.animations);
  2769. GLTFLoader._AssignIndices(this._gltf.buffers);
  2770. GLTFLoader._AssignIndices(this._gltf.bufferViews);
  2771. GLTFLoader._AssignIndices(this._gltf.images);
  2772. GLTFLoader._AssignIndices(this._gltf.materials);
  2773. GLTFLoader._AssignIndices(this._gltf.meshes);
  2774. GLTFLoader._AssignIndices(this._gltf.nodes);
  2775. GLTFLoader._AssignIndices(this._gltf.samplers);
  2776. GLTFLoader._AssignIndices(this._gltf.scenes);
  2777. GLTFLoader._AssignIndices(this._gltf.skins);
  2778. GLTFLoader._AssignIndices(this._gltf.textures);
  2779. if (data.bin) {
  2780. var buffers = this._gltf.buffers;
  2781. if (buffers && buffers[0] && !buffers[0].uri) {
  2782. var binaryBuffer = buffers[0];
  2783. if (binaryBuffer.byteLength < data.bin.byteLength - 3 || binaryBuffer.byteLength > data.bin.byteLength) {
  2784. BABYLON.Tools.Warn("Binary buffer length (" + binaryBuffer.byteLength + ") from JSON does not match chunk length (" + data.bin.byteLength + ")");
  2785. }
  2786. binaryBuffer.loadedData = data.bin;
  2787. }
  2788. else {
  2789. BABYLON.Tools.Warn("Unexpected BIN chunk");
  2790. }
  2791. }
  2792. };
  2793. GLTFLoader.prototype._getMeshes = function () {
  2794. var meshes = new Array();
  2795. // Root mesh is always first.
  2796. meshes.push(this._rootNode.babylonMesh);
  2797. var nodes = this._gltf.nodes;
  2798. if (nodes) {
  2799. for (var _i = 0, nodes_1 = nodes; _i < nodes_1.length; _i++) {
  2800. var node = nodes_1[_i];
  2801. if (node.babylonMesh) {
  2802. meshes.push(node.babylonMesh);
  2803. }
  2804. }
  2805. }
  2806. return meshes;
  2807. };
  2808. GLTFLoader.prototype._getSkeletons = function () {
  2809. var skeletons = new Array();
  2810. var skins = this._gltf.skins;
  2811. if (skins) {
  2812. for (var _i = 0, skins_1 = skins; _i < skins_1.length; _i++) {
  2813. var skin = skins_1[_i];
  2814. if (skin.babylonSkeleton) {
  2815. skeletons.push(skin.babylonSkeleton);
  2816. }
  2817. }
  2818. }
  2819. return skeletons;
  2820. };
  2821. GLTFLoader.prototype._startAnimations = function () {
  2822. var animations = this._gltf.animations;
  2823. if (!animations) {
  2824. return;
  2825. }
  2826. for (var _i = 0, animations_1 = animations; _i < animations_1.length; _i++) {
  2827. var animation = animations_1[_i];
  2828. animation.babylonAnimationGroup.normalize();
  2829. }
  2830. switch (this.animationStartMode) {
  2831. case BABYLON.GLTFLoaderAnimationStartMode.NONE: {
  2832. // do nothing
  2833. break;
  2834. }
  2835. case BABYLON.GLTFLoaderAnimationStartMode.FIRST: {
  2836. var animation = animations[0];
  2837. animation.babylonAnimationGroup.start(true);
  2838. break;
  2839. }
  2840. case BABYLON.GLTFLoaderAnimationStartMode.ALL: {
  2841. for (var _a = 0, animations_2 = animations; _a < animations_2.length; _a++) {
  2842. var animation = animations_2[_a];
  2843. animation.babylonAnimationGroup.start(true);
  2844. }
  2845. break;
  2846. }
  2847. default: {
  2848. BABYLON.Tools.Error("Invalid animation start mode " + this.animationStartMode);
  2849. return;
  2850. }
  2851. }
  2852. };
  2853. GLTFLoader.prototype._loadDefaultScene = function (nodeNames) {
  2854. var scene = GLTFLoader._GetProperty(this._gltf.scenes, this._gltf.scene || 0);
  2855. if (!scene) {
  2856. throw new Error("Failed to find scene " + (this._gltf.scene || 0));
  2857. }
  2858. this._loadScene("#/scenes/" + scene.index, scene, nodeNames);
  2859. };
  2860. GLTFLoader.prototype._loadScene = function (context, scene, nodeNames) {
  2861. var _this = this;
  2862. this._rootNode = { babylonMesh: new BABYLON.Mesh("__root__", this._babylonScene) };
  2863. switch (this.coordinateSystemMode) {
  2864. case BABYLON.GLTFLoaderCoordinateSystemMode.AUTO: {
  2865. if (!this._babylonScene.useRightHandedSystem) {
  2866. this._rootNode.rotation = [0, 1, 0, 0];
  2867. this._rootNode.scale = [1, 1, -1];
  2868. this._loadTransform(this._rootNode);
  2869. }
  2870. break;
  2871. }
  2872. case BABYLON.GLTFLoaderCoordinateSystemMode.FORCE_RIGHT_HANDED: {
  2873. this._babylonScene.useRightHandedSystem = true;
  2874. break;
  2875. }
  2876. default: {
  2877. BABYLON.Tools.Error("Invalid coordinate system mode " + this.coordinateSystemMode);
  2878. return;
  2879. }
  2880. }
  2881. this.onMeshLoadedObservable.notifyObservers(this._rootNode.babylonMesh);
  2882. var nodeIndices = scene.nodes;
  2883. this._traverseNodes(context, nodeIndices, function (node, parentNode) {
  2884. node.parent = parentNode;
  2885. return true;
  2886. }, this._rootNode);
  2887. if (nodeNames) {
  2888. if (!(nodeNames instanceof Array)) {
  2889. nodeNames = [nodeNames];
  2890. }
  2891. var filteredNodeIndices_1 = new Array();
  2892. this._traverseNodes(context, nodeIndices, function (node) {
  2893. if (nodeNames.indexOf(node.name) !== -1) {
  2894. filteredNodeIndices_1.push(node.index);
  2895. node.parent = _this._rootNode;
  2896. return false;
  2897. }
  2898. return true;
  2899. }, this._rootNode);
  2900. nodeIndices = filteredNodeIndices_1;
  2901. }
  2902. for (var _i = 0, nodeIndices_1 = nodeIndices; _i < nodeIndices_1.length; _i++) {
  2903. var index = nodeIndices_1[_i];
  2904. var node = GLTFLoader._GetProperty(this._gltf.nodes, index);
  2905. if (!node) {
  2906. throw new Error(context + ": Failed to find node " + index);
  2907. }
  2908. this._loadNode("#/nodes/" + index, node);
  2909. }
  2910. // Disable the root mesh until the asset is ready to render.
  2911. this._rootNode.babylonMesh.setEnabled(false);
  2912. };
  2913. GLTFLoader.prototype._loadNode = function (context, node) {
  2914. if (GLTF2.GLTFLoaderExtension.LoadNode(this, context, node)) {
  2915. return;
  2916. }
  2917. node.babylonMesh = new BABYLON.Mesh(node.name || "mesh" + node.index, this._babylonScene);
  2918. this._loadTransform(node);
  2919. if (node.mesh != null) {
  2920. var mesh = GLTFLoader._GetProperty(this._gltf.meshes, node.mesh);
  2921. if (!mesh) {
  2922. throw new Error(context + ": Failed to find mesh " + node.mesh);
  2923. }
  2924. this._loadMesh("#/meshes/" + node.mesh, node, mesh);
  2925. }
  2926. node.babylonMesh.parent = node.parent.babylonMesh;
  2927. node.babylonAnimationTargets = node.babylonAnimationTargets || [];
  2928. node.babylonAnimationTargets.push(node.babylonMesh);
  2929. if (node.skin != null) {
  2930. var skin_1 = GLTFLoader._GetProperty(this._gltf.skins, node.skin);
  2931. if (!skin_1) {
  2932. throw new Error(context + ": Failed to find skin " + node.skin);
  2933. }
  2934. this._loadSkinAsync("#/skins/" + node.skin, skin_1, function () {
  2935. node.babylonMesh.skeleton = skin_1.babylonSkeleton;
  2936. node.babylonMesh._refreshBoundingInfo(true);
  2937. });
  2938. node.babylonMesh.parent = this._rootNode.babylonMesh;
  2939. node.babylonMesh.position = BABYLON.Vector3.Zero();
  2940. node.babylonMesh.rotationQuaternion = BABYLON.Quaternion.Identity();
  2941. node.babylonMesh.scaling = BABYLON.Vector3.One();
  2942. }
  2943. if (node.camera != null) {
  2944. // TODO: handle cameras
  2945. }
  2946. if (node.children) {
  2947. for (var _i = 0, _a = node.children; _i < _a.length; _i++) {
  2948. var index = _a[_i];
  2949. var childNode = GLTFLoader._GetProperty(this._gltf.nodes, index);
  2950. if (!childNode) {
  2951. throw new Error(context + ": Failed to find child node " + index);
  2952. }
  2953. this._loadNode("#/nodes/" + index, childNode);
  2954. }
  2955. }
  2956. this.onMeshLoadedObservable.notifyObservers(node.babylonMesh);
  2957. };
  2958. GLTFLoader.prototype._loadMesh = function (context, node, mesh) {
  2959. var _this = this;
  2960. var primitives = mesh.primitives;
  2961. if (!primitives || primitives.length === 0) {
  2962. throw new Error(context + ": Primitives are missing");
  2963. }
  2964. this._createMorphTargets(context, node, mesh);
  2965. this._loadAllVertexDataAsync(context, mesh, function () {
  2966. _this._loadMorphTargets(context, node, mesh);
  2967. var vertexData = new BABYLON.VertexData();
  2968. for (var _i = 0, primitives_1 = primitives; _i < primitives_1.length; _i++) {
  2969. var primitive = primitives_1[_i];
  2970. vertexData.merge(primitive.vertexData);
  2971. }
  2972. node.babylonMesh.hasVertexAlpha = mesh.hasVertexAlpha;
  2973. new BABYLON.Geometry(node.babylonMesh.name, _this._babylonScene, vertexData, false, node.babylonMesh);
  2974. // TODO: optimize this so that sub meshes can be created without being overwritten after setting vertex data.
  2975. // Sub meshes must be cleared and created after setting vertex data because of mesh._createGlobalSubMesh.
  2976. node.babylonMesh.subMeshes = [];
  2977. var verticesStart = 0;
  2978. var indicesStart = 0;
  2979. for (var index = 0; index < primitives.length; index++) {
  2980. var vertexData_1 = primitives[index].vertexData;
  2981. var verticesCount = vertexData_1.positions.length;
  2982. var indicesCount = vertexData_1.indices.length;
  2983. BABYLON.SubMesh.AddToMesh(index, verticesStart, verticesCount, indicesStart, indicesCount, node.babylonMesh);
  2984. verticesStart += verticesCount;
  2985. indicesStart += indicesCount;
  2986. }
  2987. ;
  2988. });
  2989. if (primitives.length === 1) {
  2990. var primitive = primitives[0];
  2991. if (primitive.material == null) {
  2992. node.babylonMesh.material = this._getDefaultMaterial();
  2993. }
  2994. else {
  2995. var material = GLTFLoader._GetProperty(this._gltf.materials, primitive.material);
  2996. if (!material) {
  2997. throw new Error(context + ": Failed to find material " + primitive.material);
  2998. }
  2999. this._loadMaterial("#/materials/" + material.index, material, function (babylonMaterial, isNew) {
  3000. if (isNew) {
  3001. _this.onMaterialLoadedObservable.notifyObservers(babylonMaterial);
  3002. }
  3003. node.babylonMesh.material = babylonMaterial;
  3004. });
  3005. }
  3006. }
  3007. else {
  3008. var multiMaterial = new BABYLON.MultiMaterial(node.babylonMesh.name, this._babylonScene);
  3009. node.babylonMesh.material = multiMaterial;
  3010. var subMaterials_1 = multiMaterial.subMaterials;
  3011. var _loop_1 = function (index) {
  3012. var primitive = primitives[index];
  3013. if (primitive.material == null) {
  3014. subMaterials_1[index] = this_1._getDefaultMaterial();
  3015. }
  3016. else {
  3017. var material = GLTFLoader._GetProperty(this_1._gltf.materials, primitive.material);
  3018. if (!material) {
  3019. throw new Error(context + ": Failed to find material " + primitive.material);
  3020. }
  3021. this_1._loadMaterial("#/materials/" + material.index, material, function (babylonMaterial, isNew) {
  3022. if (isNew) {
  3023. _this.onMaterialLoadedObservable.notifyObservers(babylonMaterial);
  3024. }
  3025. subMaterials_1[index] = babylonMaterial;
  3026. });
  3027. }
  3028. };
  3029. var this_1 = this;
  3030. for (var index = 0; index < primitives.length; index++) {
  3031. _loop_1(index);
  3032. }
  3033. ;
  3034. }
  3035. };
  3036. GLTFLoader.prototype._loadAllVertexDataAsync = function (context, mesh, onSuccess) {
  3037. var primitives = mesh.primitives;
  3038. var numRemainingPrimitives = primitives.length;
  3039. var _loop_2 = function (index) {
  3040. var primitive = primitives[index];
  3041. this_2._loadVertexDataAsync(context + "/primitive/" + index, mesh, primitive, function (vertexData) {
  3042. primitive.vertexData = vertexData;
  3043. if (--numRemainingPrimitives === 0) {
  3044. onSuccess();
  3045. }
  3046. });
  3047. };
  3048. var this_2 = this;
  3049. for (var index = 0; index < primitives.length; index++) {
  3050. _loop_2(index);
  3051. }
  3052. };
  3053. /**
  3054. * Converts a data bufferview into a Float4 Texture Coordinate Array, based on the accessor component type
  3055. * @param {ArrayBufferView} data
  3056. * @param {IGLTFAccessor} accessor
  3057. */
  3058. GLTFLoader.prototype._convertToFloat4TextureCoordArray = function (context, data, accessor) {
  3059. if (accessor.componentType == GLTF2.EComponentType.FLOAT) {
  3060. return data;
  3061. }
  3062. var buffer = data;
  3063. var factor = 1;
  3064. switch (accessor.componentType) {
  3065. case GLTF2.EComponentType.UNSIGNED_BYTE: {
  3066. factor = 1 / 255;
  3067. break;
  3068. }
  3069. case GLTF2.EComponentType.UNSIGNED_SHORT: {
  3070. factor = 1 / 65535;
  3071. break;
  3072. }
  3073. default: {
  3074. throw new Error(context + ": Invalid component type (" + accessor.componentType + ")");
  3075. }
  3076. }
  3077. var result = new Float32Array(accessor.count * 2);
  3078. for (var i = 0; i < result.length; ++i) {
  3079. result[i] = buffer[i] * factor;
  3080. }
  3081. return result;
  3082. };
  3083. /**
  3084. * Converts a data bufferview into a Float4 Color Array, based on the accessor component type
  3085. * @param {ArrayBufferView} data
  3086. * @param {IGLTFAccessor} accessor
  3087. */
  3088. GLTFLoader.prototype._convertToFloat4ColorArray = function (context, data, accessor) {
  3089. var colorComponentCount = GLTFLoader._GetNumComponents(context, accessor.type);
  3090. if (colorComponentCount === 4 && accessor.componentType === GLTF2.EComponentType.FLOAT) {
  3091. return data;
  3092. }
  3093. var buffer = data;
  3094. var factor = 1;
  3095. switch (accessor.componentType) {
  3096. case GLTF2.EComponentType.FLOAT: {
  3097. factor = 1;
  3098. break;
  3099. }
  3100. case GLTF2.EComponentType.UNSIGNED_BYTE: {
  3101. factor = 1 / 255;
  3102. break;
  3103. }
  3104. case GLTF2.EComponentType.UNSIGNED_SHORT: {
  3105. factor = 1 / 65535;
  3106. break;
  3107. }
  3108. default: {
  3109. throw new Error(context + ": Invalid component type (" + accessor.componentType + ")");
  3110. }
  3111. }
  3112. var result = new Float32Array(accessor.count * 4);
  3113. if (colorComponentCount === 4) {
  3114. for (var i = 0; i < result.length; ++i) {
  3115. result[i] = buffer[i] * factor;
  3116. }
  3117. }
  3118. else {
  3119. var offset = 0;
  3120. for (var i = 0; i < result.length; ++i) {
  3121. if ((i + 1) % 4 === 0) {
  3122. result[i] = 1;
  3123. }
  3124. else {
  3125. result[i] = buffer[offset++] * factor;
  3126. }
  3127. }
  3128. }
  3129. return result;
  3130. };
  3131. GLTFLoader.prototype._loadVertexDataAsync = function (context, mesh, primitive, onSuccess) {
  3132. var _this = this;
  3133. var attributes = primitive.attributes;
  3134. if (!attributes) {
  3135. throw new Error(context + ": Attributes are missing");
  3136. }
  3137. if (primitive.mode && primitive.mode !== GLTF2.EMeshPrimitiveMode.TRIANGLES) {
  3138. // TODO: handle other primitive modes
  3139. throw new Error(context + ": Mode " + primitive.mode + " is not currently supported");
  3140. }
  3141. var vertexData = new BABYLON.VertexData();
  3142. var numRemainingAttributes = Object.keys(attributes).length;
  3143. var _loop_3 = function (attribute) {
  3144. var accessor = GLTFLoader._GetProperty(this_3._gltf.accessors, attributes[attribute]);
  3145. if (!accessor) {
  3146. throw new Error(context + ": Failed to find attribute '" + attribute + "' accessor " + attributes[attribute]);
  3147. }
  3148. this_3._loadAccessorAsync("#/accessors/" + accessor.index, accessor, function (data) {
  3149. switch (attribute) {
  3150. case "POSITION": {
  3151. vertexData.positions = data;
  3152. break;
  3153. }
  3154. case "NORMAL": {
  3155. vertexData.normals = data;
  3156. break;
  3157. }
  3158. case "TANGENT": {
  3159. vertexData.tangents = data;
  3160. break;
  3161. }
  3162. case "TEXCOORD_0": {
  3163. vertexData.uvs = _this._convertToFloat4TextureCoordArray(context, data, accessor);
  3164. break;
  3165. }
  3166. case "TEXCOORD_1": {
  3167. vertexData.uvs2 = _this._convertToFloat4TextureCoordArray(context, data, accessor);
  3168. break;
  3169. }
  3170. case "JOINTS_0": {
  3171. vertexData.matricesIndices = new Float32Array(Array.prototype.slice.apply(data));
  3172. break;
  3173. }
  3174. case "WEIGHTS_0": {
  3175. //TODO: need to add support for normalized weights.
  3176. vertexData.matricesWeights = data;
  3177. break;
  3178. }
  3179. case "COLOR_0": {
  3180. vertexData.colors = _this._convertToFloat4ColorArray(context, data, accessor);
  3181. var hasVertexAlpha = GLTFLoader._GetNumComponents(context, accessor.type) === 4;
  3182. if (!mesh.hasVertexAlpha && hasVertexAlpha) {
  3183. mesh.hasVertexAlpha = hasVertexAlpha;
  3184. }
  3185. break;
  3186. }
  3187. default: {
  3188. BABYLON.Tools.Warn(context + ": Ignoring unrecognized attribute '" + attribute + "'");
  3189. break;
  3190. }
  3191. }
  3192. if (--numRemainingAttributes === 0) {
  3193. if (primitive.indices == null) {
  3194. vertexData.indices = new Uint32Array(vertexData.positions.length / 3);
  3195. for (var i = 0; i < vertexData.indices.length; i++) {
  3196. vertexData.indices[i] = i;
  3197. }
  3198. onSuccess(vertexData);
  3199. }
  3200. else {
  3201. var indicesAccessor = GLTFLoader._GetProperty(_this._gltf.accessors, primitive.indices);
  3202. if (!indicesAccessor) {
  3203. throw new Error(context + ": Failed to find indices accessor " + primitive.indices);
  3204. }
  3205. _this._loadAccessorAsync("#/accessors/" + indicesAccessor.index, indicesAccessor, function (data) {
  3206. vertexData.indices = data;
  3207. onSuccess(vertexData);
  3208. });
  3209. }
  3210. }
  3211. });
  3212. };
  3213. var this_3 = this;
  3214. for (var attribute in attributes) {
  3215. _loop_3(attribute);
  3216. }
  3217. };
  3218. GLTFLoader.prototype._createMorphTargets = function (context, node, mesh) {
  3219. var primitives = mesh.primitives;
  3220. var targets = primitives[0].targets;
  3221. if (!targets) {
  3222. return;
  3223. }
  3224. for (var _i = 0, primitives_2 = primitives; _i < primitives_2.length; _i++) {
  3225. var primitive = primitives_2[_i];
  3226. if (!primitive.targets || primitive.targets.length != targets.length) {
  3227. throw new Error(context + ": All primitives are required to list the same number of targets");
  3228. }
  3229. }
  3230. var morphTargetManager = new BABYLON.MorphTargetManager();
  3231. node.babylonMesh.morphTargetManager = morphTargetManager;
  3232. for (var index = 0; index < targets.length; index++) {
  3233. var weight = node.weights ? node.weights[index] : mesh.weights ? mesh.weights[index] : 0;
  3234. morphTargetManager.addTarget(new BABYLON.MorphTarget("morphTarget" + index, weight));
  3235. }
  3236. };
  3237. GLTFLoader.prototype._loadMorphTargets = function (context, node, mesh) {
  3238. var morphTargetManager = node.babylonMesh.morphTargetManager;
  3239. if (!morphTargetManager) {
  3240. return;
  3241. }
  3242. this._loadAllMorphTargetVertexDataAsync(context, node, mesh, function () {
  3243. var numTargets = morphTargetManager.numTargets;
  3244. for (var index = 0; index < numTargets; index++) {
  3245. var vertexData = new BABYLON.VertexData();
  3246. for (var _i = 0, _a = mesh.primitives; _i < _a.length; _i++) {
  3247. var primitive = _a[_i];
  3248. vertexData.merge(primitive.targetsVertexData[index], { tangentLength: 3 });
  3249. }
  3250. if (!vertexData.positions) {
  3251. throw new Error(context + ": Positions are missing");
  3252. }
  3253. var target = morphTargetManager.getTarget(index);
  3254. target.setPositions(vertexData.positions);
  3255. target.setNormals(vertexData.normals);
  3256. target.setTangents(vertexData.tangents);
  3257. }
  3258. });
  3259. };
  3260. GLTFLoader.prototype._loadAllMorphTargetVertexDataAsync = function (context, node, mesh, onSuccess) {
  3261. var numRemainingTargets = mesh.primitives.length * node.babylonMesh.morphTargetManager.numTargets;
  3262. var _loop_4 = function (primitive) {
  3263. var targets = primitive.targets;
  3264. primitive.targetsVertexData = new Array(targets.length);
  3265. var _loop_5 = function (index) {
  3266. this_4._loadMorphTargetVertexDataAsync(context + "/targets/" + index, primitive.vertexData, targets[index], function (vertexData) {
  3267. primitive.targetsVertexData[index] = vertexData;
  3268. if (--numRemainingTargets === 0) {
  3269. onSuccess();
  3270. }
  3271. });
  3272. };
  3273. for (var index = 0; index < targets.length; index++) {
  3274. _loop_5(index);
  3275. }
  3276. };
  3277. var this_4 = this;
  3278. for (var _i = 0, _a = mesh.primitives; _i < _a.length; _i++) {
  3279. var primitive = _a[_i];
  3280. _loop_4(primitive);
  3281. }
  3282. };
  3283. GLTFLoader.prototype._loadMorphTargetVertexDataAsync = function (context, vertexData, attributes, onSuccess) {
  3284. var targetVertexData = new BABYLON.VertexData();
  3285. var numRemainingAttributes = Object.keys(attributes).length;
  3286. var _loop_6 = function (attribute) {
  3287. var accessor = GLTFLoader._GetProperty(this_5._gltf.accessors, attributes[attribute]);
  3288. if (!accessor) {
  3289. throw new Error(context + ": Failed to find attribute '" + attribute + "' accessor " + attributes[attribute]);
  3290. }
  3291. this_5._loadAccessorAsync("#/accessors/" + accessor.index, accessor, function (data) {
  3292. // glTF stores morph target information as deltas while babylon.js expects the final data.
  3293. // As a result we have to add the original data to the delta to calculate the final data.
  3294. var values = data;
  3295. switch (attribute) {
  3296. case "POSITION": {
  3297. for (var i = 0; i < values.length; i++) {
  3298. values[i] += vertexData.positions[i];
  3299. }
  3300. targetVertexData.positions = values;
  3301. break;
  3302. }
  3303. case "NORMAL": {
  3304. for (var i = 0; i < values.length; i++) {
  3305. values[i] += vertexData.normals[i];
  3306. }
  3307. targetVertexData.normals = values;
  3308. break;
  3309. }
  3310. case "TANGENT": {
  3311. // Tangent data for morph targets is stored as xyz delta.
  3312. // The vertexData.tangent is stored as xyzw.
  3313. // So we need to skip every fourth vertexData.tangent.
  3314. for (var i = 0, j = 0; i < values.length; i++, j++) {
  3315. values[i] += vertexData.tangents[j];
  3316. if ((i + 1) % 3 == 0) {
  3317. j++;
  3318. }
  3319. }
  3320. targetVertexData.tangents = values;
  3321. break;
  3322. }
  3323. default: {
  3324. BABYLON.Tools.Warn(context + ": Ignoring unrecognized attribute '" + attribute + "'");
  3325. break;
  3326. }
  3327. }
  3328. if (--numRemainingAttributes === 0) {
  3329. onSuccess(targetVertexData);
  3330. }
  3331. });
  3332. };
  3333. var this_5 = this;
  3334. for (var attribute in attributes) {
  3335. _loop_6(attribute);
  3336. }
  3337. };
  3338. GLTFLoader.prototype._loadTransform = function (node) {
  3339. var position = BABYLON.Vector3.Zero();
  3340. var rotation = BABYLON.Quaternion.Identity();
  3341. var scaling = BABYLON.Vector3.One();
  3342. if (node.matrix) {
  3343. var matrix = BABYLON.Matrix.FromArray(node.matrix);
  3344. matrix.decompose(scaling, rotation, position);
  3345. }
  3346. else {
  3347. if (node.translation)
  3348. position = BABYLON.Vector3.FromArray(node.translation);
  3349. if (node.rotation)
  3350. rotation = BABYLON.Quaternion.FromArray(node.rotation);
  3351. if (node.scale)
  3352. scaling = BABYLON.Vector3.FromArray(node.scale);
  3353. }
  3354. node.babylonMesh.position = position;
  3355. node.babylonMesh.rotationQuaternion = rotation;
  3356. node.babylonMesh.scaling = scaling;
  3357. };
  3358. GLTFLoader.prototype._loadSkinAsync = function (context, skin, onSuccess) {
  3359. var _this = this;
  3360. if (skin.babylonSkeleton) {
  3361. onSuccess();
  3362. return;
  3363. }
  3364. var skeletonId = "skeleton" + skin.index;
  3365. skin.babylonSkeleton = new BABYLON.Skeleton(skin.name || skeletonId, skeletonId, this._babylonScene);
  3366. if (skin.inverseBindMatrices == null) {
  3367. this._loadBones(context, skin, null);
  3368. onSuccess();
  3369. }
  3370. else {
  3371. var accessor = GLTFLoader._GetProperty(this._gltf.accessors, skin.inverseBindMatrices);
  3372. if (!accessor) {
  3373. throw new Error(context + ": Failed to find inverse bind matrices attribute " + skin.inverseBindMatrices);
  3374. }
  3375. this._loadAccessorAsync("#/accessors/" + accessor.index, accessor, function (data) {
  3376. _this._loadBones(context, skin, data);
  3377. onSuccess();
  3378. });
  3379. }
  3380. };
  3381. GLTFLoader.prototype._createBone = function (node, skin, parent, localMatrix, baseMatrix, index) {
  3382. var babylonBone = new BABYLON.Bone(node.name || "bone" + node.index, skin.babylonSkeleton, parent, localMatrix, null, baseMatrix, index);
  3383. node.babylonAnimationTargets = node.babylonAnimationTargets || [];
  3384. node.babylonAnimationTargets.push(babylonBone);
  3385. return babylonBone;
  3386. };
  3387. GLTFLoader.prototype._loadBones = function (context, skin, inverseBindMatrixData) {
  3388. var babylonBones = {};
  3389. for (var _i = 0, _a = skin.joints; _i < _a.length; _i++) {
  3390. var index = _a[_i];
  3391. var node = GLTFLoader._GetProperty(this._gltf.nodes, index);
  3392. if (!node) {
  3393. throw new Error(context + ": Failed to find joint " + index);
  3394. }
  3395. this._loadBone(node, skin, inverseBindMatrixData, babylonBones);
  3396. }
  3397. };
  3398. GLTFLoader.prototype._loadBone = function (node, skin, inverseBindMatrixData, babylonBones) {
  3399. var babylonBone = babylonBones[node.index];
  3400. if (babylonBone) {
  3401. return babylonBone;
  3402. }
  3403. var boneIndex = skin.joints.indexOf(node.index);
  3404. var baseMatrix = BABYLON.Matrix.Identity();
  3405. if (inverseBindMatrixData && boneIndex !== -1) {
  3406. baseMatrix = BABYLON.Matrix.FromArray(inverseBindMatrixData, boneIndex * 16);
  3407. baseMatrix.invertToRef(baseMatrix);
  3408. }
  3409. var babylonParentBone = null;
  3410. if (node.parent !== this._rootNode) {
  3411. babylonParentBone = this._loadBone(node.parent, skin, inverseBindMatrixData, babylonBones);
  3412. baseMatrix.multiplyToRef(babylonParentBone.getInvertedAbsoluteTransform(), baseMatrix);
  3413. }
  3414. babylonBone = this._createBone(node, skin, babylonParentBone, this._getNodeMatrix(node), baseMatrix, boneIndex);
  3415. babylonBones[node.index] = babylonBone;
  3416. return babylonBone;
  3417. };
  3418. GLTFLoader.prototype._getNodeMatrix = function (node) {
  3419. return node.matrix ?
  3420. BABYLON.Matrix.FromArray(node.matrix) :
  3421. BABYLON.Matrix.Compose(node.scale ? BABYLON.Vector3.FromArray(node.scale) : BABYLON.Vector3.One(), node.rotation ? BABYLON.Quaternion.FromArray(node.rotation) : BABYLON.Quaternion.Identity(), node.translation ? BABYLON.Vector3.FromArray(node.translation) : BABYLON.Vector3.Zero());
  3422. };
  3423. GLTFLoader.prototype._traverseNodes = function (context, indices, action, parentNode) {
  3424. for (var _i = 0, indices_1 = indices; _i < indices_1.length; _i++) {
  3425. var index = indices_1[_i];
  3426. var node = GLTFLoader._GetProperty(this._gltf.nodes, index);
  3427. if (!node) {
  3428. throw new Error(context + ": Failed to find node " + index);
  3429. }
  3430. this._traverseNode(context, node, action, parentNode);
  3431. }
  3432. };
  3433. GLTFLoader.prototype._traverseNode = function (context, node, action, parentNode) {
  3434. if (GLTF2.GLTFLoaderExtension.TraverseNode(this, context, node, action, parentNode)) {
  3435. return;
  3436. }
  3437. if (!action(node, parentNode)) {
  3438. return;
  3439. }
  3440. if (node.children) {
  3441. this._traverseNodes(context, node.children, action, node);
  3442. }
  3443. };
  3444. GLTFLoader.prototype._loadAnimations = function () {
  3445. var animations = this._gltf.animations;
  3446. if (!animations) {
  3447. return;
  3448. }
  3449. for (var index = 0; index < animations.length; index++) {
  3450. var animation = animations[index];
  3451. this._loadAnimation("#/animations/" + index, animation);
  3452. }
  3453. };
  3454. GLTFLoader.prototype._loadAnimation = function (context, animation) {
  3455. animation.babylonAnimationGroup = new BABYLON.AnimationGroup(animation.name || "animation" + animation.index, this._babylonScene);
  3456. for (var index = 0; index < animation.channels.length; index++) {
  3457. var channel = GLTFLoader._GetProperty(animation.channels, index);
  3458. if (!channel) {
  3459. throw new Error(context + ": Failed to find channel " + index);
  3460. }
  3461. var sampler = GLTFLoader._GetProperty(animation.samplers, channel.sampler);
  3462. if (!sampler) {
  3463. throw new Error(context + ": Failed to find sampler " + channel.sampler);
  3464. }
  3465. this._loadAnimationChannel(animation, context + "/channels/" + index, channel, context + "/samplers/" + channel.sampler, sampler);
  3466. }
  3467. };
  3468. GLTFLoader.prototype._loadAnimationChannel = function (animation, channelContext, channel, samplerContext, sampler) {
  3469. var targetNode = GLTFLoader._GetProperty(this._gltf.nodes, channel.target.node);
  3470. if (!targetNode) {
  3471. throw new Error(channelContext + ": Failed to find target node " + channel.target.node);
  3472. }
  3473. var targetPath;
  3474. var animationType;
  3475. switch (channel.target.path) {
  3476. case "translation": {
  3477. targetPath = "position";
  3478. animationType = BABYLON.Animation.ANIMATIONTYPE_VECTOR3;
  3479. break;
  3480. }
  3481. case "rotation": {
  3482. targetPath = "rotationQuaternion";
  3483. animationType = BABYLON.Animation.ANIMATIONTYPE_QUATERNION;
  3484. break;
  3485. }
  3486. case "scale": {
  3487. targetPath = "scaling";
  3488. animationType = BABYLON.Animation.ANIMATIONTYPE_VECTOR3;
  3489. break;
  3490. }
  3491. case "weights": {
  3492. targetPath = "influence";
  3493. animationType = BABYLON.Animation.ANIMATIONTYPE_FLOAT;
  3494. break;
  3495. }
  3496. default: {
  3497. throw new Error(channelContext + ": Invalid target path " + channel.target.path);
  3498. }
  3499. }
  3500. var inputData;
  3501. var outputData;
  3502. var checkSuccess = function () {
  3503. if (!inputData || !outputData) {
  3504. return;
  3505. }
  3506. var outputBufferOffset = 0;
  3507. var getNextOutputValue;
  3508. switch (targetPath) {
  3509. case "position": {
  3510. getNextOutputValue = function () {
  3511. var value = BABYLON.Vector3.FromArray(outputData, outputBufferOffset);
  3512. outputBufferOffset += 3;
  3513. return value;
  3514. };
  3515. break;
  3516. }
  3517. case "rotationQuaternion": {
  3518. getNextOutputValue = function () {
  3519. var value = BABYLON.Quaternion.FromArray(outputData, outputBufferOffset);
  3520. outputBufferOffset += 4;
  3521. return value;
  3522. };
  3523. break;
  3524. }
  3525. case "scaling": {
  3526. getNextOutputValue = function () {
  3527. var value = BABYLON.Vector3.FromArray(outputData, outputBufferOffset);
  3528. outputBufferOffset += 3;
  3529. return value;
  3530. };
  3531. break;
  3532. }
  3533. case "influence": {
  3534. getNextOutputValue = function () {
  3535. var numTargets = targetNode.babylonMesh.morphTargetManager.numTargets;
  3536. var value = new Array(numTargets);
  3537. for (var i = 0; i < numTargets; i++) {
  3538. value[i] = outputData[outputBufferOffset++];
  3539. }
  3540. return value;
  3541. };
  3542. break;
  3543. }
  3544. }
  3545. sampler.interpolation = sampler.interpolation || "LINEAR";
  3546. var getNextKey;
  3547. switch (sampler.interpolation) {
  3548. case "STEP": {
  3549. getNextKey = function (frameIndex) { return ({
  3550. frame: inputData[frameIndex],
  3551. value: getNextOutputValue(),
  3552. interpolation: BABYLON.AnimationKeyInterpolation.STEP
  3553. }); };
  3554. break;
  3555. }
  3556. case "LINEAR": {
  3557. getNextKey = function (frameIndex) { return ({
  3558. frame: inputData[frameIndex],
  3559. value: getNextOutputValue()
  3560. }); };
  3561. break;
  3562. }
  3563. case "CUBICSPLINE": {
  3564. getNextKey = function (frameIndex) { return ({
  3565. frame: inputData[frameIndex],
  3566. inTangent: getNextOutputValue(),
  3567. value: getNextOutputValue(),
  3568. outTangent: getNextOutputValue()
  3569. }); };
  3570. break;
  3571. }
  3572. default: {
  3573. throw new Error(samplerContext + ": Invalid interpolation " + sampler.interpolation);
  3574. }
  3575. }
  3576. ;
  3577. var keys;
  3578. if (inputData.length === 1) {
  3579. var key = getNextKey(0);
  3580. keys = [
  3581. { frame: key.frame, value: key.value },
  3582. { frame: key.frame + 1, value: key.value }
  3583. ];
  3584. }
  3585. else {
  3586. keys = new Array(inputData.length);
  3587. for (var frameIndex = 0; frameIndex < inputData.length; frameIndex++) {
  3588. keys[frameIndex] = getNextKey(frameIndex);
  3589. }
  3590. }
  3591. if (targetPath === "influence") {
  3592. var morphTargetManager = targetNode.babylonMesh.morphTargetManager;
  3593. var _loop_7 = function (targetIndex) {
  3594. var morphTarget = morphTargetManager.getTarget(targetIndex);
  3595. var animationName = animation.babylonAnimationGroup.name + "_channel" + animation.babylonAnimationGroup.targetedAnimations.length;
  3596. var babylonAnimation = new BABYLON.Animation(animationName, targetPath, 1, animationType);
  3597. babylonAnimation.setKeys(keys.map(function (key) { return ({
  3598. frame: key.frame,
  3599. inTangent: key.inTangent ? key.inTangent[targetIndex] : undefined,
  3600. value: key.value[targetIndex],
  3601. outTangent: key.outTangent ? key.outTangent[targetIndex] : undefined
  3602. }); }));
  3603. animation.babylonAnimationGroup.addTargetedAnimation(babylonAnimation, morphTarget);
  3604. };
  3605. for (var targetIndex = 0; targetIndex < morphTargetManager.numTargets; targetIndex++) {
  3606. _loop_7(targetIndex);
  3607. }
  3608. }
  3609. else {
  3610. var animationName = animation.babylonAnimationGroup.name + "_channel" + animation.babylonAnimationGroup.targetedAnimations.length;
  3611. var babylonAnimation = new BABYLON.Animation(animationName, targetPath, 1, animationType);
  3612. babylonAnimation.setKeys(keys);
  3613. if (targetNode.babylonAnimationTargets) {
  3614. for (var _i = 0, _a = targetNode.babylonAnimationTargets; _i < _a.length; _i++) {
  3615. var target = _a[_i];
  3616. animation.babylonAnimationGroup.addTargetedAnimation(babylonAnimation, target);
  3617. }
  3618. }
  3619. }
  3620. };
  3621. var inputAccessor = GLTFLoader._GetProperty(this._gltf.accessors, sampler.input);
  3622. if (!inputAccessor) {
  3623. throw new Error(samplerContext + ": Failed to find input accessor " + sampler.input);
  3624. }
  3625. this._loadAccessorAsync("#/accessors/" + inputAccessor.index, inputAccessor, function (data) {
  3626. inputData = data;
  3627. checkSuccess();
  3628. });
  3629. var outputAccessor = GLTFLoader._GetProperty(this._gltf.accessors, sampler.output);
  3630. if (!outputAccessor) {
  3631. throw new Error(samplerContext + ": Failed to find output accessor " + sampler.output);
  3632. }
  3633. this._loadAccessorAsync("#/accessors/" + outputAccessor.index, outputAccessor, function (data) {
  3634. outputData = data;
  3635. checkSuccess();
  3636. });
  3637. };
  3638. GLTFLoader.prototype._loadBufferAsync = function (context, buffer, onSuccess) {
  3639. var _this = this;
  3640. this._addPendingData(buffer);
  3641. if (buffer.loadedData) {
  3642. onSuccess(buffer.loadedData);
  3643. this._removePendingData(buffer);
  3644. }
  3645. else if (buffer.loadedObservable) {
  3646. buffer.loadedObservable.add(function (buffer) {
  3647. onSuccess(buffer.loadedData);
  3648. _this._removePendingData(buffer);
  3649. });
  3650. }
  3651. else {
  3652. if (!buffer.uri) {
  3653. throw new Error(context + ": Uri is missing");
  3654. }
  3655. buffer.loadedObservable = new BABYLON.Observable();
  3656. buffer.loadedObservable.add(function (buffer) {
  3657. onSuccess(buffer.loadedData);
  3658. _this._removePendingData(buffer);
  3659. });
  3660. this._loadUriAsync(context, buffer.uri, function (data) {
  3661. buffer.loadedData = data;
  3662. buffer.loadedObservable.notifyObservers(buffer);
  3663. buffer.loadedObservable = undefined;
  3664. });
  3665. }
  3666. };
  3667. GLTFLoader.prototype._loadBufferViewAsync = function (context, bufferView, onSuccess) {
  3668. var buffer = GLTFLoader._GetProperty(this._gltf.buffers, bufferView.buffer);
  3669. if (!buffer) {
  3670. throw new Error(context + ": Failed to find buffer " + bufferView.buffer);
  3671. }
  3672. this._loadBufferAsync("#/buffers/" + buffer.index, buffer, function (bufferData) {
  3673. var data;
  3674. try {
  3675. data = new Uint8Array(bufferData.buffer, bufferData.byteOffset + (bufferView.byteOffset || 0), bufferView.byteLength);
  3676. }
  3677. catch (e) {
  3678. throw new Error(context + ": " + e.message);
  3679. }
  3680. onSuccess(data);
  3681. });
  3682. };
  3683. GLTFLoader.prototype._loadAccessorAsync = function (context, accessor, onSuccess) {
  3684. var _this = this;
  3685. if (accessor.sparse) {
  3686. throw new Error(context + ": Sparse accessors are not currently supported");
  3687. }
  3688. var bufferView = GLTFLoader._GetProperty(this._gltf.bufferViews, accessor.bufferView);
  3689. if (!bufferView) {
  3690. throw new Error(context + ": Failed to find buffer view " + accessor.bufferView);
  3691. }
  3692. this._loadBufferViewAsync("#/bufferViews/" + bufferView.index, bufferView, function (bufferViewData) {
  3693. var numComponents = GLTFLoader._GetNumComponents(context, accessor.type);
  3694. var data;
  3695. var byteOffset = accessor.byteOffset || 0;
  3696. var byteStride = bufferView.byteStride;
  3697. if (byteStride === 0) {
  3698. BABYLON.Tools.Warn(context + ": Byte stride of 0 is not valid");
  3699. }
  3700. try {
  3701. switch (accessor.componentType) {
  3702. case GLTF2.EComponentType.BYTE: {
  3703. data = _this._buildArrayBuffer(Float32Array, bufferViewData, byteOffset, accessor.count, numComponents, byteStride);
  3704. break;
  3705. }
  3706. case GLTF2.EComponentType.UNSIGNED_BYTE: {
  3707. data = _this._buildArrayBuffer(Uint8Array, bufferViewData, byteOffset, accessor.count, numComponents, byteStride);
  3708. break;
  3709. }
  3710. case GLTF2.EComponentType.SHORT: {
  3711. data = _this._buildArrayBuffer(Int16Array, bufferViewData, byteOffset, accessor.count, numComponents, byteStride);
  3712. break;
  3713. }
  3714. case GLTF2.EComponentType.UNSIGNED_SHORT: {
  3715. data = _this._buildArrayBuffer(Uint16Array, bufferViewData, byteOffset, accessor.count, numComponents, byteStride);
  3716. break;
  3717. }
  3718. case GLTF2.EComponentType.UNSIGNED_INT: {
  3719. data = _this._buildArrayBuffer(Uint32Array, bufferViewData, byteOffset, accessor.count, numComponents, byteStride);
  3720. break;
  3721. }
  3722. case GLTF2.EComponentType.FLOAT: {
  3723. data = _this._buildArrayBuffer(Float32Array, bufferViewData, byteOffset, accessor.count, numComponents, byteStride);
  3724. break;
  3725. }
  3726. default: {
  3727. throw new Error(context + ": Invalid component type " + accessor.componentType);
  3728. }
  3729. }
  3730. }
  3731. catch (e) {
  3732. throw new Error(context + ": " + e);
  3733. }
  3734. onSuccess(data);
  3735. });
  3736. };
  3737. GLTFLoader.prototype._buildArrayBuffer = function (typedArray, data, byteOffset, count, numComponents, byteStride) {
  3738. byteOffset += data.byteOffset;
  3739. var targetLength = count * numComponents;
  3740. if (!byteStride || byteStride === numComponents * typedArray.BYTES_PER_ELEMENT) {
  3741. return new typedArray(data.buffer, byteOffset, targetLength);
  3742. }
  3743. var elementStride = byteStride / typedArray.BYTES_PER_ELEMENT;
  3744. var sourceBuffer = new typedArray(data.buffer, byteOffset, elementStride * count);
  3745. var targetBuffer = new typedArray(targetLength);
  3746. var sourceIndex = 0;
  3747. var targetIndex = 0;
  3748. while (targetIndex < targetLength) {
  3749. for (var componentIndex = 0; componentIndex < numComponents; componentIndex++) {
  3750. targetBuffer[targetIndex] = sourceBuffer[sourceIndex + componentIndex];
  3751. targetIndex++;
  3752. }
  3753. sourceIndex += elementStride;
  3754. }
  3755. return targetBuffer;
  3756. };
  3757. GLTFLoader.prototype._addPendingData = function (data) {
  3758. if (!this._renderReady) {
  3759. this._renderPendingCount++;
  3760. }
  3761. this._addLoaderPendingData(data);
  3762. };
  3763. GLTFLoader.prototype._removePendingData = function (data) {
  3764. var _this = this;
  3765. if (!this._renderReady) {
  3766. if (--this._renderPendingCount === 0) {
  3767. this._addLoaderPendingData(this);
  3768. this._compileMaterialsAsync(function () {
  3769. _this._compileShadowGeneratorsAsync(function () {
  3770. _this._removeLoaderPendingData(_this);
  3771. _this._renderReady = true;
  3772. _this._onRenderReady();
  3773. });
  3774. });
  3775. }
  3776. }
  3777. this._removeLoaderPendingData(data);
  3778. };
  3779. GLTFLoader.prototype._addLoaderPendingData = function (data) {
  3780. this._loaderPendingCount++;
  3781. for (var _i = 0, _a = this._loaderTrackers; _i < _a.length; _i++) {
  3782. var tracker = _a[_i];
  3783. tracker._addPendingData(data);
  3784. }
  3785. };
  3786. GLTFLoader.prototype._removeLoaderPendingData = function (data) {
  3787. for (var _i = 0, _a = this._loaderTrackers; _i < _a.length; _i++) {
  3788. var tracker = _a[_i];
  3789. tracker._removePendingData(data);
  3790. }
  3791. if (--this._loaderPendingCount === 0) {
  3792. this._onComplete();
  3793. }
  3794. };
  3795. GLTFLoader.prototype._whenAction = function (action, onComplete) {
  3796. var _this = this;
  3797. var tracker = new GLTFLoaderTracker(function () {
  3798. _this._loaderTrackers.splice(_this._loaderTrackers.indexOf(tracker), 1);
  3799. onComplete();
  3800. });
  3801. this._loaderTrackers.push(tracker);
  3802. this._addLoaderPendingData(tracker);
  3803. action();
  3804. this._removeLoaderPendingData(tracker);
  3805. };
  3806. GLTFLoader.prototype._getDefaultMaterial = function () {
  3807. if (!this._defaultMaterial) {
  3808. var id = "__gltf_default";
  3809. var material = this._babylonScene.getMaterialByName(id);
  3810. if (!material) {
  3811. material = new BABYLON.PBRMaterial(id, this._babylonScene);
  3812. material.transparencyMode = BABYLON.PBRMaterial.PBRMATERIAL_OPAQUE;
  3813. material.sideOrientation = BABYLON.Material.ClockWiseSideOrientation;
  3814. material.metallic = 1;
  3815. material.roughness = 1;
  3816. }
  3817. this._defaultMaterial = material;
  3818. }
  3819. return this._defaultMaterial;
  3820. };
  3821. GLTFLoader.prototype._loadMaterialMetallicRoughnessProperties = function (context, material) {
  3822. var babylonMaterial = material.babylonMaterial;
  3823. // Ensure metallic workflow
  3824. babylonMaterial.metallic = 1;
  3825. babylonMaterial.roughness = 1;
  3826. var properties = material.pbrMetallicRoughness;
  3827. if (!properties) {
  3828. return;
  3829. }
  3830. babylonMaterial.albedoColor = properties.baseColorFactor ? BABYLON.Color3.FromArray(properties.baseColorFactor) : new BABYLON.Color3(1, 1, 1);
  3831. babylonMaterial.metallic = properties.metallicFactor == null ? 1 : properties.metallicFactor;
  3832. babylonMaterial.roughness = properties.roughnessFactor == null ? 1 : properties.roughnessFactor;
  3833. if (properties.baseColorTexture) {
  3834. var texture = GLTFLoader._GetProperty(this._gltf.textures, properties.baseColorTexture.index);
  3835. if (!texture) {
  3836. throw new Error(context + ": Failed to find base color texture " + properties.baseColorTexture.index);
  3837. }
  3838. babylonMaterial.albedoTexture = this._loadTexture("#/textures/" + texture.index, texture, properties.baseColorTexture.texCoord);
  3839. }
  3840. if (properties.metallicRoughnessTexture) {
  3841. var texture = GLTFLoader._GetProperty(this._gltf.textures, properties.metallicRoughnessTexture.index);
  3842. if (!texture) {
  3843. throw new Error(context + ": Failed to find metallic roughness texture " + properties.metallicRoughnessTexture.index);
  3844. }
  3845. babylonMaterial.metallicTexture = this._loadTexture("#/textures/" + texture.index, texture, properties.metallicRoughnessTexture.texCoord);
  3846. babylonMaterial.useMetallnessFromMetallicTextureBlue = true;
  3847. babylonMaterial.useRoughnessFromMetallicTextureGreen = true;
  3848. babylonMaterial.useRoughnessFromMetallicTextureAlpha = false;
  3849. }
  3850. this._loadMaterialAlphaProperties(context, material, properties.baseColorFactor);
  3851. };
  3852. GLTFLoader.prototype._loadMaterial = function (context, material, assign) {
  3853. if (material.babylonMaterial) {
  3854. assign(material.babylonMaterial, false);
  3855. return;
  3856. }
  3857. if (GLTF2.GLTFLoaderExtension.LoadMaterial(this, context, material, assign)) {
  3858. return;
  3859. }
  3860. this._createPbrMaterial(material);
  3861. this._loadMaterialBaseProperties(context, material);
  3862. this._loadMaterialMetallicRoughnessProperties(context, material);
  3863. assign(material.babylonMaterial, true);
  3864. };
  3865. GLTFLoader.prototype._createPbrMaterial = function (material) {
  3866. var babylonMaterial = new BABYLON.PBRMaterial(material.name || "mat" + material.index, this._babylonScene);
  3867. babylonMaterial.sideOrientation = BABYLON.Material.ClockWiseSideOrientation;
  3868. material.babylonMaterial = babylonMaterial;
  3869. };
  3870. GLTFLoader.prototype._loadMaterialBaseProperties = function (context, material) {
  3871. var babylonMaterial = material.babylonMaterial;
  3872. babylonMaterial.emissiveColor = material.emissiveFactor ? BABYLON.Color3.FromArray(material.emissiveFactor) : new BABYLON.Color3(0, 0, 0);
  3873. if (material.doubleSided) {
  3874. babylonMaterial.backFaceCulling = false;
  3875. babylonMaterial.twoSidedLighting = true;
  3876. }
  3877. if (material.normalTexture) {
  3878. var texture = GLTFLoader._GetProperty(this._gltf.textures, material.normalTexture.index);
  3879. if (!texture) {
  3880. throw new Error(context + ": Failed to find normal texture " + material.normalTexture.index);
  3881. }
  3882. babylonMaterial.bumpTexture = this._loadTexture("#/textures/" + texture.index, texture, material.normalTexture.texCoord);
  3883. babylonMaterial.invertNormalMapX = !this._babylonScene.useRightHandedSystem;
  3884. babylonMaterial.invertNormalMapY = this._babylonScene.useRightHandedSystem;
  3885. if (material.normalTexture.scale != null) {
  3886. babylonMaterial.bumpTexture.level = material.normalTexture.scale;
  3887. }
  3888. }
  3889. if (material.occlusionTexture) {
  3890. var texture = GLTFLoader._GetProperty(this._gltf.textures, material.occlusionTexture.index);
  3891. if (!texture) {
  3892. throw new Error(context + ": Failed to find occlusion texture " + material.occlusionTexture.index);
  3893. }
  3894. babylonMaterial.ambientTexture = this._loadTexture("#/textures/" + texture.index, texture, material.occlusionTexture.texCoord);
  3895. babylonMaterial.useAmbientInGrayScale = true;
  3896. if (material.occlusionTexture.strength != null) {
  3897. babylonMaterial.ambientTextureStrength = material.occlusionTexture.strength;
  3898. }
  3899. }
  3900. if (material.emissiveTexture) {
  3901. var texture = GLTFLoader._GetProperty(this._gltf.textures, material.emissiveTexture.index);
  3902. if (!texture) {
  3903. throw new Error(context + ": Failed to find emissive texture " + material.emissiveTexture.index);
  3904. }
  3905. babylonMaterial.emissiveTexture = this._loadTexture("#/textures/" + texture.index, texture, material.emissiveTexture.texCoord);
  3906. }
  3907. };
  3908. GLTFLoader.prototype._loadMaterialAlphaProperties = function (context, material, colorFactor) {
  3909. var babylonMaterial = material.babylonMaterial;
  3910. var alphaMode = material.alphaMode || "OPAQUE";
  3911. switch (alphaMode) {
  3912. case "OPAQUE": {
  3913. babylonMaterial.transparencyMode = BABYLON.PBRMaterial.PBRMATERIAL_OPAQUE;
  3914. break;
  3915. }
  3916. case "MASK": {
  3917. babylonMaterial.transparencyMode = BABYLON.PBRMaterial.PBRMATERIAL_ALPHATEST;
  3918. babylonMaterial.alphaCutOff = (material.alphaCutoff == null ? 0.5 : material.alphaCutoff);
  3919. if (colorFactor) {
  3920. if (colorFactor[3] == 0) {
  3921. babylonMaterial.alphaCutOff = 1;
  3922. }
  3923. else {
  3924. babylonMaterial.alphaCutOff /= colorFactor[3];
  3925. }
  3926. }
  3927. if (babylonMaterial.albedoTexture) {
  3928. babylonMaterial.albedoTexture.hasAlpha = true;
  3929. }
  3930. break;
  3931. }
  3932. case "BLEND": {
  3933. babylonMaterial.transparencyMode = BABYLON.PBRMaterial.PBRMATERIAL_ALPHABLEND;
  3934. if (colorFactor) {
  3935. babylonMaterial.alpha = colorFactor[3];
  3936. }
  3937. if (babylonMaterial.albedoTexture) {
  3938. babylonMaterial.albedoTexture.hasAlpha = true;
  3939. babylonMaterial.useAlphaFromAlbedoTexture = true;
  3940. }
  3941. break;
  3942. }
  3943. default: {
  3944. throw new Error(context + ": Invalid alpha mode " + material.alphaMode);
  3945. }
  3946. }
  3947. };
  3948. GLTFLoader.prototype._loadTexture = function (context, texture, coordinatesIndex) {
  3949. var _this = this;
  3950. var sampler = (texture.sampler == undefined ? this._defaultSampler : GLTFLoader._GetProperty(this._gltf.samplers, texture.sampler));
  3951. if (!sampler) {
  3952. throw new Error(context + ": Failed to find sampler " + texture.sampler);
  3953. }
  3954. this._loadSampler("#/samplers/" + sampler.index, sampler);
  3955. this._addPendingData(texture);
  3956. var babylonTexture = new BABYLON.Texture(null, this._babylonScene, sampler.noMipMaps, false, sampler.samplingMode, function () {
  3957. _this._tryCatchOnError(function () {
  3958. _this._removePendingData(texture);
  3959. });
  3960. }, function (message) {
  3961. _this._tryCatchOnError(function () {
  3962. throw new Error(context + ": " + message);
  3963. });
  3964. });
  3965. if (texture.url) {
  3966. babylonTexture.updateURL(texture.url);
  3967. }
  3968. else if (texture.dataReadyObservable) {
  3969. texture.dataReadyObservable.add(function (texture) {
  3970. babylonTexture.updateURL(texture.url);
  3971. });
  3972. }
  3973. else {
  3974. texture.dataReadyObservable = new BABYLON.Observable();
  3975. texture.dataReadyObservable.add(function (texture) {
  3976. babylonTexture.updateURL(texture.url);
  3977. });
  3978. var image_1 = GLTFLoader._GetProperty(this._gltf.images, texture.source);
  3979. if (!image_1) {
  3980. throw new Error(context + ": Failed to find source " + texture.source);
  3981. }
  3982. this._loadImageAsync("#/images/" + image_1.index, image_1, function (data) {
  3983. texture.url = URL.createObjectURL(new Blob([data], { type: image_1.mimeType }));
  3984. texture.dataReadyObservable.notifyObservers(texture);
  3985. texture.dataReadyObservable = undefined;
  3986. });
  3987. }
  3988. babylonTexture.coordinatesIndex = coordinatesIndex || 0;
  3989. babylonTexture.wrapU = sampler.wrapU;
  3990. babylonTexture.wrapV = sampler.wrapV;
  3991. babylonTexture.name = texture.name || "texture" + texture.index;
  3992. this.onTextureLoadedObservable.notifyObservers(babylonTexture);
  3993. return babylonTexture;
  3994. };
  3995. GLTFLoader.prototype._loadSampler = function (context, sampler) {
  3996. if (sampler.noMipMaps != undefined) {
  3997. return;
  3998. }
  3999. sampler.noMipMaps = (sampler.minFilter === GLTF2.ETextureMinFilter.NEAREST || sampler.minFilter === GLTF2.ETextureMinFilter.LINEAR);
  4000. sampler.samplingMode = GLTFLoader._GetTextureSamplingMode(context, sampler.magFilter, sampler.minFilter);
  4001. sampler.wrapU = GLTFLoader._GetTextureWrapMode(context, sampler.wrapS);
  4002. sampler.wrapV = GLTFLoader._GetTextureWrapMode(context, sampler.wrapT);
  4003. };
  4004. GLTFLoader.prototype._loadImageAsync = function (context, image, onSuccess) {
  4005. if (image.uri) {
  4006. this._loadUriAsync(context, image.uri, onSuccess);
  4007. }
  4008. else {
  4009. var bufferView = GLTFLoader._GetProperty(this._gltf.bufferViews, image.bufferView);
  4010. if (!bufferView) {
  4011. throw new Error(context + ": Failed to find buffer view " + image.bufferView);
  4012. }
  4013. this._loadBufferViewAsync("#/bufferViews/" + bufferView.index, bufferView, onSuccess);
  4014. }
  4015. };
  4016. GLTFLoader.prototype._loadUriAsync = function (context, uri, onSuccess) {
  4017. var _this = this;
  4018. if (GLTF2.GLTFUtils.IsBase64(uri)) {
  4019. onSuccess(new Uint8Array(GLTF2.GLTFUtils.DecodeBase64(uri)));
  4020. return;
  4021. }
  4022. if (!GLTF2.GLTFUtils.ValidateUri(uri)) {
  4023. throw new Error(context + ": Uri '" + uri + "' is invalid");
  4024. }
  4025. var request = BABYLON.Tools.LoadFile(this._rootUrl + uri, function (data) {
  4026. _this._tryCatchOnError(function () {
  4027. onSuccess(new Uint8Array(data));
  4028. });
  4029. }, function (event) {
  4030. _this._tryCatchOnError(function () {
  4031. if (request && !_this._renderReady) {
  4032. request._lengthComputable = event.lengthComputable;
  4033. request._loaded = event.loaded;
  4034. request._total = event.total;
  4035. _this._onProgress();
  4036. }
  4037. });
  4038. }, this._babylonScene.database, true, function (request, exception) {
  4039. _this._tryCatchOnError(function () {
  4040. throw new BABYLON.LoadFileError(context + ": Failed to load '" + uri + "'" + (request ? ": " + request.status + " " + request.statusText : ""), request);
  4041. });
  4042. });
  4043. this._requests.push(request);
  4044. request.onCompleteObservable.add(function () {
  4045. _this._requests.splice(_this._requests.indexOf(request), 1);
  4046. });
  4047. };
  4048. GLTFLoader.prototype._tryCatchOnError = function (handler) {
  4049. if (this._disposed) {
  4050. return;
  4051. }
  4052. try {
  4053. handler();
  4054. }
  4055. catch (e) {
  4056. BABYLON.Tools.Error("glTF Loader: " + e.message);
  4057. if (this._errorCallback) {
  4058. this._errorCallback(e.message, e);
  4059. }
  4060. this.dispose();
  4061. }
  4062. };
  4063. GLTFLoader._AssignIndices = function (array) {
  4064. if (array) {
  4065. for (var index = 0; index < array.length; index++) {
  4066. array[index].index = index;
  4067. }
  4068. }
  4069. };
  4070. GLTFLoader._GetProperty = function (array, index) {
  4071. if (!array || index == undefined || !array[index]) {
  4072. return null;
  4073. }
  4074. return array[index];
  4075. };
  4076. GLTFLoader._GetTextureWrapMode = function (context, mode) {
  4077. // Set defaults if undefined
  4078. mode = mode == undefined ? GLTF2.ETextureWrapMode.REPEAT : mode;
  4079. switch (mode) {
  4080. case GLTF2.ETextureWrapMode.CLAMP_TO_EDGE: return BABYLON.Texture.CLAMP_ADDRESSMODE;
  4081. case GLTF2.ETextureWrapMode.MIRRORED_REPEAT: return BABYLON.Texture.MIRROR_ADDRESSMODE;
  4082. case GLTF2.ETextureWrapMode.REPEAT: return BABYLON.Texture.WRAP_ADDRESSMODE;
  4083. default:
  4084. BABYLON.Tools.Warn(context + ": Invalid texture wrap mode " + mode);
  4085. return BABYLON.Texture.WRAP_ADDRESSMODE;
  4086. }
  4087. };
  4088. GLTFLoader._GetTextureSamplingMode = function (context, magFilter, minFilter) {
  4089. // Set defaults if undefined
  4090. magFilter = magFilter == undefined ? GLTF2.ETextureMagFilter.LINEAR : magFilter;
  4091. minFilter = minFilter == undefined ? GLTF2.ETextureMinFilter.LINEAR_MIPMAP_LINEAR : minFilter;
  4092. if (magFilter === GLTF2.ETextureMagFilter.LINEAR) {
  4093. switch (minFilter) {
  4094. case GLTF2.ETextureMinFilter.NEAREST: return BABYLON.Texture.LINEAR_NEAREST;
  4095. case GLTF2.ETextureMinFilter.LINEAR: return BABYLON.Texture.LINEAR_LINEAR;
  4096. case GLTF2.ETextureMinFilter.NEAREST_MIPMAP_NEAREST: return BABYLON.Texture.LINEAR_NEAREST_MIPNEAREST;
  4097. case GLTF2.ETextureMinFilter.LINEAR_MIPMAP_NEAREST: return BABYLON.Texture.LINEAR_LINEAR_MIPNEAREST;
  4098. case GLTF2.ETextureMinFilter.NEAREST_MIPMAP_LINEAR: return BABYLON.Texture.LINEAR_NEAREST_MIPLINEAR;
  4099. case GLTF2.ETextureMinFilter.LINEAR_MIPMAP_LINEAR: return BABYLON.Texture.LINEAR_LINEAR_MIPLINEAR;
  4100. default:
  4101. BABYLON.Tools.Warn(context + ": Invalid texture minification filter " + minFilter);
  4102. return BABYLON.Texture.LINEAR_LINEAR_MIPLINEAR;
  4103. }
  4104. }
  4105. else {
  4106. if (magFilter !== GLTF2.ETextureMagFilter.NEAREST) {
  4107. BABYLON.Tools.Warn(context + ": Invalid texture magnification filter " + magFilter);
  4108. }
  4109. switch (minFilter) {
  4110. case GLTF2.ETextureMinFilter.NEAREST: return BABYLON.Texture.NEAREST_NEAREST;
  4111. case GLTF2.ETextureMinFilter.LINEAR: return BABYLON.Texture.NEAREST_LINEAR;
  4112. case GLTF2.ETextureMinFilter.NEAREST_MIPMAP_NEAREST: return BABYLON.Texture.NEAREST_NEAREST_MIPNEAREST;
  4113. case GLTF2.ETextureMinFilter.LINEAR_MIPMAP_NEAREST: return BABYLON.Texture.NEAREST_LINEAR_MIPNEAREST;
  4114. case GLTF2.ETextureMinFilter.NEAREST_MIPMAP_LINEAR: return BABYLON.Texture.NEAREST_NEAREST_MIPLINEAR;
  4115. case GLTF2.ETextureMinFilter.LINEAR_MIPMAP_LINEAR: return BABYLON.Texture.NEAREST_LINEAR_MIPLINEAR;
  4116. default:
  4117. BABYLON.Tools.Warn(context + ": Invalid texture minification filter " + minFilter);
  4118. return BABYLON.Texture.NEAREST_NEAREST_MIPNEAREST;
  4119. }
  4120. }
  4121. };
  4122. GLTFLoader._GetNumComponents = function (context, type) {
  4123. switch (type) {
  4124. case "SCALAR": return 1;
  4125. case "VEC2": return 2;
  4126. case "VEC3": return 3;
  4127. case "VEC4": return 4;
  4128. case "MAT2": return 4;
  4129. case "MAT3": return 9;
  4130. case "MAT4": return 16;
  4131. }
  4132. throw new Error(context + ": Invalid type " + type);
  4133. };
  4134. GLTFLoader.prototype._compileMaterialAsync = function (babylonMaterial, babylonMesh, onSuccess) {
  4135. var _this = this;
  4136. if (this.useClipPlane) {
  4137. babylonMaterial.forceCompilation(babylonMesh, function () {
  4138. babylonMaterial.forceCompilation(babylonMesh, function () {
  4139. _this._tryCatchOnError(onSuccess);
  4140. }, { clipPlane: true });
  4141. });
  4142. }
  4143. else {
  4144. babylonMaterial.forceCompilation(babylonMesh, function () {
  4145. _this._tryCatchOnError(onSuccess);
  4146. });
  4147. }
  4148. };
  4149. GLTFLoader.prototype._compileMaterialsAsync = function (onSuccess) {
  4150. if (!this.compileMaterials || !this._gltf.materials) {
  4151. onSuccess();
  4152. return;
  4153. }
  4154. var meshes = this._getMeshes();
  4155. var remaining = 0;
  4156. for (var _i = 0, meshes_1 = meshes; _i < meshes_1.length; _i++) {
  4157. var mesh = meshes_1[_i];
  4158. if (mesh.material instanceof BABYLON.MultiMaterial) {
  4159. for (var _a = 0, _b = mesh.material.subMaterials; _a < _b.length; _a++) {
  4160. var subMaterial = _b[_a];
  4161. if (subMaterial) {
  4162. remaining++;
  4163. }
  4164. }
  4165. }
  4166. else if (mesh.material) {
  4167. remaining++;
  4168. }
  4169. }
  4170. if (remaining === 0) {
  4171. onSuccess();
  4172. return;
  4173. }
  4174. for (var _c = 0, meshes_2 = meshes; _c < meshes_2.length; _c++) {
  4175. var mesh = meshes_2[_c];
  4176. if (mesh.material instanceof BABYLON.MultiMaterial) {
  4177. for (var _d = 0, _e = mesh.material.subMaterials; _d < _e.length; _d++) {
  4178. var subMaterial = _e[_d];
  4179. if (subMaterial) {
  4180. this._compileMaterialAsync(subMaterial, mesh, function () {
  4181. if (--remaining === 0) {
  4182. onSuccess();
  4183. }
  4184. });
  4185. }
  4186. }
  4187. }
  4188. else if (mesh.material) {
  4189. this._compileMaterialAsync(mesh.material, mesh, function () {
  4190. if (--remaining === 0) {
  4191. onSuccess();
  4192. }
  4193. });
  4194. }
  4195. }
  4196. };
  4197. GLTFLoader.prototype._compileShadowGeneratorsAsync = function (onSuccess) {
  4198. var _this = this;
  4199. if (!this.compileShadowGenerators) {
  4200. onSuccess();
  4201. return;
  4202. }
  4203. var lights = this._babylonScene.lights;
  4204. var remaining = 0;
  4205. for (var _i = 0, lights_1 = lights; _i < lights_1.length; _i++) {
  4206. var light = lights_1[_i];
  4207. var generator = light.getShadowGenerator();
  4208. if (generator) {
  4209. remaining++;
  4210. }
  4211. }
  4212. if (remaining === 0) {
  4213. onSuccess();
  4214. return;
  4215. }
  4216. for (var _a = 0, lights_2 = lights; _a < lights_2.length; _a++) {
  4217. var light = lights_2[_a];
  4218. var generator = light.getShadowGenerator();
  4219. if (generator) {
  4220. generator.forceCompilation(function () {
  4221. if (--remaining === 0) {
  4222. _this._tryCatchOnError(onSuccess);
  4223. }
  4224. });
  4225. }
  4226. }
  4227. };
  4228. GLTFLoader.prototype._abortRequests = function () {
  4229. for (var _i = 0, _a = this._requests; _i < _a.length; _i++) {
  4230. var request = _a[_i];
  4231. request.abort();
  4232. }
  4233. this._requests.length = 0;
  4234. };
  4235. GLTFLoader.prototype._releaseResources = function () {
  4236. if (this._gltf.textures) {
  4237. for (var _i = 0, _a = this._gltf.textures; _i < _a.length; _i++) {
  4238. var texture = _a[_i];
  4239. if (texture.url) {
  4240. URL.revokeObjectURL(texture.url);
  4241. texture.url = undefined;
  4242. }
  4243. }
  4244. }
  4245. };
  4246. GLTFLoader.Extensions = {};
  4247. return GLTFLoader;
  4248. }());
  4249. GLTF2.GLTFLoader = GLTFLoader;
  4250. BABYLON.GLTFFileLoader.CreateGLTFLoaderV2 = function () { return new GLTFLoader(); };
  4251. })(GLTF2 = BABYLON.GLTF2 || (BABYLON.GLTF2 = {}));
  4252. })(BABYLON || (BABYLON = {}));
  4253. //# sourceMappingURL=babylon.glTFLoader.js.map
  4254. /// <reference path="../../../../dist/preview release/babylon.d.ts"/>
  4255. var BABYLON;
  4256. (function (BABYLON) {
  4257. var GLTF2;
  4258. (function (GLTF2) {
  4259. /**
  4260. * Utils functions for GLTF
  4261. */
  4262. var GLTFUtils = /** @class */ (function () {
  4263. function GLTFUtils() {
  4264. }
  4265. /**
  4266. * If the uri is a base64 string
  4267. * @param uri: the uri to test
  4268. */
  4269. GLTFUtils.IsBase64 = function (uri) {
  4270. return uri.length < 5 ? false : uri.substr(0, 5) === "data:";
  4271. };
  4272. /**
  4273. * Decode the base64 uri
  4274. * @param uri: the uri to decode
  4275. */
  4276. GLTFUtils.DecodeBase64 = function (uri) {
  4277. var decodedString = atob(uri.split(",")[1]);
  4278. var bufferLength = decodedString.length;
  4279. var bufferView = new Uint8Array(new ArrayBuffer(bufferLength));
  4280. for (var i = 0; i < bufferLength; i++) {
  4281. bufferView[i] = decodedString.charCodeAt(i);
  4282. }
  4283. return bufferView.buffer;
  4284. };
  4285. GLTFUtils.ValidateUri = function (uri) {
  4286. return (uri.indexOf("..") === -1);
  4287. };
  4288. return GLTFUtils;
  4289. }());
  4290. GLTF2.GLTFUtils = GLTFUtils;
  4291. })(GLTF2 = BABYLON.GLTF2 || (BABYLON.GLTF2 = {}));
  4292. })(BABYLON || (BABYLON = {}));
  4293. //# sourceMappingURL=babylon.glTFLoaderUtils.js.map
  4294. /// <reference path="../../../../dist/preview release/babylon.d.ts"/>
  4295. var BABYLON;
  4296. (function (BABYLON) {
  4297. var GLTF2;
  4298. (function (GLTF2) {
  4299. var GLTFLoaderExtension = /** @class */ (function () {
  4300. function GLTFLoaderExtension() {
  4301. this.enabled = true;
  4302. }
  4303. GLTFLoaderExtension.prototype._traverseNode = function (loader, context, node, action, parentNode) { return false; };
  4304. GLTFLoaderExtension.prototype._loadNode = function (loader, context, node) { return false; };
  4305. GLTFLoaderExtension.prototype._loadMaterial = function (loader, context, material, assign) { return false; };
  4306. GLTFLoaderExtension.prototype._loadExtension = function (context, property, action) {
  4307. var _this = this;
  4308. if (!property.extensions) {
  4309. return false;
  4310. }
  4311. var extension = property.extensions[this.name];
  4312. if (!extension) {
  4313. return false;
  4314. }
  4315. // Clear out the extension before executing the action to avoid recursing into the same property.
  4316. property.extensions[this.name] = undefined;
  4317. action(context + "extensions/" + this.name, extension, function () {
  4318. // Restore the extension after completing the action.
  4319. property.extensions[_this.name] = extension;
  4320. });
  4321. return true;
  4322. };
  4323. GLTFLoaderExtension.TraverseNode = function (loader, context, node, action, parentNode) {
  4324. return this._ApplyExtensions(function (extension) { return extension._traverseNode(loader, context, node, action, parentNode); });
  4325. };
  4326. GLTFLoaderExtension.LoadNode = function (loader, context, node) {
  4327. return this._ApplyExtensions(function (extension) { return extension._loadNode(loader, context, node); });
  4328. };
  4329. GLTFLoaderExtension.LoadMaterial = function (loader, context, material, assign) {
  4330. return this._ApplyExtensions(function (extension) { return extension._loadMaterial(loader, context, material, assign); });
  4331. };
  4332. GLTFLoaderExtension._ApplyExtensions = function (action) {
  4333. var extensions = GLTFLoaderExtension._Extensions;
  4334. if (!extensions) {
  4335. return false;
  4336. }
  4337. for (var _i = 0, extensions_1 = extensions; _i < extensions_1.length; _i++) {
  4338. var extension = extensions_1[_i];
  4339. if (extension.enabled && action(extension)) {
  4340. return true;
  4341. }
  4342. }
  4343. return false;
  4344. };
  4345. //
  4346. // Utilities
  4347. //
  4348. GLTFLoaderExtension._Extensions = [];
  4349. return GLTFLoaderExtension;
  4350. }());
  4351. GLTF2.GLTFLoaderExtension = GLTFLoaderExtension;
  4352. })(GLTF2 = BABYLON.GLTF2 || (BABYLON.GLTF2 = {}));
  4353. })(BABYLON || (BABYLON = {}));
  4354. //# sourceMappingURL=babylon.glTFLoaderExtension.js.map
  4355. /// <reference path="../../../../../dist/preview release/babylon.d.ts"/>
  4356. var __extends = (this && this.__extends) || (function () {
  4357. var extendStatics = Object.setPrototypeOf ||
  4358. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  4359. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  4360. return function (d, b) {
  4361. extendStatics(d, b);
  4362. function __() { this.constructor = d; }
  4363. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  4364. };
  4365. })();
  4366. var BABYLON;
  4367. (function (BABYLON) {
  4368. var GLTF2;
  4369. (function (GLTF2) {
  4370. var Extensions;
  4371. (function (Extensions) {
  4372. // See https://github.com/sbtron/glTF/tree/MSFT_lod/extensions/Vendor/MSFT_lod for more information about this extension.
  4373. var MSFTLOD = /** @class */ (function (_super) {
  4374. __extends(MSFTLOD, _super);
  4375. function MSFTLOD() {
  4376. var _this = _super !== null && _super.apply(this, arguments) || this;
  4377. /**
  4378. * Specify the minimal delay between LODs in ms (default = 250)
  4379. */
  4380. _this.Delay = 250;
  4381. return _this;
  4382. }
  4383. Object.defineProperty(MSFTLOD.prototype, "name", {
  4384. get: function () {
  4385. return "MSFT_lod";
  4386. },
  4387. enumerable: true,
  4388. configurable: true
  4389. });
  4390. MSFTLOD.prototype._traverseNode = function (loader, context, node, action, parentNode) {
  4391. return this._loadExtension(context, node, function (context, extension, onComplete) {
  4392. for (var i = extension.ids.length - 1; i >= 0; i--) {
  4393. var lodNode = GLTF2.GLTFLoader._GetProperty(loader._gltf.nodes, extension.ids[i]);
  4394. if (!lodNode) {
  4395. throw new Error(context + ": Failed to find node " + extension.ids[i]);
  4396. }
  4397. loader._traverseNode(context, lodNode, action, parentNode);
  4398. }
  4399. loader._traverseNode(context, node, action, parentNode);
  4400. onComplete();
  4401. });
  4402. };
  4403. MSFTLOD.prototype._loadNode = function (loader, context, node) {
  4404. var _this = this;
  4405. return this._loadExtension(context, node, function (context, extension, onComplete) {
  4406. var nodes = [node];
  4407. for (var _i = 0, _a = extension.ids; _i < _a.length; _i++) {
  4408. var index = _a[_i];
  4409. var lodNode = GLTF2.GLTFLoader._GetProperty(loader._gltf.nodes, index);
  4410. if (!lodNode) {
  4411. throw new Error(context + ": Failed to find node " + index);
  4412. }
  4413. nodes.push(lodNode);
  4414. }
  4415. loader._addLoaderPendingData(node);
  4416. _this._loadNodeLOD(loader, context, nodes, nodes.length - 1, function () {
  4417. loader._removeLoaderPendingData(node);
  4418. onComplete();
  4419. });
  4420. });
  4421. };
  4422. MSFTLOD.prototype._loadNodeLOD = function (loader, context, nodes, index, onComplete) {
  4423. var _this = this;
  4424. loader._whenAction(function () {
  4425. loader._loadNode(context, nodes[index]);
  4426. }, function () {
  4427. if (index !== nodes.length - 1) {
  4428. var previousNode = nodes[index + 1];
  4429. previousNode.babylonMesh.setEnabled(false);
  4430. }
  4431. if (index === 0) {
  4432. onComplete();
  4433. return;
  4434. }
  4435. setTimeout(function () {
  4436. loader._tryCatchOnError(function () {
  4437. _this._loadNodeLOD(loader, context, nodes, index - 1, onComplete);
  4438. });
  4439. }, _this.Delay);
  4440. });
  4441. };
  4442. MSFTLOD.prototype._loadMaterial = function (loader, context, material, assign) {
  4443. var _this = this;
  4444. return this._loadExtension(context, material, function (context, extension, onComplete) {
  4445. var materials = [material];
  4446. for (var _i = 0, _a = extension.ids; _i < _a.length; _i++) {
  4447. var index = _a[_i];
  4448. var lodMaterial = GLTF2.GLTFLoader._GetProperty(loader._gltf.materials, index);
  4449. if (!lodMaterial) {
  4450. throw new Error(context + ": Failed to find material " + index);
  4451. }
  4452. materials.push(lodMaterial);
  4453. }
  4454. loader._addLoaderPendingData(material);
  4455. _this._loadMaterialLOD(loader, context, materials, materials.length - 1, assign, function () {
  4456. loader._removeLoaderPendingData(material);
  4457. onComplete();
  4458. });
  4459. });
  4460. };
  4461. MSFTLOD.prototype._loadMaterialLOD = function (loader, context, materials, index, assign, onComplete) {
  4462. var _this = this;
  4463. loader._loadMaterial(context, materials[index], function (babylonMaterial, isNew) {
  4464. if (index === materials.length - 1) {
  4465. assign(babylonMaterial, isNew);
  4466. // Load the next LOD when the loader is ready to render.
  4467. loader._executeWhenRenderReady(function () {
  4468. _this._loadMaterialLOD(loader, context, materials, index - 1, assign, onComplete);
  4469. });
  4470. }
  4471. else {
  4472. BABYLON.BaseTexture.WhenAllReady(babylonMaterial.getActiveTextures(), function () {
  4473. assign(babylonMaterial, isNew);
  4474. if (index === 0) {
  4475. onComplete();
  4476. }
  4477. else {
  4478. setTimeout(function () {
  4479. loader._tryCatchOnError(function () {
  4480. _this._loadMaterialLOD(loader, context, materials, index - 1, assign, onComplete);
  4481. });
  4482. }, _this.Delay);
  4483. }
  4484. });
  4485. }
  4486. });
  4487. };
  4488. return MSFTLOD;
  4489. }(GLTF2.GLTFLoaderExtension));
  4490. Extensions.MSFTLOD = MSFTLOD;
  4491. GLTF2.GLTFLoader.RegisterExtension(new MSFTLOD());
  4492. })(Extensions = GLTF2.Extensions || (GLTF2.Extensions = {}));
  4493. })(GLTF2 = BABYLON.GLTF2 || (BABYLON.GLTF2 = {}));
  4494. })(BABYLON || (BABYLON = {}));
  4495. //# sourceMappingURL=MSFT_lod.js.map
  4496. /// <reference path="../../../../../dist/preview release/babylon.d.ts"/>
  4497. var __extends = (this && this.__extends) || (function () {
  4498. var extendStatics = Object.setPrototypeOf ||
  4499. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  4500. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  4501. return function (d, b) {
  4502. extendStatics(d, b);
  4503. function __() { this.constructor = d; }
  4504. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  4505. };
  4506. })();
  4507. var BABYLON;
  4508. (function (BABYLON) {
  4509. var GLTF2;
  4510. (function (GLTF2) {
  4511. var Extensions;
  4512. (function (Extensions) {
  4513. var KHRMaterialsPbrSpecularGlossiness = /** @class */ (function (_super) {
  4514. __extends(KHRMaterialsPbrSpecularGlossiness, _super);
  4515. function KHRMaterialsPbrSpecularGlossiness() {
  4516. return _super !== null && _super.apply(this, arguments) || this;
  4517. }
  4518. Object.defineProperty(KHRMaterialsPbrSpecularGlossiness.prototype, "name", {
  4519. get: function () {
  4520. return "KHR_materials_pbrSpecularGlossiness";
  4521. },
  4522. enumerable: true,
  4523. configurable: true
  4524. });
  4525. KHRMaterialsPbrSpecularGlossiness.prototype._loadMaterial = function (loader, context, material, assign) {
  4526. var _this = this;
  4527. return this._loadExtension(context, material, function (context, extension, onComplete) {
  4528. loader._createPbrMaterial(material);
  4529. loader._loadMaterialBaseProperties(context, material);
  4530. _this._loadSpecularGlossinessProperties(loader, context, material, extension);
  4531. assign(material.babylonMaterial, true);
  4532. onComplete();
  4533. });
  4534. };
  4535. KHRMaterialsPbrSpecularGlossiness.prototype._loadSpecularGlossinessProperties = function (loader, context, material, properties) {
  4536. var babylonMaterial = material.babylonMaterial;
  4537. babylonMaterial.albedoColor = properties.diffuseFactor ? BABYLON.Color3.FromArray(properties.diffuseFactor) : new BABYLON.Color3(1, 1, 1);
  4538. babylonMaterial.reflectivityColor = properties.specularFactor ? BABYLON.Color3.FromArray(properties.specularFactor) : new BABYLON.Color3(1, 1, 1);
  4539. babylonMaterial.microSurface = properties.glossinessFactor == null ? 1 : properties.glossinessFactor;
  4540. if (properties.diffuseTexture) {
  4541. var texture = GLTF2.GLTFLoader._GetProperty(loader._gltf.textures, properties.diffuseTexture.index);
  4542. if (!texture) {
  4543. throw new Error(context + ": Failed to find diffuse texture " + properties.diffuseTexture.index);
  4544. }
  4545. babylonMaterial.albedoTexture = loader._loadTexture("textures[" + texture.index + "]", texture, properties.diffuseTexture.texCoord);
  4546. }
  4547. if (properties.specularGlossinessTexture) {
  4548. var texture = GLTF2.GLTFLoader._GetProperty(loader._gltf.textures, properties.specularGlossinessTexture.index);
  4549. if (!texture) {
  4550. throw new Error(context + ": Failed to find diffuse texture " + properties.specularGlossinessTexture.index);
  4551. }
  4552. babylonMaterial.reflectivityTexture = loader._loadTexture("textures[" + texture.index + "]", texture, properties.specularGlossinessTexture.texCoord);
  4553. babylonMaterial.reflectivityTexture.hasAlpha = true;
  4554. babylonMaterial.useMicroSurfaceFromReflectivityMapAlpha = true;
  4555. }
  4556. loader._loadMaterialAlphaProperties(context, material, properties.diffuseFactor);
  4557. };
  4558. return KHRMaterialsPbrSpecularGlossiness;
  4559. }(GLTF2.GLTFLoaderExtension));
  4560. Extensions.KHRMaterialsPbrSpecularGlossiness = KHRMaterialsPbrSpecularGlossiness;
  4561. GLTF2.GLTFLoader.RegisterExtension(new KHRMaterialsPbrSpecularGlossiness());
  4562. })(Extensions = GLTF2.Extensions || (GLTF2.Extensions = {}));
  4563. })(GLTF2 = BABYLON.GLTF2 || (BABYLON.GLTF2 = {}));
  4564. })(BABYLON || (BABYLON = {}));
  4565. //# sourceMappingURL=KHR_materials_pbrSpecularGlossiness.js.map