123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431 |
- /**
- * @author mrdoob / http://mrdoob.com/
- * @author yomboprime / https://github.com/yomboprime/
- *
- *
- */
- THREE.LDrawLoader = ( function () {
- function LineParser( line, lineNumber ) {
- this.line = line;
- this.lineLength = line.length;
- this.currentCharIndex = 0;
- this.currentChar = ' ';
- this.lineNumber = lineNumber;
- }
- LineParser.prototype = {
- constructor: LineParser,
- seekNonSpace: function () {
- while ( this.currentCharIndex < this.lineLength ) {
- this.currentChar = this.line.charAt( this.currentCharIndex );
- if ( this.currentChar !== ' ' && this.currentChar !== '\t' ) {
- return;
- }
- this.currentCharIndex ++;
- }
- },
- getToken: function () {
- var pos0 = this.currentCharIndex ++;
- // Seek space
- while ( this.currentCharIndex < this.lineLength ) {
- this.currentChar = this.line.charAt( this.currentCharIndex );
- if ( this.currentChar === ' ' || this.currentChar === '\t' ) {
- break;
- }
- this.currentCharIndex ++;
- }
- var pos1 = this.currentCharIndex;
- this.seekNonSpace();
- return this.line.substring( pos0, pos1 );
- },
- getRemainingString: function () {
- return this.line.substring( this.currentCharIndex, this.lineLength );
- },
- isAtTheEnd: function () {
- return this.currentCharIndex >= this.lineLength;
- },
- setToEnd: function () {
- this.currentCharIndex = this.lineLength;
- },
- getLineNumberString: function () {
- return this.lineNumber >= 0 ? " at line " + this.lineNumber : "";
- }
- };
- function sortByMaterial( a, b ) {
- if ( a.colourCode === b.colourCode ) {
- return 0;
- }
- if ( a.colourCode < b.colourCode ) {
- return - 1;
- }
- return 1;
- }
- function createObject( elements, elementSize ) {
- // Creates a THREE.LineSegments (elementSize = 2) or a THREE.Mesh (elementSize = 3 )
- // With per face / segment material, implemented with mesh groups and materials array
- // Sort the triangles or line segments by colour code to make later the mesh groups
- elements.sort( sortByMaterial );
- var vertices = [];
- var materials = [];
- var bufferGeometry = new THREE.BufferGeometry();
- bufferGeometry.clearGroups();
- var prevMaterial = null;
- var index0 = 0;
- var numGroupVerts = 0;
- for ( var iElem = 0, nElem = elements.length; iElem < nElem; iElem ++ ) {
- var elem = elements[ iElem ];
- var v0 = elem.v0;
- var v1 = elem.v1;
- // Note that LDraw coordinate system is rotated 180 deg. in the X axis w.r.t. Three.js's one
- vertices.push( v0.x, v0.y, v0.z, v1.x, v1.y, v1.z );
- if ( elementSize === 3 ) {
- vertices.push( elem.v2.x, elem.v2.y, elem.v2.z );
- }
- if ( prevMaterial !== elem.material ) {
- if ( prevMaterial !== null ) {
- bufferGeometry.addGroup( index0, numGroupVerts, materials.length - 1 );
- }
- materials.push( elem.material );
- prevMaterial = elem.material;
- index0 = iElem * elementSize;
- numGroupVerts = elementSize;
- } else {
- numGroupVerts += elementSize;
- }
- }
- if ( numGroupVerts > 0 ) {
- bufferGeometry.addGroup( index0, Infinity, materials.length - 1 );
- }
- bufferGeometry.addAttribute( 'position', new THREE.Float32BufferAttribute( vertices, 3 ) );
- var object3d = null;
- if ( elementSize === 2 ) {
- object3d = new THREE.LineSegments( bufferGeometry, materials );
- } else if ( elementSize === 3 ) {
- bufferGeometry.computeVertexNormals();
- object3d = new THREE.Mesh( bufferGeometry, materials );
- }
- return object3d;
- }
- //
- function LDrawLoader( manager ) {
- this.manager = ( manager !== undefined ) ? manager : THREE.DefaultLoadingManager;
- // This is a stack of 'parse scopes' with one level per subobject loaded file.
- // Each level contains a material lib and also other runtime variables passed between parent and child subobjects
- // When searching for a material code, the stack is read from top of the stack to bottom
- // Each material library is an object map keyed by colour codes.
- this.parseScopesStack = null;
- this.path = '';
- // Array of THREE.Material
- this.materials = [];
- // Not using THREE.Cache here because it returns the previous HTML error response instead of calling onError()
- // This also allows to handle the embedded text files ("0 FILE" lines)
- this.subobjectCache = {};
- // 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.
- this.fileMap = null;
- // Add default main triangle and line edge materials (used in piecess that can be coloured with a main color)
- this.setMaterials( [
- this.parseColourMetaDirective( new LineParser( "Main_Colour CODE 16 VALUE #FF8080 EDGE #333333" ) ),
- this.parseColourMetaDirective( new LineParser( "Edge_Colour CODE 24 VALUE #A0A0A0 EDGE #333333" ) )
- ] );
- // If this flag is set to true, each subobject will be a THREE.Object.
- // If not (the default), only one object which contains all the merged primitives will be created.
- this.separateObjects = false;
- // Current merged object and primitives
- this.currentGroupObject = null;
- this.currentTriangles = null;
- this.currentLineSegments = null;
- }
- // Special surface finish tag types.
- // Note: "MATERIAL" tag (e.g. GLITTER, SPECKLE) is not implemented
- LDrawLoader.FINISH_TYPE_DEFAULT = 0;
- LDrawLoader.FINISH_TYPE_CHROME = 1;
- LDrawLoader.FINISH_TYPE_PEARLESCENT = 2;
- LDrawLoader.FINISH_TYPE_RUBBER = 3;
- LDrawLoader.FINISH_TYPE_MATTE_METALLIC = 4;
- LDrawLoader.FINISH_TYPE_METAL = 5;
- // State machine to search a subobject path.
- // The LDraw standard establishes these various possible subfolders.
- LDrawLoader.FILE_LOCATION_AS_IS = 0;
- LDrawLoader.FILE_LOCATION_TRY_PARTS = 1;
- LDrawLoader.FILE_LOCATION_TRY_P = 2;
- LDrawLoader.FILE_LOCATION_TRY_MODELS = 3;
- LDrawLoader.FILE_LOCATION_TRY_RELATIVE = 4;
- LDrawLoader.FILE_LOCATION_TRY_ABSOLUTE = 5;
- LDrawLoader.FILE_LOCATION_NOT_FOUND = 6;
- LDrawLoader.prototype = {
- constructor: LDrawLoader,
- load: function ( url, onLoad, onProgress, onError ) {
- if ( ! this.fileMap ) {
- this.fileMap = {};
- }
- var scope = this;
- var fileLoader = new THREE.FileLoader( this.manager );
- fileLoader.setPath( this.path );
- fileLoader.load( url, function ( text ) {
- processObject( text, onLoad );
- }, onProgress, onError );
- function subobjectLoad( url, onLoad, onProgress, onError, subobject ) {
- var fileLoader = new THREE.FileLoader( scope.manager );
- fileLoader.setPath( scope.path );
- fileLoader.load( url, function ( text ) {
- processObject( text, onLoad, subobject );
- }, onProgress, onError );
- }
- function processObject( text, onProcessed, subobject ) {
- var parseScope = scope.newParseScopeLevel();
- parseScope.url = url;
- var parentParseScope = scope.getParentParseScope();
- // Add to cache
- var currentFileName = parentParseScope.currentFileName;
- if ( scope.subobjectCache[ currentFileName ] === undefined ) {
- scope.subobjectCache[ currentFileName ] = text;
- }
- parseScope.inverted = subobject !== undefined ? subobject.inverted : false;
- // Parse the object (returns a THREE.Group)
- var objGroup = scope.parse( text );
- // Load subobjects
- parseScope.subobjects = objGroup.userData.subobjects;
- parseScope.numSubobjects = parseScope.subobjects.length;
- parseScope.subobjectIndex = 0;
- if ( parseScope.numSubobjects > 0 ) {
- // Load the first subobject
- var subobjectGroup = loadSubobject( parseScope.subobjects[ 0 ], true );
- // Optimization for loading pack: If subobjects are obtained from cache, keep loading them iteratively rather than recursively
- if ( subobjectGroup ) {
- while ( subobjectGroup && parseScope.subobjectIndex < parseScope.numSubobjects - 1 ) {
- subobjectGroup = loadSubobject( parseScope.subobjects[ ++ parseScope.subobjectIndex ], true );
- }
- if ( subobjectGroup ) {
- finalizeObject();
- }
- }
- } else {
- // No subobjects, finish object
- finalizeObject();
- }
- return objGroup;
- function finalizeObject() {
- if ( ! scope.separateObjects && ! parentParseScope.isFromParse ) {
- // We are finalizing the root object and merging primitives is activated, so create the entire Mesh and LineSegments objects now
- if ( scope.currentLineSegments.length > 0 ) {
- objGroup.add( createObject( scope.currentLineSegments, 2 ) );
- }
- if ( scope.currentTriangles.length > 0 ) {
- objGroup.add( createObject( scope.currentTriangles, 3 ) );
- }
- }
- scope.removeScopeLevel();
- if ( onProcessed ) {
- onProcessed( objGroup );
- }
- }
- function loadSubobject( subobject, sync ) {
- parseScope.mainColourCode = subobject.material.userData.code;
- parseScope.mainEdgeColourCode = subobject.material.userData.edgeMaterial.userData.code;
- parseScope.currentFileName = subobject.originalFileName;
- if ( ! scope.separateObjects ) {
- // Set current matrix
- parseScope.currentMatrix.multiplyMatrices( parentParseScope.currentMatrix, subobject.matrix );
- }
- // If subobject was cached previously, use the cached one
- var cached = scope.subobjectCache[ subobject.originalFileName ];
- if ( cached ) {
- var subobjectGroup = processObject( cached, sync ? undefined : onSubobjectLoaded, subobject );
- if ( sync ) {
- addSubobject( subobject, subobjectGroup );
- return subobjectGroup;
- }
- return;
- }
- // Adjust file name to locate the subobject file path in standard locations (always under directory scope.path)
- // Update also subobject.locationState for the next try if this load fails.
- var subobjectURL = subobject.fileName;
- var newLocationState = LDrawLoader.FILE_LOCATION_NOT_FOUND;
- switch ( subobject.locationState ) {
- case LDrawLoader.FILE_LOCATION_AS_IS:
- newLocationState = subobject.locationState + 1;
- break;
- case LDrawLoader.FILE_LOCATION_TRY_PARTS:
- subobjectURL = 'parts/' + subobjectURL;
- newLocationState = subobject.locationState + 1;
- break;
- case LDrawLoader.FILE_LOCATION_TRY_P:
- subobjectURL = 'p/' + subobjectURL;
- newLocationState = subobject.locationState + 1;
- break;
- case LDrawLoader.FILE_LOCATION_TRY_MODELS:
- subobjectURL = 'models/' + subobjectURL;
- newLocationState = subobject.locationState + 1;
- break;
- case LDrawLoader.FILE_LOCATION_TRY_RELATIVE:
- subobjectURL = url.substring( 0, url.lastIndexOf( "/" ) + 1 ) + subobjectURL;
- newLocationState = subobject.locationState + 1;
- break;
- case LDrawLoader.FILE_LOCATION_TRY_ABSOLUTE:
- if ( subobject.triedLowerCase ) {
- // Try absolute path
- newLocationState = LDrawLoader.FILE_LOCATION_NOT_FOUND;
- } else {
- // Next attempt is lower case
- subobject.fileName = subobject.fileName.toLowerCase();
- subobjectURL = subobject.fileName;
- subobject.triedLowerCase = true;
- newLocationState = LDrawLoader.FILE_LOCATION_AS_IS;
- }
- break;
- case LDrawLoader.FILE_LOCATION_NOT_FOUND:
- // All location possibilities have been tried, give up loading this object
- console.warn( 'LDrawLoader: Subobject "' + subobject.originalFileName + '" could not be found.' );
- // Try to read the next subobject
- parseScope.subobjectIndex ++;
- if ( parseScope.subobjectIndex >= parseScope.numSubobjects ) {
- // All subojects have been loaded. Finish parent object
- scope.removeScopeLevel();
- onProcessed( objGroup );
- } else {
- // Load next subobject
- loadSubobject( parseScope.subobjects[ parseScope.subobjectIndex ] );
- }
- return;
- }
- subobject.locationState = newLocationState;
- subobject.url = subobjectURL;
- // Load the subobject
- subobjectLoad( subobjectURL, onSubobjectLoaded, undefined, onSubobjectError, subobject );
- }
- function onSubobjectLoaded( subobjectGroup ) {
- var subobject = parseScope.subobjects[ parseScope.subobjectIndex ];
- if ( subobjectGroup === null ) {
- // Try to reload
- loadSubobject( subobject );
- return;
- }
- // Add the subobject just loaded
- addSubobject( subobject, subobjectGroup );
- // Proceed to load the next subobject, or finish the parent object
- parseScope.subobjectIndex ++;
- if ( parseScope.subobjectIndex < parseScope.numSubobjects ) {
- loadSubobject( parseScope.subobjects[ parseScope.subobjectIndex ] );
- } else {
- finalizeObject();
- }
- }
- function addSubobject( subobject, subobjectGroup ) {
- if ( scope.separateObjects ) {
- subobjectGroup.name = subobject.fileName;
- objGroup.add( subobjectGroup );
- subobjectGroup.matrix.copy( subobject.matrix );
- subobjectGroup.matrixAutoUpdate = false;
- }
- scope.fileMap[ subobject.originalFileName ] = subobject.url;
- }
- function onSubobjectError( err ) {
- // Retry download from a different default possible location
- loadSubobject( parseScope.subobjects[ parseScope.subobjectIndex ] );
- }
- }
- },
- setPath: function ( value ) {
- this.path = value;
- return this;
- },
- setMaterials: function ( materials ) {
- // Clears parse scopes stack, adds new scope with material library
- this.parseScopesStack = [];
- this.newParseScopeLevel( materials );
- this.getCurrentParseScope().isFromParse = false;
- this.materials = materials;
- this.currentGroupObject = null;
- return this;
- },
- setFileMap: function ( fileMap ) {
- this.fileMap = fileMap;
- return this;
- },
- newParseScopeLevel: function ( materials ) {
- // Adds a new scope level, assign materials to it and returns it
- var matLib = {};
- if ( materials ) {
- for ( var i = 0, n = materials.length; i < n; i ++ ) {
- var material = materials[ i ];
- matLib[ material.userData.code ] = material;
- }
- }
- var topParseScope = this.getCurrentParseScope();
- var parentParseScope = this.getParentParseScope();
- var newParseScope = {
- lib: matLib,
- url: null,
- // Subobjects
- subobjects: null,
- numSubobjects: 0,
- subobjectIndex: 0,
- inverted: false,
- // Current subobject
- currentFileName: null,
- mainColourCode: topParseScope ? topParseScope.mainColourCode : '16',
- mainEdgeColourCode: topParseScope ? topParseScope.mainEdgeColourCode : '24',
- currentMatrix: new THREE.Matrix4(),
- // If false, it is a root material scope previous to parse
- isFromParse: true
- };
- this.parseScopesStack.push( newParseScope );
- return newParseScope;
- },
- removeScopeLevel: function () {
- this.parseScopesStack.pop();
- return this;
- },
- addMaterial: function ( material ) {
- // Adds a material to the material library which is on top of the parse scopes stack. And also to the materials array
- var matLib = this.getCurrentParseScope().lib;
- if ( ! matLib[ material.userData.code ] ) {
- this.materials.push( material );
- }
- matLib[ material.userData.code ] = material;
- return this;
- },
- getMaterial: function ( colourCode ) {
- // Given a colour code search its material in the parse scopes stack
- if ( colourCode.startsWith( "0x2" ) ) {
- // Special 'direct' material value (RGB colour)
- var colour = colourCode.substring( 3 );
- return this.parseColourMetaDirective( new LineParser( "Direct_Color_" + colour + " CODE -1 VALUE #" + colour + " EDGE #" + colour + "" ) );
- }
- for ( var i = this.parseScopesStack.length - 1; i >= 0; i -- ) {
- var material = this.parseScopesStack[ i ].lib[ colourCode ];
- if ( material ) {
- return material;
- }
- }
- // Material was not found
- return null;
- },
- getParentParseScope: function () {
- if ( this.parseScopesStack.length > 1 ) {
- return this.parseScopesStack[ this.parseScopesStack.length - 2 ];
- }
- return null;
- },
- getCurrentParseScope: function () {
- if ( this.parseScopesStack.length > 0 ) {
- return this.parseScopesStack[ this.parseScopesStack.length - 1 ];
- }
- return null;
- },
- parseColourMetaDirective: function ( lineParser ) {
- // Parses a colour definition and returns a THREE.Material or null if error
- var code = null;
- // Triangle and line colours
- var colour = 0xFF00FF;
- var edgeColour = 0xFF00FF;
- // Transparency
- var alpha = 1;
- var isTransparent = false;
- // Self-illumination:
- var luminance = 0;
- var finishType = LDrawLoader.FINISH_TYPE_DEFAULT;
- var canHaveEnvMap = true;
- var edgeMaterial = null;
- var name = lineParser.getToken();
- if ( ! name ) {
- throw 'LDrawLoader: Material name was expected after "!COLOUR tag' + lineParser.getLineNumberString() + ".";
- }
- // Parse tag tokens and their parameters
- var token = null;
- while ( true ) {
- token = lineParser.getToken();
- if ( ! token ) {
- break;
- }
- switch ( token.toUpperCase() ) {
- case "CODE":
- code = lineParser.getToken();
- break;
- case "VALUE":
- colour = lineParser.getToken();
- if ( colour.startsWith( '0x' ) ) {
- colour = '#' + colour.substring( 2 );
- } else if ( ! colour.startsWith( '#' ) ) {
- throw 'LDrawLoader: Invalid colour while parsing material' + lineParser.getLineNumberString() + ".";
- }
- break;
- case "EDGE":
- edgeColour = lineParser.getToken();
- if ( edgeColour.startsWith( '0x' ) ) {
- edgeColour = '#' + edgeColour.substring( 2 );
- } else if ( ! edgeColour.startsWith( '#' ) ) {
- // Try to see if edge colour is a colour code
- edgeMaterial = this.getMaterial( edgeColour );
- if ( ! edgeMaterial ) {
- throw 'LDrawLoader: Invalid edge colour while parsing material' + lineParser.getLineNumberString() + ".";
- }
- // Get the edge material for this triangle material
- edgeMaterial = edgeMaterial.userData.edgeMaterial;
- }
- break;
- case 'ALPHA':
- alpha = parseInt( lineParser.getToken() );
- if ( isNaN( alpha ) ) {
- throw 'LDrawLoader: Invalid alpha value in material definition' + lineParser.getLineNumberString() + ".";
- }
- alpha = Math.max( 0, Math.min( 1, alpha / 255 ) );
- if ( alpha < 1 ) {
- isTransparent = true;
- }
- break;
- case 'LUMINANCE':
- luminance = parseInt( lineParser.getToken() );
- if ( isNaN( luminance ) ) {
- throw 'LDrawLoader: Invalid luminance value in material definition' + LineParser.getLineNumberString() + ".";
- }
- luminance = Math.max( 0, Math.min( 1, luminance / 255 ) );
- break;
- case 'CHROME':
- finishType = LDrawLoader.FINISH_TYPE_CHROME;
- break;
- case 'PEARLESCENT':
- finishType = LDrawLoader.FINISH_TYPE_PEARLESCENT;
- break;
- case 'RUBBER':
- finishType = LDrawLoader.FINISH_TYPE_RUBBER;
- break;
- case 'MATTE_METALLIC':
- finishType = LDrawLoader.FINISH_TYPE_MATTE_METALLIC;
- break;
- case 'METAL':
- finishType = LDrawLoader.FINISH_TYPE_METAL;
- break;
- case 'MATERIAL':
- // Not implemented
- lineParser.setToEnd();
- break;
- default:
- throw 'LDrawLoader: Unknown token "' + token + '" while parsing material' + lineParser.getLineNumberString() + ".";
- break;
- }
- }
- var material = null;
- switch ( finishType ) {
- case LDrawLoader.FINISH_TYPE_DEFAULT:
- case LDrawLoader.FINISH_TYPE_PEARLESCENT:
- var specular = new THREE.Color( colour );
- var shininess = 35;
- var hsl = specular.getHSL( { h: 0, s: 0, l: 0 } );
- if ( finishType === LDrawLoader.FINISH_TYPE_DEFAULT ) {
- // Default plastic material with shiny specular
- hsl.l = Math.min( 1, hsl.l + ( 1 - hsl.l ) * 0.12 );
- } else {
- // Try to imitate pearlescency by setting the specular to the complementary of the color, and low shininess
- hsl.h = ( hsl.h + 0.5 ) % 1;
- hsl.l = Math.min( 1, hsl.l + ( 1 - hsl.l ) * 0.7 );
- shininess = 10;
- }
- specular.setHSL( hsl.h, hsl.s, hsl.l );
- material = new THREE.MeshPhongMaterial( { color: colour, specular: specular, shininess: shininess, reflectivity: 0.3 } );
- break;
- case LDrawLoader.FINISH_TYPE_CHROME:
- // Mirror finish surface
- material = new THREE.MeshStandardMaterial( { color: colour, roughness: 0, metalness: 1 } );
- break;
- case LDrawLoader.FINISH_TYPE_RUBBER:
- // Rubber is best simulated with Lambert
- material = new THREE.MeshLambertMaterial( { color: colour } );
- canHaveEnvMap = false;
- break;
- case LDrawLoader.FINISH_TYPE_MATTE_METALLIC:
- // Brushed metal finish
- material = new THREE.MeshStandardMaterial( { color: colour, roughness: 0.8, metalness: 0.4 } );
- break;
- case LDrawLoader.FINISH_TYPE_METAL:
- // Average metal finish
- material = new THREE.MeshStandardMaterial( { color: colour, roughness: 0.2, metalness: 0.85 } );
- break;
- default:
- // Should not happen
- break;
- }
- material.transparent = isTransparent;
- material.opacity = alpha;
- material.userData.canHaveEnvMap = canHaveEnvMap;
- if ( luminance !== 0 ) {
- material.emissive.set( material.color ).multiplyScalar( luminance );
- }
- if ( ! edgeMaterial ) {
- // This is the material used for edges
- edgeMaterial = new THREE.LineBasicMaterial( { color: edgeColour } );
- edgeMaterial.userData.code = code;
- edgeMaterial.name = name + " - Edge";
- edgeMaterial.userData.canHaveEnvMap = false;
- }
- material.userData.code = code;
- material.name = name;
- material.userData.edgeMaterial = edgeMaterial;
- return material;
- },
- //
- parse: function ( text ) {
- //console.time( 'LDrawLoader' );
- // Retrieve data from the parent parse scope
- var parentParseScope = this.getParentParseScope();
- // Main colour codes passed to this subobject (or default codes 16 and 24 if it is the root object)
- var mainColourCode = parentParseScope.mainColourCode;
- var mainEdgeColourCode = parentParseScope.mainEdgeColourCode;
- var url = parentParseScope.url;
- var currentParseScope = this.getCurrentParseScope();
- // Parse result variables
- var triangles;
- var lineSegments;
- if ( this.separateObjects ) {
- triangles = [];
- lineSegments = [];
- } else {
- if ( this.currentGroupObject === null ) {
- this.currentGroupObject = new THREE.Group();
- this.currentTriangles = [];
- this.currentLineSegments = [];
- }
- triangles = this.currentTriangles;
- lineSegments = this.currentLineSegments;
- }
- var subobjects = [];
- var category = null;
- var keywords = null;
- if ( text.indexOf( '\r\n' ) !== - 1 ) {
- // This is faster than String.split with regex that splits on both
- text = text.replace( /\r\n/g, '\n' );
- }
- var lines = text.split( '\n' );
- var numLines = lines.length;
- var lineIndex = 0;
- var parsingEmbeddedFiles = false;
- var currentEmbeddedFileName = null;
- var currentEmbeddedText = null;
- var scope = this;
- function parseColourCode( lineParser, forEdge ) {
- // Parses next colour code and returns a THREE.Material
- var colourCode = lineParser.getToken();
- if ( ! forEdge && colourCode === '16' ) {
- colourCode = mainColourCode;
- }
- if ( forEdge && colourCode === '24' ) {
- colourCode = mainEdgeColourCode;
- }
- var material = scope.getMaterial( colourCode );
- if ( ! material ) {
- throw 'LDrawLoader: Unknown colour code "' + colourCode + '" is used' + lineParser.getLineNumberString() + ' but it was not defined previously.';
- }
- return material;
- }
- function parseVector( lp ) {
- var v = new THREE.Vector3( parseFloat( lp.getToken() ), parseFloat( lp.getToken() ), parseFloat( lp.getToken() ) );
- if ( ! scope.separateObjects ) {
- v.applyMatrix4( parentParseScope.currentMatrix );
- }
- return v;
- }
- var bfcEnabled = false;
- var bfcCCW = true;
- var bfcInverted = false;
- // Parse all line commands
- for ( lineIndex = 0; lineIndex < numLines; lineIndex ++ ) {
- var line = lines[ lineIndex ];
- if ( line.length === 0 ) continue;
- if ( parsingEmbeddedFiles ) {
- if ( line.startsWith( '0 FILE ' ) ) {
- // Save previous embedded file in the cache
- this.subobjectCache[ currentEmbeddedFileName ] = currentEmbeddedText;
- // New embedded text file
- currentEmbeddedFileName = line.substring( 7 );
- currentEmbeddedText = '';
- } else {
- currentEmbeddedText += line + '\n';
- }
- continue;
- }
- var lp = new LineParser( line, lineIndex + 1 );
- lp.seekNonSpace();
- if ( lp.isAtTheEnd() ) {
- // Empty line
- continue;
- }
- // Parse the line type
- var lineType = lp.getToken();
- switch ( lineType ) {
- // Line type 0: Comment or META
- case '0':
- // Parse meta directive
- var meta = lp.getToken();
- if ( meta ) {
- switch ( meta ) {
- case '!COLOUR':
- var material = this.parseColourMetaDirective( lp );
- if ( material ) {
- this.addMaterial( material );
- } else {
- console.warn( 'LDrawLoader: Error parsing material' + lp.getLineNumberString() );
- }
- break;
- case '!CATEGORY':
- category = lp.getToken();
- break;
- case '!KEYWORDS':
- var newKeywords = lp.getRemainingString().split( ',' );
- if ( newKeywords.length > 0 ) {
- if ( ! keywords ) {
- keywords = [];
- }
- newKeywords.forEach( function ( keyword ) {
- keywords.push( keyword.trim() );
- } );
- }
- break;
- case 'FILE':
- if ( lineIndex > 0 ) {
- // Start embedded text files parsing
- parsingEmbeddedFiles = true;
- currentEmbeddedFileName = lp.getRemainingString();
- currentEmbeddedText = '';
- bfcEnabled = false;
- bfcCCW = true;
- }
- break;
- case 'BFC':
- while ( ! lp.isAtTheEnd() ) {
- var token = lp.getToken();
- bfcCCW = true;
- switch ( token ) {
- case 'CERTIFY':
- case 'NOCERTIFY':
- bfcEnabled = token === 'CERTIFY';
- break;
- case 'CW':
- case 'CCW':
- bfcCCW = token === 'CCW';
- break;
- case 'INVERTNEXT':
- bfcInverted = true;
- break;
- case 'CLIP':
- case 'NOCLIP':
- console.warn( 'THREE.LDrawLoader: BFC CLIP and NOCLIP directives ignored.' );
- break;
- default:
- console.warn( 'THREE.LDrawLoader: BFC directive "' + token + '" is unknown.' );
- break;
- }
- }
- break;
- default:
- // Other meta directives are not implemented
- break;
- }
- }
- break;
- // Line type 1: Sub-object file
- case '1':
- var material = parseColourCode( lp );
- var posX = parseFloat( lp.getToken() );
- var posY = parseFloat( lp.getToken() );
- var posZ = parseFloat( lp.getToken() );
- var m0 = parseFloat( lp.getToken() );
- var m1 = parseFloat( lp.getToken() );
- var m2 = parseFloat( lp.getToken() );
- var m3 = parseFloat( lp.getToken() );
- var m4 = parseFloat( lp.getToken() );
- var m5 = parseFloat( lp.getToken() );
- var m6 = parseFloat( lp.getToken() );
- var m7 = parseFloat( lp.getToken() );
- var m8 = parseFloat( lp.getToken() );
- var matrix = new THREE.Matrix4().set(
- m0, m1, m2, posX,
- m3, m4, m5, posY,
- m6, m7, m8, posZ,
- 0, 0, 0, 1
- );
- var fileName = lp.getRemainingString().trim().replace( "\\", "/" );
- if ( scope.fileMap[ fileName ] ) {
- // Found the subobject path in the preloaded file path map
- fileName = scope.fileMap[ fileName ];
- } else {
- // Standardized subfolders
- if ( fileName.startsWith( 's/' ) ) {
- fileName = 'parts/' + fileName;
- } else if ( fileName.startsWith( '48/' ) ) {
- fileName = 'p/' + fileName;
- }
- }
- subobjects.push( {
- material: material,
- matrix: matrix,
- fileName: fileName,
- originalFileName: fileName,
- locationState: LDrawLoader.FILE_LOCATION_AS_IS,
- url: null,
- triedLowerCase: false,
- inverted: bfcInverted !== currentParseScope.inverted
- } );
- bfcInverted = false;
- break;
- // Line type 2: Line segment
- case '2':
- var material = parseColourCode( lp, true );
- lineSegments.push( {
- material: material.userData.edgeMaterial,
- colourCode: material.userData.code,
- v0: parseVector( lp ),
- v1: parseVector( lp )
- } );
- break;
- // Line type 3: Triangle
- case '3':
- var material = parseColourCode( lp );
- var inverted = currentParseScope.inverted;
- var ccw = ! bfcEnabled || bfcEnabled && bfcCCW && ! inverted;
- var v0, v1, v2;
- if ( ccw === true ) {
- v0 = parseVector( lp );
- v1 = parseVector( lp );
- v2 = parseVector( lp );
- } else {
- v2 = parseVector( lp );
- v1 = parseVector( lp );
- v0 = parseVector( lp );
- }
- triangles.push( {
- material: material,
- colourCode: material.userData.code,
- v0: v0,
- v1: v1,
- v2: v2
- } );
- break;
- // Line type 4: Quadrilateral
- case '4':
- var material = parseColourCode( lp );
- var inverted = currentParseScope.inverted;
- var ccw = ! bfcEnabled || bfcEnabled && bfcCCW && ! inverted;
- var v0, v1, v2, v3;
- if ( ccw === true ) {
- v0 = parseVector( lp );
- v1 = parseVector( lp );
- v2 = parseVector( lp );
- v3 = parseVector( lp );
- } else {
- v3 = parseVector( lp );
- v2 = parseVector( lp );
- v1 = parseVector( lp );
- v0 = parseVector( lp );
- }
- triangles.push( {
- material: material,
- colourCode: material.userData.code,
- v0: v0,
- v1: v1,
- v2: v2
- } );
- triangles.push( {
- material: material,
- colourCode: material.userData.code,
- v0: v0,
- v1: v2,
- v2: v3
- } );
- break;
- // Line type 5: Optional line
- case '5':
- // Line type 5 is not implemented
- break;
- default:
- throw 'LDrawLoader: Unknown line type "' + lineType + '"' + lp.getLineNumberString() + '.';
- break;
- }
- }
- if ( parsingEmbeddedFiles ) {
- this.subobjectCache[ currentEmbeddedFileName ] = currentEmbeddedText;
- }
- //
- var groupObject = null;
- if ( this.separateObjects ) {
- groupObject = new THREE.Group();
- if ( lineSegments.length > 0 ) {
- groupObject.add( createObject( lineSegments, 2 ) );
- }
- if ( triangles.length > 0 ) {
- groupObject.add( createObject( triangles, 3 ) );
- }
- } else {
- groupObject = this.currentGroupObject;
- }
- groupObject.userData.category = category;
- groupObject.userData.keywords = keywords;
- groupObject.userData.subobjects = subobjects;
- //console.timeEnd( 'LDrawLoader' );
- return groupObject;
- }
- };
- return LDrawLoader;
- } )();
|