#
Junjie
2024-04-17 c036b0582e39b53516d88f26df587b5a61c4b2f2
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
package com.zy.asrs.wcs.core.kernel;
 
import com.zy.asrs.wcs.core.domain.dto.MotionDto;
import com.zy.asrs.wcs.core.model.enums.DeviceCtgType;
import com.zy.asrs.wcs.core.model.enums.MotionCtgType;
import com.zy.asrs.wcs.core.entity.Motion;
import com.zy.asrs.wcs.core.service.MotionService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * Created by vincent on 2023/10/9
 */
@Service(value = "kernelService")
public class KernelService {
 
    @Autowired
    private MotionService motionService;
 
 
    // agv -----------------------------------------------------------------------------
    @Deprecated
    public List<Motion> agvTransport() {
        List<Motion> motionList = new ArrayList<>();
 
        // 1.AGV搬运货物
        motionList.add(Motion.build(motion -> {
            motion.setDeviceCtg(DeviceCtgType.AGV.val());
            motion.setMotionCtg(MotionCtgType.AGV_TRANSPORT.val());
        }));
 
        return motionList;
    }
 
    // lift -----------------------------------------------------------------------------
 
    /**
     * 提升机移动
     */
    public List<Motion> liftMove(MotionDto origin, MotionDto target) {
        List<Motion> motionList = new ArrayList<>();
 
        motionList.add(Motion.build(motion -> {
            motion.setDeviceCtg(DeviceCtgType.LIFT.val());
            motion.setDevice(String.valueOf(target.getLiftNo()));
 
            motion.setMotionCtg(MotionCtgType.LIFT_MOVE.val());
 
            if (null != origin) {
                motion.setOrigin(String.valueOf(origin.getLev()));
            }
            motion.setTarget(String.valueOf(target.getLev()));
        }));
 
//        if (target.getUpdateLiftNo() != null && target.getWrkNo() != null) {
//            if (target.getUpdateLiftNo()) {
//
//            }
//        }
 
        return motionList;
    }
 
    /**
     * 提升机载货移动
     */
    public List<Motion> liftMoveGoods(MotionDto origin, MotionDto target) {
        List<Motion> motionList = new ArrayList<>();
 
        motionList.add(Motion.build(motion -> {
            motion.setDeviceCtg(DeviceCtgType.LIFT.val());
            motion.setDevice(String.valueOf(target.getLiftNo()));
 
            motion.setMotionCtg(MotionCtgType.LIFT_WITH_GOODS.val());
 
            if (null != origin) {
                motion.setOrigin(String.valueOf(origin.getLev()));
            }
            motion.setTarget(String.valueOf(target.getLev()));
        }));
 
        return motionList;
    }
 
    /**
     * 提升机搬运穿梭车
     */
    public List<Motion> liftMoveShuttle(MotionDto origin, MotionDto target) {
        List<Motion> motionList = new ArrayList<>();
 
        motionList.add(Motion.build(motion -> {
            motion.setDeviceCtg(DeviceCtgType.LIFT.val());
            motion.setDevice(String.valueOf(target.getLiftNo()));
 
            motion.setMotionCtg(MotionCtgType.LIFT_WITH_SHUTTLE.val());
 
            if (null != origin) {
                motion.setOrigin(String.valueOf(origin.getLev()));
            }
            motion.setTarget(String.valueOf(target.getLev()));
        }));
 
        return motionList;
    }
 
    /**
     * 提升机载穿梭车与货移动
     */
    public List<Motion> liftMoveGoodsAndShuttle(MotionDto origin, MotionDto target) {
        List<Motion> motionList = new ArrayList<>();
 
        motionList.add(Motion.build(motion -> {
            motion.setDeviceCtg(DeviceCtgType.LIFT.val());
            motion.setDevice(String.valueOf(target.getLiftNo()));
 
            motion.setMotionCtg(MotionCtgType.LIFT_WITH_GOODS_AND_SHUTTLE.val());
 
            if (null != origin) {
                motion.setOrigin(String.valueOf(origin.getLev()));
            }
            motion.setTarget(String.valueOf(target.getLev()));
        }));
 
        return motionList;
    }
 
    /**
     * 提升机载穿梭车与货移动
     */
    public List<Motion> liftTransportGoodsToConveyor(MotionDto origin, MotionDto target) {
        List<Motion> motionList = new ArrayList<>();
 
        motionList.add(Motion.build(motion -> {
            motion.setDeviceCtg(DeviceCtgType.LIFT.val());
            motion.setDevice(String.valueOf(origin.getLiftNo()));
 
            motion.setMotionCtg(MotionCtgType.LIFT_TRANSPORT_TO_CONVEYOR.val());
 
            motion.setOrigin(String.valueOf(origin.getLev()));
            motion.setDockNo(String.valueOf(target.getDevpNo()));
            motion.setTarget(String.valueOf(target.getStaNo()));
 
        }));
 
        return motionList;
    }
 
 
    // shuttle -----------------------------------------------------------------------------
 
