Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LDrawLoader: Add WebGPU support. #29752

Merged
merged 4 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions examples/jsm/Addons.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ export * from './loaders/VTKLoader.js';
export * from './loaders/XYZLoader.js';

export * from './materials/MeshGouraudMaterial.js';
export * from './materials/LDrawConditionalLineMaterial.js';
export * from './materials/MeshPostProcessingMaterial.js';

export * from './math/Capsule.js';
export * from './math/ColorConverter.js';
Expand Down
164 changes: 22 additions & 142 deletions examples/jsm/loaders/LDrawLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ import {
Matrix4,
Mesh,
MeshStandardMaterial,
ShaderMaterial,
SRGBColorSpace,
UniformsLib,
UniformsUtils,
Vector3,
Ray
} from 'three';
Expand Down Expand Up @@ -45,140 +42,6 @@ const COLOR_SPACE_LDRAW = SRGBColorSpace;
const _tempVec0 = new Vector3();
const _tempVec1 = new Vector3();

class LDrawConditionalLineMaterial extends ShaderMaterial {

static get type() {

return 'LDrawConditionalLineMaterial';

}

constructor( parameters ) {

super( {

uniforms: UniformsUtils.merge( [
UniformsLib.fog,
{
diffuse: {
value: new Color()
},
opacity: {
value: 1.0
}
}
] ),

vertexShader: /* glsl */`
attribute vec3 control0;
attribute vec3 control1;
attribute vec3 direction;
varying float discardFlag;

#include <common>
#include <color_pars_vertex>
#include <fog_pars_vertex>
#include <logdepthbuf_pars_vertex>
#include <clipping_planes_pars_vertex>
void main() {
#include <color_vertex>

vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );
gl_Position = projectionMatrix * mvPosition;

// Transform the line segment ends and control points into camera clip space
vec4 c0 = projectionMatrix * modelViewMatrix * vec4( control0, 1.0 );
vec4 c1 = projectionMatrix * modelViewMatrix * vec4( control1, 1.0 );
vec4 p0 = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );
vec4 p1 = projectionMatrix * modelViewMatrix * vec4( position + direction, 1.0 );

c0.xy /= c0.w;
c1.xy /= c1.w;
p0.xy /= p0.w;
p1.xy /= p1.w;

// Get the direction of the segment and an orthogonal vector
vec2 dir = p1.xy - p0.xy;
vec2 norm = vec2( -dir.y, dir.x );

// Get control point directions from the line
vec2 c0dir = c0.xy - p1.xy;
vec2 c1dir = c1.xy - p1.xy;

// If the vectors to the controls points are pointed in different directions away
// from the line segment then the line should not be drawn.
float d0 = dot( normalize( norm ), normalize( c0dir ) );
float d1 = dot( normalize( norm ), normalize( c1dir ) );
discardFlag = float( sign( d0 ) != sign( d1 ) );

#include <logdepthbuf_vertex>
#include <clipping_planes_vertex>
#include <fog_vertex>
}
`,

fragmentShader: /* glsl */`
uniform vec3 diffuse;
uniform float opacity;
varying float discardFlag;

#include <common>
#include <color_pars_fragment>
#include <fog_pars_fragment>
#include <logdepthbuf_pars_fragment>
#include <clipping_planes_pars_fragment>
void main() {

if ( discardFlag > 0.5 ) discard;

#include <clipping_planes_fragment>
vec3 outgoingLight = vec3( 0.0 );
vec4 diffuseColor = vec4( diffuse, opacity );
#include <logdepthbuf_fragment>
#include <color_fragment>
outgoingLight = diffuseColor.rgb; // simple shader
gl_FragColor = vec4( outgoingLight, diffuseColor.a );
#include <tonemapping_fragment>
#include <colorspace_fragment>
#include <fog_fragment>
#include <premultiplied_alpha_fragment>
}
`,

} );

Object.defineProperties( this, {

opacity: {
get: function () {

return this.uniforms.opacity.value;

},

set: function ( value ) {

this.uniforms.opacity.value = value;

}
},

color: {
get: function () {

return this.uniforms.diffuse.value;

}
}

} );

this.setValues( parameters );
this.isLDrawConditionalLineMaterial = true;

}

}

