|
@@ -1,5 +1,5 @@
|
|
|
import * as THREE from 'three';
|
|
|
-
|
|
|
+import Path from '../../config/pathJson.json'
|
|
|
export const ThreeGridClass = {
|
|
|
constructor(options) {
|
|
|
this.webgl = options.webgl;
|
|
@@ -9,6 +9,8 @@ export const ThreeGridClass = {
|
|
|
this.size = options.size ||200; // 单个立方体的尺寸
|
|
|
this.layerHeight = this.layerHeight || 400, // 每层的高度
|
|
|
this.layerColors = this.layerColors || [new THREE.Color(0xff0000), new THREE.Color(0x00ff00), new THREE.Color(0x0000ff)] // 自定义每层颜色
|
|
|
+ this.gridEnabled = options.gridEnabled;
|
|
|
+ this.netEnabled = options.netEnabled;
|
|
|
this.mesh = null;
|
|
|
this._camera = null;
|
|
|
this.currentLayer = 0;
|
|
@@ -54,9 +56,13 @@ export const ThreeGridClass = {
|
|
|
|
|
|
|
|
|
// 创建实例化立方体网格
|
|
|
- this.createInstancedMesh();
|
|
|
- this.createGlobalGridLines();
|
|
|
- this.scene.add(this.mesh);
|
|
|
+ if(this.gridEnabled){
|
|
|
+ this.createInstancedMesh();
|
|
|
+ this.scene.add(this.mesh);
|
|
|
+ }
|
|
|
+ if(this.netEnabled){
|
|
|
+ this.createGlobalGridLines();
|
|
|
+ }
|
|
|
|
|
|
// 添加灯光(确保物体在场景中可以被看见)
|
|
|
const ambientLight = new THREE.AmbientLight(0xffffff, 0.5);
|
|
@@ -76,7 +82,8 @@ export const ThreeGridClass = {
|
|
|
},
|
|
|
|
|
|
createInstancedMesh() {
|
|
|
- const geometry = new THREE.BoxGeometry(this.layerHeight, this.size, this.size);
|
|
|
+ //const geometry = new THREE.BoxGeometry(this.layerHeight, this.size, this.size);
|
|
|
+ const geometry = new THREE.BoxGeometry(7.73, 7.73, 7.73);
|
|
|
geometry.computeVertexNormals(); // 计算并更新顶点法线
|
|
|
const material = new THREE.MeshPhongMaterial({
|
|
|
transparent: true,
|
|
@@ -84,7 +91,7 @@ export const ThreeGridClass = {
|
|
|
depthTest:true,
|
|
|
side:THREE.DoubleSide
|
|
|
});
|
|
|
-
|
|
|
+ debugger
|
|
|
// 修改材质支持 instanceColor
|
|
|
material.onBeforeCompile = (shader) => {
|
|
|
shader.vertexShader = `
|
|
@@ -116,78 +123,63 @@ export const ThreeGridClass = {
|
|
|
const yCount = Math.floor((this.extent.maxY - this.extent.minY) / this.size);
|
|
|
const zCount = Math.floor(this.height / this.layerHeight);
|
|
|
const count = xCount * yCount * zCount;
|
|
|
- if(count >2000000){
|
|
|
- return
|
|
|
- }
|
|
|
-
|
|
|
this.mesh = new THREE.InstancedMesh(geometry, material, count);
|
|
|
-
|
|
|
-
|
|
|
// 为实例添加颜色属性
|
|
|
const instanceColors = new Float32Array(count * 3);
|
|
|
const dummy = new THREE.Object3D();
|
|
|
const color = new THREE.Color();
|
|
|
let index = 0;
|
|
|
|
|
|
- // 存储合并后的线段
|
|
|
- const mergedLines = [];
|
|
|
-
|
|
|
- // 创建边框线的几何体 (LineSegments)
|
|
|
- const edges = new THREE.EdgesGeometry(geometry);
|
|
|
- this.edgeMaterial = new THREE.LineBasicMaterial({
|
|
|
- color: 0xffffff,
|
|
|
- opacity: 0.8,
|
|
|
- linewidth:1,
|
|
|
- transparent: true
|
|
|
- });
|
|
|
-
|
|
|
- // 按照网格的格子来合并线段
|
|
|
- for (let i = 0; i < xCount; i++) {
|
|
|
- for (let j = 0; j < yCount; j++) {
|
|
|
- for (let k = 0; k < zCount; k++) {
|
|
|
- const worldX = this.extent.minX + i * this.size + this.size / 2;
|
|
|
- const worldY = this.extent.minY + j * this.size + this.size / 2;
|
|
|
- const worldZ = k * this.layerHeight + this.layerHeight / 2;
|
|
|
-
|
|
|
- let renderPos = [];
|
|
|
- this.webgl.toRenderCoordinates(this.view, [worldX, worldY, worldZ], 0, this.view.spatialReference, renderPos, 0, 1);
|
|
|
-
|
|
|
- dummy.position.set(renderPos[0], renderPos[1], renderPos[2]);
|
|
|
- dummy.updateMatrix();
|
|
|
- this.mesh.setMatrixAt(index, dummy.matrix);
|
|
|
-
|
|
|
- // 分配颜色:由层数计算从红到绿的渐变
|
|
|
- const layerFraction = k / (zCount - 1); // 当前层在总层数中的比例
|
|
|
- color.setHSL(layerFraction * 0.33, 1, 0.5); // HSL中的H从0(红)到0.33(绿)
|
|
|
-
|
|
|
- instanceColors[index * 3] = color.r;
|
|
|
- instanceColors[index * 3 + 1] = color.g;
|
|
|
- instanceColors[index * 3 + 2] = color.b;
|
|
|
-
|
|
|
- // 将当前格子的边框添加到合并的线段列表中
|
|
|
- const edgesArr = edges.attributes.position.array;
|
|
|
- const startIndex = index * edgesArr.length;
|
|
|
-
|
|
|
- // for (let i = 0; i < edgesArr.length; i++) {
|
|
|
- // mergedLines.push(edgesArr[i] + dummy.position.toArray()[i % 3]);
|
|
|
- // }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- index++;
|
|
|
- }
|
|
|
- }
|
|
|
+ // for (let i = 0; i < xCount; i++) {
|
|
|
+ // for (let j = 0; j < yCount; j++) {
|
|
|
+ // for (let k = 0; k < zCount; k++) {
|
|
|
+ // const worldX = this.extent.minX + i * this.size + this.size / 2;
|
|
|
+ // const worldY = this.extent.minY + j * this.size + this.size / 2;
|
|
|
+ // const worldZ = k * this.layerHeight + this.layerHeight / 2;
|
|
|
+ // debugger
|
|
|
+ // let renderPos = [];
|
|
|
+ // this.webgl.toRenderCoordinates(this.view, [worldX, worldY, worldZ], 0, this.view.spatialReference, renderPos, 0, 1);
|
|
|
+ //
|
|
|
+ // dummy.position.set(renderPos[0], renderPos[1], renderPos[2]);
|
|
|
+ // dummy.updateMatrix();
|
|
|
+ // this.mesh.setMatrixAt(index, dummy.matrix);
|
|
|
+ //
|
|
|
+ // // 分配颜色:由层数计算从红到绿的渐变
|
|
|
+ // const layerFraction = k / (zCount - 1); // 当前层在总层数中的比例
|
|
|
+ // color.setHSL(layerFraction * 0.33, 1, 0.5); // HSL中的H从0(红)到0.33(绿)
|
|
|
+ //
|
|
|
+ // instanceColors[index * 3] = color.r;
|
|
|
+ // instanceColors[index * 3 + 1] = color.g;
|
|
|
+ // instanceColors[index * 3 + 2] = color.b;
|
|
|
+ //
|
|
|
+ // index++;
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+
|
|
|
+ for(let i=0;i<Path.ypPath.length;i++){
|
|
|
+ let renderPos = [];
|
|
|
+
|
|
|
+ this.webgl.toRenderCoordinates(this.view, [Path.ypPath[i][0] * 7.73,Path.ypPath[i][1] * 7.73,Path.ypPath[i][2] * 7.73], 0, this.view.spatialReference, renderPos, 0, 1);
|
|
|
+
|
|
|
+ dummy.position.set(renderPos[0], renderPos[1], renderPos[2]);
|
|
|
+ dummy.updateMatrix();
|
|
|
+ this.mesh.setMatrixAt(index, dummy.matrix);
|
|
|
+
|
|
|
+ debugger
|
|
|
+ instanceColors[index * 3] = 0;
|
|
|
+ instanceColors[index * 3 + 1] = 1;
|
|
|
+ instanceColors[index * 3 + 2] = 0;
|
|
|
+
|
|
|
+ index++;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
// 为实例化的网格设置颜色
|
|
|
geometry.setAttribute('instanceColor', new THREE.InstancedBufferAttribute(instanceColors, 3));
|
|
|
geometry.attributes.instanceColor.needsUpdate = true;
|
|
|
this.mesh.instanceMatrix.needsUpdate = true;
|
|
|
|
|
|
- // 创建合并后的线段几何体
|
|
|
- const mergedLineGeometry = new THREE.BufferGeometry();
|
|
|
- mergedLineGeometry.setAttribute('position', new THREE.Float32BufferAttribute(mergedLines, 3));
|
|
|
- this.mergedLineMesh = new THREE.LineSegments(mergedLineGeometry, this.edgeMaterial);
|
|
|
|
|
|
// 将网格和边框分别添加到场景中
|
|
|
this.scene.add(this.mesh);
|