123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494 |
- import {
- BufferGeometryLoader,
- FileLoader,
- Loader,
- Object3D,
- MeshStandardMaterial,
- Mesh,
- Color,
- Points,
- PointsMaterial,
- Line,
- LineBasicMaterial,
- Matrix4,
- DirectionalLight,
- PointLight,
- SpotLight,
- RectAreaLight,
- Vector3,
- Sprite,
- SpriteMaterial,
- CanvasTexture,
- LinearFilter,
- ClampToEdgeWrapping,
- TextureLoader
- } from '../../../build/three.module.js';
- const _taskCache = new WeakMap();
- class Rhino3dmLoader extends Loader {
- constructor( manager ) {
- super( manager );
- this.libraryPath = '';
- this.libraryPending = null;
- this.libraryBinary = null;
- this.libraryConfig = {};
- this.url = '';
- this.workerLimit = 4;
- this.workerPool = [];
- this.workerNextTaskID = 1;
- this.workerSourceURL = '';
- this.workerConfig = {};
- this.materials = [];
- this.warnings = [];
- }
- setLibraryPath( path ) {
- this.libraryPath = path;
- return this;
- }
- setWorkerLimit( workerLimit ) {
- this.workerLimit = workerLimit;
- return this;
- }
- load( url, onLoad, onProgress, onError ) {
- const loader = new FileLoader( this.manager );
- loader.setPath( this.path );
- loader.setResponseType( 'arraybuffer' );
- loader.setRequestHeader( this.requestHeader );
- this.url = url;
- loader.load( url, ( buffer ) => {
- // Check for an existing task using this buffer. A transferred buffer cannot be transferred
- // again from this thread.
- if ( _taskCache.has( buffer ) ) {
- const cachedTask = _taskCache.get( buffer );
- return cachedTask.promise.then( onLoad ).catch( onError );
- }
- this.decodeObjects( buffer, url )
- .then( result => {
- result.userData.warnings = this.warnings;
- onLoad( result );
- } )
- .catch( e => onError( e ) );
- }, onProgress, onError );
- }
- debug() {
- console.log( 'Task load: ', this.workerPool.map( ( worker ) => worker._taskLoad ) );
- }
- decodeObjects( buffer, url ) {
- let worker;
- let taskID;
- const taskCost = buffer.byteLength;
- const objectPending = this._getWorker( taskCost )
- .then( ( _worker ) => {
- worker = _worker;
- taskID = this.workerNextTaskID ++;
- return new Promise( ( resolve, reject ) => {
- worker._callbacks[ taskID ] = { resolve, reject };
- worker.postMessage( { type: 'decode', id: taskID, buffer }, [ buffer ] );
- // this.debug();
- } );
- } )
- .then( ( message ) => this._createGeometry( message.data ) )
- .catch( e => {
- throw e;
- } );
- // Remove task from the task list.
- // Note: replaced '.finally()' with '.catch().then()' block - iOS 11 support (#19416)
- objectPending
- .catch( () => true )
- .then( () => {
- if ( worker && taskID ) {
- this._releaseTask( worker, taskID );
- //this.debug();
- }
- } );
- // Cache the task result.
- _taskCache.set( buffer, {
- url: url,
- promise: objectPending
- } );
- return objectPending;
- }
- parse( data, onLoad, onError ) {
- this.decodeObjects( data, '' )
- .then( result => {
- result.userData.warnings = this.warnings;
- onLoad( result );
- } )
- .catch( e => onError( e ) );
- }
- _compareMaterials( material ) {
- const mat = {};
- mat.name = material.name;
- mat.color = {};
- mat.color.r = material.color.r;
- mat.color.g = material.color.g;
- mat.color.b = material.color.b;
- mat.type = material.type;
- for ( let i = 0; i < this.materials.length; i ++ ) {
- const m = this.materials[ i ];
- const _mat = {};
- _mat.name = m.name;
- _mat.color = {};
- _mat.color.r = m.color.r;
- _mat.color.g = m.color.g;
- _mat.color.b = m.color.b;
- _mat.type = m.type;
- if ( JSON.stringify( mat ) === JSON.stringify( _mat ) ) {
- return m;
- }
- }
- this.materials.push( material );
- return material;
- }
- _createMaterial( material ) {
- if ( material === undefined ) {
- return new MeshStandardMaterial( {
- color: new Color( 1, 1, 1 ),
- metalness: 0.8,
- name: 'default',
- side: 2
- } );
- }
- const _diffuseColor = material.diffuseColor;
- const diffusecolor = new Color( _diffuseColor.r / 255.0, _diffuseColor.g / 255.0, _diffuseColor.b / 255.0 );
- if ( _diffuseColor.r === 0 && _diffuseColor.g === 0 && _diffuseColor.b === 0 ) {
- diffusecolor.r = 1;
- diffusecolor.g = 1;
- diffusecolor.b = 1;
- }
- // console.log( material );
- const mat = new MeshStandardMaterial( {
- color: diffusecolor,
- name: material.name,
- side: 2,
- transparent: material.transparency > 0 ? true : false,
- opacity: 1.0 - material.transparency
- } );
- const textureLoader = new TextureLoader();
- for ( let i = 0; i < material.textures.length; i ++ ) {
- const texture = material.textures[ i ];
- if ( texture.image !== null ) {
- const map = textureLoader.load( texture.image );
- switch ( texture.type ) {
- case 'Diffuse':
- mat.map = map;
- break;
- case 'Bump':
- mat.bumpMap = map;
- break;
- case 'Transparency':
- mat.alphaMap = map;
- mat.transparent = true;
- break;
- case 'Emap':
- mat.envMap = map;
- break;
- }
- map.wrapS = texture.wrapU === 0 ? THREE.RepeatWrapping : THREE.ClampToEdgeWrapping;
- map.wrapT = texture.wrapV === 0 ? THREE.RepeatWrapping : THREE.ClampToEdgeWrapping;
- map.repeat.set( texture.repeat[ 0 ], texture.repeat[ 1 ] );
- }
- }
- return mat;
- }
- _createGeometry( data ) {
- // console.log(data);
- const object = new Object3D();
- const instanceDefinitionObjects = [];
- const instanceDefinitions = [];
- const instanceReferences = [];
- object.userData[ 'layers' ] = data.layers;
- object.userData[ 'groups' ] = data.groups;
- object.userData[ 'settings' ] = data.settings;
- object.userData[ 'objectType' ] = 'File3dm';
- object.userData[ 'materials' ] = null;
- object.name = this.url;
- let objects = data.objects;
- const materials = data.materials;
- for ( let i = 0; i < objects.length; i ++ ) {
- const obj = objects[ i ];
- const attributes = obj.attributes;
- switch ( obj.objectType ) {
- case 'InstanceDefinition':
- instanceDefinitions.push( obj );
- break;
- case 'InstanceReference':
- instanceReferences.push( obj );
- break;
- default:
- let _object;
- if ( attributes.materialIndex >= 0 ) {
- const rMaterial = materials[ attributes.materialIndex ];
- let material = this._createMaterial( rMaterial );
- material = this._compareMaterials( material );
- _object = this._createObject( obj, material );
- } else {
- const material = this._createMaterial();
- _object = this._createObject( obj, material );
- }
- if ( _object === undefined ) {
- continue;
- }
- const layer = data.layers[ attributes.layerIndex ];
- _object.visible = layer ? data.layers[ attributes.layerIndex ].visible : true;
- if ( attributes.isInstanceDefinitionObject ) {
- instanceDefinitionObjects.push( _object );
- } else {
- object.add( _object );
- }
- break;
- }
- }
- for ( let i = 0; i < instanceDefinitions.length; i ++ ) {
- const iDef = instanceDefinitions[ i ];
- objects = [];
- for ( let j = 0; j < iDef.attributes.objectIds.length; j ++ ) {
- const objId = iDef.attributes.objectIds[ j ];
- for ( let p = 0; p < instanceDefinitionObjects.length; p ++ ) {
- const idoId = instanceDefinitionObjects[ p ].userData.attributes.id;
- if ( objId === idoId ) {
- objects.push( instanceDefinitionObjects[ p ] );
- }
- }
- }
- // Currently clones geometry and does not take advantage of instancing
- for ( let j = 0; j < instanceReferences.length; j ++ ) {
- const iRef = instanceReferences[ j ];
- if ( iRef.geometry.parentIdefId === iDef.attributes.id ) {
- const iRefObject = new Object3D();
- const xf = iRef.geometry.xform.array;
- const matrix = new Matrix4();
- matrix.set( xf[ 0 ], xf[ 1 ], xf[ 2 ], xf[ 3 ], xf[ 4 ], xf[ 5 ], xf[ 6 ], xf[ 7 ], xf[ 8 ], xf[ 9 ], xf[ 10 ], xf[ 11 ], xf[ 12 ], xf[ 13 ], xf[ 14 ], xf[ 15 ] );
- iRefObject.applyMatrix4( matrix );
- for ( let p = 0; p < objects.length; p ++ ) {
- iRefObject.add( objects[ p ].clone( true ) );
- }
- object.add( iRefObject );
- }
- }
- }
- object.userData[ 'materials' ] = this.materials;
- return object;
- }
- _createObject( obj, mat ) {
- const loader = new BufferGeometryLoader();
- const attributes = obj.attributes;
- let geometry, material, _color, color;
- switch ( obj.objectType ) {
- case 'Point':
- case 'PointSet':
- geometry = loader.parse( obj.geometry );
- if ( geometry.attributes.hasOwnProperty( 'color' ) ) {
- material = new PointsMaterial( { vertexColors: true, sizeAttenuation: false, size: 2 } );
- } else {
- _color = attributes.drawColor;
- color = new Color( _color.r / 255.0, _color.g / 255.0, _color.b / 255.0 );
- material = new PointsMaterial( { color: color, sizeAttenuation: false, size: 2 } );
- }
- material = this._compareMaterials( material );
- const points = new Points( geometry, material );
- points.userData[ 'attributes' ] = attributes;
- points.userData[ 'objectType' ] = obj.objectType;
- if ( attributes.name ) {
- points.name = attributes.name;
- }
- return points;
- case 'Mesh':
- case 'Extrusion':
- case 'SubD':
- case 'Brep':
- if ( obj.geometry === null ) return;
- geometry = loader.parse( obj.geometry );
- if ( geometry.attributes.hasOwnProperty( 'color' ) ) {
- mat.vertexColors = true;
- }
- if ( mat === null ) {
- mat = this._createMaterial();
- mat = this._compareMaterials( mat );
- }
- const mesh = new Mesh( geometry, mat );
- mesh.castShadow = attributes.castsShadows;
- mesh.receiveShadow = attributes.receivesShadows;
- mesh.userData[ 'attributes' ] = attributes;
- mesh.userData[ 'objectType' ] = obj.objectType;
- if ( attributes.name ) {
- mesh.name = attributes.name;
- }
- return mesh;
- case 'Curve':
- geometry = loader.parse( obj.geometry );
- _color = attributes.drawColor;
- color = new Color( _color.r / 255.0, _color.g / 255.0, _color.b / 255.0 );
- material = new LineBasicMaterial( { color: color } );
- material = this._compareMaterials( material );
- const lines = new Line( geometry, material );
- lines.userData[ 'attributes' ] = attributes;
- lines.userData[ 'objectType' ] = obj.objectType;
- if ( attributes.name ) {
- lines.name = attributes.name;
- }
- return lines;
- case 'TextDot':
- geometry = obj.geometry;
- const ctx = document.createElement( 'canvas' ).getContext( '2d' );
- const font = `${geometry.fontHeight}px ${geometry.fontFace}`;
- ctx.font = font;
- const width = ctx.measureText( geometry.text ).width + 10;
- const height = geometry.fontHeight + 10;
- const r = window.devicePixelRatio;
- ctx.canvas.width = width * r;
- ctx.canvas.height = height * r;
- ctx.canvas.style.width = width + 'px';
- ctx.canvas.style.height = height + 'px';
- ctx.setTransform( r, 0, 0, r, 0, 0 );
- ctx.font = font;
- ctx.textBaseline = 'middle';
- ctx.textAlign = 'center';
- color = attributes.drawColor;
- ctx.fillStyle = `rgba(${color.r},${color.g},${color.b},${color.a})`;
- ctx.fillRect( 0, 0, width, height );
- ctx.fillStyle = 'white';
- ctx.fillText( geometry.text, width / 2, height / 2 );
- const texture = new CanvasTexture( ctx.canvas );
- texture.minFilter = LinearFilter;
- texture.wrapS = ClampToEdgeWrapping;
- texture.wrapT = ClampToEdgeWrapping;
- material = new SpriteMaterial( { map: texture, depthTest: false } );
- const sprite = new Sprite( material );
- sprite.position.set( geometry.point[ 0 ], geometry.point[ 1 ], geometry.point[ 2 ] );
- sprite.scale.set( width / 10, height / 10, 1.0 );
- sprite.userData[ 'attributes' ] = attributes;
- sprite.userData[ 'objectType' ] = obj.objectType;
- if ( attributes.name ) {
- sprite.name = attributes.name;
- }
- return sprite;
- case 'Light':
- geometry = obj.geometry;
- let light;
- switch ( geometry.lightStyle.name ) {
- case 'LightStyle_WorldPoint':
- light = new PointLight();
- light.castShadow = attributes.castsShadows;
- light.position.set( geometry.location[ 0 ], geometry.location[ 1 ], geometry.location[ 2 ] );
- light.shadow.normalBias = 0.1;
- break;
- case 'LightStyle_WorldSpot':
- light = new SpotLight();
- light.castShadow = attributes.castsShadows;
- light.position.set( geometry.location[ 0 ], geometry.location[ 1 ], geometry.location[ 2 ] );
- light.target.position.set( geometry.direction[ 0 ], geometry.direction[ 1 ], geometry.direction[ 2 ] );
- light.angle = geometry.spotAngleRadians;
- light.shadow.normalBias = 0.1;
- break;
- case 'LightStyle_WorldRectangular':
- light = new RectAreaLight();
- const width = Math.abs( geometry.width[ 2 ] );
- const height = Math.abs( geometry.length[ 0 ] );
- light.position.set( geometry.location[ 0 ] - ( height / 2 ), geometry.location[ 1 ], geometry.location[ 2 ] - ( width / 2 ) );
- light.height = height;
- light.width = width;
- light.lookAt( new Vector3( geometry.direction[ 0 ], geometry.direction[ 1 ], geometry.direction[ 2 ] ) );
- break;
- case 'LightStyle_WorldDirectional':
- light = new DirectionalLight();
- light.castShadow = attributes.castsShadows;
- light.position.set( geometry.location[ 0 ], geometry.location[ 1 ], geometry.location[ 2 ] );
- light.target.position.set( geometry.direction[ 0 ], geometry.direction[ 1 ], geometry.direction[ 2 ] );
- light.shadow.normalBias = 0.1;
- break;
- case 'LightStyle_WorldLinear':
- // not conversion exists, warning has already been printed to the console
- break;
- default:
- break;
- }
- if ( light ) {
- light.intensity = geometry.intensity;
- _color = geometry.diffuse;
- color = new Color( _color.r / 255.0, _color.g / 255.0, _color.b / 255.0 );
- light.color = color;
- light.userData[ 'attributes' ] = attributes;
- light.userData[ 'objectType' ] = obj.objectType;
- }
- return light;
- }
- }
- _initLibrary() {
- if ( ! this.libraryPending ) {
- // Load rhino3dm wrapper.
- const jsLoader = new FileLoader( this.manager );
- jsLoader.setPath( this.libraryPath );
- const jsContent = new Promise( ( resolve, reject ) => {
- jsLoader.load( 'rhino3dm.js', resolve, undefined, reject );
- } );
- // Load rhino3dm WASM binary.
- const binaryLoader = new FileLoader( this.manager );
- binaryLoader.setPath( this.libraryPath );
- binaryLoader.setResponseType( 'arraybuffer' );
- const binaryContent = new Promise( ( resolve, reject ) => {
- binaryLoader.load( 'rhino3dm.wasm', resolve, undefined, reject );
- } );
- this.libraryPending = Promise.all( [ jsContent, binaryContent ] )
- .then( ( [ jsContent, binaryContent ] ) => {
- //this.libraryBinary = binaryContent;
- this.libraryConfig.wasmBinary = binaryContent;
- const fn = Rhino3dmWorker.toString();
- const body = [
- '/* rhino3dm.js */',
- jsContent,
- '/* worker */',
- fn.substring( fn.indexOf( '{' ) + 1, fn.lastIndexOf( '}' ) )
- ].join( '\n' );
- this.workerSourceURL = URL.createObjectURL( new Blob( [ body ] ) );
- } );
- }
- return this.libraryPending;
- }
- _getWorker( taskCost ) {
- return this._initLibrary().then( () => {
- if ( this.workerPool.length < this.workerLimit ) {
- const worker = new Worker( this.workerSourceURL );
- worker._callbacks = {};
- worker._taskCosts = {};
- worker._taskLoad = 0;
- worker.postMessage( {
- type: 'init',
- libraryConfig: this.libraryConfig
- } );
- worker.onmessage = e => {
- const message = e.data;
- switch ( message.type ) {
- case 'warning':
- this.warnings.push( message.data );
- console.warn( message.data );
- break;
- case 'decode':
- worker._callbacks[ message.id ].resolve( message );
- break;
- case 'error':
- worker._callbacks[ message.id ].reject( message );
- break;
- default:
- console.error( 'THREE.Rhino3dmLoader: Unexpected message, "' + message.type + '"' );
- }
- };
- this.workerPool.push( worker );
- } else {
- this.workerPool.sort( function ( a, b ) {
- return a._taskLoad > b._taskLoad ? - 1 : 1;
- } );
- }
- const worker = this.workerPool[ this.workerPool.length - 1 ];
- worker._taskLoad += taskCost;
- return worker;
- } );
- }
- _releaseTask( worker, taskID ) {
- worker._taskLoad -= worker._taskCosts[ taskID ];
- delete worker._callbacks[ taskID ];
- delete worker._taskCosts[ taskID ];
- }
- dispose() {
- for ( let i = 0; i < this.workerPool.length; ++ i ) {
- this.workerPool[ i ].terminate();
- }
- this.workerPool.length = 0;
- return this;
- }
- }
- /* WEB WORKER */
- function Rhino3dmWorker() {
- let libraryPending;
- let libraryConfig;
- let rhino;
- let taskID;
- onmessage = function ( e ) {
- const message = e.data;
- switch ( message.type ) {
- case 'init':
- // console.log(message)
- libraryConfig = message.libraryConfig;
- const wasmBinary = libraryConfig.wasmBinary;
- let RhinoModule;
- libraryPending = new Promise( function ( resolve ) {
- /* Like Basis Loader */
- RhinoModule = { wasmBinary, onRuntimeInitialized: resolve };
- rhino3dm( RhinoModule ); // eslint-disable-line no-undef
- } ).then( () => {
- rhino = RhinoModule;
- } );
- break;
- case 'decode':
- taskID = message.id;
- const buffer = message.buffer;
- libraryPending.then( () => {
- try {
- const data = decodeObjects( rhino, buffer );
- self.postMessage( { type: 'decode', id: message.id, data } );
- } catch ( error ) {
- self.postMessage( { type: 'error', id: message.id, error } );
- }
- } );
- break;
- }
- };
- function decodeObjects( rhino, buffer ) {
- const arr = new Uint8Array( buffer );
- const doc = rhino.File3dm.fromByteArray( arr );
- const objects = [];
- const materials = [];
- const layers = [];
- const views = [];
- const namedViews = [];
- const groups = [];
- const strings = [];
- //Handle objects
- const objs = doc.objects();
- const cnt = objs.count;
- for ( let i = 0; i < cnt; i ++ ) {
- const _object = objs.get( i );
- const object = extractObjectData( _object, doc );
- _object.delete();
- if ( object ) {
- objects.push( object );
- }
- }
- // Handle instance definitions
- // console.log( `Instance Definitions Count: ${doc.instanceDefinitions().count()}` );
- for ( let i = 0; i < doc.instanceDefinitions().count(); i ++ ) {
- const idef = doc.instanceDefinitions().get( i );
- const idefAttributes = extractProperties( idef );
- idefAttributes.objectIds = idef.getObjectIds();
- objects.push( { geometry: null, attributes: idefAttributes, objectType: 'InstanceDefinition' } );
- }
- // Handle materials
- const textureTypes = [
- // rhino.TextureType.Bitmap,
- rhino.TextureType.Diffuse,
- rhino.TextureType.Bump,
- rhino.TextureType.Transparency,
- rhino.TextureType.Opacity,
- rhino.TextureType.Emap
- ];
- const pbrTextureTypes = [
- rhino.TextureType.PBR_BaseColor,
- rhino.TextureType.PBR_Subsurface,
- rhino.TextureType.PBR_SubsurfaceScattering,
- rhino.TextureType.PBR_SubsurfaceScatteringRadius,
- rhino.TextureType.PBR_Metallic,
- rhino.TextureType.PBR_Specular,
- rhino.TextureType.PBR_SpecularTint,
- rhino.TextureType.PBR_Roughness,
- rhino.TextureType.PBR_Anisotropic,
- rhino.TextureType.PBR_Anisotropic_Rotation,
- rhino.TextureType.PBR_Sheen,
- rhino.TextureType.PBR_SheenTint,
- rhino.TextureType.PBR_Clearcoat,
- rhino.TextureType.PBR_ClearcoatBump,
- rhino.TextureType.PBR_ClearcoatRoughness,
- rhino.TextureType.PBR_OpacityIor,
- rhino.TextureType.PBR_OpacityRoughness,
- rhino.TextureType.PBR_Emission,
- rhino.TextureType.PBR_AmbientOcclusion,
- rhino.TextureType.PBR_Displacement
- ];
- for ( let i = 0; i < doc.materials().count(); i ++ ) {
- const _material = doc.materials().get( i );
- const _pbrMaterial = _material.physicallyBased();
- let material = extractProperties( _material );
- const textures = [];
- for ( let j = 0; j < textureTypes.length; j ++ ) {
- const _texture = _material.getTexture( textureTypes[ j ] );
- if ( _texture ) {
- let textureType = textureTypes[ j ].constructor.name;
- textureType = textureType.substring( 12, textureType.length );
- const texture = { type: textureType };
- const image = doc.getEmbeddedFileAsBase64( _texture.fileName );
- texture.wrapU = _texture.wrapU;
- texture.wrapV = _texture.wrapV;
- texture.wrapW = _texture.wrapW;
- const uvw = _texture.uvwTransform.toFloatArray( true );
- texture.repeat = [ uvw[ 0 ], uvw[ 5 ] ];
- if ( image ) {
- texture.image = 'data:image/png;base64,' + image;
- } else {
- self.postMessage( { type: 'warning', id: taskID, data: {
- message: `THREE.3DMLoader: Image for ${textureType} texture not embedded in file.`,
- type: 'missing resource'
- }
- } );
- texture.image = null;
- }
- textures.push( texture );
- _texture.delete();
- }
- }
- material.textures = textures;
- if ( _pbrMaterial.supported ) {
- for ( let j = 0; j < pbrTextureTypes.length; j ++ ) {
- const _texture = _material.getTexture( pbrTextureTypes[ j ] );
- if ( _texture ) {
- const image = doc.getEmbeddedFileAsBase64( _texture.fileName );
- let textureType = pbrTextureTypes[ j ].constructor.name;
- textureType = textureType.substring( 12, textureType.length );
- const texture = { type: textureType, image: 'data:image/png;base64,' + image };
- textures.push( texture );
- _texture.delete();
- }
- }
- const pbMaterialProperties = extractProperties( _material.physicallyBased() );
- material = Object.assign( pbMaterialProperties, material );
- }
- materials.push( material );
- _material.delete();
- _pbrMaterial.delete();
- }
- // Handle layers
- for ( let i = 0; i < doc.layers().count(); i ++ ) {
- const _layer = doc.layers().get( i );
- const layer = extractProperties( _layer );
- layers.push( layer );
- _layer.delete();
- }
- // Handle views
- for ( let i = 0; i < doc.views().count(); i ++ ) {
- const _view = doc.views().get( i );
- const view = extractProperties( _view );
- views.push( view );
- _view.delete();
- }
- // Handle named views
- for ( let i = 0; i < doc.namedViews().count(); i ++ ) {
- const _namedView = doc.namedViews().get( i );
- const namedView = extractProperties( _namedView );
- namedViews.push( namedView );
- _namedView.delete();
- }
- // Handle groups
- for ( let i = 0; i < doc.groups().count(); i ++ ) {
- const _group = doc.groups().get( i );
- const group = extractProperties( _group );
- groups.push( group );
- _group.delete();
- }
- // Handle settings
- const settings = extractProperties( doc.settings() );
- //TODO: Handle other document stuff like dimstyles, instance definitions, bitmaps etc.
- // Handle dimstyles
- // console.log( `Dimstyle Count: ${doc.dimstyles().count()}` );
- // Handle bitmaps
- // console.log( `Bitmap Count: ${doc.bitmaps().count()}` );
- // Handle strings
- // console.log( `Document Strings Count: ${doc.strings().count()}` );
- // Note: doc.strings().documentUserTextCount() counts any doc.strings defined in a section
- //console.log( `Document User Text Count: ${doc.strings().documentUserTextCount()}` );
- const strings_count = doc.strings().count();
- for ( let i = 0; i < strings_count; i ++ ) {
- strings.push( doc.strings().get( i ) );
- }
- doc.delete();
- return { objects, materials, layers, views, namedViews, groups, strings, settings };
- }
- function extractObjectData( object, doc ) {
- const _geometry = object.geometry();
- const _attributes = object.attributes();
- let objectType = _geometry.objectType;
- let geometry, attributes, position, data, mesh;
- // skip instance definition objects
- //if( _attributes.isInstanceDefinitionObject ) { continue; }
- // TODO: handle other geometry types
- switch ( objectType ) {
- case rhino.ObjectType.Curve:
- const pts = curveToPoints( _geometry, 100 );
- position = {};
- attributes = {};
- data = {};
- position.itemSize = 3;
- position.type = 'Float32Array';
- position.array = [];
- for ( let j = 0; j < pts.length; j ++ ) {
- position.array.push( pts[ j ][ 0 ] );
- position.array.push( pts[ j ][ 1 ] );
- position.array.push( pts[ j ][ 2 ] );
- }
- attributes.position = position;
- data.attributes = attributes;
- geometry = { data };
- break;
- case rhino.ObjectType.Point:
- const pt = _geometry.location;
- position = {};
- const color = {};
- attributes = {};
- data = {};
- position.itemSize = 3;
- position.type = 'Float32Array';
- position.array = [ pt[ 0 ], pt[ 1 ], pt[ 2 ] ];
- const _color = _attributes.drawColor( doc );
- color.itemSize = 3;
- color.type = 'Float32Array';
- color.array = [ _color.r / 255.0, _color.g / 255.0, _color.b / 255.0 ];
- attributes.position = position;
- attributes.color = color;
- data.attributes = attributes;
- geometry = { data };
- break;
- case rhino.ObjectType.PointSet:
- case rhino.ObjectType.Mesh:
- geometry = _geometry.toThreejsJSON();
- break;
- case rhino.ObjectType.Brep:
- const faces = _geometry.faces();
- mesh = new rhino.Mesh();
- for ( let faceIndex = 0; faceIndex < faces.count; faceIndex ++ ) {
- const face = faces.get( faceIndex );
- const _mesh = face.getMesh( rhino.MeshType.Any );
- if ( _mesh ) {
- mesh.append( _mesh );
- _mesh.delete();
- }
- face.delete();
- }
- if ( mesh.faces().count > 0 ) {
- mesh.compact();
- geometry = mesh.toThreejsJSON();
- faces.delete();
- }
- mesh.delete();
- break;
- case rhino.ObjectType.Extrusion:
- mesh = _geometry.getMesh( rhino.MeshType.Any );
- if ( mesh ) {
- geometry = mesh.toThreejsJSON();
- mesh.delete();
- }
- break;
- case rhino.ObjectType.TextDot:
- geometry = extractProperties( _geometry );
- break;
- case rhino.ObjectType.Light:
- geometry = extractProperties( _geometry );
- if ( geometry.lightStyle.name === 'LightStyle_WorldLinear' ) {
- self.postMessage( { type: 'warning', id: taskID, data: {
- message: `THREE.3DMLoader: No conversion exists for ${objectType.constructor.name} ${geometry.lightStyle.name}`,
- type: 'no conversion',
- guid: _attributes.id
- }
- } );
- }
- break;
- case rhino.ObjectType.InstanceReference:
- geometry = extractProperties( _geometry );
- geometry.xform = extractProperties( _geometry.xform );
- geometry.xform.array = _geometry.xform.toFloatArray( true );
- break;
- case rhino.ObjectType.SubD:
- // TODO: precalculate resulting vertices and faces and warn on excessive results
- _geometry.subdivide( 3 );
- mesh = rhino.Mesh.createFromSubDControlNet( _geometry );
- if ( mesh ) {
- geometry = mesh.toThreejsJSON();
- mesh.delete();
- }
- break;
- /*
- case rhino.ObjectType.Annotation:
- case rhino.ObjectType.Hatch:
- case rhino.ObjectType.ClipPlane:
- */
- default:
- self.postMessage( { type: 'warning', id: taskID, data: {
- message: `THREE.3DMLoader: Conversion not implemented for ${objectType.constructor.name}`,
- type: 'not implemented',
- guid: _attributes.id
- }
- } );
- break;
- }
- if ( geometry ) {
- attributes = extractProperties( _attributes );
- attributes.geometry = extractProperties( _geometry );
- if ( _attributes.groupCount > 0 ) {
- attributes.groupIds = _attributes.getGroupList();
- }
- if ( _attributes.userStringCount > 0 ) {
- attributes.userStrings = _attributes.getUserStrings();
- }
- if ( _geometry.userStringCount > 0 ) {
- attributes.geometry.userStrings = _geometry.getUserStrings();
- }
- attributes.drawColor = _attributes.drawColor( doc );
- objectType = objectType.constructor.name;
- objectType = objectType.substring( 11, objectType.length );
- return { geometry, attributes, objectType };
- } else {
- self.postMessage( { type: 'warning', id: taskID, data: {
- message: `THREE.3DMLoader: ${objectType.constructor.name} has no associated mesh geometry.`,
- type: 'missing mesh',
- guid: _attributes.id
- }
- } );
- }
- }
- function extractProperties( object ) {
- const result = {};
- for ( const property in object ) {
- const value = object[ property ];
- if ( typeof value !== 'function' ) {
- if ( typeof value === 'object' && value !== null && value.hasOwnProperty( 'constructor' ) ) {
- result[ property ] = { name: value.constructor.name, value: value.value };
- } else {
- result[ property ] = value;
- }
- } else {
- // these are functions that could be called to extract more data.
- //console.log( `${property}: ${object[ property ].constructor.name}` );
- }
- }
- return result;
- }
- function curveToPoints( curve, pointLimit ) {
- let pointCount = pointLimit;
- let rc = [];
- const ts = [];
- if ( curve instanceof rhino.LineCurve ) {
- return [ curve.pointAtStart, curve.pointAtEnd ];
- }
- if ( curve instanceof rhino.PolylineCurve ) {
- pointCount = curve.pointCount;
- for ( let i = 0; i < pointCount; i ++ ) {
- rc.push( curve.point( i ) );
- }
- return rc;
- }
- if ( curve instanceof rhino.PolyCurve ) {
- const segmentCount = curve.segmentCount;
- for ( let i = 0; i < segmentCount; i ++ ) {
- const segment = curve.segmentCurve( i );
- const segmentArray = curveToPoints( segment, pointCount );
- rc = rc.concat( segmentArray );
- segment.delete();
- }
- return rc;
- }
- if ( curve instanceof rhino.ArcCurve ) {
- pointCount = Math.floor( curve.angleDegrees / 5 );
- pointCount = pointCount < 2 ? 2 : pointCount;
- // alternative to this hardcoded version: https://stackoverflow.com/a/18499923/2179399
- }
- if ( curve instanceof rhino.NurbsCurve && curve.degree === 1 ) {
- const pLine = curve.tryGetPolyline();
- for ( let i = 0; i < pLine.count; i ++ ) {
- rc.push( pLine.get( i ) );
- }
- pLine.delete();
- return rc;
- }
- const domain = curve.domain;
- const divisions = pointCount - 1.0;
- for ( let j = 0; j < pointCount; j ++ ) {
- const t = domain[ 0 ] + ( j / divisions ) * ( domain[ 1 ] - domain[ 0 ] );
- if ( t === domain[ 0 ] || t === domain[ 1 ] ) {
- ts.push( t );
- continue;
- }
- const tan = curve.tangentAt( t );
- const prevTan = curve.tangentAt( ts.slice( - 1 )[ 0 ] );
- // Duplicated from THREE.Vector3
- // How to pass imports to worker?
- const tS = tan[ 0 ] * tan[ 0 ] + tan[ 1 ] * tan[ 1 ] + tan[ 2 ] * tan[ 2 ];
- const ptS = prevTan[ 0 ] * prevTan[ 0 ] + prevTan[ 1 ] * prevTan[ 1 ] + prevTan[ 2 ] * prevTan[ 2 ];
- const denominator = Math.sqrt( tS * ptS );
- let angle;
- if ( denominator === 0 ) {
- angle = Math.PI / 2;
- } else {
- const theta = ( tan.x * prevTan.x + tan.y * prevTan.y + tan.z * prevTan.z ) / denominator;
- angle = Math.acos( Math.max( - 1, Math.min( 1, theta ) ) );
- }
- if ( angle < 0.1 ) continue;
- ts.push( t );
- }
- rc = ts.map( t => curve.pointAt( t ) );
- return rc;
- }
- }
- export { Rhino3dmLoader };
|