LDrawLoader.js 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893
  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. processObject( text, onLoad );
  400. }, onProgress, onError );
  401. function processObject( text, onProcessed, subobject ) {
  402. var parseScope = scope.newParseScopeLevel();
  403. parseScope.url = url;
  404. var parentParseScope = scope.getParentParseScope();
  405. // Set current matrix
  406. if ( subobject ) {
  407. parseScope.currentMatrix.multiplyMatrices( parentParseScope.currentMatrix, subobject.matrix );
  408. parseScope.matrix.copy( subobject.matrix );
  409. parseScope.inverted = subobject.inverted;
  410. }
  411. // Add to cache
  412. var currentFileName = parentParseScope.currentFileName;
  413. if ( currentFileName !== null ) {
  414. currentFileName = parentParseScope.currentFileName.toLowerCase();
  415. }
  416. if ( scope.subobjectCache[ currentFileName ] === undefined ) {
  417. scope.subobjectCache[ currentFileName ] = text;
  418. }
  419. // Parse the object (returns a THREE.Group)
  420. scope.parse( text );
  421. var finishedCount = 0;
  422. onSubobjectFinish();
  423. function onSubobjectFinish() {
  424. finishedCount ++;
  425. if ( finishedCount === parseScope.subobjects.length + 1 ) {
  426. finalizeObject();
  427. } else {
  428. // Once the previous subobject has finished we can start processing the next one in the list.
  429. // The subobject processing shares scope in processing so it's important that they be loaded serially
  430. // to avoid race conditions.
  431. // Promise.resolve is used as an approach to asynchronously schedule a task _before_ this frame ends to
  432. // avoid stack overflow exceptions when loading many subobjects from the cache. RequestAnimationFrame
  433. // will work but causes the load to happen after the next frame which causes the load to take significantly longer.
  434. var subobject = parseScope.subobjects[ parseScope.subobjectIndex ];
  435. Promise.resolve().then( function () {
  436. loadSubobject( subobject );
  437. } );
  438. parseScope.subobjectIndex ++;
  439. }
  440. }
  441. function finalizeObject() {
  442. if ( scope.smoothNormals && parseScope.type === 'Part' ) {
  443. smoothNormals( parseScope.triangles, parseScope.lineSegments );
  444. }
  445. var isRoot = ! parentParseScope.isFromParse;
  446. if ( scope.separateObjects && ! isPrimitiveType( parseScope.type ) || isRoot ) {
  447. const objGroup = parseScope.groupObject;
  448. if ( parseScope.triangles.length > 0 ) {
  449. objGroup.add( createObject( parseScope.triangles, 3 ) );
  450. }
  451. if ( parseScope.lineSegments.length > 0 ) {
  452. objGroup.add( createObject( parseScope.lineSegments, 2 ) );
  453. }
  454. if ( parseScope.conditionalSegments.length > 0 ) {
  455. objGroup.add( createObject( parseScope.conditionalSegments, 2, true ) );
  456. }
  457. if ( parentParseScope.groupObject ) {
  458. objGroup.name = parseScope.fileName;
  459. objGroup.userData.category = parseScope.category;
  460. objGroup.userData.keywords = parseScope.keywords;
  461. parseScope.matrix.decompose( objGroup.position, objGroup.quaternion, objGroup.scale );
  462. parentParseScope.groupObject.add( objGroup );
  463. }
  464. } else {
  465. var separateObjects = scope.separateObjects;
  466. var parentLineSegments = parentParseScope.lineSegments;
  467. var parentConditionalSegments = parentParseScope.conditionalSegments;
  468. var parentTriangles = parentParseScope.triangles;
  469. var lineSegments = parseScope.lineSegments;
  470. var conditionalSegments = parseScope.conditionalSegments;
  471. var triangles = parseScope.triangles;
  472. for ( var i = 0, l = lineSegments.length; i < l; i ++ ) {
  473. var ls = lineSegments[ i ];
  474. if ( separateObjects ) {
  475. ls.v0.applyMatrix4( parseScope.matrix );
  476. ls.v1.applyMatrix4( parseScope.matrix );
  477. }
  478. parentLineSegments.push( ls );
  479. }
  480. for ( var i = 0, l = conditionalSegments.length; i < l; i ++ ) {
  481. var os = conditionalSegments[ i ];
  482. if ( separateObjects ) {
  483. os.v0.applyMatrix4( parseScope.matrix );
  484. os.v1.applyMatrix4( parseScope.matrix );
  485. os.c0.applyMatrix4( parseScope.matrix );
  486. os.c1.applyMatrix4( parseScope.matrix );
  487. }
  488. parentConditionalSegments.push( os );
  489. }
  490. for ( var i = 0, l = triangles.length; i < l; i ++ ) {
  491. var tri = triangles[ i ];
  492. if ( separateObjects ) {
  493. tri.v0 = tri.v0.clone().applyMatrix4( parseScope.matrix );
  494. tri.v1 = tri.v1.clone().applyMatrix4( parseScope.matrix );
  495. tri.v2 = tri.v2.clone().applyMatrix4( parseScope.matrix );
  496. tempVec0.subVectors( tri.v1, tri.v0 );
  497. tempVec1.subVectors( tri.v2, tri.v1 );
  498. tri.faceNormal.crossVectors( tempVec0, tempVec1 ).normalize();
  499. }
  500. parentTriangles.push( tri );
  501. }
  502. }
  503. scope.removeScopeLevel();
  504. if ( onProcessed ) {
  505. onProcessed( parseScope.groupObject );
  506. }
  507. }
  508. function loadSubobject( subobject ) {
  509. parseScope.mainColourCode = subobject.material.userData.code;
  510. parseScope.mainEdgeColourCode = subobject.material.userData.edgeMaterial.userData.code;
  511. parseScope.currentFileName = subobject.originalFileName;
  512. // If subobject was cached previously, use the cached one
  513. var cached = scope.subobjectCache[ subobject.originalFileName.toLowerCase() ];
  514. if ( cached ) {
  515. processObject( cached, function ( subobjectGroup ) {
  516. onSubobjectLoaded( subobjectGroup, subobject );
  517. onSubobjectFinish();
  518. }, subobject );
  519. return;
  520. }
  521. // Adjust file name to locate the subobject file path in standard locations (always under directory scope.path)
  522. // Update also subobject.locationState for the next try if this load fails.
  523. var subobjectURL = subobject.fileName;
  524. var newLocationState = LDrawLoader.FILE_LOCATION_NOT_FOUND;
  525. switch ( subobject.locationState ) {
  526. case LDrawLoader.FILE_LOCATION_AS_IS:
  527. newLocationState = subobject.locationState + 1;
  528. break;
  529. case LDrawLoader.FILE_LOCATION_TRY_PARTS:
  530. subobjectURL = 'parts/' + subobjectURL;
  531. newLocationState = subobject.locationState + 1;
  532. break;
  533. case LDrawLoader.FILE_LOCATION_TRY_P:
  534. subobjectURL = 'p/' + subobjectURL;
  535. newLocationState = subobject.locationState + 1;
  536. break;
  537. case LDrawLoader.FILE_LOCATION_TRY_MODELS:
  538. subobjectURL = 'models/' + subobjectURL;
  539. newLocationState = subobject.locationState + 1;
  540. break;
  541. case LDrawLoader.FILE_LOCATION_TRY_RELATIVE:
  542. subobjectURL = url.substring( 0, url.lastIndexOf( "/" ) + 1 ) + subobjectURL;
  543. newLocationState = subobject.locationState + 1;
  544. break;
  545. case LDrawLoader.FILE_LOCATION_TRY_ABSOLUTE:
  546. if ( subobject.triedLowerCase ) {
  547. // Try absolute path
  548. newLocationState = LDrawLoader.FILE_LOCATION_NOT_FOUND;
  549. } else {
  550. // Next attempt is lower case
  551. subobject.fileName = subobject.fileName.toLowerCase();
  552. subobjectURL = subobject.fileName;
  553. subobject.triedLowerCase = true;
  554. newLocationState = LDrawLoader.FILE_LOCATION_AS_IS;
  555. }
  556. break;
  557. case LDrawLoader.FILE_LOCATION_NOT_FOUND:
  558. // All location possibilities have been tried, give up loading this object
  559. console.warn( 'LDrawLoader: Subobject "' + subobject.originalFileName + '" could not be found.' );
  560. return;
  561. }
  562. subobject.locationState = newLocationState;
  563. subobject.url = subobjectURL;
  564. // Load the subobject
  565. // Use another file loader here so we can keep track of the subobject information
  566. // and use it when processing the next model.
  567. var fileLoader = new THREE.FileLoader( scope.manager );
  568. fileLoader.setPath( scope.path );
  569. fileLoader.load( subobjectURL, function ( text ) {
  570. processObject( text, function ( subobjectGroup ) {
  571. onSubobjectLoaded( subobjectGroup, subobject );
  572. onSubobjectFinish();
  573. }, subobject );
  574. }, undefined, function ( err ) {
  575. onSubobjectError( err, subobject );
  576. }, subobject );
  577. }
  578. function onSubobjectLoaded( subobjectGroup, subobject ) {
  579. if ( subobjectGroup === null ) {
  580. // Try to reload
  581. loadSubobject( subobject );
  582. return;
  583. }
  584. scope.fileMap[ subobject.originalFileName ] = subobject.url;
  585. }
  586. function onSubobjectError( err, subobject ) {
  587. // Retry download from a different default possible location
  588. loadSubobject( subobject );
  589. }
  590. }
  591. },
  592. setPath: function ( value ) {
  593. this.path = value;
  594. return this;
  595. },
  596. setMaterials: function ( materials ) {
  597. // Clears parse scopes stack, adds new scope with material library
  598. this.parseScopesStack = [];
  599. this.newParseScopeLevel( materials );
  600. this.getCurrentParseScope().isFromParse = false;
  601. this.materials = materials;
  602. return this;
  603. },
  604. setFileMap: function ( fileMap ) {
  605. this.fileMap = fileMap;
  606. return this;
  607. },
  608. newParseScopeLevel: function ( materials ) {
  609. // Adds a new scope level, assign materials to it and returns it
  610. var matLib = {};
  611. if ( materials ) {
  612. for ( var i = 0, n = materials.length; i < n; i ++ ) {
  613. var material = materials[ i ];
  614. matLib[ material.userData.code ] = material;
  615. }
  616. }
  617. var topParseScope = this.getCurrentParseScope();
  618. var newParseScope = {
  619. lib: matLib,
  620. url: null,
  621. // Subobjects
  622. subobjects: null,
  623. numSubobjects: 0,
  624. subobjectIndex: 0,
  625. inverted: false,
  626. category: null,
  627. keywords: null,
  628. // Current subobject
  629. currentFileName: null,
  630. mainColourCode: topParseScope ? topParseScope.mainColourCode : '16',
  631. mainEdgeColourCode: topParseScope ? topParseScope.mainEdgeColourCode : '24',
  632. currentMatrix: new THREE.Matrix4(),
  633. matrix: new THREE.Matrix4(),
  634. // If false, it is a root material scope previous to parse
  635. isFromParse: true,
  636. triangles: null,
  637. lineSegments: null,
  638. conditionalSegments: null,
  639. };
  640. this.parseScopesStack.push( newParseScope );
  641. return newParseScope;
  642. },
  643. removeScopeLevel: function () {
  644. this.parseScopesStack.pop();
  645. return this;
  646. },
  647. addMaterial: function ( material ) {
  648. // Adds a material to the material library which is on top of the parse scopes stack. And also to the materials array
  649. var matLib = this.getCurrentParseScope().lib;
  650. if ( ! matLib[ material.userData.code ] ) {
  651. this.materials.push( material );
  652. }
  653. matLib[ material.userData.code ] = material;
  654. return this;
  655. },
  656. getMaterial: function ( colourCode ) {
  657. // Given a colour code search its material in the parse scopes stack
  658. if ( colourCode.startsWith( "0x2" ) ) {
  659. // Special 'direct' material value (RGB colour)
  660. var colour = colourCode.substring( 3 );
  661. return this.parseColourMetaDirective( new LineParser( "Direct_Color_" + colour + " CODE -1 VALUE #" + colour + " EDGE #" + colour + "" ) );
  662. }
  663. for ( var i = this.parseScopesStack.length - 1; i >= 0; i -- ) {
  664. var material = this.parseScopesStack[ i ].lib[ colourCode ];
  665. if ( material ) {
  666. return material;
  667. }
  668. }
  669. // Material was not found
  670. return null;
  671. },
  672. getParentParseScope: function () {
  673. if ( this.parseScopesStack.length > 1 ) {
  674. return this.parseScopesStack[ this.parseScopesStack.length - 2 ];
  675. }
  676. return null;
  677. },
  678. getCurrentParseScope: function () {
  679. if ( this.parseScopesStack.length > 0 ) {
  680. return this.parseScopesStack[ this.parseScopesStack.length - 1 ];
  681. }
  682. return null;
  683. },
  684. parseColourMetaDirective: function ( lineParser ) {
  685. // Parses a colour definition and returns a THREE.Material or null if error
  686. var code = null;
  687. // Triangle and line colours
  688. var colour = 0xFF00FF;
  689. var edgeColour = 0xFF00FF;
  690. // Transparency
  691. var alpha = 1;
  692. var isTransparent = false;
  693. // Self-illumination:
  694. var luminance = 0;
  695. var finishType = LDrawLoader.FINISH_TYPE_DEFAULT;
  696. var canHaveEnvMap = true;
  697. var edgeMaterial = null;
  698. var name = lineParser.getToken();
  699. if ( ! name ) {
  700. throw 'LDrawLoader: Material name was expected after "!COLOUR tag' + lineParser.getLineNumberString() + ".";
  701. }
  702. // Parse tag tokens and their parameters
  703. var token = null;
  704. while ( true ) {
  705. token = lineParser.getToken();
  706. if ( ! token ) {
  707. break;
  708. }
  709. switch ( token.toUpperCase() ) {
  710. case "CODE":
  711. code = lineParser.getToken();
  712. break;
  713. case "VALUE":
  714. colour = lineParser.getToken();
  715. if ( colour.startsWith( '0x' ) ) {
  716. colour = '#' + colour.substring( 2 );
  717. } else if ( ! colour.startsWith( '#' ) ) {
  718. throw 'LDrawLoader: Invalid colour while parsing material' + lineParser.getLineNumberString() + ".";
  719. }
  720. break;
  721. case "EDGE":
  722. edgeColour = lineParser.getToken();
  723. if ( edgeColour.startsWith( '0x' ) ) {
  724. edgeColour = '#' + edgeColour.substring( 2 );
  725. } else if ( ! edgeColour.startsWith( '#' ) ) {
  726. // Try to see if edge colour is a colour code
  727. edgeMaterial = this.getMaterial( edgeColour );
  728. if ( ! edgeMaterial ) {
  729. throw 'LDrawLoader: Invalid edge colour while parsing material' + lineParser.getLineNumberString() + ".";
  730. }
  731. // Get the edge material for this triangle material
  732. edgeMaterial = edgeMaterial.userData.edgeMaterial;
  733. }
  734. break;
  735. case 'ALPHA':
  736. alpha = parseInt( lineParser.getToken() );
  737. if ( isNaN( alpha ) ) {
  738. throw 'LDrawLoader: Invalid alpha value in material definition' + lineParser.getLineNumberString() + ".";
  739. }
  740. alpha = Math.max( 0, Math.min( 1, alpha / 255 ) );
  741. if ( alpha < 1 ) {
  742. isTransparent = true;
  743. }
  744. break;
  745. case 'LUMINANCE':
  746. luminance = parseInt( lineParser.getToken() );
  747. if ( isNaN( luminance ) ) {
  748. throw 'LDrawLoader: Invalid luminance value in material definition' + LineParser.getLineNumberString() + ".";
  749. }
  750. luminance = Math.max( 0, Math.min( 1, luminance / 255 ) );
  751. break;
  752. case 'CHROME':
  753. finishType = LDrawLoader.FINISH_TYPE_CHROME;
  754. break;
  755. case 'PEARLESCENT':
  756. finishType = LDrawLoader.FINISH_TYPE_PEARLESCENT;
  757. break;
  758. case 'RUBBER':
  759. finishType = LDrawLoader.FINISH_TYPE_RUBBER;
  760. break;
  761. case 'MATTE_METALLIC':
  762. finishType = LDrawLoader.FINISH_TYPE_MATTE_METALLIC;
  763. break;
  764. case 'METAL':
  765. finishType = LDrawLoader.FINISH_TYPE_METAL;
  766. break;
  767. case 'MATERIAL':
  768. // Not implemented
  769. lineParser.setToEnd();
  770. break;
  771. default:
  772. throw 'LDrawLoader: Unknown token "' + token + '" while parsing material' + lineParser.getLineNumberString() + ".";
  773. break;
  774. }
  775. }
  776. var material = null;
  777. switch ( finishType ) {
  778. case LDrawLoader.FINISH_TYPE_DEFAULT:
  779. material = new THREE.MeshStandardMaterial( { color: colour, roughness: 0.3, envMapIntensity: 0.3, metalness: 0 } );
  780. break;
  781. case LDrawLoader.FINISH_TYPE_PEARLESCENT:
  782. // Try to imitate pearlescency by setting the specular to the complementary of the color, and low shininess
  783. var specular = new THREE.Color( colour );
  784. var hsl = specular.getHSL( { h: 0, s: 0, l: 0 } );
  785. hsl.h = ( hsl.h + 0.5 ) % 1;
  786. hsl.l = Math.min( 1, hsl.l + ( 1 - hsl.l ) * 0.7 );
  787. specular.setHSL( hsl.h, hsl.s, hsl.l );
  788. material = new THREE.MeshPhongMaterial( { color: colour, specular: specular, shininess: 10, reflectivity: 0.3 } );
  789. break;
  790. case LDrawLoader.FINISH_TYPE_CHROME:
  791. // Mirror finish surface
  792. material = new THREE.MeshStandardMaterial( { color: colour, roughness: 0, metalness: 1 } );
  793. break;
  794. case LDrawLoader.FINISH_TYPE_RUBBER:
  795. // Rubber finish
  796. material = new THREE.MeshStandardMaterial( { color: colour, roughness: 0.9, metalness: 0 } );
  797. canHaveEnvMap = false;
  798. break;
  799. case LDrawLoader.FINISH_TYPE_MATTE_METALLIC:
  800. // Brushed metal finish
  801. material = new THREE.MeshStandardMaterial( { color: colour, roughness: 0.8, metalness: 0.4 } );
  802. break;
  803. case LDrawLoader.FINISH_TYPE_METAL:
  804. // Average metal finish
  805. material = new THREE.MeshStandardMaterial( { color: colour, roughness: 0.2, metalness: 0.85 } );
  806. break;
  807. default:
  808. // Should not happen
  809. break;
  810. }
  811. material.transparent = isTransparent;
  812. material.premultipliedAlpha = true;
  813. material.opacity = alpha;
  814. material.polygonOffset = true;
  815. material.polygonOffsetFactor = 1;
  816. material.userData.canHaveEnvMap = canHaveEnvMap;
  817. if ( luminance !== 0 ) {
  818. material.emissive.set( material.color ).multiplyScalar( luminance );
  819. }
  820. if ( ! edgeMaterial ) {
  821. // This is the material used for edges
  822. edgeMaterial = new THREE.LineBasicMaterial( {
  823. color: edgeColour,
  824. transparent: isTransparent,
  825. opacity: alpha
  826. } );
  827. edgeMaterial.userData.code = code;
  828. edgeMaterial.name = name + " - Edge";
  829. edgeMaterial.userData.canHaveEnvMap = false;
  830. // This is the material used for conditional edges
  831. edgeMaterial.userData.conditionalEdgeMaterial = new THREE.ShaderMaterial( {
  832. vertexShader: conditionalLineVertShader,
  833. fragmentShader: conditionalLineFragShader,
  834. uniforms: {
  835. diffuse: {
  836. value: new THREE.Color( edgeColour )
  837. },
  838. opacity: {
  839. value: alpha
  840. }
  841. }
  842. } );
  843. edgeMaterial.userData.conditionalEdgeMaterial.userData.canHaveEnvMap = false;
  844. }
  845. material.userData.code = code;
  846. material.name = name;
  847. material.userData.edgeMaterial = edgeMaterial;
  848. return material;
  849. },
  850. //
  851. parse: function ( text ) {
  852. //console.time( 'LDrawLoader' );
  853. // Retrieve data from the parent parse scope
  854. var parentParseScope = this.getParentParseScope();
  855. // Main colour codes passed to this subobject (or default codes 16 and 24 if it is the root object)
  856. var mainColourCode = parentParseScope.mainColourCode;
  857. var mainEdgeColourCode = parentParseScope.mainEdgeColourCode;
  858. var url = parentParseScope.url;
  859. var currentParseScope = this.getCurrentParseScope();
  860. // Parse result variables
  861. var triangles;
  862. var lineSegments;
  863. var conditionalSegments;
  864. var subobjects = [];
  865. var category = null;
  866. var keywords = null;
  867. if ( text.indexOf( '\r\n' ) !== - 1 ) {
  868. // This is faster than String.split with regex that splits on both
  869. text = text.replace( /\r\n/g, '\n' );
  870. }
  871. var lines = text.split( '\n' );
  872. var numLines = lines.length;
  873. var lineIndex = 0;
  874. var parsingEmbeddedFiles = false;
  875. var currentEmbeddedFileName = null;
  876. var currentEmbeddedText = null;
  877. var bfcCertified = false;
  878. var bfcCCW = true;
  879. var bfcInverted = false;
  880. var bfcCull = true;
  881. var type = '';
  882. var scope = this;
  883. function parseColourCode( lineParser, forEdge ) {
  884. // Parses next colour code and returns a THREE.Material
  885. var colourCode = lineParser.getToken();
  886. if ( ! forEdge && colourCode === '16' ) {
  887. colourCode = mainColourCode;
  888. }
  889. if ( forEdge && colourCode === '24' ) {
  890. colourCode = mainEdgeColourCode;
  891. }
  892. var material = scope.getMaterial( colourCode );
  893. if ( ! material ) {
  894. throw 'LDrawLoader: Unknown colour code "' + colourCode + '" is used' + lineParser.getLineNumberString() + ' but it was not defined previously.';
  895. }
  896. return material;
  897. }
  898. function parseVector( lp ) {
  899. var v = new THREE.Vector3( parseFloat( lp.getToken() ), parseFloat( lp.getToken() ), parseFloat( lp.getToken() ) );
  900. if ( ! scope.separateObjects ) {
  901. v.applyMatrix4( currentParseScope.currentMatrix );
  902. }
  903. return v;
  904. }
  905. // Parse all line commands
  906. for ( lineIndex = 0; lineIndex < numLines; lineIndex ++ ) {
  907. var line = lines[ lineIndex ];
  908. if ( line.length === 0 ) continue;
  909. if ( parsingEmbeddedFiles ) {
  910. if ( line.startsWith( '0 FILE ' ) ) {
  911. // Save previous embedded file in the cache
  912. this.subobjectCache[ currentEmbeddedFileName.toLowerCase() ] = currentEmbeddedText;
  913. // New embedded text file
  914. currentEmbeddedFileName = line.substring( 7 );
  915. currentEmbeddedText = '';
  916. } else {
  917. currentEmbeddedText += line + '\n';
  918. }
  919. continue;
  920. }
  921. var lp = new LineParser( line, lineIndex + 1 );
  922. lp.seekNonSpace();
  923. if ( lp.isAtTheEnd() ) {
  924. // Empty line
  925. continue;
  926. }
  927. // Parse the line type
  928. var lineType = lp.getToken();
  929. switch ( lineType ) {
  930. // Line type 0: Comment or META
  931. case '0':
  932. // Parse meta directive
  933. var meta = lp.getToken();
  934. if ( meta ) {
  935. switch ( meta ) {
  936. case '!LDRAW_ORG':
  937. type = lp.getToken();
  938. if ( ! parsingEmbeddedFiles ) {
  939. currentParseScope.triangles = [];
  940. currentParseScope.lineSegments = [];
  941. currentParseScope.conditionalSegments = [];
  942. currentParseScope.type = type;
  943. var isRoot = ! parentParseScope.isFromParse;
  944. if ( isRoot || scope.separateObjects && ! isPrimitiveType( type ) ) {
  945. currentParseScope.groupObject = new THREE.Group();
  946. }
  947. // If the scale of the object is negated then the triangle winding order
  948. // needs to be flipped.
  949. var matrix = currentParseScope.matrix;
  950. if (
  951. matrix.determinant() < 0 && (
  952. scope.separateObjects && isPrimitiveType( type ) ||
  953. ! scope.separateObjects
  954. ) ) {
  955. currentParseScope.inverted = ! currentParseScope.inverted;
  956. }
  957. triangles = currentParseScope.triangles;
  958. lineSegments = currentParseScope.lineSegments;
  959. conditionalSegments = currentParseScope.conditionalSegments;
  960. }
  961. break;
  962. case '!COLOUR':
  963. var material = this.parseColourMetaDirective( lp );
  964. if ( material ) {
  965. this.addMaterial( material );
  966. } else {
  967. console.warn( 'LDrawLoader: Error parsing material' + lp.getLineNumberString() );
  968. }
  969. break;
  970. case '!CATEGORY':
  971. category = lp.getToken();
  972. break;
  973. case '!KEYWORDS':
  974. var newKeywords = lp.getRemainingString().split( ',' );
  975. if ( newKeywords.length > 0 ) {
  976. if ( ! keywords ) {
  977. keywords = [];
  978. }
  979. newKeywords.forEach( function ( keyword ) {
  980. keywords.push( keyword.trim() );
  981. } );
  982. }
  983. break;
  984. case 'FILE':
  985. if ( lineIndex > 0 ) {
  986. // Start embedded text files parsing
  987. parsingEmbeddedFiles = true;
  988. currentEmbeddedFileName = lp.getRemainingString();
  989. currentEmbeddedText = '';
  990. bfcCertified = false;
  991. bfcCCW = true;
  992. }
  993. break;
  994. case 'BFC':
  995. // Changes to the backface culling state
  996. while ( ! lp.isAtTheEnd() ) {
  997. var token = lp.getToken();
  998. switch ( token ) {
  999. case 'CERTIFY':
  1000. case 'NOCERTIFY':
  1001. bfcCertified = token === 'CERTIFY';
  1002. bfcCCW = true;
  1003. break;
  1004. case 'CW':
  1005. case 'CCW':
  1006. bfcCCW = token === 'CCW';
  1007. break;
  1008. case 'INVERTNEXT':
  1009. bfcInverted = true;
  1010. break;
  1011. case 'CLIP':
  1012. case 'NOCLIP':
  1013. bfcCull = token === 'CLIP';
  1014. break;
  1015. default:
  1016. console.warn( 'THREE.LDrawLoader: BFC directive "' + token + '" is unknown.' );
  1017. break;
  1018. }
  1019. }
  1020. break;
  1021. default:
  1022. // Other meta directives are not implemented
  1023. break;
  1024. }
  1025. }
  1026. break;
  1027. // Line type 1: Sub-object file
  1028. case '1':
  1029. var material = parseColourCode( lp );
  1030. var posX = parseFloat( lp.getToken() );
  1031. var posY = parseFloat( lp.getToken() );
  1032. var posZ = parseFloat( lp.getToken() );
  1033. var m0 = parseFloat( lp.getToken() );
  1034. var m1 = parseFloat( lp.getToken() );
  1035. var m2 = parseFloat( lp.getToken() );
  1036. var m3 = parseFloat( lp.getToken() );
  1037. var m4 = parseFloat( lp.getToken() );
  1038. var m5 = parseFloat( lp.getToken() );
  1039. var m6 = parseFloat( lp.getToken() );
  1040. var m7 = parseFloat( lp.getToken() );
  1041. var m8 = parseFloat( lp.getToken() );
  1042. var matrix = new THREE.Matrix4().set(
  1043. m0, m1, m2, posX,
  1044. m3, m4, m5, posY,
  1045. m6, m7, m8, posZ,
  1046. 0, 0, 0, 1
  1047. );
  1048. var fileName = lp.getRemainingString().trim().replace( "\\", "/" );
  1049. if ( scope.fileMap[ fileName ] ) {
  1050. // Found the subobject path in the preloaded file path map
  1051. fileName = scope.fileMap[ fileName ];
  1052. } else {
  1053. // Standardized subfolders
  1054. if ( fileName.startsWith( 's/' ) ) {
  1055. fileName = 'parts/' + fileName;
  1056. } else if ( fileName.startsWith( '48/' ) ) {
  1057. fileName = 'p/' + fileName;
  1058. }
  1059. }
  1060. subobjects.push( {
  1061. material: material,
  1062. matrix: matrix,
  1063. fileName: fileName,
  1064. originalFileName: fileName,
  1065. locationState: LDrawLoader.FILE_LOCATION_AS_IS,
  1066. url: null,
  1067. triedLowerCase: false,
  1068. inverted: bfcInverted !== currentParseScope.inverted
  1069. } );
  1070. bfcInverted = false;
  1071. break;
  1072. // Line type 2: Line segment
  1073. case '2':
  1074. var material = parseColourCode( lp, true );
  1075. var segment = {
  1076. material: material.userData.edgeMaterial,
  1077. colourCode: material.userData.code,
  1078. v0: parseVector( lp ),
  1079. v1: parseVector( lp )
  1080. };
  1081. lineSegments.push( segment );
  1082. break;
  1083. // Line type 5: Conditional Line segment
  1084. case '5':
  1085. var material = parseColourCode( lp, true );
  1086. var segment = {
  1087. material: material.userData.edgeMaterial.userData.conditionalEdgeMaterial,
  1088. colourCode: material.userData.code,
  1089. v0: parseVector( lp ),
  1090. v1: parseVector( lp ),
  1091. c0: parseVector( lp ),
  1092. c1: parseVector( lp )
  1093. };
  1094. conditionalSegments.push( segment );
  1095. break;
  1096. // Line type 3: Triangle
  1097. case '3':
  1098. var material = parseColourCode( lp );
  1099. var inverted = currentParseScope.inverted;
  1100. var ccw = bfcCCW !== inverted;
  1101. var doubleSided = ! bfcCertified || ! bfcCull;
  1102. var v0, v1, v2, faceNormal;
  1103. if ( ccw === true ) {
  1104. v0 = parseVector( lp );
  1105. v1 = parseVector( lp );
  1106. v2 = parseVector( lp );
  1107. } else {
  1108. v2 = parseVector( lp );
  1109. v1 = parseVector( lp );
  1110. v0 = parseVector( lp );
  1111. }
  1112. tempVec0.subVectors( v1, v0 );
  1113. tempVec1.subVectors( v2, v1 );
  1114. faceNormal = new THREE.Vector3()
  1115. .crossVectors( tempVec0, tempVec1 )
  1116. .normalize();
  1117. triangles.push( {
  1118. material: material,
  1119. colourCode: material.userData.code,
  1120. v0: v0,
  1121. v1: v1,
  1122. v2: v2,
  1123. faceNormal: faceNormal,
  1124. n0: null,
  1125. n1: null,
  1126. n2: null
  1127. } );
  1128. if ( doubleSided === true ) {
  1129. triangles.push( {
  1130. material: material,
  1131. colourCode: material.userData.code,
  1132. v0: v0,
  1133. v1: v2,
  1134. v2: v1,
  1135. faceNormal: faceNormal,
  1136. n0: null,
  1137. n1: null,
  1138. n2: null
  1139. } );
  1140. }
  1141. break;
  1142. // Line type 4: Quadrilateral
  1143. case '4':
  1144. var material = parseColourCode( lp );
  1145. var inverted = currentParseScope.inverted;
  1146. var ccw = bfcCCW !== inverted;
  1147. var doubleSided = ! bfcCertified || ! bfcCull;
  1148. var v0, v1, v2, v3, faceNormal;
  1149. if ( ccw === true ) {
  1150. v0 = parseVector( lp );
  1151. v1 = parseVector( lp );
  1152. v2 = parseVector( lp );
  1153. v3 = parseVector( lp );
  1154. } else {
  1155. v3 = parseVector( lp );
  1156. v2 = parseVector( lp );
  1157. v1 = parseVector( lp );
  1158. v0 = parseVector( lp );
  1159. }
  1160. tempVec0.subVectors( v1, v0 );
  1161. tempVec1.subVectors( v2, v1 );
  1162. faceNormal = new THREE.Vector3()
  1163. .crossVectors( tempVec0, tempVec1 )
  1164. .normalize();
  1165. triangles.push( {
  1166. material: material,
  1167. colourCode: material.userData.code,
  1168. v0: v0,
  1169. v1: v1,
  1170. v2: v2,
  1171. faceNormal: faceNormal,
  1172. n0: null,
  1173. n1: null,
  1174. n2: null
  1175. } );
  1176. triangles.push( {
  1177. material: material,
  1178. colourCode: material.userData.code,
  1179. v0: v0,
  1180. v1: v2,
  1181. v2: v3,
  1182. faceNormal: faceNormal,
  1183. n0: null,
  1184. n1: null,
  1185. n2: null
  1186. } );
  1187. if ( doubleSided === true ) {
  1188. triangles.push( {
  1189. material: material,
  1190. colourCode: material.userData.code,
  1191. v0: v0,
  1192. v1: v2,
  1193. v2: v1,
  1194. faceNormal: faceNormal,
  1195. n0: null,
  1196. n1: null,
  1197. n2: null
  1198. } );
  1199. triangles.push( {
  1200. material: material,
  1201. colourCode: material.userData.code,
  1202. v0: v0,
  1203. v1: v3,
  1204. v2: v2,
  1205. faceNormal: faceNormal,
  1206. n0: null,
  1207. n1: null,
  1208. n2: null
  1209. } );
  1210. }
  1211. break;
  1212. default:
  1213. throw 'LDrawLoader: Unknown line type "' + lineType + '"' + lp.getLineNumberString() + '.';
  1214. break;
  1215. }
  1216. }
  1217. if ( parsingEmbeddedFiles ) {
  1218. this.subobjectCache[ currentEmbeddedFileName.toLowerCase() ] = currentEmbeddedText;
  1219. }
  1220. currentParseScope.category = category;
  1221. currentParseScope.keywords = keywords;
  1222. currentParseScope.subobjects = subobjects;
  1223. currentParseScope.numSubobjects = subobjects.length;
  1224. currentParseScope.subobjectIndex = 0;
  1225. }
  1226. };
  1227. return LDrawLoader;
  1228. } )();