babylon.glTFFileLoader.js 201 KB

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