| | |
| | | return motionList; |
| | | } |
| | | |
| | | /** |
| | | * 提升机-小车已到位 |
| | | */ |
| | | public List<Motion> liftShuttleArrival(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_SHUTTLE_ARRIVAL.val()); |
| | | })); |
| | | |
| | | return motionList; |
| | | } |
| | | |
| | | /** |
| | | * 提升机-小车已驶离 |
| | | */ |
| | | public List<Motion> liftShuttleLeave(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_SHUTTLE_LEAVE.val()); |
| | | })); |
| | | |
| | | return motionList; |
| | | } |
| | | |
| | | // shuttle ----------------------------------------------------------------------------- |
| | | |
| | | /** |