gisviewer-vue3-arcgis 1.0.111 → 1.0.112

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,10 @@
1
- import * as u from "@arcgis/core/views/3d/externalRenderers";
2
- import m from "../../stores/index.mjs";
1
+ import * as m from "@arcgis/core/views/3d/externalRenderers";
2
+ import u from "../../stores/index.mjs";
3
3
  import g from "./trace-renderer-external.mjs";
4
4
  import T from "./trace-renderer-layer.mjs";
5
5
  class L {
6
6
  constructor(t) {
7
- this.appDataStore = m.useAppDataStore, this.logTable = [
7
+ this.appDataStore = u.useAppDataStore, this.logTable = [
8
8
  [
9
9
  "uuid",
10
10
  "ptcId",
@@ -27,9 +27,10 @@ class L {
27
27
  "fixAngle",
28
28
  "roadLayer",
29
29
  "status",
30
- "step"
30
+ "step",
31
+ "receiveTimestamp"
31
32
  ]
32
- ], t.type === "3d" ? (this.traceRenderer = new g(t), u.add(
33
+ ], t.type === "3d" ? (this.traceRenderer = new g(t), m.add(
33
34
  t,
34
35
  this.traceRenderer
35
36
  )) : this.traceRenderer = new T(t);
@@ -46,12 +47,10 @@ class L {
46
47
  * 处理全息流轨迹数据
47
48
  * */
48
49
  async handleVehicleTraceData(t) {
49
- const { newVehList: r, updateVehList: l, deleteVehList: a, jgsj: s } = t, i = t.crossId || "", c = [], n = [];
50
+ const { newVehList: r, updateVehList: l, deleteVehList: a, jgsj: s } = t, i = t.crossId || "", c = [], n = [], d = Date.now();
50
51
  if (r && r.length > 0) {
51
52
  for (const e of r) {
52
- e.localTimestamp || (e.localTimestamp = s || Date.now());
53
- const o = this.buildVehicleTrackData(e, i);
54
- this.appDataStore.saveTrackLog && this.logTable.push([
53
+ e.localTimestamp || (e.localTimestamp = s || Date.now()), this.appDataStore.saveTrackLog && this.logTable.push([
55
54
  e.uuid,
56
55
  e.ptcId,
57
56
  e.plateno,
@@ -73,38 +72,44 @@ class L {
73
72
  e.fixAngle,
74
73
  e.roadLayer,
75
74
  e.status,
76
- e.step
77
- ]), o && c.push(o);
75
+ e.step,
76
+ d
77
+ ]);
78
+ const o = this.buildVehicleTrackData(e, i);
79
+ o && c.push(o);
78
80
  }
79
81
  await this.traceRenderer.addVehicles(c);
80
82
  }
81
83
  if (l && l.length > 0) {
82
- for (const e of l) {
83
- const o = this.buildVehicleTrackData(e, i);
84
+ const e = Date.now();
85
+ for (const o of l) {
84
86
  this.appDataStore.saveTrackLog && this.logTable.push([
85
- e.uuid,
86
- e.ptcId,
87
- e.plateno,
88
- e.timestamp,
89
- e.localTimestamp,
90
- e.timestamp_str,
91
- e.speed,
92
- e.laneNo,
93
- e.objHeight,
94
- e.objLength,
95
- e.latitude,
96
- e.longitude,
97
- e.ptcType,
98
- e.vehicleType,
99
- e.vehicleColor,
100
- e.plateColor,
101
- e.sbdm,
102
- e.heading,
103
- e.fixAngle,
104
- e.roadLayer,
105
- e.status,
106
- e.step
107
- ]), o && n.push(o);
87
+ o.uuid,
88
+ o.ptcId,
89
+ o.plateno,
90
+ o.timestamp,
91
+ o.localTimestamp,
92
+ o.timestamp_str,
93
+ o.speed,
94
+ o.laneNo,
95
+ o.objHeight,
96
+ o.objLength,
97
+ o.latitude,
98
+ o.longitude,
99
+ o.ptcType,
100
+ o.vehicleType,
101
+ o.vehicleColor,
102
+ o.plateColor,
103
+ o.sbdm,
104
+ o.heading,
105
+ o.fixAngle,
106
+ o.roadLayer,
107
+ o.status,
108
+ o.step,
109
+ e
110
+ ]);
111
+ const p = this.buildVehicleTrackData(o, i);
112
+ p && n.push(p);
108
113
  }
109
114
  await this.traceRenderer.updateVehicles(n);
110
115
  }
@@ -147,7 +152,7 @@ class L {
147
152
  this.traceRenderer.setInterpolate(t);
148
153
  }
149
154
  buildVehicleTrackData(t, r) {
150
- const l = t.longitude, a = t.latitude, s = t.ptcId, i = Number(t.ptcType), c = t.heading, n = Number(t.vehicleType), e = Number(t.vehicleColor), o = t.plateNo || t.plateno, p = Number(t.plateColor), d = t.timestamp, h = t.roadLayer ? String(t.roadLayer) : "1";
155
+ const l = t.longitude, a = t.latitude, s = t.ptcId, i = Number(t.ptcType), c = t.heading, n = Number(t.vehicleType), d = Number(t.vehicleColor), e = t.plateNo || t.plateno, o = Number(t.plateColor), p = t.timestamp, h = t.roadLayer ? String(t.roadLayer) : "1";
151
156
  if (!(i < 0 || i > 8))
152
157
  return {
153
158
  ptcId: s,
@@ -158,11 +163,11 @@ class L {
158
163
  ptcType: i,
159
164
  vehicleType: n,
160
165
  heading: i === 2 ? -c : c,
161
- vehicleColor: e,
162
- showName: o && o !== "" && o !== "0" && o !== "000000" ? o : "",
163
- plateNo: o,
164
- plateColor: p,
165
- timestamp: d,
166
+ vehicleColor: d,
167
+ showName: e && e !== "" && e !== "0" && e !== "000000" ? e : "",
168
+ plateNo: e,
169
+ plateColor: o,
170
+ timestamp: p,
166
171
  localTimestamp: Date.now(),
167
172
  roadLayer: h
168
173
  };
@@ -12,6 +12,7 @@ export default class TraceRendererExternal implements ITraceRendererInterface {
12
12
  private readonly metalness;
13
13
  /** 默认车身材质 */
14
14
  private defaultMaterial;
15
+ private readonly vehiclePool;
15
16
  private createCarMaterial;
16
17
  /** 车身颜色材质 */
17
18
  private materialMap;
@@ -1,16 +1,16 @@
1
- import * as P from "@arcgis/core/core/promiseUtils.js";
1
+ import * as v from "@arcgis/core/core/promiseUtils.js";
2
2
  import * as b from "@arcgis/core/core/reactiveUtils.js";
3
- import v from "@arcgis/core/geometry/SpatialReference";
3
+ import M from "@arcgis/core/geometry/SpatialReference";
4
4
  import * as u from "@arcgis/core/views/3d/externalRenderers";
5
- import * as l from "three";
6
- import { GLTFLoader as y } from "three/examples/jsm/loaders/GLTFLoader.js";
5
+ import * as c from "three";
7
6
  import { EVehiclePlateState as d } from "../../../types/index.mjs";
8
- import G from "../../stores/index.mjs";
9
- class I {
10
- constructor(i) {
11
- this.cameraHeightThreshold = 1e3, this.roughness = 0.2, this.metalness = 0.8, this.defaultMaterial = new l.MeshPhongMaterial({
7
+ import y from "../../stores/index.mjs";
8
+ import G from "./vehicle-pool.mjs";
9
+ class R {
10
+ constructor(e) {
11
+ this.cameraHeightThreshold = 1e3, this.roughness = 0.2, this.metalness = 0.8, this.defaultMaterial = new c.MeshPhongMaterial({
12
12
  color: 16777215
13
- }), this.materialMap = /* @__PURE__ */ new Map([
13
+ }), this.vehiclePool = new G(), this.materialMap = /* @__PURE__ */ new Map([
14
14
  [1, this.createCarMaterial(16777215)],
15
15
  [2, this.createCarMaterial(7833753)],
16
16
  [3, this.createCarMaterial(16766720)],
@@ -23,52 +23,69 @@ class I {
23
23
  [10, this.createCarMaterial(9662683)],
24
24
  [99, this.createCarMaterial(6908265)]
25
25
  ]), this.isInitialized = !1, this.showGroundVehicle = !0, this.showElevatedVehicle = !0, this.isPaused = !1, this.currentSpriteContent = d.None, this.historyPositionMap = /* @__PURE__ */ new Map(), this.vehicleObjectMap = /* @__PURE__ */ new Map(), this.needInterpolate = !0, this.updateModel = !1;
26
- const e = G.useAppDataStore;
26
+ const t = y.useAppDataStore;
27
27
  this.assetsRoot = JSON.parse(
28
- JSON.stringify(e.mapConfig)
29
- ).assetsRoot, this.view = i, b.watch(
28
+ JSON.stringify(t.mapConfig)
29
+ ).assetsRoot, this.view = e, b.watch(
30
30
  () => this.view.camera.position.z,
31
- (t, s) => {
32
- (s <= this.cameraHeightThreshold && t > this.cameraHeightThreshold || s > this.cameraHeightThreshold && t <= this.cameraHeightThreshold) && (this.updateModel = !0);
31
+ (i, o) => {
32
+ (o <= this.cameraHeightThreshold && i > this.cameraHeightThreshold || o > this.cameraHeightThreshold && i <= this.cameraHeightThreshold) && (this.updateModel = !0);
33
33
  }
34
34
  );
35
35
  }
36
- createCarMaterial(i) {
37
- return new l.MeshPhongMaterial({
38
- color: i
36
+ createCarMaterial(e) {
37
+ return new c.MeshPhongMaterial({
38
+ color: e
39
39
  // // emissive: 0xc3c3c3,
40
40
  // roughness: this.roughness,
41
41
  // metalness: this.metalness
42
42
  });
43
43
  }
44
44
  async init() {
45
- const i = new y();
46
- await P.eachAlways([
47
- new Promise((e) => {
48
- i.load(`${this.assetsRoot}/3DModels/car.glb`, (t) => {
49
- this.carModel = t.scene, this.carModel.rotation.x = l.MathUtils.degToRad(90), e();
50
- });
51
- }),
52
- new Promise((e) => {
53
- i.load(`${this.assetsRoot}/3DModels/van.glb`, (t) => {
54
- this.vanModel = t.scene, this.vanModel.rotation.x = l.MathUtils.degToRad(90), e();
55
- });
56
- }),
57
- new Promise((e) => {
58
- i.load(`${this.assetsRoot}/3DModels/truck.glb`, (t) => {
59
- this.truckModel = t.scene, this.truckModel.scale.set(1.2, 1, 1.5), this.truckModel.rotation.x = l.MathUtils.degToRad(90), e();
60
- });
61
- }),
62
- new Promise((e) => {
63
- i.load(`${this.assetsRoot}/3DModels/bus.glb`, (t) => {
64
- this.busModel = t.scene, this.busModel.rotation.x = l.MathUtils.degToRad(90), e();
65
- });
66
- }),
67
- new Promise((e) => {
68
- i.load(`${this.assetsRoot}/3DModels/bicycle.glb`, (t) => {
69
- this.bicycleModel = t.scene, this.bicycleModel.rotation.x = l.MathUtils.degToRad(90), this.bicycleModel.rotation.y = l.MathUtils.degToRad(180), e();
70
- });
71
- }),
45
+ await this.vehiclePool.initPool(this.assetsRoot, this.view), await v.eachAlways([
46
+ // new Promise<void>((resolve) => {
47
+ // gltfLoader.load(`${this.assetsRoot}/3DModels/car.glb`, (gltf) => {
48
+ // this.carModel = gltf.scene;
49
+ // // this.carModel.scale.set(10, 10, 10);
50
+ // // 调整模型初始角度
51
+ // this.carModel.rotation.x = Three.MathUtils.degToRad(90);
52
+ // resolve();
53
+ // });
54
+ // }),
55
+ // new Promise<void>((resolve) => {
56
+ // gltfLoader.load(`${this.assetsRoot}/3DModels/van.glb`, (gltf) => {
57
+ // this.vanModel = gltf.scene;
58
+ // // 调整模型初始角度
59
+ // this.vanModel.rotation.x = Three.MathUtils.degToRad(90);
60
+ // resolve();
61
+ // });
62
+ // }),
63
+ // new Promise<void>((resolve) => {
64
+ // gltfLoader.load(`${this.assetsRoot}/3DModels/truck.glb`, (gltf) => {
65
+ // this.truckModel = gltf.scene;
66
+ // this.truckModel.scale.set(1.2, 1, 1.5);
67
+ // // 调整模型初始角度
68
+ // this.truckModel.rotation.x = Three.MathUtils.degToRad(90);
69
+ // resolve();
70
+ // });
71
+ // }),
72
+ // new Promise<void>((resolve) => {
73
+ // gltfLoader.load(`${this.assetsRoot}/3DModels/bus.glb`, (gltf) => {
74
+ // this.busModel = gltf.scene;
75
+ // // 调整模型初始角度
76
+ // this.busModel.rotation.x = Three.MathUtils.degToRad(90);
77
+ // resolve();
78
+ // });
79
+ // }),
80
+ // new Promise<void>((resolve) => {
81
+ // gltfLoader.load(`${this.assetsRoot}/3DModels/bicycle.glb`, (gltf) => {
82
+ // this.bicycleModel = gltf.scene;
83
+ // // 调整模型初始角度
84
+ // this.bicycleModel.rotation.x = Three.MathUtils.degToRad(90);
85
+ // this.bicycleModel.rotation.y = Three.MathUtils.degToRad(180);
86
+ // resolve();
87
+ // });
88
+ // }),
72
89
  new Promise((e) => {
73
90
  this.bluePlateBG = new Image(), this.bluePlateBG.src = `${this.assetsRoot}/Images/PlateBG/blue.png`, this.bluePlateBG.onload = () => {
74
91
  e();
@@ -106,79 +123,79 @@ class I {
106
123
  })
107
124
  ]), this.isInitialized = !0;
108
125
  }
109
- setInterpolate(i) {
110
- this.clearVehicles(), this.needInterpolate = i;
126
+ setInterpolate(e) {
127
+ this.clearVehicles(), this.needInterpolate = e;
111
128
  }
112
- async setup(i) {
113
- this.context = i, this.renderer = new l.WebGLRenderer({
114
- context: i.gl,
129
+ async setup(e) {
130
+ this.context = e, this.renderer = new c.WebGLRenderer({
131
+ context: e.gl,
115
132
  premultipliedAlpha: !0,
116
133
  logarithmicDepthBuffer: !0,
117
134
  antialias: !0,
118
135
  powerPreference: "high-performance"
119
136
  }), this.renderer.shadowMap.enabled = !0, this.renderer.setPixelRatio(window.devicePixelRatio), this.renderer.setViewport(0, 0, this.view.width, this.view.height), this.renderer.autoClearDepth = !1, this.renderer.autoClearStencil = !1, this.renderer.autoClearColor = !1;
120
- const e = this.renderer.setRenderTarget.bind(
137
+ const t = this.renderer.setRenderTarget.bind(
121
138
  this.renderer
122
139
  );
123
- this.renderer.setRenderTarget = (s) => {
124
- e(s), s == null && i.bindRenderTarget();
125
- }, this.scene = new l.Scene();
126
- const { camera: t } = i;
127
- this.camera = new l.PerspectiveCamera(
128
- t.fovY,
129
- t.aspect,
140
+ this.renderer.setRenderTarget = (o) => {
141
+ t(o), o == null && e.bindRenderTarget();
142
+ }, this.scene = new c.Scene();
143
+ const { camera: i } = e;
144
+ this.camera = new c.PerspectiveCamera(
145
+ i.fovY,
146
+ i.aspect,
130
147
  0.1,
131
148
  1e5
132
- ), this.ambient = new l.AmbientLight(16777215, 2), this.scene.add(this.ambient), this.sun = new l.DirectionalLight(16777215, 2), this.scene.add(this.sun), i.resetWebGLState();
149
+ ), this.ambient = new c.AmbientLight(16777215, 2), this.scene.add(this.ambient), this.sun = new c.DirectionalLight(16777215, 2), this.scene.add(this.sun), e.resetWebGLState();
133
150
  }
134
- async render(i) {
135
- var s;
136
- const e = i.camera;
137
- if (this.camera.position.set(e.eye[0], e.eye[1], e.eye[2]), this.camera.up.set(e.up[0], e.up[1], e.up[2]), this.camera.lookAt(
138
- new l.Vector3(e.center[0], e.center[1], e.center[2])
139
- ), this.camera.projectionMatrix.fromArray(e.projectionMatrix), !this.isPaused && this.needInterpolate)
151
+ async render(e) {
152
+ var o;
153
+ const t = e.camera;
154
+ if (this.camera.position.set(t.eye[0], t.eye[1], t.eye[2]), this.camera.up.set(t.up[0], t.up[1], t.up[2]), this.camera.lookAt(
155
+ new c.Vector3(t.center[0], t.center[1], t.center[2])
156
+ ), this.camera.projectionMatrix.fromArray(t.projectionMatrix), !this.isPaused && this.needInterpolate)
140
157
  for (const a of this.vehicleObjectMap.keys()) {
141
- const n = (s = this.vehicleObjectMap.get(a)) == null ? void 0 : s.model;
158
+ const n = (o = this.vehicleObjectMap.get(a)) == null ? void 0 : o.model;
142
159
  if (!n)
143
160
  continue;
144
- const o = this.computeVehiclePosition(a);
145
- if (o) {
146
- const h = this.toRenderCoordinates(o);
147
- n.position.set(h[0], h[1], h[2]), n.rotation.y = l.MathUtils.degToRad(-o[3]);
161
+ const s = this.computeVehiclePosition(a);
162
+ if (s) {
163
+ const l = this.toRenderCoordinates(s);
164
+ n.position.set(l[0], l[1], l[2]), n.rotation.y = c.MathUtils.degToRad(-s[3]);
148
165
  }
149
166
  }
150
- const t = i.sunLight;
151
- this.sun.position.set(t.direction[0], t.direction[1], t.direction[2]), this.sun.intensity = t.diffuse.intensity, this.sun.color = new l.Color(
152
- t.diffuse.color[0],
153
- t.diffuse.color[1],
154
- t.diffuse.color[2]
155
- ), this.ambient.intensity = t.ambient.intensity, this.ambient.color = new l.Color(
156
- t.ambient.color[0],
157
- t.ambient.color[1],
158
- t.ambient.color[2]
159
- ), this.renderer.resetState(), i.bindRenderTarget(), this.renderer.render(this.scene, this.camera), u.requestRender(this.view), i.resetWebGLState();
167
+ const i = e.sunLight;
168
+ this.sun.position.set(i.direction[0], i.direction[1], i.direction[2]), this.sun.intensity = i.diffuse.intensity, this.sun.color = new c.Color(
169
+ i.diffuse.color[0],
170
+ i.diffuse.color[1],
171
+ i.diffuse.color[2]
172
+ ), this.ambient.intensity = i.ambient.intensity, this.ambient.color = new c.Color(
173
+ i.ambient.color[0],
174
+ i.ambient.color[1],
175
+ i.ambient.color[2]
176
+ ), this.renderer.resetState(), e.bindRenderTarget(), this.renderer.render(this.scene, this.camera), u.requestRender(this.view), e.resetWebGLState();
160
177
  }
161
178
  /**
162
179
  * 新增车辆
163
180
  * */
164
- async addVehicles(i) {
181
+ async addVehicles(e) {
165
182
  if (!(this.isPaused || !this.isInitialized))
166
- for (const e of i) {
167
- const { vehicleId: t, localTimestamp: s } = e, a = Number(e.x), n = Number(e.y), o = Number(e.heading);
168
- this.historyPositionMap.set(t, [
169
- { pos: [a, n, 0], heading: o, time: s }
183
+ for (const t of e) {
184
+ const { vehicleId: i, localTimestamp: o } = t, a = Number(t.x), n = Number(t.y), s = Number(t.heading);
185
+ this.historyPositionMap.set(i, [
186
+ { pos: [a, n, 0], heading: s, time: o }
170
187
  ]);
171
- const h = this.getVehicleModel(e);
172
- h.name = t, h.visible = !this.needInterpolate;
188
+ const l = this.getVehicleModel(t);
189
+ l.name = i, l.visible = !1;
173
190
  try {
174
- const r = await this.createPlateSprite(e);
175
- r && (h.add(r), r.position.set(0, 5, -4));
191
+ const r = await this.createPlateSprite(t);
192
+ r && (l.add(r), r.position.set(0, 5, -4));
176
193
  } catch (r) {
177
194
  console.log("createPlateSprite error:", r);
178
195
  }
179
- this.scene.add(h), this.vehicleObjectMap.set(t, {
180
- model: h,
181
- data: e,
196
+ this.scene.add(l), this.vehicleObjectMap.set(i, {
197
+ model: l,
198
+ data: t,
182
199
  waitForDelete: !1,
183
200
  isMoving: !1
184
201
  });
@@ -187,90 +204,90 @@ class I {
187
204
  /**
188
205
  * 更新车辆
189
206
  * */
190
- async updateVehicles(i) {
207
+ async updateVehicles(e) {
191
208
  if (this.isPaused || !this.isInitialized)
192
209
  return;
193
- const e = [];
194
- for (const t of i) {
195
- const { vehicleId: s, timestamp: a } = t, n = Number(t.x), o = Number(t.y);
196
- let h = Number(t.heading);
197
- const r = this.vehicleObjectMap.get(s), m = this.historyPositionMap.get(
198
- s
210
+ const t = [];
211
+ for (const i of e) {
212
+ const { vehicleId: o, timestamp: a } = i, n = Number(i.x), s = Number(i.y);
213
+ let l = Number(i.heading);
214
+ const r = this.vehicleObjectMap.get(o), p = this.historyPositionMap.get(
215
+ o
199
216
  );
200
- if (!r || !m)
201
- e.push(t);
217
+ if (!r || !p)
218
+ t.push(i);
202
219
  else {
203
- if (m.length >= 5 && console.log(s, m.length), this.updateModel || r.data.vehicleColor !== t.vehicleColor || r.data.vehicleType !== t.vehicleType) {
204
- this.scene.remove(r.model), this.disposeModel(r.model), r.model = this.getVehicleModel(t);
205
- const c = await this.createPlateSprite(t);
206
- c && (r.model.add(c), c.position.set(0, 5, -4)), this.scene.add(r.model);
220
+ if (this.updateModel || r.data.vehicleColor !== i.vehicleColor || r.data.vehicleType !== i.vehicleType) {
221
+ this.vehiclePool.recycleInstance(r.model), r.model = this.getVehicleModel(i), r.model.visible = !0;
222
+ const h = await this.createPlateSprite(i);
223
+ h && (r.model.add(h), h.position.set(0, 5, -4)), this.scene.add(r.model);
207
224
  }
208
- if (r.data.showName !== t.showName || r.data.plateColor !== t.plateColor) {
209
- const c = r.model.getObjectByName("VehiclePlate");
210
- c && (r.model.remove(c), this.disposeModel(c));
211
- const p = await this.createPlateSprite(t);
212
- p && (r.model.add(p), p.position.set(0, 5, -4));
225
+ if (r.data.showName !== i.showName || r.data.plateColor !== i.plateColor) {
226
+ const h = r.model.getObjectByName("VehiclePlate");
227
+ h && (r.model.remove(h), this.disposeModel(h));
228
+ const m = await this.createPlateSprite(i);
229
+ m && (r.model.add(m), m.position.set(0, 5, -4));
213
230
  }
214
- if (r.data = t, this.needInterpolate) {
215
- const c = m[m.length - 1];
216
- Math.abs(h - c.heading) >= 180 && (h > c.heading ? c.heading += 360 : h += 360), m.push({
217
- pos: [n, o, 0],
218
- heading: h,
231
+ if (r.data = i, this.needInterpolate) {
232
+ const h = p[p.length - 1];
233
+ Math.abs(l - h.heading) >= 180 && (l > h.heading ? h.heading += 360 : l += 360), p.push({
234
+ pos: [n, s, 0],
235
+ heading: l,
219
236
  time: a
220
237
  });
221
238
  } else {
222
- this.historyPositionMap.set(s, [
223
- { pos: [n, o, 0], heading: h, time: a }
239
+ this.historyPositionMap.set(o, [
240
+ { pos: [n, s, 0], heading: l, time: a }
224
241
  ]);
225
- const c = this.toRenderCoordinates([n, o, 0]);
226
- r.model.position.set(c[0], c[1], c[2]), r.model.rotation.y = l.MathUtils.degToRad(-h);
242
+ const h = this.toRenderCoordinates([n, s, 0]);
243
+ r.model.position.set(h[0], h[1], h[2]), r.model.rotation.y = c.MathUtils.degToRad(-l);
227
244
  }
228
245
  }
229
246
  }
230
- await this.addVehicles(e), this.updateModel = !1, this.needInterpolate || this.render(this.context);
247
+ await this.addVehicles(t), this.updateModel = !1, this.needInterpolate || this.render(this.context);
231
248
  }
232
- toRenderCoordinates(i) {
233
- const e = [0, 0, 0];
249
+ toRenderCoordinates(e) {
250
+ const t = [0, 0, 0];
234
251
  return u.toRenderCoordinates(
235
252
  // @ts-ignore
236
253
  this.view,
237
- i,
238
- 0,
239
- v.WGS84,
240
254
  e,
241
255
  0,
256
+ M.WGS84,
257
+ t,
258
+ 0,
242
259
  1
243
- ), e;
260
+ ), t;
244
261
  }
245
262
  /**
246
263
  * 删除车辆
247
264
  * */
248
- deleteVehicles(i) {
249
- this.isPaused || i.forEach((e) => {
250
- const t = this.vehicleObjectMap.get(e);
251
- t && (this.needInterpolate ? t.isMoving ? t.waitForDelete = !0 : this.deleteVehicle(t) : this.deleteVehicle(t));
265
+ deleteVehicles(e) {
266
+ this.isPaused || e.forEach((t) => {
267
+ const i = this.vehicleObjectMap.get(t);
268
+ i && (this.needInterpolate ? i.isMoving ? i.waitForDelete = !0 : this.deleteVehicle(i) : this.deleteVehicle(i));
252
269
  });
253
270
  }
254
- deleteVehicle(i) {
255
- this.scene.remove(i.model), this.disposeModel(i.model);
256
- const e = i.data.vehicleId;
257
- this.vehicleObjectMap.delete(e), this.historyPositionMap.delete(e);
271
+ deleteVehicle(e) {
272
+ this.vehiclePool.recycleInstance(e.model);
273
+ const t = e.data.vehicleId;
274
+ this.vehicleObjectMap.delete(t), this.historyPositionMap.delete(t);
258
275
  }
259
- async toggleTrafficInfo(i) {
260
- i.name === "vehiclePlate" && (i.visible === !0 && this.currentSpriteContent === d.None ? await this.updatePanelContent(d.PlateNumber) : await this.updatePanelContent(
261
- i.visible ? this.currentSpriteContent : d.None
276
+ async toggleTrafficInfo(e) {
277
+ e.name === "vehiclePlate" && (e.visible === !0 && this.currentSpriteContent === d.None ? await this.updatePanelContent(d.PlateNumber) : await this.updatePanelContent(
278
+ e.visible ? this.currentSpriteContent : d.None
262
279
  ));
263
280
  }
264
- togglePause(i) {
265
- this.isPaused = i;
281
+ togglePause(e) {
282
+ this.isPaused = e;
266
283
  }
267
284
  /**
268
285
  * 清除全部车辆
269
286
  * */
270
287
  clearVehicles() {
271
- for (const i of this.vehicleObjectMap.keys()) {
272
- const e = this.vehicleObjectMap.get(i);
273
- e && (this.disposeModel(e.model), this.scene.remove(e.model));
288
+ for (const e of this.vehicleObjectMap.keys()) {
289
+ const t = this.vehicleObjectMap.get(e);
290
+ t && this.vehiclePool.recycleInstance(t.model);
274
291
  }
275
292
  this.vehicleObjectMap.clear(), this.historyPositionMap.clear();
276
293
  }
@@ -279,171 +296,134 @@ class I {
279
296
  * @param contentType
280
297
  * @returns
281
298
  */
282
- async updatePanelContent(i) {
283
- if (i !== this.currentSpriteContent) {
284
- this.currentSpriteContent = i;
285
- for (const e of this.vehicleObjectMap.keys()) {
286
- const t = this.vehicleObjectMap.get(e);
287
- if (t) {
288
- const s = t.model.getObjectByName("VehiclePlate");
289
- if (s && (t.model.remove(s), this.disposeModel(s)), i !== d.None) {
290
- const a = await this.createPlateSprite(t.data);
291
- a && (t.model.add(a), a.position.set(0, 5, -4));
299
+ async updatePanelContent(e) {
300
+ if (e !== this.currentSpriteContent) {
301
+ this.currentSpriteContent = e;
302
+ for (const t of this.vehicleObjectMap.keys()) {
303
+ const i = this.vehicleObjectMap.get(t);
304
+ if (i) {
305
+ const o = i.model.getObjectByName("VehiclePlate");
306
+ if (o && (i.model.remove(o), this.disposeModel(o)), e !== d.None) {
307
+ const a = await this.createPlateSprite(i.data);
308
+ a && (i.model.add(a), a.position.set(0, 5, -4));
292
309
  }
293
310
  }
294
311
  }
295
312
  }
296
313
  }
297
- toggleGroundVehicle(i) {
298
- console.log("toggleGroundVehicle", i), this.showGroundVehicle = i;
314
+ toggleGroundVehicle(e) {
315
+ console.log("toggleGroundVehicle", e), this.showGroundVehicle = e;
299
316
  }
300
- toggleElevatedVehicle(i) {
301
- this.showElevatedVehicle = i;
317
+ toggleElevatedVehicle(e) {
318
+ this.showElevatedVehicle = e;
302
319
  }
303
320
  /**
304
321
  * 释放模型资源
305
322
  * */
306
- disposeModel(i) {
307
- i.traverse((e) => {
308
- e instanceof l.Mesh && (e.geometry.dispose(), e.material.dispose());
323
+ disposeModel(e) {
324
+ e.traverse((t) => {
325
+ t instanceof c.Mesh && (t.geometry.dispose(), t.material.dispose());
309
326
  });
310
327
  }
311
328
  /**
312
329
  * 计算车辆位置
313
330
  * */
314
- computeVehiclePosition(i) {
315
- const e = this.historyPositionMap.get(i), t = this.vehicleObjectMap.get(i);
316
- if (!t || !e || !t.isMoving && e.length <= 2)
331
+ computeVehiclePosition(e) {
332
+ const t = this.historyPositionMap.get(e), i = this.vehicleObjectMap.get(e);
333
+ if (!i || !t || !i.isMoving && t.length <= 2)
317
334
  return;
318
- const s = Date.now();
319
- t.isMoving = !0, t.data.roadLayer === "1" ? t.model.visible = this.showGroundVehicle : t.model.visible = this.showElevatedVehicle, t.segmentStartTime || (t.segmentStartTime = s, t.segmentTotalTime = e[1].time - e[0].time);
320
- const a = s - t.segmentStartTime, n = Math.min(
321
- a / t.segmentTotalTime,
335
+ const o = Date.now();
336
+ i.isMoving = !0, i.data.roadLayer === "1" ? i.model.visible = this.showGroundVehicle : i.model.visible = this.showElevatedVehicle, i.segmentStartTime || (i.segmentStartTime = o, i.segmentTotalTime = t[1].time - t[0].time);
337
+ const a = o - i.segmentStartTime, n = Math.min(
338
+ a / i.segmentTotalTime,
322
339
  1
323
340
  );
324
341
  if (n === 1)
325
- if (e.shift(), e.length === 1) {
326
- t.waitForDelete === !0 ? this.deleteVehicle(t) : (t.segmentStartTime = void 0, t.segmentTotalTime = void 0, t.model.visible = !1, t.isMoving = !1, console.log("hide vehicle", i));
342
+ if (t.shift(), t.length === 1) {
343
+ i.waitForDelete === !0 ? this.deleteVehicle(i) : (i.segmentStartTime = void 0, i.segmentTotalTime = void 0, i.model.visible = !1, i.isMoving = !1, console.log("hide vehicle", e));
327
344
  return;
328
345
  } else
329
- return t.segmentStartTime = Date.now(), t.segmentTotalTime = e[1].time - e[0].time, (e[1].heading >= 270 && e[0].heading <= 90 || e[1].heading <= 90 && e[0].heading >= 270) && (e[1].heading > e[0].heading ? e[0].heading += 360 : e[1].heading += 360), e[0].pos.concat(e[0].heading);
330
- else if (e.length >= 2) {
331
- const o = e[0].pos[0] + (e[1].pos[0] - e[0].pos[0]) * n, h = e[0].pos[1] + (e[1].pos[1] - e[0].pos[1]) * n, r = e[0].heading + (e[1].heading - e[0].heading) * n;
332
- return [o, h, 0, r];
346
+ return i.segmentStartTime = Date.now(), i.segmentTotalTime = t[1].time - t[0].time, (t[1].heading >= 270 && t[0].heading <= 90 || t[1].heading <= 90 && t[0].heading >= 270) && (t[1].heading > t[0].heading ? t[0].heading += 360 : t[1].heading += 360), t[0].pos.concat(t[0].heading);
347
+ else if (t.length >= 2) {
348
+ const s = t[0].pos[0] + (t[1].pos[0] - t[0].pos[0]) * n, l = t[0].pos[1] + (t[1].pos[1] - t[0].pos[1]) * n, r = t[0].heading + (t[1].heading - t[0].heading) * n;
349
+ return [s, l, 0, r];
333
350
  } else
334
351
  return;
335
352
  }
336
353
  /**
337
354
  * 根据车辆类型、车身颜色获取模型
338
355
  * */
339
- getVehicleModel(i) {
340
- if (this.view.camera.position.z >= this.cameraHeightThreshold) {
341
- const e = new l.SphereGeometry(5, 32, 32), t = new l.MeshPhysicalMaterial({
342
- color: 325253,
343
- emissive: 0,
344
- roughness: this.roughness,
345
- metalness: this.metalness
346
- });
347
- return new l.Mesh(e, t);
348
- } else {
349
- let e;
350
- if (i.ptcType === 2)
351
- e = this.bicycleModel.clone();
352
- else {
353
- switch (i.vehicleType) {
354
- case 10:
355
- e = this.carModel.clone();
356
- break;
357
- case 20:
358
- e = this.vanModel.clone();
359
- break;
360
- case 25:
361
- e = this.truckModel.clone();
362
- break;
363
- case 50:
364
- e = this.busModel.clone();
365
- break;
366
- default:
367
- e = this.carModel.clone();
368
- break;
369
- }
370
- const t = this.materialMap.get(i.vehicleColor) || this.defaultMaterial;
371
- let s = !1;
372
- e.traverse((a) => {
373
- !s && a instanceof l.Mesh && (a.material = t, s = !0);
374
- });
375
- }
376
- return e;
377
- }
356
+ getVehicleModel(e) {
357
+ return this.vehiclePool.getInstance(e);
378
358
  }
379
359
  /**
380
360
  * 创建号牌canvas
381
361
  * */
382
- createCanvas(i, e, t) {
383
- const s = document.createElement("canvas"), a = i.width, n = i.height;
384
- s.width = a, s.height = n;
385
- const o = s.getContext("2d");
386
- if (!o) {
362
+ createCanvas(e, t, i) {
363
+ const o = document.createElement("canvas"), a = e.width, n = e.height;
364
+ o.width = a, o.height = n;
365
+ const s = o.getContext("2d");
366
+ if (!s) {
387
367
  console.log("canvas创建失败");
388
368
  return;
389
369
  }
390
- return o.fillStyle = "rgba(0,0,0,0.0)", o.fillRect(0, 0, a, n), o.drawImage(i, 0, 0, a, n), o.beginPath(), o.translate(a / 2, n / 2), o.fillStyle = t, o.font = "bold 32px 宋体", o.textBaseline = "middle", o.textAlign = "center", o.fillText(e, 0, 0), s;
370
+ return s.fillStyle = "rgba(0,0,0,0.0)", s.fillRect(0, 0, a, n), s.drawImage(e, 0, 0, a, n), s.beginPath(), s.translate(a / 2, n / 2), s.fillStyle = i, s.font = "bold 32px 宋体", s.textBaseline = "middle", s.textAlign = "center", s.fillText(t, 0, 0), o;
391
371
  }
392
- createPlateSprite(i) {
393
- return new Promise((e, t) => {
394
- var r, m;
395
- const s = !i.plateNo || i.plateNo === "0" || i.plateNo === "000000";
396
- if (this.currentSpriteContent === d.None || this.currentSpriteContent === d.PlateNumber && s) {
397
- e(void 0);
372
+ createPlateSprite(e) {
373
+ return new Promise((t, i) => {
374
+ var r, p;
375
+ const o = !e.plateNo || e.plateNo === "0" || e.plateNo === "000000";
376
+ if (this.currentSpriteContent === d.None || this.currentSpriteContent === d.PlateNumber && o) {
377
+ t(void 0);
398
378
  return;
399
379
  }
400
- let a = new Image(), n = "", o = "";
380
+ let a = new Image(), n = "", s = "";
401
381
  if (this.currentSpriteContent === d.PlateNumber || this.currentSpriteContent === d.Mix)
402
- if (s)
403
- a = this.greyPlateBG, n = i.ptcId, o = "#ffffff";
382
+ if (o)
383
+ a = this.greyPlateBG, n = e.ptcId, s = "#ffffff";
404
384
  else
405
- switch (n = ((r = i.showName) == null ? void 0 : r.substring(0, 2)) + "•" + ((m = i.showName) == null ? void 0 : m.substring(2)), i.plateColor) {
385
+ switch (n = ((r = e.showName) == null ? void 0 : r.substring(0, 2)) + "•" + ((p = e.showName) == null ? void 0 : p.substring(2)), e.plateColor) {
406
386
  case 1:
407
- a = this.bluePlateBG, o = "#ffffff";
387
+ a = this.bluePlateBG, s = "#ffffff";
408
388
  break;
409
389
  case 2:
410
- a = this.yellowPlateBG, o = "#000000";
390
+ a = this.yellowPlateBG, s = "#000000";
411
391
  break;
412
392
  case 3:
413
- a = this.whitePlateBG, o = "#000000";
393
+ a = this.whitePlateBG, s = "#000000";
414
394
  break;
415
395
  case 4:
416
- a = this.blackPlateBG, o = "#ffffff";
396
+ a = this.blackPlateBG, s = "#ffffff";
417
397
  break;
418
398
  case 5:
419
- a = this.neoYellowPlateBG, o = "#000000";
399
+ a = this.neoYellowPlateBG, s = "#000000";
420
400
  break;
421
401
  case 6:
422
- a = this.neoGreenPlateBG, o = "#000000";
402
+ a = this.neoGreenPlateBG, s = "#000000";
423
403
  break;
424
404
  default:
425
- a = this.greyPlateBG, n = i.plateNo, o = "#ffffff";
405
+ a = this.greyPlateBG, n = e.plateNo, s = "#ffffff";
426
406
  break;
427
407
  }
428
408
  else
429
- this.currentSpriteContent === d.Id && (a = this.greyPlateBG, n = i.ptcId, o = "#ffffff");
430
- const h = this.createCanvas(a, n, o);
431
- if (h) {
432
- const c = new l.CanvasTexture(h), p = new l.SpriteMaterial({
433
- map: c,
409
+ this.currentSpriteContent === d.Id && (a = this.greyPlateBG, n = e.ptcId, s = "#ffffff");
410
+ const l = this.createCanvas(a, n, s);
411
+ if (l) {
412
+ const h = new c.CanvasTexture(l), m = new c.SpriteMaterial({
413
+ map: h,
434
414
  transparent: !1
435
- }), g = new l.Sprite(p), f = 0.05, M = h.width * f, w = h.height * f;
436
- g.scale.set(M, w, 1), g.name = "VehiclePlate", e(g);
415
+ }), f = new c.Sprite(m), g = 0.05, P = l.width * g, w = l.height * g;
416
+ f.scale.set(P, w, 1), f.name = "VehiclePlate", t(f);
437
417
  } else {
438
- t("canvas创建失败");
418
+ i("canvas创建失败");
439
419
  return;
440
420
  }
441
- a.onerror = (c) => {
442
- console.log(`号牌背景加载失败: ${a.src}`, c), t(c);
421
+ a.onerror = (h) => {
422
+ console.log(`号牌背景加载失败: ${a.src}`, h), i(h);
443
423
  };
444
424
  });
445
425
  }
446
426
  }
447
427
  export {
448
- I as default
428
+ R as default
449
429
  };
@@ -0,0 +1,41 @@
1
+ import * as Three from 'three';
2
+ import { IVehicleTrack } from '../../../types';
3
+ export declare enum EModelStatus {
4
+ /** 未使用 */
5
+ UNUSED = "unused",
6
+ /** 使用中 */
7
+ USED = "used",
8
+ /** 已销毁 */
9
+ DESTROYED = "destroyed"
10
+ }
11
+ declare type VehicleModelType = Three.Group | Three.Mesh;
12
+ export default class VehiclePool {
13
+ private createCarMaterial;
14
+ /** 车身颜色材质 */
15
+ private materialMap;
16
+ private readonly carPool;
17
+ private readonly vanPool;
18
+ private readonly truckPool;
19
+ private readonly busPool;
20
+ private bicyclePool;
21
+ private ballPool;
22
+ private readonly poolSize;
23
+ private view;
24
+ /** 车辆模型变化的阈值 */
25
+ private readonly cameraHeightThreshold;
26
+ initPool(assetsRoot: string, view: __esri.SceneView): Promise<void>;
27
+ /**
28
+ * 获取实例
29
+ * @param data
30
+ */
31
+ getInstance(data: IVehicleTrack): VehicleModelType;
32
+ /**
33
+ * 回收实例
34
+ * @param instance
35
+ */
36
+ recycleInstance(instance: VehicleModelType): void;
37
+ private getInstanceFromPool;
38
+ private getInstanceFromList;
39
+ private materialModel;
40
+ }
41
+ export {};
@@ -0,0 +1,180 @@
1
+ import * as h from "@arcgis/core/core/promiseUtils.js";
2
+ import * as i from "three";
3
+ import { GLTFLoader as u } from "three/examples/jsm/loaders/GLTFLoader.js";
4
+ class d {
5
+ constructor() {
6
+ this.materialMap = /* @__PURE__ */ new Map([
7
+ [1, this.createCarMaterial(16777215)],
8
+ [2, this.createCarMaterial(7833753)],
9
+ [3, this.createCarMaterial(16766720)],
10
+ [4, this.createCarMaterial(16758465)],
11
+ [5, this.createCarMaterial(14423100)],
12
+ [6, this.createCarMaterial(3329330)],
13
+ [7, this.createCarMaterial(2003183)],
14
+ [8, this.createCarMaterial(16032864)],
15
+ [9, this.createCarMaterial(2105376)],
16
+ [10, this.createCarMaterial(9662683)],
17
+ [99, this.createCarMaterial(6908265)]
18
+ ]), this.carPool = /* @__PURE__ */ new Map(), this.vanPool = /* @__PURE__ */ new Map(), this.truckPool = /* @__PURE__ */ new Map(), this.busPool = /* @__PURE__ */ new Map(), this.bicyclePool = [], this.ballPool = [], this.poolSize = 20, this.cameraHeightThreshold = 1e3;
19
+ }
20
+ createCarMaterial(e) {
21
+ return new i.MeshPhongMaterial({
22
+ color: e
23
+ // // emissive: 0xc3c3c3,
24
+ // roughness: this.roughness,
25
+ // metalness: this.metalness
26
+ });
27
+ }
28
+ async initPool(e, a) {
29
+ this.view = a;
30
+ const s = new u();
31
+ await h.eachAlways([
32
+ new Promise((o) => {
33
+ s.load(`${e}/3DModels/car.glb`, (l) => {
34
+ const t = l.scene;
35
+ t.rotation.x = i.MathUtils.degToRad(90), t.userData = {
36
+ status: "unused"
37
+ /* UNUSED */
38
+ }, this.materialMap.forEach((n, c) => {
39
+ const r = t.clone();
40
+ this.materialModel(r, n), this.carPool.set(
41
+ c,
42
+ Array.from({ length: this.poolSize }, () => r.clone())
43
+ );
44
+ }), o();
45
+ });
46
+ }),
47
+ new Promise((o) => {
48
+ s.load(`${e}/3DModels/van.glb`, (l) => {
49
+ const t = l.scene;
50
+ t.rotation.x = i.MathUtils.degToRad(90), t.userData = {
51
+ status: "unused"
52
+ /* UNUSED */
53
+ }, this.materialMap.forEach((n, c) => {
54
+ const r = t.clone();
55
+ this.materialModel(r, n), this.vanPool.set(
56
+ c,
57
+ Array.from({ length: this.poolSize }, () => r.clone())
58
+ );
59
+ }), o();
60
+ });
61
+ }),
62
+ new Promise((o) => {
63
+ s.load(`${e}/3DModels/truck.glb`, (l) => {
64
+ const t = l.scene;
65
+ t.scale.set(1.2, 1, 1.5), t.rotation.x = i.MathUtils.degToRad(90), t.userData = {
66
+ status: "unused"
67
+ /* UNUSED */
68
+ }, this.materialMap.forEach((n, c) => {
69
+ const r = t.clone();
70
+ this.materialModel(r, n), this.truckPool.set(
71
+ c,
72
+ Array.from({ length: this.poolSize }, () => r.clone())
73
+ );
74
+ }), o();
75
+ });
76
+ }),
77
+ new Promise((o) => {
78
+ s.load(`${e}/3DModels/bus.glb`, (l) => {
79
+ const t = l.scene;
80
+ t.rotation.x = i.MathUtils.degToRad(90), t.userData = {
81
+ status: "unused"
82
+ /* UNUSED */
83
+ }, this.materialMap.forEach((n, c) => {
84
+ const r = t.clone();
85
+ r.userData = {
86
+ status: "unused"
87
+ /* UNUSED */
88
+ }, this.materialModel(r, n), this.busPool.set(
89
+ c,
90
+ Array.from({ length: this.poolSize }, () => r.clone())
91
+ );
92
+ }), o();
93
+ });
94
+ }),
95
+ new Promise((o) => {
96
+ s.load(`${e}/3DModels/bicycle.glb`, (l) => {
97
+ const t = l.scene;
98
+ t.userData = {
99
+ status: "unused"
100
+ /* UNUSED */
101
+ }, t.rotation.x = i.MathUtils.degToRad(90), t.rotation.y = i.MathUtils.degToRad(180), t.userData = {
102
+ status: "unused"
103
+ /* UNUSED */
104
+ }, this.bicyclePool = Array.from(
105
+ { length: this.poolSize },
106
+ () => t.clone()
107
+ ), o();
108
+ });
109
+ }),
110
+ new Promise((o) => {
111
+ const l = new i.SphereGeometry(5, 32, 32), t = new i.MeshPhysicalMaterial({
112
+ color: 325253,
113
+ emissive: 0,
114
+ roughness: 0.2,
115
+ metalness: 0.8
116
+ });
117
+ this.ballPool = Array.from({ length: 100 }, () => {
118
+ const n = new i.Mesh(l, t);
119
+ return n.userData = {
120
+ status: "unused"
121
+ /* UNUSED */
122
+ }, n;
123
+ }), o();
124
+ })
125
+ ]);
126
+ }
127
+ /**
128
+ * 获取实例
129
+ * @param data
130
+ */
131
+ getInstance(e) {
132
+ if (console.log(e), this.view.camera.position.z >= this.cameraHeightThreshold)
133
+ return this.getInstanceFromList(this.ballPool);
134
+ {
135
+ const a = e.vehicleColor;
136
+ if (e.ptcType === 2)
137
+ return this.getInstanceFromList(this.bicyclePool);
138
+ switch (e.vehicleType) {
139
+ case 1:
140
+ case 10:
141
+ return this.getInstanceFromPool(a, this.carPool);
142
+ case 20:
143
+ return this.getInstanceFromPool(a, this.vanPool);
144
+ case 25:
145
+ return this.getInstanceFromPool(a, this.truckPool);
146
+ case 50:
147
+ return this.getInstanceFromPool(a, this.busPool);
148
+ default:
149
+ return this.getInstanceFromPool(a, this.carPool);
150
+ }
151
+ }
152
+ }
153
+ /**
154
+ * 回收实例
155
+ * @param instance
156
+ */
157
+ recycleInstance(e) {
158
+ e.visible = !1, e.userData.status = "unused";
159
+ }
160
+ getInstanceFromPool(e, a) {
161
+ let s = a.get(e);
162
+ return s || (s = a.get(99)), this.getInstanceFromList(s);
163
+ }
164
+ getInstanceFromList(e) {
165
+ let a = e.find(
166
+ (s) => s.userData.status === "unused"
167
+ /* UNUSED */
168
+ );
169
+ return a || (a = e[0].clone(), e.push(a), console.log("increase pool. pool size:", e.length)), a.userData.status = "used", a;
170
+ }
171
+ materialModel(e, a) {
172
+ let s = !1;
173
+ e.traverse((o) => {
174
+ !s && o instanceof i.Mesh && (o.material = a, s = !0);
175
+ });
176
+ }
177
+ }
178
+ export {
179
+ d as default
180
+ };
@@ -5,6 +5,7 @@
5
5
  * 45° ~ 135°:东象限。
6
6
  * 135° ~ 225°:南象限。
7
7
  */
8
+ import Three from 'three';
8
9
  export declare enum QuadrantCode {
9
10
  West = "1",
10
11
  North = "2",
@@ -37,6 +38,15 @@ export interface IVehicleTrack {
37
38
  plateNo?: string;
38
39
  roadLayer?: string;
39
40
  }
41
+ export interface IVehicleRecord {
42
+ model: Three.Group | Three.Mesh;
43
+ data: IVehicleTrack;
44
+ segmentStartTime?: number;
45
+ segmentTotalTime?: number;
46
+ waitForDelete: boolean;
47
+ isMoving: boolean;
48
+ currentPos?: number[];
49
+ }
40
50
  export interface ILaneNumberParams {
41
51
  lanes: {
42
52
  crossId: string;
@@ -1,2 +1,2 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const g=require("@arcgis/core/views/3d/externalRenderers"),m=require("../../stores/index.js"),b=require("./trace-renderer-external.js"),f=require("./trace-renderer-layer.js");function T(n){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(n){for(const r in n)if(r!=="default"){const l=Object.getOwnPropertyDescriptor(n,r);Object.defineProperty(t,r,l.get?l:{enumerable:!0,get:()=>n[r]})}}return t.default=n,Object.freeze(t)}const y=T(g);class v{constructor(t){this.appDataStore=m.default.useAppDataStore,this.logTable=[["uuid","ptcId","plateno","timestamp","localTimestamp","timestamp_str","speed","laneNo","objHeight","objLength","latitude","longitude","ptcType","vehicleType","vehicleColor","plateColor","sbdm","heading","fixAngle","roadLayer","status","step"]],t.type==="3d"?(this.traceRenderer=new b.default(t),y.add(t,this.traceRenderer)):this.traceRenderer=new f.default(t)}async init(){await this.traceRenderer.init()}downloadLog(){const t=this.logTable.map(c=>c.join(",")).join(`
2
- `).replace(/null/g,""),r=new Blob([t],{type:"text/csv;charset=utf-8;"}),l=URL.createObjectURL(r),a=document.createElement("a");a.setAttribute("href",l),a.setAttribute("download","trace-log.csv"),a.style.visibility="hidden",document.body.appendChild(a),a.click(),document.body.removeChild(a)}async handleVehicleTraceData(t){const{newVehList:r,updateVehList:l,deleteVehList:a,jgsj:c}=t,i=t.crossId||"",s=[],d=[];if(r&&r.length>0){for(const e of r){e.localTimestamp||(e.localTimestamp=c||Date.now());const o=this.buildVehicleTrackData(e,i);this.appDataStore.saveTrackLog&&this.logTable.push([e.uuid,e.ptcId,e.plateno,e.timestamp,e.localTimestamp,e.timestamp_str,e.speed,e.laneNo,e.objHeight,e.objLength,e.latitude,e.longitude,e.ptcType,e.vehicleType,e.vehicleColor,e.plateColor,e.sbdm,e.heading,e.fixAngle,e.roadLayer,e.status,e.step]),o&&s.push(o)}await this.traceRenderer.addVehicles(s)}if(l&&l.length>0){for(const e of l){const o=this.buildVehicleTrackData(e,i);this.appDataStore.saveTrackLog&&this.logTable.push([e.uuid,e.ptcId,e.plateno,e.timestamp,e.localTimestamp,e.timestamp_str,e.speed,e.laneNo,e.objHeight,e.objLength,e.latitude,e.longitude,e.ptcType,e.vehicleType,e.vehicleColor,e.plateColor,e.sbdm,e.heading,e.fixAngle,e.roadLayer,e.status,e.step]),o&&d.push(o)}await this.traceRenderer.updateVehicles(d)}if(a&&a.length>0){const e=a.map(o=>i+"-"+(o.ptcId||o.vehno||o.vehNo));this.traceRenderer.deleteVehicles(e)}}toggleTrafficInfo(t){this.traceRenderer.toggleTrafficInfo(t)}clearTrace(){this.traceRenderer.clearVehicles()}togglePause(t){this.traceRenderer.togglePause(t)}updatePanelContent(t){this.traceRenderer.updatePanelContent(t)}toggleGroundVehicle(t){this.traceRenderer.toggleGroundVehicle(t)}toggleElevatedVehicle(t){this.traceRenderer.toggleElevatedVehicle(t)}setInterpolate(t){this.traceRenderer.setInterpolate(t)}buildVehicleTrackData(t,r){const l=t.longitude,a=t.latitude,c=t.ptcId,i=Number(t.ptcType),s=t.heading,d=Number(t.vehicleType),e=Number(t.vehicleColor),o=t.plateNo||t.plateno,p=Number(t.plateColor),h=t.timestamp,u=t.roadLayer?String(t.roadLayer):"1";if(!(i<0||i>8))return{ptcId:c,crossId:r,vehicleId:r+"-"+c,x:l,y:a,ptcType:i,vehicleType:d,heading:i===2?-s:s,vehicleColor:e,showName:o&&o!==""&&o!=="0"&&o!=="000000"?o:"",plateNo:o,plateColor:p,timestamp:h,localTimestamp:Date.now(),roadLayer:u}}}exports.default=v;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const g=require("@arcgis/core/views/3d/externalRenderers"),m=require("../../stores/index.js"),b=require("./trace-renderer-external.js"),f=require("./trace-renderer-layer.js");function T(l){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(l){for(const r in l)if(r!=="default"){const n=Object.getOwnPropertyDescriptor(l,r);Object.defineProperty(e,r,n.get?n:{enumerable:!0,get:()=>l[r]})}}return e.default=l,Object.freeze(e)}const y=T(g);class v{constructor(e){this.appDataStore=m.default.useAppDataStore,this.logTable=[["uuid","ptcId","plateno","timestamp","localTimestamp","timestamp_str","speed","laneNo","objHeight","objLength","latitude","longitude","ptcType","vehicleType","vehicleColor","plateColor","sbdm","heading","fixAngle","roadLayer","status","step","receiveTimestamp"]],e.type==="3d"?(this.traceRenderer=new b.default(e),y.add(e,this.traceRenderer)):this.traceRenderer=new f.default(e)}async init(){await this.traceRenderer.init()}downloadLog(){const e=this.logTable.map(c=>c.join(",")).join(`
2
+ `).replace(/null/g,""),r=new Blob([e],{type:"text/csv;charset=utf-8;"}),n=URL.createObjectURL(r),a=document.createElement("a");a.setAttribute("href",n),a.setAttribute("download","trace-log.csv"),a.style.visibility="hidden",document.body.appendChild(a),a.click(),document.body.removeChild(a)}async handleVehicleTraceData(e){const{newVehList:r,updateVehList:n,deleteVehList:a,jgsj:c}=e,i=e.crossId||"",s=[],d=[],h=Date.now();if(r&&r.length>0){for(const t of r){t.localTimestamp||(t.localTimestamp=c||Date.now()),this.appDataStore.saveTrackLog&&this.logTable.push([t.uuid,t.ptcId,t.plateno,t.timestamp,t.localTimestamp,t.timestamp_str,t.speed,t.laneNo,t.objHeight,t.objLength,t.latitude,t.longitude,t.ptcType,t.vehicleType,t.vehicleColor,t.plateColor,t.sbdm,t.heading,t.fixAngle,t.roadLayer,t.status,t.step,h]);const o=this.buildVehicleTrackData(t,i);o&&s.push(o)}await this.traceRenderer.addVehicles(s)}if(n&&n.length>0){const t=Date.now();for(const o of n){this.appDataStore.saveTrackLog&&this.logTable.push([o.uuid,o.ptcId,o.plateno,o.timestamp,o.localTimestamp,o.timestamp_str,o.speed,o.laneNo,o.objHeight,o.objLength,o.latitude,o.longitude,o.ptcType,o.vehicleType,o.vehicleColor,o.plateColor,o.sbdm,o.heading,o.fixAngle,o.roadLayer,o.status,o.step,t]);const p=this.buildVehicleTrackData(o,i);p&&d.push(p)}await this.traceRenderer.updateVehicles(d)}if(a&&a.length>0){const t=a.map(o=>i+"-"+(o.ptcId||o.vehno||o.vehNo));this.traceRenderer.deleteVehicles(t)}}toggleTrafficInfo(e){this.traceRenderer.toggleTrafficInfo(e)}clearTrace(){this.traceRenderer.clearVehicles()}togglePause(e){this.traceRenderer.togglePause(e)}updatePanelContent(e){this.traceRenderer.updatePanelContent(e)}toggleGroundVehicle(e){this.traceRenderer.toggleGroundVehicle(e)}toggleElevatedVehicle(e){this.traceRenderer.toggleElevatedVehicle(e)}setInterpolate(e){this.traceRenderer.setInterpolate(e)}buildVehicleTrackData(e,r){const n=e.longitude,a=e.latitude,c=e.ptcId,i=Number(e.ptcType),s=e.heading,d=Number(e.vehicleType),h=Number(e.vehicleColor),t=e.plateNo||e.plateno,o=Number(e.plateColor),p=e.timestamp,u=e.roadLayer?String(e.roadLayer):"1";if(!(i<0||i>8))return{ptcId:c,crossId:r,vehicleId:r+"-"+c,x:n,y:a,ptcType:i,vehicleType:d,heading:i===2?-s:s,vehicleColor:h,showName:t&&t!==""&&t!=="0"&&t!=="000000"?t:"",plateNo:t,plateColor:o,timestamp:p,localTimestamp:Date.now(),roadLayer:u}}}exports.default=v;
@@ -12,6 +12,7 @@ export default class TraceRendererExternal implements ITraceRendererInterface {
12
12
  private readonly metalness;
13
13
  /** 默认车身材质 */
14
14
  private defaultMaterial;
15
+ private readonly vehiclePool;
15
16
  private createCarMaterial;
16
17
  /** 车身颜色材质 */
17
18
  private materialMap;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const v=require("@arcgis/core/core/promiseUtils.js"),y=require("@arcgis/core/core/reactiveUtils.js"),S=require("@arcgis/core/geometry/SpatialReference"),G=require("@arcgis/core/views/3d/externalRenderers"),C=require("three"),T=require("three/examples/jsm/loaders/GLTFLoader.js"),d=require("../../../types/index.js"),B=require("../../stores/index.js");function u(m){const i=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(m){for(const e in m)if(e!=="default"){const t=Object.getOwnPropertyDescriptor(m,e);Object.defineProperty(i,e,t.get?t:{enumerable:!0,get:()=>m[e]})}}return i.default=m,Object.freeze(i)}const R=u(v),V=u(y),M=u(G),l=u(C);class I{constructor(i){this.cameraHeightThreshold=1e3,this.roughness=.2,this.metalness=.8,this.defaultMaterial=new l.MeshPhongMaterial({color:16777215}),this.materialMap=new Map([[1,this.createCarMaterial(16777215)],[2,this.createCarMaterial(7833753)],[3,this.createCarMaterial(16766720)],[4,this.createCarMaterial(16758465)],[5,this.createCarMaterial(14423100)],[6,this.createCarMaterial(3329330)],[7,this.createCarMaterial(2003183)],[8,this.createCarMaterial(16032864)],[9,this.createCarMaterial(2105376)],[10,this.createCarMaterial(9662683)],[99,this.createCarMaterial(6908265)]]),this.isInitialized=!1,this.showGroundVehicle=!0,this.showElevatedVehicle=!0,this.isPaused=!1,this.currentSpriteContent=d.EVehiclePlateState.None,this.historyPositionMap=new Map,this.vehicleObjectMap=new Map,this.needInterpolate=!0,this.updateModel=!1;const e=B.default.useAppDataStore;this.assetsRoot=JSON.parse(JSON.stringify(e.mapConfig)).assetsRoot,this.view=i,V.watch(()=>this.view.camera.position.z,(t,s)=>{(s<=this.cameraHeightThreshold&&t>this.cameraHeightThreshold||s>this.cameraHeightThreshold&&t<=this.cameraHeightThreshold)&&(this.updateModel=!0)})}createCarMaterial(i){return new l.MeshPhongMaterial({color:i})}async init(){const i=new T.GLTFLoader;await R.eachAlways([new Promise(e=>{i.load(`${this.assetsRoot}/3DModels/car.glb`,t=>{this.carModel=t.scene,this.carModel.rotation.x=l.MathUtils.degToRad(90),e()})}),new Promise(e=>{i.load(`${this.assetsRoot}/3DModels/van.glb`,t=>{this.vanModel=t.scene,this.vanModel.rotation.x=l.MathUtils.degToRad(90),e()})}),new Promise(e=>{i.load(`${this.assetsRoot}/3DModels/truck.glb`,t=>{this.truckModel=t.scene,this.truckModel.scale.set(1.2,1,1.5),this.truckModel.rotation.x=l.MathUtils.degToRad(90),e()})}),new Promise(e=>{i.load(`${this.assetsRoot}/3DModels/bus.glb`,t=>{this.busModel=t.scene,this.busModel.rotation.x=l.MathUtils.degToRad(90),e()})}),new Promise(e=>{i.load(`${this.assetsRoot}/3DModels/bicycle.glb`,t=>{this.bicycleModel=t.scene,this.bicycleModel.rotation.x=l.MathUtils.degToRad(90),this.bicycleModel.rotation.y=l.MathUtils.degToRad(180),e()})}),new Promise(e=>{this.bluePlateBG=new Image,this.bluePlateBG.src=`${this.assetsRoot}/Images/PlateBG/blue.png`,this.bluePlateBG.onload=()=>{e()}}),new Promise(e=>{this.yellowPlateBG=new Image,this.yellowPlateBG.src=`${this.assetsRoot}/Images/PlateBG/yellow.png`,this.yellowPlateBG.onload=()=>{e()}}),new Promise(e=>{this.whitePlateBG=new Image,this.whitePlateBG.src=`${this.assetsRoot}/Images/PlateBG/white.png`,this.whitePlateBG.onload=()=>{e()}}),new Promise(e=>{this.blackPlateBG=new Image,this.blackPlateBG.src=`${this.assetsRoot}/Images/PlateBG/black.png`,this.blackPlateBG.onload=()=>{e()}}),new Promise(e=>{this.neoYellowPlateBG=new Image,this.neoYellowPlateBG.src=`${this.assetsRoot}/Images/PlateBG/neo_yellow.png`,this.neoYellowPlateBG.onload=()=>{e()}}),new Promise(e=>{this.neoGreenPlateBG=new Image,this.neoGreenPlateBG.src=`${this.assetsRoot}/Images/PlateBG/neo_green.png`,this.neoGreenPlateBG.onload=()=>{e()}}),new Promise(e=>{this.greyPlateBG=new Image,this.greyPlateBG.src=`${this.assetsRoot}/Images/PlateBG/grey.png`,this.greyPlateBG.onload=()=>{e()}})]),this.isInitialized=!0}setInterpolate(i){this.clearVehicles(),this.needInterpolate=i}async setup(i){this.context=i,this.renderer=new l.WebGLRenderer({context:i.gl,premultipliedAlpha:!0,logarithmicDepthBuffer:!0,antialias:!0,powerPreference:"high-performance"}),this.renderer.shadowMap.enabled=!0,this.renderer.setPixelRatio(window.devicePixelRatio),this.renderer.setViewport(0,0,this.view.width,this.view.height),this.renderer.autoClearDepth=!1,this.renderer.autoClearStencil=!1,this.renderer.autoClearColor=!1;const e=this.renderer.setRenderTarget.bind(this.renderer);this.renderer.setRenderTarget=s=>{e(s),s==null&&i.bindRenderTarget()},this.scene=new l.Scene;const{camera:t}=i;this.camera=new l.PerspectiveCamera(t.fovY,t.aspect,.1,1e5),this.ambient=new l.AmbientLight(16777215,2),this.scene.add(this.ambient),this.sun=new l.DirectionalLight(16777215,2),this.scene.add(this.sun),i.resetWebGLState()}async render(i){var s;const e=i.camera;if(this.camera.position.set(e.eye[0],e.eye[1],e.eye[2]),this.camera.up.set(e.up[0],e.up[1],e.up[2]),this.camera.lookAt(new l.Vector3(e.center[0],e.center[1],e.center[2])),this.camera.projectionMatrix.fromArray(e.projectionMatrix),!this.isPaused&&this.needInterpolate)for(const a of this.vehicleObjectMap.keys()){const n=(s=this.vehicleObjectMap.get(a))==null?void 0:s.model;if(!n)continue;const o=this.computeVehiclePosition(a);if(o){const h=this.toRenderCoordinates(o);n.position.set(h[0],h[1],h[2]),n.rotation.y=l.MathUtils.degToRad(-o[3])}}const t=i.sunLight;this.sun.position.set(t.direction[0],t.direction[1],t.direction[2]),this.sun.intensity=t.diffuse.intensity,this.sun.color=new l.Color(t.diffuse.color[0],t.diffuse.color[1],t.diffuse.color[2]),this.ambient.intensity=t.ambient.intensity,this.ambient.color=new l.Color(t.ambient.color[0],t.ambient.color[1],t.ambient.color[2]),this.renderer.resetState(),i.bindRenderTarget(),this.renderer.render(this.scene,this.camera),M.requestRender(this.view),i.resetWebGLState()}async addVehicles(i){if(!(this.isPaused||!this.isInitialized))for(const e of i){const{vehicleId:t,localTimestamp:s}=e,a=Number(e.x),n=Number(e.y),o=Number(e.heading);this.historyPositionMap.set(t,[{pos:[a,n,0],heading:o,time:s}]);const h=this.getVehicleModel(e);h.name=t,h.visible=!this.needInterpolate;try{const r=await this.createPlateSprite(e);r&&(h.add(r),r.position.set(0,5,-4))}catch(r){console.log("createPlateSprite error:",r)}this.scene.add(h),this.vehicleObjectMap.set(t,{model:h,data:e,waitForDelete:!1,isMoving:!1})}}async updateVehicles(i){if(this.isPaused||!this.isInitialized)return;const e=[];for(const t of i){const{vehicleId:s,timestamp:a}=t,n=Number(t.x),o=Number(t.y);let h=Number(t.heading);const r=this.vehicleObjectMap.get(s),p=this.historyPositionMap.get(s);if(!r||!p)e.push(t);else{if(p.length>=5&&console.log(s,p.length),this.updateModel||r.data.vehicleColor!==t.vehicleColor||r.data.vehicleType!==t.vehicleType){this.scene.remove(r.model),this.disposeModel(r.model),r.model=this.getVehicleModel(t);const c=await this.createPlateSprite(t);c&&(r.model.add(c),c.position.set(0,5,-4)),this.scene.add(r.model)}if(r.data.showName!==t.showName||r.data.plateColor!==t.plateColor){const c=r.model.getObjectByName("VehiclePlate");c&&(r.model.remove(c),this.disposeModel(c));const g=await this.createPlateSprite(t);g&&(r.model.add(g),g.position.set(0,5,-4))}if(r.data=t,this.needInterpolate){const c=p[p.length-1];Math.abs(h-c.heading)>=180&&(h>c.heading?c.heading+=360:h+=360),p.push({pos:[n,o,0],heading:h,time:a})}else{this.historyPositionMap.set(s,[{pos:[n,o,0],heading:h,time:a}]);const c=this.toRenderCoordinates([n,o,0]);r.model.position.set(c[0],c[1],c[2]),r.model.rotation.y=l.MathUtils.degToRad(-h)}}}await this.addVehicles(e),this.updateModel=!1,this.needInterpolate||this.render(this.context)}toRenderCoordinates(i){const e=[0,0,0];return M.toRenderCoordinates(this.view,i,0,S.WGS84,e,0,1),e}deleteVehicles(i){this.isPaused||i.forEach(e=>{const t=this.vehicleObjectMap.get(e);t&&(this.needInterpolate?t.isMoving?t.waitForDelete=!0:this.deleteVehicle(t):this.deleteVehicle(t))})}deleteVehicle(i){this.scene.remove(i.model),this.disposeModel(i.model);const e=i.data.vehicleId;this.vehicleObjectMap.delete(e),this.historyPositionMap.delete(e)}async toggleTrafficInfo(i){i.name==="vehiclePlate"&&(i.visible===!0&&this.currentSpriteContent===d.EVehiclePlateState.None?await this.updatePanelContent(d.EVehiclePlateState.PlateNumber):await this.updatePanelContent(i.visible?this.currentSpriteContent:d.EVehiclePlateState.None))}togglePause(i){this.isPaused=i}clearVehicles(){for(const i of this.vehicleObjectMap.keys()){const e=this.vehicleObjectMap.get(i);e&&(this.disposeModel(e.model),this.scene.remove(e.model))}this.vehicleObjectMap.clear(),this.historyPositionMap.clear()}async updatePanelContent(i){if(i!==this.currentSpriteContent){this.currentSpriteContent=i;for(const e of this.vehicleObjectMap.keys()){const t=this.vehicleObjectMap.get(e);if(t){const s=t.model.getObjectByName("VehiclePlate");if(s&&(t.model.remove(s),this.disposeModel(s)),i!==d.EVehiclePlateState.None){const a=await this.createPlateSprite(t.data);a&&(t.model.add(a),a.position.set(0,5,-4))}}}}}toggleGroundVehicle(i){console.log("toggleGroundVehicle",i),this.showGroundVehicle=i}toggleElevatedVehicle(i){this.showElevatedVehicle=i}disposeModel(i){i.traverse(e=>{e instanceof l.Mesh&&(e.geometry.dispose(),e.material.dispose())})}computeVehiclePosition(i){const e=this.historyPositionMap.get(i),t=this.vehicleObjectMap.get(i);if(!t||!e||!t.isMoving&&e.length<=2)return;const s=Date.now();t.isMoving=!0,t.data.roadLayer==="1"?t.model.visible=this.showGroundVehicle:t.model.visible=this.showElevatedVehicle,t.segmentStartTime||(t.segmentStartTime=s,t.segmentTotalTime=e[1].time-e[0].time);const a=s-t.segmentStartTime,n=Math.min(a/t.segmentTotalTime,1);if(n===1)if(e.shift(),e.length===1){t.waitForDelete===!0?this.deleteVehicle(t):(t.segmentStartTime=void 0,t.segmentTotalTime=void 0,t.model.visible=!1,t.isMoving=!1,console.log("hide vehicle",i));return}else return t.segmentStartTime=Date.now(),t.segmentTotalTime=e[1].time-e[0].time,(e[1].heading>=270&&e[0].heading<=90||e[1].heading<=90&&e[0].heading>=270)&&(e[1].heading>e[0].heading?e[0].heading+=360:e[1].heading+=360),e[0].pos.concat(e[0].heading);else if(e.length>=2){const o=e[0].pos[0]+(e[1].pos[0]-e[0].pos[0])*n,h=e[0].pos[1]+(e[1].pos[1]-e[0].pos[1])*n,r=e[0].heading+(e[1].heading-e[0].heading)*n;return[o,h,0,r]}else return}getVehicleModel(i){if(this.view.camera.position.z>=this.cameraHeightThreshold){const e=new l.SphereGeometry(5,32,32),t=new l.MeshPhysicalMaterial({color:325253,emissive:0,roughness:this.roughness,metalness:this.metalness});return new l.Mesh(e,t)}else{let e;if(i.ptcType===2)e=this.bicycleModel.clone();else{switch(i.vehicleType){case 10:e=this.carModel.clone();break;case 20:e=this.vanModel.clone();break;case 25:e=this.truckModel.clone();break;case 50:e=this.busModel.clone();break;default:e=this.carModel.clone();break}const t=this.materialMap.get(i.vehicleColor)||this.defaultMaterial;let s=!1;e.traverse(a=>{!s&&a instanceof l.Mesh&&(a.material=t,s=!0)})}return e}}createCanvas(i,e,t){const s=document.createElement("canvas"),a=i.width,n=i.height;s.width=a,s.height=n;const o=s.getContext("2d");if(!o){console.log("canvas创建失败");return}return o.fillStyle="rgba(0,0,0,0.0)",o.fillRect(0,0,a,n),o.drawImage(i,0,0,a,n),o.beginPath(),o.translate(a/2,n/2),o.fillStyle=t,o.font="bold 32px 宋体",o.textBaseline="middle",o.textAlign="center",o.fillText(e,0,0),s}createPlateSprite(i){return new Promise((e,t)=>{var r,p;const s=!i.plateNo||i.plateNo==="0"||i.plateNo==="000000";if(this.currentSpriteContent===d.EVehiclePlateState.None||this.currentSpriteContent===d.EVehiclePlateState.PlateNumber&&s){e(void 0);return}let a=new Image,n="",o="";if(this.currentSpriteContent===d.EVehiclePlateState.PlateNumber||this.currentSpriteContent===d.EVehiclePlateState.Mix)if(s)a=this.greyPlateBG,n=i.ptcId,o="#ffffff";else switch(n=((r=i.showName)==null?void 0:r.substring(0,2))+"•"+((p=i.showName)==null?void 0:p.substring(2)),i.plateColor){case 1:a=this.bluePlateBG,o="#ffffff";break;case 2:a=this.yellowPlateBG,o="#000000";break;case 3:a=this.whitePlateBG,o="#000000";break;case 4:a=this.blackPlateBG,o="#ffffff";break;case 5:a=this.neoYellowPlateBG,o="#000000";break;case 6:a=this.neoGreenPlateBG,o="#000000";break;default:a=this.greyPlateBG,n=i.plateNo,o="#ffffff";break}else this.currentSpriteContent===d.EVehiclePlateState.Id&&(a=this.greyPlateBG,n=i.ptcId,o="#ffffff");const h=this.createCanvas(a,n,o);if(h){const c=new l.CanvasTexture(h),g=new l.SpriteMaterial({map:c,transparent:!1}),f=new l.Sprite(g),P=.05,w=h.width*P,b=h.height*P;f.scale.set(w,b,1),f.name="VehiclePlate",e(f)}else{t("canvas创建失败");return}a.onerror=c=>{console.log(`号牌背景加载失败: ${a.src}`,c),t(c)}})}}exports.default=I;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const M=require("@arcgis/core/core/promiseUtils.js"),y=require("@arcgis/core/core/reactiveUtils.js"),S=require("@arcgis/core/geometry/SpatialReference"),G=require("@arcgis/core/views/3d/externalRenderers"),C=require("three"),d=require("../../../types/index.js"),B=require("../../stores/index.js"),I=require("./vehicle-pool.js");function g(m){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(m){for(const t in m)if(t!=="default"){const i=Object.getOwnPropertyDescriptor(m,t);Object.defineProperty(e,t,i.get?i:{enumerable:!0,get:()=>m[t]})}}return e.default=m,Object.freeze(e)}const V=g(M),T=g(y),w=g(G),c=g(C);class R{constructor(e){this.cameraHeightThreshold=1e3,this.roughness=.2,this.metalness=.8,this.defaultMaterial=new c.MeshPhongMaterial({color:16777215}),this.vehiclePool=new I.default,this.materialMap=new Map([[1,this.createCarMaterial(16777215)],[2,this.createCarMaterial(7833753)],[3,this.createCarMaterial(16766720)],[4,this.createCarMaterial(16758465)],[5,this.createCarMaterial(14423100)],[6,this.createCarMaterial(3329330)],[7,this.createCarMaterial(2003183)],[8,this.createCarMaterial(16032864)],[9,this.createCarMaterial(2105376)],[10,this.createCarMaterial(9662683)],[99,this.createCarMaterial(6908265)]]),this.isInitialized=!1,this.showGroundVehicle=!0,this.showElevatedVehicle=!0,this.isPaused=!1,this.currentSpriteContent=d.EVehiclePlateState.None,this.historyPositionMap=new Map,this.vehicleObjectMap=new Map,this.needInterpolate=!0,this.updateModel=!1;const t=B.default.useAppDataStore;this.assetsRoot=JSON.parse(JSON.stringify(t.mapConfig)).assetsRoot,this.view=e,T.watch(()=>this.view.camera.position.z,(i,o)=>{(o<=this.cameraHeightThreshold&&i>this.cameraHeightThreshold||o>this.cameraHeightThreshold&&i<=this.cameraHeightThreshold)&&(this.updateModel=!0)})}createCarMaterial(e){return new c.MeshPhongMaterial({color:e})}async init(){await this.vehiclePool.initPool(this.assetsRoot,this.view),await V.eachAlways([new Promise(e=>{this.bluePlateBG=new Image,this.bluePlateBG.src=`${this.assetsRoot}/Images/PlateBG/blue.png`,this.bluePlateBG.onload=()=>{e()}}),new Promise(e=>{this.yellowPlateBG=new Image,this.yellowPlateBG.src=`${this.assetsRoot}/Images/PlateBG/yellow.png`,this.yellowPlateBG.onload=()=>{e()}}),new Promise(e=>{this.whitePlateBG=new Image,this.whitePlateBG.src=`${this.assetsRoot}/Images/PlateBG/white.png`,this.whitePlateBG.onload=()=>{e()}}),new Promise(e=>{this.blackPlateBG=new Image,this.blackPlateBG.src=`${this.assetsRoot}/Images/PlateBG/black.png`,this.blackPlateBG.onload=()=>{e()}}),new Promise(e=>{this.neoYellowPlateBG=new Image,this.neoYellowPlateBG.src=`${this.assetsRoot}/Images/PlateBG/neo_yellow.png`,this.neoYellowPlateBG.onload=()=>{e()}}),new Promise(e=>{this.neoGreenPlateBG=new Image,this.neoGreenPlateBG.src=`${this.assetsRoot}/Images/PlateBG/neo_green.png`,this.neoGreenPlateBG.onload=()=>{e()}}),new Promise(e=>{this.greyPlateBG=new Image,this.greyPlateBG.src=`${this.assetsRoot}/Images/PlateBG/grey.png`,this.greyPlateBG.onload=()=>{e()}})]),this.isInitialized=!0}setInterpolate(e){this.clearVehicles(),this.needInterpolate=e}async setup(e){this.context=e,this.renderer=new c.WebGLRenderer({context:e.gl,premultipliedAlpha:!0,logarithmicDepthBuffer:!0,antialias:!0,powerPreference:"high-performance"}),this.renderer.shadowMap.enabled=!0,this.renderer.setPixelRatio(window.devicePixelRatio),this.renderer.setViewport(0,0,this.view.width,this.view.height),this.renderer.autoClearDepth=!1,this.renderer.autoClearStencil=!1,this.renderer.autoClearColor=!1;const t=this.renderer.setRenderTarget.bind(this.renderer);this.renderer.setRenderTarget=o=>{t(o),o==null&&e.bindRenderTarget()},this.scene=new c.Scene;const{camera:i}=e;this.camera=new c.PerspectiveCamera(i.fovY,i.aspect,.1,1e5),this.ambient=new c.AmbientLight(16777215,2),this.scene.add(this.ambient),this.sun=new c.DirectionalLight(16777215,2),this.scene.add(this.sun),e.resetWebGLState()}async render(e){var o;const t=e.camera;if(this.camera.position.set(t.eye[0],t.eye[1],t.eye[2]),this.camera.up.set(t.up[0],t.up[1],t.up[2]),this.camera.lookAt(new c.Vector3(t.center[0],t.center[1],t.center[2])),this.camera.projectionMatrix.fromArray(t.projectionMatrix),!this.isPaused&&this.needInterpolate)for(const a of this.vehicleObjectMap.keys()){const n=(o=this.vehicleObjectMap.get(a))==null?void 0:o.model;if(!n)continue;const s=this.computeVehiclePosition(a);if(s){const l=this.toRenderCoordinates(s);n.position.set(l[0],l[1],l[2]),n.rotation.y=c.MathUtils.degToRad(-s[3])}}const i=e.sunLight;this.sun.position.set(i.direction[0],i.direction[1],i.direction[2]),this.sun.intensity=i.diffuse.intensity,this.sun.color=new c.Color(i.diffuse.color[0],i.diffuse.color[1],i.diffuse.color[2]),this.ambient.intensity=i.ambient.intensity,this.ambient.color=new c.Color(i.ambient.color[0],i.ambient.color[1],i.ambient.color[2]),this.renderer.resetState(),e.bindRenderTarget(),this.renderer.render(this.scene,this.camera),w.requestRender(this.view),e.resetWebGLState()}async addVehicles(e){if(!(this.isPaused||!this.isInitialized))for(const t of e){const{vehicleId:i,localTimestamp:o}=t,a=Number(t.x),n=Number(t.y),s=Number(t.heading);this.historyPositionMap.set(i,[{pos:[a,n,0],heading:s,time:o}]);const l=this.getVehicleModel(t);l.name=i,l.visible=!1;try{const r=await this.createPlateSprite(t);r&&(l.add(r),r.position.set(0,5,-4))}catch(r){console.log("createPlateSprite error:",r)}this.scene.add(l),this.vehicleObjectMap.set(i,{model:l,data:t,waitForDelete:!1,isMoving:!1})}}async updateVehicles(e){if(this.isPaused||!this.isInitialized)return;const t=[];for(const i of e){const{vehicleId:o,timestamp:a}=i,n=Number(i.x),s=Number(i.y);let l=Number(i.heading);const r=this.vehicleObjectMap.get(o),p=this.historyPositionMap.get(o);if(!r||!p)t.push(i);else{if(this.updateModel||r.data.vehicleColor!==i.vehicleColor||r.data.vehicleType!==i.vehicleType){this.vehiclePool.recycleInstance(r.model),r.model=this.getVehicleModel(i),r.model.visible=!0;const h=await this.createPlateSprite(i);h&&(r.model.add(h),h.position.set(0,5,-4)),this.scene.add(r.model)}if(r.data.showName!==i.showName||r.data.plateColor!==i.plateColor){const h=r.model.getObjectByName("VehiclePlate");h&&(r.model.remove(h),this.disposeModel(h));const f=await this.createPlateSprite(i);f&&(r.model.add(f),f.position.set(0,5,-4))}if(r.data=i,this.needInterpolate){const h=p[p.length-1];Math.abs(l-h.heading)>=180&&(l>h.heading?h.heading+=360:l+=360),p.push({pos:[n,s,0],heading:l,time:a})}else{this.historyPositionMap.set(o,[{pos:[n,s,0],heading:l,time:a}]);const h=this.toRenderCoordinates([n,s,0]);r.model.position.set(h[0],h[1],h[2]),r.model.rotation.y=c.MathUtils.degToRad(-l)}}}await this.addVehicles(t),this.updateModel=!1,this.needInterpolate||this.render(this.context)}toRenderCoordinates(e){const t=[0,0,0];return w.toRenderCoordinates(this.view,e,0,S.WGS84,t,0,1),t}deleteVehicles(e){this.isPaused||e.forEach(t=>{const i=this.vehicleObjectMap.get(t);i&&(this.needInterpolate?i.isMoving?i.waitForDelete=!0:this.deleteVehicle(i):this.deleteVehicle(i))})}deleteVehicle(e){this.vehiclePool.recycleInstance(e.model);const t=e.data.vehicleId;this.vehicleObjectMap.delete(t),this.historyPositionMap.delete(t)}async toggleTrafficInfo(e){e.name==="vehiclePlate"&&(e.visible===!0&&this.currentSpriteContent===d.EVehiclePlateState.None?await this.updatePanelContent(d.EVehiclePlateState.PlateNumber):await this.updatePanelContent(e.visible?this.currentSpriteContent:d.EVehiclePlateState.None))}togglePause(e){this.isPaused=e}clearVehicles(){for(const e of this.vehicleObjectMap.keys()){const t=this.vehicleObjectMap.get(e);t&&this.vehiclePool.recycleInstance(t.model)}this.vehicleObjectMap.clear(),this.historyPositionMap.clear()}async updatePanelContent(e){if(e!==this.currentSpriteContent){this.currentSpriteContent=e;for(const t of this.vehicleObjectMap.keys()){const i=this.vehicleObjectMap.get(t);if(i){const o=i.model.getObjectByName("VehiclePlate");if(o&&(i.model.remove(o),this.disposeModel(o)),e!==d.EVehiclePlateState.None){const a=await this.createPlateSprite(i.data);a&&(i.model.add(a),a.position.set(0,5,-4))}}}}}toggleGroundVehicle(e){console.log("toggleGroundVehicle",e),this.showGroundVehicle=e}toggleElevatedVehicle(e){this.showElevatedVehicle=e}disposeModel(e){e.traverse(t=>{t instanceof c.Mesh&&(t.geometry.dispose(),t.material.dispose())})}computeVehiclePosition(e){const t=this.historyPositionMap.get(e),i=this.vehicleObjectMap.get(e);if(!i||!t||!i.isMoving&&t.length<=2)return;const o=Date.now();i.isMoving=!0,i.data.roadLayer==="1"?i.model.visible=this.showGroundVehicle:i.model.visible=this.showElevatedVehicle,i.segmentStartTime||(i.segmentStartTime=o,i.segmentTotalTime=t[1].time-t[0].time);const a=o-i.segmentStartTime,n=Math.min(a/i.segmentTotalTime,1);if(n===1)if(t.shift(),t.length===1){i.waitForDelete===!0?this.deleteVehicle(i):(i.segmentStartTime=void 0,i.segmentTotalTime=void 0,i.model.visible=!1,i.isMoving=!1,console.log("hide vehicle",e));return}else return i.segmentStartTime=Date.now(),i.segmentTotalTime=t[1].time-t[0].time,(t[1].heading>=270&&t[0].heading<=90||t[1].heading<=90&&t[0].heading>=270)&&(t[1].heading>t[0].heading?t[0].heading+=360:t[1].heading+=360),t[0].pos.concat(t[0].heading);else if(t.length>=2){const s=t[0].pos[0]+(t[1].pos[0]-t[0].pos[0])*n,l=t[0].pos[1]+(t[1].pos[1]-t[0].pos[1])*n,r=t[0].heading+(t[1].heading-t[0].heading)*n;return[s,l,0,r]}else return}getVehicleModel(e){return this.vehiclePool.getInstance(e)}createCanvas(e,t,i){const o=document.createElement("canvas"),a=e.width,n=e.height;o.width=a,o.height=n;const s=o.getContext("2d");if(!s){console.log("canvas创建失败");return}return s.fillStyle="rgba(0,0,0,0.0)",s.fillRect(0,0,a,n),s.drawImage(e,0,0,a,n),s.beginPath(),s.translate(a/2,n/2),s.fillStyle=i,s.font="bold 32px 宋体",s.textBaseline="middle",s.textAlign="center",s.fillText(t,0,0),o}createPlateSprite(e){return new Promise((t,i)=>{var r,p;const o=!e.plateNo||e.plateNo==="0"||e.plateNo==="000000";if(this.currentSpriteContent===d.EVehiclePlateState.None||this.currentSpriteContent===d.EVehiclePlateState.PlateNumber&&o){t(void 0);return}let a=new Image,n="",s="";if(this.currentSpriteContent===d.EVehiclePlateState.PlateNumber||this.currentSpriteContent===d.EVehiclePlateState.Mix)if(o)a=this.greyPlateBG,n=e.ptcId,s="#ffffff";else switch(n=((r=e.showName)==null?void 0:r.substring(0,2))+"•"+((p=e.showName)==null?void 0:p.substring(2)),e.plateColor){case 1:a=this.bluePlateBG,s="#ffffff";break;case 2:a=this.yellowPlateBG,s="#000000";break;case 3:a=this.whitePlateBG,s="#000000";break;case 4:a=this.blackPlateBG,s="#ffffff";break;case 5:a=this.neoYellowPlateBG,s="#000000";break;case 6:a=this.neoGreenPlateBG,s="#000000";break;default:a=this.greyPlateBG,n=e.plateNo,s="#ffffff";break}else this.currentSpriteContent===d.EVehiclePlateState.Id&&(a=this.greyPlateBG,n=e.ptcId,s="#ffffff");const l=this.createCanvas(a,n,s);if(l){const h=new c.CanvasTexture(l),f=new c.SpriteMaterial({map:h,transparent:!1}),u=new c.Sprite(f),P=.05,v=l.width*P,b=l.height*P;u.scale.set(v,b,1),u.name="VehiclePlate",t(u)}else{i("canvas创建失败");return}a.onerror=h=>{console.log(`号牌背景加载失败: ${a.src}`,h),i(h)}})}}exports.default=R;
@@ -0,0 +1,41 @@
1
+ import * as Three from 'three';
2
+ import { IVehicleTrack } from '../../../types';
3
+ export declare enum EModelStatus {
4
+ /** 未使用 */
5
+ UNUSED = "unused",
6
+ /** 使用中 */
7
+ USED = "used",
8
+ /** 已销毁 */
9
+ DESTROYED = "destroyed"
10
+ }
11
+ declare type VehicleModelType = Three.Group | Three.Mesh;
12
+ export default class VehiclePool {
13
+ private createCarMaterial;
14
+ /** 车身颜色材质 */
15
+ private materialMap;
16
+ private readonly carPool;
17
+ private readonly vanPool;
18
+ private readonly truckPool;
19
+ private readonly busPool;
20
+ private bicyclePool;
21
+ private ballPool;
22
+ private readonly poolSize;
23
+ private view;
24
+ /** 车辆模型变化的阈值 */
25
+ private readonly cameraHeightThreshold;
26
+ initPool(assetsRoot: string, view: __esri.SceneView): Promise<void>;
27
+ /**
28
+ * 获取实例
29
+ * @param data
30
+ */
31
+ getInstance(data: IVehicleTrack): VehicleModelType;
32
+ /**
33
+ * 回收实例
34
+ * @param instance
35
+ */
36
+ recycleInstance(instance: VehicleModelType): void;
37
+ private getInstanceFromPool;
38
+ private getInstanceFromList;
39
+ private materialModel;
40
+ }
41
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const d=require("@arcgis/core/core/promiseUtils.js"),M=require("three"),m=require("three/examples/jsm/loaders/GLTFLoader.js");function u(h){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(h){for(const a in h)if(a!=="default"){const s=Object.getOwnPropertyDescriptor(h,a);Object.defineProperty(e,a,s.get?s:{enumerable:!0,get:()=>h[a]})}}return e.default=h,Object.freeze(e)}const g=u(d),i=u(M);class P{constructor(){this.materialMap=new Map([[1,this.createCarMaterial(16777215)],[2,this.createCarMaterial(7833753)],[3,this.createCarMaterial(16766720)],[4,this.createCarMaterial(16758465)],[5,this.createCarMaterial(14423100)],[6,this.createCarMaterial(3329330)],[7,this.createCarMaterial(2003183)],[8,this.createCarMaterial(16032864)],[9,this.createCarMaterial(2105376)],[10,this.createCarMaterial(9662683)],[99,this.createCarMaterial(6908265)]]),this.carPool=new Map,this.vanPool=new Map,this.truckPool=new Map,this.busPool=new Map,this.bicyclePool=[],this.ballPool=[],this.poolSize=20,this.cameraHeightThreshold=1e3}createCarMaterial(e){return new i.MeshPhongMaterial({color:e})}async initPool(e,a){this.view=a;const s=new m.GLTFLoader;await g.eachAlways([new Promise(o=>{s.load(`${e}/3DModels/car.glb`,l=>{const t=l.scene;t.rotation.x=i.MathUtils.degToRad(90),t.userData={status:"unused"},this.materialMap.forEach((n,c)=>{const r=t.clone();this.materialModel(r,n),this.carPool.set(c,Array.from({length:this.poolSize},()=>r.clone()))}),o()})}),new Promise(o=>{s.load(`${e}/3DModels/van.glb`,l=>{const t=l.scene;t.rotation.x=i.MathUtils.degToRad(90),t.userData={status:"unused"},this.materialMap.forEach((n,c)=>{const r=t.clone();this.materialModel(r,n),this.vanPool.set(c,Array.from({length:this.poolSize},()=>r.clone()))}),o()})}),new Promise(o=>{s.load(`${e}/3DModels/truck.glb`,l=>{const t=l.scene;t.scale.set(1.2,1,1.5),t.rotation.x=i.MathUtils.degToRad(90),t.userData={status:"unused"},this.materialMap.forEach((n,c)=>{const r=t.clone();this.materialModel(r,n),this.truckPool.set(c,Array.from({length:this.poolSize},()=>r.clone()))}),o()})}),new Promise(o=>{s.load(`${e}/3DModels/bus.glb`,l=>{const t=l.scene;t.rotation.x=i.MathUtils.degToRad(90),t.userData={status:"unused"},this.materialMap.forEach((n,c)=>{const r=t.clone();r.userData={status:"unused"},this.materialModel(r,n),this.busPool.set(c,Array.from({length:this.poolSize},()=>r.clone()))}),o()})}),new Promise(o=>{s.load(`${e}/3DModels/bicycle.glb`,l=>{const t=l.scene;t.userData={status:"unused"},t.rotation.x=i.MathUtils.degToRad(90),t.rotation.y=i.MathUtils.degToRad(180),t.userData={status:"unused"},this.bicyclePool=Array.from({length:this.poolSize},()=>t.clone()),o()})}),new Promise(o=>{const l=new i.SphereGeometry(5,32,32),t=new i.MeshPhysicalMaterial({color:325253,emissive:0,roughness:.2,metalness:.8});this.ballPool=Array.from({length:100},()=>{const n=new i.Mesh(l,t);return n.userData={status:"unused"},n}),o()})])}getInstance(e){if(console.log(e),this.view.camera.position.z>=this.cameraHeightThreshold)return this.getInstanceFromList(this.ballPool);{const a=e.vehicleColor;if(e.ptcType===2)return this.getInstanceFromList(this.bicyclePool);switch(e.vehicleType){case 1:case 10:return this.getInstanceFromPool(a,this.carPool);case 20:return this.getInstanceFromPool(a,this.vanPool);case 25:return this.getInstanceFromPool(a,this.truckPool);case 50:return this.getInstanceFromPool(a,this.busPool);default:return this.getInstanceFromPool(a,this.carPool)}}}recycleInstance(e){e.visible=!1,e.userData.status="unused"}getInstanceFromPool(e,a){let s=a.get(e);return s||(s=a.get(99)),this.getInstanceFromList(s)}getInstanceFromList(e){let a=e.find(s=>s.userData.status==="unused");return a||(a=e[0].clone(),e.push(a),console.log("increase pool. pool size:",e.length)),a.userData.status="used",a}materialModel(e,a){let s=!1;e.traverse(o=>{!s&&o instanceof i.Mesh&&(o.material=a,s=!0)})}}exports.default=P;
@@ -5,6 +5,7 @@
5
5
  * 45° ~ 135°:东象限。
6
6
  * 135° ~ 225°:南象限。
7
7
  */
8
+ import Three from 'three';
8
9
  export declare enum QuadrantCode {
9
10
  West = "1",
10
11
  North = "2",
@@ -37,6 +38,15 @@ export interface IVehicleTrack {
37
38
  plateNo?: string;
38
39
  roadLayer?: string;
39
40
  }
41
+ export interface IVehicleRecord {
42
+ model: Three.Group | Three.Mesh;
43
+ data: IVehicleTrack;
44
+ segmentStartTime?: number;
45
+ segmentTotalTime?: number;
46
+ waitForDelete: boolean;
47
+ isMoving: boolean;
48
+ currentPos?: number[];
49
+ }
40
50
  export interface ILaneNumberParams {
41
51
  lanes: {
42
52
  crossId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gisviewer-vue3-arcgis",
3
- "version": "1.0.111",
3
+ "version": "1.0.112",
4
4
  "main": "lib/index.js",
5
5
  "module": "es/index.mjs",
6
6
  "files": [