FBXLoader.js 100 KB

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