#
luxiaotao1123
2024-04-08 f90f717f0d2e258b6310458c9ca0026cc258d24a
zy-asrs-flow/src/pages/map/utils.js
@@ -617,12 +617,14 @@
    const mapVo = JSON.parse(data);
    // shuttle
    for (const shuttleVo of mapVo.shuttleVos) {
        console.log(shuttleVo);
        const shuttle = querySprite(SENSOR_TYPE.SHUTTLE, shuttleVo.shuttleNo);
        if (!shuttle && !shuttleVo.curLocNo) { continue; }
        const { row, bay, lev } = parseLocNo(shuttleVo.curLocNo);
        const shelf = querySprite(SENSOR_TYPE.SHELF, row + '-' + bay);
        if (!shelf) { continue; }
        drawPreTravelPath(shuttleVo.preTravelPath)
        new TWEEDLE.Tween(shuttle?.position).easing(TWEEDLE.Easing.Linear.None).to({
            x: shelf.position.x,
            y: shelf.position.y
@@ -630,4 +632,34 @@
            updateEffect(shuttle);
        }).start();
    }
}
export const drawPreTravelPath = (path) => {
    if (!mapContainer) {
        return;
    }
    let pathLine = mapContainer.getChildByName('preTravelPath');
    if (pathLine) mapContainer.removeChild(pathLine);
    pathLine = new PIXI.Graphics();
    pathLine.name = 'preTravelPath';
    pathLine.lineStyle(3 * (1 / mapContainer.scale.x), 0x3498db, 1);
    pathLine.zIndex = 9999;
    for (let i = 0; i < path.length; i++) {
        const { row, bay, lev } = parseLocNo(path[i]);
        const shelf = querySprite(SENSOR_TYPE.SHELF, row + '-' + bay);
        if (!shelf) continue;
        let position = shelf.position;
        let x = position.x;
        let y = position.y;
        if (i === 0) {
            pathLine.moveTo(x, y);
        } else {
            pathLine.lineTo(x, y);
        }
    }
    mapContainer.addChild(pathLine);
}