Go to the documentation of this file.00001 """autogenerated by genpy from tug_ist_diagnosis_msgs/BoardGoal.msg. Do not edit."""
00002 import sys
00003 python3 = True if sys.hexversion > 0x03000000 else False
00004 import genpy
00005 import struct
00006
00007
00008 class BoardGoal(genpy.Message):
00009 _md5sum = "c1154e904a22a615b3a9f4a2317c91c4"
00010 _type = "tug_ist_diagnosis_msgs/BoardGoal"
00011 _has_header = False
00012 _full_text = """# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======
00013 int32 command
00014 char arg1
00015 char arg2
00016
00017 """
00018 __slots__ = ['command','arg1','arg2']
00019 _slot_types = ['int32','char','char']
00020
00021 def __init__(self, *args, **kwds):
00022 """
00023 Constructor. Any message fields that are implicitly/explicitly
00024 set to None will be assigned a default value. The recommend
00025 use is keyword arguments as this is more robust to future message
00026 changes. You cannot mix in-order arguments and keyword arguments.
00027
00028 The available fields are:
00029 command,arg1,arg2
00030
00031 :param args: complete set of field values, in .msg order
00032 :param kwds: use keyword arguments corresponding to message field names
00033 to set specific fields.
00034 """
00035 if args or kwds:
00036 super(BoardGoal, self).__init__(*args, **kwds)
00037
00038 if self.command is None:
00039 self.command = 0
00040 if self.arg1 is None:
00041 self.arg1 = 0
00042 if self.arg2 is None:
00043 self.arg2 = 0
00044 else:
00045 self.command = 0
00046 self.arg1 = 0
00047 self.arg2 = 0
00048
00049 def _get_types(self):
00050 """
00051 internal API method
00052 """
00053 return self._slot_types
00054
00055 def serialize(self, buff):
00056 """
00057 serialize message into buffer
00058 :param buff: buffer, ``StringIO``
00059 """
00060 try:
00061 _x = self
00062 buff.write(_struct_i2B.pack(_x.command, _x.arg1, _x.arg2))
00063 except struct.error as se: self._check_types(se)
00064 except TypeError as te: self._check_types(te)
00065
00066 def deserialize(self, str):
00067 """
00068 unpack serialized message in str into this message instance
00069 :param str: byte array of serialized message, ``str``
00070 """
00071 try:
00072 end = 0
00073 _x = self
00074 start = end
00075 end += 6
00076 (_x.command, _x.arg1, _x.arg2,) = _struct_i2B.unpack(str[start:end])
00077 return self
00078 except struct.error as e:
00079 raise genpy.DeserializationError(e)
00080
00081
00082 def serialize_numpy(self, buff, numpy):
00083 """
00084 serialize message with numpy array types into buffer
00085 :param buff: buffer, ``StringIO``
00086 :param numpy: numpy python module
00087 """
00088 try:
00089 _x = self
00090 buff.write(_struct_i2B.pack(_x.command, _x.arg1, _x.arg2))
00091 except struct.error as se: self._check_types(se)
00092 except TypeError as te: self._check_types(te)
00093
00094 def deserialize_numpy(self, str, numpy):
00095 """
00096 unpack serialized message in str into this message instance using numpy for array types
00097 :param str: byte array of serialized message, ``str``
00098 :param numpy: numpy python module
00099 """
00100 try:
00101 end = 0
00102 _x = self
00103 start = end
00104 end += 6
00105 (_x.command, _x.arg1, _x.arg2,) = _struct_i2B.unpack(str[start:end])
00106 return self
00107 except struct.error as e:
00108 raise genpy.DeserializationError(e)
00109
00110 _struct_I = genpy.struct_I
00111 _struct_i2B = struct.Struct("<i2B")