shuangdaoFc.threejs.ts 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. import * as THREE from 'three';
  2. import { getTextCanvas, renderVideo } from '/@/utils/threejs/util';
  3. import gsap from 'gsap';
  4. class doubleWindow {
  5. model;
  6. modelName = 'sdFc';
  7. group: THREE.Group | null = null;
  8. animationTimer;
  9. isLRAnimation = true;
  10. direction = 1;
  11. windowsActionArr = {
  12. frontWindow: <THREE.Mesh[]>[],
  13. backWindow: <THREE.Mesh[]>[],
  14. };
  15. player1;
  16. player2;
  17. playerStartClickTime1 = new Date().getTime();
  18. playerStartClickTime2 = new Date().getTime();
  19. constructor(model, playerVal1, playerVal2) {
  20. this.model = model;
  21. this.player1 = playerVal1;
  22. this.player2 = playerVal2;
  23. }
  24. // 设置模型位置
  25. setModalPosition() {
  26. this.group?.scale.set(22, 22, 22);
  27. this.group?.position.set(-15, 25, 15);
  28. }
  29. addFmText(selectData) {
  30. if (!this.group) {
  31. return;
  32. }
  33. const textArr = [
  34. {
  35. text: `煤矿巷道远程风窗系统`,
  36. font: 'normal 2.2rem Arial',
  37. color: '#009900',
  38. strokeStyle: '#002200',
  39. x: 90,
  40. y: 95,
  41. },
  42. {
  43. text: `过风量(m3/min):`,
  44. font: 'normal 30px Arial',
  45. color: '#009900',
  46. strokeStyle: '#002200',
  47. x: 5,
  48. y: 150,
  49. },
  50. {
  51. text: `${
  52. selectData.frontRearDifference && selectData.rearPresentValue
  53. ? Math.min(selectData.frontRearDifference, selectData.rearPresentValue)
  54. : selectData.frontRearDifference || selectData.rearPresentValue || '-'
  55. }`,
  56. font: 'normal 30px Arial',
  57. color: '#009900',
  58. strokeStyle: '#002200',
  59. x: 235,
  60. y: 150,
  61. },
  62. {
  63. text: `过风面积(m2): `,
  64. font: 'normal 30px Arial',
  65. color: '#009900',
  66. strokeStyle: '#002200',
  67. x: 5,
  68. y: 205,
  69. },
  70. {
  71. text: `${
  72. selectData.forntArea && selectData.rearArea
  73. ? Math.min(selectData.forntArea, selectData.rearArea)
  74. : selectData.forntArea || selectData.rearArea || '-'
  75. }`,
  76. font: 'normal 30px Arial',
  77. color: '#009900',
  78. strokeStyle: '#002200',
  79. x: 200,
  80. y: 205,
  81. },
  82. {
  83. text: `风窗压差(Pa):`,
  84. font: 'normal 30px Arial',
  85. color: '#009900',
  86. strokeStyle: '#002200',
  87. x: 5,
  88. y: 256,
  89. },
  90. {
  91. text: `${selectData.dataDh}`,
  92. font: 'normal 30px Arial',
  93. color: '#009900',
  94. strokeStyle: '#002200',
  95. x: 200,
  96. y: 256,
  97. },
  98. {
  99. text: `调节精度:`,
  100. font: 'normal 30px Arial',
  101. color: '#009900',
  102. strokeStyle: '#002200',
  103. x: 320,
  104. y: 150,
  105. },
  106. {
  107. text: `1% FS`,
  108. font: 'normal 30px Arial',
  109. color: '#009900',
  110. strokeStyle: '#002200',
  111. x: 460,
  112. y: 150,
  113. },
  114. {
  115. text: `调节范围:`,
  116. font: 'normal 30px Arial',
  117. color: '#009900',
  118. strokeStyle: '#002200',
  119. x: 320,
  120. y: 205,
  121. },
  122. {
  123. text: `${selectData.maxarea}`,
  124. font: 'normal 30px Arial',
  125. color: '#009900',
  126. strokeStyle: '#002200',
  127. x: 460,
  128. y: 205,
  129. },
  130. {
  131. text: `煤炭科学技术研究院有限公司研制`,
  132. font: 'normal 28px Arial',
  133. color: '#009900',
  134. strokeStyle: '#002200',
  135. x: 60,
  136. y: 302,
  137. },
  138. ];
  139. getTextCanvas(526, 346, textArr, '').then((canvas: HTMLCanvasElement) => {
  140. const textMap = new THREE.CanvasTexture(canvas); // 关键一步
  141. const textMaterial = new THREE.MeshBasicMaterial({
  142. // 关于材质并未讲解 实操即可熟悉 这里是漫反射类似纸张的材质,对应的就有高光类似金属的材质.
  143. map: textMap, // 设置纹理贴图
  144. transparent: true,
  145. side: THREE.DoubleSide, // 这里是双面渲染的意思
  146. });
  147. textMaterial.blending = THREE.CustomBlending;
  148. const monitorPlane = this.group?.getObjectByName('monitorText');
  149. if (monitorPlane) {
  150. monitorPlane.material = textMaterial;
  151. } else {
  152. const planeGeometry = new THREE.PlaneGeometry(526, 346); // 平面3维几何体PlaneGeometry
  153. const planeMesh = new THREE.Mesh(planeGeometry, textMaterial);
  154. planeMesh.name = 'monitorText';
  155. planeMesh.scale.set(0.002, 0.002, 0.002);
  156. planeMesh.position.set(2.65, 0.158, -0.23);
  157. this.group?.add(planeMesh);
  158. }
  159. });
  160. }
  161. /* 风门动画 */
  162. render() {
  163. if (!this.model) {
  164. return;
  165. }
  166. if (this.isLRAnimation && this.group) {
  167. // 左右摇摆动画
  168. if (Math.abs(this.group.rotation.y) >= 0.2) {
  169. this.direction = -this.direction;
  170. this.group.rotation.y += 0.00005 * 30 * this.direction;
  171. } else {
  172. this.group.rotation.y += 0.00005 * 30 * this.direction;
  173. }
  174. }
  175. }
  176. /* 提取风门序列帧,初始化前后门动画 */
  177. initAnimation() {
  178. const meshArr01: THREE.Object3D[] = [];
  179. const meshArr02: THREE.Object3D[] = [];
  180. const windowGroup = new THREE.Group();
  181. windowGroup.name = 'hiddenGroup';
  182. this.group?.children.forEach((obj) => {
  183. if (obj.type === 'Mesh' && obj.name && (obj.name.startsWith('shanye') || obj.name.startsWith('FCshanye'))) {
  184. if (obj.name.startsWith('FCshanye')) {
  185. obj.rotateOnAxis(new THREE.Vector3(0, 1, 0), 0);
  186. meshArr01.push(obj);
  187. } else if (obj.name.startsWith('shanye')) {
  188. obj.rotateOnAxis(new THREE.Vector3(0, 1, 0), 0);
  189. meshArr02.push(obj);
  190. }
  191. }
  192. });
  193. this.windowsActionArr.frontWindow = meshArr01;
  194. this.windowsActionArr.backWindow = meshArr02;
  195. this.group?.add(windowGroup);
  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. intersects.find((intersect) => {
  206. const mesh = intersect.object;
  207. if (mesh.name === 'player1') {
  208. if (new Date().getTime() - this.playerStartClickTime1 < 400) {
  209. // 双击,视频放大
  210. if (this.player1) {
  211. this.player1.requestFullscreen();
  212. }
  213. }
  214. this.playerStartClickTime1 = new Date().getTime();
  215. return true;
  216. } else if (mesh.name === 'player2') {
  217. if (new Date().getTime() - this.playerStartClickTime2 < 400) {
  218. // 双击,视频放大
  219. if (this.player2) {
  220. this.player2.requestFullscreen();
  221. }
  222. }
  223. this.playerStartClickTime2 = new Date().getTime();
  224. return true;
  225. }
  226. return false;
  227. });
  228. }
  229. mouseUpModel() {
  230. // 10s后开始摆动
  231. if (!this.animationTimer && !this.isLRAnimation) {
  232. this.animationTimer = setTimeout(() => {
  233. this.isLRAnimation = true;
  234. }, 10000);
  235. }
  236. }
  237. play(rotationParam, flag) {
  238. if (!this.windowsActionArr.frontWindow || !this.windowsActionArr.backWindow) {
  239. return;
  240. }
  241. if (flag === 1) {
  242. // 前风窗动画
  243. this.windowsActionArr.frontWindow.forEach((mesh) => {
  244. gsap.to(mesh.rotation, {
  245. y: THREE.MathUtils.degToRad(rotationParam.frontDeg1),
  246. duration: (1 / 9) * Math.abs(rotationParam.frontDeg1 - mesh.rotation.y),
  247. overwrite: true,
  248. });
  249. });
  250. } else if (flag === 2) {
  251. // 后风窗动画
  252. this.windowsActionArr.backWindow.forEach((mesh) => {
  253. gsap.to(mesh.rotation, {
  254. y: THREE.MathUtils.degToRad(rotationParam.backDeg1),
  255. duration: (1 / 9) * Math.abs(rotationParam.backDeg1 - mesh.rotation.y),
  256. overwrite: true,
  257. });
  258. });
  259. } else if (flag === 0) {
  260. ([...this.windowsActionArr.frontWindow, ...this.windowsActionArr.backWindow] as THREE.Mesh[]).forEach((mesh) => {
  261. gsap.to(mesh.rotation, {
  262. y: 0,
  263. overwrite: true,
  264. });
  265. });
  266. }
  267. }
  268. mountedThree() {
  269. return new Promise((resolve) => {
  270. this.model.setModel(this.modelName).then((gltf) => {
  271. this.group = gltf.scene;
  272. this.setModalPosition();
  273. this.initAnimation();
  274. setTimeout(async () => {
  275. const videoPlayer2 = document.getElementById('fc-player2')?.getElementsByClassName('vjs-tech')[0];
  276. if (videoPlayer2) {
  277. const mesh = renderVideo(this.group, videoPlayer2, 'player2');
  278. mesh?.scale.set(0.0385, 0.028, 0.022);
  279. mesh?.position.set(-4.307, 0.145, -0.22);
  280. this.group?.add(mesh as THREE.Mesh);
  281. }
  282. resolve(null);
  283. }, 0);
  284. });
  285. });
  286. }
  287. destroy() {
  288. this.model.clearGroup(this.group);
  289. this.windowsActionArr.frontWindow = undefined;
  290. this.windowsActionArr.backWindow = undefined;
  291. this.model = null;
  292. this.group = null;
  293. }
  294. }
  295. export default doubleWindow;