|
@@ -18,7 +18,20 @@
|
|
|
class="panel-slider"
|
|
|
@change="changeTransparency"
|
|
|
/>
|
|
|
- <div class="brightness">
|
|
|
+ <div class="brightness" style="margin: 90px 0 0 25px;">
|
|
|
+ <span>低</span>
|
|
|
+ <span>中</span>
|
|
|
+ <span>高</span>
|
|
|
+ </div>
|
|
|
+ <el-slider
|
|
|
+ v-model="transparencyTwo"
|
|
|
+ :step="50"
|
|
|
+ show-stops
|
|
|
+ :show-tooltip="false"
|
|
|
+ class="panel-slider2"
|
|
|
+ @change="changeTransparencyTwo"
|
|
|
+ />
|
|
|
+ <div class="brightness" style="margin: 50px 0 0 25px;">
|
|
|
<span>低</span>
|
|
|
<span>中</span>
|
|
|
<span>高</span>
|
|
@@ -81,9 +94,15 @@ import * as THREE from 'three';
|
|
|
import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader.js';
|
|
|
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js';
|
|
|
import { onMounted, onUnmounted, reactive, ref } from 'vue';
|
|
|
+import { useScreenStore } from '@/pinia/modules/screen'
|
|
|
+// 单灯控制
|
|
|
+import { updateTunnelLamp } from "@/api/tunnel";
|
|
|
+// 四路控制
|
|
|
+import { deviceSwitch } from "@/api/device";
|
|
|
// 标题图片
|
|
|
import titleUrl from '@/assets/title_bg.png'
|
|
|
|
|
|
+const useScreen = useScreenStore()
|
|
|
// 获取容器引用
|
|
|
const container = ref(null);
|
|
|
|
|
@@ -110,7 +129,7 @@ const initThree = () => {
|
|
|
0.1,
|
|
|
1000
|
|
|
);
|
|
|
- camera.position.set(20, 20, 20);
|
|
|
+ camera.position.set(30, 20, 30);
|
|
|
|
|
|
// 创建渲染器
|
|
|
renderer = new THREE.WebGLRenderer({ antialias: true });
|
|
@@ -133,15 +152,17 @@ const initThree = () => {
|
|
|
};
|
|
|
|
|
|
// 存储模型数据
|
|
|
-let material = reactive({})
|
|
|
+let materialOne = reactive({})
|
|
|
+let materialTwo = reactive({})
|
|
|
+
|
|
|
|
|
|
// 加载 GLB 模型
|
|
|
const loadModel = () => {
|
|
|
const loader = new GLTFLoader();
|
|
|
- loader.load('../../public/智慧隧道.glb', function (gltf){
|
|
|
+ loader.load('../../public/隧道1.glb', function (gltf){
|
|
|
let object = gltf.scene
|
|
|
- object.children[0].children[1].material.opacity = 0.2
|
|
|
- material = object.children[0].children[1].material
|
|
|
+ materialOne = object.children[0].children[3].material
|
|
|
+ materialTwo = object.children[19].children[3].material
|
|
|
//gltf.scene获取gltf文件包含的模型数据
|
|
|
scene.add(gltf.scene)
|
|
|
}, function (xhr) {
|
|
@@ -149,7 +170,7 @@ const loadModel = () => {
|
|
|
console.log((xhr.loaded / xhr.total * 100) + '% loaded');
|
|
|
}, function (error) {
|
|
|
// 加载错误回调
|
|
|
- console.error('An error happened', error);
|
|
|
+ // console.error('An error happened', error);
|
|
|
}
|
|
|
)
|
|
|
};
|
|
@@ -161,11 +182,79 @@ const animate = () => {
|
|
|
renderer.render(scene, camera);
|
|
|
};
|
|
|
|
|
|
+// 亮度调整
|
|
|
+const transparency = ref(0)
|
|
|
+const changeTransparency = (e) => {
|
|
|
+ let option = {
|
|
|
+ 0: 0.8,
|
|
|
+ 50: 0.5,
|
|
|
+ 100: 0.2
|
|
|
+ }
|
|
|
+ materialOne.opacity = option[e]
|
|
|
+}
|
|
|
+
|
|
|
+const transparencyTwo = ref(0)
|
|
|
+const changeTransparencyTwo = (e) => {
|
|
|
+ let option = {
|
|
|
+ 0: 0.8,
|
|
|
+ 50: 0.5,
|
|
|
+ 100: 0.2
|
|
|
+ }
|
|
|
+ materialTwo.opacity = option[e]
|
|
|
+}
|
|
|
+
|
|
|
+// 灯光数据
|
|
|
+const lampData = reactive({})
|
|
|
+
|
|
|
+const judgeLamp = () => {
|
|
|
+ if (lampData.switchType === '单灯控制器') {
|
|
|
+ let val1 = lampData.lampValue1
|
|
|
+ let val2 = lampData.lampValue2
|
|
|
+ let judge = {
|
|
|
+ 33: [0.8,0],
|
|
|
+ 66: [0.5,50],
|
|
|
+ 100: [0.2,100],
|
|
|
+ }
|
|
|
+ transparency.value = judge[val1][1]
|
|
|
+ materialOne.opacity = judge[val1][0]
|
|
|
+ transparencyTwo.value = judge[val1][1]
|
|
|
+ materialTwo.opacity = judge[val2][0]
|
|
|
+ } else if(lampData.switchType === '四路控制器') {
|
|
|
+ let deviceLamp1 = lampData.devices[0].deviceRelays
|
|
|
+ let deviceLamp2 = lampData.devices[1].deviceRelays
|
|
|
+ let count1 = 0
|
|
|
+ let count2 = 0
|
|
|
+ deviceLamp1.forEach(item => {
|
|
|
+ item.state ? count1++ : count1
|
|
|
+ })
|
|
|
+ deviceLamp2.forEach(item => {
|
|
|
+ item.state ? count2++ : count2
|
|
|
+ })
|
|
|
+ let judgeWay = {
|
|
|
+ 1: [0.8,0],
|
|
|
+ 2: [0.5,50],
|
|
|
+ 3: [0.2,100],
|
|
|
+ 4: [0.2,100]
|
|
|
+ }
|
|
|
+ transparency.value = judgeWay[count1][1]
|
|
|
+ materialOne.opacity = judgeWay[count1][0]
|
|
|
+ transparencyTwo.value = judgeWay[count2][1]
|
|
|
+ materialTwo.opacity = judgeWay[count2][0]
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
// 组件挂载时初始化
|
|
|
onMounted(() => {
|
|
|
+ Object.assign(lampData, useScreen.controllerData)
|
|
|
initThree();
|
|
|
loadModel();
|
|
|
animate();
|
|
|
+ setTimeout(function () {
|
|
|
+ judgeLamp()
|
|
|
+ },500)
|
|
|
});
|
|
|
|
|
|
// 组件卸载时清理资源
|
|
@@ -174,22 +263,6 @@ onUnmounted(() => {
|
|
|
renderer.dispose();
|
|
|
}
|
|
|
});
|
|
|
-
|
|
|
-// 亮度调整
|
|
|
-
|
|
|
-const transparency = ref(0)
|
|
|
-
|
|
|
-
|
|
|
-const changeTransparency = (e) => {
|
|
|
- let option = {
|
|
|
- 0: 0.8,
|
|
|
- 50: 0.5,
|
|
|
- 100: 0.2
|
|
|
- }
|
|
|
- material.opacity = option[e]
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="less">
|
|
@@ -242,13 +315,13 @@ const changeTransparency = (e) => {
|
|
|
.formBox_two{
|
|
|
position: absolute;
|
|
|
right: 20px;
|
|
|
- top: 150px;
|
|
|
+ top: 250px;
|
|
|
z-index:2;
|
|
|
}
|
|
|
.vehicleBox{
|
|
|
position: absolute;
|
|
|
right: 20px;
|
|
|
- top: 280px;
|
|
|
+ top: 380px;
|
|
|
z-index:2;
|
|
|
.vehicleData{
|
|
|
display: flex;
|
|
@@ -272,7 +345,7 @@ const changeTransparency = (e) => {
|
|
|
.panel{
|
|
|
position: relative;
|
|
|
width: 300px;
|
|
|
- height: 120px;
|
|
|
+ height: 200px;
|
|
|
border: 1px solid rgba(25,186,139,0.17);
|
|
|
padding: 0 0.1875rem 0.5rem;
|
|
|
margin-bottom: 0.1875rem;
|
|
@@ -334,8 +407,13 @@ const changeTransparency = (e) => {
|
|
|
top: 60px;
|
|
|
left: 25px;
|
|
|
}
|
|
|
+ .panel-slider2{
|
|
|
+ width: 250px;
|
|
|
+ position: absolute;
|
|
|
+ top: 120px;
|
|
|
+ left: 25px;
|
|
|
+ }
|
|
|
.brightness{
|
|
|
- margin: 90px 0 0 25px;
|
|
|
width: 250px;
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|