自动化立体仓库 - WCS系统
Junjie
2023-07-31 d08e5f29d4aea9f160b45c86e0004efbf34c76bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
package com.zy.core.model.protocol;
 
import com.zy.core.enums.LiftProtocolStatusType;
import com.zy.core.model.command.LiftAssignCommand;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
 
/**
 * 提升机
 */
@Slf4j
@Data
public class LiftProtocol {
 
    /**
     * 提升机号
     */
    private Short liftNo;
 
    /**
     * 任务号
     */
    private Short taskNo = 0;
 
    /**
     * 四向穿梭车号
     */
    private Short shuttleNo = 0;
 
    /**
     * 当前提升机状态(内部自我维护)
     */
    private Integer protocolStatus = 1;
 
    /**
     * 当前提升机状态枚举
     */
    private LiftProtocolStatusType protocolStatusType = LiftProtocolStatusType.IDLE;
 
    /**
     * 模式
     */
    private Boolean model;
 
    /**
     * 忙闲
     */
    private Boolean busy;
 
    /**
     * 前超限
     */
    private Boolean frontOverrun;
 
    /**
     * 后超限
     */
    private Boolean backOverrun;
 
    /**
     * 左超限
     */
    private Boolean leftOverrun;
 
    /**
     * 右超限
     */
    private Boolean rightOverrun;
 
    /**
     * 超高
     */
    private Boolean overHeight;
 
    /**
     * 超重
     */
    private Boolean overWeight;
 
    /**
     * 有托盘
     */
    private Boolean hasTray;
 
    /**
     * 有小车
     */
    private Boolean hasCar;
 
    /**
     * 设备故障
     */
    private Boolean deviceError;
 
    /**
     * 任务地址
     */
    private Short taskAddress;
 
    /**
     * 目的地址
     */
    private Short distAddress;
 
    /**
     * 已完成的任务号
     */
    private Short completeTaskNo;
 
    /**
     * 层
     */
    private Short lev;
 
    /**
     * 作业标记
     */
    private Boolean pakMk = true;
 
    /**
     * 任务命令
     */
    private LiftAssignCommand assignCommand;
 
    /**
     * 设置提升机状态
     */
    public void setProtocolStatus(Integer status) {
        this.protocolStatus = status;
        this.protocolStatusType = LiftProtocolStatusType.get(status);
    }
 
    /**
     * 设置提升机状态
     */
    public void setProtocolStatus(LiftProtocolStatusType status) {
        this.protocolStatus = status.id;
        this.protocolStatusType = status;
    }
 
    // 是否处于空闲待命状态
    public Boolean isIdle(Short taskNo) {
        if(this.taskNo == null
                || this.busy == null
                || this.model == null
                || this.deviceError == null
                || this.pakMk == null
        ){
            return false;
        }
 
        boolean res = (this.taskNo == 0 || this.taskNo.intValue() == taskNo.intValue())
                && !this.busy
                && this.model
                && this.pakMk.equals(true)
                && !this.deviceError
                ;
        return res;
    }
 
    // 是否处于空闲待命状态
    public Boolean isIdle() {
        if(this.taskNo == null
                || this.busy == null
                || this.model == null
                || this.deviceError == null
                || this.pakMk == null
        ){
            return false;
        }
 
        boolean res = this.taskNo == 0
                && !this.busy
                && this.model
                && this.pakMk.equals(true)
                && !this.deviceError
                ;
        return res;
    }
 
    // 是否处于空闲待命状态,不判断任务号
    public Boolean isIdleNoTask() {
        if(this.taskNo == null
                || this.busy == null
                || this.model == null
                || this.deviceError == null
                || this.pakMk == null
        ){
            return false;
        }
 
        boolean res = !this.busy
                && this.model
                && this.pakMk.equals(true)
                && !this.deviceError
                ;
        return res;
    }
 
 
}