翼度科技»论坛 编程开发 JavaScript 查看内容

Threejs实现一个园区

6

主题

6

帖子

18

积分

新手上路

Rank: 1

积分
18
       
一、实现方案
单独贴代码可能容易混乱,所以这里只讲实现思路,代码放在最后汇总了下。
想要实现一个简单的工业园区、主要包含的内容是一个大楼、左右两片停车位、四条道路以及多个可在道路上随机移动的车辆、遇到停车位时随机选择是否要停车,简单设计图如下

二、实现步奏
2.1 引入环境,天空和地面
 引入天空有三种方式:
  1) 第一种通过添加天空盒导入六个不同角度的天空图片可以形成,简单方便,缺点是在两个面之间会有视觉差
  2) 第二种是设置scene的背景和环境是一张天空图片来实现的,缺点图片单一,而且在天、地斜街处很生硬
  3) 不需要导入外部图片,通过在一个球体上添加渐变色实现,缺点球体只有一部分是天空颜色,内部为白色,需要设定旋转范围
  4) 使用Three.js中的example中的Sky.js实现,效果比较完美
 引入地面:给一个大平面添加一张草地纹理即可。
2.2 创建一块地基
  创建一个固定长度的平面,然后绕X轴旋转即可
2.3 布置围墙
  导入一个围墙模型作为一个围墙的基本单位A,算出围墙所占的长和宽,为了完整性,可以将园区的长和宽设定为A的整数倍。
2.4 办公楼、停车场、充电桩加载
  1)导入一个办公大楼模型
  2)创建一个停车场类Parking.js,主要用来创建单个停车位,其中需要计算出停车位的进入点,方便以后车辆进入。
  3)导入一个充电桩,每两个停车位使用一个充电桩
2.5 添加办公楼前景观、树、公交站点
  1)在指定位置导入景观模型和公交站点模型
  2)导入树模型,在园区前侧围墙均匀分布
2.6 铺设路面
       
           

  首先道路可以细化为上下行多个车道,而车辆则是行驶在各车道的中心线位置处,所以为了方便后续车辆的控制,需要先将道路拆分,然后获取各个道路中心线和车道中心线信息
  1)创建一个道路类Road.js,道路点信息传入的是图中红色点信息(图中菱形点),需要标记出从哪个点开始道路非直线,
    比如点信息格式为:[{ coord: [10, 0], type: 1}, { coord: [10, 10], type: 0}, { coord: [0, ], type: 1}] ;0代表曲线点,1代表直线点
  2)由于使用传入的原始道路点无法绘制出平滑的曲线而且在细化道路点的时候直线点数据细化不明显,所以需要先按照一定的间隔插入部分点信息(图中绿色五角星点)
  3)根据细化后的道路点按照道路宽度向两边开始扩展点信息,扩展方式通过获取当前点A和前一个点B组成的直线,取AB上垂线且距AB直线距离均为路宽的点即可,最终得到道路左侧点A和右侧点B
  4)通过ThreeJS中创建一条平滑曲线获取曲线上的多个点即可得到三条平滑的曲线A、B、C。
  5)经过第四步虽然可以得到道路数据,但是无法区分上下行,仍然不满足使用,通过图二上下行车辆最后生成组合成的一条闭合轨迹应该是逆时针的,
     所以需要将最后生成的A、B线顶点反转拼接成一个完整的多边形,如果是逆时针则可以得到正确的上下行路线。
  6)根据道路顶点即可画出道路面以及道路边界和中心线。
2.7 添加车辆以及车辆在道路随机移动的逻辑
  
             

  创建一个移动类,可以承接车辆或者行人,当前以车辆为主,主要包含移动轨迹、当前移动所在道路和车道、车位停车、驶离车位等内容。
  1)创建一个Move.js类,创建对象时传入停车场对象信息、道路对象信息,方便后续移动时可以计算出轨迹信息
  2)根据提供的初始位置计算出最近的道路和车道信息,与当前位置拼接在一起即可生成行动轨迹。
  3)当车辆移动到道路尽头时可以获取到本道路的另外一条车道即可实现掉头
  4)路口的判断:图三中,车辆由M车道途径N车道时,由M车道左侧当前位置和上一个位置组成的线段与N车道右侧车道起始或者终止点组成的线段有交集时则代表有路口,同样方法可以得到右侧道路的路口信息
  5)路口处拐入其他车道的轨迹生成:根据4)可以找到转向N的车道信息,但是无法保证平稳转向,所以可以通过找到M和N的车道中心线所在直线获取到交点C,然后由A、C、B生成一条贝塞尔曲线即可平滑转弯
2.8 添加停车逻辑以及车辆驶离逻辑
  1)寻找停车场:如图四,车辆在向前移动时,移动到的每个点都和所有停车场的入口B的位置判断距离,如果小于一个固定值的则代表临近车位,可以停车。
  2)停车方式:根据6)获取到的停车位,同时在当前路径上继续向前取15个点的位置C、B、A组成的曲线则是倒车入口的路径线。
三、遗留问题、待优化点
1. 拐弯添加的点不多,所以在拐弯处速度较快
  ---  可以通过在拐弯处组成的多个点通过生成的线获取多个点来解决这个问题
2. 需要添加一个路口来管理各条之间的关系
  --- 优点:(1). 有了路口后,可以解决车辆在路口移动时实时计算和其他路口的位置关系,可能会导致路口转弯混乱,通过在路口中心点生成一个外接圆,如果进入路口,则锁死移动方向,如果移出路口则解除锁定
    (2). 解决在路口处,各道路绘制的边线有重叠问题,使各个道路之间能看着更平滑
    缺点:最好不需要导入路口,而是由各个道路之间的相交关系计算得出,计算逻辑较为复杂。
3. 最好能添加一个停车场方便管理车位以及车辆驶入、驶离停车位
  --- 添加停车场,车辆只需要和停车场的位置计算即可,不需要和每个停车位计算位置,减少冗余计算,而且车辆如果和单个停车位计算位置,可能存在从停车位A使出,途径相邻的停车位B,又会进入。
    添加停车场通过给停车场添加标识即可解决这个问题
4. 车位和车道的边缘线无法加宽
  --- Three.js目前的缺陷,尝试几种办法暂时没有解决
5. 没有添加车辆防碰撞功能
四、完整的代码
  为了简单点,没有用Node安装依赖包,下述JS中引入的其他文件均在threeJS安装包中可以找到,拷贝过来即可。
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>园区案例</title>
  8. </head>
  9. <body >
  10.    
  11.       
  12.     </script>
  13. </body>
  14. </html>
