util.ts 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  1. import * as THREE from 'three';
  2. import { EffectComposer } from 'three/examples/jsm/postprocessing/EffectComposer.js';
  3. import { RenderPass } from 'three/examples/jsm/postprocessing/RenderPass.js';
  4. import { OutlinePass } from 'three/examples/jsm/postprocessing/OutlinePass.js';
  5. import { FXAAShader } from 'three/examples/jsm/shaders/FXAAShader.js';
  6. import { ShaderPass } from 'three/examples/jsm/postprocessing/ShaderPass.js';
  7. import { TWEEN } from 'three/examples/jsm/libs/tween.module.min.js';
  8. import { RGBELoader } from 'three/examples/jsm/loaders/RGBELoader.js';
  9. import gsap from 'gsap';
  10. import { useAppStore } from '/@/store/modules/app';
  11. import UseThree from './useThree';
  12. // import * as dat from "dat.gui";
  13. /* 设置模型居中 */
  14. export const setModalCenter = (group, modal?) => {
  15. const box3 = new THREE.Box3();
  16. // 计算层级模型group的包围盒
  17. // 模型group是加载一个三维模型返回的对象,包含多个网格模型
  18. box3.expandByObject(group);
  19. // 计算一个层级模型对应包围盒的几何体中心在世界坐标中的位置
  20. const center = new THREE.Vector3();
  21. box3.getCenter(center);
  22. // console.log('查看几何体中心坐标', center);
  23. // 重新设置模型的位置,使之居中。
  24. group.position.x = group.position.x - center.x;
  25. group.position.y = group.position.y - center.y;
  26. group.position.z = group.position.z - center.z;
  27. };
  28. // 获取一个canvas 图文纹理
  29. export const getTextCanvas = (w, h, textArr, imgUrl) => {
  30. // canvas 宽高最好是2的倍数
  31. const width = w;
  32. const height = h;
  33. // 创建一个canvas元素 获取上下文环境
  34. const canvas = document.createElement('canvas');
  35. canvas.style.letterSpacing = 10 + 'px';
  36. const ctx = canvas.getContext('2d') as CanvasRenderingContext2D;
  37. canvas.width = width;
  38. canvas.height = height;
  39. // 设置样式
  40. ctx.textAlign = 'start';
  41. ctx.fillStyle = 'rgba(0, 0, 0, 0)';
  42. // 创建渐变
  43. // var gradient=ctx.createLinearGradient(0,0, canvas.width,0);
  44. // gradient.addColorStop(0,"magenta");
  45. // gradient.addColorStop(0.5,"blue");
  46. // gradient.addColorStop(1.0,"red");
  47. // // 用渐变填色
  48. // ctx.fillStyle=gradient;
  49. ctx.shadowColor = 'rgba(0, 10,0,0.8)';
  50. ctx.shadowBlur = 4;
  51. ctx.shadowOffsetX = 1;
  52. ctx.shadowOffsetY = 1;
  53. ctx.fillRect(0, 0, width, height);
  54. //添加背景图片,进行异步,否则可能会过早渲染,导致空白
  55. return new Promise((resolve, reject) => {
  56. if (imgUrl) {
  57. const img = new Image();
  58. img.src = new URL('../../assets/images/vent/model_image/' + imgUrl, import.meta.url).href;
  59. img.onload = () => {
  60. //将画布处理为透明
  61. ctx.clearRect(0, 0, width, height);
  62. //绘画图片
  63. ctx.drawImage(img, 0, 0, width, height);
  64. ctx.textBaseline = 'middle';
  65. // 由于文字需要自己排版 所以循环一下
  66. // item 是自定义的文字对象 包含文字内容 字体大小颜色 位置信息等
  67. textArr.forEach((item) => {
  68. ctx.font = item.font;
  69. ctx.fillStyle = item.color;
  70. ctx.fillText(item.text, item.x, item.y, 1024);
  71. });
  72. resolve(canvas);
  73. };
  74. //图片加载失败的方法
  75. img.onerror = (e) => {
  76. reject(e);
  77. };
  78. } else {
  79. //将画布处理为透明
  80. ctx.clearRect(0, 0, width, height);
  81. ctx.textBaseline = 'middle';
  82. textArr.forEach((item) => {
  83. ctx.lineWidth = 2;
  84. ctx.font = item.font;
  85. ctx.fillStyle = item.color;
  86. // !!item.strokeStyle && (ctx.strokeStyle = item.strokeStyle);
  87. // if (item.strokeStyle) ctx.strokeText(item.text, item.x, item.y, 1024);
  88. ctx.fillText(item.text, item.x, item.y, 1024);
  89. });
  90. resolve(canvas);
  91. }
  92. });
  93. };
  94. // 发光路径
  95. export const setLineGeo = (scene) => {
  96. const box = new THREE.BoxGeometry(30, 30, 30);
  97. // 立方体几何体box作为EdgesGeometry参数创建一个新的几何体
  98. const edges = new THREE.EdgesGeometry(box);
  99. // 立方体线框,不显示中间的斜线
  100. new THREE.TextureLoader().setPath('/model/hdr/').load('8.png', (texture) => {
  101. const edgesMaterial = new THREE.MeshBasicMaterial({
  102. // color: 0x00ffff,
  103. map: texture,
  104. transparent: true,
  105. depthWrite: false,
  106. });
  107. const line = new THREE.LineSegments(edges, edgesMaterial);
  108. // 网格模型和网格模型对应的轮廓线框插入到场景中
  109. scene.add(line);
  110. });
  111. box.attributes.position.array;
  112. const lightMaterial = new THREE.ShaderMaterial({
  113. vertexShader: `varying vec3 vPosition;
  114. varying vec2 vUv;
  115. uniform float uTime;
  116. void main(){
  117. // vec3 scalePosition = vec3(position.x+uTime,position.y,position.z+uTime);
  118. vec4 viewPosition = viewMatrix * modelMatrix * vec4(position,1);
  119. gl_Position = projectionMatrix * viewPosition;
  120. vPosition = position;
  121. vUv = uv;
  122. }`,
  123. fragmentShader: `varying vec3 vPosition;
  124. varying vec2 vUv;
  125. uniform vec3 uColor;
  126. uniform float uHeight;
  127. vec4 permute(vec4 x)
  128. {
  129. return mod(((x*34.0)+1.0)*x, 289.0);
  130. }
  131. vec2 fade(vec2 t)
  132. {
  133. return t*t*t*(t*(t*6.0-15.0)+10.0);
  134. }
  135. float cnoise(vec2 P)
  136. {
  137. vec4 Pi = floor(P.xyxy) + vec4(0.0, 0.0, 1.0, 1.0);
  138. vec4 Pf = fract(P.xyxy) - vec4(0.0, 0.0, 1.0, 1.0);
  139. Pi = mod(Pi, 289.0); // To avoid truncation effects in permutation
  140. vec4 ix = Pi.xzxz;
  141. vec4 iy = Pi.yyww;
  142. vec4 fx = Pf.xzxz;
  143. vec4 fy = Pf.yyww;
  144. vec4 i = permute(permute(ix) + iy);
  145. vec4 gx = 2.0 * fract(i * 0.0243902439) - 1.0; // 1/41 = 0.024...
  146. vec4 gy = abs(gx) - 0.5;
  147. vec4 tx = floor(gx + 0.5);
  148. gx = gx - tx;
  149. vec2 g00 = vec2(gx.x,gy.x);
  150. vec2 g10 = vec2(gx.y,gy.y);
  151. vec2 g01 = vec2(gx.z,gy.z);
  152. vec2 g11 = vec2(gx.w,gy.w);
  153. vec4 norm = 1.79284291400159 - 0.85373472095314 * vec4(dot(g00, g00), dot(g01, g01), dot(g10, g10), dot(g11, g11));
  154. g00 *= norm.x;
  155. g01 *= norm.y;
  156. g10 *= norm.z;
  157. g11 *= norm.w;
  158. float n00 = dot(g00, vec2(fx.x, fy.x));
  159. float n10 = dot(g10, vec2(fx.y, fy.y));
  160. float n01 = dot(g01, vec2(fx.z, fy.z));
  161. float n11 = dot(g11, vec2(fx.w, fy.w));
  162. vec2 fade_xy = fade(Pf.xy);
  163. vec2 n_x = mix(vec2(n00, n01), vec2(n10, n11), fade_xy.x);
  164. float n_xy = mix(n_x.x, n_x.y, fade_xy.y);
  165. return 2.3 * n_xy;
  166. }
  167. void main(){
  168. float strength = (vPosition.y+uHeight/2.0)/uHeight;
  169. gl_FragColor = vec4(uColor,1.0 - strength);
  170. // float strength =1.0 - abs(cnoise(vUv * 10.0)) ;
  171. // gl_FragColor =vec4(strength,strength,strength,1);
  172. }`,
  173. transparent: true,
  174. side: THREE.DoubleSide,
  175. });
  176. const lightMesh = new THREE.Mesh(box, lightMaterial);
  177. lightMesh.geometry.computeBoundingBox();
  178. const { min, max } = lightMesh.geometry.boundingBox;
  179. const uHeight = max.y - min.y;
  180. lightMaterial.uniforms.uHeight = {
  181. value: uHeight,
  182. };
  183. lightMaterial.uniforms.uColor = {
  184. value: new THREE.Color(0x00ff00),
  185. };
  186. lightMaterial.uniforms.uTime = {
  187. value: 0,
  188. };
  189. // gsap.to(lightMesh.scale, {
  190. // // x: 2,
  191. // // z: 2,
  192. // y: 0.8,
  193. // duration: 1,
  194. // ease: 'none',
  195. // repeat: -1,
  196. // yoyo: true,
  197. // });
  198. scene.add(lightMesh);
  199. };
  200. export const setOutline = (model, group) => {
  201. const { scene, renderer, camera } = model;
  202. const params = {
  203. edgeStrength: 10.0,
  204. edgeGlow: 1,
  205. edgeThickness: 1.0,
  206. pulsePeriod: 5,
  207. rotate: false,
  208. usePatternTexture: false,
  209. };
  210. const composer = new EffectComposer(renderer);
  211. const renderPass = new RenderPass(scene, camera);
  212. composer.addPass(renderPass);
  213. const outlinePass = new OutlinePass(new THREE.Vector2(window.innerWidth, window.innerHeight), scene, camera);
  214. composer.addPass(outlinePass);
  215. outlinePass.visibleEdgeColor.set(parseInt(0xffffff));
  216. outlinePass.hiddenEdgeColor.set('#190a05');
  217. outlinePass.edgeStrength = params.edgeStrength;
  218. outlinePass.edgeThickness = params.edgeThickness;
  219. outlinePass.pulsePeriod = params.pulsePeriod;
  220. outlinePass.usePatternTexture = params.usePatternTexture;
  221. // const textureLoader = new THREE.TextureLoader();
  222. // textureLoader.load('model/hdr/tri_pattern.jpg', function (texture) {
  223. // outlinePass.patternTexture = texture;
  224. // texture.wrapS = THREE.RepeatWrapping;
  225. // texture.wrapT = THREE.RepeatWrapping;
  226. // });
  227. const effectFXAA = new ShaderPass(FXAAShader);
  228. effectFXAA.uniforms['resolution'].value.set(1 / window.innerWidth, 1 / window.innerHeight);
  229. composer.addPass(effectFXAA);
  230. const scale = 1;
  231. group.traverse(function (child) {
  232. if (child instanceof THREE.Mesh) {
  233. // child.geometry.center();
  234. child.geometry.computeBoundingSphere();
  235. }
  236. });
  237. // group.scale.multiplyScalar(Math.random() * 0.3 + 0.1);
  238. group.scale.divideScalar(scale);
  239. return { outlinePass, composer };
  240. };
  241. /* 渲染视频 */
  242. export const renderVideo = (group, player, playerMeshName) => {
  243. //加载视频贴图;
  244. const texture = new THREE.VideoTexture(player);
  245. if (texture && group?.getObjectByName(playerMeshName)) {
  246. const player = group.getObjectByName(playerMeshName);
  247. player.material.map = texture;
  248. } else {
  249. //创建网格;
  250. const planeGeometry = new THREE.PlaneGeometry(30, 20);
  251. const material = new THREE.MeshBasicMaterial({
  252. map: texture,
  253. side: THREE.DoubleSide,
  254. });
  255. /* 消除摩尔纹 */
  256. texture.magFilter = THREE.LinearFilter;
  257. texture.minFilter = THREE.LinearFilter;
  258. texture.wrapS = texture.wrapT = THREE.ClampToEdgeWrapping;
  259. texture.format = THREE.RGBAFormat;
  260. texture.anisotropy = 0.5;
  261. // texture.generateMipmaps = false
  262. const mesh = new THREE.Mesh(planeGeometry, material);
  263. mesh.name = playerMeshName;
  264. // group.add(mesh);
  265. return mesh;
  266. }
  267. };
  268. // oldP 相机原来的位置
  269. // oldT target原来的位置
  270. // newP 相机新的位置
  271. // newT target新的位置
  272. // callBack 动画结束时的回调函数
  273. export const animateCamera = (oldP, oldT, newP, newT, model, duration = 0.5, callBack?) => {
  274. return new Promise((resolve) => {
  275. const camera = model.camera;
  276. const controls = model.orbitControls;
  277. controls.enabled = false;
  278. controls.target.set(0, 0, 0);
  279. const animateObj = {
  280. x1: oldP.x, // 相机x
  281. y1: oldP.y, // 相机y
  282. z1: oldP.z, // 相机z
  283. x2: oldT.x, // 控制点的中心点x
  284. y2: oldT.y, // 控制点的中心点y
  285. z2: oldT.z, // 控制点的中心点z
  286. };
  287. gsap.fromTo(
  288. animateObj,
  289. {
  290. x1: oldP.x, // 相机x
  291. y1: oldP.y, // 相机y
  292. z1: oldP.z, // 相机z
  293. x2: oldT.x, // 控制点的中心点x
  294. y2: oldT.y, // 控制点的中心点y
  295. z2: oldT.z, // 控制点的中心点z
  296. },
  297. {
  298. x1: newP.x,
  299. y1: newP.y,
  300. z1: newP.z,
  301. x2: newT.x,
  302. y2: newT.y,
  303. z2: newT.z,
  304. duration: duration,
  305. ease: 'easeOutBounce',
  306. onUpdate: function (object) {
  307. // 这里写逻辑
  308. camera.position.set(object.x1, object.y1, object.z1);
  309. controls.target.set(object.x2, object.y2, object.z2);
  310. controls.update();
  311. if (callBack) callBack();
  312. },
  313. onUpdateParams: [animateObj],
  314. onComplete: function () {
  315. // 完成
  316. controls.enabled = true;
  317. resolve(null);
  318. },
  319. }
  320. );
  321. });
  322. };
  323. export const transScreenCoord = (vector, camera) => {
  324. // const screenCoord = { x: 0, y: 0 };
  325. // vector.project(camera);
  326. // screenCoord.x = (0.5 + vector.x / 2) * window.innerWidth;
  327. // screenCoord.y = (0.5 - vector.y / 2) * window.innerHeight;
  328. // return screenCoord;
  329. const stdVector = vector.project(camera);
  330. const a = window.innerWidth / 2;
  331. const b = window.innerHeight / 2;
  332. const x = Math.round(stdVector.x * a + a);
  333. const y = Math.round(-stdVector.y * b + b);
  334. return { x, y };
  335. };
  336. export const drawHot = (scale: number) => {
  337. // const hotMap = new THREE.TextureLoader().load('/src/assets/images/hot-point.png');
  338. // const hotMap = new THREE.TextureLoader().setPath('/model/img/').load('/hot-point.png');
  339. const hotMap = new THREE.TextureLoader().load('/model/img/hot-point.png');
  340. const material = new THREE.SpriteMaterial({
  341. map: hotMap,
  342. });
  343. const hotPoint = new THREE.Sprite(material);
  344. const spriteTween = new TWEEN.Tween({
  345. scale: 1 * scale,
  346. })
  347. .to(
  348. {
  349. scale: 0.65 * scale,
  350. },
  351. 1000
  352. )
  353. .easing(TWEEN.Easing.Quadratic.Out);
  354. spriteTween.onUpdate(function (that) {
  355. hotPoint.scale.set(that.scale, that.scale, that.scale);
  356. });
  357. spriteTween.yoyo(true);
  358. spriteTween.repeat(Infinity);
  359. spriteTween.start();
  360. return hotPoint;
  361. };
  362. export const deviceDetailCard = () => {
  363. //
  364. };
  365. export const updateAxisCenter = (modal: UseThree, group: THREE.Object3D, event, callBack?) => {
  366. if (!modal) return;
  367. const appStore = useAppStore();
  368. event.stopPropagation();
  369. const widthScale = appStore.getWidthScale;
  370. const heightScale = appStore.getHeightScale;
  371. // 将鼠标位置归一化为设备坐标。x 和 y 方向的取值范围是 (-1 to +1)
  372. modal.mouse.x =
  373. ((-modal.canvasContainer.getBoundingClientRect().left * widthScale + event.clientX) / (modal.canvasContainer.clientWidth * widthScale)) * 2 - 1;
  374. modal.mouse.y =
  375. -((-modal.canvasContainer.getBoundingClientRect().top + event.clientY) / (modal.canvasContainer.clientHeight * heightScale)) * 2 + 1;
  376. (modal.rayCaster as THREE.Raycaster).setFromCamera(modal.mouse, modal.camera as THREE.Camera);
  377. if (group) {
  378. const intersects = modal.rayCaster?.intersectObjects(group.children, true) as THREE.Intersection[];
  379. if (intersects.length > 0) {
  380. const point = intersects[0].point;
  381. const target0 = modal.orbitControls.target.clone();
  382. gsap.fromTo(
  383. modal.orbitControls.target,
  384. { x: target0.x, y: target0.y, z: target0.z },
  385. {
  386. x: point.x,
  387. y: point.y,
  388. z: point.z,
  389. duration: 0.4,
  390. ease: 'easeInCirc',
  391. onUpdate: function (object) {
  392. if (object) modal.camera?.lookAt(new THREE.Vector3(object.x, object.y, object.z));
  393. },
  394. }
  395. );
  396. callBack(intersects);
  397. }
  398. }
  399. // const factor = 1;
  400. // //这里定义深度值为0.5,深度值越大,意味着精度越高
  401. // var vector = new THREE.Vector3(modal.mouse.x, modal.mouse.y, 0.5);
  402. // //将鼠标坐标转换为3D空间坐标
  403. // vector.unproject(modal.camera);
  404. // //获得从相机指向鼠标所对应的3D空间点的射线(归一化)
  405. // vector.sub(modal.camera.position).normalize();
  406. // if (event.originalEvent && event.originalEvent.deltaY && event.originalEvent.deltaY < 0) {
  407. // modal.camera.position.x += vector.x * factor;
  408. // modal.camera.position.y += vector.y * factor;
  409. // modal.camera.position.z += vector.z * factor;
  410. // modal.orbitControls.target.x += vector.x * factor;
  411. // modal.orbitControls.target.y += vector.y * factor;
  412. // modal.orbitControls.target.z += vector.z * factor;
  413. // } else {
  414. // modal.camera.position.x -= vector.x * factor;
  415. // modal.camera.position.y -= vector.y * factor;
  416. // modal.camera.position.z -= vector.z * factor;
  417. // modal.orbitControls.target.x -= vector.x * factor;
  418. // modal.orbitControls.target.y -= vector.y * factor;
  419. // modal.orbitControls.target.z -= vector.z * factor;
  420. // }
  421. // modal.orbitControls.update();
  422. // modal.camera.updateMatrixWorld();
  423. };
  424. export const addEnvMap = (hdr, modal) => {
  425. return new Promise((resolve) => {
  426. new RGBELoader().setPath('/model/hdr/').load(hdr + '.hdr', (texture) => {
  427. texture.mapping = THREE.EquirectangularReflectionMapping;
  428. const defaultEnvironment = texture;
  429. modal.scene.environment = defaultEnvironment;
  430. resolve(texture);
  431. });
  432. });
  433. };