hxp
2019-03-28 b69fe56d5ebb784c4430cb5e86f460efafa1b30a
ServerPython/CoreServerGroup/GameServer/Script/ChPyNetPack.py
@@ -7004,70 +7004,6 @@
#------------------------------------------------------
#A3 21 使用特殊运营物品 #tagCMUseSpecialItem
class  tagCMUseSpecialItem(Structure):
    _pack_ = 1
    _fields_ = [
                  ("Cmd", c_ubyte),
                  ("SubCmd", c_ubyte),
                  ("SpeicalItemType", c_ubyte),    #特殊运营物品类型,0打折卡,1多选礼包
                  ("ItemID", c_int),    #物品ID
                  ("ItemIndex", c_ubyte),    #物品在背包中的索引位置
                  ("Select", c_ubyte),    #选择,只对多选礼包有用
                  ]
    def __init__(self):
        self.Clear()
        self.Cmd = 0xA3
        self.SubCmd = 0x21
        return
    def ReadData(self, stringData, _pos=0, _len=0):
        self.Clear()
        memmove(addressof(self), stringData[_pos:], self.GetLength())
        return _pos + self.GetLength()
    def Clear(self):
        self.Cmd = 0xA3
        self.SubCmd = 0x21
        self.SpeicalItemType = 0
        self.ItemID = 0
        self.ItemIndex = 0
        self.Select = 0
        return
    def GetLength(self):
        return sizeof(tagCMUseSpecialItem)
    def GetBuffer(self):
        return string_at(addressof(self), self.GetLength())
    def OutputString(self):
        DumpString = '''//A3 21 使用特殊运营物品 //tagCMUseSpecialItem:
                                Cmd:%s,
                                SubCmd:%s,
                                SpeicalItemType:%d,
                                ItemID:%d,
                                ItemIndex:%d,
                                Select:%d
                                '''\
                                %(
                                self.Cmd,
                                self.SubCmd,
                                self.SpeicalItemType,
                                self.ItemID,
                                self.ItemIndex,
                                self.Select
                                )
        return DumpString
m_NAtagCMUseSpecialItem=tagCMUseSpecialItem()
ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCMUseSpecialItem.Cmd,m_NAtagCMUseSpecialItem.SubCmd))] = m_NAtagCMUseSpecialItem
#------------------------------------------------------
# A3 2F 宗门试炼兑换 #tagCMTrialExchange
class  tagCMTrialExchange(Structure):
@@ -12676,162 +12612,6 @@
m_NAtagCMDiceTake=tagCMDiceTake()
ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCMDiceTake.Cmd,m_NAtagCMDiceTake.SubCmd))] = m_NAtagCMDiceTake
#------------------------------------------------------
# AB 07 领取节日登陆奖励 #tagCMGetFestivalLoginAward
class  tagCMGetFestivalLoginAward(Structure):
    _pack_ = 1
    _fields_ = [
                  ("Cmd", c_ubyte),
                  ("SubCmd", c_ubyte),
                  ("FestivalType", c_ubyte),    # 节日类型
                  ("DayIndex", c_ubyte),    # 节日天 <从节日活动开始日0天开始>
                  ]
    def __init__(self):
        self.Clear()
        self.Cmd = 0xAB
        self.SubCmd = 0x07
        return
    def ReadData(self, stringData, _pos=0, _len=0):
        self.Clear()
        memmove(addressof(self), stringData[_pos:], self.GetLength())
        return _pos + self.GetLength()
    def Clear(self):
        self.Cmd = 0xAB
        self.SubCmd = 0x07
        self.FestivalType = 0
        self.DayIndex = 0
        return
    def GetLength(self):
        return sizeof(tagCMGetFestivalLoginAward)
    def GetBuffer(self):
        return string_at(addressof(self), self.GetLength())
    def OutputString(self):
        DumpString = '''// AB 07 领取节日登陆奖励 //tagCMGetFestivalLoginAward:
                                Cmd:%s,
                                SubCmd:%s,
                                FestivalType:%d,
                                DayIndex:%d
                                '''\
                                %(
                                self.Cmd,
                                self.SubCmd,
                                self.FestivalType,
                                self.DayIndex
                                )
        return DumpString
m_NAtagCMGetFestivalLoginAward=tagCMGetFestivalLoginAward()
ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCMGetFestivalLoginAward.Cmd,m_NAtagCMGetFestivalLoginAward.SubCmd))] = m_NAtagCMGetFestivalLoginAward
#------------------------------------------------------
# AB 02 领取领地争夺战每日奖励 #tagCMGetManorWarDailyAward
class  tagCMGetManorWarDailyAward(Structure):
    _pack_ = 1
    _fields_ = [
                  ("Cmd", c_ubyte),
                  ("SubCmd", c_ubyte),
                  ("MapID", c_int),    # 领地id
                  ]
    def __init__(self):
        self.Clear()
        self.Cmd = 0xAB
        self.SubCmd = 0x02
        return
    def ReadData(self, stringData, _pos=0, _len=0):
        self.Clear()
        memmove(addressof(self), stringData[_pos:], self.GetLength())
        return _pos + self.GetLength()
    def Clear(self):
        self.Cmd = 0xAB
        self.SubCmd = 0x02
        self.MapID = 0
        return
    def GetLength(self):
        return sizeof(tagCMGetManorWarDailyAward)
    def GetBuffer(self):
        return string_at(addressof(self), self.GetLength())
    def OutputString(self):
        DumpString = '''// AB 02 领取领地争夺战每日奖励 //tagCMGetManorWarDailyAward:
                                Cmd:%s,
                                SubCmd:%s,
                                MapID:%d
                                '''\
                                %(
                                self.Cmd,
                                self.SubCmd,
                                self.MapID
                                )
        return DumpString
m_NAtagCMGetManorWarDailyAward=tagCMGetManorWarDailyAward()
ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCMGetManorWarDailyAward.Cmd,m_NAtagCMGetManorWarDailyAward.SubCmd))] = m_NAtagCMGetManorWarDailyAward
#------------------------------------------------------
# AB 01 领取领地争夺战参与奖 #tagCMGetManorWarJoinAward
class  tagCMGetManorWarJoinAward(Structure):
    _pack_ = 1
    _fields_ = [
                  ("Cmd", c_ubyte),
                  ("SubCmd", c_ubyte),
                  ]
    def __init__(self):
        self.Clear()
        self.Cmd = 0xAB
        self.SubCmd = 0x01
        return
    def ReadData(self, stringData, _pos=0, _len=0):
        self.Clear()
        memmove(addressof(self), stringData[_pos:], self.GetLength())
        return _pos + self.GetLength()
    def Clear(self):
        self.Cmd = 0xAB
        self.SubCmd = 0x01
        return
    def GetLength(self):
        return sizeof(tagCMGetManorWarJoinAward)
    def GetBuffer(self):
        return string_at(addressof(self), self.GetLength())
    def OutputString(self):
        DumpString = '''// AB 01 领取领地争夺战参与奖 //tagCMGetManorWarJoinAward:
                                Cmd:%s,
                                SubCmd:%s
                                '''\
                                %(
                                self.Cmd,
                                self.SubCmd
                                )
        return DumpString
m_NAtagCMGetManorWarJoinAward=tagCMGetManorWarJoinAward()
ChNetPackDict[eval("0x%02x%02x"%(m_NAtagCMGetManorWarJoinAward.Cmd,m_NAtagCMGetManorWarJoinAward.SubCmd))] = m_NAtagCMGetManorWarJoinAward
#------------------------------------------------------