复制代码
主页面index.html
  1. /**
  2. * 办公园区
  3. */
  4. import * as THREE from 'three';
  5. import { OrbitControls } from '../OrbitControls.js';
  6. import { GLTFLoader } from '../GLTFLoader.js';
  7. import { addEnviorment, segmentsIntr } from '../Objects/Common.js';
  8. import Move from './Move.js';
  9. import Road from './Road.js';
  10. import Parking from './Parking.js';
  11. /**
  12. * 1. 先引入环境 天空和地面
  13. * 2. 创建一块全区的地皮
  14. * 3. 布置围墙
  15. * 4. 办公楼、停车场、充电桩的位置
  16. * 5. 添加办公楼前装饰物、树、公交站点
  17. * 6. 铺设路面
  18. * 7. 写动态逻辑,设置页面动态化
  19. */
  20. const wWidth = window.innerWidth; // 屏幕宽度
  21. const wHeight = window.innerHeight; // 屏幕高度
  22. const scene = new THREE.Scene();
  23. let renderer = null;
  24. let camera = null;
  25. let controls = null;
  26. const roadObj = []; // 存储道路数据
  27. const moveObj = []; // 存储车辆数据
  28. // 园区宽度本身
  29. const long = 600; // 园区的长
  30. const width = 300; // 园区的宽
  31. // 停车场的长和宽
  32. const [parkingW, parkingH] = [20, 30];
  33. const parks = []; // 存储停车场数据
  34. let everyL = 0; // 单个围墙的长度
  35. let everyW = 0; // 单个围墙的厚度
  36. let buildH = 0; // 办公楼的厚度
  37. let wallNumL = 0; // 展示园区占多少个墙的长度,当前设置为最大的整数-1
  38. let wallNumW = 0;
  39. /**
  40. * 初始化
  41. */
  42. function init() {
  43.   addEnvir(true, false);
  44.   createBase();
  45.   loadWall();
  46.   setTimeout(() => {
  47.     loadBuildings();
  48.     setTimeout(() => {
  49.       loadOrnament();
  50.     }, 200)
  51.     loadRoad();
  52.     loadBusAndPeople();
  53.     addClick();
  54.   }, 500)
  55. }
  56. /**
  57. * 添加相机等基础功能
  58. */
  59. function addEnvir(lightFlag = true, axFlag = true, gridFlag = false) {
  60.   // 初始化相机
  61.   camera = new THREE.PerspectiveCamera(100, wWidth / wHeight, 1, 3000);
  62.   camera.position.set(300, 100, 300);
  63.   camera.lookAt(0, 0, 0);
  64.   // 创建灯光
  65.   // 创建环境光
  66.   const ambientLight = new THREE.AmbientLight(0xf0f0f0, 1.0);
  67.   ambientLight.position.set(0,0,0);
  68.   scene.add(ambientLight);
  69.   if (lightFlag) {
  70.     // 创建点光源
  71.     const pointLight = new THREE.PointLight(0xffffff, 1);
  72.     pointLight.decay = 0.0;
  73.     pointLight.position.set(200, 200, 50);
  74.     scene.add(pointLight);
  75.   }
  76.   // 添加辅助坐标系
  77.   if (axFlag) {
  78.     const axesHelper = new THREE.AxesHelper(150);
  79.     scene.add(axesHelper);
  80.   }
  81.   // 添加网格坐标
  82.   if (gridFlag) {
  83.     const gridHelper = new THREE.GridHelper(300, 25, 0x004444, 0x004444);
  84.     scene.add(gridHelper);
  85.   }
  86.   // 创建渲染器
  87.   renderer = new THREE.WebGLRenderer({ antialias:true, logarithmicDepthBuffer: true });
  88.   renderer.setPixelRatio(window.devicePixelRatio);
  89.   renderer.setClearColor(0xf0f0f0, 0.8);
  90.   renderer.setSize(wWidth, wHeight); //设置three.js渲染区域的尺寸(像素px)
  91.   renderer.render(scene, camera); //执行渲染操作
  92.   controls = new OrbitControls(camera, renderer.domElement);
  93.   // 设置拖动范围
  94.   controls.minPolarAngle = - Math.PI / 2;
  95.   controls.maxPolarAngle = Math.PI / 2 - Math.PI / 360;
  96.   
  97.   controls.addEventListener('change', () => {
  98.     renderer.render(scene, camera);
  99.   })
  100.   // 添加天空和草地
  101.   scene.add(...addEnviorment());
  102.   function render() {
  103.     // 随机选择一个移动物体作为第一视角
  104.     // const cur = moveObj[3];
  105.     // if (cur) {
  106.     //   const relativeCameraOffset = new THREE.Vector3(0, 20, -15);  
  107.    
  108.     //   const cameraOffset = relativeCameraOffset.applyMatrix4( cur.target.matrixWorld );  
  109.         
  110.     //   camera.position.x = cameraOffset.x;
  111.     //   camera.position.y = cameraOffset.y;
  112.     //   camera.position.z = cameraOffset.z;
  113.     //   // 始终让相机看向物体  
  114.     //   controls.target = cur.target.position;  
  115.     //   camera.lookAt(...cur.target.position.toArray());
  116.     // }
  117.    
  118.     renderer.render(scene, camera);
  119.     requestAnimationFrame(render);
  120.   }
  121.   render();
  122.   document.getElementById('webgl').appendChild(renderer.domElement);
  123. }
  124. /**
  125. * 创建园区的地基
  126. */
  127. function createBase() {
  128.   const baseGeo = new THREE.PlaneGeometry(long, width);
  129.   baseGeo.rotateX(-Math.PI / 2);
  130.   const baseMesh = new THREE.Mesh(
  131.     baseGeo,
  132.     new THREE.MeshBasicMaterial({
  133.       color: '#808080',
  134.       side: THREE.FrontSide
  135.     })
  136.   );
  137.   baseMesh.name = 'BASE';
  138.   scene.add(baseMesh);
  139. }
  140. /**
  141. * 加载围墙
  142. */
  143. function loadWall() {
  144.   const loader = new GLTFLoader();
  145.   loader.load('./Objects/model/wall.gltf', (gltf) => {
  146.     gltf.scene.scale.set(3, 3, 3);
  147.     const source = gltf.scene.clone();
  148.     // 获取单个围墙的大小
  149.     const box3 = new THREE.Box3().setFromObject(gltf.scene);
  150.     everyL = box3.max.x - box3.min.x;
  151.     everyW = box3.max.z - box3.min.z;
  152.     wallNumL = Math.floor(long / everyL) - 1;
  153.     wallNumW = Math.floor(width / everyL) - 1;
  154.    
  155.     // 加载后墙
  156.     // 墙的起点和终点
  157.     const backS = [-long / 2, 0, -width / 2];
  158.     for (let i = 0; i < wallNumL; i++) {
  159.       const cloneWall = source.clone();
  160.       cloneWall.position.x = backS[0] + everyL * i + everyL / 2;
  161.       cloneWall.position.z = backS[2];
  162.       scene.add(cloneWall);
  163.     }
  164.     // 加载左侧墙
  165.     const leftS = [-long / 2, 0, -width / 2];
  166.     for (let i = 0; i < wallNumW; i++) {
  167.       const cloneWall = source.clone();
  168.       cloneWall.rotateY(Math.PI / 2);
  169.       cloneWall.position.x = leftS[0];
  170.       cloneWall.position.z = leftS[2] + everyL * i + everyL / 2;
  171.       scene.add(cloneWall);
  172.     }
  173.     // 加载右侧墙
  174.     const rightS = [-long / 2 + wallNumL * everyL, 0, -width / 2];
  175.     for (let i = 0; i < wallNumW; i++) {
  176.       const cloneWall = source.clone();
  177.       cloneWall.rotateY(Math.PI / 2);
  178.       cloneWall.position.x = rightS[0];
  179.       cloneWall.position.z = rightS[2] + everyL * i + everyL / 2;
  180.       scene.add(cloneWall);
  181.     }
  182.     // 加载前侧墙
  183.     const frontS = [-long / 2, 0, -width / 2 + wallNumW * everyL];
  184.     for (let i = 0; i < wallNumL; i++) {
  185.       if (i !== Math.floor(wallNumL / 2)) {
  186.         const cloneWall = source.clone();
  187.         cloneWall.position.x = frontS[0] + everyL * i + everyL / 2;
  188.         cloneWall.position.z = frontS[2];
  189.         scene.add(cloneWall);
  190.       }
  191.     }
  192.   })
  193. }
  194. /**
  195. * 加载办公大楼以及停车场和充电桩
  196. */
  197. function loadBuildings() {
  198.   const loader = new GLTFLoader();
  199.   loader.load('./Objects/model/buildings.gltf', (gltf) => {
  200.     gltf.scene.scale.set(4, 4, 4);
  201.     // 获取大楼的大小
  202.     const box3 = new THREE.Box3().setFromObject(gltf.scene);
  203.     buildH = box3.max.z - box3.min.z;
  204.     gltf.scene.position.z = -width / 2 + buildH / 2;
  205.     scene.add(gltf.scene);
  206.   })
  207.   // 添加左侧停车场
  208.   // 左侧停车场起始点坐标
  209.   const leftSPos = [-long / 2 + everyW + parkingH / 2, 0, -width / 2 + everyW + parkingW / 2 + 3];
  210.   for (let i = 0; i < 4; i++) {
  211.     const z =  leftSPos[2] + i * parkingW;
  212.     const parking = new Parking({
  213.       name: `A00${i + 1}`,
  214.       width: parkingW,
  215.       height: parkingH,
  216.       position: [leftSPos[0], leftSPos[1] + 1, z]
  217.     })
  218.     scene.add(parking.group);
  219.     parks.push(parking);
  220.   }
  221.   // 右侧充电桩起始点坐标 并预留位置给充电枪
  222.   const rightSPos = [-long / 2 + wallNumL * everyL - everyW - parkingH / 2 - 10, 0, -width / 2 + everyW + parkingW / 2 + 3];
  223.   for (let i = 0; i < 4; i++) {
  224.     const parking = new Parking({
  225.       name: `B00${i + 1}`,
  226.       width: parkingW,
  227.       height: parkingH,
  228.       position: [rightSPos[0], rightSPos[1] + 1, rightSPos[2] + i * parkingW],
  229.       rotate: Math.PI
  230.     })
  231.     scene.add(parking.group);
  232.     parks.push(parking);
  233.   }
  234.   
  235.   // 添加充电桩
  236.   const chargePos = [-long / 2 + wallNumL * everyL - everyW - 4, 0, -width / 2 + everyW + 3 + parkingW];
  237.   loader.load('./Objects/model/charging.gltf', (gltf) => {
  238.     for (let i = 0; i < 2; i++) {
  239.       const source = gltf.scene.clone();
  240.       source.scale.set(6, 6, 6);
  241.       source.rotateY(Math.PI / 2);
  242.       source.position.x = chargePos[0];
  243.       source.position.y = chargePos[1];
  244.       source.position.z = chargePos[2] + i * 2 * parkingW;
  245.       scene.add(source);
  246.     }
  247.   })
  248. }
  249. /**
  250. * 添加办公楼前装饰物、树、公交站点
  251. */
  252. function loadOrnament() {
  253.   // 加载办公室前方雕塑
  254.   const loader = new GLTFLoader();
  255.   loader.load('./Objects/model/bed.gltf', (bedGltf) => {
  256.     bedGltf.scene.scale.set(2, 2, 2);
  257.     bedGltf.scene.rotateY(-Math.PI * 7 / 12);
  258.     loader.load('./Objects/model/sculpture.gltf', (sculGltf) => {
  259.       sculGltf.scene.scale.set(20, 20, 20);
  260.       sculGltf.scene.y = sculGltf.scene.y + 4;
  261.       const group = new THREE.Group();
  262.       group.add(bedGltf.scene);
  263.       group.add(sculGltf.scene);
  264.       group.position.set(0, 0, -width / 2 + everyW + buildH + 10);
  265.       scene.add(group);
  266.     });
  267.   });
  268.   
  269.   // 加载树木,沿街用的是柏树
  270.   loader.load('./Objects/model/songshu.gltf', (gltf) => {
  271.     const source = gltf.scene;
  272.     source.scale.set(8, 8, 8);
  273.     // 前面墙的树木, 单个墙的中间区域放置一棵树
  274.     const frontS = [-long / 2 + everyL / 2, 0, -width / 2 + wallNumW * everyL - 5];
  275.     for (let i = 0; i < wallNumL; i++) {
  276.       // 同样门口不放置树
  277.       if (i !== Math.floor(wallNumL / 2)) {
  278.         const temp = source.clone();
  279.         temp.position.set(frontS[0] + i * everyL, frontS[1], frontS[2]);
  280.         scene.add(temp);
  281.       }
  282.     }
  283.   });
  284.   // 加载公交站点,位置在距离大门右侧第二单面墙处
  285.   loader.load('./Objects/model/busStops.gltf', (gltf) => {
  286.     const source = gltf.scene;
  287.     source.scale.set(4, 4, 4);
  288.     gltf.scene.position.set(-long / 2 + (Math.floor(wallNumL / 2) + 3) * everyL, 0, -width / 2 + wallNumW * everyL + everyW + 3);
  289.     scene.add(gltf.scene);
  290.   });
  291. }
  292. /**
  293. * 铺设园区和园区外面的公路
  294. * 包含公路以及部分人行道路
  295. */
  296. function loadRoad() {
  297.   const space = 40;
  298.   const outWidth = 40;
  299.   // 加载园区外面的公路
  300.   const outerP1 = [
  301.     { coord: [-long / 2, 0, -width / 2 + wallNumW * everyL + space], type: 1 },
  302.     { coord: [long / 2, 0, -width / 2 + wallNumW * everyL + space], type: 1 },
  303.   ];
  304.   const road1 = new Road({
  305.     name: 'road_1',
  306.     sourceCoord: outerP1,
  307.     width: outWidth,
  308.     showCenterLine: true
  309.   });
  310.   scene.add(road1.group);
  311.   const outerP2 = [
  312.     { coord: [-long / 2 + wallNumL * everyL + outWidth / 2  + 10, 0, -width / 2 + wallNumW * everyL + space - outWidth / 2 + 0.5], type: 1 },
  313.     { coord: [-long / 2 + wallNumL * everyL + outWidth / 2  + 10, 0, -width / 2], type: 1 },
  314.   ];
  315.   const road2 = new Road({
  316.     name: 'road_2',
  317.     sourceCoord: outerP2,
  318.     width: outWidth,
  319.     showCenterLine: true,
  320.     zIndex: 0.8
  321.   });
  322.   scene.add(road2.group);
  323.   // 加载园区内的道路
  324.   const innerWidth = 25;
  325.   const color = 0x787878;
  326.   const lineColor = 0xc2c2c2;
  327.   // 加载到停车场的道路
  328.   const innerP1 = [
  329.     { coord: [-long / 2 + Math.floor(wallNumL / 2) * everyL + everyL / 2, 0, -width / 2 + wallNumW * everyL + space - outWidth / 2 + 0.5], type: 1 },
  330.     { coord: [-long / 2 + Math.floor(wallNumL / 2) * everyL + everyL / 2, 0, -width / 2 + wallNumW * everyL + space - 60], type: 0 },
  331.     { coord: [-long / 2 + Math.floor(wallNumL / 2) * everyL + everyL / 2 - innerWidth / 2, 0, -width / 2 + wallNumW * everyL + space - 60 - innerWidth / 2], type: 1 },
  332.     { coord: [-long / 2 + parkingH + 20 + innerWidth / 2, 0, -width / 2 + wallNumW * everyL + space - 60 - innerWidth / 2], type: 0 },
  333.     { coord: [-long / 2 + parkingH + 20, 0, -width / 2 + wallNumW * everyL + space - 60 - innerWidth], type: 1 },
  334.     { coord: [-long / 2 + parkingH + 20, 0, -width / 2 + everyW + 10], type: 1 },
  335.   ];
  336.   const street1 = new Road({
  337.     name: 'street_1',
  338.     sourceCoord: innerP1,
  339.     width: innerWidth,
  340.     showCenterLine: true,
  341.     zIndex: 0.8,
  342.     planeColor: color,
  343.     sideColor: lineColor
  344.   });
  345.   scene.add(street1.group);
  346.   // 加载到充电桩的道路
  347.   const innerP2 = [
  348.     { coord: [-long / 2 + Math.floor(wallNumL / 2) * everyL + everyL / 2, 0, -width / 2 + wallNumW * everyL + space - outWidth / 2 + 0.5], type: 1 },
  349.     { coord: [-long / 2 + Math.floor(wallNumL / 2) * everyL + everyL / 2, 0, -width / 2 + wallNumW * everyL + space - 60], type: 0 },
  350.     { coord: [-long / 2 + Math.floor(wallNumL / 2) * everyL + everyL / 2 + innerWidth / 2, 0, -width / 2 + wallNumW * everyL + space - 60 - innerWidth / 2], type: 1 },
  351.     { coord: [-long / 2 + wallNumL * everyL - parkingH - everyW - 39, 0, -width / 2 + wallNumW * everyL + space - 60 - innerWidth / 2], type: 0 },
  352.     { coord: [-long / 2 + wallNumL * everyL - parkingH - everyW - 39 + innerWidth / 2, 0, -width / 2 + wallNumW * everyL + space - 60 - innerWidth], type: 1 },
  353.     { coord: [-long / 2 + wallNumL * everyL - parkingH - everyW - 39 + innerWidth / 2, 0, -width / 2 + everyW + 10], type: 1 },
  354.   ];
  355.   const street2 = new Road({
  356.     name: 'street_2',
  357.     sourceCoord: innerP2,
  358.     width: innerWidth,
  359.     showCenterLine: true,
  360.     zIndex: 0.8,
  361.     planeColor: color,
  362.     sideColor: lineColor
  363.   });
  364.   scene.add(street2.group);
  365.   roadObj.push(
  366.     road1,
  367.     road2,
  368.     street1,
  369.     street2
  370.   );
  371.   calFork();
  372. }
  373. /**
  374. * 计算pointA和pointB 组成的直线与点集points是否有相交
  375. * @param {*} points
  376. * @param {*} pontA
  377. * @param {*} pointB
  378. */
  379. function judgeIntersect(points, pointA, pointB) {
  380.   let res = { flag: false, interP: [] };
  381.   for (let i = 0; i < points.length - 1; i++) {
  382.     const cur = points[i];
  383.     const nextP = points[i + 1];
  384.     const interP = segmentsIntr(cur, nextP, pointA, pointB, true)
  385.     if ( interP !== false) {
  386.       res.flag = true;
  387.       res.interP = interP;
  388.       res.index = i;
  389.       break;
  390.     }
  391.   }
  392.   return res;
  393. }
  394. /**
  395. * 计算各条道路的岔口信息并统计到道路对象中
  396. */
  397. function calFork() {
  398.   function setInter(cur, next, interP, corner, width) {
  399.     const circle = new THREE.ArcCurve(corner[0], corner[2], width * 2).getPoints(20);
  400.     const cirPoints = circle.map(e => new THREE.Vector3(e.x, 0, e.y));
  401.     cur.intersect.push({ name: next.name,
  402.       interPoint: interP,
  403.       corner: cirPoints,
  404.       cornerCenter: corner
  405.     });
  406.     next.intersect.push({
  407.       name: cur.name,
  408.       interPoint: interP,
  409.       corner: cirPoints,
  410.       cornerCenter: corner
  411.     });
  412.   }
  413.   roadObj.forEach((e, i) => {
  414.     if (i < roadObj.length - 1) {
  415.       for (let j = i + 1; j < roadObj.length; j++) {
  416.         if (e.intersect.map(e => e.name).indexOf(roadObj[j].name) < 0) {
  417.           const middle = roadObj[j].middle;
  418.           // 计算路牙和其他道路是否有相交
  419.           // 左边路牙和下一条路的起始位置做对比
  420.           let inter = judgeIntersect(e.left, middle[0], middle[1]);
  421.           if (inter.flag) {
  422.             const cornerCenter = segmentsIntr(e.middle[inter.index], e.middle[inter.index + 1], middle[0], middle[1]);
  423.             setInter(e, roadObj[j], inter.interP, cornerCenter, roadObj[j].width);
  424.             continue;
  425.           }
  426.           // 左边路牙和下一条路的终止位置做对比
  427.           inter = judgeIntersect(e.left, middle[middle.length - 1], middle[middle.length - 2])
  428.           if (inter.flag) {
  429.             const cornerCenter = segmentsIntr(e.middle[inter.index], e.middle[inter.index + 1], middle[middle.length - 1], middle[middle.length - 2]);
  430.             setInter(e, roadObj[j], inter.interP, cornerCenter, roadObj[j].width);
  431.             continue;
  432.           }
  433.          
  434.           // 右边路牙和下一条路的起始位置做对比
  435.           inter = judgeIntersect(e.right, middle[0], middle[1]);
  436.           if (inter.flag) {
  437.             const cornerCenter = segmentsIntr(e.middle[inter.index], e.middle[inter.index + 1], middle[0], middle[1]);
  438.             setInter(e, roadObj[j], inter.interP, cornerCenter, roadObj[j].width);
  439.             continue;
  440.           }
  441.          
  442.           // 右边路牙和下一条路的终止位置做对比
  443.           inter = judgeIntersect(e.right, middle[middle.length - 1], middle[middle.length - 2]);
  444.           if (inter.flag) {
  445.             const cornerCenter = segmentsIntr(e.middle[inter.index], e.middle[inter.index + 1], middle[middle.length - 1], middle[middle.length - 2]);
  446.             setInter(e, roadObj[j], inter.interP, cornerCenter, roadObj[j].width);
  447.             continue;
  448.           }
  449.         }
  450.       }
  451.     }
  452.   })
  453. }
  454. function actionTemp(target, name, flag, moveName) {
  455.   const filter = roadObj.filter(e => e.name === name)[0];
  456.   const carObject = new Move({
  457.     name: moveName,
  458.     target: target,
  459.     roads: roadObj,
  460.     startPos: flag ? filter.left[0] : filter.right[0],
  461.     parks: parks
  462.   });
  463.   moveObj.push(carObject);
  464. }
  465. /**
  466. * 加载行人和汽车
  467. */
  468. function loadBusAndPeople() {
  469.   // 加载汽车和公交车
  470.   const loader = new GLTFLoader();
  471.   const carId = [
  472.     'car0',
  473.     'car2',
  474.     'car4',
  475.     'car5',
  476.     'bus',
  477.     'car3',
  478.   ];
  479.   const roadIds = [
  480.     'road_1',
  481.     'road_2',
  482.     'street_1',
  483.     'street_2',
  484.     'street_2',
  485.     'road_2',
  486.   ];
  487.   carId.forEach((e, i) => {
  488.     loader.load(`./Objects/model/${e}.gltf`, (gltf) => {
  489.       gltf.scene.scale.set(4, 4, 4);
  490.       scene.add(gltf.scene);
  491.       gltf.scene.name = e;
  492.       actionTemp(gltf.scene, roadIds[i], false, e);
  493.     });
  494.   })
  495. }
  496. /**
  497. * 点击汽车驶离停车位
  498. */
  499. function addClick() {
  500.   renderer.domElement.addEventListener('click', (event) => {
  501.     const px = event.offsetX;
  502.     const py = event.offsetY;
  503.     const x = (px / wWidth) * 2 - 1;
  504.     const y = -(py / wHeight) * 2 + 1;
  505.     //创建一个射线发射器
  506.     const raycaster = new THREE.Raycaster();
  507.     // .setFormCamera()计算射线投射器的射线属性ray
  508.     // 即在点击位置创造一条射线,被射线穿过的模型代表选中
  509.     raycaster.setFromCamera(new THREE.Vector2(x, y), camera);
  510.     const intersects = raycaster.intersectObjects(moveObj.map(e => e.target));
  511.     if (intersects.length > 0) {
  512.       const move = moveObj.filter(e => e.name === intersects[0].object.parent.name || e.name === intersects[0].object.parent.parent.name)[0];
  513.       if (move && move.pause) {
  514.         move.unParkCar();
  515.       }
  516.     }
  517.   })
  518. }
  519. init();