    /**
     * 穿梭车空载移动
     */
    public List<Motion> shuttleMove(MotionDto origin, MotionDto target, MotionCtgType motionCtgType) {
        List<Motion> motionList = new ArrayList<>();
 
        motionList.add(Motion.build(motion -> {
            motion.setDeviceCtg(DeviceCtgType.SHUTTLE.val());
            motion.setDevice(String.valueOf(target.getShuttleNo()));
 
            motion.setMotionCtg(motionCtgType.val());
 
            motion.setOrigin(origin.getLocNo());
            motion.setTarget(target.getLocNo());
 
            switch (motionCtgType) {
                case SHUTTLE_MOVE_FROM_LIFT://穿梭车移出提升机
                    motion.setTemp(String.valueOf(origin.getLiftNo()));//保存提升机号
                    break;
                case SHUTTLE_MOVE_TO_LIFT://穿梭车移动到提升机
                    motion.setTemp(String.valueOf(target.getLiftNo()));//保存提升机号
                    break;
                case SHUTTLE_MOVE_FROM_CONVEYOR:
                    motion.setDockNo(String.valueOf(origin.getStaNo()));
                    break;
                case SHUTTLE_MOVE_TO_CONVEYOR:
                    motion.setDockNo(String.valueOf(target.getStaNo()));
                    break;
                case SHUTTLE_MOVE_FROM_LIFT_TO_CONVEYOR://穿梭车移出提升机去输送线
                    motion.setTemp(String.valueOf(origin.getLiftNo()));//保存提升机号
                    motion.setDockNo(String.valueOf(target.getStaNo()));
                    break;
                default:
                    break;
            }
 
        }));
 
        return motionList;
    }
 
    /**
     * 穿梭车载货移动
     */
    public List<Motion> shuttleTransport(MotionDto origin, MotionDto target, MotionCtgType motionCtgType) {
        List<Motion> motionList = new ArrayList<>();
 
        motionList.add(Motion.build(motion -> {
            motion.setDeviceCtg(DeviceCtgType.SHUTTLE.val());
            motion.setDevice(String.valueOf(target.getShuttleNo()));
 
            motion.setMotionCtg(motionCtgType.val());
 
            switch (motionCtgType) {
                case SHUTTLE_TRANSPORT_FROM_LIFT:
                    motion.setTemp(String.valueOf(origin.getLiftNo()));//保存提升机号
                    break;
                case SHUTTLE_TRANSPORT_TO_LIFT:
                    motion.setTemp(String.valueOf(target.getLiftNo()));//保存提升机号
                    break;
                case SHUTTLE_TRANSPORT_FROM_CONVEYOR:
                    motion.setDockNo(String.valueOf(origin.getStaNo()));
                    break;
                case SHUTTLE_TRANSPORT_TO_CONVEYOR:
                    motion.setDockNo(String.valueOf(target.getStaNo()));
                    break;
                default:
                    break;
            }
 
            motion.setOrigin(origin.getLocNo());
            motion.setTarget(target.getLocNo());
        }));
 
        return motionList;
    }
 
    public List<Motion> shuttleCharge(MotionDto origin, MotionDto target) {
        List<Motion> motionList = new ArrayList<>();
 
        motionList.add(Motion.build(motion -> {
            motion.setDeviceCtg(DeviceCtgType.SHUTTLE.val());
            motion.setDevice(String.valueOf(target.getShuttleNo()));
 
            motion.setMotionCtg(MotionCtgType.SHUTTLE_CHARGE_ON.val());
 
        }));
 
        return motionList;
    }
 
    // conveyor -----------------------------------------------------------------------------
 
    /**
     * 输送线入库
     */
    public List<Motion> conveyorInbound(MotionDto origin, MotionDto target, MotionCtgType motionCtgType) {
        List<Motion> motionList = new ArrayList<>();
 
        motionList.add(Motion.build(motion -> {
            motion.setDeviceCtg(DeviceCtgType.CONVEYOR.val());
            motion.setDevice(String.valueOf(origin.getDevpNo()));
 
            motion.setMotionCtg(motionCtgType.val());
 
            switch (motionCtgType) {
                case CONVEYOR_INBOUND:
                    motion.setTarget(String.valueOf(target.getStaNo()));
                    break;
                case CONVEYOR_INBOUND_TO_LIFT:
                    motion.setDockNo(String.valueOf(target.getLiftNo()));
                    motion.setTarget(String.valueOf(target.getLev()));
                    break;
                default:
                    break;
            }
 
            motion.setOrigin(String.valueOf(origin.getStaNo()));
 
        }));
 
        return motionList;
    }
 
    /**
     * 输送线出库
     */
    public List<Motion> conveyorOutbound(MotionDto origin, MotionDto target, MotionCtgType motionCtgType) {
        List<Motion> motionList = new ArrayList<>();
 
        motionList.add(Motion.build(motion -> {
            motion.setDeviceCtg(DeviceCtgType.CONVEYOR.val());
            motion.setDevice(String.valueOf(origin.getDevpNo()));
 
            motion.setMotionCtg(motionCtgType.val());
 
            switch (motionCtgType) {
                case CONVEYOR_OUTBOUND:
                    motion.setOrigin(String.valueOf(origin.getStaNo()));
                    break;
                case CONVEYOR_OUTBOUND_FROM_LIFT:
                    motion.setDockNo(String.valueOf(origin.getLiftNo()));
                    break;
                default:
                    break;
            }
 
            motion.setTarget(String.valueOf(target.getStaNo()));
 
        }));
 
        return motionList;
    }
 
}