#
luxiaotao1123
2024-03-21 19e24b4f23cf19fb2edf776abffa5b7e754c22d5
zy-asrs-flow/src/pages/map/player.js
@@ -25,7 +25,7 @@
        this.getStartedTicker();
    }
    activateMapEvent = (leftEvent, rightEvent) => {
    activateMapEvent = (eventType, mapModel) => {
        if (this.mapEvent) {
            this.mapContainer.parent.off('mousedown');
            this.mapEvent = null;
@@ -36,17 +36,11 @@
            }
        }
        this.mapEvent = (event) => {
            if (leftEvent && event.button === 0) {
                switch (leftEvent) {
            if (eventType && event.button === 0) {
                switch (eventType) {
                    case Utils.MapEvent.SELECTION_BOX:
                        this.mapSelect(event);
                        this.mapSelect(event, mapModel);
                        break
                    default:
                        break
                }
            }
            if (rightEvent && event.button === 2) {
                switch (rightEvent) {
                    default:
                        break
                }
@@ -55,7 +49,7 @@
        this.mapContainer.parent.on('mousedown', this.mapEvent)
    }
    mapSelect = (event) => {
    mapSelect = (event, mapModel) => {
        let isSelecting = false;
        if (!this.selectionBox) {
            this.selectionBox = new PIXI.Graphics();
@@ -110,7 +104,7 @@
                // sprites batch move
                Utils.spriteListBeMovable(this.selectedSprites, this.scale, () => {
                    this.activateMapEvent(Utils.MapEvent.SELECTION_BOX);
                    this.activateMapEvent(Utils.MapEvent.SELECTION_BOX, mapModel);
                });
            }
@@ -149,6 +143,9 @@
        this.scale = 1;
        this.app.view.addEventListener('wheel', (event) => {
            event.preventDefault();
            if (this.scale !== this.mapContainer.scale.x) {
                this.scale = this.mapContainer.scale.x;
            }
            const delta = Math.sign(event.deltaY);
@@ -167,7 +164,6 @@
            this.scale = newScale;
            this.mapContainer.scale.set(this.scale);
            console.log(this.scale);
            this.mapContainer.children.forEach(child => {
                // child.scale.set(1 / this.scale); // 防止图标变小
@@ -177,7 +173,7 @@
    showCoordinates = () => {
        const coordinatesText = new PIXI.Text('{ x: 0, y: 0 }', {
            fill: 0x000000,
            fill: this.darkModel ? 0xffffff : 0x000000,
            fontSize: 13,
            fontFamily: 'MicrosoftYaHei',
            fontWeight: 'bold',
@@ -195,17 +191,18 @@
    }
    showGridlines = () => {
        this.hideGridlines();
        if (!this.gridLineContainer) {
            this.gridLineContainer = generatePixiContainer('gridLineContainer');
            this.app.stage.addChild(this.gridLineContainer);
        }
        const inte = 30;
        const lineDefaultAlpha = .5;;
        const lineDefaultAlpha = .1;;
        const lineDefaultColor = 0x000000;
        for (let i = 0; i < this.app.view.width / inte; i++) {
            const graphics = new PIXI.Graphics();
            graphics.lineStyle(.3, lineDefaultColor, lineDefaultAlpha);
            graphics.lineStyle(1, lineDefaultColor, lineDefaultAlpha);
            graphics.beginFill(lineDefaultColor);
            graphics.moveTo(i * inte, 0);
            graphics.lineTo(i * inte, this.app.view.height);
@@ -215,7 +212,7 @@
        for (let i = 0; i < this.app.view.height / inte; i++) {
            const graphics = new PIXI.Graphics();
            graphics.lineStyle(.3, lineDefaultColor, lineDefaultAlpha);
            graphics.lineStyle(1, lineDefaultColor, lineDefaultAlpha);
            graphics.beginFill(lineDefaultColor);
            graphics.moveTo(0, i * inte);
            graphics.lineTo(this.app.view.width, i * inte);
@@ -326,11 +323,12 @@
        if (!this.mapContainer || !this.app) {
            return;
        }
        this.mapContainer.scale.set(1);
        this.mapContainer.position.set(0, 0);
        if (this.mapContainer.children.length === 0) {
            return;
        }
        this.mapContainer.scale.set(1);
        this.mapContainer.position.set(0, 0);
        let minX, maxX, minY, maxY;
        for (let sprite of this.mapContainer.children) {
@@ -380,7 +378,7 @@
function generatePixiApp(dark) {
    const app = new PIXI.Application({
        background: dark ? '#f1f2f6' : '#f1f2f6',
        background: dark ? '#2f3542' : '#f1f2f6',
        antialias: true,
    })
    app.stage.eventMode = 'static';