FBXLoader.js 90 KB

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