FBXLoader.js 82 KB

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