LDrawLoader.js 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905
  1. /**
  2. * @author mrdoob / http://mrdoob.com/
  3. * @author yomboprime / https://github.com/yomboprime/
  4. *
  5. *
  6. */
  7. THREE.LDrawLoader = ( function () {
  8. var conditionalLineVertShader = /* glsl */`
  9. attribute vec3 control0;
  10. attribute vec3 control1;
  11. attribute vec3 direction;
  12. varying float discardFlag;
  13. #include <common>
  14. #include <color_pars_vertex>
  15. #include <fog_pars_vertex>
  16. #include <logdepthbuf_pars_vertex>
  17. #include <clipping_planes_pars_vertex>
  18. void main() {
  19. #include <color_vertex>
  20. vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );
  21. gl_Position = projectionMatrix * mvPosition;
  22. // Transform the line segment ends and control points into camera clip space
  23. vec4 c0 = projectionMatrix * modelViewMatrix * vec4( control0, 1.0 );
  24. vec4 c1 = projectionMatrix * modelViewMatrix * vec4( control1, 1.0 );
  25. vec4 p0 = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );
  26. vec4 p1 = projectionMatrix * modelViewMatrix * vec4( position + direction, 1.0 );
  27. c0.xy /= c0.w;
  28. c1.xy /= c1.w;
  29. p0.xy /= p0.w;
  30. p1.xy /= p1.w;
  31. // Get the direction of the segment and an orthogonal vector
  32. vec2 dir = p1.xy - p0.xy;
  33. vec2 norm = vec2( -dir.y, dir.x );
  34. // Get control point directions from the line
  35. vec2 c0dir = c0.xy - p1.xy;
  36. vec2 c1dir = c1.xy - p1.xy;
  37. // If the vectors to the controls points are pointed in different directions away
  38. // from the line segment then the line should not be drawn.
  39. float d0 = dot( normalize( norm ), normalize( c0dir ) );
  40. float d1 = dot( normalize( norm ), normalize( c1dir ) );
  41. discardFlag = float( sign( d0 ) != sign( d1 ) );
  42. #include <logdepthbuf_vertex>
  43. #include <clipping_planes_vertex>
  44. #include <fog_vertex>
  45. }
  46. `;
  47. var conditionalLineFragShader = /* glsl */`
  48. uniform vec3 diffuse;
  49. uniform float opacity;
  50. varying float discardFlag;
  51. #include <common>
  52. #include <color_pars_fragment>
  53. #include <fog_pars_fragment>
  54. #include <logdepthbuf_pars_fragment>
  55. #include <clipping_planes_pars_fragment>
  56. void main() {
  57. if ( discardFlag > 0.5 ) discard;
  58. #include <clipping_planes_fragment>
  59. vec3 outgoingLight = vec3( 0.0 );
  60. vec4 diffuseColor = vec4( diffuse, opacity );
  61. #include <logdepthbuf_fragment>
  62. #include <color_fragment>
  63. outgoingLight = diffuseColor.rgb; // simple shader
  64. gl_FragColor = vec4( outgoingLight, diffuseColor.a );
  65. #include <premultiplied_alpha_fragment>
  66. #include <tonemapping_fragment>
  67. #include <encodings_fragment>
  68. #include <fog_fragment>
  69. }
  70. `;
  71. var tempVec0 = new THREE.Vector3();
  72. var tempVec1 = new THREE.Vector3();
  73. function smoothNormals( triangles, lineSegments ) {
  74. function hashVertex( v ) {
  75. // NOTE: 1e2 is pretty coarse but was chosen because it allows edges
  76. // to be smoothed as expected (see minifig arms). The errors between edges
  77. // could be due to matrix multiplication.
  78. var x = ~ ~ ( v.x * 1e2 );
  79. var y = ~ ~ ( v.y * 1e2 );
  80. var z = ~ ~ ( v.z * 1e2 );
  81. return `${ x },${ y },${ z }`;
  82. }
  83. function hashEdge( v0, v1 ) {
  84. return `${ hashVertex( v0 ) }_${ hashVertex( v1 ) }`;
  85. }
  86. var hardEdges = new Set();
  87. var halfEdgeList = {};
  88. var fullHalfEdgeList = {};
  89. var normals = [];
  90. // Save the list of hard edges by hash
  91. for ( var i = 0, l = lineSegments.length; i < l; i ++ ) {
  92. var ls = lineSegments[ i ];
  93. var v0 = ls.v0;
  94. var v1 = ls.v1;
  95. hardEdges.add( hashEdge( v0, v1 ) );
  96. hardEdges.add( hashEdge( v1, v0 ) );
  97. }
  98. // track the half edges associated with each triangle
  99. for ( var i = 0, l = triangles.length; i < l; i ++ ) {
  100. var tri = triangles[ i ];
  101. for ( var i2 = 0, l2 = 3; i2 < l2; i2 ++ ) {
  102. var index = i2;
  103. var next = ( i2 + 1 ) % 3;
  104. var v0 = tri[ `v${ index }` ];
  105. var v1 = tri[ `v${ next }` ];
  106. var hash = hashEdge( v0, v1 );
  107. // don't add the triangle if the edge is supposed to be hard
  108. if ( hardEdges.has( hash ) ) continue;
  109. halfEdgeList[ hash ] = tri;
  110. fullHalfEdgeList[ hash ] = tri;
  111. }
  112. }
  113. // NOTE: Some of the normals wind up being skewed in an unexpected way because
  114. // quads provide more "influence" to some vertex normals than a triangle due to
  115. // the fact that a quad is made up of two triangles and all triangles are weighted
  116. // equally. To fix this quads could be tracked separately so their vertex normals
  117. // are weighted appropriately or we could try only adding a normal direction
  118. // once per normal.
  119. // Iterate until we've tried to connect all triangles to share normals
  120. while ( true ) {
  121. // Stop if there are no more triangles left
  122. var halfEdges = Object.keys( halfEdgeList );
  123. if ( halfEdges.length === 0 ) break;
  124. // Exhaustively find all connected triangles
  125. var i = 0;
  126. var queue = [ fullHalfEdgeList[ halfEdges[ 0 ] ] ];
  127. while ( i < queue.length ) {
  128. // initialize all vertex normals in this triangle
  129. var tri = queue[ i ];
  130. i ++;
  131. var faceNormal = tri.faceNormal;
  132. if ( tri.n0 === null ) {
  133. tri.n0 = faceNormal.clone();
  134. normals.push( tri.n0 );
  135. }
  136. if ( tri.n1 === null ) {
  137. tri.n1 = faceNormal.clone();
  138. normals.push( tri.n1 );
  139. }
  140. if ( tri.n2 === null ) {
  141. tri.n2 = faceNormal.clone();
  142. normals.push( tri.n2 );
  143. }
  144. // Check if any edge is connected to another triangle edge
  145. for ( var i2 = 0, l2 = 3; i2 < l2; i2 ++ ) {
  146. var index = i2;
  147. var next = ( i2 + 1 ) % 3;
  148. var v0 = tri[ `v${ index }` ];
  149. var v1 = tri[ `v${ next }` ];
  150. // delete this triangle from the list so it won't be found again
  151. var hash = hashEdge( v0, v1 );
  152. delete halfEdgeList[ hash ];
  153. var reverseHash = hashEdge( v1, v0 );
  154. var otherTri = fullHalfEdgeList[ reverseHash ];
  155. if ( otherTri ) {
  156. // NOTE: If the angle between triangles is > 67.5 degrees then assume it's
  157. // hard edge. There are some cases where the line segments do not line up exactly
  158. // with or span multiple triangle edges (see Lunar Vehicle wheels).
  159. if ( Math.abs( otherTri.faceNormal.dot( tri.faceNormal ) ) < 0.25 ) {
  160. continue;
  161. }
  162. // if this triangle has already been traversed then it won't be in
  163. // the halfEdgeList. If it has not then add it to the queue and delete
  164. // it so it won't be found again.
  165. if ( reverseHash in halfEdgeList ) {
  166. queue.push( otherTri );
  167. delete halfEdgeList[ reverseHash ];
  168. }
  169. // Find the matching edge in this triangle and copy the normal vector over
  170. for ( var i3 = 0, l3 = 3; i3 < l3; i3 ++ ) {
  171. var otherIndex = i3;
  172. var otherNext = ( i3 + 1 ) % 3;
  173. var otherV0 = otherTri[ `v${ otherIndex }` ];
  174. var otherV1 = otherTri[ `v${ otherNext }` ];
  175. var otherHash = hashEdge( otherV0, otherV1 );
  176. if ( otherHash === reverseHash ) {
  177. if ( otherTri[ `n${ otherIndex }` ] === null ) {
  178. var norm = tri[ `n${ next }` ];
  179. otherTri[ `n${ otherIndex }` ] = norm;
  180. norm.add( otherTri.faceNormal );
  181. }
  182. if ( otherTri[ `n${ otherNext }` ] === null ) {
  183. var norm = tri[ `n${ index }` ];
  184. otherTri[ `n${ otherNext }` ] = norm;
  185. norm.add( otherTri.faceNormal );
  186. }
  187. break;
  188. }
  189. }
  190. }
  191. }
  192. }
  193. }
  194. // The normals of each face have been added up so now we average them by normalizing the vector.
  195. for ( var i = 0, l = normals.length; i < l; i ++ ) {
  196. normals[ i ].normalize();
  197. }
  198. }
  199. function isPrimitiveType( type ) {
  200. return /primitive/i.test( type ) || type === 'Subpart';
  201. }
  202. function LineParser( line, lineNumber ) {
  203. this.line = line;
  204. this.lineLength = line.length;
  205. this.currentCharIndex = 0;
  206. this.currentChar = ' ';
  207. this.lineNumber = lineNumber;
  208. }
  209. LineParser.prototype = {
  210. constructor: LineParser,
  211. seekNonSpace: function () {
  212. while ( this.currentCharIndex < this.lineLength ) {
  213. this.currentChar = this.line.charAt( this.currentCharIndex );
  214. if ( this.currentChar !== ' ' && this.currentChar !== '\t' ) {
  215. return;
  216. }
  217. this.currentCharIndex ++;
  218. }
  219. },
  220. getToken: function () {
  221. var pos0 = this.currentCharIndex ++;
  222. // Seek space
  223. while ( this.currentCharIndex < this.lineLength ) {
  224. this.currentChar = this.line.charAt( this.currentCharIndex );
  225. if ( this.currentChar === ' ' || this.currentChar === '\t' ) {
  226. break;
  227. }
  228. this.currentCharIndex ++;
  229. }
  230. var pos1 = this.currentCharIndex;
  231. this.seekNonSpace();
  232. return this.line.substring( pos0, pos1 );
  233. },
  234. getRemainingString: function () {
  235. return this.line.substring( this.currentCharIndex, this.lineLength );
  236. },
  237. isAtTheEnd: function () {
  238. return this.currentCharIndex >= this.lineLength;
  239. },
  240. setToEnd: function () {
  241. this.currentCharIndex = this.lineLength;
  242. },
  243. getLineNumberString: function () {
  244. return this.lineNumber >= 0 ? " at line " + this.lineNumber : "";
  245. }
  246. };
  247. function sortByMaterial( a, b ) {
  248. if ( a.colourCode === b.colourCode ) {
  249. return 0;
  250. }
  251. if ( a.colourCode < b.colourCode ) {
  252. return - 1;
  253. }
  254. return 1;
  255. }
  256. function createObject( elements, elementSize, isConditionalSegments ) {
  257. // Creates a THREE.LineSegments (elementSize = 2) or a THREE.Mesh (elementSize = 3 )
  258. // With per face / segment material, implemented with mesh groups and materials array
  259. // Sort the triangles or line segments by colour code to make later the mesh groups
  260. elements.sort( sortByMaterial );
  261. var positions = [];
  262. var normals = [];
  263. var materials = [];
  264. var bufferGeometry = new THREE.BufferGeometry();
  265. var prevMaterial = null;
  266. var index0 = 0;
  267. var numGroupVerts = 0;
  268. for ( var iElem = 0, nElem = elements.length; iElem < nElem; iElem ++ ) {
  269. var elem = elements[ iElem ];
  270. var v0 = elem.v0;
  271. var v1 = elem.v1;
  272. // Note that LDraw coordinate system is rotated 180 deg. in the X axis w.r.t. Three.js's one
  273. positions.push( v0.x, v0.y, v0.z, v1.x, v1.y, v1.z );
  274. if ( elementSize === 3 ) {
  275. positions.push( elem.v2.x, elem.v2.y, elem.v2.z );
  276. var n0 = elem.n0 || elem.faceNormal;
  277. var n1 = elem.n1 || elem.faceNormal;
  278. var n2 = elem.n2 || elem.faceNormal;
  279. normals.push( n0.x, n0.y, n0.z );
  280. normals.push( n1.x, n1.y, n1.z );
  281. normals.push( n2.x, n2.y, n2.z );
  282. }
  283. if ( prevMaterial !== elem.material ) {
  284. if ( prevMaterial !== null ) {
  285. bufferGeometry.addGroup( index0, numGroupVerts, materials.length - 1 );
  286. }
  287. materials.push( elem.material );
  288. prevMaterial = elem.material;
  289. index0 = iElem * elementSize;
  290. numGroupVerts = elementSize;
  291. } else {
  292. numGroupVerts += elementSize;
  293. }
  294. }
  295. if ( numGroupVerts > 0 ) {
  296. bufferGeometry.addGroup( index0, Infinity, materials.length - 1 );
  297. }
  298. bufferGeometry.addAttribute( 'position', new THREE.Float32BufferAttribute( positions, 3 ) );
  299. if ( elementSize === 3 ) {
  300. bufferGeometry.addAttribute( 'normal', new THREE.Float32BufferAttribute( normals, 3 ) );
  301. }
  302. var object3d = null;
  303. if ( elementSize === 2 ) {
  304. object3d = new THREE.LineSegments( bufferGeometry, materials );
  305. } else if ( elementSize === 3 ) {
  306. object3d = new THREE.Mesh( bufferGeometry, materials );
  307. }
  308. if ( isConditionalSegments ) {
  309. object3d.isConditionalLine = true;
  310. var controlArray0 = new Float32Array( elements.length * 3 * 2 );
  311. var controlArray1 = new Float32Array( elements.length * 3 * 2 );
  312. var directionArray = new Float32Array( elements.length * 3 * 2 );
  313. for ( var i = 0, l = elements.length; i < l; i ++ ) {
  314. var os = elements[ i ];
  315. var c0 = os.c0;
  316. var c1 = os.c1;
  317. var v0 = os.v0;
  318. var v1 = os.v1;
  319. var index = i * 3 * 2;
  320. controlArray0[ index + 0 ] = c0.x;
  321. controlArray0[ index + 1 ] = c0.y;
  322. controlArray0[ index + 2 ] = c0.z;
  323. controlArray0[ index + 3 ] = c0.x;
  324. controlArray0[ index + 4 ] = c0.y;
  325. controlArray0[ index + 5 ] = c0.z;
  326. controlArray1[ index + 0 ] = c1.x;
  327. controlArray1[ index + 1 ] = c1.y;
  328. controlArray1[ index + 2 ] = c1.z;
  329. controlArray1[ index + 3 ] = c1.x;
  330. controlArray1[ index + 4 ] = c1.y;
  331. controlArray1[ index + 5 ] = c1.z;
  332. directionArray[ index + 0 ] = v1.x - v0.x;
  333. directionArray[ index + 1 ] = v1.y - v0.y;
  334. directionArray[ index + 2 ] = v1.z - v0.z;
  335. directionArray[ index + 3 ] = v1.x - v0.x;
  336. directionArray[ index + 4 ] = v1.y - v0.y;
  337. directionArray[ index + 5 ] = v1.z - v0.z;
  338. }
  339. bufferGeometry.addAttribute( 'control0', new THREE.BufferAttribute( controlArray0, 3, false ) );
  340. bufferGeometry.addAttribute( 'control1', new THREE.BufferAttribute( controlArray1, 3, false ) );
  341. bufferGeometry.addAttribute( 'direction', new THREE.BufferAttribute( directionArray, 3, false ) );
  342. }
  343. return object3d;
  344. }
  345. //
  346. function LDrawLoader( manager ) {
  347. this.manager = ( manager !== undefined ) ? manager : THREE.DefaultLoadingManager;
  348. // This is a stack of 'parse scopes' with one level per subobject loaded file.
  349. // Each level contains a material lib and also other runtime variables passed between parent and child subobjects
  350. // When searching for a material code, the stack is read from top of the stack to bottom
  351. // Each material library is an object map keyed by colour codes.
  352. this.parseScopesStack = null;
  353. this.path = '';
  354. // Array of THREE.Material
  355. this.materials = [];
  356. // Not using THREE.Cache here because it returns the previous HTML error response instead of calling onError()
  357. // This also allows to handle the embedded text files ("0 FILE" lines)
  358. this.subobjectCache = {};
  359. // This object is a map from file names to paths. It agilizes the paths search. If it is not set then files will be searched by trial and error.
  360. this.fileMap = null;
  361. // Add default main triangle and line edge materials (used in piecess that can be coloured with a main color)
  362. this.setMaterials( [
  363. this.parseColourMetaDirective( new LineParser( "Main_Colour CODE 16 VALUE #FF8080 EDGE #333333" ) ),
  364. this.parseColourMetaDirective( new LineParser( "Edge_Colour CODE 24 VALUE #A0A0A0 EDGE #333333" ) )
  365. ] );
  366. // If this flag is set to true, each subobject will be a THREE.Object.
  367. // If not (the default), only one object which contains all the merged primitives will be created.
  368. this.separateObjects = false;
  369. // If this flag is set to true the vertex normals will be smoothed.
  370. this.smoothNormals = true;
  371. }
  372. // Special surface finish tag types.
  373. // Note: "MATERIAL" tag (e.g. GLITTER, SPECKLE) is not implemented
  374. LDrawLoader.FINISH_TYPE_DEFAULT = 0;
  375. LDrawLoader.FINISH_TYPE_CHROME = 1;
  376. LDrawLoader.FINISH_TYPE_PEARLESCENT = 2;
  377. LDrawLoader.FINISH_TYPE_RUBBER = 3;
  378. LDrawLoader.FINISH_TYPE_MATTE_METALLIC = 4;
  379. LDrawLoader.FINISH_TYPE_METAL = 5;
  380. // State machine to search a subobject path.
  381. // The LDraw standard establishes these various possible subfolders.
  382. LDrawLoader.FILE_LOCATION_AS_IS = 0;
  383. LDrawLoader.FILE_LOCATION_TRY_PARTS = 1;
  384. LDrawLoader.FILE_LOCATION_TRY_P = 2;
  385. LDrawLoader.FILE_LOCATION_TRY_MODELS = 3;
  386. LDrawLoader.FILE_LOCATION_TRY_RELATIVE = 4;
  387. LDrawLoader.FILE_LOCATION_TRY_ABSOLUTE = 5;
  388. LDrawLoader.FILE_LOCATION_NOT_FOUND = 6;
  389. LDrawLoader.prototype = {
  390. constructor: LDrawLoader,
  391. load: function ( url, onLoad, onProgress, onError ) {
  392. if ( ! this.fileMap ) {
  393. this.fileMap = {};
  394. }
  395. var scope = this;
  396. var fileLoader = new THREE.FileLoader( this.manager );
  397. fileLoader.setPath( this.path );
  398. fileLoader.load( url, function ( text ) {
  399. scope.processObject( text, onLoad, null, url );
  400. }, onProgress, onError );
  401. },
  402. parse: function ( text, path, onLoad ) {
  403. // Async parse. This function calls onParse with the parsed THREE.Object3D as parameter
  404. this.processObject( text, onLoad, null, path );
  405. },
  406. setPath: function ( value ) {
  407. this.path = value;
  408. return this;
  409. },
  410. setMaterials: function ( materials ) {
  411. // Clears parse scopes stack, adds new scope with material library
  412. this.parseScopesStack = [];
  413. this.newParseScopeLevel( materials );
  414. this.getCurrentParseScope().isFromParse = false;
  415. this.materials = materials;
  416. return this;
  417. },
  418. setFileMap: function ( fileMap ) {
  419. this.fileMap = fileMap;
  420. return this;
  421. },
  422. newParseScopeLevel: function ( materials ) {
  423. // Adds a new scope level, assign materials to it and returns it
  424. var matLib = {};
  425. if ( materials ) {
  426. for ( var i = 0, n = materials.length; i < n; i ++ ) {
  427. var material = materials[ i ];
  428. matLib[ material.userData.code ] = material;
  429. }
  430. }
  431. var topParseScope = this.getCurrentParseScope();
  432. var newParseScope = {
  433. lib: matLib,
  434. url: null,
  435. // Subobjects
  436. subobjects: null,
  437. numSubobjects: 0,
  438. subobjectIndex: 0,
  439. inverted: false,
  440. category: null,
  441. keywords: null,
  442. // Current subobject
  443. currentFileName: null,
  444. mainColourCode: topParseScope ? topParseScope.mainColourCode : '16',
  445. mainEdgeColourCode: topParseScope ? topParseScope.mainEdgeColourCode : '24',
  446. currentMatrix: new THREE.Matrix4(),
  447. matrix: new THREE.Matrix4(),
  448. // If false, it is a root material scope previous to parse
  449. isFromParse: true,
  450. triangles: null,
  451. lineSegments: null,
  452. conditionalSegments: null,
  453. };
  454. this.parseScopesStack.push( newParseScope );
  455. return newParseScope;
  456. },
  457. removeScopeLevel: function () {
  458. this.parseScopesStack.pop();
  459. return this;
  460. },
  461. addMaterial: function ( material ) {
  462. // Adds a material to the material library which is on top of the parse scopes stack. And also to the materials array
  463. var matLib = this.getCurrentParseScope().lib;
  464. if ( ! matLib[ material.userData.code ] ) {
  465. this.materials.push( material );
  466. }
  467. matLib[ material.userData.code ] = material;
  468. return this;
  469. },
  470. getMaterial: function ( colourCode ) {
  471. // Given a colour code search its material in the parse scopes stack
  472. if ( colourCode.startsWith( "0x2" ) ) {
  473. // Special 'direct' material value (RGB colour)
  474. var colour = colourCode.substring( 3 );
  475. return this.parseColourMetaDirective( new LineParser( "Direct_Color_" + colour + " CODE -1 VALUE #" + colour + " EDGE #" + colour + "" ) );
  476. }
  477. for ( var i = this.parseScopesStack.length - 1; i >= 0; i -- ) {
  478. var material = this.parseScopesStack[ i ].lib[ colourCode ];
  479. if ( material ) {
  480. return material;
  481. }
  482. }
  483. // Material was not found
  484. return null;
  485. },
  486. getParentParseScope: function () {
  487. if ( this.parseScopesStack.length > 1 ) {
  488. return this.parseScopesStack[ this.parseScopesStack.length - 2 ];
  489. }
  490. return null;
  491. },
  492. getCurrentParseScope: function () {
  493. if ( this.parseScopesStack.length > 0 ) {
  494. return this.parseScopesStack[ this.parseScopesStack.length - 1 ];
  495. }
  496. return null;
  497. },
  498. parseColourMetaDirective: function ( lineParser ) {
  499. // Parses a colour definition and returns a THREE.Material or null if error
  500. var code = null;
  501. // Triangle and line colours
  502. var colour = 0xFF00FF;
  503. var edgeColour = 0xFF00FF;
  504. // Transparency
  505. var alpha = 1;
  506. var isTransparent = false;
  507. // Self-illumination:
  508. var luminance = 0;
  509. var finishType = LDrawLoader.FINISH_TYPE_DEFAULT;
  510. var canHaveEnvMap = true;
  511. var edgeMaterial = null;
  512. var name = lineParser.getToken();
  513. if ( ! name ) {
  514. throw 'LDrawLoader: Material name was expected after "!COLOUR tag' + lineParser.getLineNumberString() + ".";
  515. }
  516. // Parse tag tokens and their parameters
  517. var token = null;
  518. while ( true ) {
  519. token = lineParser.getToken();
  520. if ( ! token ) {
  521. break;
  522. }
  523. switch ( token.toUpperCase() ) {
  524. case "CODE":
  525. code = lineParser.getToken();
  526. break;
  527. case "VALUE":
  528. colour = lineParser.getToken();
  529. if ( colour.startsWith( '0x' ) ) {
  530. colour = '#' + colour.substring( 2 );
  531. } else if ( ! colour.startsWith( '#' ) ) {
  532. throw 'LDrawLoader: Invalid colour while parsing material' + lineParser.getLineNumberString() + ".";
  533. }
  534. break;
  535. case "EDGE":
  536. edgeColour = lineParser.getToken();
  537. if ( edgeColour.startsWith( '0x' ) ) {
  538. edgeColour = '#' + edgeColour.substring( 2 );
  539. } else if ( ! edgeColour.startsWith( '#' ) ) {
  540. // Try to see if edge colour is a colour code
  541. edgeMaterial = this.getMaterial( edgeColour );
  542. if ( ! edgeMaterial ) {
  543. throw 'LDrawLoader: Invalid edge colour while parsing material' + lineParser.getLineNumberString() + ".";
  544. }
  545. // Get the edge material for this triangle material
  546. edgeMaterial = edgeMaterial.userData.edgeMaterial;
  547. }
  548. break;
  549. case 'ALPHA':
  550. alpha = parseInt( lineParser.getToken() );
  551. if ( isNaN( alpha ) ) {
  552. throw 'LDrawLoader: Invalid alpha value in material definition' + lineParser.getLineNumberString() + ".";
  553. }
  554. alpha = Math.max( 0, Math.min( 1, alpha / 255 ) );
  555. if ( alpha < 1 ) {
  556. isTransparent = true;
  557. }
  558. break;
  559. case 'LUMINANCE':
  560. luminance = parseInt( lineParser.getToken() );
  561. if ( isNaN( luminance ) ) {
  562. throw 'LDrawLoader: Invalid luminance value in material definition' + LineParser.getLineNumberString() + ".";
  563. }
  564. luminance = Math.max( 0, Math.min( 1, luminance / 255 ) );
  565. break;
  566. case 'CHROME':
  567. finishType = LDrawLoader.FINISH_TYPE_CHROME;
  568. break;
  569. case 'PEARLESCENT':
  570. finishType = LDrawLoader.FINISH_TYPE_PEARLESCENT;
  571. break;
  572. case 'RUBBER':
  573. finishType = LDrawLoader.FINISH_TYPE_RUBBER;
  574. break;
  575. case 'MATTE_METALLIC':
  576. finishType = LDrawLoader.FINISH_TYPE_MATTE_METALLIC;
  577. break;
  578. case 'METAL':
  579. finishType = LDrawLoader.FINISH_TYPE_METAL;
  580. break;
  581. case 'MATERIAL':
  582. // Not implemented
  583. lineParser.setToEnd();
  584. break;
  585. default:
  586. throw 'LDrawLoader: Unknown token "' + token + '" while parsing material' + lineParser.getLineNumberString() + ".";
  587. break;
  588. }
  589. }
  590. var material = null;
  591. switch ( finishType ) {
  592. case LDrawLoader.FINISH_TYPE_DEFAULT:
  593. material = new THREE.MeshStandardMaterial( { color: colour, roughness: 0.3, envMapIntensity: 0.3, metalness: 0 } );
  594. break;
  595. case LDrawLoader.FINISH_TYPE_PEARLESCENT:
  596. // Try to imitate pearlescency by setting the specular to the complementary of the color, and low shininess
  597. var specular = new THREE.Color( colour );
  598. var hsl = specular.getHSL( { h: 0, s: 0, l: 0 } );
  599. hsl.h = ( hsl.h + 0.5 ) % 1;
  600. hsl.l = Math.min( 1, hsl.l + ( 1 - hsl.l ) * 0.7 );
  601. specular.setHSL( hsl.h, hsl.s, hsl.l );
  602. material = new THREE.MeshPhongMaterial( { color: colour, specular: specular, shininess: 10, reflectivity: 0.3 } );
  603. break;
  604. case LDrawLoader.FINISH_TYPE_CHROME:
  605. // Mirror finish surface
  606. material = new THREE.MeshStandardMaterial( { color: colour, roughness: 0, metalness: 1 } );
  607. break;
  608. case LDrawLoader.FINISH_TYPE_RUBBER:
  609. // Rubber finish
  610. material = new THREE.MeshStandardMaterial( { color: colour, roughness: 0.9, metalness: 0 } );
  611. canHaveEnvMap = false;
  612. break;
  613. case LDrawLoader.FINISH_TYPE_MATTE_METALLIC:
  614. // Brushed metal finish
  615. material = new THREE.MeshStandardMaterial( { color: colour, roughness: 0.8, metalness: 0.4 } );
  616. break;
  617. case LDrawLoader.FINISH_TYPE_METAL:
  618. // Average metal finish
  619. material = new THREE.MeshStandardMaterial( { color: colour, roughness: 0.2, metalness: 0.85 } );
  620. break;
  621. default:
  622. // Should not happen
  623. break;
  624. }
  625. material.transparent = isTransparent;
  626. material.premultipliedAlpha = true;
  627. material.opacity = alpha;
  628. material.depthWrite = ! isTransparent;
  629. material.polygonOffset = true;
  630. material.polygonOffsetFactor = 1;
  631. material.userData.canHaveEnvMap = canHaveEnvMap;
  632. if ( luminance !== 0 ) {
  633. material.emissive.set( material.color ).multiplyScalar( luminance );
  634. }
  635. if ( ! edgeMaterial ) {
  636. // This is the material used for edges
  637. edgeMaterial = new THREE.LineBasicMaterial( {
  638. color: edgeColour,
  639. transparent: isTransparent,
  640. opacity: alpha,
  641. depthWrite: ! isTransparent
  642. } );
  643. edgeMaterial.userData.code = code;
  644. edgeMaterial.name = name + " - Edge";
  645. edgeMaterial.userData.canHaveEnvMap = false;
  646. // This is the material used for conditional edges
  647. edgeMaterial.userData.conditionalEdgeMaterial = new THREE.ShaderMaterial( {
  648. vertexShader: conditionalLineVertShader,
  649. fragmentShader: conditionalLineFragShader,
  650. uniforms: {
  651. diffuse: {
  652. value: new THREE.Color( edgeColour )
  653. },
  654. opacity: {
  655. value: alpha
  656. }
  657. },
  658. transparent: isTransparent,
  659. depthWrite: ! isTransparent
  660. } );
  661. edgeMaterial.userData.conditionalEdgeMaterial.userData.canHaveEnvMap = false;
  662. }
  663. material.userData.code = code;
  664. material.name = name;
  665. material.userData.edgeMaterial = edgeMaterial;
  666. return material;
  667. },
  668. //
  669. objectParse: function ( text ) {
  670. //console.time( 'LDrawLoader' );
  671. // Retrieve data from the parent parse scope
  672. var parentParseScope = this.getParentParseScope();
  673. // Main colour codes passed to this subobject (or default codes 16 and 24 if it is the root object)
  674. var mainColourCode = parentParseScope.mainColourCode;
  675. var mainEdgeColourCode = parentParseScope.mainEdgeColourCode;
  676. var currentParseScope = this.getCurrentParseScope();
  677. // Parse result variables
  678. var triangles;
  679. var lineSegments;
  680. var conditionalSegments;
  681. var subobjects = [];
  682. var category = null;
  683. var keywords = null;
  684. if ( text.indexOf( '\r\n' ) !== - 1 ) {
  685. // This is faster than String.split with regex that splits on both
  686. text = text.replace( /\r\n/g, '\n' );
  687. }
  688. var lines = text.split( '\n' );
  689. var numLines = lines.length;
  690. var lineIndex = 0;
  691. var parsingEmbeddedFiles = false;
  692. var currentEmbeddedFileName = null;
  693. var currentEmbeddedText = null;
  694. var bfcCertified = false;
  695. var bfcCCW = true;
  696. var bfcInverted = false;
  697. var bfcCull = true;
  698. var type = '';
  699. var scope = this;
  700. function parseColourCode( lineParser, forEdge ) {
  701. // Parses next colour code and returns a THREE.Material
  702. var colourCode = lineParser.getToken();
  703. if ( ! forEdge && colourCode === '16' ) {
  704. colourCode = mainColourCode;
  705. }
  706. if ( forEdge && colourCode === '24' ) {
  707. colourCode = mainEdgeColourCode;
  708. }
  709. var material = scope.getMaterial( colourCode );
  710. if ( ! material ) {
  711. throw 'LDrawLoader: Unknown colour code "' + colourCode + '" is used' + lineParser.getLineNumberString() + ' but it was not defined previously.';
  712. }
  713. return material;
  714. }
  715. function parseVector( lp ) {
  716. var v = new THREE.Vector3( parseFloat( lp.getToken() ), parseFloat( lp.getToken() ), parseFloat( lp.getToken() ) );
  717. if ( ! scope.separateObjects ) {
  718. v.applyMatrix4( currentParseScope.currentMatrix );
  719. }
  720. return v;
  721. }
  722. // Parse all line commands
  723. for ( lineIndex = 0; lineIndex < numLines; lineIndex ++ ) {
  724. var line = lines[ lineIndex ];
  725. if ( line.length === 0 ) continue;
  726. if ( parsingEmbeddedFiles ) {
  727. if ( line.startsWith( '0 FILE ' ) ) {
  728. // Save previous embedded file in the cache
  729. this.subobjectCache[ currentEmbeddedFileName.toLowerCase() ] = currentEmbeddedText;
  730. // New embedded text file
  731. currentEmbeddedFileName = line.substring( 7 );
  732. currentEmbeddedText = '';
  733. } else {
  734. currentEmbeddedText += line + '\n';
  735. }
  736. continue;
  737. }
  738. var lp = new LineParser( line, lineIndex + 1 );
  739. lp.seekNonSpace();
  740. if ( lp.isAtTheEnd() ) {
  741. // Empty line
  742. continue;
  743. }
  744. // Parse the line type
  745. var lineType = lp.getToken();
  746. switch ( lineType ) {
  747. // Line type 0: Comment or META
  748. case '0':
  749. // Parse meta directive
  750. var meta = lp.getToken();
  751. if ( meta ) {
  752. switch ( meta ) {
  753. case '!LDRAW_ORG':
  754. type = lp.getToken();
  755. if ( ! parsingEmbeddedFiles ) {
  756. currentParseScope.triangles = [];
  757. currentParseScope.lineSegments = [];
  758. currentParseScope.conditionalSegments = [];
  759. currentParseScope.type = type;
  760. var isRoot = ! parentParseScope.isFromParse;
  761. if ( isRoot || scope.separateObjects && ! isPrimitiveType( type ) ) {
  762. currentParseScope.groupObject = new THREE.Group();
  763. }
  764. // If the scale of the object is negated then the triangle winding order
  765. // needs to be flipped.
  766. var matrix = currentParseScope.matrix;
  767. if (
  768. matrix.determinant() < 0 && (
  769. scope.separateObjects && isPrimitiveType( type ) ||
  770. ! scope.separateObjects
  771. ) ) {
  772. currentParseScope.inverted = ! currentParseScope.inverted;
  773. }
  774. triangles = currentParseScope.triangles;
  775. lineSegments = currentParseScope.lineSegments;
  776. conditionalSegments = currentParseScope.conditionalSegments;
  777. }
  778. break;
  779. case '!COLOUR':
  780. var material = this.parseColourMetaDirective( lp );
  781. if ( material ) {
  782. this.addMaterial( material );
  783. } else {
  784. console.warn( 'LDrawLoader: Error parsing material' + lp.getLineNumberString() );
  785. }
  786. break;
  787. case '!CATEGORY':
  788. category = lp.getToken();
  789. break;
  790. case '!KEYWORDS':
  791. var newKeywords = lp.getRemainingString().split( ',' );
  792. if ( newKeywords.length > 0 ) {
  793. if ( ! keywords ) {
  794. keywords = [];
  795. }
  796. newKeywords.forEach( function ( keyword ) {
  797. keywords.push( keyword.trim() );
  798. } );
  799. }
  800. break;
  801. case 'FILE':
  802. if ( lineIndex > 0 ) {
  803. // Start embedded text files parsing
  804. parsingEmbeddedFiles = true;
  805. currentEmbeddedFileName = lp.getRemainingString();
  806. currentEmbeddedText = '';
  807. bfcCertified = false;
  808. bfcCCW = true;
  809. }
  810. break;
  811. case 'BFC':
  812. // Changes to the backface culling state
  813. while ( ! lp.isAtTheEnd() ) {
  814. var token = lp.getToken();
  815. switch ( token ) {
  816. case 'CERTIFY':
  817. case 'NOCERTIFY':
  818. bfcCertified = token === 'CERTIFY';
  819. bfcCCW = true;
  820. break;
  821. case 'CW':
  822. case 'CCW':
  823. bfcCCW = token === 'CCW';
  824. break;
  825. case 'INVERTNEXT':
  826. bfcInverted = true;
  827. break;
  828. case 'CLIP':
  829. case 'NOCLIP':
  830. bfcCull = token === 'CLIP';
  831. break;
  832. default:
  833. console.warn( 'THREE.LDrawLoader: BFC directive "' + token + '" is unknown.' );
  834. break;
  835. }
  836. }
  837. break;
  838. default:
  839. // Other meta directives are not implemented
  840. break;
  841. }
  842. }
  843. break;
  844. // Line type 1: Sub-object file
  845. case '1':
  846. var material = parseColourCode( lp );
  847. var posX = parseFloat( lp.getToken() );
  848. var posY = parseFloat( lp.getToken() );
  849. var posZ = parseFloat( lp.getToken() );
  850. var m0 = parseFloat( lp.getToken() );
  851. var m1 = parseFloat( lp.getToken() );
  852. var m2 = parseFloat( lp.getToken() );
  853. var m3 = parseFloat( lp.getToken() );
  854. var m4 = parseFloat( lp.getToken() );
  855. var m5 = parseFloat( lp.getToken() );
  856. var m6 = parseFloat( lp.getToken() );
  857. var m7 = parseFloat( lp.getToken() );
  858. var m8 = parseFloat( lp.getToken() );
  859. var matrix = new THREE.Matrix4().set(
  860. m0, m1, m2, posX,
  861. m3, m4, m5, posY,
  862. m6, m7, m8, posZ,
  863. 0, 0, 0, 1
  864. );
  865. var fileName = lp.getRemainingString().trim().replace( /\\/g, "/" );
  866. if ( scope.fileMap[ fileName ] ) {
  867. // Found the subobject path in the preloaded file path map
  868. fileName = scope.fileMap[ fileName ];
  869. } else {
  870. // Standardized subfolders
  871. if ( fileName.startsWith( 's/' ) ) {
  872. fileName = 'parts/' + fileName;
  873. } else if ( fileName.startsWith( '48/' ) ) {
  874. fileName = 'p/' + fileName;
  875. }
  876. }
  877. subobjects.push( {
  878. material: material,
  879. matrix: matrix,
  880. fileName: fileName,
  881. originalFileName: fileName,
  882. locationState: LDrawLoader.FILE_LOCATION_AS_IS,
  883. url: null,
  884. triedLowerCase: false,
  885. inverted: bfcInverted !== currentParseScope.inverted
  886. } );
  887. bfcInverted = false;
  888. break;
  889. // Line type 2: Line segment
  890. case '2':
  891. var material = parseColourCode( lp, true );
  892. var segment = {
  893. material: material.userData.edgeMaterial,
  894. colourCode: material.userData.code,
  895. v0: parseVector( lp ),
  896. v1: parseVector( lp )
  897. };
  898. lineSegments.push( segment );
  899. break;
  900. // Line type 5: Conditional Line segment
  901. case '5':
  902. var material = parseColourCode( lp, true );
  903. var segment = {
  904. material: material.userData.edgeMaterial.userData.conditionalEdgeMaterial,
  905. colourCode: material.userData.code,
  906. v0: parseVector( lp ),
  907. v1: parseVector( lp ),
  908. c0: parseVector( lp ),
  909. c1: parseVector( lp )
  910. };
  911. conditionalSegments.push( segment );
  912. break;
  913. // Line type 3: Triangle
  914. case '3':
  915. var material = parseColourCode( lp );
  916. var inverted = currentParseScope.inverted;
  917. var ccw = bfcCCW !== inverted;
  918. var doubleSided = ! bfcCertified || ! bfcCull;
  919. var v0, v1, v2, faceNormal;
  920. if ( ccw === true ) {
  921. v0 = parseVector( lp );
  922. v1 = parseVector( lp );
  923. v2 = parseVector( lp );
  924. } else {
  925. v2 = parseVector( lp );
  926. v1 = parseVector( lp );
  927. v0 = parseVector( lp );
  928. }
  929. tempVec0.subVectors( v1, v0 );
  930. tempVec1.subVectors( v2, v1 );
  931. faceNormal = new THREE.Vector3()
  932. .crossVectors( tempVec0, tempVec1 )
  933. .normalize();
  934. triangles.push( {
  935. material: material,
  936. colourCode: material.userData.code,
  937. v0: v0,
  938. v1: v1,
  939. v2: v2,
  940. faceNormal: faceNormal,
  941. n0: null,
  942. n1: null,
  943. n2: null
  944. } );
  945. if ( doubleSided === true ) {
  946. triangles.push( {
  947. material: material,
  948. colourCode: material.userData.code,
  949. v0: v0,
  950. v1: v2,
  951. v2: v1,
  952. faceNormal: faceNormal,
  953. n0: null,
  954. n1: null,
  955. n2: null
  956. } );
  957. }
  958. break;
  959. // Line type 4: Quadrilateral
  960. case '4':
  961. var material = parseColourCode( lp );
  962. var inverted = currentParseScope.inverted;
  963. var ccw = bfcCCW !== inverted;
  964. var doubleSided = ! bfcCertified || ! bfcCull;
  965. var v0, v1, v2, v3, faceNormal;
  966. if ( ccw === true ) {
  967. v0 = parseVector( lp );
  968. v1 = parseVector( lp );
  969. v2 = parseVector( lp );
  970. v3 = parseVector( lp );
  971. } else {
  972. v3 = parseVector( lp );
  973. v2 = parseVector( lp );
  974. v1 = parseVector( lp );
  975. v0 = parseVector( lp );
  976. }
  977. tempVec0.subVectors( v1, v0 );
  978. tempVec1.subVectors( v2, v1 );
  979. faceNormal = new THREE.Vector3()
  980. .crossVectors( tempVec0, tempVec1 )
  981. .normalize();
  982. triangles.push( {
  983. material: material,
  984. colourCode: material.userData.code,
  985. v0: v0,
  986. v1: v1,
  987. v2: v2,
  988. faceNormal: faceNormal,
  989. n0: null,
  990. n1: null,
  991. n2: null
  992. } );
  993. triangles.push( {
  994. material: material,
  995. colourCode: material.userData.code,
  996. v0: v0,
  997. v1: v2,
  998. v2: v3,
  999. faceNormal: faceNormal,
  1000. n0: null,
  1001. n1: null,
  1002. n2: null
  1003. } );
  1004. if ( doubleSided === true ) {
  1005. triangles.push( {
  1006. material: material,
  1007. colourCode: material.userData.code,
  1008. v0: v0,
  1009. v1: v2,
  1010. v2: v1,
  1011. faceNormal: faceNormal,
  1012. n0: null,
  1013. n1: null,
  1014. n2: null
  1015. } );
  1016. triangles.push( {
  1017. material: material,
  1018. colourCode: material.userData.code,
  1019. v0: v0,
  1020. v1: v3,
  1021. v2: v2,
  1022. faceNormal: faceNormal,
  1023. n0: null,
  1024. n1: null,
  1025. n2: null
  1026. } );
  1027. }
  1028. break;
  1029. default:
  1030. throw 'LDrawLoader: Unknown line type "' + lineType + '"' + lp.getLineNumberString() + '.';
  1031. break;
  1032. }
  1033. }
  1034. if ( parsingEmbeddedFiles ) {
  1035. this.subobjectCache[ currentEmbeddedFileName.toLowerCase() ] = currentEmbeddedText;
  1036. }
  1037. currentParseScope.category = category;
  1038. currentParseScope.keywords = keywords;
  1039. currentParseScope.subobjects = subobjects;
  1040. currentParseScope.numSubobjects = subobjects.length;
  1041. currentParseScope.subobjectIndex = 0;
  1042. },
  1043. processObject: function ( text, onProcessed, subobject, url ) {
  1044. var scope = this;
  1045. var parseScope = scope.newParseScopeLevel();
  1046. parseScope.url = url;
  1047. var parentParseScope = scope.getParentParseScope();
  1048. // Set current matrix
  1049. if ( subobject ) {
  1050. parseScope.currentMatrix.multiplyMatrices( parentParseScope.currentMatrix, subobject.matrix );
  1051. parseScope.matrix.copy( subobject.matrix );
  1052. parseScope.inverted = subobject.inverted;
  1053. }
  1054. // Add to cache
  1055. var currentFileName = parentParseScope.currentFileName;
  1056. if ( currentFileName !== null ) {
  1057. currentFileName = parentParseScope.currentFileName.toLowerCase();
  1058. }
  1059. if ( scope.subobjectCache[ currentFileName ] === undefined ) {
  1060. scope.subobjectCache[ currentFileName ] = text;
  1061. }
  1062. // Parse the object (returns a THREE.Group)
  1063. scope.objectParse( text );
  1064. var finishedCount = 0;
  1065. onSubobjectFinish();
  1066. function onSubobjectFinish() {
  1067. finishedCount ++;
  1068. if ( finishedCount === parseScope.subobjects.length + 1 ) {
  1069. finalizeObject();
  1070. } else {
  1071. // Once the previous subobject has finished we can start processing the next one in the list.
  1072. // The subobject processing shares scope in processing so it's important that they be loaded serially
  1073. // to avoid race conditions.
  1074. // Promise.resolve is used as an approach to asynchronously schedule a task _before_ this frame ends to
  1075. // avoid stack overflow exceptions when loading many subobjects from the cache. RequestAnimationFrame
  1076. // will work but causes the load to happen after the next frame which causes the load to take significantly longer.
  1077. var subobject = parseScope.subobjects[ parseScope.subobjectIndex ];
  1078. Promise.resolve().then( function () {
  1079. loadSubobject( subobject );
  1080. } );
  1081. parseScope.subobjectIndex ++;
  1082. }
  1083. }
  1084. function finalizeObject() {
  1085. if ( scope.smoothNormals && parseScope.type === 'Part' ) {
  1086. smoothNormals( parseScope.triangles, parseScope.lineSegments );
  1087. }
  1088. var isRoot = ! parentParseScope.isFromParse;
  1089. if ( scope.separateObjects && ! isPrimitiveType( parseScope.type ) || isRoot ) {
  1090. const objGroup = parseScope.groupObject;
  1091. if ( parseScope.triangles.length > 0 ) {
  1092. objGroup.add( createObject( parseScope.triangles, 3 ) );
  1093. }
  1094. if ( parseScope.lineSegments.length > 0 ) {
  1095. objGroup.add( createObject( parseScope.lineSegments, 2 ) );
  1096. }
  1097. if ( parseScope.conditionalSegments.length > 0 ) {
  1098. objGroup.add( createObject( parseScope.conditionalSegments, 2, true ) );
  1099. }
  1100. if ( parentParseScope.groupObject ) {
  1101. objGroup.name = parseScope.fileName;
  1102. objGroup.userData.category = parseScope.category;
  1103. objGroup.userData.keywords = parseScope.keywords;
  1104. parseScope.matrix.decompose( objGroup.position, objGroup.quaternion, objGroup.scale );
  1105. parentParseScope.groupObject.add( objGroup );
  1106. }
  1107. } else {
  1108. var separateObjects = scope.separateObjects;
  1109. var parentLineSegments = parentParseScope.lineSegments;
  1110. var parentConditionalSegments = parentParseScope.conditionalSegments;
  1111. var parentTriangles = parentParseScope.triangles;
  1112. var lineSegments = parseScope.lineSegments;
  1113. var conditionalSegments = parseScope.conditionalSegments;
  1114. var triangles = parseScope.triangles;
  1115. for ( var i = 0, l = lineSegments.length; i < l; i ++ ) {
  1116. var ls = lineSegments[ i ];
  1117. if ( separateObjects ) {
  1118. ls.v0.applyMatrix4( parseScope.matrix );
  1119. ls.v1.applyMatrix4( parseScope.matrix );
  1120. }
  1121. parentLineSegments.push( ls );
  1122. }
  1123. for ( var i = 0, l = conditionalSegments.length; i < l; i ++ ) {
  1124. var os = conditionalSegments[ i ];
  1125. if ( separateObjects ) {
  1126. os.v0.applyMatrix4( parseScope.matrix );
  1127. os.v1.applyMatrix4( parseScope.matrix );
  1128. os.c0.applyMatrix4( parseScope.matrix );
  1129. os.c1.applyMatrix4( parseScope.matrix );
  1130. }
  1131. parentConditionalSegments.push( os );
  1132. }
  1133. for ( var i = 0, l = triangles.length; i < l; i ++ ) {
  1134. var tri = triangles[ i ];
  1135. if ( separateObjects ) {
  1136. tri.v0 = tri.v0.clone().applyMatrix4( parseScope.matrix );
  1137. tri.v1 = tri.v1.clone().applyMatrix4( parseScope.matrix );
  1138. tri.v2 = tri.v2.clone().applyMatrix4( parseScope.matrix );
  1139. tempVec0.subVectors( tri.v1, tri.v0 );
  1140. tempVec1.subVectors( tri.v2, tri.v1 );
  1141. tri.faceNormal.crossVectors( tempVec0, tempVec1 ).normalize();
  1142. }
  1143. parentTriangles.push( tri );
  1144. }
  1145. }
  1146. scope.removeScopeLevel();
  1147. if ( onProcessed ) {
  1148. onProcessed( parseScope.groupObject );
  1149. }
  1150. }
  1151. function loadSubobject( subobject ) {
  1152. parseScope.mainColourCode = subobject.material.userData.code;
  1153. parseScope.mainEdgeColourCode = subobject.material.userData.edgeMaterial.userData.code;
  1154. parseScope.currentFileName = subobject.originalFileName;
  1155. // If subobject was cached previously, use the cached one
  1156. var cached = scope.subobjectCache[ subobject.originalFileName.toLowerCase() ];
  1157. if ( cached ) {
  1158. scope.processObject( cached, function ( subobjectGroup ) {
  1159. onSubobjectLoaded( subobjectGroup, subobject );
  1160. onSubobjectFinish();
  1161. }, subobject, url );
  1162. return;
  1163. }
  1164. // Adjust file name to locate the subobject file path in standard locations (always under directory scope.path)
  1165. // Update also subobject.locationState for the next try if this load fails.
  1166. var subobjectURL = subobject.fileName;
  1167. var newLocationState = LDrawLoader.FILE_LOCATION_NOT_FOUND;
  1168. switch ( subobject.locationState ) {
  1169. case LDrawLoader.FILE_LOCATION_AS_IS:
  1170. newLocationState = subobject.locationState + 1;
  1171. break;
  1172. case LDrawLoader.FILE_LOCATION_TRY_PARTS:
  1173. subobjectURL = 'parts/' + subobjectURL;
  1174. newLocationState = subobject.locationState + 1;
  1175. break;
  1176. case LDrawLoader.FILE_LOCATION_TRY_P:
  1177. subobjectURL = 'p/' + subobjectURL;
  1178. newLocationState = subobject.locationState + 1;
  1179. break;
  1180. case LDrawLoader.FILE_LOCATION_TRY_MODELS:
  1181. subobjectURL = 'models/' + subobjectURL;
  1182. newLocationState = subobject.locationState + 1;
  1183. break;
  1184. case LDrawLoader.FILE_LOCATION_TRY_RELATIVE:
  1185. subobjectURL = url.substring( 0, url.lastIndexOf( "/" ) + 1 ) + subobjectURL;
  1186. newLocationState = subobject.locationState + 1;
  1187. break;
  1188. case LDrawLoader.FILE_LOCATION_TRY_ABSOLUTE:
  1189. if ( subobject.triedLowerCase ) {
  1190. // Try absolute path
  1191. newLocationState = LDrawLoader.FILE_LOCATION_NOT_FOUND;
  1192. } else {
  1193. // Next attempt is lower case
  1194. subobject.fileName = subobject.fileName.toLowerCase();
  1195. subobjectURL = subobject.fileName;
  1196. subobject.triedLowerCase = true;
  1197. newLocationState = LDrawLoader.FILE_LOCATION_AS_IS;
  1198. }
  1199. break;
  1200. case LDrawLoader.FILE_LOCATION_NOT_FOUND:
  1201. // All location possibilities have been tried, give up loading this object
  1202. console.warn( 'LDrawLoader: Subobject "' + subobject.originalFileName + '" could not be found.' );
  1203. return;
  1204. }
  1205. subobject.locationState = newLocationState;
  1206. subobject.url = subobjectURL;
  1207. // Load the subobject
  1208. // Use another file loader here so we can keep track of the subobject information
  1209. // and use it when processing the next model.
  1210. var fileLoader = new THREE.FileLoader( scope.manager );
  1211. fileLoader.setPath( scope.path );
  1212. fileLoader.load( subobjectURL, function ( text ) {
  1213. scope.processObject( text, function ( subobjectGroup ) {
  1214. onSubobjectLoaded( subobjectGroup, subobject );
  1215. onSubobjectFinish();
  1216. }, subobject, url );
  1217. }, undefined, function ( err ) {
  1218. onSubobjectError( err, subobject );
  1219. }, subobject );
  1220. }
  1221. function onSubobjectLoaded( subobjectGroup, subobject ) {
  1222. if ( subobjectGroup === null ) {
  1223. // Try to reload
  1224. loadSubobject( subobject );
  1225. return;
  1226. }
  1227. scope.fileMap[ subobject.originalFileName ] = subobject.url;
  1228. }
  1229. function onSubobjectError( err, subobject ) {
  1230. // Retry download from a different default possible location
  1231. loadSubobject( subobject );
  1232. }
  1233. }
  1234. };
  1235. return LDrawLoader;
  1236. } )();