gate.threejs.qd.ts 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. import * as THREE from 'three';
  2. import { CSS2DObject } from 'three/examples/jsm/renderers/CSS2DRenderer.js';
  3. import { getTextCanvas, renderVideo } from '/@/utils/threejs/util';
  4. import UseThree from '../../../../utils/threejs/useThree';
  5. import { drawHot } from '/@/utils/threejs/util';
  6. import { useAppStore } from '/@/store/modules/app';
  7. // import * as dat from 'dat.gui';
  8. // const gui = new dat.GUI();
  9. // gui.domElement.style = 'position:absolute;top:100px;left:10px;z-index:99999999999999';
  10. class Fm3 {
  11. modelName = 'fm3';
  12. model; //
  13. group;
  14. isLRAnimation = true; // 是否开启左右摇摆动画
  15. direction = 1; // 摇摆方向
  16. animationTimer: NodeJS.Timeout | null = null; // 摇摆开启定时器
  17. player1;
  18. player2;
  19. deviceDetailCSS3D;
  20. playerStartClickTime1 = new Date().getTime();
  21. playerStartClickTime2 = new Date().getTime();
  22. fmClock = new THREE.Clock();
  23. mixers: THREE.AnimationMixer | undefined;
  24. appStore = useAppStore();
  25. backDamperOpenMesh;
  26. backDamperClosedMesh;
  27. frontDamperOpenMesh;
  28. frontDamperClosedMesh;
  29. clipActionArr = {
  30. frontDoor: null as unknown as THREE.AnimationAction,
  31. backDoor: null as unknown as THREE.AnimationAction,
  32. };
  33. constructor(model) {
  34. this.model = model;
  35. }
  36. addLight() {
  37. const directionalLight = new THREE.DirectionalLight(0xffffff, 1.5);
  38. directionalLight.position.set(344, 690, 344);
  39. this.group?.add(directionalLight);
  40. directionalLight.target = this.group as THREE.Object3D;
  41. const pointLight2 = new THREE.PointLight(0xffeeee, 1, 300);
  42. pointLight2.position.set(-4, 10, 1.8);
  43. pointLight2.shadow.bias = 0.05;
  44. this.group?.add(pointLight2);
  45. const pointLight3 = new THREE.PointLight(0xffeeee, 1, 200);
  46. pointLight3.position.set(-0.5, -0.5, 0.75);
  47. pointLight3.shadow.bias = 0.05;
  48. this.group?.add(pointLight3);
  49. }
  50. // 重置摄像头
  51. resetCamera() {
  52. this.model.camera.far = 274;
  53. this.model.orbitControls?.update();
  54. this.model.camera.updateProjectionMatrix();
  55. }
  56. // 设置模型位置
  57. setModalPosition() {
  58. this.group?.scale.set(22, 22, 22);
  59. this.group?.position.set(-20, 20, 9);
  60. }
  61. /* 添加监控数据 */
  62. addMonitorText(selectData) {
  63. if (!this.group) {
  64. return;
  65. }
  66. const screenDownText = VENT_PARAM['modalText']
  67. ? VENT_PARAM['modalText']
  68. : History_Type['type'] == 'remote'
  69. ? `国能神东煤炭集团监制`
  70. : '煤炭科学技术研究院有限公司研制';
  71. const screenDownTextX = 80 - (screenDownText.length - 10) * 6;
  72. const textArr = [
  73. {
  74. text: `远程控制自动风门`,
  75. font: 'normal 30px Arial',
  76. color: '#00FF00',
  77. strokeStyle: '#007400',
  78. x: 120,
  79. y: 100,
  80. },
  81. {
  82. text: `净通行高度(m):`,
  83. font: 'normal 30px Arial',
  84. color: '#00FF00',
  85. strokeStyle: '#007400',
  86. x: 0,
  87. y: 155,
  88. },
  89. {
  90. text: `${selectData.fclearheight ? selectData.fclearheight : '-'}`,
  91. font: 'normal 30px Arial',
  92. color: '#00FF00',
  93. strokeStyle: '#007400',
  94. x: 290,
  95. y: 155,
  96. },
  97. {
  98. text: `净通行宽度(m): `,
  99. font: 'normal 30px Arial',
  100. color: '#00FF00',
  101. strokeStyle: '#007400',
  102. x: 0,
  103. y: 215,
  104. },
  105. {
  106. text: ` ${selectData.fclearwidth ? selectData.fclearwidth : '-'}`,
  107. font: 'normal 30px Arial',
  108. color: '#00FF00',
  109. strokeStyle: '#007400',
  110. x: 280,
  111. y: 215,
  112. },
  113. {
  114. text: `故障诊断:`,
  115. font: 'normal 30px Arial',
  116. color: '#00FF00',
  117. strokeStyle: '#007400',
  118. x: 0,
  119. y: 275,
  120. },
  121. {
  122. text: `${selectData.warnLevel_str ? selectData.warnLevel_str : '-'}`,
  123. font: 'normal 30px Arial',
  124. color: '#00FF00',
  125. strokeStyle: '#007400',
  126. x: 280,
  127. y: 275,
  128. },
  129. {
  130. text: screenDownText,
  131. font: 'normal 28px Arial',
  132. color: '#00FF00',
  133. strokeStyle: '#007400',
  134. x: screenDownTextX,
  135. y: 325,
  136. },
  137. ];
  138. //
  139. getTextCanvas(526, 346, textArr, '').then((canvas: HTMLCanvasElement) => {
  140. const textMap = new THREE.CanvasTexture(canvas); // 关键一步
  141. textMap.colorSpace = THREE.SRGBColorSpace;
  142. const textMaterial = new THREE.MeshBasicMaterial({
  143. // 关于材质并未讲解 实操即可熟悉 这里是漫反射类似纸张的材质,对应的就有高光类似金属的材质.
  144. map: textMap, // 设置纹理贴图
  145. transparent: true,
  146. side: THREE.FrontSide, // 这里是双面渲染的意思
  147. });
  148. textMaterial.blending = THREE.CustomBlending;
  149. const monitorPlane = this.group.getObjectByName('monitorText');
  150. if (monitorPlane) {
  151. monitorPlane.material = textMaterial;
  152. } else {
  153. const planeGeometry = new THREE.PlaneGeometry(526, 346); // 平面3维几何体PlaneGeometry
  154. const planeMesh = new THREE.Mesh(planeGeometry, textMaterial);
  155. planeMesh.name = 'monitorText';
  156. planeMesh.scale.set(0.002, 0.002, 0.002);
  157. planeMesh.position.set(3.685, 0.09, -0.41);
  158. this.group.add(planeMesh);
  159. }
  160. textMap.dispose();
  161. });
  162. }
  163. /** 添加热点 */
  164. drawHots() {
  165. const hotPositions = [
  166. { x: -0.37, y: 0.26, z: -0.32 },
  167. { x: 0.28, y: -0.2, z: -0.43 },
  168. { x: 0.55, y: -0.22, z: -0.38 },
  169. ];
  170. for (let i = 0; i < 3; i++) {
  171. const hotPoint = drawHot(0.1);
  172. const position = hotPositions[i];
  173. hotPoint.scale.set(0.1, 0.1, 0.1);
  174. hotPoint.position.set(position.x, position.y, position.z);
  175. hotPoint.name = 'hotPoint' + i;
  176. this.group?.add(hotPoint);
  177. }
  178. }
  179. /* 风门动画 */
  180. render() {
  181. if (!this.model) {
  182. return;
  183. }
  184. if (this.isLRAnimation && this.group) {
  185. // 左右摇摆动画
  186. if (Math.abs(this.group.rotation.y) >= 0.2) {
  187. this.direction = -this.direction;
  188. this.group.rotation.y += 0.00002 * 30 * this.direction;
  189. } else {
  190. this.group.rotation.y += 0.00002 * 30 * this.direction;
  191. }
  192. }
  193. if (this.mixers && this.fmClock.running) {
  194. this.mixers.update(2);
  195. }
  196. }
  197. /* 点击风窗,风窗全屏 */
  198. mousedownModel(intersects: THREE.Intersection<THREE.Object3D<THREE.Event>>[]) {
  199. this.isLRAnimation = false;
  200. if (this.animationTimer) {
  201. clearTimeout(this.animationTimer);
  202. this.animationTimer = null;
  203. }
  204. }
  205. mouseUpModel() {
  206. // 10s后开始摆动
  207. if (!this.animationTimer && !this.isLRAnimation) {
  208. this.animationTimer = setTimeout(() => {
  209. this.isLRAnimation = true;
  210. }, 10000);
  211. }
  212. }
  213. /* 提取风门序列帧,初始化前后门动画 */
  214. initAnimation() {
  215. const fmGroup = this.group?.getObjectByName('Fm-door');
  216. if (fmGroup) {
  217. const tracks = fmGroup.animations[0].tracks;
  218. const fontTracks: any[] = [],
  219. backTracks: any[] = [];
  220. for (let i = 0; i < tracks.length; i++) {
  221. const track = tracks[i];
  222. if (track.name.startsWith('qianmen')) {
  223. fontTracks.push(track);
  224. } else if (track.name.startsWith('houmen')) {
  225. backTracks.push(track);
  226. }
  227. }
  228. this.mixers = new THREE.AnimationMixer(fmGroup);
  229. const frontDoor = new THREE.AnimationClip('frontDoor', 4, fontTracks);
  230. const frontClipAction = this.mixers.clipAction(frontDoor, fmGroup);
  231. frontClipAction.clampWhenFinished = true;
  232. frontClipAction.loop = THREE.LoopOnce;
  233. this.clipActionArr.frontDoor = frontClipAction;
  234. const backDoor = new THREE.AnimationClip('backDoor', 4, backTracks);
  235. const backClipAction = this.mixers.clipAction(backDoor, fmGroup);
  236. backClipAction.clampWhenFinished = true;
  237. backClipAction.loop = THREE.LoopOnce;
  238. this.clipActionArr.backDoor = backClipAction;
  239. }
  240. }
  241. deviceDetailCard(position = { x: 0, y: 0, z: 0 }) {
  242. const element = document.getElementById('deviceCard') as HTMLElement;
  243. if (element) {
  244. this.deviceDetailCSS3D = new CSS2DObject(element);
  245. this.deviceDetailCSS3D.name = 'deviceCard';
  246. this.deviceDetailCSS3D.position.set(position.x, position.y, position.z);
  247. this.deviceDetailCSS3D.visible = false;
  248. // this.model.scene.add(this.deviceDetailCSS3D);
  249. this.group.add(this.deviceDetailCSS3D);
  250. }
  251. }
  252. // 播放动画
  253. play(handlerState, timeScale = 0.01) {
  254. let handler = () => {};
  255. if (this.clipActionArr.frontDoor && this.clipActionArr.backDoor) {
  256. switch (handlerState) {
  257. case 1: // 打开前门
  258. handler = () => {
  259. this.clipActionArr.frontDoor.paused = true;
  260. this.clipActionArr.frontDoor.reset();
  261. this.clipActionArr.frontDoor.time = 1.2;
  262. this.clipActionArr.frontDoor.timeScale = timeScale;
  263. // this.clipActionArr.frontDoor.clampWhenFinished = true;
  264. this.clipActionArr.frontDoor.play();
  265. this.fmClock.start();
  266. // 显示打开前门文字
  267. if (this.frontDamperOpenMesh) this.frontDamperOpenMesh.visible = true;
  268. if (this.frontDamperClosedMesh) this.frontDamperClosedMesh.visible = false;
  269. };
  270. break;
  271. case 2: // 关闭前门
  272. handler = () => {
  273. this.clipActionArr.frontDoor.paused = true;
  274. this.clipActionArr.frontDoor.reset(); //
  275. this.clipActionArr.frontDoor.time = 4;
  276. this.clipActionArr.frontDoor.timeScale = -timeScale;
  277. // this.clipActionArr.frontDoor.clampWhenFinished = true;
  278. this.clipActionArr.frontDoor.play();
  279. this.fmClock.start();
  280. if (this.frontDamperOpenMesh) this.frontDamperOpenMesh.visible = false;
  281. if (this.frontDamperClosedMesh) this.frontDamperClosedMesh.visible = true;
  282. };
  283. break;
  284. case 3: // 打开后门
  285. handler = () => {
  286. this.clipActionArr.backDoor.paused = true;
  287. this.clipActionArr.backDoor.reset();
  288. this.clipActionArr.backDoor.time = 1.2;
  289. this.clipActionArr.backDoor.timeScale = timeScale;
  290. // this.clipActionArr.backDoor.clampWhenFinished = true;
  291. this.clipActionArr.backDoor.play();
  292. this.fmClock.start();
  293. if (this.backDamperOpenMesh) this.backDamperOpenMesh.visible = true;
  294. if (this.backDamperClosedMesh) this.backDamperClosedMesh.visible = false;
  295. };
  296. break;
  297. case 4: // 关闭后门
  298. handler = () => {
  299. this.clipActionArr.backDoor.paused = true;
  300. this.clipActionArr.backDoor.reset();
  301. this.clipActionArr.backDoor.time = 4;
  302. this.clipActionArr.backDoor.timeScale = -timeScale;
  303. // this.clipActionArr.backDoor.clampWhenFinished = true;
  304. this.clipActionArr.backDoor.play();
  305. this.fmClock.start();
  306. if (this.backDamperOpenMesh) this.backDamperOpenMesh.visible = false;
  307. if (this.backDamperClosedMesh) this.backDamperClosedMesh.visible = true;
  308. };
  309. break;
  310. case 5: // 打开前后门
  311. handler = () => {
  312. this.clipActionArr.frontDoor.paused = true;
  313. this.clipActionArr.frontDoor.reset();
  314. this.clipActionArr.frontDoor.time = 1.2;
  315. this.clipActionArr.frontDoor.timeScale = timeScale;
  316. // this.clipActionArr.frontDoor.clampWhenFinished = true;
  317. this.clipActionArr.frontDoor.play();
  318. this.fmClock.start();
  319. // 显示打开前门文字
  320. if (this.frontDamperOpenMesh) this.frontDamperOpenMesh.visible = true;
  321. if (this.frontDamperClosedMesh) this.frontDamperClosedMesh.visible = false;
  322. this.clipActionArr.backDoor.paused = true;
  323. this.clipActionArr.backDoor.reset();
  324. this.clipActionArr.backDoor.time = 1.2;
  325. this.clipActionArr.backDoor.timeScale = timeScale;
  326. // this.clipActionArr.backDoor.clampWhenFinished = true;
  327. this.clipActionArr.backDoor.play();
  328. this.fmClock.start();
  329. if (this.backDamperOpenMesh) this.backDamperOpenMesh.visible = true;
  330. if (this.backDamperClosedMesh) this.backDamperClosedMesh.visible = false;
  331. };
  332. break;
  333. case 6: // 关闭前后门
  334. handler = () => {
  335. this.clipActionArr.frontDoor.paused = true;
  336. this.clipActionArr.frontDoor.reset(); //
  337. this.clipActionArr.frontDoor.time = 4;
  338. this.clipActionArr.frontDoor.timeScale = -timeScale;
  339. // this.clipActionArr.frontDoor.clampWhenFinished = true;
  340. this.clipActionArr.frontDoor.play();
  341. this.fmClock.start();
  342. if (this.frontDamperOpenMesh) this.frontDamperOpenMesh.visible = false;
  343. if (this.frontDamperClosedMesh) this.frontDamperClosedMesh.visible = true;
  344. this.clipActionArr.backDoor.paused = true;
  345. this.clipActionArr.backDoor.reset();
  346. this.clipActionArr.backDoor.time = 4;
  347. this.clipActionArr.backDoor.timeScale = -timeScale;
  348. // this.clipActionArr.backDoor.clampWhenFinished = true;
  349. this.clipActionArr.backDoor.play();
  350. this.fmClock.start();
  351. if (this.backDamperOpenMesh) this.backDamperOpenMesh.visible = false;
  352. if (this.backDamperClosedMesh) this.backDamperClosedMesh.visible = true;
  353. };
  354. break;
  355. default:
  356. }
  357. handler();
  358. }
  359. }
  360. mountedThree(playerDom) {
  361. this.group = new THREE.Object3D();
  362. this.group.name = this.modelName;
  363. return new Promise((resolve) => {
  364. this.model.setGLTFModel(['Fm-door', 'Fm-wire-qd', 'Fm-wall-qd'], this.group).then(() => {
  365. this.setModalPosition();
  366. // 初始化左右摇摆动画;
  367. this.initAnimation();
  368. // this.drawHots();
  369. this.addLight();
  370. // this.deviceDetailCard();
  371. this.model.animate();
  372. this.backDamperOpenMesh = this.group.getObjectByName('Dampler_open_1');
  373. if (this.backDamperOpenMesh) this.backDamperOpenMesh.visible = false;
  374. this.backDamperClosedMesh = this.group.getObjectByName('Damper_Closed_1');
  375. if (this.backDamperClosedMesh) this.backDamperClosedMesh.visible = true;
  376. this.frontDamperOpenMesh = this.group.getObjectByName('Damper_Open_2');
  377. if (this.frontDamperOpenMesh) this.frontDamperOpenMesh.visible = false;
  378. this.frontDamperClosedMesh = this.group.getObjectByName('Damper_Closed_2');
  379. if (this.frontDamperClosedMesh) this.frontDamperClosedMesh.visible = true;
  380. resolve(this.model);
  381. });
  382. });
  383. }
  384. destroy() {
  385. if (this.model) {
  386. if (this.mixers) {
  387. this.mixers.uncacheClip(this.clipActionArr.frontDoor.getClip());
  388. this.mixers.uncacheClip(this.clipActionArr.backDoor.getClip());
  389. this.mixers.uncacheAction(this.clipActionArr.frontDoor.getClip(), this.group);
  390. this.mixers.uncacheAction(this.clipActionArr.backDoor.getClip(), this.group);
  391. this.mixers.uncacheRoot(this.group);
  392. if (this.model.animations[0]) this.model.animations[0].tracks = [];
  393. }
  394. this.model.clearGroup(this.group);
  395. this.clipActionArr.backDoor = undefined;
  396. this.clipActionArr.frontDoor = undefined;
  397. this.mixers = undefined;
  398. }
  399. }
  400. }
  401. export default Fm3;