|
@ -88,7 +88,7 @@ public class AgvServiceImpl implements AgvService { |
|
|
@Autowired |
|
|
@Autowired |
|
|
DeviceService deviceService; |
|
|
DeviceService deviceService; |
|
|
@Autowired |
|
|
@Autowired |
|
|
private static AcsPointAngleService acsPointAngleService; |
|
|
AcsPointAngleService acsPointAngleService; |
|
|
|
|
|
|
|
|
private final LogServer logServer; |
|
|
private final LogServer logServer; |
|
|
|
|
|
|
|
@ -231,7 +231,7 @@ public class AgvServiceImpl implements AgvService { |
|
|
* demo:destination("cz14", "JackUnload", "3", "") |
|
|
* demo:destination("cz14", "JackUnload", "3", "") |
|
|
* @return |
|
|
* @return |
|
|
*/ |
|
|
*/ |
|
|
public static JSONObject destination2(String locationName, String operation, String propertiesType, String pro,Instruction dto) { |
|
|
public JSONObject destination2(String locationName, String operation, String propertiesType, String pro,Instruction dto) { |
|
|
//新增业务订单
|
|
|
//新增业务订单
|
|
|
JSONObject destinationOrder = new JSONObject(); |
|
|
JSONObject destinationOrder = new JSONObject(); |
|
|
//目标工作站
|
|
|
//目标工作站
|
|
@ -246,16 +246,13 @@ public class AgvServiceImpl implements AgvService { |
|
|
properties.add(pro2); |
|
|
properties.add(pro2); |
|
|
destinationOrder.put("properties", properties); |
|
|
destinationOrder.put("properties", properties); |
|
|
} else if (propertiesType.equals("2")) {//Spin转动
|
|
|
} else if (propertiesType.equals("2")) {//Spin转动
|
|
|
AcsPointAngleDto acsPointAngleDto = new AcsPointAngleDto(); |
|
|
AcsPointAngleDto acsPointAngleDto = getAcsPointAngleDto(dto); |
|
|
acsPointAngleDto = getAcsPointAngleDto(dto); |
|
|
|
|
|
if (ObjectUtil.isEmpty(acsPointAngleDto)){ |
|
|
if (ObjectUtil.isEmpty(acsPointAngleDto)){ |
|
|
throw new RuntimeException("沒有找到内容,无法下发"); |
|
|
throw new RuntimeException("沒有找到内容,无法下发"); |
|
|
} |
|
|
} |
|
|
BigDecimal next_point_angle = acsPointAngleDto.getNext_point_angle(); |
|
|
|
|
|
JSONArray properties = new JSONArray(); |
|
|
JSONArray properties = new JSONArray(); |
|
|
JSONObject pro1 = new JSONObject(); |
|
|
JSONObject pro1 = new JSONObject(); |
|
|
pro1.put("key", "global_spin_angle");//坐标系类型,global_spin_angle为全局坐标系
|
|
|
pro1.put("key", "global_spin_angle");//坐标系类型,global_spin_angle为全局坐标系
|
|
|
pro1.put("value", next_point_angle);//弧度值,如3.14
|
|
|
|
|
|
properties.add(pro1); |
|
|
properties.add(pro1); |
|
|
JSONObject pro2 = new JSONObject(); |
|
|
JSONObject pro2 = new JSONObject(); |
|
|
pro2.put("key", "spin_direction");//固定值
|
|
|
pro2.put("key", "spin_direction");//固定值
|
|
@ -289,7 +286,7 @@ public class AgvServiceImpl implements AgvService { |
|
|
return destinationOrder; |
|
|
return destinationOrder; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
private static AcsPointAngleDto getAcsPointAngleDto(Instruction dto) { |
|
|
private AcsPointAngleDto getAcsPointAngleDto(Instruction dto) { |
|
|
List<AcsPointAngleDto> list = acsPointAngleService.queryAll(new HashMap()); |
|
|
List<AcsPointAngleDto> list = acsPointAngleService.queryAll(new HashMap()); |
|
|
AcsPointAngleDto acsPointAngleDto = new AcsPointAngleDto(); |
|
|
AcsPointAngleDto acsPointAngleDto = new AcsPointAngleDto(); |
|
|
for (int i = 0; i < list.size(); i++) { |
|
|
for (int i = 0; i < list.size(); i++) { |
|
@ -2231,6 +2228,23 @@ public class AgvServiceImpl implements AgvService { |
|
|
ja.add(jo3); |
|
|
ja.add(jo3); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//放货前下发旋转角度
|
|
|
|
|
|
com.alibaba.fastjson.JSONObject json1 = new com.alibaba.fastjson.JSONObject(); |
|
|
|
|
|
AcsPointAngleDto acsPointAngleDto = getAcsPointAngleDto(inst); |
|
|
|
|
|
if (ObjectUtil.isEmpty(acsPointAngleDto)){ |
|
|
|
|
|
throw new RuntimeException("沒有找到内容,无法下发"); |
|
|
|
|
|
} |
|
|
|
|
|
com.alibaba.fastjson.JSONObject operation_args = new com.alibaba.fastjson.JSONObject(); |
|
|
|
|
|
BigDecimal next_point_angle = acsPointAngleDto.getNext_point_angle(); |
|
|
|
|
|
operation_args.put("move_angle",next_point_angle);//弧度值,如3.14
|
|
|
|
|
|
operation_args.put("skill_name","GoByOdometer"); |
|
|
|
|
|
operation_args.put("speed_w",1.57); |
|
|
|
|
|
operation_args.put("loc_mode",1); |
|
|
|
|
|
json1.put("blockId", IdUtil.simpleUUID()); |
|
|
|
|
|
json1.put("location", inst.getNext_point_code() + "INPUT"); |
|
|
|
|
|
json1.put("operation_args",operation_args); |
|
|
|
|
|
ja.add(json1); |
|
|
|
|
|
|
|
|
com.alibaba.fastjson.JSONObject jo4 = new com.alibaba.fastjson.JSONObject(); |
|
|
com.alibaba.fastjson.JSONObject jo4 = new com.alibaba.fastjson.JSONObject(); |
|
|
jo4.put("blockId", IdUtil.simpleUUID()); |
|
|
jo4.put("blockId", IdUtil.simpleUUID()); |
|
|
jo4.put("location", inst.getNext_point_code()); |
|
|
jo4.put("location", inst.getNext_point_code()); |
|
@ -2257,7 +2271,6 @@ public class AgvServiceImpl implements AgvService { |
|
|
jo5.put("script_args", script_args5); |
|
|
jo5.put("script_args", script_args5); |
|
|
ja.add(jo5); |
|
|
ja.add(jo5); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
return ja; |
|
|
return ja; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|