duishe.threejs.ts 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. import * as THREE from 'three';
  2. import { getTextCanvas, renderVideo } from '/@/utils/threejs/util';
  3. import gsap from 'gsap';
  4. // import * as dat from 'dat.gui';
  5. // const gui = new dat.GUI();
  6. // gui.domElement.style = 'position:absolute;top:100px;left:10px;z-index:99999999999999';
  7. class dsWindRect {
  8. model;
  9. modelName = 'dscf';
  10. group: THREE.Object3D = new THREE.Object3D();
  11. deviceType;
  12. animationTimer;
  13. isLRAnimation = true;
  14. direction = 1;
  15. player1;
  16. playerStartClickTime1 = new Date().getTime();
  17. lineLight;
  18. isRun = false;
  19. constructor(model, playerVal1) {
  20. this.model = model;
  21. this.player1 = playerVal1;
  22. this.group.name = this.modelName;
  23. }
  24. setModelType(deviceType) {
  25. this.deviceType = deviceType;
  26. const dsgdObj = this.group.getObjectByName('dsgd');
  27. const dsmoveObj = this.group.getObjectByName('dsmove');
  28. if (deviceType == 'move') {
  29. if (dsgdObj) dsgdObj.visible = false;
  30. if (dsmoveObj) dsmoveObj.visible = true;
  31. } else {
  32. if (dsgdObj) dsgdObj.visible = true;
  33. if (dsmoveObj) dsmoveObj.visible = false;
  34. if (deviceType == 'four' && dsgdObj) {
  35. dsgdObj.getObjectByName('fout_ceasourment_01').visible = true;
  36. }
  37. if (deviceType == 'two' && dsgdObj) {
  38. dsgdObj.getObjectByName('fout_ceasourment_01').visible = false;
  39. }
  40. }
  41. }
  42. addLight() {
  43. const directionalLight = new THREE.DirectionalLight(0xffffff, 1);
  44. directionalLight.position.set(42.4, 248, 86);
  45. this.group.add(directionalLight);
  46. directionalLight.target = this.group;
  47. // gui.add(directionalLight.position, 'x', -500, 500);
  48. // gui.add(directionalLight.position, 'y', -500, 500);
  49. // gui.add(directionalLight.position, 'z', -500, 500);
  50. const spotLight = new THREE.SpotLight();
  51. spotLight.angle = Math.PI / 16;
  52. spotLight.penumbra = 0;
  53. spotLight.castShadow = true;
  54. spotLight.distance = 0;
  55. spotLight.position.set(-470, -500, 500);
  56. this.group.add(spotLight);
  57. spotLight.shadow.camera.near = 0.5; // default
  58. spotLight.shadow.camera.far = 1000; // default
  59. spotLight.shadow.focus = 1;
  60. spotLight.shadow.bias = -0.000002;
  61. // gui.add(spotLight.position, 'x', -500, 500);
  62. // gui.add(spotLight.position, 'y', -500, 500);
  63. // gui.add(spotLight.position, 'z', -500, 500);
  64. // gui.add(spotLight, 'distance', 0, 1000);
  65. }
  66. // 设置模型位置
  67. setModalPosition() {
  68. this.group?.scale.set(22, 22, 22);
  69. this.group?.position.set(-10, 25, 20);
  70. }
  71. addFmText(selectData) {
  72. if (!this.group) {
  73. return;
  74. }
  75. const textArr = [
  76. {
  77. text: `扫描式测风装置`,
  78. font: 'normal 32px Arial',
  79. color: '#009900',
  80. strokeStyle: '#002200',
  81. x: 140,
  82. y: 75,
  83. },
  84. {
  85. text: `风量(m3/min):`,
  86. font: 'normal 29px Arial',
  87. color: '#009900',
  88. strokeStyle: '#002200',
  89. x: 12,
  90. y: 133,
  91. },
  92. {
  93. text: `${selectData.m3 ? selectData.m3 : '-'}`,
  94. font: 'normal 29px Arial',
  95. color: '#009900',
  96. strokeStyle: '#002200',
  97. x: 311,
  98. y: 133,
  99. },
  100. {
  101. text: `风速(m/s): `,
  102. font: 'normal 29px Arial',
  103. color: '#009900',
  104. strokeStyle: '#002200',
  105. x: 12,
  106. y: 192,
  107. },
  108. {
  109. text: `${selectData.va ? selectData.va : '-'}`,
  110. font: 'normal 29px Arial',
  111. color: '#009900',
  112. strokeStyle: '#002200',
  113. x: 310,
  114. y: 192,
  115. },
  116. {
  117. text: `断面积(㎡):`,
  118. font: 'normal 29px Arial',
  119. color: '#009900',
  120. strokeStyle: '#002200',
  121. x: 12,
  122. y: 247,
  123. },
  124. {
  125. text: `${selectData.fsectarea ? selectData.fsectarea : '-'}`,
  126. font: 'normal 29px Arial',
  127. color: '#009900',
  128. strokeStyle: '#002200',
  129. x: 310,
  130. y: 247,
  131. },
  132. {
  133. text: `煤炭科学技术研究院有限公司研制`,
  134. font: 'normal 28px Arial',
  135. color: '#009900',
  136. strokeStyle: '#002200',
  137. x: 50,
  138. y: 302,
  139. },
  140. ];
  141. getTextCanvas(560, 346, textArr, '').then((canvas: HTMLCanvasElement) => {
  142. const textMap = new THREE.CanvasTexture(canvas); // 关键一步
  143. const textMaterial = new THREE.MeshBasicMaterial({
  144. map: textMap, // 设置纹理贴图
  145. transparent: true,
  146. side: THREE.DoubleSide, // 这里是双面渲染的意思
  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(5.6, 3.46); // 平面3维几何体PlaneGeometry
  154. const planeMesh = new THREE.Mesh(planeGeometry, textMaterial);
  155. planeMesh.name = 'monitorText';
  156. planeMesh.scale.set(0.26, 0.26, 0.26);
  157. planeMesh.position.set(-2.52, 0.038, -0.42);
  158. this.group?.add(planeMesh);
  159. }
  160. });
  161. }
  162. /* 风门动画 */
  163. render() {
  164. if (!this.model) {
  165. return;
  166. }
  167. if (this.isLRAnimation && this.group) {
  168. // 左右摇摆动画
  169. if (Math.abs(this.group.rotation.y) >= 0.2) {
  170. this.direction = -this.direction;
  171. this.group.rotation.y += 0.00002 * 30 * this.direction;
  172. } else {
  173. this.group.rotation.y += 0.00002 * 30 * this.direction;
  174. }
  175. }
  176. }
  177. /* 提取风门序列帧,初始化前后门动画 */
  178. initAnimation() {
  179. const dsmove = this.group.getObjectByName('dsmove');
  180. const dsmoveLine = dsmove?.getObjectByName('probe');
  181. let line = dsmoveLine?.getObjectByName('line_');
  182. if (line) {
  183. line.material.side = THREE.DoubleSide;
  184. line.material.opacity = 1;
  185. line.material.depthWrite = true;
  186. this.lineLight = gsap.to(line.material, {
  187. opacity: 0,
  188. duration: 0.3,
  189. ease: 'easeQutQuad',
  190. repeat: -1,
  191. yoyo: true,
  192. paused: true,
  193. });
  194. this.lineLight.play();
  195. }
  196. const dsgdObj = this.group.getObjectByName('dsgd');
  197. const dsgdLine = dsgdObj?.getObjectByName('fout_ceasourment_01')?.getObjectByName('cea08');
  198. if (dsgdLine) {
  199. dsgdLine.material.side = THREE.DoubleSide;
  200. dsgdLine.material.opacity = 1;
  201. dsgdLine.material.depthWrite = true;
  202. const gdLine = gsap.to(dsgdLine.material, {
  203. opacity: 0,
  204. duration: 0.3,
  205. ease: 'easeQutQuad',
  206. repeat: -1,
  207. yoyo: true,
  208. paused: true,
  209. });
  210. gdLine.play();
  211. }
  212. }
  213. /* 点击风窗,风窗全屏 */
  214. mousedownModel(intersects: THREE.Intersection<THREE.Object3D<THREE.Event>>[]) {
  215. this.isLRAnimation = false;
  216. if (this.animationTimer) {
  217. clearTimeout(this.animationTimer);
  218. this.animationTimer = null;
  219. }
  220. // 判断是否点击到视频
  221. intersects.find((intersect) => {
  222. const mesh = intersect.object;
  223. if (mesh.name === 'player1') {
  224. if (new Date().getTime() - this.playerStartClickTime1 < 400) {
  225. // 双击,视频放大
  226. if (this.player1) {
  227. this.player1.requestFullscreen();
  228. }
  229. }
  230. this.playerStartClickTime1 = new Date().getTime();
  231. return true;
  232. }
  233. return false;
  234. });
  235. }
  236. mouseUpModel() {
  237. // 10s后开始摆动
  238. if (!this.animationTimer && !this.isLRAnimation) {
  239. this.animationTimer = setTimeout(() => {
  240. this.isLRAnimation = true;
  241. }, 10000);
  242. }
  243. }
  244. resetModel() {
  245. clearTimeout(this.animationTimer);
  246. this.isLRAnimation = false;
  247. }
  248. // 播放动画
  249. play(flag, isDirect = false) {
  250. if (this.deviceType !== 'move') return;
  251. const dsmove = this.group?.getObjectByName('dsmove') as THREE.Object3D;
  252. const dsTanTou = dsmove?.getObjectByName('probe') as THREE.Object3D;
  253. dsTanTou.position.setY(0.45);
  254. if (!dsTanTou && flag != 'start' && flag != 'moni') return;
  255. if (flag == 'moni') {
  256. gsap.to(dsTanTou['position'], {
  257. y: -0.32,
  258. duration: Math.abs(dsTanTou['position']['y'] - 0.32) * 21,
  259. overwrite: true,
  260. onComplete: function () {
  261. setTimeout(() => {
  262. gsap.to(dsTanTou['position'], {
  263. y: 0.45,
  264. duration: 0.77 * 21,
  265. overwrite: true,
  266. });
  267. }, 5000);
  268. },
  269. });
  270. } else {
  271. if (!isDirect) {
  272. if (this.isRun) return;
  273. dsTanTou.position.setY(0.45);
  274. this.isRun = true;
  275. gsap.to(dsTanTou['position'], {
  276. y: -0.32,
  277. duration: Math.abs(dsTanTou['position']['y'] - 0.32) * 21,
  278. overwrite: true,
  279. onComplete: function () {
  280. setTimeout(() => {
  281. gsap.to(dsTanTou['position'], {
  282. y: 0.45,
  283. duration: 0.77 * 21,
  284. overwrite: true,
  285. // onComplete: function () {
  286. // _this.isRun = false;
  287. // },
  288. });
  289. }, 5000);
  290. },
  291. });
  292. } else {
  293. if (!this.isRun) return;
  294. const dsDown = gsap.getById('dsDown');
  295. const dsUp = gsap.getById('dsUp');
  296. if (dsDown) {
  297. dsDown.pause();
  298. dsDown.kill();
  299. }
  300. if (dsUp) {
  301. dsUp.pause();
  302. dsUp.kill();
  303. }
  304. dsTanTou.position.setY(0);
  305. this.isRun = false;
  306. }
  307. }
  308. }
  309. mountedThree() {
  310. return new Promise((resolve) => {
  311. this.model.setModel([this.modelName, 'dsgd', 'dsmove'], this.group).then((gltf) => {
  312. this.group.name = this.modelName;
  313. // this.group = gltf[0];
  314. this.setModalPosition();
  315. this.initAnimation();
  316. this.addLight();
  317. setTimeout(async () => {
  318. const videoPlayer1 = document.getElementById('cf-player1')?.getElementsByClassName('vjs-tech')[0];
  319. if (videoPlayer1) {
  320. const mesh = renderVideo(this.group, videoPlayer1, 'player1');
  321. mesh?.scale.set(0.042, 0.036, 1);
  322. mesh?.position.set(2.215, 0.016, -0.38);
  323. this.group?.add(mesh as THREE.Mesh);
  324. } else {
  325. const textArr = [
  326. {
  327. text: `无信号输入`,
  328. font: 'normal 40px Arial',
  329. color: '#009900',
  330. strokeStyle: '#002200',
  331. x: 370,
  332. y: 40,
  333. },
  334. ];
  335. getTextCanvas(580, 346, textArr, '').then((canvas: HTMLCanvasElement) => {
  336. const textMap = new THREE.CanvasTexture(canvas); // 关键一步
  337. const textMaterial = new THREE.MeshBasicMaterial({
  338. map: textMap, // 设置纹理贴图
  339. transparent: true,
  340. side: THREE.DoubleSide, // 这里是双面渲染的意思
  341. });
  342. textMaterial.blending = THREE.CustomBlending;
  343. const monitorPlane = this.group?.getObjectByName('noPlayer');
  344. if (monitorPlane) {
  345. monitorPlane.material = textMaterial;
  346. } else {
  347. const planeGeometry = new THREE.PlaneGeometry(100, 100); // 平面3维几何体PlaneGeometry
  348. const planeMesh = new THREE.Mesh(planeGeometry, textMaterial);
  349. planeMesh.name = 'noPlayer';
  350. planeMesh.scale.set(0.014, 0.009, 0.012);
  351. planeMesh.position.set(2.25, -0.34, -0.39);
  352. this.group?.add(planeMesh);
  353. }
  354. });
  355. }
  356. resolve(null);
  357. }, 0);
  358. });
  359. });
  360. }
  361. destroy() {
  362. if (this.group) {
  363. this.model.clearGroup(this.group);
  364. }
  365. this.model = null;
  366. this.group = null;
  367. }
  368. }
  369. export default dsWindRect;