feat: 优化3D可视化性能并更新文档
- 实现3D可视化性能优化(降低DPR、阴影贴图、简化光源) - 实现LOD多级细节系统,根据相机距离自动切换 - 添加设备弹出动画开关,默认关闭 - 修复设备缩放时位置偏移问题 - 更新README添加项目截图占位符 - 精简DEPLOYMENT.md文档,添加Gitee仓库支持 - 更新CHANGELOG.md记录v1.1.0版本
This commit is contained in:
@@ -0,0 +1,837 @@
|
||||
import React, { useState, useRef, useMemo, useEffect, useCallback } from 'react';
|
||||
import { useFrame } from '@react-three/fiber';
|
||||
import * as THREE from 'three';
|
||||
|
||||
const PERFORMANCE_MODE = true;
|
||||
|
||||
const InstancedStatusLights = ({ count, positions, colors: statusColors, zOffset }) => {
|
||||
const meshRef = useRef();
|
||||
const colorArray = useMemo(() => {
|
||||
const arr = new Float32Array(count * 3);
|
||||
for (let i = 0; i < count; i++) {
|
||||
const color = new THREE.Color(statusColors[i] || '#22c55e');
|
||||
arr[i * 3] = color.r;
|
||||
arr[i * 3 + 1] = color.g;
|
||||
arr[i * 3 + 2] = color.b;
|
||||
}
|
||||
return arr;
|
||||
}, [count, statusColors]);
|
||||
|
||||
const dummy = useMemo(() => new THREE.Object3D(), []);
|
||||
|
||||
useEffect(() => {
|
||||
if (meshRef.current) {
|
||||
for (let i = 0; i < count; i++) {
|
||||
dummy.position.set(positions[i].x, positions[i].y, positions[i].z + zOffset);
|
||||
dummy.updateMatrix();
|
||||
meshRef.current.setMatrixAt(i, dummy.matrix);
|
||||
}
|
||||
meshRef.current.instanceMatrix.needsUpdate = true;
|
||||
}
|
||||
}, [count, positions, zOffset, dummy]);
|
||||
|
||||
return (
|
||||
<instancedMesh ref={meshRef} args={[undefined, undefined, count]}>
|
||||
<circleGeometry args={[0.0015, 8]} />
|
||||
<meshBasicMaterial toneMapped={false} />
|
||||
</instancedMesh>
|
||||
);
|
||||
};
|
||||
|
||||
const InstancedDriveBays = ({ count, positions, color, hasDetail = true }) => {
|
||||
const meshRef = useRef();
|
||||
const detailRef = useRef();
|
||||
const dummy = useMemo(() => new THREE.Object3D(), []);
|
||||
|
||||
useEffect(() => {
|
||||
if (meshRef.current) {
|
||||
for (let i = 0; i < count; i++) {
|
||||
dummy.position.set(positions[i].x, positions[i].y, positions[i].z);
|
||||
dummy.scale.set(1, 1, 1);
|
||||
dummy.updateMatrix();
|
||||
meshRef.current.setMatrixAt(i, dummy.matrix);
|
||||
}
|
||||
meshRef.current.instanceMatrix.needsUpdate = true;
|
||||
}
|
||||
if (detailRef.current && hasDetail) {
|
||||
for (let i = 0; i < count; i++) {
|
||||
dummy.position.set(positions[i].x + 0.04, positions[i].y, positions[i].z + 0.003);
|
||||
dummy.scale.set(1, 1, 1);
|
||||
dummy.updateMatrix();
|
||||
detailRef.current.setMatrixAt(i, dummy.matrix);
|
||||
}
|
||||
detailRef.current.instanceMatrix.needsUpdate = true;
|
||||
}
|
||||
}, [count, positions, hasDetail, dummy]);
|
||||
|
||||
return (
|
||||
<group>
|
||||
<instancedMesh ref={meshRef} args={[undefined, undefined, count]}>
|
||||
<boxGeometry args={[0.07, 0.035, 0.004]} />
|
||||
<meshStandardMaterial color={color || '#334155'} roughness={0.6} metalness={0.4} />
|
||||
</instancedMesh>
|
||||
{hasDetail && (
|
||||
<instancedMesh ref={detailRef} args={[undefined, undefined, count]}>
|
||||
<boxGeometry args={[0.015, 0.025, 0.002]} />
|
||||
<meshStandardMaterial color="#1e293b" />
|
||||
</instancedMesh>
|
||||
)}
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
||||
const InstancedStorageBays = ({ count, positions, color }) => {
|
||||
const meshRef = useRef();
|
||||
const detailRef = useRef();
|
||||
const dummy = useMemo(() => new THREE.Object3D(), []);
|
||||
|
||||
useEffect(() => {
|
||||
if (meshRef.current) {
|
||||
for (let i = 0; i < count; i++) {
|
||||
dummy.position.set(positions[i].x, positions[i].y, positions[i].z);
|
||||
dummy.scale.set(1, 1, 1);
|
||||
dummy.updateMatrix();
|
||||
meshRef.current.setMatrixAt(i, dummy.matrix);
|
||||
}
|
||||
meshRef.current.instanceMatrix.needsUpdate = true;
|
||||
}
|
||||
if (detailRef.current) {
|
||||
for (let i = 0; i < count; i++) {
|
||||
dummy.position.set(positions[i].x + 0.03, positions[i].y, positions[i].z + 0.003);
|
||||
dummy.scale.set(1, 1, 1);
|
||||
dummy.updateMatrix();
|
||||
detailRef.current.setMatrixAt(i, dummy.matrix);
|
||||
}
|
||||
detailRef.current.instanceMatrix.needsUpdate = true;
|
||||
}
|
||||
}, [count, positions, dummy]);
|
||||
|
||||
return (
|
||||
<group>
|
||||
<instancedMesh ref={meshRef} args={[undefined, undefined, count]}>
|
||||
<boxGeometry args={[0.095, 0.028, 0.005]} />
|
||||
<meshStandardMaterial color={color || '#334155'} metalness={0.6} roughness={0.4} />
|
||||
</instancedMesh>
|
||||
<instancedMesh ref={detailRef} args={[undefined, undefined, count]}>
|
||||
<boxGeometry args={[0.02, 0.015, 0.002]} />
|
||||
<meshStandardMaterial color="#000" />
|
||||
</instancedMesh>
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
||||
const InstancedRJ45Ports = ({ count, positions, statuses, frontZ }) => {
|
||||
const meshRef = useRef();
|
||||
const innerRef = useRef();
|
||||
const tabRef = useRef();
|
||||
const ledRef = useRef();
|
||||
const dummy = useMemo(() => new THREE.Object3D(), []);
|
||||
|
||||
useEffect(() => {
|
||||
if (meshRef.current) {
|
||||
for (let i = 0; i < count; i++) {
|
||||
dummy.position.set(positions[i].x, positions[i].y + 0.012, frontZ + 0.006);
|
||||
dummy.scale.set(1, 1, 1);
|
||||
dummy.updateMatrix();
|
||||
meshRef.current.setMatrixAt(i, dummy.matrix);
|
||||
}
|
||||
meshRef.current.instanceMatrix.needsUpdate = true;
|
||||
}
|
||||
if (innerRef.current) {
|
||||
for (let i = 0; i < count; i++) {
|
||||
dummy.position.set(positions[i].x, positions[i].y + 0.012, frontZ + 0.007);
|
||||
dummy.scale.set(1, 1, 1);
|
||||
dummy.updateMatrix();
|
||||
innerRef.current.setMatrixAt(i, dummy.matrix);
|
||||
}
|
||||
innerRef.current.instanceMatrix.needsUpdate = true;
|
||||
}
|
||||
if (tabRef.current) {
|
||||
for (let i = 0; i < count; i++) {
|
||||
dummy.position.set(positions[i].x, positions[i].y + 0.015, frontZ + 0.008);
|
||||
dummy.scale.set(1, 1, 1);
|
||||
dummy.updateMatrix();
|
||||
tabRef.current.setMatrixAt(i, dummy.matrix);
|
||||
}
|
||||
tabRef.current.instanceMatrix.needsUpdate = true;
|
||||
}
|
||||
if (ledRef.current) {
|
||||
for (let i = 0; i < count; i++) {
|
||||
const status = statuses[i] || 'disconnected';
|
||||
const ledY = positions[i].y + (i % 2 === 0 ? 0.021 : -0.002);
|
||||
dummy.position.set(positions[i].x - 0.004, ledY, frontZ + 0.006);
|
||||
dummy.scale.set(1, 1, 1);
|
||||
dummy.updateMatrix();
|
||||
ledRef.current.setMatrixAt(i, dummy.matrix);
|
||||
}
|
||||
ledRef.current.instanceMatrix.needsUpdate = true;
|
||||
}
|
||||
}, [count, positions, statuses, frontZ, dummy]);
|
||||
|
||||
const ledColors = useMemo(() => {
|
||||
return statuses.map(s => s !== 'disconnected' ? (s === 'fault' ? '#ef4444' : '#22c55e') : '#475569');
|
||||
}, [statuses]);
|
||||
|
||||
return (
|
||||
<group>
|
||||
<instancedMesh ref={meshRef} args={[undefined, undefined, count]}>
|
||||
<boxGeometry args={[0.011, 0.011, 0.004]} />
|
||||
<meshStandardMaterial color="#cbd5e1" metalness={0.8} />
|
||||
</instancedMesh>
|
||||
<instancedMesh ref={innerRef} args={[undefined, undefined, count]}>
|
||||
<boxGeometry args={[0.009, 0.009, 0.002]} />
|
||||
<meshStandardMaterial color="#000" />
|
||||
</instancedMesh>
|
||||
<instancedMesh ref={tabRef} args={[undefined, undefined, count]}>
|
||||
<boxGeometry args={[0.007, 0.001, 0.001]} />
|
||||
<meshBasicMaterial color="#facc15" />
|
||||
</instancedMesh>
|
||||
<instancedMesh ref={ledRef} args={[undefined, undefined, count]}>
|
||||
<boxGeometry args={[0.002, 0.002, 0.001]} />
|
||||
<meshBasicMaterial toneMapped={false} />
|
||||
<instancedBufferAttribute attach="geometry-attributes-color" args={[new Float32Array(count * 3), 3]} />
|
||||
</instancedMesh>
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
||||
const InstancedSFPports = ({ count, positions, statuses, frontZ }) => {
|
||||
const meshRef = useRef();
|
||||
const innerRef = useRef();
|
||||
const connectorRef = useRef();
|
||||
const ledRef = useRef();
|
||||
const dummy = useMemo(() => new THREE.Object3D(), []);
|
||||
|
||||
useEffect(() => {
|
||||
if (meshRef.current) {
|
||||
for (let i = 0; i < count; i++) {
|
||||
dummy.position.set(positions[i].x, positions[i].y, frontZ + 0.006);
|
||||
dummy.scale.set(1, 1, 1);
|
||||
dummy.updateMatrix();
|
||||
meshRef.current.setMatrixAt(i, dummy.matrix);
|
||||
}
|
||||
meshRef.current.instanceMatrix.needsUpdate = true;
|
||||
}
|
||||
if (innerRef.current) {
|
||||
for (let i = 0; i < count; i++) {
|
||||
dummy.position.set(positions[i].x, positions[i].y, frontZ + 0.009);
|
||||
dummy.scale.set(1, 1, 1);
|
||||
dummy.updateMatrix();
|
||||
innerRef.current.setMatrixAt(i, dummy.matrix);
|
||||
}
|
||||
innerRef.current.instanceMatrix.needsUpdate = true;
|
||||
}
|
||||
if (connectorRef.current) {
|
||||
for (let i = 0; i < count; i++) {
|
||||
const isConnected = statuses[i] !== 'disconnected';
|
||||
dummy.position.set(positions[i].x, positions[i].y, frontZ + 0.012);
|
||||
dummy.scale.set(isConnected ? 1 : 0.001, 1, 1);
|
||||
dummy.updateMatrix();
|
||||
connectorRef.current.setMatrixAt(i, dummy.matrix);
|
||||
}
|
||||
connectorRef.current.instanceMatrix.needsUpdate = true;
|
||||
}
|
||||
if (ledRef.current) {
|
||||
for (let i = 0; i < count; i++) {
|
||||
const isConnected = statuses[i] !== 'disconnected';
|
||||
dummy.position.set(positions[i].x, positions[i].y + 0.01, frontZ + 0.009);
|
||||
dummy.scale.set(1, 1, 1);
|
||||
dummy.updateMatrix();
|
||||
ledRef.current.setMatrixAt(i, dummy.matrix);
|
||||
}
|
||||
ledRef.current.instanceMatrix.needsUpdate = true;
|
||||
}
|
||||
}, [count, positions, statuses, frontZ, dummy]);
|
||||
|
||||
const ledColors = useMemo(() => {
|
||||
return positions.map((_, i) => statuses[i] !== 'disconnected' ? '#22c55e' : '#475569');
|
||||
}, [positions, statuses]);
|
||||
|
||||
return (
|
||||
<group>
|
||||
<instancedMesh ref={meshRef} args={[undefined, undefined, count]}>
|
||||
<boxGeometry args={[0.02, 0.015, 0.005]} />
|
||||
<meshStandardMaterial color="#cbd5e1" metalness={0.9} roughness={0.3} />
|
||||
</instancedMesh>
|
||||
<instancedMesh ref={innerRef} args={[undefined, undefined, count]}>
|
||||
<boxGeometry args={[0.016, 0.011, 0.002]} />
|
||||
<meshStandardMaterial color="#1e293b" />
|
||||
</instancedMesh>
|
||||
<instancedMesh ref={connectorRef} args={[undefined, undefined, count]}>
|
||||
<boxGeometry args={[0.01, 0.002, 0.008]} />
|
||||
<meshStandardMaterial color="#3b82f6" />
|
||||
</instancedMesh>
|
||||
<instancedMesh ref={ledRef} args={[undefined, undefined, count]}>
|
||||
<coneGeometry args={[0.002, 0.004, 3]} />
|
||||
<meshBasicMaterial />
|
||||
</instancedMesh>
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
||||
const FirewallFace = ({ device, height, frontZ, isSelected }) => {
|
||||
const halfWidth = 0.4826 / 2;
|
||||
|
||||
return (
|
||||
<group>
|
||||
<mesh position={[-halfWidth + 0.02, 0, frontZ + 0.006]}>
|
||||
<boxGeometry args={[0.01, height, 0.003]} />
|
||||
<meshStandardMaterial color="#ef4444" emissive="#ef4444" emissiveIntensity={0.3} />
|
||||
</mesh>
|
||||
|
||||
<mesh position={[0, 0, frontZ + 0.0055]}>
|
||||
<boxGeometry args={[0.46, height - 0.004, 0.002]} />
|
||||
<meshStandardMaterial color="#2d3748" roughness={0.7} metalness={0.6} />
|
||||
</mesh>
|
||||
|
||||
<group position={[-0.08, 0, frontZ + 0.007]}>
|
||||
<mesh>
|
||||
<boxGeometry args={[0.12, 0.03, 0.002]} />
|
||||
<meshStandardMaterial color="#000000" roughness={0.1} metalness={0.8} />
|
||||
</mesh>
|
||||
<group position={[0, 0, 0.002]}>
|
||||
<mesh>
|
||||
<boxGeometry args={[0.10, 0.001, 0.001]} />
|
||||
<meshBasicMaterial color="#10b981" transparent opacity={0.5} />
|
||||
</mesh>
|
||||
</group>
|
||||
</group>
|
||||
|
||||
<group position={[0.1, 0, frontZ + 0.007]}>
|
||||
{!PERFORMANCE_MODE && Array.from({ length: 4 }).map((_, col) => (
|
||||
<mesh key={col} position={[-0.03 + col * 0.02, 0, 0]}>
|
||||
<circleGeometry args={[0.008, 6]} />
|
||||
<meshBasicMaterial color="#1a202c" />
|
||||
</mesh>
|
||||
))}
|
||||
{!PERFORMANCE_MODE && (
|
||||
<pointLight position={[0, 0, -0.01]} color="#f97316" intensity={0.8} distance={0.2} />
|
||||
)}
|
||||
</group>
|
||||
|
||||
<group position={[0.2, 0.01, frontZ + 0.008]}>
|
||||
{['#22c55e', '#22c55e', device.status === 'error' ? '#ef4444' : '#4b5563'].map((color, i) => (
|
||||
<mesh key={i} position={[0, -i * 0.01, 0]}>
|
||||
<circleGeometry args={[0.002, 8]} />
|
||||
<meshBasicMaterial color={color} />
|
||||
{i === 2 && device.status === 'error' && (
|
||||
<pointLight color="#ef4444" intensity={1} distance={0.05} />
|
||||
)}
|
||||
</mesh>
|
||||
))}
|
||||
</group>
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
||||
const DeviceModel = ({ device, rackHeight, isSelected, onClick, onHover, uHeight: propUHeight, position, rackDepth, slideEnabled = true }) => {
|
||||
const mesh = useRef();
|
||||
const [hovered, setHover] = useState(false);
|
||||
const [isExtended, setIsExtended] = useState(false);
|
||||
const [currentZ, setCurrentZ] = useState(0);
|
||||
|
||||
// 使用传入的 uHeight (默认为 0.04445m)
|
||||
const uHeight = propUHeight || 0.04445;
|
||||
const depth = rackDepth || 1.0; // 机柜深度,默认1米
|
||||
|
||||
// 滑轨动画 - 仅在展开时运行且slideEnabled为true
|
||||
useFrame(() => {
|
||||
if (!slideEnabled || (!isExtended && Math.abs(currentZ) < 0.01)) {
|
||||
if (currentZ !== 0) setCurrentZ(0);
|
||||
return;
|
||||
}
|
||||
const targetZ = isExtended ? 0.6 : 0;
|
||||
const lerpFactor = 0.1;
|
||||
setCurrentZ(prev => prev + (targetZ - prev) * lerpFactor);
|
||||
});
|
||||
|
||||
// 尺寸定义 (适配标准 0.6m 机柜)
|
||||
// 标准19英寸机柜内部净宽约 0.45m,设备面板宽 0.4826m (19inch)
|
||||
const chassisWidth = 0.44; // 机身宽度 440mm
|
||||
const chassisDepth = 0.8; // 机身深度 800mm
|
||||
const panelWidth = 0.4826; // 前面板宽度 482.6mm (19英寸)
|
||||
const panelDepth = 0.02; // 前面板厚度 20mm
|
||||
|
||||
// 计算实际位置(防止超出机柜)
|
||||
// 优先使用父组件传入的 position,如果未传入则内部计算(作为 fallback)
|
||||
// 注意:父组件 RackModel 已经计算好了 position=[0, yPos, 0]
|
||||
// 我们只需要处理设备的高度
|
||||
|
||||
const dHeight = device.height || device.u_height || 1;
|
||||
const height = dHeight * uHeight;
|
||||
|
||||
// 间隙调整:减少设备上下间隙,使其更饱满,减少视觉偏差
|
||||
const gap = 0.002; // 总间隙 2mm
|
||||
|
||||
// Z轴定位
|
||||
// 假设机柜中心为0,前沿为 depth/2
|
||||
// 设备前面板应该贴近前沿
|
||||
const frontZ = depth / 2 - 0.02;
|
||||
const panelZ = frontZ - panelDepth / 2;
|
||||
const chassisZ = frontZ - panelDepth - chassisDepth / 2;
|
||||
|
||||
// 颜色定义 (参考 CSS 变量)
|
||||
const colors = {
|
||||
server: '#3b82f6', // --color-device-server
|
||||
switch: '#22c55e', // --color-device-switch
|
||||
router: '#f59e0b', // --color-device-router
|
||||
firewall: '#ef4444', // --color-device-firewall
|
||||
storage: '#8b5cf6', // --color-device-storage
|
||||
default: '#3b82f6',
|
||||
status: {
|
||||
running: '#10b981', // --color-status-running
|
||||
warning: '#f59e0b', // --color-status-warning
|
||||
error: '#ef4444', // --color-status-error
|
||||
offline: '#6b7280' // --color-status-offline
|
||||
},
|
||||
panelBg: '#1e293b', // 深色面板背景
|
||||
panelLight: '#334155',
|
||||
text: '#f1f5f9'
|
||||
};
|
||||
|
||||
const getDeviceColor = (type) => {
|
||||
const t = type?.toLowerCase() || '';
|
||||
if (t.includes('server') || t.includes('服务器')) return colors.server;
|
||||
if (t.includes('switch') || t.includes('交换机')) return colors.switch;
|
||||
if (t.includes('router') || t.includes('路由器')) return colors.router;
|
||||
if (t.includes('firewall') || t.includes('防火墙')) return colors.firewall;
|
||||
if (t.includes('storage') || t.includes('存储')) return colors.storage;
|
||||
return colors.default;
|
||||
};
|
||||
|
||||
const deviceColor = getDeviceColor(device.type);
|
||||
const statusColor = colors.status[device.status] || colors.status.running;
|
||||
|
||||
// 渲染服务器前面板细节
|
||||
const renderServerFace = () => {
|
||||
const is2U = height > 0.08;
|
||||
const driveRows = is2U ? 2 : 1;
|
||||
const driveCols = PERFORMANCE_MODE ? 3 : 4;
|
||||
const driveWidth = 0.07;
|
||||
const driveHeight = 0.035;
|
||||
|
||||
const drivePositions = [];
|
||||
for (let row = 0; row < driveRows; row++) {
|
||||
for (let col = 0; col < driveCols; col++) {
|
||||
if (!is2U && row > 0) continue;
|
||||
const xPos = (col - 1) * (driveWidth + 0.005);
|
||||
const yPos = is2U ? (row === 0 ? 0.02 : -0.02) : 0;
|
||||
drivePositions.push({ x: xPos, y: yPos, z: 0 });
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<group>
|
||||
<mesh position={[0, 0, frontZ + 0.0055]}>
|
||||
<boxGeometry args={[0.44, height - 0.004, 0.002]} />
|
||||
<meshStandardMaterial color="#1e293b" roughness={0.7} metalness={0.5} />
|
||||
</mesh>
|
||||
|
||||
<group position={[-0.18, 0, frontZ + 0.006]}>
|
||||
<mesh position={[-0.02, 0, 0]}>
|
||||
<boxGeometry args={[0.04, height - 0.01, 0.002]} />
|
||||
<meshStandardMaterial color="#000000" roughness={0.2} />
|
||||
</mesh>
|
||||
<group position={[-0.025, 0.01, 0.002]}>
|
||||
<mesh rotation={[Math.PI/2, 0, 0]}>
|
||||
<cylinderGeometry args={[0.004, 0.004, 0.002, 16]} />
|
||||
<meshStandardMaterial color="#cbd5e1" metalness={0.8} />
|
||||
</mesh>
|
||||
{!PERFORMANCE_MODE && (
|
||||
<pointLight color="#22c55e" intensity={0.5} distance={0.05} />
|
||||
)}
|
||||
<mesh position={[0, 0, 0.0011]} rotation={[Math.PI/2, 0, 0]}>
|
||||
<cylinderGeometry args={[0.002, 0.002, 0.001, 16]} />
|
||||
<meshBasicMaterial color={device.status === 'offline' ? '#4b5563' : '#22c55e'} />
|
||||
</mesh>
|
||||
</group>
|
||||
<mesh position={[-0.015, 0.01, 0.002]} rotation={[Math.PI/2, 0, 0]}>
|
||||
<cylinderGeometry args={[0.002, 0.002, 0.002, 16]} />
|
||||
<meshStandardMaterial color="#3b82f6" />
|
||||
</mesh>
|
||||
<mesh position={[-0.02, -0.01, 0.002]}>
|
||||
<boxGeometry args={[0.006, 0.012, 0.002]} />
|
||||
<meshStandardMaterial color="#475569" />
|
||||
</mesh>
|
||||
<mesh position={[-0.02, -0.01, 0.001]}>
|
||||
<boxGeometry args={[0.004, 0.01, 0.001]} />
|
||||
<meshBasicMaterial color="#000" />
|
||||
</mesh>
|
||||
</group>
|
||||
|
||||
<group position={[0.05, 0, frontZ + 0.006]}>
|
||||
<InstancedDriveBays
|
||||
count={drivePositions.length}
|
||||
positions={drivePositions}
|
||||
color="#334155"
|
||||
hasDetail={!PERFORMANCE_MODE}
|
||||
/>
|
||||
</group>
|
||||
|
||||
<group position={[0.2, 0, frontZ + 0.006]}>
|
||||
<mesh position={[0, 0, 0.002]} rotation={[0, 0, Math.PI/2]}>
|
||||
<cylinderGeometry args={[0.005, 0.005, 0.002, 6]} />
|
||||
<meshStandardMaterial color="#3b82f6" />
|
||||
</mesh>
|
||||
<mesh position={[0, 0, 0.003]}>
|
||||
<boxGeometry args={[0.012, 0.006, 0.001]} />
|
||||
<meshBasicMaterial color="#000" />
|
||||
</mesh>
|
||||
</group>
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
||||
// 渲染存储设备前面板细节
|
||||
const renderStorageFace = () => {
|
||||
const rows = PERFORMANCE_MODE ? 2 : 3;
|
||||
const cols = PERFORMANCE_MODE ? 2 : 4;
|
||||
const bayWidth = 0.10;
|
||||
const bayHeight = 0.028;
|
||||
|
||||
const bayPositions = [];
|
||||
for (let row = 0; row < rows; row++) {
|
||||
for (let col = 0; col < cols; col++) {
|
||||
const xPos = (col - 1) * (bayWidth + 0.002);
|
||||
const yStep = (height - 0.02) / rows;
|
||||
const yPos = (rows - 1 - row) * yStep - (rows - 1) * yStep / 2;
|
||||
bayPositions.push({ x: xPos, y: yPos, z: 0 });
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<group>
|
||||
<mesh position={[0, 0, frontZ + 0.0055]}>
|
||||
<boxGeometry args={[0.44, height - 0.004, 0.002]} />
|
||||
<meshStandardMaterial color="#0f172a" roughness={0.8} />
|
||||
</mesh>
|
||||
|
||||
<group position={[0, 0, frontZ + 0.008]}>
|
||||
<InstancedStorageBays
|
||||
count={bayPositions.length}
|
||||
positions={bayPositions}
|
||||
color="#334155"
|
||||
/>
|
||||
</group>
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
||||
// 渲染交换机前面板细节
|
||||
const renderSwitchFace = () => {
|
||||
const getPortStatus = (portName) => {
|
||||
if (!device.cables || !Array.isArray(device.cables)) return 'disconnected';
|
||||
const cable = device.cables.find(c =>
|
||||
(c.sourceDeviceId === device.deviceId && c.sourcePort === portName) ||
|
||||
(c.targetDeviceId === device.deviceId && c.targetPort === portName)
|
||||
);
|
||||
return cable ? (cable.status || 'normal') : 'disconnected';
|
||||
};
|
||||
|
||||
const sfpCount = PERFORMANCE_MODE ? 2 : 4;
|
||||
const rj45GroupCount = PERFORMANCE_MODE ? 2 : 4;
|
||||
const rj45ColCount = PERFORMANCE_MODE ? 4 : 6;
|
||||
|
||||
const sfpPositions = [];
|
||||
const sfpStatuses = [];
|
||||
for (let i = 0; i < sfpCount; i++) {
|
||||
sfpPositions.push({ x: -0.13 + i * 0.025, y: -0.005, z: 0 });
|
||||
sfpStatuses.push(getPortStatus(`SFP+ ${i + 1}`));
|
||||
}
|
||||
|
||||
const rj45PortCount = rj45GroupCount * rj45ColCount * 2;
|
||||
const rj45Positions = [];
|
||||
const rj45Statuses = [];
|
||||
for (let groupIndex = 0; groupIndex < rj45GroupCount; groupIndex++) {
|
||||
const groupX = -0.02 + groupIndex * 0.09;
|
||||
for (let colIndex = 0; colIndex < rj45ColCount; colIndex++) {
|
||||
const portX = -0.03 + colIndex * 0.012;
|
||||
const globalCol = groupIndex * rj45ColCount + colIndex;
|
||||
const topPortNum = globalCol * 2 + 1;
|
||||
const bottomPortNum = globalCol * 2 + 2;
|
||||
const topStatus = getPortStatus(`Port ${topPortNum}`);
|
||||
const bottomStatus = getPortStatus(`Port ${bottomPortNum}`);
|
||||
rj45Positions.push({ x: groupX + portX, y: 0, z: 0 });
|
||||
rj45Statuses.push(topStatus);
|
||||
rj45Positions.push({ x: groupX + portX, y: -0.024, z: 0 });
|
||||
rj45Statuses.push(bottomStatus);
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<group>
|
||||
<mesh position={[0, 0, frontZ + 0.0055]}>
|
||||
<boxGeometry args={[0.44, height - 0.004, 0.002]} />
|
||||
<meshStandardMaterial color="#334155" roughness={0.6} metalness={0.4} />
|
||||
</mesh>
|
||||
|
||||
<group position={[-0.19, 0, frontZ + 0.006]}>
|
||||
<mesh position={[0, 0, 0]}>
|
||||
<boxGeometry args={[0.05, height - 0.015, 0.002]} />
|
||||
<meshStandardMaterial color="#1e293b" />
|
||||
</mesh>
|
||||
<mesh position={[-0.015, 0.005, 0.002]}>
|
||||
<boxGeometry args={[0.012, 0.01, 0.002]} />
|
||||
<meshStandardMaterial color="#94a3b8" />
|
||||
</mesh>
|
||||
<mesh position={[-0.015, 0.012, 0.002]}>
|
||||
<boxGeometry args={[0.012, 0.002, 0.001]} />
|
||||
<meshBasicMaterial color="#3b82f6" />
|
||||
</mesh>
|
||||
|
||||
<mesh position={[0.015, 0.005, 0.002]}>
|
||||
<boxGeometry args={[0.008, 0.012, 0.002]} />
|
||||
<meshStandardMaterial color="#cbd5e1" />
|
||||
</mesh>
|
||||
|
||||
<group position={[0, -0.01, 0.002]}>
|
||||
{['SYS', 'PWR'].map((label, idx) => (
|
||||
<group key={label} position={[(idx - 0.5) * 0.02, 0, 0]}>
|
||||
<mesh>
|
||||
<circleGeometry args={[0.0015, 8]} />
|
||||
<meshBasicMaterial color="#22c55e" />
|
||||
</mesh>
|
||||
</group>
|
||||
))}
|
||||
</group>
|
||||
</group>
|
||||
|
||||
<group position={[-0.13, -0.005, 0]}>
|
||||
<InstancedSFPports
|
||||
count={sfpCount}
|
||||
positions={sfpPositions}
|
||||
statuses={sfpStatuses}
|
||||
frontZ={frontZ}
|
||||
/>
|
||||
</group>
|
||||
|
||||
<group position={[-0.02, 0, 0]}>
|
||||
<InstancedRJ45Ports
|
||||
count={rj45PortCount}
|
||||
positions={rj45Positions}
|
||||
statuses={rj45Statuses}
|
||||
frontZ={frontZ}
|
||||
/>
|
||||
</group>
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
||||
// 渲染设备背板
|
||||
const renderBackPanel = () => {
|
||||
// Back face Z position (flush with back of chassis)
|
||||
const backZ = chassisZ - chassisDepth / 2;
|
||||
|
||||
// Rotate 180 deg to face backwards
|
||||
return (
|
||||
<group position={[0, 0, backZ]} rotation={[0, Math.PI, 0]}>
|
||||
{/* 基础背板 - 透明玻璃质感 (Reduced quality for performance) */}
|
||||
<mesh position={[0, 0, 0.001]}>
|
||||
<boxGeometry args={[chassisWidth, height - gap, 0.002]} />
|
||||
<meshStandardMaterial
|
||||
color="#94a3b8"
|
||||
transparent
|
||||
opacity={0.3}
|
||||
roughness={0.2}
|
||||
metalness={0.8}
|
||||
/>
|
||||
</mesh>
|
||||
|
||||
{/* 电源模块 (PSU) - 左侧 (从背面看是右侧,但我们旋转了) */}
|
||||
{/* 2个 PSU 垂直排列或并排 */}
|
||||
<group position={[0.25, 0, 0.002]}>
|
||||
{[-0.02, 0.02].map((yOffset, i) => (
|
||||
<group key={i} position={[0, height > 0.15 ? yOffset * 2 : 0, 0]}>
|
||||
{/* 如果高度够大(>1U),垂直排列,否则只显示一个或者水平排列 */}
|
||||
{/* 简化:1U设备只显示左边一个,2U显示两个 */}
|
||||
{(height > 0.15 || i === 0) && (
|
||||
<group position={[i === 1 && height <= 0.15 ? -0.06 : 0, 0, 0]}>
|
||||
{/* PSU 面板 */}
|
||||
<mesh>
|
||||
<boxGeometry args={[0.05, height > 0.15 ? 0.04 : 0.08, 0.004]} />
|
||||
<meshStandardMaterial color="#94a3b8" metalness={0.8} roughness={0.4} />
|
||||
</mesh>
|
||||
{/* 把手 */}
|
||||
<mesh position={[0, 0, 0.004]}>
|
||||
<boxGeometry args={[0.01, 0.02, 0.004]} />
|
||||
<meshStandardMaterial color="#000000" />
|
||||
</mesh>
|
||||
{/* 电源插口 C13 */}
|
||||
<mesh position={[0.015, 0, 0.002]}>
|
||||
<boxGeometry args={[0.012, 0.01, 0.002]} />
|
||||
<meshStandardMaterial color="#1a202c" />
|
||||
</mesh>
|
||||
{/* 状态灯 */}
|
||||
<mesh position={[-0.015, 0.01, 0.002]}>
|
||||
<circleGeometry args={[0.002, 8]} />
|
||||
<meshBasicMaterial color="#22c55e" />
|
||||
</mesh>
|
||||
</group>
|
||||
)}
|
||||
</group>
|
||||
))}
|
||||
</group>
|
||||
|
||||
{/* 风扇模块 (Fan Modules) - 中间 */}
|
||||
{/* 3-4个风扇阵列 */}
|
||||
<group position={[0, 0, 0.002]}>
|
||||
{Array.from({ length: 3 }).map((_, i) => (
|
||||
<group key={i} position={[-0.1 + i * 0.1, 0, 0]}>
|
||||
{/* 风扇网罩 */}
|
||||
<mesh>
|
||||
<boxGeometry args={[0.08, height - 0.03, 0.001]} />
|
||||
<meshStandardMaterial color="#1e293b" />
|
||||
</mesh>
|
||||
{/* 风扇叶片模拟 (纹理) */}
|
||||
<mesh position={[0, 0, 0.001]}>
|
||||
<circleGeometry args={[Math.min(0.035, (height-0.03)/2), 8]} />
|
||||
<meshBasicMaterial color="#334155" />
|
||||
</mesh>
|
||||
{/* 红色拉手 (热插拔) */}
|
||||
<mesh position={[0, -0.01, 0.003]}>
|
||||
<boxGeometry args={[0.01, 0.02, 0.002]} />
|
||||
<meshStandardMaterial color="#ef4444" />
|
||||
</mesh>
|
||||
</group>
|
||||
))}
|
||||
</group>
|
||||
|
||||
{/* 网卡/扩展模块 (PCIe/LOM) - 右侧 */}
|
||||
<group position={[-0.25, 0, 0.002]}>
|
||||
{/* 竖向 PCIe 挡板 */}
|
||||
{Array.from({ length: 2 }).map((_, i) => (
|
||||
<group key={i} position={[i * 0.08, 0, 0]}>
|
||||
<mesh>
|
||||
<boxGeometry args={[0.02, height - 0.02, 0.001]} />
|
||||
<meshStandardMaterial color="#cbd5e1" metalness={0.9} />
|
||||
</mesh>
|
||||
{/* 端口 (SFP+ or RJ45) */}
|
||||
<mesh position={[0, 0.01, 0.002]}>
|
||||
<boxGeometry args={[0.012, 0.012, 0.002]} />
|
||||
<meshStandardMaterial color="#000000" />
|
||||
</mesh>
|
||||
<mesh position={[0, -0.01, 0.002]}>
|
||||
<boxGeometry args={[0.012, 0.012, 0.002]} />
|
||||
<meshStandardMaterial color="#000000" />
|
||||
</mesh>
|
||||
</group>
|
||||
))}
|
||||
</group>
|
||||
</group>
|
||||
);
|
||||
};
|
||||
const renderDeviceFace = () => {
|
||||
const type = device.type?.toLowerCase() || '';
|
||||
if (type.includes('server') || type.includes('服务器')) return renderServerFace();
|
||||
if (type.includes('switch') || type.includes('交换机')) return renderSwitchFace();
|
||||
if (type.includes('storage') || type.includes('存储')) return renderStorageFace();
|
||||
if (type.includes('firewall') || type.includes('防火墙') || type.includes('router') || type.includes('路由器')) {
|
||||
return <FirewallFace device={device} height={height} frontZ={frontZ} isSelected={isSelected} />;
|
||||
}
|
||||
|
||||
// 默认通用设备样式
|
||||
return (
|
||||
<group>
|
||||
{/* 默认面板纹理 */}
|
||||
<mesh position={[0, 0, frontZ + 0.005]}>
|
||||
<boxGeometry args={[0.7, height - gap - 0.01, 0.002]} />
|
||||
<meshStandardMaterial color="#1e293b" roughness={0.6} />
|
||||
</mesh>
|
||||
{/* 装饰线 */}
|
||||
<mesh position={[0, 0, frontZ + 0.006]}>
|
||||
<boxGeometry args={[0.6, 0.005, 0.001]} />
|
||||
<meshStandardMaterial color={deviceColor} />
|
||||
</mesh>
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
||||
return (
|
||||
<group position={position || [0, 0, 0]}>
|
||||
<group
|
||||
position={[0, 0, currentZ]}
|
||||
onClick={(e) => {
|
||||
e.stopPropagation();
|
||||
setIsExtended(!isExtended);
|
||||
onClick && onClick(device);
|
||||
}}
|
||||
onPointerOver={(e) => {
|
||||
e.stopPropagation();
|
||||
setHover(true);
|
||||
onHover && onHover(device);
|
||||
}}
|
||||
onPointerOut={(e) => {
|
||||
setHover(false);
|
||||
onHover && onHover(null);
|
||||
}}
|
||||
>
|
||||
{/* 机身 (Chassis) - 深色金属 */}
|
||||
<mesh ref={mesh} position={[0, 0, chassisZ]}>
|
||||
<boxGeometry args={[chassisWidth, height - gap, chassisDepth]} />
|
||||
<meshStandardMaterial
|
||||
color="#333333" // 深灰色哑光金属
|
||||
roughness={0.9} // 哑光
|
||||
metalness={0.3}
|
||||
/>
|
||||
</mesh>
|
||||
|
||||
{/* 前面板底座 (Front Panel Base) */}
|
||||
<mesh position={[0, 0, panelZ]}>
|
||||
<boxGeometry args={[panelWidth, height - gap, panelDepth]} />
|
||||
<meshStandardMaterial
|
||||
color={hovered || isSelected ? "#666666" : "#555555"} // 稍浅的灰色塑料质感
|
||||
roughness={0.8}
|
||||
metalness={0.1}
|
||||
/>
|
||||
</mesh>
|
||||
|
||||
{/* 告警时的红色辉光 (设备两侧) */}
|
||||
{(device.status === 'error' || device.status === 'fault') && (
|
||||
<>
|
||||
<pointLight position={[-0.4, 0, frontZ]} color="#ff0000" intensity={0.8} distance={0.3} />
|
||||
<pointLight position={[0.4, 0, frontZ]} color="#ff0000" intensity={0.8} distance={0.3} />
|
||||
</>
|
||||
)}
|
||||
|
||||
{/* 设备特定前面板细节 */}
|
||||
{renderDeviceFace()}
|
||||
|
||||
{/* 设备背板细节 */}
|
||||
{renderBackPanel()}
|
||||
</group>
|
||||
|
||||
{/* 设备名称 (悬浮显示,避免遮挡细节) - 暂时禁用 */}
|
||||
{/* {hovered && (
|
||||
<Text
|
||||
position={[0, height/2 + 0.02, frontZ + 0.05]}
|
||||
fontSize={0.04}
|
||||
color="white"
|
||||
anchorX="center"
|
||||
anchorY="bottom"
|
||||
outlineWidth={0.002}
|
||||
outlineColor="#000000"
|
||||
>
|
||||
{device.name}
|
||||
</Text>
|
||||
)} */}
|
||||
|
||||
{/* 状态指示灯 (统一位置) */}
|
||||
<group position={[panelWidth/2 - 0.03, 0, frontZ + 0.01]}>
|
||||
{/* 灯座 */}
|
||||
<mesh position={[0, 0, -0.002]}>
|
||||
<circleGeometry args={[0.01, 16]} />
|
||||
<meshStandardMaterial color="#333" />
|
||||
</mesh>
|
||||
{/* 发光体 */}
|
||||
<mesh>
|
||||
<circleGeometry args={[0.006, 16]} />
|
||||
<meshBasicMaterial color={statusColor} toneMapped={false} />
|
||||
</mesh>
|
||||
{/* 光晕效果 */}
|
||||
<pointLight color={statusColor} intensity={0.5} distance={0.1} />
|
||||
</group>
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
||||
export default DeviceModel;
|
||||
@@ -0,0 +1,152 @@
|
||||
import React, { useMemo, useRef } from 'react';
|
||||
import { useFrame, useThree } from '@react-three/fiber';
|
||||
import * as THREE from 'three';
|
||||
|
||||
export const LOD_LEVELS = {
|
||||
HIGH: 0,
|
||||
MEDIUM: 1,
|
||||
LOW: 2
|
||||
};
|
||||
|
||||
export const LOD_DISTANCES = {
|
||||
HIGH: 5,
|
||||
MEDIUM: 10
|
||||
};
|
||||
|
||||
const createSimplifiedDeviceMesh = (device, uHeight, rackDepth, deviceColor, statusColor) => {
|
||||
const depth = rackDepth || 1.0;
|
||||
const dHeight = device.height || device.u_height || 1;
|
||||
const height = dHeight * uHeight;
|
||||
const chassisWidth = 0.44;
|
||||
const chassisDepth = 0.8;
|
||||
const panelWidth = 0.4826;
|
||||
const panelDepth = 0.02;
|
||||
const frontZ = depth / 2 - 0.02;
|
||||
const halfHeight = height / 2;
|
||||
|
||||
return (
|
||||
<group>
|
||||
<mesh position={[0, 0, frontZ - panelDepth / 2]}>
|
||||
<boxGeometry args={[panelWidth, height - 0.002, panelDepth]} />
|
||||
<meshStandardMaterial color={deviceColor} roughness={0.8} metalness={0.1} />
|
||||
</mesh>
|
||||
<mesh position={[0, 0, frontZ - panelDepth - chassisDepth / 2]}>
|
||||
<boxGeometry args={[chassisWidth, height - 0.002, chassisDepth]} />
|
||||
<meshStandardMaterial color="#333333" roughness={0.9} metalness={0.3} />
|
||||
</mesh>
|
||||
<mesh position={[panelWidth/2 - 0.03, halfHeight - 0.02, frontZ + 0.01]}>
|
||||
<circleGeometry args={[0.006, 16]} />
|
||||
<meshBasicMaterial color={statusColor} toneMapped={false} />
|
||||
</mesh>
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
||||
const createMediumDeviceMesh = (device, uHeight, rackDepth, deviceColor, statusColor) => {
|
||||
const depth = rackDepth || 1.0;
|
||||
const dHeight = device.height || device.u_height || 1;
|
||||
const height = dHeight * uHeight;
|
||||
const chassisWidth = 0.44;
|
||||
const chassisDepth = 0.8;
|
||||
const panelWidth = 0.4826;
|
||||
const panelDepth = 0.02;
|
||||
const frontZ = depth / 2 - 0.02;
|
||||
const is2U = height > 0.08;
|
||||
const halfHeight = height / 2;
|
||||
|
||||
return (
|
||||
<group>
|
||||
<mesh position={[0, 0, frontZ + 0.0055]}>
|
||||
<boxGeometry args={[0.44, height - 0.004, 0.002]} />
|
||||
<meshStandardMaterial color="#1e293b" roughness={0.7} metalness={0.5} />
|
||||
</mesh>
|
||||
<mesh position={[0, 0, frontZ - panelDepth / 2]}>
|
||||
<boxGeometry args={[panelWidth, height - 0.002, panelDepth]} />
|
||||
<meshStandardMaterial color={deviceColor} roughness={0.8} metalness={0.1} />
|
||||
</mesh>
|
||||
<mesh position={[0, 0, frontZ - panelDepth - chassisDepth / 2]}>
|
||||
<boxGeometry args={[chassisWidth, height - 0.002, chassisDepth]} />
|
||||
<meshStandardMaterial color="#333333" roughness={0.9} metalness={0.3} />
|
||||
</mesh>
|
||||
<group position={[-0.18, 0, frontZ + 0.006]}>
|
||||
<mesh position={[-0.02, 0, 0]}>
|
||||
<boxGeometry args={[0.04, height - 0.01, 0.002]} />
|
||||
<meshStandardMaterial color="#000000" roughness={0.2} />
|
||||
</mesh>
|
||||
<mesh position={[0, 0.01, 0.002]}>
|
||||
<boxGeometry args={[0.012, 0.01, 0.002]} />
|
||||
<meshStandardMaterial color="#cbd5e1" />
|
||||
</mesh>
|
||||
</group>
|
||||
<group position={[0.05, 0, frontZ + 0.006]}>
|
||||
{Array.from({ length: is2U ? 4 : 2 }).map((_, i) => (
|
||||
<mesh key={i} position={[(i - 1) * 0.08, 0, 0]}>
|
||||
<boxGeometry args={[0.06, 0.03, 0.004]} />
|
||||
<meshStandardMaterial color="#334155" roughness={0.6} />
|
||||
</mesh>
|
||||
))}
|
||||
</group>
|
||||
<mesh position={[panelWidth/2 - 0.03, halfHeight - 0.02, frontZ + 0.01]}>
|
||||
<circleGeometry args={[0.006, 16]} />
|
||||
<meshBasicMaterial color={statusColor} toneMapped={false} />
|
||||
</mesh>
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
||||
const LODManager = ({
|
||||
device,
|
||||
uHeight,
|
||||
rackDepth,
|
||||
position,
|
||||
deviceColor,
|
||||
statusColor,
|
||||
children,
|
||||
level = LOD_LEVELS.HIGH
|
||||
}) => {
|
||||
const groupRef = useRef();
|
||||
const { camera } = useThree();
|
||||
const [lodLevel, setLodLevel] = React.useState(LOD_LEVELS.HIGH);
|
||||
const distanceRef = useRef(0);
|
||||
|
||||
useFrame(() => {
|
||||
if (groupRef.current) {
|
||||
const distance = camera.position.distanceTo(groupRef.current.position);
|
||||
distanceRef.current = distance;
|
||||
|
||||
let newLevel = LOD_LEVELS.HIGH;
|
||||
if (distance > LOD_DISTANCES.MEDIUM) {
|
||||
newLevel = LOD_LEVELS.LOW;
|
||||
} else if (distance > LOD_DISTANCES.HIGH) {
|
||||
newLevel = LOD_LEVELS.MEDIUM;
|
||||
}
|
||||
|
||||
if (newLevel !== lodLevel) {
|
||||
setLodLevel(newLevel);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
if (level !== LOD_LEVELS.HIGH) {
|
||||
return children;
|
||||
}
|
||||
|
||||
const renderLODMesh = () => {
|
||||
switch (lodLevel) {
|
||||
case LOD_LEVELS.LOW:
|
||||
return createSimplifiedDeviceMesh(device, uHeight, rackDepth, deviceColor, statusColor);
|
||||
case LOD_LEVELS.MEDIUM:
|
||||
return createMediumDeviceMesh(device, uHeight, rackDepth, deviceColor, statusColor);
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<group ref={groupRef} position={position}>
|
||||
{lodLevel === LOD_LEVELS.HIGH ? children : renderLODMesh()}
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
||||
export default LODManager;
|
||||
@@ -0,0 +1,166 @@
|
||||
import React, { useMemo } from 'react';
|
||||
import DeviceModel from './DeviceModel';
|
||||
import LODManager, { LOD_LEVELS } from './LODManager';
|
||||
|
||||
const RackModel = ({
|
||||
rack,
|
||||
devices = [],
|
||||
selectedDeviceId,
|
||||
onDeviceClick,
|
||||
onDeviceLeave,
|
||||
onDeviceHover,
|
||||
onEditDevice,
|
||||
onAddNic,
|
||||
onAddPort,
|
||||
tooltipFields,
|
||||
deviceSlideEnabled = true
|
||||
}) => {
|
||||
const width = 0.6;
|
||||
const depth = 1.0;
|
||||
const uHeight = 0.04445;
|
||||
const postWidth = 0.05;
|
||||
|
||||
const rackHeight = rack?.height || 45;
|
||||
const height = rackHeight * uHeight + 0.2;
|
||||
|
||||
// 颜色映射
|
||||
const colors = {
|
||||
server: '#3b82f6',
|
||||
switch: '#22c55e',
|
||||
router: '#f59e0b',
|
||||
firewall: '#ef4444',
|
||||
storage: '#8b5cf6',
|
||||
default: '#3b82f6',
|
||||
status: {
|
||||
running: '#10b981',
|
||||
warning: '#f59e0b',
|
||||
error: '#ef4444',
|
||||
offline: '#6b7280'
|
||||
}
|
||||
};
|
||||
|
||||
const getDeviceColor = (type) => {
|
||||
const t = type?.toLowerCase() || '';
|
||||
if (t.includes('server') || t.includes('服务器')) return colors.server;
|
||||
if (t.includes('switch') || t.includes('交换机')) return colors.switch;
|
||||
if (t.includes('router') || t.includes('路由器')) return colors.router;
|
||||
if (t.includes('firewall') || t.includes('防火墙')) return colors.firewall;
|
||||
if (t.includes('storage') || t.includes('存储')) return colors.storage;
|
||||
return colors.default;
|
||||
};
|
||||
|
||||
// 生成机柜框架
|
||||
const frame = useMemo(() => {
|
||||
const materialProps = { color: "#333", roughness: 0.5, metalness: 0.8 };
|
||||
const postArgs = [postWidth, height, postWidth];
|
||||
const topBottomArgs = [width + 0.02, 0.02, depth + 0.02];
|
||||
|
||||
return (
|
||||
<group>
|
||||
<mesh position={[-width/2 + postWidth/2, height/2, -depth/2 + postWidth/2]}>
|
||||
<boxGeometry args={postArgs} />
|
||||
<meshStandardMaterial {...materialProps} />
|
||||
</mesh>
|
||||
<mesh position={[width/2 - postWidth/2, height/2, -depth/2 + postWidth/2]}>
|
||||
<boxGeometry args={postArgs} />
|
||||
<meshStandardMaterial {...materialProps} />
|
||||
</mesh>
|
||||
<mesh position={[-width/2 + postWidth/2, height/2, depth/2 - postWidth/2]}>
|
||||
<boxGeometry args={postArgs} />
|
||||
<meshStandardMaterial {...materialProps} />
|
||||
</mesh>
|
||||
<mesh position={[width/2 - postWidth/2, height/2, depth/2 - postWidth/2]}>
|
||||
<boxGeometry args={postArgs} />
|
||||
<meshStandardMaterial {...materialProps} />
|
||||
</mesh>
|
||||
|
||||
<mesh position={[0, height, 0]}>
|
||||
<boxGeometry args={topBottomArgs} />
|
||||
<meshStandardMaterial {...materialProps} />
|
||||
</mesh>
|
||||
<mesh position={[0, 0, 0]}>
|
||||
<boxGeometry args={topBottomArgs} />
|
||||
<meshStandardMaterial {...materialProps} />
|
||||
</mesh>
|
||||
|
||||
{[-1, 1].map((side) => (
|
||||
<mesh key={`side-${side}`} position={[side * (width/2 - 0.005), height/2, 0]}>
|
||||
<boxGeometry args={[0.01, height - 0.04, depth - 0.04]} />
|
||||
<meshStandardMaterial
|
||||
color="#2d3748"
|
||||
roughness={0.4}
|
||||
metalness={0.7}
|
||||
side={2}
|
||||
/>
|
||||
</mesh>
|
||||
))}
|
||||
|
||||
<mesh position={[0, height/2, -depth/2 + 0.005]}>
|
||||
<boxGeometry args={[width - 0.04, height - 0.04, 0.01]} />
|
||||
<meshPhysicalMaterial
|
||||
color="#e2e8f0"
|
||||
transparent
|
||||
opacity={0.2}
|
||||
roughness={0}
|
||||
metalness={0.9}
|
||||
transmission={0.8}
|
||||
thickness={0.01}
|
||||
/>
|
||||
<mesh position={[0.2, 0, 0.01]}>
|
||||
<boxGeometry args={[0.02, 0.15, 0.02]} />
|
||||
<meshStandardMaterial color="#333" />
|
||||
</mesh>
|
||||
</mesh>
|
||||
|
||||
</group>
|
||||
);
|
||||
}, [width, height, depth, postWidth]);
|
||||
|
||||
return (
|
||||
<group position={[0, 0.5, 0]}>
|
||||
{frame}
|
||||
|
||||
<group position={[0, 0.1, 0]}>
|
||||
{devices.map((device) => {
|
||||
const uStart = device.position || device.u_position || 1;
|
||||
const uSize = device.height || device.u_height || 1;
|
||||
const yPos = (uStart - 1) * uHeight + (uSize * uHeight) / 2;
|
||||
|
||||
const deviceColor = getDeviceColor(device.type);
|
||||
const statusColor = colors.status[device.status] || colors.status.running;
|
||||
|
||||
return (
|
||||
<LODManager
|
||||
key={device.id}
|
||||
device={device}
|
||||
uHeight={uHeight}
|
||||
rackDepth={depth}
|
||||
position={[0, yPos, 0]}
|
||||
deviceColor={deviceColor}
|
||||
statusColor={statusColor}
|
||||
level={LOD_LEVELS.HIGH}
|
||||
>
|
||||
<DeviceModel
|
||||
device={device}
|
||||
uHeight={uHeight}
|
||||
rackDepth={depth}
|
||||
position={[0, 0, 0]}
|
||||
isSelected={selectedDeviceId === device.id}
|
||||
onClick={onDeviceClick}
|
||||
onPointerOver={onDeviceHover}
|
||||
onPointerOut={onDeviceLeave}
|
||||
onEdit={onEditDevice}
|
||||
onAddNic={onAddNic}
|
||||
onAddPort={onAddPort}
|
||||
tooltipFields={tooltipFields}
|
||||
slideEnabled={deviceSlideEnabled}
|
||||
/>
|
||||
</LODManager>
|
||||
);
|
||||
})}
|
||||
</group>
|
||||
</group>
|
||||
);
|
||||
};
|
||||
|
||||
export default RackModel;
|
||||
@@ -0,0 +1,67 @@
|
||||
import React, { Suspense } from 'react';
|
||||
import { Canvas } from '@react-three/fiber';
|
||||
import { OrbitControls, PerspectiveCamera, Environment } from '@react-three/drei';
|
||||
const envMapUrl = '/assets/3d/env.hdr';
|
||||
import RackModel from './RackModel';
|
||||
|
||||
const Scene = ({ rack, devices, selectedDeviceId, onDeviceClick, onDeviceLeave, onDeviceHover, tooltipFields, deviceSlideEnabled = true }) => {
|
||||
return (
|
||||
<Canvas shadows dpr={[1, 1.2]} performance={{ min: 0.5 }}>
|
||||
<PerspectiveCamera makeDefault position={[3, 2, 4]} fov={50} />
|
||||
|
||||
<ambientLight intensity={0.5} color="#ffffff" />
|
||||
<pointLight position={[5, 8, 5]} intensity={2} color="#ffffff" castShadow />
|
||||
<directionalLight
|
||||
position={[10, 10, 5]}
|
||||
intensity={1}
|
||||
castShadow
|
||||
shadow-mapSize={[1024, 1024]}
|
||||
shadow-camera-far={20}
|
||||
shadow-camera-left={-10}
|
||||
shadow-camera-right={10}
|
||||
shadow-camera-top={10}
|
||||
shadow-camera-bottom={-10}
|
||||
/>
|
||||
|
||||
<Suspense fallback={null}>
|
||||
<Environment files={envMapUrl} blur={0.5} resolution={256} background={false} />
|
||||
</Suspense>
|
||||
|
||||
{/* Models */}
|
||||
<group position={[0, 0, 0]}>
|
||||
<RackModel
|
||||
rack={rack}
|
||||
devices={devices}
|
||||
selectedDeviceId={selectedDeviceId}
|
||||
onDeviceClick={onDeviceClick}
|
||||
onDeviceLeave={onDeviceLeave}
|
||||
onDeviceHover={onDeviceHover}
|
||||
tooltipFields={tooltipFields}
|
||||
deviceSlideEnabled={deviceSlideEnabled}
|
||||
/>
|
||||
</group>
|
||||
|
||||
{/* Controls */}
|
||||
<OrbitControls
|
||||
makeDefault
|
||||
minPolarAngle={0}
|
||||
maxPolarAngle={Math.PI / 1.75}
|
||||
enablePan={true}
|
||||
enableZoom={true}
|
||||
enableRotate={true}
|
||||
mouseButtons={{
|
||||
LEFT: 0, // 左键旋转
|
||||
MIDDLE: 2, // 中键平移
|
||||
RIGHT: 0 // 右键禁用
|
||||
}}
|
||||
touches={{
|
||||
ONE: 1, // 单指旋转
|
||||
TWO: 2 // 双指平移
|
||||
}}
|
||||
target={[0, (rack?.height || 45) * 0.04445 / 2 + 0.1, 0]} // Focus on middle of rack
|
||||
/>
|
||||
</Canvas>
|
||||
);
|
||||
};
|
||||
|
||||
export default Scene;
|
||||
@@ -0,0 +1,158 @@
|
||||
export const MATERIAL_TYPES = {
|
||||
RACK_FRAME: 'rack_frame',
|
||||
RAIL: 'rail',
|
||||
RAIL_HOLE: 'rail_hole',
|
||||
SIDE_PANEL: 'side_panel',
|
||||
TOP_PLATE: 'top_plate',
|
||||
BOTTOM_PLATE: 'bottom_plate',
|
||||
DEVICE_CHASSIS: 'device_chassis',
|
||||
DEVICE_PANEL: 'device_panel',
|
||||
DEVICE_PANEL_SELECTED: 'device_panel_selected',
|
||||
DRIVE_TRAY: 'drive_tray',
|
||||
DRIVE_TRAY_HANDLE: 'drive_tray_handle',
|
||||
LED_INDICATOR: 'led_indicator',
|
||||
LED_ERROR: 'led_error',
|
||||
SFP_PORT: 'sfp_port',
|
||||
RJ45_PORT: 'rj45_port',
|
||||
VENT_HOLE: 'vent_hole',
|
||||
BACK_PANEL: 'back_panel',
|
||||
PSU_MODULE: 'psu_module',
|
||||
FAN_MODULE: 'fan_module',
|
||||
TEXT_LABEL: 'text_label',
|
||||
};
|
||||
|
||||
export const MATERIAL_CONFIGS = {
|
||||
[MATERIAL_TYPES.RACK_FRAME]: {
|
||||
color: '#2a2a2a',
|
||||
metalness: 0.85,
|
||||
roughness: 0.4,
|
||||
envMapIntensity: 1.0,
|
||||
},
|
||||
[MATERIAL_TYPES.RAIL]: {
|
||||
color: '#3a3a3a',
|
||||
metalness: 0.9,
|
||||
roughness: 0.25,
|
||||
envMapIntensity: 1.2,
|
||||
},
|
||||
[MATERIAL_TYPES.RAIL_HOLE]: {
|
||||
color: '#000000',
|
||||
metalness: 0.0,
|
||||
roughness: 0.9,
|
||||
},
|
||||
[MATERIAL_TYPES.SIDE_PANEL]: {
|
||||
color: '#1a1a1a',
|
||||
metalness: 0.7,
|
||||
roughness: 0.6,
|
||||
envMapIntensity: 0.8,
|
||||
},
|
||||
[MATERIAL_TYPES.TOP_PLATE]: {
|
||||
color: '#222222',
|
||||
metalness: 0.8,
|
||||
roughness: 0.35,
|
||||
envMapIntensity: 1.0,
|
||||
},
|
||||
[MATERIAL_TYPES.BOTTOM_PLATE]: {
|
||||
color: '#222222',
|
||||
metalness: 0.8,
|
||||
roughness: 0.35,
|
||||
envMapIntensity: 1.0,
|
||||
},
|
||||
[MATERIAL_TYPES.DEVICE_CHASSIS]: {
|
||||
color: '#333333',
|
||||
metalness: 0.4,
|
||||
roughness: 0.85,
|
||||
},
|
||||
[MATERIAL_TYPES.DEVICE_PANEL]: {
|
||||
color: '#555555',
|
||||
metalness: 0.15,
|
||||
roughness: 0.75,
|
||||
},
|
||||
[MATERIAL_TYPES.DEVICE_PANEL_SELECTED]: {
|
||||
color: '#666666',
|
||||
metalness: 0.2,
|
||||
roughness: 0.7,
|
||||
},
|
||||
[MATERIAL_TYPES.DRIVE_TRAY]: {
|
||||
color: '#0f172a',
|
||||
metalness: 0.3,
|
||||
roughness: 0.8,
|
||||
},
|
||||
[MATERIAL_TYPES.DRIVE_TRAY_HANDLE]: {
|
||||
color: '#334155',
|
||||
metalness: 0.5,
|
||||
roughness: 0.5,
|
||||
},
|
||||
[MATERIAL_TYPES.LED_INDICATOR]: {
|
||||
color: '#10b981',
|
||||
emissive: '#10b981',
|
||||
emissiveIntensity: 0.8,
|
||||
metalness: 0.0,
|
||||
roughness: 0.3,
|
||||
toneMapped: false,
|
||||
},
|
||||
[MATERIAL_TYPES.LED_ERROR]: {
|
||||
color: '#ef4444',
|
||||
emissive: '#ef4444',
|
||||
emissiveIntensity: 1.0,
|
||||
metalness: 0.0,
|
||||
roughness: 0.2,
|
||||
toneMapped: false,
|
||||
},
|
||||
[MATERIAL_TYPES.SFP_PORT]: {
|
||||
color: '#3b82f6',
|
||||
metalness: 0.8,
|
||||
roughness: 0.2,
|
||||
transparent: true,
|
||||
opacity: 0.6,
|
||||
},
|
||||
[MATERIAL_TYPES.RJ45_PORT]: {
|
||||
color: '#1e293b',
|
||||
metalness: 0.6,
|
||||
roughness: 0.4,
|
||||
},
|
||||
[MATERIAL_TYPES.VENT_HOLE]: {
|
||||
color: '#1a202c',
|
||||
metalness: 0.2,
|
||||
roughness: 0.9,
|
||||
},
|
||||
[MATERIAL_TYPES.BACK_PANEL]: {
|
||||
color: '#64748b',
|
||||
metalness: 0.8,
|
||||
roughness: 0.3,
|
||||
transparent: true,
|
||||
opacity: 0.35,
|
||||
},
|
||||
[MATERIAL_TYPES.PSU_MODULE]: {
|
||||
color: '#475569',
|
||||
metalness: 0.85,
|
||||
roughness: 0.35,
|
||||
},
|
||||
[MATERIAL_TYPES.FAN_MODULE]: {
|
||||
color: '#1e293b',
|
||||
metalness: 0.4,
|
||||
roughness: 0.7,
|
||||
},
|
||||
[MATERIAL_TYPES.TEXT_LABEL]: {
|
||||
color: '#ffffff',
|
||||
metalness: 0.0,
|
||||
roughness: 1.0,
|
||||
},
|
||||
};
|
||||
|
||||
export const DEVICE_TYPE_COLORS = {
|
||||
server: '#3b82f6',
|
||||
switch: '#22c55e',
|
||||
router: '#f59e0b',
|
||||
firewall: '#ef4444',
|
||||
storage: '#8b5cf6',
|
||||
default: '#3b82f6',
|
||||
};
|
||||
|
||||
export const STATUS_COLORS = {
|
||||
running: '#10b981',
|
||||
warning: '#f59e0b',
|
||||
error: '#ef4444',
|
||||
offline: '#6b7280',
|
||||
maintenance: '#8b5cf6',
|
||||
fault: '#ef4444',
|
||||
};
|
||||
@@ -0,0 +1,90 @@
|
||||
import * as THREE from 'three';
|
||||
import { MATERIAL_CONFIGS, MATERIAL_TYPES } from './constants.js';
|
||||
|
||||
export const createDeviceChassisMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.DEVICE_CHASSIS];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} {...options} />;
|
||||
};
|
||||
|
||||
export const createDevicePanelMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.DEVICE_PANEL];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} {...options} />;
|
||||
};
|
||||
|
||||
export const createDevicePanelSelectedMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.DEVICE_PANEL_SELECTED];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} {...options} />;
|
||||
};
|
||||
|
||||
export const createDriveTrayMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.DRIVE_TRAY];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} {...options} />;
|
||||
};
|
||||
|
||||
export const createDriveTrayHandleMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.DRIVE_TRAY_HANDLE];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} {...options} />;
|
||||
};
|
||||
|
||||
export const createLedIndicatorMaterial = (color = '#10b981', options = {}) => {
|
||||
return <meshBasicMaterial color={color} toneMapped={false} {...options} />;
|
||||
};
|
||||
|
||||
export const createLedErrorMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.LED_ERROR];
|
||||
return <meshBasicMaterial color={config.color} toneMapped={false} {...options} />;
|
||||
};
|
||||
|
||||
export const createSfpPortMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.SFP_PORT];
|
||||
return <meshPhysicalMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} transparent opacity={config.opacity} {...options} />;
|
||||
};
|
||||
|
||||
export const createRj45PortMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.RJ45_PORT];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} {...options} />;
|
||||
};
|
||||
|
||||
export const createVentHoleMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.VENT_HOLE];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} {...options} />;
|
||||
};
|
||||
|
||||
export const createBackPanelMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.BACK_PANEL];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} transparent opacity={config.opacity} {...options} />;
|
||||
};
|
||||
|
||||
export const createPsuModuleMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.PSU_MODULE];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} {...options} />;
|
||||
};
|
||||
|
||||
export const createFanModuleMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.FAN_MODULE];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} {...options} />;
|
||||
};
|
||||
|
||||
export const createConsolePortMaterial = (color = '#facc15') => {
|
||||
return <meshStandardMaterial color={color} metalness={0.6} roughness={0.4} />;
|
||||
};
|
||||
|
||||
export const createUsbPortMaterial = (color = '#94a3b8') => {
|
||||
return <meshStandardMaterial color={color} metalness={0.5} roughness={0.5} />;
|
||||
};
|
||||
|
||||
export const createResetButtonMaterial = (color = '#ef4444') => {
|
||||
return <meshStandardMaterial color={color} metalness={0.3} roughness={0.6} />;
|
||||
};
|
||||
|
||||
export const createPcieCoverMaterial = (color = '#cbd5e1') => {
|
||||
return <meshStandardMaterial color={color} metalness={0.9} roughness={0.3} />;
|
||||
};
|
||||
|
||||
export const createPortLedMaterial = (color = '#4ade80') => {
|
||||
return <meshBasicMaterial color={color} transparent opacity={0.8} />;
|
||||
};
|
||||
|
||||
export const createPortLinkLedMaterial = (color = '#22c55e') => {
|
||||
return <meshBasicMaterial color={color} transparent opacity={1.0} />;
|
||||
};
|
||||
@@ -0,0 +1,4 @@
|
||||
export * from './constants.js';
|
||||
export * from './utils.js';
|
||||
export * from './rackFrame.js';
|
||||
export * from './devicePanel.js';
|
||||
@@ -0,0 +1,48 @@
|
||||
import * as THREE from 'three';
|
||||
import { MATERIAL_CONFIGS, MATERIAL_TYPES } from './constants.js';
|
||||
|
||||
export const createRackFrameMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.RACK_FRAME];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} envMapIntensity={config.envMapIntensity} {...options} />;
|
||||
};
|
||||
|
||||
export const createRailMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.RAIL];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} envMapIntensity={config.envMapIntensity} {...options} />;
|
||||
};
|
||||
|
||||
export const createRailHoleMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.RAIL_HOLE];
|
||||
return <meshBasicMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} {...options} />;
|
||||
};
|
||||
|
||||
export const createSidePanelMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.SIDE_PANEL];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} envMapIntensity={config.envMapIntensity} {...options} />;
|
||||
};
|
||||
|
||||
export const createTopPlateMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.TOP_PLATE];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} envMapIntensity={config.envMapIntensity} {...options} />;
|
||||
};
|
||||
|
||||
export const createBottomPlateMaterial = (options = {}) => {
|
||||
const config = MATERIAL_CONFIGS[MATERIAL_TYPES.BOTTOM_PLATE];
|
||||
return <meshStandardMaterial color={config.color} metalness={config.metalness} roughness={config.roughness} envMapIntensity={config.envMapIntensity} {...options} />;
|
||||
};
|
||||
|
||||
export const createTextLabelMaterial = (color = '#ffffff') => {
|
||||
return <meshBasicMaterial color={color} side={THREE.DoubleSide} />;
|
||||
};
|
||||
|
||||
export const createUMarkMaterial = () => {
|
||||
return <meshBasicMaterial color="#ffffff" side={THREE.DoubleSide} />;
|
||||
};
|
||||
|
||||
export const createOutlineMaterial = (color = '#3b82f6', opacity = 0.8) => {
|
||||
return <lineBasicMaterial color={color} transparent opacity={opacity} />;
|
||||
};
|
||||
|
||||
export const createSelectionMaterial = (color = '#3b82f6', opacity = 0.3) => {
|
||||
return <meshBasicMaterial color={color} transparent opacity={opacity} side={THREE.DoubleSide} />;
|
||||
};
|
||||
@@ -0,0 +1,26 @@
|
||||
import { MATERIAL_CONFIGS, MATERIAL_TYPES } from './constants.js';
|
||||
|
||||
export const getMaterialConfig = (type) => {
|
||||
return MATERIAL_CONFIGS[type] || null;
|
||||
};
|
||||
|
||||
export const getMaterialType = (type) => {
|
||||
return MATERIAL_TYPES[type] || null;
|
||||
};
|
||||
|
||||
export const createMaterialConfig = (type, options = {}) => {
|
||||
const baseConfig = MATERIAL_CONFIGS[type];
|
||||
if (!baseConfig) {
|
||||
console.warn(`Material type "${type}" not found in configurations`);
|
||||
return null;
|
||||
}
|
||||
return { ...baseConfig, ...options };
|
||||
};
|
||||
|
||||
export const mergeMaterialOptions = (type, options = {}) => {
|
||||
const baseConfig = MATERIAL_CONFIGS[type];
|
||||
if (!baseConfig) {
|
||||
return options;
|
||||
}
|
||||
return { ...baseConfig, ...options };
|
||||
};
|
||||
Reference in New Issue
Block a user