复制代码
控制器Main.js
  1. import * as THREE from 'three';
  2. import { getCurvePoint, getSidePoints, segmentsIntr, clone, isClockWise } from './Common.js';
  3. /**
  4. * 移动类,实现物体如何按照路径运动以及在岔路口如何选择等功能
  5. * 后期可以增加碰撞检测避让等功能
  6. */
  7. class Road {
  8.   constructor(props) {
  9.     // 道路的原始点信息,通过这些点信息扩展道路
  10.     this.sourceCoord = props.sourceCoord;
  11.     // 道路名称
  12.     this.name = props.name;
  13.     // 道路宽度
  14.     this.width = props.width;
  15.     // 是否显示道路中心线
  16.     this.showCenterLine = props.showCenterLine === false ? false : true;
  17.     // 左侧路牙点集合
  18.     this.left = [];
  19.     // 道路中心线点集合
  20.     this.middle = [];
  21.     // 右侧路牙点集合
  22.     this.right = [];
  23.     // 道路面的颜色
  24.     this.planeColor = props.planeColor || 0x606060;
  25.     // 道路边线的颜色
  26.     this.sideColor = props.sideColor || 0xffffff;
  27.     // 道路中心线的颜色
  28.     this.middleColor = props.middleColor || 0xe0e0e0;
  29.    
  30.     // 道路的层级
  31.     this.zIndex = props.zIndex || 0.5;
  32.     // 车道信息
  33.     this.lanes = [];
  34.     // 道路组合对象
  35.     this.group = null;
  36.     // 相交的道路名称 数据格式{name: ***, interPoint: [xx,xx,xx]}
  37.     this.intersect = [];
  38.     this.lineInsert();
  39.     this.create();
  40.   }
  41.   /**
  42.    * 由于直线获取贝塞尔点的时候插入的点较少导致物体运动较快,所以在
  43.    * 平行与X、Y轴的线插入部分点,保证物体运动平滑,插入点时保证X或者Z轴间距为路宽的一半
  44.    */
  45.   lineInsert() {
  46.     const temp = [];
  47.     const half = this.width / 2;
  48.     this.sourceCoord.forEach((cur, i) => {
  49.       temp.push(cur);
  50.       if (i < this.sourceCoord.length - 1) {
  51.         const e = cur.coord;
  52.         const nextP = this.sourceCoord[i + 1].coord;
  53.         // 处理直线
  54.         if (cur.type === 1) {
  55.           if (e[0] - nextP[0] === 0) {
  56.             // 平行Z轴
  57.             if (e[2] < nextP[2]) {
  58.               for (let i = e[2] + half; i < nextP[2]; i += half) {
  59.                 temp.push({
  60.                   coord: [e[0], e[1], i],
  61.                   type: 1
  62.                 });
  63.               }
  64.             } else {
  65.               for (let i = e[2] - half; i > nextP[2]; i -= half) {
  66.                 temp.push({
  67.                   coord: [e[0], e[1], i],
  68.                   type: 1
  69.                 });
  70.               }
  71.             }
  72.           } else if (e[2] - nextP[2] === 0) {
  73.             // 平行X轴
  74.             if (e[0] < nextP[0]) {
  75.               for (let i = e[0] + half; i < nextP[0]; i += half) {
  76.                 temp.push({
  77.                   coord: [i, e[1], e[2]],
  78.                   type: 1
  79.                 });
  80.               }
  81.             } else {
  82.               for (let i = e[0] - half; i > nextP[0]; i -= half) {
  83.                 temp.push({
  84.                   coord: [i, e[1], e[2]],
  85.                   type: 1
  86.                 });
  87.               }
  88.             }
  89.           }
  90.         }
  91.       }
  92.     })
  93.     this.sourceCoord = temp;
  94.   }
  95.   /**
  96.    * 创建道路
  97.    */
  98.   create() {
  99.     const group = new THREE.Group();
  100.     const roadPoints = this.getPoints(this.sourceCoord, this.width);
  101.    
  102.     this.left = roadPoints[0];
  103.     this.middle = roadPoints[1];
  104.     this.right = roadPoints[2];
  105.     const isWise = isClockWise(this.left.concat(clone(this.right).reverse()));
  106.     // 添加左车道
  107.     this.lanes.push(new Lane({
  108.       name: `${this.name}_lane_0`,
  109.       type: 'left',
  110.       isReverse: isWise,
  111.       side: this.left,
  112.       middle: this.middle
  113.     }));
  114.     // 添加右车道
  115.     this.lanes.push(new Lane({
  116.       name: `${this.name}_lane_1`,
  117.       type: 'right',
  118.       isReverse: !isWise,
  119.       side: this.right,
  120.       middle: this.middle
  121.     }));
  122.    
  123.     const outlinePoint = roadPoints[0].concat(clone(roadPoints[2]).reverse());
  124.     outlinePoint.push(roadPoints[0][0]);
  125.     const shape = new THREE.Shape();
  126.     outlinePoint.forEach((e, i) => {
  127.       if (i === 0) {
  128.         shape.moveTo(e[0], e[2], e[1]);
  129.       } else {
  130.         shape.lineTo(e[0], e[2], e[1]);
  131.       }
  132.     })
  133.     // 创建道路面
  134.     const plane = new THREE.Mesh(
  135.       new THREE.ShapeGeometry(shape),
  136.       new THREE.MeshBasicMaterial({
  137.         color: this.planeColor,
  138.         side: THREE.DoubleSide
  139.       })
  140.     )
  141.     plane.rotateX(Math.PI / 2);
  142.     group.add(plane);
  143.    
  144.     // 创建道路边沿线
  145.     const sideL = new THREE.Line(
  146.       new THREE.BufferGeometry().setFromPoints(roadPoints[0].map(e => new THREE.Vector3(...e))),
  147.       new THREE.LineBasicMaterial({ color: this.sideColor, linewidth: 10 })
  148.     );
  149.     const sideR = new THREE.Line(
  150.       new THREE.BufferGeometry().setFromPoints(roadPoints[2].map(e => new THREE.Vector3(...e))),
  151.       new THREE.LineBasicMaterial({ color: this.sideColor, linewidth: 10 })
  152.     );
  153.     group.add(sideL, sideR);
  154.     // 创建道路中心虚线
  155.     if (this.showCenterLine) {
  156.       const sideM = new THREE.Line(
  157.         new THREE.BufferGeometry().setFromPoints(roadPoints[1].map(e => new THREE.Vector3(...e))),
  158.         new THREE.LineDashedMaterial({ color: this.middleColor, linewidth: 10, gapSize: 5, dashSize: 5 })
  159.       );
  160.       sideM.computeLineDistances();
  161.       group.add(sideM);
  162.     }
  163.     group.position.y = group.position.y + this.zIndex;
  164.     group.name = this.name;
  165.     this.group = group;
  166.   }
  167.   /**
  168.    * 获取道路的顶点信息
  169.    */
  170.   getPoints(points) {
  171.     const half = this.width / 2;
  172.     // 存储左中右三条线路的顶点信息
  173.     const [left, middle, right] = [[], [], []];
  174.     for (let i = 0; i < points.length;) {
  175.       const e = points[i].coord;
  176.       if (points[i].type === 1) {
  177.         // 直线处理方式
  178.         if (i === 0) {
  179.           const nextP = points[i + 1].coord;
  180.           const side = getSidePoints(e, nextP, e, half);
  181.           left.push(side[0]);
  182.           middle.push(e);
  183.           right.push(side[1]);
  184.         } else {
  185.           const preP = points[i - 1].coord;
  186.           const side = getSidePoints(preP, e, e, half);
  187.           left.push(side[0]);
  188.           middle.push(e);
  189.           right.push(side[1]);
  190.         }
  191.         i++;
  192.       } else {
  193.         // 曲线处理方式
  194.         const preMidP = points[i - 1].coord;
  195.         const nextMidP1 = points[i + 1].coord;
  196.         const nextMidP2 = points[i + 2].coord;
  197.         // 获取两侧点信息
  198.         const sideP1 = getSidePoints(preMidP, e, e, half);
  199.         const sideP2 = getSidePoints(nextMidP1, nextMidP2, nextMidP1, half);
  200.         const sideP3 = getSidePoints(nextMidP1, nextMidP2, nextMidP2, half);
  201.         
  202.         // 左侧
  203.         const interLeft = segmentsIntr(left[left.length - 1], sideP1[0], sideP2[0], sideP3[0]);
  204.         const curveLeft = getCurvePoint(sideP1[0], interLeft, sideP2[0]);
  205.         left.push(...curveLeft);
  206.         // 中间
  207.         const interMid = segmentsIntr(middle[middle.length - 1], e, nextMidP1, nextMidP2);
  208.         const curveMid = getCurvePoint(e, interMid, nextMidP1);
  209.         middle.push(...curveMid);
  210.         // 右侧
  211.         const interRight = segmentsIntr(right[right.length - 1], sideP1[1], sideP2[1], sideP3[1]);
  212.         const curveRight = getCurvePoint(sideP1[1], interRight, sideP2[1]);
  213.         right.push(...curveRight);
  214.         i += 2;
  215.       }
  216.     }
  217.     return [left, middle, right];
  218.   }
  219. }
  220. /**
  221. * 车道对象
  222. */
  223. class Lane {
  224.   constructor(options) {
  225.     //车道名称
  226.     this.name = options.name;
  227.     // 标识左车道还是右车道
  228.     this.type = options.type;
  229.     // 行驶方向和点的方向是否一致
  230.     this.direction = options.direction;
  231.     // 车道中心线
  232.     this.coord = this.getCenter(options.middle, options.side, options.isReverse);
  233.   }
  234.   getCenter(middle, side, reverseFlag) {
  235.     const center = middle.map((e, i) => {
  236.       return [(e[0] + side[i][0]) / 2, e[1], (e[2] + side[i][2]) / 2];
  237.     });
  238.     return reverseFlag ? center.reverse() : center;
  239.   }
  240. }
  241. export default Road;
