nitrogen.dishang.threejs.ts 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. import * as THREE from 'three';
  2. import { getTextCanvas, addEnvMap, setModalCenter } from '/@/utils/threejs/util';
  3. import { CSS3DSprite } from 'three/examples/jsm/renderers/CSS3DRenderer.js';
  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 Nitrogen {
  8. model;
  9. modelName = 'nitrogen';
  10. group: THREE.Object3D = new THREE.Object3D();
  11. animationTimer;
  12. isLRAnimation = true;
  13. direction = 1;
  14. playerStartClickTime1 = new Date().getTime();
  15. playerStartClickTime2 = new Date().getTime();
  16. deviceRunState = '';
  17. nitrogenNum = 0;
  18. constructor(model) {
  19. this.model = model;
  20. this.group.name = this.modelName;
  21. }
  22. addLight() {
  23. const directionalLight = new THREE.DirectionalLight(0xffffff, 0.8);
  24. directionalLight.position.set(75, 96, 177);
  25. this.group.add(directionalLight);
  26. directionalLight.target = this.group;
  27. // gui.add(directionalLight.position, 'x', -500, 500).onChange(function (value) {
  28. // directionalLight.position.x = Number(value);
  29. // });
  30. // gui.add(directionalLight.position, 'y', -500, 500).onChange(function (value) {
  31. // directionalLight.position.y = Number(value);
  32. // });
  33. // gui.add(directionalLight.position, 'z', -200, 200).onChange(function (value) {
  34. // directionalLight.position.z = Number(value);
  35. // });
  36. const spotLight = new THREE.SpotLight();
  37. spotLight.angle = Math.PI / 4;
  38. spotLight.penumbra = 0;
  39. spotLight.castShadow = true;
  40. spotLight.distance = 0;
  41. spotLight.position.set(-88, 85, -88);
  42. spotLight.target = this.group;
  43. this.group.add(spotLight);
  44. spotLight.shadow.camera.near = 0.5; // default
  45. spotLight.shadow.camera.far = 1000; // default
  46. spotLight.shadow.focus = 1;
  47. spotLight.shadow.bias = -0.000002;
  48. // gui.add(spotLight.position, 'x', -800, 800).onChange(function (value) {
  49. // spotLight.position.x = Number(value);
  50. // });
  51. // gui.add(spotLight.position, 'y', -800, 800).onChange(function (value) {
  52. // spotLight.position.y = Number(value);
  53. // });
  54. // gui.add(spotLight.position, 'z', -800, 800).onChange(function (value) {
  55. // spotLight.position.z = Number(value);
  56. // });
  57. }
  58. // 设置模型位置
  59. setModalPosition() {
  60. if (this.nitrogenNum == 4) {
  61. this.group.position.set(0, -17, 3);
  62. this.group?.scale.set(24.0, 24.0, 24.0);
  63. }
  64. if (this.nitrogenNum == 3) {
  65. this.group.position.set(0, -1, 3);
  66. this.group?.scale.set(24.0, 24.0, 24.0);
  67. }
  68. if (this.nitrogenNum == 2) {
  69. this.group.position.set(0, 0.42, 1.21);
  70. this.group?.scale.set(24.0, 24.0, 24.0);
  71. }
  72. if (this.nitrogenNum == 1) {
  73. this.group.position.set(0, 8, 3.0);
  74. this.group?.scale.set(24.0, 24.0, 24.0);
  75. }
  76. }
  77. /* 提取风门序列帧,初始化前后门动画 */
  78. initAnimation() {}
  79. /* 点击 */
  80. mousedownModel(intersects: THREE.Intersection<THREE.Object3D<THREE.Event>>[]) {
  81. this.isLRAnimation = false;
  82. if (this.animationTimer) {
  83. clearTimeout(this.animationTimer);
  84. this.animationTimer = null;
  85. }
  86. intersects.find((intersect) => {
  87. const mesh = intersect.object;
  88. return false;
  89. });
  90. }
  91. mouseUpModel() {}
  92. // 播放动画
  93. play() {}
  94. /**
  95. * 生序排列模型的子元素
  96. */
  97. sortMeshChildren = (children: THREE.Mesh[]) => {
  98. //生序排列
  99. children.sort((x, y) => {
  100. return x.geometry.attributes.position.count - y.geometry.attributes.position.count;
  101. });
  102. return children;
  103. };
  104. /**
  105. * 设置模型透明
  106. */
  107. transparentModel = (model: THREE.Mesh) => {
  108. const transparentMaterial = new THREE.MeshBasicMaterial({
  109. transparent: true,
  110. opacity: 0,
  111. });
  112. model.material = transparentMaterial;
  113. };
  114. addCssText = () => {
  115. if (this.nitrogenNum > 0) {
  116. for (let i = 0; i < this.nitrogenNum; i++) {
  117. const nitrogenModal = this.group.getObjectByName('nitrogenModal' + i) as THREE.Object3D;
  118. if (!nitrogenModal.getObjectByName('monitorNitrogenText')) {
  119. const element = document.getElementById('nitrogenMonitor' + (i + 1)) as HTMLElement;
  120. element.style.top = '0px';
  121. element.style.left = '0px';
  122. const nitrogenMonitorCSS3D = new CSS3DSprite(element);
  123. nitrogenMonitorCSS3D.name = 'monitorNitrogenText';
  124. nitrogenMonitorCSS3D.scale.set(0.003, 0.003, 0.003);
  125. if (i == 0) nitrogenMonitorCSS3D.position.set(-0.89, 0.31, 0);
  126. if (i == 1) nitrogenMonitorCSS3D.position.set(-0.89, 0.31, 0.04);
  127. if (i == 2) nitrogenMonitorCSS3D.position.set(-0.89, 0.31, 0.08);
  128. if (i == 3) nitrogenMonitorCSS3D.position.set(-0.89, 0.31, 0.12);
  129. nitrogenModal.add(nitrogenMonitorCSS3D);
  130. }
  131. // if (!nitrogenModal.getObjectByName('cqgMonitorText')) {
  132. // const element = document.getElementById('cqgMonitor' + (i + 1)) as HTMLElement;
  133. // element.style.top = '0px';
  134. // element.style.left = '0px';
  135. // const cqgMonitorCSS3D = new CSS3DSprite(element);
  136. // cqgMonitorCSS3D.name = 'cqgMonitorText';
  137. // cqgMonitorCSS3D.scale.set(0.003, 0.003, 0.003);
  138. // if (i == 0) cqgMonitorCSS3D.position.set(1.24, 0.49, 0.0);
  139. // if (i == 1) cqgMonitorCSS3D.position.set(1.24, 0.49, 0.04);
  140. // if (i == 2) cqgMonitorCSS3D.position.set(1.24, 0.49, 0.08);
  141. // if (i == 3) cqgMonitorCSS3D.position.set(1.24, 0.49, 0.12);
  142. // nitrogenModal.add(cqgMonitorCSS3D);
  143. // }
  144. }
  145. }
  146. };
  147. /**
  148. * 处理杯子的纹理和杯子外层透明壳子
  149. */
  150. handleGlassAndWrap = (
  151. objects: THREE.Object3D,
  152. withVolume: THREE.Object3D[],
  153. glassModel: THREE.Mesh,
  154. params: THREE.MeshPhysicalMaterialParameters,
  155. scale: number,
  156. position: THREE.Vector3,
  157. rotation?: THREE.Vector3
  158. ) => {
  159. //辨别杯子和壳 大的是杯子 小的是壳 壳的点比杯子少
  160. const children = glassModel.children as THREE.Mesh[];
  161. this.sortMeshChildren(children);
  162. children.forEach((mesh) => {
  163. mesh.position.copy(position);
  164. mesh.scale.set(scale, scale, scale);
  165. rotation && mesh.rotation.setFromVector3(rotation, 'XYZ');
  166. });
  167. const [transparentWrap, glass] = children;
  168. this.transparentModel(transparentWrap);
  169. glass.material = new THREE.MeshPhysicalMaterial({
  170. side: THREE.DoubleSide,
  171. // specularColor: new Color("#ffffff"),
  172. // color: new Color(0xffa000),
  173. ...params,
  174. });
  175. objects.add(...children);
  176. //只检测壳子 减小开销
  177. withVolume.push(transparentWrap);
  178. };
  179. mountedThree(nitrogenNum) {
  180. this.nitrogenNum = nitrogenNum;
  181. return new Promise((resolve) => {
  182. if (nitrogenNum < 1) {
  183. resolve(null);
  184. return;
  185. }
  186. this.model.setModel([this.modelName]).then(async (gltf) => {
  187. const nitrogenGroup = new THREE.Object3D();
  188. for (let i = 0; i < nitrogenNum; i++) {
  189. const nitrogenModal = gltf[0].clone();
  190. nitrogenModal.name = 'nitrogenModal' + i;
  191. nitrogenModal.position.set(0, 0, -1.29 * i);
  192. nitrogenGroup.add(nitrogenModal);
  193. }
  194. this.group = nitrogenGroup;
  195. this.group.name = this.modelName;
  196. setModalCenter(this.group);
  197. this.addCssText();
  198. this.setModalPosition();
  199. this.addLight();
  200. resolve(null);
  201. });
  202. });
  203. }
  204. destroy() {
  205. if (this.group) {
  206. this.model.clearGroup(this.group);
  207. }
  208. this.model = null;
  209. this.group = null;
  210. }
  211. }
  212. export default Nitrogen;