自动化立体仓库 - WCS系统
#
Junjie
2025-01-08 1ff4b70e59b8c9ceb80d0a695d26b4419ed349f1
src/main/java/com/zy/core/model/protocol/ShuttleProtocol.java
@@ -1,7 +1,14 @@
package com.zy.core.model.protocol;
import com.zy.core.enums.ShuttleStatusType;
import com.zy.core.model.command.ShuttleAssignCommand;
import com.core.common.Cools;
import com.core.common.SpringUtils;
import com.zy.asrs.entity.BasShuttleErr;
import com.zy.asrs.entity.LocMast;
import com.zy.asrs.service.BasShuttleErrService;
import com.zy.asrs.service.LocMastService;
import com.zy.common.utils.RedisUtil;
import com.zy.core.enums.RedisKeyType;
import com.zy.core.enums.ShuttleProtocolStatusType;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
@@ -10,22 +17,28 @@
 */
@Slf4j
@Data
public class ShuttleProtocol {
public class ShuttleProtocol implements Cloneable {
    //**********************必须存在属性**********************
    /**
     * 四向穿梭车号
     */
    private Short shuttleNo;
    private Integer shuttleNo;
    /**
     * 任务号
     */
    private Short taskNo = 0;
    private Integer taskNo;
    /**
     * 任务指令
     * 当前小车状态(内部自我维护)
     */
    private ShuttleAssignCommand assignCommand;
    private Integer protocolStatus;
    /**
     * 当前小车作业状态枚举
     */
    private ShuttleProtocolStatusType protocolStatusType;
    /**
     * 源库位
@@ -38,192 +51,200 @@
    private String locNo;
    /**
     * 小车忙状态位
     * 1: 忙
     * 0: 空闲
     * 小车设备状态
     */
    private Short busyStatus;
    private Integer deviceStatus;
    /**
     * 小车忙状态位枚举
     * 小车模式,0:手动 1:自动
     */
    private ShuttleStatusType busyStatusType;
    private Integer mode;
    /**
     * 当前二维码
     * 0为空
     */
    private Short currentCode;
    private String currentCode;
    /**
     * 电池电量百分比
     * 电池电量
     */
    private Short batteryPower;
    /**
     * 电池温度
     */
    private Short batteryTemp;
    private String batteryPower;
    /**
     * 错误编号
     */
    private Short errorCode;
    private String errorCode;
    //**********************非必须属性,实际使用中可能存在空值**********************
    /**
     * Plc输出状态IO
     * 电池温度
     */
    private Short plcOutputStatusIO;
    private String batteryTemp;
    /**
     * 错误信息码
     * 是否顶升
     */
    private Short statusErrorCode;
    private Boolean hasLift;
    /**
     * PLC输入状态
     * 是否有托盘
     */
    private Short plcInputStatus;
    private Boolean hasPallet;
    /**
     * 当前或者之前读到的二维码值
     * 行驶方向
     */
    private Short currentOrBeforeCode;
    private String runDirection;
    /**
     * 读到的二维码X方向偏移量
     * 是否为充电状态
     */
    private Short codeOffsetX;
    private Boolean hasCharge;
    /**
     * 读到的二维码Y方向偏移量
     * 电池电压
     */
    private Short codeOffsetY;
    private Integer batteryVoltage;
    /**
     * 当前的电压值
     */
    private Short currentVoltage;
    //**********************系统自身所需属性**********************
    /**
     * 当前的模拟量值
     */
    private Short currentAnalogValue;
    /**
     * 当前的升降伺服速度
     */
    private Short currentLiftServoSpeed;
    /**
     * 当前的行走伺服速度
     */
    private Short currentMoveServoSpeed;
    /**
     * 当前的升降伺服负载率
     */
    private Short currentLiftServoLoad;
    /**
     * 当前的行走伺服负载率
     */
    private Short currentMoveServoLoad;
    /**
     * 作业标记
     * 作业标记 false表示正在作业
     */
    private Boolean pakMk = true;
    // 任务信息 ---------------------------------------------------------
    /**
     * 96.入库任务中
     * 跑库状态
     */
    private boolean pakInTask;
    private Boolean moveLoc = false;
    /**
     * 97. 出库任务中
     * 跑库类型,0:跑轨道,1:跑库位
     */
    private boolean pakOutTask;
    private Integer moveType = 0;
    /**
     * 98. 移库任务中
     * 跑库X起点
     */
    private boolean pakMoveTask;
    private Integer xStart = 0;
    /**
     * 99. 回原点任务中
     * 跑库X终点
     */
    private boolean goHpTask;
    private Integer xTarget = 0;
    /**
     * 100. 去反原点任务中
     * 跑库X当前点位
     */
    private boolean goOHpTask;
    private Integer xCurrent = 0;
    /**
     * 101. 去原点避让位
     * 跑库Y起点
     */
    private boolean goHpAvoid;
    private Integer yStart = 0;
    /**
     * 102. 去反原点避让位
     * 跑库Y终点
     */
    private boolean goOHpAvoid;
    private Integer yTarget = 0;
    /**
     * 104. 入库取空结束
     * 跑库Y当前点位
     */
    private boolean pakInEmpty;
    private Integer yCurrent = 0;
    /**
     * 105. 入库正常结束
     * 日志采集时间
     */
    private boolean pakInFinish;
    private Long deviceDataLog = System.currentTimeMillis();
    /**
     * 106. 出库取空结束
     * 指令下发时间
     */
    private boolean pakOutEmpty;
    private Long sendTime = 0L;
    /**
     * 107. 出库正常结束
     * 最近一次在线时间
     */
    private boolean pakOutFinish;
    private Long lastOnlineTime = System.currentTimeMillis();
    /**
     * 108. 去原点避让完成
     * 扩展字段
     */
    private boolean goHpAvoidFinish;
    private Object extend;
    /**
     * 109. 去反原点避让完成
     * 设置小车状态
     */
    private boolean goOHpAvoidFinish;
    /**
     * 110. 去原点避让完成
     */
    private boolean goHpAvoidErr;
    /**
     * 111. 去反原点避让完成
     */
    private boolean goOHpAvoidErr;
    public void setBusyStatus(Short status) {
        this.busyStatus = status;
        this.busyStatusType = ShuttleStatusType.get(status);
    public void setProtocolStatus(Integer status) {
        this.protocolStatus = status;
        this.protocolStatusType = ShuttleProtocolStatusType.get(status);
    }
    public void setBusyStatus(ShuttleStatusType type) {
        this.busyStatus = type.id.shortValue();
        this.busyStatusType = type;
    /**
     * 设置小车状态
     */
    public void setProtocolStatus(ShuttleProtocolStatusType status) {
        this.protocolStatus = status.id;
        this.protocolStatusType = status;
    }
    //获取电池电量
    public Short getBatteryPower() {
        return (short) (this.batteryPower * 0.1);
    public Integer getTaskNo() {
        RedisUtil redisUtil = SpringUtils.getBean(RedisUtil.class);
        if (null != redisUtil) {
            Object o = redisUtil.get(RedisKeyType.SHUTTLE_FLAG.key + this.shuttleNo);
            if (!Cools.isEmpty(o)) {
                this.taskNo = Integer.parseInt(String.valueOf(o));
            }
        }
        return this.taskNo == null ? 0 : this.taskNo;
    }
    public synchronized void setSyncTaskNo(Integer taskNo) {
        RedisUtil redisUtil = SpringUtils.getBean(RedisUtil.class);
        if (null != redisUtil) {
            redisUtil.set(RedisKeyType.SHUTTLE_FLAG.key + this.shuttleNo, taskNo);
            this.taskNo = taskNo;
        }
    }
    @Override
    public ShuttleProtocol clone() {
        try {
            return (ShuttleProtocol) super.clone();
        } catch (CloneNotSupportedException e) {
            e.printStackTrace();
        }
        return null;
    }
    //通过当前二维码获取当前库位号
    public String getCurrentLocNo() {
        LocMastService locMastService = SpringUtils.getBean(LocMastService.class);
        if (locMastService == null) {
            return null;
        }
        //源库位(小车当前位置)
        LocMast currentLocMast = locMastService.queryByQrCode(this.currentCode);
        if (currentLocMast == null) {
            return null;
        }
        return currentLocMast.getLocNo();
    }
    public String getStatusErrorCode$() {
        BasShuttleErrService basShuttleErrService = SpringUtils.getBean(BasShuttleErrService.class);
        if (this.errorCode == null) {
            return "";
        }
        BasShuttleErr basShuttleErr = basShuttleErrService.queryByCode(Integer.valueOf(this.errorCode));
        if (basShuttleErr == null) {
            return this.errorCode;
        }
        return basShuttleErr.getErrName();
    }
}