windrect.threejs.ts 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. import * as THREE from 'three';
  2. import { animateCamera, getTextCanvas, renderVideo } from '/@/utils/threejs/util';
  3. import UseThree from '../../../../utils/threejs/useThree';
  4. import lmWindRect from './longmen.threejs';
  5. import zdWindRect from './zhedie.threejs';
  6. import dsWindRect from './duishe.threejs';
  7. import lmWindRectSide from './longmenSide.threejs';
  8. import useEvent from '../../../../utils/threejs/useEvent';
  9. import gsap from 'gsap';
  10. import ddWindRect from './dantou.threejs';
  11. // import * as dat from 'dat.gui';
  12. // const gui = new dat.GUI();
  13. // gui.domElement.style = 'position:absolute;top:100px;left:10px;z-index:99999999999999';
  14. // 模型对象、 文字对象
  15. let model, //
  16. group,
  17. lmWindRectObj,
  18. zdWindRectObj,
  19. dsWindRectObj,
  20. lmWindRectSideObj,
  21. ddWindRectObj,
  22. windRectType = 'lmWindRect';
  23. const { mouseDownFn } = useEvent();
  24. // 初始化左右摇摆动画
  25. const startAnimation = () => {
  26. // 定义鼠标点击事件
  27. model.canvasContainer?.addEventListener('mousedown', mouseEvent.bind(null));
  28. model.canvasContainer?.addEventListener('pointerup', (event) => {
  29. event.stopPropagation();
  30. // 单道、 双道
  31. if (windRectType === 'lmWindRect') {
  32. lmWindRectObj.mouseUpModel.call(lmWindRectObj);
  33. } else if (windRectType === 'zdWindRect') {
  34. zdWindRectObj.mouseUpModel.call(zdWindRectObj);
  35. } else if (windRectType.startsWith('dsWindRect')) {
  36. dsWindRectObj.mouseUpModel.call(dsWindRectObj);
  37. } else if (windRectType === 'lmWindSide') {
  38. lmWindRectSideObj.mouseUpModel.call(lmWindRectSideObj);
  39. } else if (windRectType === 'ddWindSide') {
  40. ddWindRectObj.mouseUpModel.call(ddWindRectObj);
  41. }
  42. });
  43. };
  44. // 鼠标点击、松开事件
  45. const mouseEvent = (event) => {
  46. mouseDownFn(model, group, event, (intersects) => {
  47. if (windRectType === 'lmWindRect') {
  48. lmWindRectObj.mousedownModel.call(lmWindRectObj, intersects);
  49. } else if (windRectType === 'zdWindRect') {
  50. zdWindRectObj.mousedownModel.call(zdWindRectObj, intersects);
  51. } else if (windRectType.startsWith('dsWindRect')) {
  52. dsWindRectObj.mousedownModel.call(dsWindRectObj, intersects);
  53. } else if (windRectType === 'lmWindSide') {
  54. lmWindRectSideObj.mousedownModel.call(lmWindRectSideObj, intersects);
  55. } else if (windRectType === 'ddWindSide') {
  56. ddWindRectObj.mousedownModel.call(ddWindRectObj, intersects);
  57. }
  58. });
  59. console.log('摄像头控制信息', model.orbitControls, model.camera);
  60. };
  61. /* 添加监控数据 */
  62. export const addFmText = (selectData) => {
  63. if (windRectType === 'lmWindRect') {
  64. return lmWindRectObj.addFmText.call(lmWindRectObj, selectData);
  65. } else if (windRectType === 'zdWindRect') {
  66. return zdWindRectObj.addFmText.call(zdWindRectObj, selectData);
  67. } else if (windRectType.startsWith('dsWindRect')) {
  68. return dsWindRectObj.addFmText.call(dsWindRectObj, selectData);
  69. } else if (windRectType === 'lmWindSide') {
  70. return lmWindRectSideObj.addFmText.call(lmWindRectSideObj, selectData);
  71. } else if (windRectType === 'ddWindSide') {
  72. return ddWindRectObj.addFmText.call(ddWindRectObj, selectData);
  73. }
  74. };
  75. export const play = (flag, isDirect = false) => {
  76. if (windRectType === 'lmWindRect') {
  77. return lmWindRectObj.play.call(lmWindRectObj, flag, isDirect);
  78. } else if (windRectType === 'zdWindRect') {
  79. return zdWindRectObj.play.call(zdWindRectObj, flag, isDirect);
  80. } else if (windRectType.startsWith('dsWindRect')) {
  81. return dsWindRectObj.play.call(dsWindRectObj, flag, isDirect);
  82. } else if (windRectType === 'lmWindSide') {
  83. lmWindRectSideObj.play.call(lmWindRectSideObj, flag, isDirect);
  84. }
  85. };
  86. export const playCamera = (flag) => {
  87. if (windRectType === 'lmWindSide') {
  88. lmWindRectSideObj.playCamera.call(lmWindRectSideObj, flag);
  89. }
  90. };
  91. // 切换风窗类型
  92. export const setModelType = (type) => {
  93. windRectType = type;
  94. model.camera.position.set(-1000, 100, 500);
  95. // 暂停龙门动画
  96. const lmGsap = gsap.getById('lm') || null;
  97. if (lmGsap != null) {
  98. lmGsap.pause();
  99. lmGsap.kill();
  100. }
  101. lmWindRectObj.deviceRunState = '';
  102. dsWindRectObj.isRun = false;
  103. lmWindRectSideObj.deviceRunState = '';
  104. lmWindRectSideObj.tanTouRunState = '';
  105. return new Promise((resolve) => {
  106. // 显示双道风窗
  107. if (windRectType === 'lmWindRect') {
  108. model.startAnimation = lmWindRectObj.render.bind(lmWindRectObj);
  109. group = lmWindRectObj.group;
  110. const cfTanTou = lmWindRectObj.group?.getObjectByName('lmTanTou') as THREE.Group;
  111. cfTanTou.position.setY(0);
  112. if (model.scene.getObjectByName('zdcf')) {
  113. model.scene.remove(zdWindRectObj.group);
  114. }
  115. if (model.scene.getObjectByName('dscf')) {
  116. model.scene.remove(dsWindRectObj.group);
  117. }
  118. if (model.scene.getObjectByName('lmcfSide')) {
  119. model.scene.remove(lmWindRectSideObj.group);
  120. }
  121. if (model.scene.getObjectByName('ddcf')) {
  122. model.scene.remove(ddWindRectObj.group);
  123. }
  124. const oldCameraPosition = { x: -1000, y: 100, z: 500 };
  125. model.scene.add(lmWindRectObj.group);
  126. setTimeout(async () => {
  127. resolve(null);
  128. const position = { x: 0, y: 0, z: 0 };
  129. await animateCamera(
  130. oldCameraPosition,
  131. { x: 0, y: 0, z: 0 },
  132. { x: 46.257, y: 57.539, z: 94.313 },
  133. { x: position.x, y: position.y, z: position.z },
  134. model,
  135. 0.8
  136. );
  137. }, 300);
  138. } else if (windRectType === 'zdWindRect') {
  139. // 停用混合器上所有预定的动作
  140. zdWindRectObj.animationAction.time = 0;
  141. model.startAnimation = zdWindRectObj.render.bind(zdWindRectObj);
  142. group = zdWindRectObj.group;
  143. if (model.scene.getObjectByName('lmcf')) {
  144. model.scene.remove(lmWindRectObj.group);
  145. }
  146. if (model.scene.getObjectByName('dscf')) {
  147. model.scene.remove(dsWindRectObj.group);
  148. }
  149. if (model.scene.getObjectByName('lmcfSide')) {
  150. model.scene.remove(lmWindRectSideObj.group);
  151. }
  152. if (model.scene.getObjectByName('ddcf')) {
  153. model.scene.remove(ddWindRectObj.group);
  154. }
  155. model.scene.add(zdWindRectObj.group);
  156. const oldCameraPosition = { x: -1000, y: 100, z: 500 };
  157. setTimeout(async () => {
  158. resolve(null);
  159. const position = { x: 0, y: 0, z: 0 };
  160. await animateCamera(
  161. oldCameraPosition,
  162. { x: 0, y: 0, z: 0 },
  163. { x: 66.257, y: 57.539, z: 104.313 },
  164. { x: position.x, y: position.y, z: position.z },
  165. model,
  166. 0.8
  167. );
  168. }, 300);
  169. } else if (windRectType.startsWith('dsWindRect')) {
  170. const type = windRectType.split('_')[1];
  171. // dsWindRectObj.isRun = false;
  172. model.startAnimation = dsWindRectObj.render.bind(dsWindRectObj);
  173. group = dsWindRectObj.group;
  174. dsWindRectObj.setModelType(type); // 设置对射类型
  175. const dsmove = dsWindRectObj.group?.getObjectByName('dsmove') as THREE.Object3D;
  176. const dsTanTou = dsmove?.getObjectByName('probe') as THREE.Object3D;
  177. dsTanTou.position.setY(0.45);
  178. if (model.scene.getObjectByName('lmcf')) {
  179. model.scene.remove(lmWindRectObj.group);
  180. }
  181. if (model.scene.getObjectByName('zdcf')) {
  182. model.scene.remove(zdWindRectObj.group);
  183. }
  184. if (model.scene.getObjectByName('lmcfSide')) {
  185. model.scene.remove(lmWindRectSideObj.group);
  186. }
  187. if (model.scene.getObjectByName('ddcf')) {
  188. model.scene.remove(ddWindRectObj.group);
  189. }
  190. model.scene.add(dsWindRectObj.group);
  191. setTimeout(async () => {
  192. resolve(null);
  193. const oldCameraPosition = { x: -1020, y: 100, z: 500 };
  194. await animateCamera(
  195. oldCameraPosition,
  196. { x: 0, y: 0, z: 0 },
  197. { x: 46.257, y: 57.539, z: 104.313 },
  198. { x: 1.84, y: 0.98, z: -1.44 },
  199. model,
  200. 0.8
  201. );
  202. }, 300);
  203. } else if (windRectType === 'lmWindSide') {
  204. model.startAnimation = lmWindRectSideObj.render.bind(lmWindRectSideObj);
  205. group = lmWindRectSideObj.group;
  206. const cfTanTou = lmWindRectSideObj.group?.getObjectByName('probe_bar') as THREE.Group;
  207. cfTanTou.position.setY(0.377);
  208. if (model.scene.getObjectByName('lmcf')) {
  209. model.scene.remove(lmWindRectObj.group);
  210. }
  211. if (model.scene.getObjectByName('zdcf')) {
  212. model.scene.remove(zdWindRectObj.group);
  213. }
  214. if (model.scene.getObjectByName('dscf')) {
  215. model.scene.remove(dsWindRectObj.group);
  216. }
  217. if (model.scene.getObjectByName('ddcf')) {
  218. model.scene.remove(ddWindRectObj.group);
  219. }
  220. const oldCameraPosition = { x: -1000, y: 100, z: 500 };
  221. model.scene.add(lmWindRectSideObj.group);
  222. setTimeout(async () => {
  223. resolve(null);
  224. const position = lmWindRectSideObj.group.position;
  225. // const position = new THREE.Vector3(0, 0, 0)
  226. await animateCamera(
  227. oldCameraPosition,
  228. { x: 0, y: 0, z: 0 },
  229. { x: 46.257, y: 57.539, z: 94.313 },
  230. // { x: 1, y: 2, z: 4 },
  231. { x: position.x, y: position.y, z: position.z },
  232. model,
  233. 0.8
  234. );
  235. // lmWindRectSideObj.playCamera(true);
  236. }, 300);
  237. } else if (windRectType.startsWith('ddWindSide')) {
  238. model.startAnimation = ddWindRectObj.render.bind(ddWindRectObj);
  239. group = ddWindRectObj.group;
  240. if (model.scene.getObjectByName('lmcf')) {
  241. model.scene.remove(lmWindRectObj.group);
  242. }
  243. if (model.scene.getObjectByName('zdcf')) {
  244. model.scene.remove(zdWindRectObj.group);
  245. }
  246. if (model.scene.getObjectByName('lmcfSide')) {
  247. model.scene.remove(lmWindRectSideObj.group);
  248. }
  249. if (model.scene.getObjectByName('dscf')) {
  250. model.scene.remove(dsWindRectObj.group);
  251. }
  252. model.scene.add(ddWindRectObj.group);
  253. setTimeout(async () => {
  254. resolve(null);
  255. const oldCameraPosition = { x: -1020, y: 100, z: 500 };
  256. await animateCamera(
  257. oldCameraPosition,
  258. { x: 0, y: 0, z: 0 },
  259. { x: 46.257, y: 57.539, z: 104.313 },
  260. { x: 1.84, y: 0.98, z: -1.44 },
  261. model,
  262. 0.8
  263. );
  264. }, 300);
  265. }
  266. });
  267. };
  268. export const mountedThree = (playerVal1, playerVal2) => {
  269. return new Promise(async (resolve) => {
  270. model = new UseThree('#window3D');
  271. model.setEnvMap('test1');
  272. model.renderer.toneMappingExposure = 1;
  273. lmWindRectObj = new lmWindRect(model, playerVal1, playerVal2);
  274. await lmWindRectObj.mountedThree();
  275. zdWindRectObj = new zdWindRect(model, playerVal1);
  276. await zdWindRectObj.mountedThree();
  277. dsWindRectObj = new dsWindRect(model, playerVal1);
  278. await dsWindRectObj.mountedThree();
  279. lmWindRectSideObj = new lmWindRectSide(model, playerVal1, playerVal2);
  280. await lmWindRectSideObj.mountedThree();
  281. ddWindRectObj = new ddWindRect(model);
  282. await ddWindRectObj.mountedThree();
  283. resolve(null);
  284. model.animate();
  285. startAnimation();
  286. });
  287. };
  288. export const destroy = () => {
  289. if (model) {
  290. lmWindRectObj?.destroy();
  291. zdWindRectObj?.destroy();
  292. zdWindRectObj?.destroy();
  293. lmWindRectSideObj?.destroy();
  294. model.deleteModal();
  295. model = null;
  296. group = null;
  297. }
  298. };