复制代码
道路类Road.js
  1. import * as THREE from 'three';
  2. import { TextGeometry } from '../TextGeometry.js';
  3. import { FontLoader } from '../FontLoader.js';
  4. /**
  5. * 停车场类
  6. *
  7. */
  8. class Parking {
  9.   constructor(props) {
  10.     // 停车场的名称
  11.     this.name = props.name;
  12.     // 停车场的宽
  13.     this.width = props.width;
  14.     // 停车场的长
  15.     this.height = props.height;
  16.     // 停车场的中心位置
  17.     this.position = props.position;
  18.     // 停车场的顶点信息
  19.     this.coord = [];
  20.     // 停车场有时候需要根据不同的显示位置进行Z轴旋转
  21.     this.rotate = props.rotate;
  22.     // 停车位的入口点,主要确保车辆进出的方向
  23.     this.entryPoint = [];
  24.     // 车位已经停车标识
  25.     this.placed = false;
  26.     this.create();
  27.   }
  28.   /**
  29.    * 创建道路
  30.    */
  31.   create() {
  32.     const points = [
  33.       new THREE.Vector3(-this.height / 2, this.width / 2, 0),
  34.       new THREE.Vector3(-this.height / 2, -this.width / 2, 0),
  35.       new THREE.Vector3(this.height / 2, -this.width / 2, 0),
  36.       new THREE.Vector3(this.height / 2, this.width / 2, 0)
  37.     ];
  38.     // 停车场四周白色边线
  39.     const line = new THREE.LineLoop(
  40.       new THREE.BufferGeometry().setFromPoints(points),
  41.       new THREE.LineBasicMaterial({ color: 0xe0e0e0, linewidth: 1 })
  42.     );
  43.       
  44.     // 停车场面
  45.     const plane = new THREE.Mesh(
  46.       new THREE.PlaneGeometry(-this.height, this.width),
  47.       new THREE.MeshLambertMaterial({ color: 0xc0e9bf, side: THREE.DoubleSide })
  48.     );
  49.   
  50.     // 添加车位编号
  51.     const loader = new FontLoader();
  52.     loader.load('./Objects/helvetiker_regular.typeface.json', (font) => {
  53.       const textGeo = new TextGeometry(this.name, {
  54.         font: font,
  55.         size: 2,
  56.         height: 0
  57.       });
  58.       textGeo.rotateZ(-Math.PI / 2);
  59.       const text = new THREE.Mesh(
  60.         textGeo,
  61.         new THREE.MeshBasicMaterial({ color: 0xffffff })
  62.       );
  63.       text.position.x = this.height * 3 / 8;
  64.       text.position.y = this.name.length / 2;
  65.       text.position.z = text.position.z + 1;
  66.       group.add(text);
  67.     });
  68.     const group = new THREE.Group();
  69.     group.add(line);
  70.     group.add(plane);
  71.     group.rotateX(-Math.PI / 2);
  72.     if (this.rotate) {
  73.       group.rotateZ(this.rotate);
  74.     }
  75.     this.group = group;
  76.     group.position.set(...this.position);
  77.     let beta = 1;
  78.     if (this.rotate === Math.PI) {
  79.       beta = -1;
  80.     }
  81.     this.entryPoint = [this.height * beta / 2 + this.position[0], this.position[1], this.position[2]];
  82.   }
  83. }
  84. export default Parking;
