| | |
| | | import * as PIXI from 'pixi.js'; |
| | | import * as TWEEDLE from 'tweedle.js'; |
| | | |
| | | let app = null; |
| | | let mapContainer = null; |
| | |
| | | } |
| | | } |
| | | |
| | | export const findSpriteByUuid = (uuid) => { |
| | | return mapContainer?.children?.find(child => child?.data?.uuid === uuid); |
| | | } |
| | | |
| | | export const sensorTypeSelectOptions = (intl) => { |
| | | let options = []; |
| | | Object.entries(SENSOR_TYPE).forEach(([key, value]) => { |
| | |
| | | |
| | | }) |
| | | return options; |
| | | } |
| | | |
| | | export const adaptScreen = () => { |
| | | if (!mapContainer || !app) { |
| | | return; |
| | | } |
| | | if (mapContainer.children.length === 0) { |
| | | return; |
| | | } |
| | | |
| | | let minX, maxX, minY, maxY; |
| | | for (let sprite of mapContainer.children) { |
| | | let bounds = sprite.getBounds(); |
| | | minX = minX !== undefined ? Math.min(minX, bounds.x) : bounds.x; |
| | | minY = minY !== undefined ? Math.min(minY, bounds.y) : bounds.y; |
| | | maxX = maxX !== undefined ? Math.max(maxX, bounds.x + bounds.width) : bounds.x + bounds.width; |
| | | maxY = maxY !== undefined ? Math.max(maxY, bounds.y + bounds.height) : bounds.y + bounds.height; |
| | | } |
| | | |
| | | // 矩形中心 |
| | | let centerPoint = { |
| | | x: (minX + maxX) / 2 * mapContainer.scale.x, |
| | | y: (minY + maxY) / 2 * mapContainer.scale.y |
| | | }; |
| | | |
| | | let newScale = Math.min( |
| | | app.renderer.width / (maxX - minX) * 0.9, // 90%的宽度 |
| | | app.renderer.height / (maxY - minY) * 0.9 // 90%的高度 |
| | | ); |
| | | |
| | | new TWEEDLE.Tween(mapContainer.scale).easing(TWEEDLE.Easing.Quadratic.Out) |
| | | .to({ |
| | | x: newScale, |
| | | y: newScale |
| | | }, 200).start(); |
| | | |
| | | new TWEEDLE.Tween(mapContainer.position).easing(TWEEDLE.Easing.Quadratic.Out) |
| | | .to({ |
| | | x: app.renderer.width / 2 - centerPoint.x * newScale, |
| | | y: app.renderer.height / 2 - centerPoint.y * newScale |
| | | }, 200).start(); |
| | | } |