class ConditionalLineSegments extends LineSegments {

Expand Down Expand Up @@ -1903,19 +1766,19 @@ class LDrawLoader extends Loader {
// 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 = {};

// Initializes the materials library with default materials
this.setMaterials( [] );

// If this flag is set to true the vertex normals will be smoothed.
this.smoothNormals = true;

// The path to load parts from the LDraw parts library from.
this.partsLibraryPath = '';

// this material type must be injected via setConditionalLineMaterial()
this.ConditionalLineMaterial = null;

// Material assigned to not available colors for meshes and edges
this.missingColorMaterial = new MeshStandardMaterial( { name: Loader.DEFAULT_MATERIAL_NAME, color: 0xFF00FF, roughness: 0.3, metalness: 0 } );
this.missingEdgeColorMaterial = new LineBasicMaterial( { name: Loader.DEFAULT_MATERIAL_NAME, color: 0xFF00FF } );
this.missingConditionalEdgeColorMaterial = new LDrawConditionalLineMaterial( { name: Loader.DEFAULT_MATERIAL_NAME, fog: true, color: 0xFF00FF } );
this.missingConditionalEdgeColorMaterial = null;
this.edgeMaterialCache.set( this.missingColorMaterial, this.missingEdgeColorMaterial );
this.conditionalEdgeMaterialCache.set( this.missingEdgeColorMaterial, this.missingConditionalEdgeColorMaterial );

Expand All @@ -1928,6 +1791,14 @@ class LDrawLoader extends Loader {

}

setConditionalLineMaterial( type ) {

this.ConditionalLineMaterial = type;
this.missingConditionalEdgeColorMaterial = new this.ConditionalLineMaterial( { name: Loader.DEFAULT_MATERIAL_NAME, fog: true, color: 0xFF00FF } );
return this;

}

async preloadMaterials( url ) {

const fileLoader = new FileLoader( this.manager );
Expand Down Expand Up @@ -1964,6 +1835,9 @@ class LDrawLoader extends Loader {
fileLoader.setWithCredentials( this.withCredentials );
fileLoader.load( url, text => {

// Initializes the materials library with default materials
this.setMaterials( [] );

this.partsCache
.parseModel( text, this.materialLibrary )
.then( group => {
Expand Down Expand Up @@ -2390,8 +2264,14 @@ class LDrawLoader extends Loader {
edgeMaterial.userData.code = code;
edgeMaterial.name = name + ' - Edge';

if ( this.ConditionalLineMaterial === null ) {

throw new Error( 'THREE.LDrawLoader: ConditionalLineMaterial type must be specificed via .setConditionalLineMaterial().' );

}

// This is the material used for conditional edges
const conditionalEdgeMaterial = new LDrawConditionalLineMaterial( {
const conditionalEdgeMaterial = new this.ConditionalLineMaterial( {

fog: true,
transparent: isTransparent,
Expand Down
143 changes: 143 additions & 0 deletions examples/jsm/materials/LDrawConditionalLineMaterial.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
import {
Color,
ShaderMaterial,
UniformsLib,
UniformsUtils,
} from 'three';

class LDrawConditionalLineMaterial extends ShaderMaterial {

static get type() {

return 'LDrawConditionalLineMaterial';

}

constructor( parameters ) {

super( {

uniforms: UniformsUtils.merge( [
UniformsLib.fog,
{
diffuse: {
value: new Color()
},
opacity: {
value: 1.0
}
}
] ),

vertexShader: /* glsl */`
attribute vec3 control0;
attribute vec3 control1;
attribute vec3 direction;
varying float discardFlag;

#include <common>
#include <color_pars_vertex>
#include <fog_pars_vertex>
#include <logdepthbuf_pars_vertex>
#include <clipping_planes_pars_vertex>
void main() {
#include <color_vertex>

vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );
gl_Position = projectionMatrix * mvPosition;

// Transform the line segment ends and control points into camera clip space
vec4 c0 = projectionMatrix * modelViewMatrix * vec4( control0, 1.0 );
vec4 c1 = projectionMatrix * modelViewMatrix * vec4( control1, 1.0 );
vec4 p0 = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );
vec4 p1 = projectionMatrix * modelViewMatrix * vec4( position + direction, 1.0 );

c0.xy /= c0.w;
c1.xy /= c1.w;
p0.xy /= p0.w;
p1.xy /= p1.w;

// Get the direction of the segment and an orthogonal vector
vec2 dir = p1.xy - p0.xy;
vec2 norm = vec2( -dir.y, dir.x );

// Get control point directions from the line
vec2 c0dir = c0.xy - p1.xy;
vec2 c1dir = c1.xy - p1.xy;

// If the vectors to the controls points are pointed in different directions away
// from the line segment then the line should not be drawn.
float d0 = dot( normalize( norm ), normalize( c0dir ) );
float d1 = dot( normalize( norm ), normalize( c1dir ) );
discardFlag = float( sign( d0 ) != sign( d1 ) );

#include <logdepthbuf_vertex>
#include <clipping_planes_vertex>
#include <fog_vertex>
}
`,

fragmentShader: /* glsl */`
uniform vec3 diffuse;
uniform float opacity;
varying float discardFlag;

#include <common>
#include <color_pars_fragment>
#include <fog_pars_fragment>
#include <logdepthbuf_pars_fragment>
#include <clipping_planes_pars_fragment>
void main() {

if ( discardFlag > 0.5 ) discard;

#include <clipping_planes_fragment>
vec3 outgoingLight = vec3( 0.0 );
vec4 diffuseColor = vec4( diffuse, opacity );
#include <logdepthbuf_fragment>
#include <color_fragment>
outgoingLight = diffuseColor.rgb; // simple shader
gl_FragColor = vec4( outgoingLight, diffuseColor.a );
#include <tonemapping_fragment>
#include <colorspace_fragment>
#include <fog_fragment>
#include <premultiplied_alpha_fragment>
}
`,

} );

Object.defineProperties( this, {

opacity: {
get: function () {

return this.uniforms.opacity.value;

},

set: function ( value ) {

this.uniforms.opacity.value = value;

}
},

color: {
get: function () {

return this.uniforms.diffuse.value;

}
}

} );

this.setValues( parameters );
this.isLDrawConditionalLineMaterial = true;

}

}

export { LDrawConditionalLineMaterial };
Loading