复制代码
停车位类Parking.js
  1. import * as THREE from 'three';
  2. import { calDistance, drawLine, clone, pointInPolygon, segmentsIntr } from './Common.js';
  3. /**
  4. * 移动类,实现物体如何按照路径运动以及在岔路口如何选择等功能
  5. * 后期可以增加碰撞检测避让等功能
  6. */
  7. class Move {
  8.   constructor(props) {
  9.     // 所有道路信息
  10.     this.roads = {};
  11.     props.roads.forEach(e => this.roads[e.name] = e);
  12.     this.name = props.name;
  13.     // 物体对象
  14.     this.target = props.target;
  15.     // 前进还是倒车 1:前进;-1:倒车
  16.     this.direction = 1;
  17.     // 物体初始位置
  18.     this.startPos = props.startPos;
  19.     // 移动轨迹
  20.     this.trace = [];
  21.     // 当前形式的道路
  22.     this.curRoad = null;
  23.     // 锁定下一步行动趋势,主要是为了解决在路口物体获取到下一步行动后再次获取行动导致功能乱掉
  24.     this.trendLock = false;
  25.     this.preRoadName = null;
  26.     // 当前移动所在的车道
  27.     this.curLane = null;
  28.     // 是否暂停移动
  29.     this.pause = false;
  30.     // 园区停车场信息
  31.     this.parks = props.parks;
  32.     this.parkObj = null;
  33.     this.init();
  34.   }
  35.   /**
  36.    * 获取当前实体所在道路以及移动方向和移动轨迹
  37.    */
  38.   init() {
  39.     let minDis = {
  40.       roadName: '',  // 起始位置所在道路的道路名
  41.       distance: 100000, // 起始物体与车道左右边线的最小距离
  42.       curLane: null, // 移动的车道
  43.     };
  44.     for (let o in this.roads) {
  45.       const road = this.roads[o];
  46.       const startLeftDis = calDistance(road.lanes[0].coord[0], this.startPos);
  47.       const startRightDis = calDistance(road.lanes[1].coord[0], this.startPos);
  48.       const endLeftDis = calDistance(road.lanes[0].coord[road.lanes[0].coord.length - 1], this.startPos);
  49.       const endRightDis = calDistance(road.lanes[1].coord[road.lanes[1].coord.length - 1], this.startPos);
  50.       const min = Math.min(startLeftDis, startRightDis, endLeftDis, endRightDis);
  51.       if (minDis.distance > min) {
  52.         minDis = {
  53.           roadName: o,
  54.           distance: min,
  55.           curLane: (min === startRightDis || min === endRightDis) ? road.lanes[0] : road.lanes[1],
  56.           index: (startLeftDis === min || startRightDis === min) ? 0 : road.left.length - 1
  57.         };
  58.       }
  59.     }
  60.     this.curLane = minDis.curLane;
  61.    
  62.     this.curRoad = this.roads[minDis.roadName];
  63.     this.trace = this.getSpreadPoint(this.curLane.coord);
  64.     this.moveIndex = minDis.index;
  65.     this.move();
  66.   }
  67.   /**
  68.    * 获取车道中心线
  69.    * 将车道的左右线取平均值即可
  70.    * @param {*} params
  71.    */
  72.   getLaneCenter(points1, points2) {
  73.     return points1.map((e, i) => {
  74.       return [(e[0] + points2[i][0]) / 2, e[1], (e[2] + points2[i][2]) / 2];
  75.     })
  76.   }
  77.   move() {
  78.     if (!this.pause) {
  79.       this.checkMoveOutCorner();
  80.       this.parkCar();
  81.       // 如果移动到当前轨迹的最后一个点时,需要进行掉头重新寻找轨迹
  82.       const forks = this.checkFork();
  83.       if (forks.length !== 0) {
  84.         this.getRandomTrend(forks);
  85.       } else if (this.moveIndex === this.trace.length - 1) {
  86.         this.getTurnPoint();
  87.       }
  88.       const curPosition = this.trace[this.moveIndex].toArray();
  89.       this.target.position.set(...curPosition);
  90.       if (this.direction === 1) {
  91.         // 前进
  92.         if (this.moveIndex !== this.trace.length - 1) {
  93.           this.target.lookAt(...this.trace[this.moveIndex + 1].toArray());
  94.         }
  95.       } else {
  96.         // 倒车
  97.         if (this.moveIndex !== 0) {
  98.           this.target.lookAt(...this.trace[this.moveIndex - 1].toArray());
  99.         }
  100.       }
  101.       
  102.       this.moveIndex ++;
  103.     }
  104.     requestAnimationFrame(this.move.bind(this));
  105.   }
  106.   /**
  107.    * 在锁定后检查物体是否已经移出路口,如果移出则解除锁定
  108.    */
  109.   checkMoveOutCorner() {
  110.     if (!this.trendLock) {
  111.       return false;
  112.     }
  113.     const preObj = this.curRoad.intersect.filter(e => e.name === this.preRoadName)[0];
  114.     if (preObj && !pointInPolygon(this.trace[this.moveIndex], preObj.corner)) {
  115.       this.trendLock = false;
  116.       this.preRoadName = null;
  117.     }
  118.     return this.trendLock;
  119.   }
  120.   /**
  121.    * 根据提供的点信息寻找最近的点值
  122.    */
  123.   findNearIndex(points, pointA) {
  124.     let min = 100000;
  125.     let index = -1;
  126.     for (let i = 0; i < points.length; i++) {
  127.       const dis = calDistance(points[i], pointA);
  128.       if (dis < min) {
  129.         min = dis;
  130.       } else {
  131.         index = i - 1;
  132.         break;
  133.       }
  134.     }
  135.     return index;
  136.   }
  137.   /**
  138.    * 在岔路口时随机获取下一步行动方向
  139.    */
  140.   getRandomTrend(forks) {
  141.     const isEnd = calDistance(this.trace[this.moveIndex].toArray(), this.trace[this.trace.length - 1].toArray()) < this.curRoad.width / 2;
  142.     // 从多条路中随机选择一条,当前园区路况简单 路口数据目前只有一条
  143.     const randomRoad = forks[Math.floor(Math.random() * forks.length)];
  144.     // 分别代表掉头、转弯、直行四种情况
  145.     let types = [0, 1, 2];
  146.     if (isEnd) {
  147.       // 如果是道路的尽头 可以选择掉头或者转弯
  148.       types = [0, 1, 2];
  149.     } else {
  150.       // 如果不是道路的尽头,可以选择转弯或者直行
  151.       types = [1, 2];
  152.     }
  153.     const random = types[Math.floor(Math.random() * types.length)];
  154.     if (random === 0) {
  155.       // 掉头
  156.       this.trendLock = true;
  157.       this.getTurnPoint();
  158.     } else if (random === 1) {
  159.       // 转弯
  160.       this.trendLock = true;
  161.       this.getForkPoint(randomRoad, isEnd);
  162.     } else if (random === 2) {
  163.       this.preRoadName = randomRoad;
  164.       // 直线
  165.       this.trendLock = true;
  166.     }
  167.   }
  168.   /**
  169.    * 在岔路口时根据获取道路轨迹信息
  170.    */
  171.   getForkPoint(name, isEnd) {
  172.     this.preRoadName = this.curRoad.name;
  173.     const roadObj = this.roads[name];
  174.     let splitPoint = [];
  175.     if (isEnd) {
  176.       // 如果在道路尽头转弯,随机产生是左侧还是右侧道路
  177.       const leftOrRight = Math.floor(Math.random() * roadObj.lanes.length);
  178.       const coord = roadObj.lanes[leftOrRight].coord;
  179.       this.curLane = roadObj.lanes;
  180.       const index = this.findNearIndex(coord, this.trace[this.moveIndex].toArray());
  181.       splitPoint = coord.slice(index + 1);
  182.       // 为了平滑过渡获取道路末端和当前行驶位置的交点
  183.       const corInter = segmentsIntr(splitPoint[0], splitPoint[1], this.trace[this.trace.length - 2].toArray(), this.trace[this.trace.length - 3].toArray());
  184.       if (corInter) {
  185.         splitPoint.unshift(corInter);
  186.       }
  187.       splitPoint.unshift(this.trace[this.moveIndex]);
  188.     } else {
  189.       // 转弯前需要判断当前路可以向那个方向转弯,比如临近路口只能转向右车道,非临近路口需要转到对象车道
  190.       // 可以根据当前点和车道点的距离来判断
  191.       const lane1Dis = calDistance(roadObj.lanes[0].coord[0], this.trace[this.moveIndex].toArray());
  192.       const lane2Dis = calDistance(roadObj.lanes[1].coord[0], this.trace[this.moveIndex].toArray());
  193.       let temp = null;
  194.       if (lane1Dis < lane2Dis) {
  195.         temp = clone(roadObj.lanes[0].coord);
  196.         this.curLane = roadObj.lanes[0];
  197.       } else {
  198.         temp = clone(roadObj.lanes[1].coord);
  199.         this.curLane = roadObj.lanes[1];
  200.       }
  201.       this.curRoad = roadObj;
  202.       const index = this.findNearIndex(temp, this.trace[this.moveIndex].toArray());
  203.       splitPoint = temp.slice(index + 1);
  204.       // 为了平滑过渡获取道路末端和当前行驶位置的交点
  205.       const corInter = segmentsIntr(splitPoint[0], splitPoint[1], this.trace[this.moveIndex].toArray(), this.trace[this.moveIndex + 1].toArray());
  206.       if (corInter) {
  207.         splitPoint.unshift(corInter);  
  208.       }
  209.       splitPoint.unshift(this.trace[this.moveIndex]);
  210.     }
  211.    
  212.     this.trace = this.getSpreadPoint(splitPoint).map(e => new THREE.Vector3(...e));
  213.     // drawLine(this.target.parent, this.trace);
  214.     this.moveIndex = 0;
  215.   }
  216.   /**
  217.    * 掉头后获取道路轨迹信息
  218.    */
  219.   getTurnPoint() {
  220.     const roadObj = this.curRoad;
  221.     const nextLane = roadObj.lanes.filter(e => e.name !== this.curLane.name)[0]
  222.     const clonePoint = clone(nextLane.coord);
  223.     clonePoint.unshift(this.trace[this.moveIndex].toArray());
  224.     this.trace = this.getSpreadPoint(clonePoint);
  225.     this.curLane = nextLane;
  226.     // drawLine(this.target.parent, this.trace);
  227.     this.moveIndex = 0;
  228.   }
  229.   /**
  230.    * 获取离散点即将点与点之间更加细化,使物体运行起来更加平滑
  231.    * @param {*} points
  232.    * @returns
  233.    */
  234.   getSpreadPoint(points, beta = 1) {
  235.     const trail = new THREE.CatmullRomCurve3([...points.map(e => new THREE.Vector3(...e))]);
  236.     return trail.getPoints(trail.getLength() * beta);
  237.   }
  238.   /**
  239.    * 将车辆停入停车场内
  240.    */
  241.   parkCar() {
  242.     // 是否允许停车
  243.     if (this.parkEnable) {
  244.       return;
  245.     }
  246.     if (this.parkObj) {
  247.       if (this.direction === -1 && this.moveIndex === this.trace.length - 2) {
  248.         this.pause = true;
  249.         this.parkObj.object.placed = true;
  250.       }
  251.       if (this.moveIndex === this.trace.length - 1) {
  252.         this.direction = -1;
  253.         this.trace = this.parkObj.backTrace;
  254.         // drawLine(this.target.parent, this.trace);
  255.         this.moveIndex = 0;
  256.       } else {
  257.         return;
  258.       }
  259.     } else {
  260.       let flag = false;
  261.       let parkObj = null;
  262.       const frontIndex = 13;
  263.       for (let i = 0; i < this.parks.length; i++) {
  264.         if (calDistance(this.parks[i].entryPoint, this.trace[this.moveIndex].toArray()) < 13 && !this.parks[i].placed) {
  265.           flag = true;
  266.           parkObj = this.parks[i];
  267.           break;
  268.         }
  269.       }
  270.       // return flag;
  271.       if (flag) {
  272.         const random = Math.floor(Math.random() * 2);
  273.         // 1代表停车
  274.         if (random === 1) {
  275.           const front = this.trace.slice(this.moveIndex, this.moveIndex + frontIndex).map(e => new THREE.Vector3(...e));
  276.           const back = this.getSpreadPoint([front[front.length - 1], parkObj.entryPoint, parkObj.position]);
  277.           this.moveIndex = 0;
  278.           this.trace = front;
  279.           this.parkObj = { object: parkObj, backTrace: back };
  280.         }
  281.       }
  282.     }
  283.   }
  284.   unParkCar() {
  285.     this.direction = 1;
  286.     const parkObj = this.parkObj.object;
  287.     parkObj.placed = false;
  288.     const index = this.findNearIndex(this.curLane.coord, parkObj.entryPoint);
  289.     const temp = this.curLane.coord.slice(index);
  290.     temp.unshift(parkObj.entryPoint);
  291.     temp.unshift(parkObj.position);
  292.     this.trace = this.getSpreadPoint(temp);
  293.     this.moveIndex = 0;
  294.     this.pause = false;
  295.     this.parkObj = null;
  296.     this.parkEnable = true;
  297.     // 不想再扩展功能了 就在这临时用标识符处理了下出库时不断循环查询车位的情况
  298.     setTimeout(() => {
  299.       this.parkEnable = false;
  300.     }, 3000)
  301.   }
  302.   /**
  303.    * 检查岔路口
  304.    */
  305.   checkFork() {
  306.     if (this.trendLock) {
  307.       return [];
  308.     }
  309.     const forks = [];
  310.     for (let i = 0; i < this.curRoad.intersect.length; i++) {
  311.       if (this.moveIndex < this.trace.length - 1) {
  312.         const dis1 = calDistance(this.trace[this.moveIndex].toArray(), this.curRoad.intersect[i].interPoint);
  313.         const dis2 = calDistance(this.trace[this.moveIndex + 1].toArray(), this.curRoad.intersect[i].interPoint);
  314.         if (dis1 < this.curRoad.width && dis1 > dis2) {
  315.           forks.push(this.curRoad.intersect[i].name);
  316.         }
  317.       }
  318.     }
  319.     return forks;
  320.   }
  321. }
  322. export default Move;
复制代码
移动类Move.js 

来源:https://www.cnblogs.com/codeOnMar/p/17968150
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具