FBXLoader.js 87 KB

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