FBXLoader.js 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137
  1. /**
  2. * @author Kyle-Larson https://github.com/Kyle-Larson
  3. * @author Takahiro https://github.com/takahirox
  4. * @author Lewy Blue https://github.com/looeee
  5. *
  6. * Loader loads FBX file and generates Group representing FBX scene.
  7. * Requires FBX file to be >= 7.0 and in ASCII or >= 6400 in Binary format
  8. * Versions lower than this may load but will probably have errors
  9. *
  10. * Needs Support:
  11. * Morph normals / blend shape normals
  12. *
  13. * FBX format references:
  14. * https://wiki.blender.org/index.php/User:Mont29/Foundation/FBX_File_Structure
  15. * http://help.autodesk.com/view/FBX/2017/ENU/?guid=__cpp_ref_index_html (C++ SDK reference)
  16. *
  17. * Binary format specification:
  18. * https://code.blender.org/2013/08/fbx-binary-file-format-specification/
  19. */
  20. THREE.FBXLoader = ( function () {
  21. var fbxTree;
  22. var connections;
  23. var sceneGraph;
  24. function FBXLoader( manager ) {
  25. this.manager = ( manager !== undefined ) ? manager : THREE.DefaultLoadingManager;
  26. }
  27. FBXLoader.prototype = {
  28. constructor: FBXLoader,
  29. crossOrigin: 'anonymous',
  30. load: function ( url, onLoad, onProgress, onError ) {
  31. var self = this;
  32. var path = ( self.path === undefined ) ? THREE.LoaderUtils.extractUrlBase( url ) : self.path;
  33. var loader = new THREE.FileLoader( this.manager );
  34. loader.setPath( self.path );
  35. loader.setResponseType( 'arraybuffer' );
  36. loader.load( url, function ( buffer ) {
  37. try {
  38. onLoad( self.parse( buffer, path ) );
  39. } catch ( error ) {
  40. setTimeout( function () {
  41. if ( onError ) onError( error );
  42. self.manager.itemError( url );
  43. }, 0 );
  44. }
  45. }, onProgress, onError );
  46. },
  47. setPath: function ( value ) {
  48. this.path = value;
  49. return this;
  50. },
  51. setResourcePath: function ( value ) {
  52. this.resourcePath = value;
  53. return this;
  54. },
  55. setCrossOrigin: function ( value ) {
  56. this.crossOrigin = value;
  57. return this;
  58. },
  59. parse: function ( FBXBuffer, path ) {
  60. if ( isFbxFormatBinary( FBXBuffer ) ) {
  61. fbxTree = new BinaryParser().parse( FBXBuffer );
  62. } else {
  63. var FBXText = convertArrayBufferToString( FBXBuffer );
  64. if ( ! isFbxFormatASCII( FBXText ) ) {
  65. throw new Error( 'THREE.FBXLoader: Unknown format.' );
  66. }
  67. if ( getFbxVersion( FBXText ) < 7000 ) {
  68. throw new Error( 'THREE.FBXLoader: FBX version not supported, FileVersion: ' + getFbxVersion( FBXText ) );
  69. }
  70. fbxTree = new TextParser().parse( FBXText );
  71. }
  72. // console.log( fbxTree );
  73. var textureLoader = new THREE.TextureLoader( this.manager ).setPath( this.resourcePath || path ).setCrossOrigin( this.crossOrigin );
  74. return new FBXTreeParser( textureLoader ).parse( fbxTree );
  75. }
  76. };
  77. // Parse the FBXTree object returned by the BinaryParser or TextParser and return a THREE.Group
  78. function FBXTreeParser( textureLoader ) {
  79. this.textureLoader = textureLoader;
  80. }
  81. FBXTreeParser.prototype = {
  82. constructor: FBXTreeParser,
  83. parse: function () {
  84. connections = this.parseConnections();
  85. var images = this.parseImages();
  86. var textures = this.parseTextures( images );
  87. var materials = this.parseMaterials( textures );
  88. var deformers = this.parseDeformers();
  89. var geometryMap = new GeometryParser().parse( deformers );
  90. this.parseScene( deformers, geometryMap, materials );
  91. return sceneGraph;
  92. },
  93. // Parses FBXTree.Connections which holds parent-child connections between objects (e.g. material -> texture, model->geometry )
  94. // and details the connection type
  95. parseConnections: function () {
  96. var connectionMap = new Map();
  97. if ( 'Connections' in fbxTree ) {
  98. var rawConnections = fbxTree.Connections.connections;
  99. rawConnections.forEach( function ( rawConnection ) {
  100. var fromID = rawConnection[ 0 ];
  101. var toID = rawConnection[ 1 ];
  102. var relationship = rawConnection[ 2 ];
  103. if ( ! connectionMap.has( fromID ) ) {
  104. connectionMap.set( fromID, {
  105. parents: [],
  106. children: []
  107. } );
  108. }
  109. var parentRelationship = { ID: toID, relationship: relationship };
  110. connectionMap.get( fromID ).parents.push( parentRelationship );
  111. if ( ! connectionMap.has( toID ) ) {
  112. connectionMap.set( toID, {
  113. parents: [],
  114. children: []
  115. } );
  116. }
  117. var childRelationship = { ID: fromID, relationship: relationship };
  118. connectionMap.get( toID ).children.push( childRelationship );
  119. } );
  120. }
  121. return connectionMap;
  122. },
  123. // Parse FBXTree.Objects.Video for embedded image data
  124. // These images are connected to textures in FBXTree.Objects.Textures
  125. // via FBXTree.Connections.
  126. parseImages: function () {
  127. var images = {};
  128. var blobs = {};
  129. if ( 'Video' in fbxTree.Objects ) {
  130. var videoNodes = fbxTree.Objects.Video;
  131. for ( var nodeID in videoNodes ) {
  132. var videoNode = videoNodes[ nodeID ];
  133. var id = parseInt( nodeID );
  134. images[ id ] = videoNode.RelativeFilename || videoNode.Filename;
  135. // raw image data is in videoNode.Content
  136. if ( 'Content' in videoNode ) {
  137. var arrayBufferContent = ( videoNode.Content instanceof ArrayBuffer ) && ( videoNode.Content.byteLength > 0 );
  138. var base64Content = ( typeof videoNode.Content === 'string' ) && ( videoNode.Content !== '' );
  139. if ( arrayBufferContent || base64Content ) {
  140. var image = this.parseImage( videoNodes[ nodeID ] );
  141. blobs[ videoNode.RelativeFilename || videoNode.Filename ] = image;
  142. }
  143. }
  144. }
  145. }
  146. for ( var id in images ) {
  147. var filename = images[ id ];
  148. if ( blobs[ filename ] !== undefined ) images[ id ] = blobs[ filename ];
  149. else images[ id ] = images[ id ].split( '\\' ).pop();
  150. }
  151. return images;
  152. },
  153. // Parse embedded image data in FBXTree.Video.Content
  154. parseImage: function ( videoNode ) {
  155. var content = videoNode.Content;
  156. var fileName = videoNode.RelativeFilename || videoNode.Filename;
  157. var extension = fileName.slice( fileName.lastIndexOf( '.' ) + 1 ).toLowerCase();
  158. var type;
  159. switch ( extension ) {
  160. case 'bmp':
  161. type = 'image/bmp';
  162. break;
  163. case 'jpg':
  164. case 'jpeg':
  165. type = 'image/jpeg';
  166. break;
  167. case 'png':
  168. type = 'image/png';
  169. break;
  170. case 'tif':
  171. type = 'image/tiff';
  172. break;
  173. case 'tga':
  174. if ( typeof THREE.TGALoader !== 'function' ) {
  175. console.warn( 'FBXLoader: THREE.TGALoader is required to load TGA textures' );
  176. return;
  177. } else {
  178. if ( THREE.Loader.Handlers.get( '.tga' ) === null ) {
  179. var tgaLoader = new THREE.TGALoader();
  180. tgaLoader.setPath( this.textureLoader.path );
  181. THREE.Loader.Handlers.add( /\.tga$/i, tgaLoader );
  182. }
  183. type = 'image/tga';
  184. break;
  185. }
  186. default:
  187. console.warn( 'FBXLoader: Image type "' + extension + '" is not supported.' );
  188. return;
  189. }
  190. if ( typeof content === 'string' ) { // ASCII format
  191. return 'data:' + type + ';base64,' + content;
  192. } else { // Binary Format
  193. var array = new Uint8Array( content );
  194. return window.URL.createObjectURL( new Blob( [ array ], { type: type } ) );
  195. }
  196. },
  197. // Parse nodes in FBXTree.Objects.Texture
  198. // These contain details such as UV scaling, cropping, rotation etc and are connected
  199. // to images in FBXTree.Objects.Video
  200. parseTextures: function ( images ) {
  201. var textureMap = new Map();
  202. if ( 'Texture' in fbxTree.Objects ) {
  203. var textureNodes = fbxTree.Objects.Texture;
  204. for ( var nodeID in textureNodes ) {
  205. var texture = this.parseTexture( textureNodes[ nodeID ], images );
  206. textureMap.set( parseInt( nodeID ), texture );
  207. }
  208. }
  209. return textureMap;
  210. },
  211. // Parse individual node in FBXTree.Objects.Texture
  212. parseTexture: function ( textureNode, images ) {
  213. var texture = this.loadTexture( textureNode, images );
  214. texture.ID = textureNode.id;
  215. texture.name = textureNode.attrName;
  216. var wrapModeU = textureNode.WrapModeU;
  217. var wrapModeV = textureNode.WrapModeV;
  218. var valueU = wrapModeU !== undefined ? wrapModeU.value : 0;
  219. var valueV = wrapModeV !== undefined ? wrapModeV.value : 0;
  220. // http://download.autodesk.com/us/fbx/SDKdocs/FBX_SDK_Help/files/fbxsdkref/class_k_fbx_texture.html#889640e63e2e681259ea81061b85143a
  221. // 0: repeat(default), 1: clamp
  222. texture.wrapS = valueU === 0 ? THREE.RepeatWrapping : THREE.ClampToEdgeWrapping;
  223. texture.wrapT = valueV === 0 ? THREE.RepeatWrapping : THREE.ClampToEdgeWrapping;
  224. if ( 'Scaling' in textureNode ) {
  225. var values = textureNode.Scaling.value;
  226. texture.repeat.x = values[ 0 ];
  227. texture.repeat.y = values[ 1 ];
  228. }
  229. return texture;
  230. },
  231. // load a texture specified as a blob or data URI, or via an external URL using THREE.TextureLoader
  232. loadTexture: function ( textureNode, images ) {
  233. var fileName;
  234. var currentPath = this.textureLoader.path;
  235. var children = connections.get( textureNode.id ).children;
  236. if ( children !== undefined && children.length > 0 && images[ children[ 0 ].ID ] !== undefined ) {
  237. fileName = images[ children[ 0 ].ID ];
  238. if ( fileName.indexOf( 'blob:' ) === 0 || fileName.indexOf( 'data:' ) === 0 ) {
  239. this.textureLoader.setPath( undefined );
  240. }
  241. }
  242. var texture;
  243. var extension = textureNode.FileName.slice( - 3 ).toLowerCase();
  244. if ( extension === 'tga' ) {
  245. var loader = THREE.Loader.Handlers.get( '.tga' );
  246. if ( loader === null ) {
  247. console.warn( 'FBXLoader: TGALoader not found, creating empty placeholder texture for', fileName );
  248. texture = new THREE.Texture();
  249. } else {
  250. texture = loader.load( fileName );
  251. }
  252. } else if ( extension === 'psd' ) {
  253. console.warn( 'FBXLoader: PSD textures are not supported, creating empty placeholder texture for', fileName );
  254. texture = new THREE.Texture();
  255. } else {
  256. texture = this.textureLoader.load( fileName );
  257. }
  258. this.textureLoader.setPath( currentPath );
  259. return texture;
  260. },
  261. // Parse nodes in FBXTree.Objects.Material
  262. parseMaterials: function ( textureMap ) {
  263. var materialMap = new Map();
  264. if ( 'Material' in fbxTree.Objects ) {
  265. var materialNodes = fbxTree.Objects.Material;
  266. for ( var nodeID in materialNodes ) {
  267. var material = this.parseMaterial( materialNodes[ nodeID ], textureMap );
  268. if ( material !== null ) materialMap.set( parseInt( nodeID ), material );
  269. }
  270. }
  271. return materialMap;
  272. },
  273. // Parse single node in FBXTree.Objects.Material
  274. // Materials are connected to texture maps in FBXTree.Objects.Textures
  275. // FBX format currently only supports Lambert and Phong shading models
  276. parseMaterial: function ( materialNode, textureMap ) {
  277. var ID = materialNode.id;
  278. var name = materialNode.attrName;
  279. var type = materialNode.ShadingModel;
  280. // Case where FBX wraps shading model in property object.
  281. if ( typeof type === 'object' ) {
  282. type = type.value;
  283. }
  284. // Ignore unused materials which don't have any connections.
  285. if ( ! connections.has( ID ) ) return null;
  286. var parameters = this.parseParameters( materialNode, textureMap, ID );
  287. var material;
  288. switch ( type.toLowerCase() ) {
  289. case 'phong':
  290. material = new THREE.MeshPhongMaterial();
  291. break;
  292. case 'lambert':
  293. material = new THREE.MeshLambertMaterial();
  294. break;
  295. default:
  296. console.warn( 'THREE.FBXLoader: unknown material type "%s". Defaulting to MeshPhongMaterial.', type );
  297. material = new THREE.MeshPhongMaterial();
  298. break;
  299. }
  300. material.setValues( parameters );
  301. material.name = name;
  302. return material;
  303. },
  304. // Parse FBX material and return parameters suitable for a three.js material
  305. // Also parse the texture map and return any textures associated with the material
  306. parseParameters: function ( materialNode, textureMap, ID ) {
  307. var parameters = {};
  308. if ( materialNode.BumpFactor ) {
  309. parameters.bumpScale = materialNode.BumpFactor.value;
  310. }
  311. if ( materialNode.Diffuse ) {
  312. parameters.color = new THREE.Color().fromArray( materialNode.Diffuse.value );
  313. } else if ( materialNode.DiffuseColor && materialNode.DiffuseColor.type === 'Color' ) {
  314. // The blender exporter exports diffuse here instead of in materialNode.Diffuse
  315. parameters.color = new THREE.Color().fromArray( materialNode.DiffuseColor.value );
  316. }
  317. if ( materialNode.DisplacementFactor ) {
  318. parameters.displacementScale = materialNode.DisplacementFactor.value;
  319. }
  320. if ( materialNode.Emissive ) {
  321. parameters.emissive = new THREE.Color().fromArray( materialNode.Emissive.value );
  322. } else if ( materialNode.EmissiveColor && materialNode.EmissiveColor.type === 'Color' ) {
  323. // The blender exporter exports emissive color here instead of in materialNode.Emissive
  324. parameters.emissive = new THREE.Color().fromArray( materialNode.EmissiveColor.value );
  325. }
  326. if ( materialNode.EmissiveFactor ) {
  327. parameters.emissiveIntensity = parseFloat( materialNode.EmissiveFactor.value );
  328. }
  329. if ( materialNode.Opacity ) {
  330. parameters.opacity = parseFloat( materialNode.Opacity.value );
  331. }
  332. if ( parameters.opacity < 1.0 ) {
  333. parameters.transparent = true;
  334. }
  335. if ( materialNode.ReflectionFactor ) {
  336. parameters.reflectivity = materialNode.ReflectionFactor.value;
  337. }
  338. if ( materialNode.Shininess ) {
  339. parameters.shininess = materialNode.Shininess.value;
  340. }
  341. if ( materialNode.Specular ) {
  342. parameters.specular = new THREE.Color().fromArray( materialNode.Specular.value );
  343. } else if ( materialNode.SpecularColor && materialNode.SpecularColor.type === 'Color' ) {
  344. // The blender exporter exports specular color here instead of in materialNode.Specular
  345. parameters.specular = new THREE.Color().fromArray( materialNode.SpecularColor.value );
  346. }
  347. var self = this;
  348. connections.get( ID ).children.forEach( function ( child ) {
  349. var type = child.relationship;
  350. switch ( type ) {
  351. case 'Bump':
  352. parameters.bumpMap = self.getTexture( textureMap, child.ID );
  353. break;
  354. case 'Maya|TEX_ao_map':
  355. parameters.aoMap = self.getTexture( textureMap, child.ID );
  356. break;
  357. case 'DiffuseColor':
  358. case 'Maya|TEX_color_map':
  359. parameters.map = self.getTexture( textureMap, child.ID );
  360. break;
  361. case 'DisplacementColor':
  362. parameters.displacementMap = self.getTexture( textureMap, child.ID );
  363. break;
  364. case 'EmissiveColor':
  365. parameters.emissiveMap = self.getTexture( textureMap, child.ID );
  366. break;
  367. case 'NormalMap':
  368. case 'Maya|TEX_normal_map':
  369. parameters.normalMap = self.getTexture( textureMap, child.ID );
  370. break;
  371. case 'ReflectionColor':
  372. parameters.envMap = self.getTexture( textureMap, child.ID );
  373. parameters.envMap.mapping = THREE.EquirectangularReflectionMapping;
  374. break;
  375. case 'SpecularColor':
  376. parameters.specularMap = self.getTexture( textureMap, child.ID );
  377. break;
  378. case 'TransparentColor':
  379. parameters.alphaMap = self.getTexture( textureMap, child.ID );
  380. parameters.transparent = true;
  381. break;
  382. case 'AmbientColor':
  383. case 'ShininessExponent': // AKA glossiness map
  384. case 'SpecularFactor': // AKA specularLevel
  385. case 'VectorDisplacementColor': // NOTE: Seems to be a copy of DisplacementColor
  386. default:
  387. console.warn( 'THREE.FBXLoader: %s map is not supported in three.js, skipping texture.', type );
  388. break;
  389. }
  390. } );
  391. return parameters;
  392. },
  393. // get a texture from the textureMap for use by a material.
  394. getTexture: function ( textureMap, id ) {
  395. // if the texture is a layered texture, just use the first layer and issue a warning
  396. if ( 'LayeredTexture' in fbxTree.Objects && id in fbxTree.Objects.LayeredTexture ) {
  397. console.warn( 'THREE.FBXLoader: layered textures are not supported in three.js. Discarding all but first layer.' );
  398. id = connections.get( id ).children[ 0 ].ID;
  399. }
  400. return textureMap.get( id );
  401. },
  402. // Parse nodes in FBXTree.Objects.Deformer
  403. // Deformer node can contain skinning or Vertex Cache animation data, however only skinning is supported here
  404. // Generates map of Skeleton-like objects for use later when generating and binding skeletons.
  405. parseDeformers: function () {
  406. var skeletons = {};
  407. var morphTargets = {};
  408. if ( 'Deformer' in fbxTree.Objects ) {
  409. var DeformerNodes = fbxTree.Objects.Deformer;
  410. for ( var nodeID in DeformerNodes ) {
  411. var deformerNode = DeformerNodes[ nodeID ];
  412. var relationships = connections.get( parseInt( nodeID ) );
  413. if ( deformerNode.attrType === 'Skin' ) {
  414. var skeleton = this.parseSkeleton( relationships, DeformerNodes );
  415. skeleton.ID = nodeID;
  416. if ( relationships.parents.length > 1 ) console.warn( 'THREE.FBXLoader: skeleton attached to more than one geometry is not supported.' );
  417. skeleton.geometryID = relationships.parents[ 0 ].ID;
  418. skeletons[ nodeID ] = skeleton;
  419. } else if ( deformerNode.attrType === 'BlendShape' ) {
  420. var morphTarget = {
  421. id: nodeID,
  422. };
  423. morphTarget.rawTargets = this.parseMorphTargets( relationships, DeformerNodes );
  424. morphTarget.id = nodeID;
  425. if ( relationships.parents.length > 1 ) console.warn( 'THREE.FBXLoader: morph target attached to more than one geometry is not supported.' );
  426. morphTargets[ nodeID ] = morphTarget;
  427. }
  428. }
  429. }
  430. return {
  431. skeletons: skeletons,
  432. morphTargets: morphTargets,
  433. };
  434. },
  435. // Parse single nodes in FBXTree.Objects.Deformer
  436. // The top level skeleton node has type 'Skin' and sub nodes have type 'Cluster'
  437. // Each skin node represents a skeleton and each cluster node represents a bone
  438. parseSkeleton: function ( relationships, deformerNodes ) {
  439. var rawBones = [];
  440. relationships.children.forEach( function ( child ) {
  441. var boneNode = deformerNodes[ child.ID ];
  442. if ( boneNode.attrType !== 'Cluster' ) return;
  443. var rawBone = {
  444. ID: child.ID,
  445. indices: [],
  446. weights: [],
  447. transformLink: new THREE.Matrix4().fromArray( boneNode.TransformLink.a ),
  448. // transform: new THREE.Matrix4().fromArray( boneNode.Transform.a ),
  449. // linkMode: boneNode.Mode,
  450. };
  451. if ( 'Indexes' in boneNode ) {
  452. rawBone.indices = boneNode.Indexes.a;
  453. rawBone.weights = boneNode.Weights.a;
  454. }
  455. rawBones.push( rawBone );
  456. } );
  457. return {
  458. rawBones: rawBones,
  459. bones: []
  460. };
  461. },
  462. // The top level morph deformer node has type "BlendShape" and sub nodes have type "BlendShapeChannel"
  463. parseMorphTargets: function ( relationships, deformerNodes ) {
  464. var rawMorphTargets = [];
  465. for ( var i = 0; i < relationships.children.length; i ++ ) {
  466. var child = relationships.children[ i ];
  467. var morphTargetNode = deformerNodes[ child.ID ];
  468. var rawMorphTarget = {
  469. name: morphTargetNode.attrName,
  470. initialWeight: morphTargetNode.DeformPercent,
  471. id: morphTargetNode.id,
  472. fullWeights: morphTargetNode.FullWeights.a
  473. };
  474. if ( morphTargetNode.attrType !== 'BlendShapeChannel' ) return;
  475. rawMorphTarget.geoID = connections.get( parseInt( child.ID ) ).children.filter( function ( child ) {
  476. return child.relationship === undefined;
  477. } )[ 0 ].ID;
  478. rawMorphTargets.push( rawMorphTarget );
  479. }
  480. return rawMorphTargets;
  481. },
  482. // create the main THREE.Group() to be returned by the loader
  483. parseScene: function ( deformers, geometryMap, materialMap ) {
  484. sceneGraph = new THREE.Group();
  485. var modelMap = this.parseModels( deformers.skeletons, geometryMap, materialMap );
  486. var modelNodes = fbxTree.Objects.Model;
  487. var self = this;
  488. modelMap.forEach( function ( model ) {
  489. var modelNode = modelNodes[ model.ID ];
  490. self.setLookAtProperties( model, modelNode );
  491. var parentConnections = connections.get( model.ID ).parents;
  492. parentConnections.forEach( function ( connection ) {
  493. var parent = modelMap.get( connection.ID );
  494. if ( parent !== undefined ) parent.add( model );
  495. } );
  496. if ( model.parent === null ) {
  497. sceneGraph.add( model );
  498. }
  499. } );
  500. this.bindSkeleton( deformers.skeletons, geometryMap, modelMap );
  501. this.createAmbientLight();
  502. this.setupMorphMaterials();
  503. sceneGraph.traverse( function ( node ) {
  504. if ( node.userData.transformData ) {
  505. if ( node.parent ) node.userData.transformData.parentMatrixWorld = node.parent.matrix;
  506. var transform = generateTransform( node.userData.transformData );
  507. node.applyMatrix( transform );
  508. }
  509. } );
  510. var animations = new AnimationParser().parse();
  511. // if all the models where already combined in a single group, just return that
  512. if ( sceneGraph.children.length === 1 && sceneGraph.children[ 0 ].isGroup ) {
  513. sceneGraph.children[ 0 ].animations = animations;
  514. sceneGraph = sceneGraph.children[ 0 ];
  515. }
  516. sceneGraph.animations = animations;
  517. },
  518. // parse nodes in FBXTree.Objects.Model
  519. parseModels: function ( skeletons, geometryMap, materialMap ) {
  520. var modelMap = new Map();
  521. var modelNodes = fbxTree.Objects.Model;
  522. for ( var nodeID in modelNodes ) {
  523. var id = parseInt( nodeID );
  524. var node = modelNodes[ nodeID ];
  525. var relationships = connections.get( id );
  526. var model = this.buildSkeleton( relationships, skeletons, id, node.attrName );
  527. if ( ! model ) {
  528. switch ( node.attrType ) {
  529. case 'Camera':
  530. model = this.createCamera( relationships );
  531. break;
  532. case 'Light':
  533. model = this.createLight( relationships );
  534. break;
  535. case 'Mesh':
  536. model = this.createMesh( relationships, geometryMap, materialMap );
  537. break;
  538. case 'NurbsCurve':
  539. model = this.createCurve( relationships, geometryMap );
  540. break;
  541. case 'LimbNode':
  542. case 'Root':
  543. model = new THREE.Bone();
  544. break;
  545. case 'Null':
  546. default:
  547. model = new THREE.Group();
  548. break;
  549. }
  550. model.name = THREE.PropertyBinding.sanitizeNodeName( node.attrName );
  551. model.ID = id;
  552. }
  553. this.getTransformData( model, node );
  554. modelMap.set( id, model );
  555. }
  556. return modelMap;
  557. },
  558. buildSkeleton: function ( relationships, skeletons, id, name ) {
  559. var bone = null;
  560. relationships.parents.forEach( function ( parent ) {
  561. for ( var ID in skeletons ) {
  562. var skeleton = skeletons[ ID ];
  563. skeleton.rawBones.forEach( function ( rawBone, i ) {
  564. if ( rawBone.ID === parent.ID ) {
  565. var subBone = bone;
  566. bone = new THREE.Bone();
  567. bone.matrixWorld.copy( rawBone.transformLink );
  568. // set name and id here - otherwise in cases where "subBone" is created it will not have a name / id
  569. bone.name = THREE.PropertyBinding.sanitizeNodeName( name );
  570. bone.ID = id;
  571. skeleton.bones[ i ] = bone;
  572. // In cases where a bone is shared between multiple meshes
  573. // duplicate the bone here and and it as a child of the first bone
  574. if ( subBone !== null ) {
  575. bone.add( subBone );
  576. }
  577. }
  578. } );
  579. }
  580. } );
  581. return bone;
  582. },
  583. // create a THREE.PerspectiveCamera or THREE.OrthographicCamera
  584. createCamera: function ( relationships ) {
  585. var model;
  586. var cameraAttribute;
  587. relationships.children.forEach( function ( child ) {
  588. var attr = fbxTree.Objects.NodeAttribute[ child.ID ];
  589. if ( attr !== undefined ) {
  590. cameraAttribute = attr;
  591. }
  592. } );
  593. if ( cameraAttribute === undefined ) {
  594. model = new THREE.Object3D();
  595. } else {
  596. var type = 0;
  597. if ( cameraAttribute.CameraProjectionType !== undefined && cameraAttribute.CameraProjectionType.value === 1 ) {
  598. type = 1;
  599. }
  600. var nearClippingPlane = 1;
  601. if ( cameraAttribute.NearPlane !== undefined ) {
  602. nearClippingPlane = cameraAttribute.NearPlane.value / 1000;
  603. }
  604. var farClippingPlane = 1000;
  605. if ( cameraAttribute.FarPlane !== undefined ) {
  606. farClippingPlane = cameraAttribute.FarPlane.value / 1000;
  607. }
  608. var width = window.innerWidth;
  609. var height = window.innerHeight;
  610. if ( cameraAttribute.AspectWidth !== undefined && cameraAttribute.AspectHeight !== undefined ) {
  611. width = cameraAttribute.AspectWidth.value;
  612. height = cameraAttribute.AspectHeight.value;
  613. }
  614. var aspect = width / height;
  615. var fov = 45;
  616. if ( cameraAttribute.FieldOfView !== undefined ) {
  617. fov = cameraAttribute.FieldOfView.value;
  618. }
  619. var focalLength = cameraAttribute.FocalLength ? cameraAttribute.FocalLength.value : null;
  620. switch ( type ) {
  621. case 0: // Perspective
  622. model = new THREE.PerspectiveCamera( fov, aspect, nearClippingPlane, farClippingPlane );
  623. if ( focalLength !== null ) model.setFocalLength( focalLength );
  624. break;
  625. case 1: // Orthographic
  626. model = new THREE.OrthographicCamera( - width / 2, width / 2, height / 2, - height / 2, nearClippingPlane, farClippingPlane );
  627. break;
  628. default:
  629. console.warn( 'THREE.FBXLoader: Unknown camera type ' + type + '.' );
  630. model = new THREE.Object3D();
  631. break;
  632. }
  633. }
  634. return model;
  635. },
  636. // Create a THREE.DirectionalLight, THREE.PointLight or THREE.SpotLight
  637. createLight: function ( relationships ) {
  638. var model;
  639. var lightAttribute;
  640. relationships.children.forEach( function ( child ) {
  641. var attr = fbxTree.Objects.NodeAttribute[ child.ID ];
  642. if ( attr !== undefined ) {
  643. lightAttribute = attr;
  644. }
  645. } );
  646. if ( lightAttribute === undefined ) {
  647. model = new THREE.Object3D();
  648. } else {
  649. var type;
  650. // LightType can be undefined for Point lights
  651. if ( lightAttribute.LightType === undefined ) {
  652. type = 0;
  653. } else {
  654. type = lightAttribute.LightType.value;
  655. }
  656. var color = 0xffffff;
  657. if ( lightAttribute.Color !== undefined ) {
  658. color = new THREE.Color().fromArray( lightAttribute.Color.value );
  659. }
  660. var intensity = ( lightAttribute.Intensity === undefined ) ? 1 : lightAttribute.Intensity.value / 100;
  661. // light disabled
  662. if ( lightAttribute.CastLightOnObject !== undefined && lightAttribute.CastLightOnObject.value === 0 ) {
  663. intensity = 0;
  664. }
  665. var distance = 0;
  666. if ( lightAttribute.FarAttenuationEnd !== undefined ) {
  667. if ( lightAttribute.EnableFarAttenuation !== undefined && lightAttribute.EnableFarAttenuation.value === 0 ) {
  668. distance = 0;
  669. } else {
  670. distance = lightAttribute.FarAttenuationEnd.value;
  671. }
  672. }
  673. // TODO: could this be calculated linearly from FarAttenuationStart to FarAttenuationEnd?
  674. var decay = 1;
  675. switch ( type ) {
  676. case 0: // Point
  677. model = new THREE.PointLight( color, intensity, distance, decay );
  678. break;
  679. case 1: // Directional
  680. model = new THREE.DirectionalLight( color, intensity );
  681. break;
  682. case 2: // Spot
  683. var angle = Math.PI / 3;
  684. if ( lightAttribute.InnerAngle !== undefined ) {
  685. angle = THREE.Math.degToRad( lightAttribute.InnerAngle.value );
  686. }
  687. var penumbra = 0;
  688. if ( lightAttribute.OuterAngle !== undefined ) {
  689. // TODO: this is not correct - FBX calculates outer and inner angle in degrees
  690. // with OuterAngle > InnerAngle && OuterAngle <= Math.PI
  691. // while three.js uses a penumbra between (0, 1) to attenuate the inner angle
  692. penumbra = THREE.Math.degToRad( lightAttribute.OuterAngle.value );
  693. penumbra = Math.max( penumbra, 1 );
  694. }
  695. model = new THREE.SpotLight( color, intensity, distance, angle, penumbra, decay );
  696. break;
  697. default:
  698. console.warn( 'THREE.FBXLoader: Unknown light type ' + lightAttribute.LightType.value + ', defaulting to a THREE.PointLight.' );
  699. model = new THREE.PointLight( color, intensity );
  700. break;
  701. }
  702. if ( lightAttribute.CastShadows !== undefined && lightAttribute.CastShadows.value === 1 ) {
  703. model.castShadow = true;
  704. }
  705. }
  706. return model;
  707. },
  708. createMesh: function ( relationships, geometryMap, materialMap ) {
  709. var model;
  710. var geometry = null;
  711. var material = null;
  712. var materials = [];
  713. // get geometry and materials(s) from connections
  714. relationships.children.forEach( function ( child ) {
  715. if ( geometryMap.has( child.ID ) ) {
  716. geometry = geometryMap.get( child.ID );
  717. }
  718. if ( materialMap.has( child.ID ) ) {
  719. materials.push( materialMap.get( child.ID ) );
  720. }
  721. } );
  722. if ( materials.length > 1 ) {
  723. material = materials;
  724. } else if ( materials.length > 0 ) {
  725. material = materials[ 0 ];
  726. } else {
  727. material = new THREE.MeshPhongMaterial( { color: 0xcccccc } );
  728. materials.push( material );
  729. }
  730. if ( 'color' in geometry.attributes ) {
  731. materials.forEach( function ( material ) {
  732. material.vertexColors = THREE.VertexColors;
  733. } );
  734. }
  735. if ( geometry.FBX_Deformer ) {
  736. materials.forEach( function ( material ) {
  737. material.skinning = true;
  738. } );
  739. model = new THREE.SkinnedMesh( geometry, material );
  740. model.normalizeSkinWeights();
  741. } else {
  742. model = new THREE.Mesh( geometry, material );
  743. }
  744. return model;
  745. },
  746. createCurve: function ( relationships, geometryMap ) {
  747. var geometry = relationships.children.reduce( function ( geo, child ) {
  748. if ( geometryMap.has( child.ID ) ) geo = geometryMap.get( child.ID );
  749. return geo;
  750. }, null );
  751. // FBX does not list materials for Nurbs lines, so we'll just put our own in here.
  752. var material = new THREE.LineBasicMaterial( { color: 0x3300ff, linewidth: 1 } );
  753. return new THREE.Line( geometry, material );
  754. },
  755. // parse the model node for transform data
  756. getTransformData: function ( model, modelNode ) {
  757. var transformData = {};
  758. if ( 'InheritType' in modelNode ) transformData.inheritType = parseInt( modelNode.InheritType.value );
  759. if ( 'RotationOrder' in modelNode ) transformData.eulerOrder = getEulerOrder( modelNode.RotationOrder.value );
  760. else transformData.eulerOrder = 'ZYX';
  761. if ( 'Lcl_Translation' in modelNode ) transformData.translation = modelNode.Lcl_Translation.value;
  762. if ( 'PreRotation' in modelNode ) transformData.preRotation = modelNode.PreRotation.value;
  763. if ( 'Lcl_Rotation' in modelNode ) transformData.rotation = modelNode.Lcl_Rotation.value;
  764. if ( 'PostRotation' in modelNode ) transformData.postRotation = modelNode.PostRotation.value;
  765. if ( 'Lcl_Scaling' in modelNode ) transformData.scale = modelNode.Lcl_Scaling.value;
  766. if ( 'ScalingOffset' in modelNode ) transformData.scalingOffset = modelNode.ScalingOffset.value;
  767. if ( 'ScalingPivot' in modelNode ) transformData.scalingPivot = modelNode.ScalingPivot.value;
  768. if ( 'RotationOffset' in modelNode ) transformData.rotationOffset = modelNode.RotationOffset.value;
  769. if ( 'RotationPivot' in modelNode ) transformData.rotationPivot = modelNode.RotationPivot.value;
  770. model.userData.transformData = transformData;
  771. },
  772. setLookAtProperties: function ( model, modelNode ) {
  773. if ( 'LookAtProperty' in modelNode ) {
  774. var children = connections.get( model.ID ).children;
  775. children.forEach( function ( child ) {
  776. if ( child.relationship === 'LookAtProperty' ) {
  777. var lookAtTarget = fbxTree.Objects.Model[ child.ID ];
  778. if ( 'Lcl_Translation' in lookAtTarget ) {
  779. var pos = lookAtTarget.Lcl_Translation.value;
  780. // DirectionalLight, SpotLight
  781. if ( model.target !== undefined ) {
  782. model.target.position.fromArray( pos );
  783. sceneGraph.add( model.target );
  784. } else { // Cameras and other Object3Ds
  785. model.lookAt( new THREE.Vector3().fromArray( pos ) );
  786. }
  787. }
  788. }
  789. } );
  790. }
  791. },
  792. bindSkeleton: function ( skeletons, geometryMap, modelMap ) {
  793. var bindMatrices = this.parsePoseNodes();
  794. for ( var ID in skeletons ) {
  795. var skeleton = skeletons[ ID ];
  796. var parents = connections.get( parseInt( skeleton.ID ) ).parents;
  797. parents.forEach( function ( parent ) {
  798. if ( geometryMap.has( parent.ID ) ) {
  799. var geoID = parent.ID;
  800. var geoRelationships = connections.get( geoID );
  801. geoRelationships.parents.forEach( function ( geoConnParent ) {
  802. if ( modelMap.has( geoConnParent.ID ) ) {
  803. var model = modelMap.get( geoConnParent.ID );
  804. model.bind( new THREE.Skeleton( skeleton.bones ), bindMatrices[ geoConnParent.ID ] );
  805. }
  806. } );
  807. }
  808. } );
  809. }
  810. },
  811. parsePoseNodes: function () {
  812. var bindMatrices = {};
  813. if ( 'Pose' in fbxTree.Objects ) {
  814. var BindPoseNode = fbxTree.Objects.Pose;
  815. for ( var nodeID in BindPoseNode ) {
  816. if ( BindPoseNode[ nodeID ].attrType === 'BindPose' ) {
  817. var poseNodes = BindPoseNode[ nodeID ].PoseNode;
  818. if ( Array.isArray( poseNodes ) ) {
  819. poseNodes.forEach( function ( poseNode ) {
  820. bindMatrices[ poseNode.Node ] = new THREE.Matrix4().fromArray( poseNode.Matrix.a );
  821. } );
  822. } else {
  823. bindMatrices[ poseNodes.Node ] = new THREE.Matrix4().fromArray( poseNodes.Matrix.a );
  824. }
  825. }
  826. }
  827. }
  828. return bindMatrices;
  829. },
  830. // Parse ambient color in FBXTree.GlobalSettings - if it's not set to black (default), create an ambient light
  831. createAmbientLight: function () {
  832. if ( 'GlobalSettings' in fbxTree && 'AmbientColor' in fbxTree.GlobalSettings ) {
  833. var ambientColor = fbxTree.GlobalSettings.AmbientColor.value;
  834. var r = ambientColor[ 0 ];
  835. var g = ambientColor[ 1 ];
  836. var b = ambientColor[ 2 ];
  837. if ( r !== 0 || g !== 0 || b !== 0 ) {
  838. var color = new THREE.Color( r, g, b );
  839. sceneGraph.add( new THREE.AmbientLight( color, 1 ) );
  840. }
  841. }
  842. },
  843. setupMorphMaterials: function () {
  844. var self = this;
  845. sceneGraph.traverse( function ( child ) {
  846. if ( child.isMesh ) {
  847. if ( child.geometry.morphAttributes.position && child.geometry.morphAttributes.position.length ) {
  848. if ( Array.isArray( child.material ) ) {
  849. child.material.forEach( function ( material, i ) {
  850. self.setupMorphMaterial( child, material, i );
  851. } );
  852. } else {
  853. self.setupMorphMaterial( child, child.material );
  854. }
  855. }
  856. }
  857. } );
  858. },
  859. setupMorphMaterial: function ( child, material, index ) {
  860. var uuid = child.uuid;
  861. var matUuid = material.uuid;
  862. // if a geometry has morph targets, it cannot share the material with other geometries
  863. var sharedMat = false;
  864. sceneGraph.traverse( function ( node ) {
  865. if ( node.isMesh ) {
  866. if ( Array.isArray( node.material ) ) {
  867. node.material.forEach( function ( mat ) {
  868. if ( mat.uuid === matUuid && node.uuid !== uuid ) sharedMat = true;
  869. } );
  870. } else if ( node.material.uuid === matUuid && node.uuid !== uuid ) sharedMat = true;
  871. }
  872. } );
  873. if ( sharedMat === true ) {
  874. var clonedMat = material.clone();
  875. clonedMat.morphTargets = true;
  876. if ( index === undefined ) child.material = clonedMat;
  877. else child.material[ index ] = clonedMat;
  878. } else material.morphTargets = true;
  879. }
  880. };
  881. // parse Geometry data from FBXTree and return map of BufferGeometries
  882. function GeometryParser() {}
  883. GeometryParser.prototype = {
  884. constructor: GeometryParser,
  885. // Parse nodes in FBXTree.Objects.Geometry
  886. parse: function ( deformers ) {
  887. var geometryMap = new Map();
  888. if ( 'Geometry' in fbxTree.Objects ) {
  889. var geoNodes = fbxTree.Objects.Geometry;
  890. for ( var nodeID in geoNodes ) {
  891. var relationships = connections.get( parseInt( nodeID ) );
  892. var geo = this.parseGeometry( relationships, geoNodes[ nodeID ], deformers );
  893. geometryMap.set( parseInt( nodeID ), geo );
  894. }
  895. }
  896. return geometryMap;
  897. },
  898. // Parse single node in FBXTree.Objects.Geometry
  899. parseGeometry: function ( relationships, geoNode, deformers ) {
  900. switch ( geoNode.attrType ) {
  901. case 'Mesh':
  902. return this.parseMeshGeometry( relationships, geoNode, deformers );
  903. break;
  904. case 'NurbsCurve':
  905. return this.parseNurbsGeometry( geoNode );
  906. break;
  907. }
  908. },
  909. // Parse single node mesh geometry in FBXTree.Objects.Geometry
  910. parseMeshGeometry: function ( relationships, geoNode, deformers ) {
  911. var skeletons = deformers.skeletons;
  912. var morphTargets = deformers.morphTargets;
  913. var modelNodes = relationships.parents.map( function ( parent ) {
  914. return fbxTree.Objects.Model[ parent.ID ];
  915. } );
  916. // don't create geometry if it is not associated with any models
  917. if ( modelNodes.length === 0 ) return;
  918. var skeleton = relationships.children.reduce( function ( skeleton, child ) {
  919. if ( skeletons[ child.ID ] !== undefined ) skeleton = skeletons[ child.ID ];
  920. return skeleton;
  921. }, null );
  922. var morphTarget = relationships.children.reduce( function ( morphTarget, child ) {
  923. if ( morphTargets[ child.ID ] !== undefined ) morphTarget = morphTargets[ child.ID ];
  924. return morphTarget;
  925. }, null );
  926. // Assume one model and get the preRotation from that
  927. // if there is more than one model associated with the geometry this may cause problems
  928. var modelNode = modelNodes[ 0 ];
  929. var transformData = {};
  930. if ( 'RotationOrder' in modelNode ) transformData.eulerOrder = getEulerOrder( modelNode.RotationOrder.value );
  931. if ( 'InheritType' in modelNode ) transformData.inheritType = parseInt( modelNode.InheritType.value );
  932. if ( 'GeometricTranslation' in modelNode ) transformData.translation = modelNode.GeometricTranslation.value;
  933. if ( 'GeometricRotation' in modelNode ) transformData.rotation = modelNode.GeometricRotation.value;
  934. if ( 'GeometricScaling' in modelNode ) transformData.scale = modelNode.GeometricScaling.value;
  935. var transform = generateTransform( transformData );
  936. return this.genGeometry( geoNode, skeleton, morphTarget, transform );
  937. },
  938. // Generate a THREE.BufferGeometry from a node in FBXTree.Objects.Geometry
  939. genGeometry: function ( geoNode, skeleton, morphTarget, preTransform ) {
  940. var geo = new THREE.BufferGeometry();
  941. if ( geoNode.attrName ) geo.name = geoNode.attrName;
  942. var geoInfo = this.parseGeoNode( geoNode, skeleton );
  943. var buffers = this.genBuffers( geoInfo );
  944. var positionAttribute = new THREE.Float32BufferAttribute( buffers.vertex, 3 );
  945. preTransform.applyToBufferAttribute( positionAttribute );
  946. geo.addAttribute( 'position', positionAttribute );
  947. if ( buffers.colors.length > 0 ) {
  948. geo.addAttribute( 'color', new THREE.Float32BufferAttribute( buffers.colors, 3 ) );
  949. }
  950. if ( skeleton ) {
  951. geo.addAttribute( 'skinIndex', new THREE.Uint16BufferAttribute( buffers.weightsIndices, 4 ) );
  952. geo.addAttribute( 'skinWeight', new THREE.Float32BufferAttribute( buffers.vertexWeights, 4 ) );
  953. // used later to bind the skeleton to the model
  954. geo.FBX_Deformer = skeleton;
  955. }
  956. if ( buffers.normal.length > 0 ) {
  957. var normalAttribute = new THREE.Float32BufferAttribute( buffers.normal, 3 );
  958. var normalMatrix = new THREE.Matrix3().getNormalMatrix( preTransform );
  959. normalMatrix.applyToBufferAttribute( normalAttribute );
  960. geo.addAttribute( 'normal', normalAttribute );
  961. }
  962. buffers.uvs.forEach( function ( uvBuffer, i ) {
  963. // subsequent uv buffers are called 'uv1', 'uv2', ...
  964. var name = 'uv' + ( i + 1 ).toString();
  965. // the first uv buffer is just called 'uv'
  966. if ( i === 0 ) {
  967. name = 'uv';
  968. }
  969. geo.addAttribute( name, new THREE.Float32BufferAttribute( buffers.uvs[ i ], 2 ) );
  970. } );
  971. if ( geoInfo.material && geoInfo.material.mappingType !== 'AllSame' ) {
  972. // Convert the material indices of each vertex into rendering groups on the geometry.
  973. var prevMaterialIndex = buffers.materialIndex[ 0 ];
  974. var startIndex = 0;
  975. buffers.materialIndex.forEach( function ( currentIndex, i ) {
  976. if ( currentIndex !== prevMaterialIndex ) {
  977. geo.addGroup( startIndex, i - startIndex, prevMaterialIndex );
  978. prevMaterialIndex = currentIndex;
  979. startIndex = i;
  980. }
  981. } );
  982. // the loop above doesn't add the last group, do that here.
  983. if ( geo.groups.length > 0 ) {
  984. var lastGroup = geo.groups[ geo.groups.length - 1 ];
  985. var lastIndex = lastGroup.start + lastGroup.count;
  986. if ( lastIndex !== buffers.materialIndex.length ) {
  987. geo.addGroup( lastIndex, buffers.materialIndex.length - lastIndex, prevMaterialIndex );
  988. }
  989. }
  990. // case where there are multiple materials but the whole geometry is only
  991. // using one of them
  992. if ( geo.groups.length === 0 ) {
  993. geo.addGroup( 0, buffers.materialIndex.length, buffers.materialIndex[ 0 ] );
  994. }
  995. }
  996. this.addMorphTargets( geo, geoNode, morphTarget, preTransform );
  997. return geo;
  998. },
  999. parseGeoNode: function ( geoNode, skeleton ) {
  1000. var geoInfo = {};
  1001. geoInfo.vertexPositions = ( geoNode.Vertices !== undefined ) ? geoNode.Vertices.a : [];
  1002. geoInfo.vertexIndices = ( geoNode.PolygonVertexIndex !== undefined ) ? geoNode.PolygonVertexIndex.a : [];
  1003. if ( geoNode.LayerElementColor ) {
  1004. geoInfo.color = this.parseVertexColors( geoNode.LayerElementColor[ 0 ] );
  1005. }
  1006. if ( geoNode.LayerElementMaterial ) {
  1007. geoInfo.material = this.parseMaterialIndices( geoNode.LayerElementMaterial[ 0 ] );
  1008. }
  1009. if ( geoNode.LayerElementNormal ) {
  1010. geoInfo.normal = this.parseNormals( geoNode.LayerElementNormal[ 0 ] );
  1011. }
  1012. if ( geoNode.LayerElementUV ) {
  1013. geoInfo.uv = [];
  1014. var i = 0;
  1015. while ( geoNode.LayerElementUV[ i ] ) {
  1016. geoInfo.uv.push( this.parseUVs( geoNode.LayerElementUV[ i ] ) );
  1017. i ++;
  1018. }
  1019. }
  1020. geoInfo.weightTable = {};
  1021. if ( skeleton !== null ) {
  1022. geoInfo.skeleton = skeleton;
  1023. skeleton.rawBones.forEach( function ( rawBone, i ) {
  1024. // loop over the bone's vertex indices and weights
  1025. rawBone.indices.forEach( function ( index, j ) {
  1026. if ( geoInfo.weightTable[ index ] === undefined ) geoInfo.weightTable[ index ] = [];
  1027. geoInfo.weightTable[ index ].push( {
  1028. id: i,
  1029. weight: rawBone.weights[ j ],
  1030. } );
  1031. } );
  1032. } );
  1033. }
  1034. return geoInfo;
  1035. },
  1036. genBuffers: function ( geoInfo ) {
  1037. var buffers = {
  1038. vertex: [],
  1039. normal: [],
  1040. colors: [],
  1041. uvs: [],
  1042. materialIndex: [],
  1043. vertexWeights: [],
  1044. weightsIndices: [],
  1045. };
  1046. var polygonIndex = 0;
  1047. var faceLength = 0;
  1048. var displayedWeightsWarning = false;
  1049. // these will hold data for a single face
  1050. var facePositionIndexes = [];
  1051. var faceNormals = [];
  1052. var faceColors = [];
  1053. var faceUVs = [];
  1054. var faceWeights = [];
  1055. var faceWeightIndices = [];
  1056. var self = this;
  1057. geoInfo.vertexIndices.forEach( function ( vertexIndex, polygonVertexIndex ) {
  1058. var endOfFace = false;
  1059. // Face index and vertex index arrays are combined in a single array
  1060. // A cube with quad faces looks like this:
  1061. // PolygonVertexIndex: *24 {
  1062. // a: 0, 1, 3, -3, 2, 3, 5, -5, 4, 5, 7, -7, 6, 7, 1, -1, 1, 7, 5, -4, 6, 0, 2, -5
  1063. // }
  1064. // Negative numbers mark the end of a face - first face here is 0, 1, 3, -3
  1065. // to find index of last vertex bit shift the index: ^ - 1
  1066. if ( vertexIndex < 0 ) {
  1067. vertexIndex = vertexIndex ^ - 1; // equivalent to ( x * -1 ) - 1
  1068. endOfFace = true;
  1069. }
  1070. var weightIndices = [];
  1071. var weights = [];
  1072. facePositionIndexes.push( vertexIndex * 3, vertexIndex * 3 + 1, vertexIndex * 3 + 2 );
  1073. if ( geoInfo.color ) {
  1074. var data = getData( polygonVertexIndex, polygonIndex, vertexIndex, geoInfo.color );
  1075. faceColors.push( data[ 0 ], data[ 1 ], data[ 2 ] );
  1076. }
  1077. if ( geoInfo.skeleton ) {
  1078. if ( geoInfo.weightTable[ vertexIndex ] !== undefined ) {
  1079. geoInfo.weightTable[ vertexIndex ].forEach( function ( wt ) {
  1080. weights.push( wt.weight );
  1081. weightIndices.push( wt.id );
  1082. } );
  1083. }
  1084. if ( weights.length > 4 ) {
  1085. if ( ! displayedWeightsWarning ) {
  1086. console.warn( 'THREE.FBXLoader: Vertex has more than 4 skinning weights assigned to vertex. Deleting additional weights.' );
  1087. displayedWeightsWarning = true;
  1088. }
  1089. var wIndex = [ 0, 0, 0, 0 ];
  1090. var Weight = [ 0, 0, 0, 0 ];
  1091. weights.forEach( function ( weight, weightIndex ) {
  1092. var currentWeight = weight;
  1093. var currentIndex = weightIndices[ weightIndex ];
  1094. Weight.forEach( function ( comparedWeight, comparedWeightIndex, comparedWeightArray ) {
  1095. if ( currentWeight > comparedWeight ) {
  1096. comparedWeightArray[ comparedWeightIndex ] = currentWeight;
  1097. currentWeight = comparedWeight;
  1098. var tmp = wIndex[ comparedWeightIndex ];
  1099. wIndex[ comparedWeightIndex ] = currentIndex;
  1100. currentIndex = tmp;
  1101. }
  1102. } );
  1103. } );
  1104. weightIndices = wIndex;
  1105. weights = Weight;
  1106. }
  1107. // if the weight array is shorter than 4 pad with 0s
  1108. while ( weights.length < 4 ) {
  1109. weights.push( 0 );
  1110. weightIndices.push( 0 );
  1111. }
  1112. for ( var i = 0; i < 4; ++ i ) {
  1113. faceWeights.push( weights[ i ] );
  1114. faceWeightIndices.push( weightIndices[ i ] );
  1115. }
  1116. }
  1117. if ( geoInfo.normal ) {
  1118. var data = getData( polygonVertexIndex, polygonIndex, vertexIndex, geoInfo.normal );
  1119. faceNormals.push( data[ 0 ], data[ 1 ], data[ 2 ] );
  1120. }
  1121. if ( geoInfo.material && geoInfo.material.mappingType !== 'AllSame' ) {
  1122. var materialIndex = getData( polygonVertexIndex, polygonIndex, vertexIndex, geoInfo.material )[ 0 ];
  1123. }
  1124. if ( geoInfo.uv ) {
  1125. geoInfo.uv.forEach( function ( uv, i ) {
  1126. var data = getData( polygonVertexIndex, polygonIndex, vertexIndex, uv );
  1127. if ( faceUVs[ i ] === undefined ) {
  1128. faceUVs[ i ] = [];
  1129. }
  1130. faceUVs[ i ].push( data[ 0 ] );
  1131. faceUVs[ i ].push( data[ 1 ] );
  1132. } );
  1133. }
  1134. faceLength ++;
  1135. if ( endOfFace ) {
  1136. self.genFace( buffers, geoInfo, facePositionIndexes, materialIndex, faceNormals, faceColors, faceUVs, faceWeights, faceWeightIndices, faceLength );
  1137. polygonIndex ++;
  1138. faceLength = 0;
  1139. // reset arrays for the next face
  1140. facePositionIndexes = [];
  1141. faceNormals = [];
  1142. faceColors = [];
  1143. faceUVs = [];
  1144. faceWeights = [];
  1145. faceWeightIndices = [];
  1146. }
  1147. } );
  1148. return buffers;
  1149. },
  1150. // Generate data for a single face in a geometry. If the face is a quad then split it into 2 tris
  1151. genFace: function ( buffers, geoInfo, facePositionIndexes, materialIndex, faceNormals, faceColors, faceUVs, faceWeights, faceWeightIndices, faceLength ) {
  1152. for ( var i = 2; i < faceLength; i ++ ) {
  1153. buffers.vertex.push( geoInfo.vertexPositions[ facePositionIndexes[ 0 ] ] );
  1154. buffers.vertex.push( geoInfo.vertexPositions[ facePositionIndexes[ 1 ] ] );
  1155. buffers.vertex.push( geoInfo.vertexPositions[ facePositionIndexes[ 2 ] ] );
  1156. buffers.vertex.push( geoInfo.vertexPositions[ facePositionIndexes[ ( i - 1 ) * 3 ] ] );
  1157. buffers.vertex.push( geoInfo.vertexPositions[ facePositionIndexes[ ( i - 1 ) * 3 + 1 ] ] );
  1158. buffers.vertex.push( geoInfo.vertexPositions[ facePositionIndexes[ ( i - 1 ) * 3 + 2 ] ] );
  1159. buffers.vertex.push( geoInfo.vertexPositions[ facePositionIndexes[ i * 3 ] ] );
  1160. buffers.vertex.push( geoInfo.vertexPositions[ facePositionIndexes[ i * 3 + 1 ] ] );
  1161. buffers.vertex.push( geoInfo.vertexPositions[ facePositionIndexes[ i * 3 + 2 ] ] );
  1162. if ( geoInfo.skeleton ) {
  1163. buffers.vertexWeights.push( faceWeights[ 0 ] );
  1164. buffers.vertexWeights.push( faceWeights[ 1 ] );
  1165. buffers.vertexWeights.push( faceWeights[ 2 ] );
  1166. buffers.vertexWeights.push( faceWeights[ 3 ] );
  1167. buffers.vertexWeights.push( faceWeights[ ( i - 1 ) * 4 ] );
  1168. buffers.vertexWeights.push( faceWeights[ ( i - 1 ) * 4 + 1 ] );
  1169. buffers.vertexWeights.push( faceWeights[ ( i - 1 ) * 4 + 2 ] );
  1170. buffers.vertexWeights.push( faceWeights[ ( i - 1 ) * 4 + 3 ] );
  1171. buffers.vertexWeights.push( faceWeights[ i * 4 ] );
  1172. buffers.vertexWeights.push( faceWeights[ i * 4 + 1 ] );
  1173. buffers.vertexWeights.push( faceWeights[ i * 4 + 2 ] );
  1174. buffers.vertexWeights.push( faceWeights[ i * 4 + 3 ] );
  1175. buffers.weightsIndices.push( faceWeightIndices[ 0 ] );
  1176. buffers.weightsIndices.push( faceWeightIndices[ 1 ] );
  1177. buffers.weightsIndices.push( faceWeightIndices[ 2 ] );
  1178. buffers.weightsIndices.push( faceWeightIndices[ 3 ] );
  1179. buffers.weightsIndices.push( faceWeightIndices[ ( i - 1 ) * 4 ] );
  1180. buffers.weightsIndices.push( faceWeightIndices[ ( i - 1 ) * 4 + 1 ] );
  1181. buffers.weightsIndices.push( faceWeightIndices[ ( i - 1 ) * 4 + 2 ] );
  1182. buffers.weightsIndices.push( faceWeightIndices[ ( i - 1 ) * 4 + 3 ] );
  1183. buffers.weightsIndices.push( faceWeightIndices[ i * 4 ] );
  1184. buffers.weightsIndices.push( faceWeightIndices[ i * 4 + 1 ] );
  1185. buffers.weightsIndices.push( faceWeightIndices[ i * 4 + 2 ] );
  1186. buffers.weightsIndices.push( faceWeightIndices[ i * 4 + 3 ] );
  1187. }
  1188. if ( geoInfo.color ) {
  1189. buffers.colors.push( faceColors[ 0 ] );
  1190. buffers.colors.push( faceColors[ 1 ] );
  1191. buffers.colors.push( faceColors[ 2 ] );
  1192. buffers.colors.push( faceColors[ ( i - 1 ) * 3 ] );
  1193. buffers.colors.push( faceColors[ ( i - 1 ) * 3 + 1 ] );
  1194. buffers.colors.push( faceColors[ ( i - 1 ) * 3 + 2 ] );
  1195. buffers.colors.push( faceColors[ i * 3 ] );
  1196. buffers.colors.push( faceColors[ i * 3 + 1 ] );
  1197. buffers.colors.push( faceColors[ i * 3 + 2 ] );
  1198. }
  1199. if ( geoInfo.material && geoInfo.material.mappingType !== 'AllSame' ) {
  1200. buffers.materialIndex.push( materialIndex );
  1201. buffers.materialIndex.push( materialIndex );
  1202. buffers.materialIndex.push( materialIndex );
  1203. }
  1204. if ( geoInfo.normal ) {
  1205. buffers.normal.push( faceNormals[ 0 ] );
  1206. buffers.normal.push( faceNormals[ 1 ] );
  1207. buffers.normal.push( faceNormals[ 2 ] );
  1208. buffers.normal.push( faceNormals[ ( i - 1 ) * 3 ] );
  1209. buffers.normal.push( faceNormals[ ( i - 1 ) * 3 + 1 ] );
  1210. buffers.normal.push( faceNormals[ ( i - 1 ) * 3 + 2 ] );
  1211. buffers.normal.push( faceNormals[ i * 3 ] );
  1212. buffers.normal.push( faceNormals[ i * 3 + 1 ] );
  1213. buffers.normal.push( faceNormals[ i * 3 + 2 ] );
  1214. }
  1215. if ( geoInfo.uv ) {
  1216. geoInfo.uv.forEach( function ( uv, j ) {
  1217. if ( buffers.uvs[ j ] === undefined ) buffers.uvs[ j ] = [];
  1218. buffers.uvs[ j ].push( faceUVs[ j ][ 0 ] );
  1219. buffers.uvs[ j ].push( faceUVs[ j ][ 1 ] );
  1220. buffers.uvs[ j ].push( faceUVs[ j ][ ( i - 1 ) * 2 ] );
  1221. buffers.uvs[ j ].push( faceUVs[ j ][ ( i - 1 ) * 2 + 1 ] );
  1222. buffers.uvs[ j ].push( faceUVs[ j ][ i * 2 ] );
  1223. buffers.uvs[ j ].push( faceUVs[ j ][ i * 2 + 1 ] );
  1224. } );
  1225. }
  1226. }
  1227. },
  1228. addMorphTargets: function ( parentGeo, parentGeoNode, morphTarget, preTransform ) {
  1229. if ( morphTarget === null ) return;
  1230. parentGeo.morphAttributes.position = [];
  1231. // parentGeo.morphAttributes.normal = []; // not implemented
  1232. var self = this;
  1233. morphTarget.rawTargets.forEach( function ( rawTarget ) {
  1234. var morphGeoNode = fbxTree.Objects.Geometry[ rawTarget.geoID ];
  1235. if ( morphGeoNode !== undefined ) {
  1236. self.genMorphGeometry( parentGeo, parentGeoNode, morphGeoNode, preTransform, rawTarget.name );
  1237. }
  1238. } );
  1239. },
  1240. // a morph geometry node is similar to a standard node, and the node is also contained
  1241. // in FBXTree.Objects.Geometry, however it can only have attributes for position, normal
  1242. // and a special attribute Index defining which vertices of the original geometry are affected
  1243. // Normal and position attributes only have data for the vertices that are affected by the morph
  1244. genMorphGeometry: function ( parentGeo, parentGeoNode, morphGeoNode, preTransform, name ) {
  1245. var morphGeo = new THREE.BufferGeometry();
  1246. if ( morphGeoNode.attrName ) morphGeo.name = morphGeoNode.attrName;
  1247. var vertexIndices = ( parentGeoNode.PolygonVertexIndex !== undefined ) ? parentGeoNode.PolygonVertexIndex.a : [];
  1248. // make a copy of the parent's vertex positions
  1249. var vertexPositions = ( parentGeoNode.Vertices !== undefined ) ? parentGeoNode.Vertices.a.slice() : [];
  1250. var morphPositions = ( morphGeoNode.Vertices !== undefined ) ? morphGeoNode.Vertices.a : [];
  1251. var indices = ( morphGeoNode.Indexes !== undefined ) ? morphGeoNode.Indexes.a : [];
  1252. for ( var i = 0; i < indices.length; i ++ ) {
  1253. var morphIndex = indices[ i ] * 3;
  1254. // FBX format uses blend shapes rather than morph targets. This can be converted
  1255. // by additively combining the blend shape positions with the original geometry's positions
  1256. vertexPositions[ morphIndex ] += morphPositions[ i * 3 ];
  1257. vertexPositions[ morphIndex + 1 ] += morphPositions[ i * 3 + 1 ];
  1258. vertexPositions[ morphIndex + 2 ] += morphPositions[ i * 3 + 2 ];
  1259. }
  1260. // TODO: add morph normal support
  1261. var morphGeoInfo = {
  1262. vertexIndices: vertexIndices,
  1263. vertexPositions: vertexPositions,
  1264. };
  1265. var morphBuffers = this.genBuffers( morphGeoInfo );
  1266. var positionAttribute = new THREE.Float32BufferAttribute( morphBuffers.vertex, 3 );
  1267. positionAttribute.name = name || morphGeoNode.attrName;
  1268. preTransform.applyToBufferAttribute( positionAttribute );
  1269. parentGeo.morphAttributes.position.push( positionAttribute );
  1270. },
  1271. // Parse normal from FBXTree.Objects.Geometry.LayerElementNormal if it exists
  1272. parseNormals: function ( NormalNode ) {
  1273. var mappingType = NormalNode.MappingInformationType;
  1274. var referenceType = NormalNode.ReferenceInformationType;
  1275. var buffer = NormalNode.Normals.a;
  1276. var indexBuffer = [];
  1277. if ( referenceType === 'IndexToDirect' ) {
  1278. if ( 'NormalIndex' in NormalNode ) {
  1279. indexBuffer = NormalNode.NormalIndex.a;
  1280. } else if ( 'NormalsIndex' in NormalNode ) {
  1281. indexBuffer = NormalNode.NormalsIndex.a;
  1282. }
  1283. }
  1284. return {
  1285. dataSize: 3,
  1286. buffer: buffer,
  1287. indices: indexBuffer,
  1288. mappingType: mappingType,
  1289. referenceType: referenceType
  1290. };
  1291. },
  1292. // Parse UVs from FBXTree.Objects.Geometry.LayerElementUV if it exists
  1293. parseUVs: function ( UVNode ) {
  1294. var mappingType = UVNode.MappingInformationType;
  1295. var referenceType = UVNode.ReferenceInformationType;
  1296. var buffer = UVNode.UV.a;
  1297. var indexBuffer = [];
  1298. if ( referenceType === 'IndexToDirect' ) {
  1299. indexBuffer = UVNode.UVIndex.a;
  1300. }
  1301. return {
  1302. dataSize: 2,
  1303. buffer: buffer,
  1304. indices: indexBuffer,
  1305. mappingType: mappingType,
  1306. referenceType: referenceType
  1307. };
  1308. },
  1309. // Parse Vertex Colors from FBXTree.Objects.Geometry.LayerElementColor if it exists
  1310. parseVertexColors: function ( ColorNode ) {
  1311. var mappingType = ColorNode.MappingInformationType;
  1312. var referenceType = ColorNode.ReferenceInformationType;
  1313. var buffer = ColorNode.Colors.a;
  1314. var indexBuffer = [];
  1315. if ( referenceType === 'IndexToDirect' ) {
  1316. indexBuffer = ColorNode.ColorIndex.a;
  1317. }
  1318. return {
  1319. dataSize: 4,
  1320. buffer: buffer,
  1321. indices: indexBuffer,
  1322. mappingType: mappingType,
  1323. referenceType: referenceType
  1324. };
  1325. },
  1326. // Parse mapping and material data in FBXTree.Objects.Geometry.LayerElementMaterial if it exists
  1327. parseMaterialIndices: function ( MaterialNode ) {
  1328. var mappingType = MaterialNode.MappingInformationType;
  1329. var referenceType = MaterialNode.ReferenceInformationType;
  1330. if ( mappingType === 'NoMappingInformation' ) {
  1331. return {
  1332. dataSize: 1,
  1333. buffer: [ 0 ],
  1334. indices: [ 0 ],
  1335. mappingType: 'AllSame',
  1336. referenceType: referenceType
  1337. };
  1338. }
  1339. var materialIndexBuffer = MaterialNode.Materials.a;
  1340. // Since materials are stored as indices, there's a bit of a mismatch between FBX and what
  1341. // we expect.So we create an intermediate buffer that points to the index in the buffer,
  1342. // for conforming with the other functions we've written for other data.
  1343. var materialIndices = [];
  1344. for ( var i = 0; i < materialIndexBuffer.length; ++ i ) {
  1345. materialIndices.push( i );
  1346. }
  1347. return {
  1348. dataSize: 1,
  1349. buffer: materialIndexBuffer,
  1350. indices: materialIndices,
  1351. mappingType: mappingType,
  1352. referenceType: referenceType
  1353. };
  1354. },
  1355. // Generate a NurbGeometry from a node in FBXTree.Objects.Geometry
  1356. parseNurbsGeometry: function ( geoNode ) {
  1357. if ( THREE.NURBSCurve === undefined ) {
  1358. console.error( 'THREE.FBXLoader: The loader relies on THREE.NURBSCurve for any nurbs present in the model. Nurbs will show up as empty geometry.' );
  1359. return new THREE.BufferGeometry();
  1360. }
  1361. var order = parseInt( geoNode.Order );
  1362. if ( isNaN( order ) ) {
  1363. console.error( 'THREE.FBXLoader: Invalid Order %s given for geometry ID: %s', geoNode.Order, geoNode.id );
  1364. return new THREE.BufferGeometry();
  1365. }
  1366. var degree = order - 1;
  1367. var knots = geoNode.KnotVector.a;
  1368. var controlPoints = [];
  1369. var pointsValues = geoNode.Points.a;
  1370. for ( var i = 0, l = pointsValues.length; i < l; i += 4 ) {
  1371. controlPoints.push( new THREE.Vector4().fromArray( pointsValues, i ) );
  1372. }
  1373. var startKnot, endKnot;
  1374. if ( geoNode.Form === 'Closed' ) {
  1375. controlPoints.push( controlPoints[ 0 ] );
  1376. } else if ( geoNode.Form === 'Periodic' ) {
  1377. startKnot = degree;
  1378. endKnot = knots.length - 1 - startKnot;
  1379. for ( var i = 0; i < degree; ++ i ) {
  1380. controlPoints.push( controlPoints[ i ] );
  1381. }
  1382. }
  1383. var curve = new THREE.NURBSCurve( degree, knots, controlPoints, startKnot, endKnot );
  1384. var vertices = curve.getPoints( controlPoints.length * 7 );
  1385. var positions = new Float32Array( vertices.length * 3 );
  1386. vertices.forEach( function ( vertex, i ) {
  1387. vertex.toArray( positions, i * 3 );
  1388. } );
  1389. var geometry = new THREE.BufferGeometry();
  1390. geometry.addAttribute( 'position', new THREE.BufferAttribute( positions, 3 ) );
  1391. return geometry;
  1392. },
  1393. };
  1394. // parse animation data from FBXTree
  1395. function AnimationParser() {}
  1396. AnimationParser.prototype = {
  1397. constructor: AnimationParser,
  1398. // take raw animation clips and turn them into three.js animation clips
  1399. parse: function () {
  1400. var animationClips = [];
  1401. var rawClips = this.parseClips();
  1402. if ( rawClips !== undefined ) {
  1403. for ( var key in rawClips ) {
  1404. var rawClip = rawClips[ key ];
  1405. var clip = this.addClip( rawClip );
  1406. animationClips.push( clip );
  1407. }
  1408. }
  1409. return animationClips;
  1410. },
  1411. parseClips: function () {
  1412. // since the actual transformation data is stored in FBXTree.Objects.AnimationCurve,
  1413. // if this is undefined we can safely assume there are no animations
  1414. if ( fbxTree.Objects.AnimationCurve === undefined ) return undefined;
  1415. var curveNodesMap = this.parseAnimationCurveNodes();
  1416. this.parseAnimationCurves( curveNodesMap );
  1417. var layersMap = this.parseAnimationLayers( curveNodesMap );
  1418. var rawClips = this.parseAnimStacks( layersMap );
  1419. return rawClips;
  1420. },
  1421. // parse nodes in FBXTree.Objects.AnimationCurveNode
  1422. // each AnimationCurveNode holds data for an animation transform for a model (e.g. left arm rotation )
  1423. // and is referenced by an AnimationLayer
  1424. parseAnimationCurveNodes: function () {
  1425. var rawCurveNodes = fbxTree.Objects.AnimationCurveNode;
  1426. var curveNodesMap = new Map();
  1427. for ( var nodeID in rawCurveNodes ) {
  1428. var rawCurveNode = rawCurveNodes[ nodeID ];
  1429. if ( rawCurveNode.attrName.match( /S|R|T|DeformPercent/ ) !== null ) {
  1430. var curveNode = {
  1431. id: rawCurveNode.id,
  1432. attr: rawCurveNode.attrName,
  1433. curves: {},
  1434. };
  1435. curveNodesMap.set( curveNode.id, curveNode );
  1436. }
  1437. }
  1438. return curveNodesMap;
  1439. },
  1440. // parse nodes in FBXTree.Objects.AnimationCurve and connect them up to
  1441. // previously parsed AnimationCurveNodes. Each AnimationCurve holds data for a single animated
  1442. // axis ( e.g. times and values of x rotation)
  1443. parseAnimationCurves: function ( curveNodesMap ) {
  1444. var rawCurves = fbxTree.Objects.AnimationCurve;
  1445. // TODO: Many values are identical up to roundoff error, but won't be optimised
  1446. // e.g. position times: [0, 0.4, 0. 8]
  1447. // position values: [7.23538335023477e-7, 93.67518615722656, -0.9982695579528809, 7.23538335023477e-7, 93.67518615722656, -0.9982695579528809, 7.235384487103147e-7, 93.67520904541016, -0.9982695579528809]
  1448. // clearly, this should be optimised to
  1449. // times: [0], positions [7.23538335023477e-7, 93.67518615722656, -0.9982695579528809]
  1450. // this shows up in nearly every FBX file, and generally time array is length > 100
  1451. for ( var nodeID in rawCurves ) {
  1452. var animationCurve = {
  1453. id: rawCurves[ nodeID ].id,
  1454. times: rawCurves[ nodeID ].KeyTime.a.map( convertFBXTimeToSeconds ),
  1455. values: rawCurves[ nodeID ].KeyValueFloat.a,
  1456. };
  1457. var relationships = connections.get( animationCurve.id );
  1458. if ( relationships !== undefined ) {
  1459. var animationCurveID = relationships.parents[ 0 ].ID;
  1460. var animationCurveRelationship = relationships.parents[ 0 ].relationship;
  1461. if ( animationCurveRelationship.match( /X/ ) ) {
  1462. curveNodesMap.get( animationCurveID ).curves[ 'x' ] = animationCurve;
  1463. } else if ( animationCurveRelationship.match( /Y/ ) ) {
  1464. curveNodesMap.get( animationCurveID ).curves[ 'y' ] = animationCurve;
  1465. } else if ( animationCurveRelationship.match( /Z/ ) ) {
  1466. curveNodesMap.get( animationCurveID ).curves[ 'z' ] = animationCurve;
  1467. } else if ( animationCurveRelationship.match( /d|DeformPercent/ ) && curveNodesMap.has( animationCurveID ) ) {
  1468. curveNodesMap.get( animationCurveID ).curves[ 'morph' ] = animationCurve;
  1469. }
  1470. }
  1471. }
  1472. },
  1473. // parse nodes in FBXTree.Objects.AnimationLayer. Each layers holds references
  1474. // to various AnimationCurveNodes and is referenced by an AnimationStack node
  1475. // note: theoretically a stack can have multiple layers, however in practice there always seems to be one per stack
  1476. parseAnimationLayers: function ( curveNodesMap ) {
  1477. var rawLayers = fbxTree.Objects.AnimationLayer;
  1478. var layersMap = new Map();
  1479. for ( var nodeID in rawLayers ) {
  1480. var layerCurveNodes = [];
  1481. var connection = connections.get( parseInt( nodeID ) );
  1482. if ( connection !== undefined ) {
  1483. // all the animationCurveNodes used in the layer
  1484. var children = connection.children;
  1485. children.forEach( function ( child, i ) {
  1486. if ( curveNodesMap.has( child.ID ) ) {
  1487. var curveNode = curveNodesMap.get( child.ID );
  1488. // check that the curves are defined for at least one axis, otherwise ignore the curveNode
  1489. if ( curveNode.curves.x !== undefined || curveNode.curves.y !== undefined || curveNode.curves.z !== undefined ) {
  1490. if ( layerCurveNodes[ i ] === undefined ) {
  1491. var modelID = connections.get( child.ID ).parents.filter( function ( parent ) {
  1492. return parent.relationship !== undefined;
  1493. } )[ 0 ].ID;
  1494. if ( modelID !== undefined ) {
  1495. var rawModel = fbxTree.Objects.Model[ modelID.toString() ];
  1496. var node = {
  1497. modelName: THREE.PropertyBinding.sanitizeNodeName( rawModel.attrName ),
  1498. ID: rawModel.id,
  1499. initialPosition: [ 0, 0, 0 ],
  1500. initialRotation: [ 0, 0, 0 ],
  1501. initialScale: [ 1, 1, 1 ],
  1502. };
  1503. sceneGraph.traverse( function ( child ) {
  1504. if ( child.ID === rawModel.id ) {
  1505. node.transform = child.matrix;
  1506. if ( child.userData.transformData ) node.eulerOrder = child.userData.transformData.eulerOrder;
  1507. }
  1508. } );
  1509. if ( ! node.transform ) node.transform = new THREE.Matrix4();
  1510. // if the animated model is pre rotated, we'll have to apply the pre rotations to every
  1511. // animation value as well
  1512. if ( 'PreRotation' in rawModel ) node.preRotation = rawModel.PreRotation.value;
  1513. if ( 'PostRotation' in rawModel ) node.postRotation = rawModel.PostRotation.value;
  1514. layerCurveNodes[ i ] = node;
  1515. }
  1516. }
  1517. if ( layerCurveNodes[ i ] ) layerCurveNodes[ i ][ curveNode.attr ] = curveNode;
  1518. } else if ( curveNode.curves.morph !== undefined ) {
  1519. if ( layerCurveNodes[ i ] === undefined ) {
  1520. var deformerID = connections.get( child.ID ).parents.filter( function ( parent ) {
  1521. return parent.relationship !== undefined;
  1522. } )[ 0 ].ID;
  1523. var morpherID = connections.get( deformerID ).parents[ 0 ].ID;
  1524. var geoID = connections.get( morpherID ).parents[ 0 ].ID;
  1525. // assuming geometry is not used in more than one model
  1526. var modelID = connections.get( geoID ).parents[ 0 ].ID;
  1527. var rawModel = fbxTree.Objects.Model[ modelID ];
  1528. var node = {
  1529. modelName: THREE.PropertyBinding.sanitizeNodeName( rawModel.attrName ),
  1530. morphName: fbxTree.Objects.Deformer[ deformerID ].attrName,
  1531. };
  1532. layerCurveNodes[ i ] = node;
  1533. }
  1534. layerCurveNodes[ i ][ curveNode.attr ] = curveNode;
  1535. }
  1536. }
  1537. } );
  1538. layersMap.set( parseInt( nodeID ), layerCurveNodes );
  1539. }
  1540. }
  1541. return layersMap;
  1542. },
  1543. // parse nodes in FBXTree.Objects.AnimationStack. These are the top level node in the animation
  1544. // hierarchy. Each Stack node will be used to create a THREE.AnimationClip
  1545. parseAnimStacks: function ( layersMap ) {
  1546. var rawStacks = fbxTree.Objects.AnimationStack;
  1547. // connect the stacks (clips) up to the layers
  1548. var rawClips = {};
  1549. for ( var nodeID in rawStacks ) {
  1550. var children = connections.get( parseInt( nodeID ) ).children;
  1551. if ( children.length > 1 ) {
  1552. // it seems like stacks will always be associated with a single layer. But just in case there are files
  1553. // where there are multiple layers per stack, we'll display a warning
  1554. console.warn( 'THREE.FBXLoader: Encountered an animation stack with multiple layers, this is currently not supported. Ignoring subsequent layers.' );
  1555. }
  1556. var layer = layersMap.get( children[ 0 ].ID );
  1557. rawClips[ nodeID ] = {
  1558. name: rawStacks[ nodeID ].attrName,
  1559. layer: layer,
  1560. };
  1561. }
  1562. return rawClips;
  1563. },
  1564. addClip: function ( rawClip ) {
  1565. var tracks = [];
  1566. var self = this;
  1567. rawClip.layer.forEach( function ( rawTracks ) {
  1568. tracks = tracks.concat( self.generateTracks( rawTracks ) );
  1569. } );
  1570. return new THREE.AnimationClip( rawClip.name, - 1, tracks );
  1571. },
  1572. generateTracks: function ( rawTracks ) {
  1573. var tracks = [];
  1574. var initialPosition = new THREE.Vector3();
  1575. var initialRotation = new THREE.Quaternion();
  1576. var initialScale = new THREE.Vector3();
  1577. if ( rawTracks.transform ) rawTracks.transform.decompose( initialPosition, initialRotation, initialScale );
  1578. initialPosition = initialPosition.toArray();
  1579. initialRotation = new THREE.Euler().setFromQuaternion( initialRotation, rawTracks.eulerOrder ).toArray();
  1580. initialScale = initialScale.toArray();
  1581. if ( rawTracks.T !== undefined && Object.keys( rawTracks.T.curves ).length > 0 ) {
  1582. var positionTrack = this.generateVectorTrack( rawTracks.modelName, rawTracks.T.curves, initialPosition, 'position' );
  1583. if ( positionTrack !== undefined ) tracks.push( positionTrack );
  1584. }
  1585. if ( rawTracks.R !== undefined && Object.keys( rawTracks.R.curves ).length > 0 ) {
  1586. var rotationTrack = this.generateRotationTrack( rawTracks.modelName, rawTracks.R.curves, initialRotation, rawTracks.preRotation, rawTracks.postRotation, rawTracks.eulerOrder );
  1587. if ( rotationTrack !== undefined ) tracks.push( rotationTrack );
  1588. }
  1589. if ( rawTracks.S !== undefined && Object.keys( rawTracks.S.curves ).length > 0 ) {
  1590. var scaleTrack = this.generateVectorTrack( rawTracks.modelName, rawTracks.S.curves, initialScale, 'scale' );
  1591. if ( scaleTrack !== undefined ) tracks.push( scaleTrack );
  1592. }
  1593. if ( rawTracks.DeformPercent !== undefined ) {
  1594. var morphTrack = this.generateMorphTrack( rawTracks );
  1595. if ( morphTrack !== undefined ) tracks.push( morphTrack );
  1596. }
  1597. return tracks;
  1598. },
  1599. generateVectorTrack: function ( modelName, curves, initialValue, type ) {
  1600. var times = this.getTimesForAllAxes( curves );
  1601. var values = this.getKeyframeTrackValues( times, curves, initialValue );
  1602. return new THREE.VectorKeyframeTrack( modelName + '.' + type, times, values );
  1603. },
  1604. generateRotationTrack: function ( modelName, curves, initialValue, preRotation, postRotation, eulerOrder ) {
  1605. if ( curves.x !== undefined ) {
  1606. this.interpolateRotations( curves.x );
  1607. curves.x.values = curves.x.values.map( THREE.Math.degToRad );
  1608. }
  1609. if ( curves.y !== undefined ) {
  1610. this.interpolateRotations( curves.y );
  1611. curves.y.values = curves.y.values.map( THREE.Math.degToRad );
  1612. }
  1613. if ( curves.z !== undefined ) {
  1614. this.interpolateRotations( curves.z );
  1615. curves.z.values = curves.z.values.map( THREE.Math.degToRad );
  1616. }
  1617. var times = this.getTimesForAllAxes( curves );
  1618. var values = this.getKeyframeTrackValues( times, curves, initialValue );
  1619. if ( preRotation !== undefined ) {
  1620. preRotation = preRotation.map( THREE.Math.degToRad );
  1621. preRotation.push( eulerOrder );
  1622. preRotation = new THREE.Euler().fromArray( preRotation );
  1623. preRotation = new THREE.Quaternion().setFromEuler( preRotation );
  1624. }
  1625. if ( postRotation !== undefined ) {
  1626. postRotation = postRotation.map( THREE.Math.degToRad );
  1627. postRotation.push( eulerOrder );
  1628. postRotation = new THREE.Euler().fromArray( postRotation );
  1629. postRotation = new THREE.Quaternion().setFromEuler( postRotation ).inverse();
  1630. }
  1631. var quaternion = new THREE.Quaternion();
  1632. var euler = new THREE.Euler();
  1633. var quaternionValues = [];
  1634. for ( var i = 0; i < values.length; i += 3 ) {
  1635. euler.set( values[ i ], values[ i + 1 ], values[ i + 2 ], eulerOrder );
  1636. quaternion.setFromEuler( euler );
  1637. if ( preRotation !== undefined ) quaternion.premultiply( preRotation );
  1638. if ( postRotation !== undefined ) quaternion.multiply( postRotation );
  1639. quaternion.toArray( quaternionValues, ( i / 3 ) * 4 );
  1640. }
  1641. return new THREE.QuaternionKeyframeTrack( modelName + '.quaternion', times, quaternionValues );
  1642. },
  1643. generateMorphTrack: function ( rawTracks ) {
  1644. var curves = rawTracks.DeformPercent.curves.morph;
  1645. var values = curves.values.map( function ( val ) {
  1646. return val / 100;
  1647. } );
  1648. var morphNum = sceneGraph.getObjectByName( rawTracks.modelName ).morphTargetDictionary[ rawTracks.morphName ];
  1649. return new THREE.NumberKeyframeTrack( rawTracks.modelName + '.morphTargetInfluences[' + morphNum + ']', curves.times, values );
  1650. },
  1651. // For all animated objects, times are defined separately for each axis
  1652. // Here we'll combine the times into one sorted array without duplicates
  1653. getTimesForAllAxes: function ( curves ) {
  1654. var times = [];
  1655. // first join together the times for each axis, if defined
  1656. if ( curves.x !== undefined ) times = times.concat( curves.x.times );
  1657. if ( curves.y !== undefined ) times = times.concat( curves.y.times );
  1658. if ( curves.z !== undefined ) times = times.concat( curves.z.times );
  1659. // then sort them and remove duplicates
  1660. times = times.sort( function ( a, b ) {
  1661. return a - b;
  1662. } ).filter( function ( elem, index, array ) {
  1663. return array.indexOf( elem ) == index;
  1664. } );
  1665. return times;
  1666. },
  1667. getKeyframeTrackValues: function ( times, curves, initialValue ) {
  1668. var prevValue = initialValue;
  1669. var values = [];
  1670. var xIndex = - 1;
  1671. var yIndex = - 1;
  1672. var zIndex = - 1;
  1673. times.forEach( function ( time ) {
  1674. if ( curves.x ) xIndex = curves.x.times.indexOf( time );
  1675. if ( curves.y ) yIndex = curves.y.times.indexOf( time );
  1676. if ( curves.z ) zIndex = curves.z.times.indexOf( time );
  1677. // if there is an x value defined for this frame, use that
  1678. if ( xIndex !== - 1 ) {
  1679. var xValue = curves.x.values[ xIndex ];
  1680. values.push( xValue );
  1681. prevValue[ 0 ] = xValue;
  1682. } else {
  1683. // otherwise use the x value from the previous frame
  1684. values.push( prevValue[ 0 ] );
  1685. }
  1686. if ( yIndex !== - 1 ) {
  1687. var yValue = curves.y.values[ yIndex ];
  1688. values.push( yValue );
  1689. prevValue[ 1 ] = yValue;
  1690. } else {
  1691. values.push( prevValue[ 1 ] );
  1692. }
  1693. if ( zIndex !== - 1 ) {
  1694. var zValue = curves.z.values[ zIndex ];
  1695. values.push( zValue );
  1696. prevValue[ 2 ] = zValue;
  1697. } else {
  1698. values.push( prevValue[ 2 ] );
  1699. }
  1700. } );
  1701. return values;
  1702. },
  1703. // Rotations are defined as Euler angles which can have values of any size
  1704. // These will be converted to quaternions which don't support values greater than
  1705. // PI, so we'll interpolate large rotations
  1706. interpolateRotations: function ( curve ) {
  1707. for ( var i = 1; i < curve.values.length; i ++ ) {
  1708. var initialValue = curve.values[ i - 1 ];
  1709. var valuesSpan = curve.values[ i ] - initialValue;
  1710. var absoluteSpan = Math.abs( valuesSpan );
  1711. if ( absoluteSpan >= 180 ) {
  1712. var numSubIntervals = absoluteSpan / 180;
  1713. var step = valuesSpan / numSubIntervals;
  1714. var nextValue = initialValue + step;
  1715. var initialTime = curve.times[ i - 1 ];
  1716. var timeSpan = curve.times[ i ] - initialTime;
  1717. var interval = timeSpan / numSubIntervals;
  1718. var nextTime = initialTime + interval;
  1719. var interpolatedTimes = [];
  1720. var interpolatedValues = [];
  1721. while ( nextTime < curve.times[ i ] ) {
  1722. interpolatedTimes.push( nextTime );
  1723. nextTime += interval;
  1724. interpolatedValues.push( nextValue );
  1725. nextValue += step;
  1726. }
  1727. curve.times = inject( curve.times, i, interpolatedTimes );
  1728. curve.values = inject( curve.values, i, interpolatedValues );
  1729. }
  1730. }
  1731. },
  1732. };
  1733. // parse an FBX file in ASCII format
  1734. function TextParser() {}
  1735. TextParser.prototype = {
  1736. constructor: TextParser,
  1737. getPrevNode: function () {
  1738. return this.nodeStack[ this.currentIndent - 2 ];
  1739. },
  1740. getCurrentNode: function () {
  1741. return this.nodeStack[ this.currentIndent - 1 ];
  1742. },
  1743. getCurrentProp: function () {
  1744. return this.currentProp;
  1745. },
  1746. pushStack: function ( node ) {
  1747. this.nodeStack.push( node );
  1748. this.currentIndent += 1;
  1749. },
  1750. popStack: function () {
  1751. this.nodeStack.pop();
  1752. this.currentIndent -= 1;
  1753. },
  1754. setCurrentProp: function ( val, name ) {
  1755. this.currentProp = val;
  1756. this.currentPropName = name;
  1757. },
  1758. parse: function ( text ) {
  1759. this.currentIndent = 0;
  1760. this.allNodes = new FBXTree();
  1761. this.nodeStack = [];
  1762. this.currentProp = [];
  1763. this.currentPropName = '';
  1764. var self = this;
  1765. var split = text.split( /[\r\n]+/ );
  1766. split.forEach( function ( line, i ) {
  1767. var matchComment = line.match( /^[\s\t]*;/ );
  1768. var matchEmpty = line.match( /^[\s\t]*$/ );
  1769. if ( matchComment || matchEmpty ) return;
  1770. var matchBeginning = line.match( '^\\t{' + self.currentIndent + '}(\\w+):(.*){', '' );
  1771. var matchProperty = line.match( '^\\t{' + ( self.currentIndent ) + '}(\\w+):[\\s\\t\\r\\n](.*)' );
  1772. var matchEnd = line.match( '^\\t{' + ( self.currentIndent - 1 ) + '}}' );
  1773. if ( matchBeginning ) {
  1774. self.parseNodeBegin( line, matchBeginning );
  1775. } else if ( matchProperty ) {
  1776. self.parseNodeProperty( line, matchProperty, split[ ++ i ] );
  1777. } else if ( matchEnd ) {
  1778. self.popStack();
  1779. } else if ( line.match( /^[^\s\t}]/ ) ) {
  1780. // large arrays are split over multiple lines terminated with a ',' character
  1781. // if this is encountered the line needs to be joined to the previous line
  1782. self.parseNodePropertyContinued( line );
  1783. }
  1784. } );
  1785. return this.allNodes;
  1786. },
  1787. parseNodeBegin: function ( line, property ) {
  1788. var nodeName = property[ 1 ].trim().replace( /^"/, '' ).replace( /"$/, '' );
  1789. var nodeAttrs = property[ 2 ].split( ',' ).map( function ( attr ) {
  1790. return attr.trim().replace( /^"/, '' ).replace( /"$/, '' );
  1791. } );
  1792. var node = { name: nodeName };
  1793. var attrs = this.parseNodeAttr( nodeAttrs );
  1794. var currentNode = this.getCurrentNode();
  1795. // a top node
  1796. if ( this.currentIndent === 0 ) {
  1797. this.allNodes.add( nodeName, node );
  1798. } else { // a subnode
  1799. // if the subnode already exists, append it
  1800. if ( nodeName in currentNode ) {
  1801. // special case Pose needs PoseNodes as an array
  1802. if ( nodeName === 'PoseNode' ) {
  1803. currentNode.PoseNode.push( node );
  1804. } else if ( currentNode[ nodeName ].id !== undefined ) {
  1805. currentNode[ nodeName ] = {};
  1806. currentNode[ nodeName ][ currentNode[ nodeName ].id ] = currentNode[ nodeName ];
  1807. }
  1808. if ( attrs.id !== '' ) currentNode[ nodeName ][ attrs.id ] = node;
  1809. } else if ( typeof attrs.id === 'number' ) {
  1810. currentNode[ nodeName ] = {};
  1811. currentNode[ nodeName ][ attrs.id ] = node;
  1812. } else if ( nodeName !== 'Properties70' ) {
  1813. if ( nodeName === 'PoseNode' ) currentNode[ nodeName ] = [ node ];
  1814. else currentNode[ nodeName ] = node;
  1815. }
  1816. }
  1817. if ( typeof attrs.id === 'number' ) node.id = attrs.id;
  1818. if ( attrs.name !== '' ) node.attrName = attrs.name;
  1819. if ( attrs.type !== '' ) node.attrType = attrs.type;
  1820. this.pushStack( node );
  1821. },
  1822. parseNodeAttr: function ( attrs ) {
  1823. var id = attrs[ 0 ];
  1824. if ( attrs[ 0 ] !== '' ) {
  1825. id = parseInt( attrs[ 0 ] );
  1826. if ( isNaN( id ) ) {
  1827. id = attrs[ 0 ];
  1828. }
  1829. }
  1830. var name = '', type = '';
  1831. if ( attrs.length > 1 ) {
  1832. name = attrs[ 1 ].replace( /^(\w+)::/, '' );
  1833. type = attrs[ 2 ];
  1834. }
  1835. return { id: id, name: name, type: type };
  1836. },
  1837. parseNodeProperty: function ( line, property, contentLine ) {
  1838. var propName = property[ 1 ].replace( /^"/, '' ).replace( /"$/, '' ).trim();
  1839. var propValue = property[ 2 ].replace( /^"/, '' ).replace( /"$/, '' ).trim();
  1840. // for special case: base64 image data follows "Content: ," line
  1841. // Content: ,
  1842. // "/9j/4RDaRXhpZgAATU0A..."
  1843. if ( propName === 'Content' && propValue === ',' ) {
  1844. propValue = contentLine.replace( /"/g, '' ).replace( /,$/, '' ).trim();
  1845. }
  1846. var currentNode = this.getCurrentNode();
  1847. var parentName = currentNode.name;
  1848. if ( parentName === 'Properties70' ) {
  1849. this.parseNodeSpecialProperty( line, propName, propValue );
  1850. return;
  1851. }
  1852. // Connections
  1853. if ( propName === 'C' ) {
  1854. var connProps = propValue.split( ',' ).slice( 1 );
  1855. var from = parseInt( connProps[ 0 ] );
  1856. var to = parseInt( connProps[ 1 ] );
  1857. var rest = propValue.split( ',' ).slice( 3 );
  1858. rest = rest.map( function ( elem ) {
  1859. return elem.trim().replace( /^"/, '' );
  1860. } );
  1861. propName = 'connections';
  1862. propValue = [ from, to ];
  1863. append( propValue, rest );
  1864. if ( currentNode[ propName ] === undefined ) {
  1865. currentNode[ propName ] = [];
  1866. }
  1867. }
  1868. // Node
  1869. if ( propName === 'Node' ) currentNode.id = propValue;
  1870. // connections
  1871. if ( propName in currentNode && Array.isArray( currentNode[ propName ] ) ) {
  1872. currentNode[ propName ].push( propValue );
  1873. } else {
  1874. if ( propName !== 'a' ) currentNode[ propName ] = propValue;
  1875. else currentNode.a = propValue;
  1876. }
  1877. this.setCurrentProp( currentNode, propName );
  1878. // convert string to array, unless it ends in ',' in which case more will be added to it
  1879. if ( propName === 'a' && propValue.slice( - 1 ) !== ',' ) {
  1880. currentNode.a = parseNumberArray( propValue );
  1881. }
  1882. },
  1883. parseNodePropertyContinued: function ( line ) {
  1884. var currentNode = this.getCurrentNode();
  1885. currentNode.a += line;
  1886. // if the line doesn't end in ',' we have reached the end of the property value
  1887. // so convert the string to an array
  1888. if ( line.slice( - 1 ) !== ',' ) {
  1889. currentNode.a = parseNumberArray( currentNode.a );
  1890. }
  1891. },
  1892. // parse "Property70"
  1893. parseNodeSpecialProperty: function ( line, propName, propValue ) {
  1894. // split this
  1895. // P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1
  1896. // into array like below
  1897. // ["Lcl Scaling", "Lcl Scaling", "", "A", "1,1,1" ]
  1898. var props = propValue.split( '",' ).map( function ( prop ) {
  1899. return prop.trim().replace( /^\"/, '' ).replace( /\s/, '_' );
  1900. } );
  1901. var innerPropName = props[ 0 ];
  1902. var innerPropType1 = props[ 1 ];
  1903. var innerPropType2 = props[ 2 ];
  1904. var innerPropFlag = props[ 3 ];
  1905. var innerPropValue = props[ 4 ];
  1906. // cast values where needed, otherwise leave as strings
  1907. switch ( innerPropType1 ) {
  1908. case 'int':
  1909. case 'enum':
  1910. case 'bool':
  1911. case 'ULongLong':
  1912. case 'double':
  1913. case 'Number':
  1914. case 'FieldOfView':
  1915. innerPropValue = parseFloat( innerPropValue );
  1916. break;
  1917. case 'Color':
  1918. case 'ColorRGB':
  1919. case 'Vector3D':
  1920. case 'Lcl_Translation':
  1921. case 'Lcl_Rotation':
  1922. case 'Lcl_Scaling':
  1923. innerPropValue = parseNumberArray( innerPropValue );
  1924. break;
  1925. }
  1926. // CAUTION: these props must append to parent's parent
  1927. this.getPrevNode()[ innerPropName ] = {
  1928. 'type': innerPropType1,
  1929. 'type2': innerPropType2,
  1930. 'flag': innerPropFlag,
  1931. 'value': innerPropValue
  1932. };
  1933. this.setCurrentProp( this.getPrevNode(), innerPropName );
  1934. },
  1935. };
  1936. // Parse an FBX file in Binary format
  1937. function BinaryParser() {}
  1938. BinaryParser.prototype = {
  1939. constructor: BinaryParser,
  1940. parse: function ( buffer ) {
  1941. var reader = new BinaryReader( buffer );
  1942. reader.skip( 23 ); // skip magic 23 bytes
  1943. var version = reader.getUint32();
  1944. console.log( 'THREE.FBXLoader: FBX binary version: ' + version );
  1945. var allNodes = new FBXTree();
  1946. while ( ! this.endOfContent( reader ) ) {
  1947. var node = this.parseNode( reader, version );
  1948. if ( node !== null ) allNodes.add( node.name, node );
  1949. }
  1950. return allNodes;
  1951. },
  1952. // Check if reader has reached the end of content.
  1953. endOfContent: function ( reader ) {
  1954. // footer size: 160bytes + 16-byte alignment padding
  1955. // - 16bytes: magic
  1956. // - padding til 16-byte alignment (at least 1byte?)
  1957. // (seems like some exporters embed fixed 15 or 16bytes?)
  1958. // - 4bytes: magic
  1959. // - 4bytes: version
  1960. // - 120bytes: zero
  1961. // - 16bytes: magic
  1962. if ( reader.size() % 16 === 0 ) {
  1963. return ( ( reader.getOffset() + 160 + 16 ) & ~ 0xf ) >= reader.size();
  1964. } else {
  1965. return reader.getOffset() + 160 + 16 >= reader.size();
  1966. }
  1967. },
  1968. // recursively parse nodes until the end of the file is reached
  1969. parseNode: function ( reader, version ) {
  1970. var node = {};
  1971. // The first three data sizes depends on version.
  1972. var endOffset = ( version >= 7500 ) ? reader.getUint64() : reader.getUint32();
  1973. var numProperties = ( version >= 7500 ) ? reader.getUint64() : reader.getUint32();
  1974. // note: do not remove this even if you get a linter warning as it moves the buffer forward
  1975. var propertyListLen = ( version >= 7500 ) ? reader.getUint64() : reader.getUint32();
  1976. var nameLen = reader.getUint8();
  1977. var name = reader.getString( nameLen );
  1978. // Regards this node as NULL-record if endOffset is zero
  1979. if ( endOffset === 0 ) return null;
  1980. var propertyList = [];
  1981. for ( var i = 0; i < numProperties; i ++ ) {
  1982. propertyList.push( this.parseProperty( reader ) );
  1983. }
  1984. // Regards the first three elements in propertyList as id, attrName, and attrType
  1985. var id = propertyList.length > 0 ? propertyList[ 0 ] : '';
  1986. var attrName = propertyList.length > 1 ? propertyList[ 1 ] : '';
  1987. var attrType = propertyList.length > 2 ? propertyList[ 2 ] : '';
  1988. // check if this node represents just a single property
  1989. // like (name, 0) set or (name2, [0, 1, 2]) set of {name: 0, name2: [0, 1, 2]}
  1990. node.singleProperty = ( numProperties === 1 && reader.getOffset() === endOffset ) ? true : false;
  1991. while ( endOffset > reader.getOffset() ) {
  1992. var subNode = this.parseNode( reader, version );
  1993. if ( subNode !== null ) this.parseSubNode( name, node, subNode );
  1994. }
  1995. node.propertyList = propertyList; // raw property list used by parent
  1996. if ( typeof id === 'number' ) node.id = id;
  1997. if ( attrName !== '' ) node.attrName = attrName;
  1998. if ( attrType !== '' ) node.attrType = attrType;
  1999. if ( name !== '' ) node.name = name;
  2000. return node;
  2001. },
  2002. parseSubNode: function ( name, node, subNode ) {
  2003. // special case: child node is single property
  2004. if ( subNode.singleProperty === true ) {
  2005. var value = subNode.propertyList[ 0 ];
  2006. if ( Array.isArray( value ) ) {
  2007. node[ subNode.name ] = subNode;
  2008. subNode.a = value;
  2009. } else {
  2010. node[ subNode.name ] = value;
  2011. }
  2012. } else if ( name === 'Connections' && subNode.name === 'C' ) {
  2013. var array = [];
  2014. subNode.propertyList.forEach( function ( property, i ) {
  2015. // first Connection is FBX type (OO, OP, etc.). We'll discard these
  2016. if ( i !== 0 ) array.push( property );
  2017. } );
  2018. if ( node.connections === undefined ) {
  2019. node.connections = [];
  2020. }
  2021. node.connections.push( array );
  2022. } else if ( subNode.name === 'Properties70' ) {
  2023. var keys = Object.keys( subNode );
  2024. keys.forEach( function ( key ) {
  2025. node[ key ] = subNode[ key ];
  2026. } );
  2027. } else if ( name === 'Properties70' && subNode.name === 'P' ) {
  2028. var innerPropName = subNode.propertyList[ 0 ];
  2029. var innerPropType1 = subNode.propertyList[ 1 ];
  2030. var innerPropType2 = subNode.propertyList[ 2 ];
  2031. var innerPropFlag = subNode.propertyList[ 3 ];
  2032. var innerPropValue;
  2033. if ( innerPropName.indexOf( 'Lcl ' ) === 0 ) innerPropName = innerPropName.replace( 'Lcl ', 'Lcl_' );
  2034. if ( innerPropType1.indexOf( 'Lcl ' ) === 0 ) innerPropType1 = innerPropType1.replace( 'Lcl ', 'Lcl_' );
  2035. if ( innerPropType1 === 'Color' || innerPropType1 === 'ColorRGB' || innerPropType1 === 'Vector' || innerPropType1 === 'Vector3D' || innerPropType1.indexOf( 'Lcl_' ) === 0 ) {
  2036. innerPropValue = [
  2037. subNode.propertyList[ 4 ],
  2038. subNode.propertyList[ 5 ],
  2039. subNode.propertyList[ 6 ]
  2040. ];
  2041. } else {
  2042. innerPropValue = subNode.propertyList[ 4 ];
  2043. }
  2044. // this will be copied to parent, see above
  2045. node[ innerPropName ] = {
  2046. 'type': innerPropType1,
  2047. 'type2': innerPropType2,
  2048. 'flag': innerPropFlag,
  2049. 'value': innerPropValue
  2050. };
  2051. } else if ( node[ subNode.name ] === undefined ) {
  2052. if ( typeof subNode.id === 'number' ) {
  2053. node[ subNode.name ] = {};
  2054. node[ subNode.name ][ subNode.id ] = subNode;
  2055. } else {
  2056. node[ subNode.name ] = subNode;
  2057. }
  2058. } else {
  2059. if ( subNode.name === 'PoseNode' ) {
  2060. if ( ! Array.isArray( node[ subNode.name ] ) ) {
  2061. node[ subNode.name ] = [ node[ subNode.name ] ];
  2062. }
  2063. node[ subNode.name ].push( subNode );
  2064. } else if ( node[ subNode.name ][ subNode.id ] === undefined ) {
  2065. node[ subNode.name ][ subNode.id ] = subNode;
  2066. }
  2067. }
  2068. },
  2069. parseProperty: function ( reader ) {
  2070. var type = reader.getString( 1 );
  2071. switch ( type ) {
  2072. case 'C':
  2073. return reader.getBoolean();
  2074. case 'D':
  2075. return reader.getFloat64();
  2076. case 'F':
  2077. return reader.getFloat32();
  2078. case 'I':
  2079. return reader.getInt32();
  2080. case 'L':
  2081. return reader.getInt64();
  2082. case 'R':
  2083. var length = reader.getUint32();
  2084. return reader.getArrayBuffer( length );
  2085. case 'S':
  2086. var length = reader.getUint32();
  2087. return reader.getString( length );
  2088. case 'Y':
  2089. return reader.getInt16();
  2090. case 'b':
  2091. case 'c':
  2092. case 'd':
  2093. case 'f':
  2094. case 'i':
  2095. case 'l':
  2096. var arrayLength = reader.getUint32();
  2097. var encoding = reader.getUint32(); // 0: non-compressed, 1: compressed
  2098. var compressedLength = reader.getUint32();
  2099. if ( encoding === 0 ) {
  2100. switch ( type ) {
  2101. case 'b':
  2102. case 'c':
  2103. return reader.getBooleanArray( arrayLength );
  2104. case 'd':
  2105. return reader.getFloat64Array( arrayLength );
  2106. case 'f':
  2107. return reader.getFloat32Array( arrayLength );
  2108. case 'i':
  2109. return reader.getInt32Array( arrayLength );
  2110. case 'l':
  2111. return reader.getInt64Array( arrayLength );
  2112. }
  2113. }
  2114. if ( typeof Zlib === 'undefined' ) {
  2115. console.error( 'THREE.FBXLoader: External library Inflate.min.js required, obtain or import from https://github.com/imaya/zlib.js' );
  2116. }
  2117. var inflate = new Zlib.Inflate( new Uint8Array( reader.getArrayBuffer( compressedLength ) ) ); // eslint-disable-line no-undef
  2118. var reader2 = new BinaryReader( inflate.decompress().buffer );
  2119. switch ( type ) {
  2120. case 'b':
  2121. case 'c':
  2122. return reader2.getBooleanArray( arrayLength );
  2123. case 'd':
  2124. return reader2.getFloat64Array( arrayLength );
  2125. case 'f':
  2126. return reader2.getFloat32Array( arrayLength );
  2127. case 'i':
  2128. return reader2.getInt32Array( arrayLength );
  2129. case 'l':
  2130. return reader2.getInt64Array( arrayLength );
  2131. }
  2132. default:
  2133. throw new Error( 'THREE.FBXLoader: Unknown property type ' + type );
  2134. }
  2135. }
  2136. };
  2137. function BinaryReader( buffer, littleEndian ) {
  2138. this.dv = new DataView( buffer );
  2139. this.offset = 0;
  2140. this.littleEndian = ( littleEndian !== undefined ) ? littleEndian : true;
  2141. }
  2142. BinaryReader.prototype = {
  2143. constructor: BinaryReader,
  2144. getOffset: function () {
  2145. return this.offset;
  2146. },
  2147. size: function () {
  2148. return this.dv.buffer.byteLength;
  2149. },
  2150. skip: function ( length ) {
  2151. this.offset += length;
  2152. },
  2153. // seems like true/false representation depends on exporter.
  2154. // true: 1 or 'Y'(=0x59), false: 0 or 'T'(=0x54)
  2155. // then sees LSB.
  2156. getBoolean: function () {
  2157. return ( this.getUint8() & 1 ) === 1;
  2158. },
  2159. getBooleanArray: function ( size ) {
  2160. var a = [];
  2161. for ( var i = 0; i < size; i ++ ) {
  2162. a.push( this.getBoolean() );
  2163. }
  2164. return a;
  2165. },
  2166. getUint8: function () {
  2167. var value = this.dv.getUint8( this.offset );
  2168. this.offset += 1;
  2169. return value;
  2170. },
  2171. getInt16: function () {
  2172. var value = this.dv.getInt16( this.offset, this.littleEndian );
  2173. this.offset += 2;
  2174. return value;
  2175. },
  2176. getInt32: function () {
  2177. var value = this.dv.getInt32( this.offset, this.littleEndian );
  2178. this.offset += 4;
  2179. return value;
  2180. },
  2181. getInt32Array: function ( size ) {
  2182. var a = [];
  2183. for ( var i = 0; i < size; i ++ ) {
  2184. a.push( this.getInt32() );
  2185. }
  2186. return a;
  2187. },
  2188. getUint32: function () {
  2189. var value = this.dv.getUint32( this.offset, this.littleEndian );
  2190. this.offset += 4;
  2191. return value;
  2192. },
  2193. // JavaScript doesn't support 64-bit integer so calculate this here
  2194. // 1 << 32 will return 1 so using multiply operation instead here.
  2195. // There's a possibility that this method returns wrong value if the value
  2196. // is out of the range between Number.MAX_SAFE_INTEGER and Number.MIN_SAFE_INTEGER.
  2197. // TODO: safely handle 64-bit integer
  2198. getInt64: function () {
  2199. var low, high;
  2200. if ( this.littleEndian ) {
  2201. low = this.getUint32();
  2202. high = this.getUint32();
  2203. } else {
  2204. high = this.getUint32();
  2205. low = this.getUint32();
  2206. }
  2207. // calculate negative value
  2208. if ( high & 0x80000000 ) {
  2209. high = ~ high & 0xFFFFFFFF;
  2210. low = ~ low & 0xFFFFFFFF;
  2211. if ( low === 0xFFFFFFFF ) high = ( high + 1 ) & 0xFFFFFFFF;
  2212. low = ( low + 1 ) & 0xFFFFFFFF;
  2213. return - ( high * 0x100000000 + low );
  2214. }
  2215. return high * 0x100000000 + low;
  2216. },
  2217. getInt64Array: function ( size ) {
  2218. var a = [];
  2219. for ( var i = 0; i < size; i ++ ) {
  2220. a.push( this.getInt64() );
  2221. }
  2222. return a;
  2223. },
  2224. // Note: see getInt64() comment
  2225. getUint64: function () {
  2226. var low, high;
  2227. if ( this.littleEndian ) {
  2228. low = this.getUint32();
  2229. high = this.getUint32();
  2230. } else {
  2231. high = this.getUint32();
  2232. low = this.getUint32();
  2233. }
  2234. return high * 0x100000000 + low;
  2235. },
  2236. getFloat32: function () {
  2237. var value = this.dv.getFloat32( this.offset, this.littleEndian );
  2238. this.offset += 4;
  2239. return value;
  2240. },
  2241. getFloat32Array: function ( size ) {
  2242. var a = [];
  2243. for ( var i = 0; i < size; i ++ ) {
  2244. a.push( this.getFloat32() );
  2245. }
  2246. return a;
  2247. },
  2248. getFloat64: function () {
  2249. var value = this.dv.getFloat64( this.offset, this.littleEndian );
  2250. this.offset += 8;
  2251. return value;
  2252. },
  2253. getFloat64Array: function ( size ) {
  2254. var a = [];
  2255. for ( var i = 0; i < size; i ++ ) {
  2256. a.push( this.getFloat64() );
  2257. }
  2258. return a;
  2259. },
  2260. getArrayBuffer: function ( size ) {
  2261. var value = this.dv.buffer.slice( this.offset, this.offset + size );
  2262. this.offset += size;
  2263. return value;
  2264. },
  2265. getString: function ( size ) {
  2266. // note: safari 9 doesn't support Uint8Array.indexOf; create intermediate array instead
  2267. var a = [];
  2268. for ( var i = 0; i < size; i ++ ) {
  2269. a[ i ] = this.getUint8();
  2270. }
  2271. var nullByte = a.indexOf( 0 );
  2272. if ( nullByte >= 0 ) a = a.slice( 0, nullByte );
  2273. return THREE.LoaderUtils.decodeText( new Uint8Array( a ) );
  2274. }
  2275. };
  2276. // FBXTree holds a representation of the FBX data, returned by the TextParser ( FBX ASCII format)
  2277. // and BinaryParser( FBX Binary format)
  2278. function FBXTree() {}
  2279. FBXTree.prototype = {
  2280. constructor: FBXTree,
  2281. add: function ( key, val ) {
  2282. this[ key ] = val;
  2283. },
  2284. };
  2285. // ************** UTILITY FUNCTIONS **************
  2286. function isFbxFormatBinary( buffer ) {
  2287. var CORRECT = 'Kaydara FBX Binary \0';
  2288. return buffer.byteLength >= CORRECT.length && CORRECT === convertArrayBufferToString( buffer, 0, CORRECT.length );
  2289. }
  2290. function isFbxFormatASCII( text ) {
  2291. var CORRECT = [ 'K', 'a', 'y', 'd', 'a', 'r', 'a', '\\', 'F', 'B', 'X', '\\', 'B', 'i', 'n', 'a', 'r', 'y', '\\', '\\' ];
  2292. var cursor = 0;
  2293. function read( offset ) {
  2294. var result = text[ offset - 1 ];
  2295. text = text.slice( cursor + offset );
  2296. cursor ++;
  2297. return result;
  2298. }
  2299. for ( var i = 0; i < CORRECT.length; ++ i ) {
  2300. var num = read( 1 );
  2301. if ( num === CORRECT[ i ] ) {
  2302. return false;
  2303. }
  2304. }
  2305. return true;
  2306. }
  2307. function getFbxVersion( text ) {
  2308. var versionRegExp = /FBXVersion: (\d+)/;
  2309. var match = text.match( versionRegExp );
  2310. if ( match ) {
  2311. var version = parseInt( match[ 1 ] );
  2312. return version;
  2313. }
  2314. throw new Error( 'THREE.FBXLoader: Cannot find the version number for the file given.' );
  2315. }
  2316. // Converts FBX ticks into real time seconds.
  2317. function convertFBXTimeToSeconds( time ) {
  2318. return time / 46186158000;
  2319. }
  2320. var dataArray = [];
  2321. // extracts the data from the correct position in the FBX array based on indexing type
  2322. function getData( polygonVertexIndex, polygonIndex, vertexIndex, infoObject ) {
  2323. var index;
  2324. switch ( infoObject.mappingType ) {
  2325. case 'ByPolygonVertex' :
  2326. index = polygonVertexIndex;
  2327. break;
  2328. case 'ByPolygon' :
  2329. index = polygonIndex;
  2330. break;
  2331. case 'ByVertice' :
  2332. index = vertexIndex;
  2333. break;
  2334. case 'AllSame' :
  2335. index = infoObject.indices[ 0 ];
  2336. break;
  2337. default :
  2338. console.warn( 'THREE.FBXLoader: unknown attribute mapping type ' + infoObject.mappingType );
  2339. }
  2340. if ( infoObject.referenceType === 'IndexToDirect' ) index = infoObject.indices[ index ];
  2341. var from = index * infoObject.dataSize;
  2342. var to = from + infoObject.dataSize;
  2343. return slice( dataArray, infoObject.buffer, from, to );
  2344. }
  2345. var tempEuler = new THREE.Euler();
  2346. var tempVec = new THREE.Vector3();
  2347. // generate transformation from FBX transform data
  2348. // ref: https://help.autodesk.com/view/FBX/2017/ENU/?guid=__files_GUID_10CDD63C_79C1_4F2D_BB28_AD2BE65A02ED_htm
  2349. // ref: http://docs.autodesk.com/FBX/2014/ENU/FBX-SDK-Documentation/index.html?url=cpp_ref/_transformations_2main_8cxx-example.html,topicNumber=cpp_ref__transformations_2main_8cxx_example_htmlfc10a1e1-b18d-4e72-9dc0-70d0f1959f5e
  2350. function generateTransform( transformData ) {
  2351. var lTranslationM = new THREE.Matrix4();
  2352. var lPreRotationM = new THREE.Matrix4();
  2353. var lRotationM = new THREE.Matrix4();
  2354. var lPostRotationM = new THREE.Matrix4();
  2355. var lScalingM = new THREE.Matrix4();
  2356. var lScalingPivotM = new THREE.Matrix4();
  2357. var lScalingOffsetM = new THREE.Matrix4();
  2358. var lRotationOffsetM = new THREE.Matrix4();
  2359. var lRotationPivotM = new THREE.Matrix4();
  2360. var lParentGX = new THREE.Matrix4();
  2361. var lGlobalT = new THREE.Matrix4();
  2362. var inheritType = ( transformData.inheritType ) ? transformData.inheritType : 0;
  2363. if ( transformData.translation ) lTranslationM.setPosition( tempVec.fromArray( transformData.translation ) );
  2364. if ( transformData.preRotation ) {
  2365. var array = transformData.preRotation.map( THREE.Math.degToRad );
  2366. array.push( transformData.eulerOrder );
  2367. lPreRotationM.makeRotationFromEuler( tempEuler.fromArray( array ) );
  2368. }
  2369. if ( transformData.rotation ) {
  2370. var array = transformData.rotation.map( THREE.Math.degToRad );
  2371. array.push( transformData.eulerOrder );
  2372. lRotationM.makeRotationFromEuler( tempEuler.fromArray( array ) );
  2373. }
  2374. if ( transformData.postRotation ) {
  2375. var array = transformData.postRotation.map( THREE.Math.degToRad );
  2376. array.push( transformData.eulerOrder );
  2377. lPostRotationM.makeRotationFromEuler( tempEuler.fromArray( array ) );
  2378. }
  2379. if ( transformData.scale ) lScalingM.scale( tempVec.fromArray( transformData.scale ) );
  2380. // Pivots and offsets
  2381. if ( transformData.scalingOffset ) lScalingOffsetM.setPosition( tempVec.fromArray( transformData.scalingOffset ) );
  2382. if ( transformData.scalingPivot ) lScalingPivotM.setPosition( tempVec.fromArray( transformData.scalingPivot ) );
  2383. if ( transformData.rotationOffset ) lRotationOffsetM.setPosition( tempVec.fromArray( transformData.rotationOffset ) );
  2384. if ( transformData.rotationPivot ) lRotationPivotM.setPosition( tempVec.fromArray( transformData.rotationPivot ) );
  2385. // parent transform
  2386. if ( transformData.parentMatrixWorld ) lParentGX = transformData.parentMatrixWorld;
  2387. // Global Rotation
  2388. var lLRM = lPreRotationM.multiply( lRotationM ).multiply( lPostRotationM );
  2389. var lParentGRM = new THREE.Matrix4();
  2390. lParentGX.extractRotation( lParentGRM );
  2391. // Global Shear*Scaling
  2392. var lParentTM = new THREE.Matrix4();
  2393. var lLSM;
  2394. var lParentGSM;
  2395. var lParentGRSM;
  2396. lParentTM.copyPosition( lParentGX );
  2397. lParentGRSM = lParentTM.getInverse( lParentTM ).multiply( lParentGX );
  2398. lParentGSM = lParentGRM.getInverse( lParentGRM ).multiply( lParentGRSM );
  2399. lLSM = lScalingM;
  2400. var lGlobalRS;
  2401. if ( inheritType === 0 ) {
  2402. lGlobalRS = lParentGRM.multiply( lLRM ).multiply( lParentGSM ).multiply( lLSM );
  2403. } else if ( inheritType === 1 ) {
  2404. lGlobalRS = lParentGRM.multiply( lParentGSM ).multiply( lLRM ).multiply( lLSM );
  2405. } else {
  2406. var lParentLSM = new THREE.Matrix4().copy( lScalingM );
  2407. var lParentGSM_noLocal = lParentGSM.multiply( lParentLSM.getInverse( lParentLSM ) );
  2408. lGlobalRS = lParentGRM.multiply( lLRM ).multiply( lParentGSM_noLocal ).multiply( lLSM );
  2409. }
  2410. // Calculate the local transform matrix
  2411. var lTransform = lTranslationM.multiply( lRotationOffsetM ).multiply( lRotationPivotM ).multiply( lPreRotationM ).multiply( lRotationM ).multiply( lPostRotationM ).multiply( lRotationPivotM.getInverse( lRotationPivotM ) ).multiply( lScalingOffsetM ).multiply( lScalingPivotM ).multiply( lScalingM ).multiply( lScalingPivotM.getInverse( lScalingPivotM ) );
  2412. var lLocalTWithAllPivotAndOffsetInfo = new THREE.Matrix4().copyPosition( lTransform );
  2413. var lGlobalTranslation = lParentGX.multiply( lLocalTWithAllPivotAndOffsetInfo );
  2414. lGlobalT.copyPosition( lGlobalTranslation );
  2415. lTransform = lGlobalT.multiply( lGlobalRS );
  2416. return lTransform;
  2417. }
  2418. // Returns the three.js intrinsic Euler order corresponding to FBX extrinsic Euler order
  2419. // ref: http://help.autodesk.com/view/FBX/2017/ENU/?guid=__cpp_ref_class_fbx_euler_html
  2420. function getEulerOrder( order ) {
  2421. order = order || 0;
  2422. var enums = [
  2423. 'ZYX', // -> XYZ extrinsic
  2424. 'YZX', // -> XZY extrinsic
  2425. 'XZY', // -> YZX extrinsic
  2426. 'ZXY', // -> YXZ extrinsic
  2427. 'YXZ', // -> ZXY extrinsic
  2428. 'XYZ', // -> ZYX extrinsic
  2429. //'SphericXYZ', // not possible to support
  2430. ];
  2431. if ( order === 6 ) {
  2432. console.warn( 'THREE.FBXLoader: unsupported Euler Order: Spherical XYZ. Animations and rotations may be incorrect.' );
  2433. return enums[ 0 ];
  2434. }
  2435. return enums[ order ];
  2436. }
  2437. // Parses comma separated list of numbers and returns them an array.
  2438. // Used internally by the TextParser
  2439. function parseNumberArray( value ) {
  2440. var array = value.split( ',' ).map( function ( val ) {
  2441. return parseFloat( val );
  2442. } );
  2443. return array;
  2444. }
  2445. function convertArrayBufferToString( buffer, from, to ) {
  2446. if ( from === undefined ) from = 0;
  2447. if ( to === undefined ) to = buffer.byteLength;
  2448. return THREE.LoaderUtils.decodeText( new Uint8Array( buffer, from, to ) );
  2449. }
  2450. function append( a, b ) {
  2451. for ( var i = 0, j = a.length, l = b.length; i < l; i ++, j ++ ) {
  2452. a[ j ] = b[ i ];
  2453. }
  2454. }
  2455. function slice( a, b, from, to ) {
  2456. for ( var i = from, j = 0; i < to; i ++, j ++ ) {
  2457. a[ j ] = b[ i ];
  2458. }
  2459. return a;
  2460. }
  2461. // inject array a2 into array a1 at index
  2462. function inject( a1, index, a2 ) {
  2463. return a1.slice( 0, index ).concat( a2 ).concat( a1.slice( index ) );
  2464. }
  2465. return FBXLoader;
  2466. } )();