|
@@ -111,11 +111,14 @@ enum Message_type {
|
|
|
ePickup_command_request_msg = 67,
|
|
|
ePickup_command_response_msg = 68,
|
|
|
eStoring_process_statu_msg = 144,
|
|
|
- ePicking_process_statu_msg = 145
|
|
|
+ ePicking_process_statu_msg = 145,
|
|
|
+ eCentral_controller_statu_msg = 160,
|
|
|
+ eEntrance_manual_operation_msg = 176,
|
|
|
+ eProcess_manual_operation_msg = 177
|
|
|
};
|
|
|
bool Message_type_IsValid(int value);
|
|
|
const Message_type Message_type_MIN = eBase_msg;
|
|
|
-const Message_type Message_type_MAX = ePicking_process_statu_msg;
|
|
|
+const Message_type Message_type_MAX = eProcess_manual_operation_msg;
|
|
|
const int Message_type_ARRAYSIZE = Message_type_MAX + 1;
|
|
|
|
|
|
const ::google::protobuf::EnumDescriptor* Message_type_descriptor();
|
|
@@ -151,24 +154,24 @@ inline bool Communicator_Parse(
|
|
|
return ::google::protobuf::internal::ParseNamedEnum<Communicator>(
|
|
|
Communicator_descriptor(), name, value);
|
|
|
}
|
|
|
-enum Event {
|
|
|
+enum Process_type {
|
|
|
eStoring = 1,
|
|
|
ePicking = 2
|
|
|
};
|
|
|
-bool Event_IsValid(int value);
|
|
|
-const Event Event_MIN = eStoring;
|
|
|
-const Event Event_MAX = ePicking;
|
|
|
-const int Event_ARRAYSIZE = Event_MAX + 1;
|
|
|
+bool Process_type_IsValid(int value);
|
|
|
+const Process_type Process_type_MIN = eStoring;
|
|
|
+const Process_type Process_type_MAX = ePicking;
|
|
|
+const int Process_type_ARRAYSIZE = Process_type_MAX + 1;
|
|
|
|
|
|
-const ::google::protobuf::EnumDescriptor* Event_descriptor();
|
|
|
-inline const ::std::string& Event_Name(Event value) {
|
|
|
+const ::google::protobuf::EnumDescriptor* Process_type_descriptor();
|
|
|
+inline const ::std::string& Process_type_Name(Process_type value) {
|
|
|
return ::google::protobuf::internal::NameOfEnum(
|
|
|
- Event_descriptor(), value);
|
|
|
+ Process_type_descriptor(), value);
|
|
|
}
|
|
|
-inline bool Event_Parse(
|
|
|
- const ::std::string& name, Event* value) {
|
|
|
- return ::google::protobuf::internal::ParseNamedEnum<Event>(
|
|
|
- Event_descriptor(), name, value);
|
|
|
+inline bool Process_type_Parse(
|
|
|
+ const ::std::string& name, Process_type* value) {
|
|
|
+ return ::google::protobuf::internal::ParseNamedEnum<Process_type>(
|
|
|
+ Process_type_descriptor(), name, value);
|
|
|
}
|
|
|
enum Error_level {
|
|
|
NORMAL = 0,
|
|
@@ -232,6 +235,61 @@ inline bool Direction_Parse(
|
|
|
return ::google::protobuf::internal::ParseNamedEnum<Direction>(
|
|
|
Direction_descriptor(), name, value);
|
|
|
}
|
|
|
+enum Step_type {
|
|
|
+ eAlloc_step = 0,
|
|
|
+ eMeasure_step = 1,
|
|
|
+ eCompare_step = 2,
|
|
|
+ eDispatch_step = 3,
|
|
|
+ eConfirm_step = 4,
|
|
|
+ eSearch_step = 5,
|
|
|
+ eWait_step = 6,
|
|
|
+ eRelease_step = 7,
|
|
|
+ eComplete = 8,
|
|
|
+ eBackConfirm_step = 9,
|
|
|
+ eBack_compare_step = 10,
|
|
|
+ eBackMeasure_step = 11,
|
|
|
+ eBackAlloc_step = 12,
|
|
|
+ eBackWait_step = 13,
|
|
|
+ eBackDispatch_step = 14,
|
|
|
+ eBackSearch_step = 15,
|
|
|
+ eBackComplete = 16
|
|
|
+};
|
|
|
+bool Step_type_IsValid(int value);
|
|
|
+const Step_type Step_type_MIN = eAlloc_step;
|
|
|
+const Step_type Step_type_MAX = eBackComplete;
|
|
|
+const int Step_type_ARRAYSIZE = Step_type_MAX + 1;
|
|
|
+
|
|
|
+const ::google::protobuf::EnumDescriptor* Step_type_descriptor();
|
|
|
+inline const ::std::string& Step_type_Name(Step_type value) {
|
|
|
+ return ::google::protobuf::internal::NameOfEnum(
|
|
|
+ Step_type_descriptor(), value);
|
|
|
+}
|
|
|
+inline bool Step_type_Parse(
|
|
|
+ const ::std::string& name, Step_type* value) {
|
|
|
+ return ::google::protobuf::internal::ParseNamedEnum<Step_type>(
|
|
|
+ Step_type_descriptor(), name, value);
|
|
|
+}
|
|
|
+enum Step_statu {
|
|
|
+ eWaiting = 0,
|
|
|
+ eWorking = 1,
|
|
|
+ eError = 2,
|
|
|
+ eFinished = 3
|
|
|
+};
|
|
|
+bool Step_statu_IsValid(int value);
|
|
|
+const Step_statu Step_statu_MIN = eWaiting;
|
|
|
+const Step_statu Step_statu_MAX = eFinished;
|
|
|
+const int Step_statu_ARRAYSIZE = Step_statu_MAX + 1;
|
|
|
+
|
|
|
+const ::google::protobuf::EnumDescriptor* Step_statu_descriptor();
|
|
|
+inline const ::std::string& Step_statu_Name(Step_statu value) {
|
|
|
+ return ::google::protobuf::internal::NameOfEnum(
|
|
|
+ Step_statu_descriptor(), value);
|
|
|
+}
|
|
|
+inline bool Step_statu_Parse(
|
|
|
+ const ::std::string& name, Step_statu* value) {
|
|
|
+ return ::google::protobuf::internal::ParseNamedEnum<Step_statu>(
|
|
|
+ Step_statu_descriptor(), name, value);
|
|
|
+}
|
|
|
// ===================================================================
|
|
|
|
|
|
class Base_info : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Base_info) */ {
|
|
@@ -2243,10 +2301,10 @@ template <>
|
|
|
inline const EnumDescriptor* GetEnumDescriptor< ::message::Communicator>() {
|
|
|
return ::message::Communicator_descriptor();
|
|
|
}
|
|
|
-template <> struct is_proto_enum< ::message::Event> : ::google::protobuf::internal::true_type {};
|
|
|
+template <> struct is_proto_enum< ::message::Process_type> : ::google::protobuf::internal::true_type {};
|
|
|
template <>
|
|
|
-inline const EnumDescriptor* GetEnumDescriptor< ::message::Event>() {
|
|
|
- return ::message::Event_descriptor();
|
|
|
+inline const EnumDescriptor* GetEnumDescriptor< ::message::Process_type>() {
|
|
|
+ return ::message::Process_type_descriptor();
|
|
|
}
|
|
|
template <> struct is_proto_enum< ::message::Error_level> : ::google::protobuf::internal::true_type {};
|
|
|
template <>
|
|
@@ -2263,6 +2321,16 @@ template <>
|
|
|
inline const EnumDescriptor* GetEnumDescriptor< ::message::Direction>() {
|
|
|
return ::message::Direction_descriptor();
|
|
|
}
|
|
|
+template <> struct is_proto_enum< ::message::Step_type> : ::google::protobuf::internal::true_type {};
|
|
|
+template <>
|
|
|
+inline const EnumDescriptor* GetEnumDescriptor< ::message::Step_type>() {
|
|
|
+ return ::message::Step_type_descriptor();
|
|
|
+}
|
|
|
+template <> struct is_proto_enum< ::message::Step_statu> : ::google::protobuf::internal::true_type {};
|
|
|
+template <>
|
|
|
+inline const EnumDescriptor* GetEnumDescriptor< ::message::Step_statu>() {
|
|
|
+ return ::message::Step_statu_descriptor();
|
|
|
+}
|
|
|
|
|
|
} // namespace protobuf
|
|
|
} // namespace google
|