ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/PyMongoDB/Collections/DataServerPlayerData.py
@@ -25888,6 +25888,7 @@
        ('FamilyID', ctypes.c_ulong),
        ('FamilyName', ctypes.c_char * 33),
        ('FamilyEmblemID', ctypes.c_ushort),
        ('FamilyEmblemWord', ctypes.c_char * 3),
        ('TitleID', ctypes.c_ulong),
        ('FightPower', ctypes.c_ulong),
        ('FightPowerEx', ctypes.c_ulong),
@@ -25915,6 +25916,7 @@
        self.FamilyID = 0
        self.FamilyName = ''
        self.FamilyEmblemID = 0
        self.FamilyEmblemWord = ''
        self.TitleID = 0
        self.FightPower = 0
        self.FightPowerEx = 0
@@ -25944,6 +25946,7 @@
        self.FamilyID, pos = CommFunc.ReadDWORD(buf, pos)
        self.FamilyName, pos = CommFunc.ReadString(buf, pos, 33)
        self.FamilyEmblemID, pos = CommFunc.ReadWORD(buf, pos)
        self.FamilyEmblemWord, pos = CommFunc.ReadString(buf, pos, 3)
        self.TitleID, pos = CommFunc.ReadDWORD(buf, pos)
        self.FightPower, pos = CommFunc.ReadDWORD(buf, pos)
        self.FightPowerEx, pos = CommFunc.ReadDWORD(buf, pos)
@@ -25968,6 +25971,7 @@
        buf = CommFunc.WriteDWORD(buf, self.FamilyID)
        buf = CommFunc.WriteString(buf, sizeof(ctypes.c_char) * 33, self.FamilyName)
        buf = CommFunc.WriteWORD(buf, self.FamilyEmblemID)
        buf = CommFunc.WriteString(buf, sizeof(ctypes.c_char) * 3, self.FamilyEmblemWord)
        buf = CommFunc.WriteDWORD(buf, self.TitleID)
        buf = CommFunc.WriteDWORD(buf, self.FightPower)
        buf = CommFunc.WriteDWORD(buf, self.FightPowerEx)
@@ -25991,6 +25995,7 @@
        length += sizeof(ctypes.c_ulong)
        length += sizeof(ctypes.c_char) * 33
        length += sizeof(ctypes.c_ushort)
        length += sizeof(ctypes.c_char) * 3
        length += sizeof(ctypes.c_ulong)
        length += sizeof(ctypes.c_ulong)
        length += sizeof(ctypes.c_ulong)
@@ -26015,6 +26020,7 @@
        rec[u'FamilyID'] = self.FamilyID
        rec[u'FamilyName'] = fix_incomingText(self.FamilyName)
        rec[u'FamilyEmblemID'] = self.FamilyEmblemID
        rec[u'FamilyEmblemWord'] = fix_incomingText(self.FamilyEmblemWord)
        rec[u'TitleID'] = self.TitleID
        rec[u'FightPower'] = self.FightPower
        rec[u'FightPowerEx'] = self.FightPowerEx
@@ -26038,6 +26044,7 @@
        self.FamilyID = rec.get(u'FamilyID', 0)
        self.FamilyName = fix_outgoingText(rec.get(u'FamilyName', u''))
        self.FamilyEmblemID = rec.get(u'FamilyEmblemID', 0)
        self.FamilyEmblemWord = fix_outgoingText(rec.get(u'FamilyEmblemWord', u''))
        self.TitleID = rec.get(u'TitleID', 0)
        self.FightPower = rec.get(u'FightPower', 0)
        self.FightPowerEx = rec.get(u'FightPowerEx', 0)
@@ -26160,6 +26167,7 @@
            FamilyID = %s,
            FamilyName = %s,
            FamilyEmblemID = %s,
            FamilyEmblemWord = %s,
            TitleID = %s,
            FightPower = %s,
            FightPowerEx = %s,
@@ -26181,6 +26189,7 @@
                self.FamilyID,
                self.FamilyName,
                self.FamilyEmblemID,
                self.FamilyEmblemWord,
                self.TitleID,
                self.FightPower,
                self.FightPowerEx,
@@ -26193,7 +26202,7 @@
        return output
    def dumpString(self):
        output = '''%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s'''%(
        output = '''%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s'''%(
                self.PlayerID,
                self.AccID,
                self.PlayerName,
@@ -26206,6 +26215,7 @@
                self.FamilyID,
                self.FamilyName,
                self.FamilyEmblemID,
                self.FamilyEmblemWord,
                self.TitleID,
                self.FightPower,
                self.FightPowerEx,
@@ -26234,6 +26244,12 @@
            self.FamilyName = Str
        else:
            self.FamilyName = Str[:33]
    def SetFamilyEmblemWord(self,Str):
        if len(Str)<=3:
            self.FamilyEmblemWord = Str
        else:
            self.FamilyEmblemWord = Str[:3]
            
# 排行榜表 #tagDBBillboard
@@ -27247,6 +27263,7 @@
        ('FightPower', ctypes.c_ulong),
        ('FightPowerEx', ctypes.c_ulong),
        ('EmblemID', ctypes.c_ushort),
        ('EmblemWord', ctypes.c_char * 3),
        ('ADOResult', ctypes.c_ulong),
    ]
@@ -27269,6 +27286,7 @@
        self.FightPower = 0
        self.FightPowerEx = 0
        self.EmblemID = 0
        self.EmblemWord = ''
    def readData(self, buf, pos = 0, length = 0):
        if not pos <= length:
@@ -27294,6 +27312,7 @@
        self.FightPower, pos = CommFunc.ReadDWORD(buf, pos)
        self.FightPowerEx, pos = CommFunc.ReadDWORD(buf, pos)
        self.EmblemID, pos = CommFunc.ReadWORD(buf, pos)
        self.EmblemWord, pos = CommFunc.ReadString(buf, pos, 3)
        return self.getLength()
    def getBuffer(self):
@@ -27312,6 +27331,7 @@
        buf = CommFunc.WriteDWORD(buf, self.FightPower)
        buf = CommFunc.WriteDWORD(buf, self.FightPowerEx)
        buf = CommFunc.WriteWORD(buf, self.EmblemID)
        buf = CommFunc.WriteString(buf, sizeof(ctypes.c_char) * 3, self.EmblemWord)
        return buf
    def getLength(self):
@@ -27330,6 +27350,7 @@
        length += sizeof(ctypes.c_ulong)
        length += sizeof(ctypes.c_ulong)
        length += sizeof(ctypes.c_ushort)
        length += sizeof(ctypes.c_char) * 3
        return length
    def getRecord(self):
@@ -27349,6 +27370,7 @@
        rec[u'FightPower'] = self.FightPower
        rec[u'FightPowerEx'] = self.FightPowerEx
        rec[u'EmblemID'] = self.EmblemID
        rec[u'EmblemWord'] = fix_incomingText(self.EmblemWord)
        return rec
    def readRecord(self, rec):
@@ -27367,6 +27389,7 @@
        self.FightPower = rec.get(u'FightPower', 0)
        self.FightPowerEx = rec.get(u'FightPowerEx', 0)
        self.EmblemID = rec.get(u'EmblemID', 0)
        self.EmblemWord = fix_outgoingText(rec.get(u'EmblemWord', u''))
    def adoLoad(self, collection):
        '''使用KEY查找并读取'''
@@ -27532,6 +27555,7 @@
            FightPower = %s,
            FightPowerEx = %s,
            EmblemID = %s,
            EmblemWord = %s,
            ADOResult = %s,
            '''%(
                self.ID,
@@ -27548,12 +27572,13 @@
                self.FightPower,
                self.FightPowerEx,
                self.EmblemID,
                self.EmblemWord,
                self.ADOResult,
            )
        return output
    def dumpString(self):
        output = '''%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s'''%(
        output = '''%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s'''%(
                self.ID,
                self.Name,
                self.LeaderID,
@@ -27568,6 +27593,7 @@
                self.FightPower,
                self.FightPowerEx,
                self.EmblemID,
                self.EmblemWord,
            )
        return output
@@ -27577,6 +27603,12 @@
            self.Name = Str
        else:
            self.Name = Str[:33]
    def SetEmblemWord(self,Str):
        if len(Str)<=3:
            self.EmblemWord = Str
        else:
            self.EmblemWord = Str[:3]
            
# 家族成员表 #tagDBFamilyMem
@@ -27598,7 +27630,9 @@
        ('OffTime', ctypes.c_ulong),
        ('FmLV', ctypes.c_ubyte),
        ('ContribTotal', ctypes.c_ulong),
        ('ContribWeek', ctypes.c_ulong),
        ('ContribDay', ctypes.c_ulong),
        ('DonateCntTotal', ctypes.c_ulong),
        ('DonateCntDay', ctypes.c_ubyte),
        ('ADOResult', ctypes.c_ulong),
    ]
@@ -27634,7 +27668,9 @@
        self.OffTime, pos = CommFunc.ReadDWORD(buf, pos)
        self.FmLV, pos = CommFunc.ReadBYTE(buf, pos)
        self.ContribTotal, pos = CommFunc.ReadDWORD(buf, pos)
        self.ContribWeek, pos = CommFunc.ReadDWORD(buf, pos)
        self.ContribDay, pos = CommFunc.ReadDWORD(buf, pos)
        self.DonateCntTotal, pos = CommFunc.ReadDWORD(buf, pos)
        self.DonateCntDay, pos = CommFunc.ReadBYTE(buf, pos)
        return self.getLength()
@@ -27664,7 +27700,9 @@
        rec[u'OffTime'] = self.OffTime
        rec[u'FmLV'] = self.FmLV
        rec[u'ContribTotal'] = self.ContribTotal
        rec[u'ContribWeek'] = self.ContribWeek
        rec[u'ContribDay'] = self.ContribDay
        rec[u'DonateCntTotal'] = self.DonateCntTotal
        rec[u'DonateCntDay'] = self.DonateCntDay
        return rec
    def readRecord(self, rec):
@@ -27684,7 +27722,9 @@
        self.OffTime = rec.get(u'OffTime', 0)
        self.FmLV = rec.get(u'FmLV', 0)
        self.ContribTotal = rec.get(u'ContribTotal', 0)
        self.ContribWeek = rec.get(u'ContribWeek', 0)
        self.ContribDay = rec.get(u'ContribDay', 0)
        self.DonateCntTotal = rec.get(u'DonateCntTotal', 0)
        self.DonateCntDay = rec.get(u'DonateCntDay', 0)
    def adoLoad(self, collection):
        '''使用KEY查找并读取'''
@@ -27851,7 +27891,9 @@
            OffTime = %s,
            FmLV = %s,
            ContribTotal = %s,
            ContribWeek = %s,
            ContribDay = %s,
            DonateCntTotal = %s,
            DonateCntDay = %s,
            ADOResult = %s,
            '''%(
                self.PlayerID,
@@ -27869,13 +27911,15 @@
                self.OffTime,
                self.FmLV,
                self.ContribTotal,
                self.ContribWeek,
                self.ContribDay,
                self.DonateCntTotal,
                self.DonateCntDay,
                self.ADOResult,
            )
        return output
    def dumpString(self):
        output = '''%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s'''%(
        output = '''%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s\t%1s'''%(
                self.PlayerID,
                self.FamilyID,
                self.JoinTime,
@@ -27891,7 +27935,9 @@
                self.OffTime,
                self.FmLV,
                self.ContribTotal,
                self.ContribWeek,
                self.ContribDay,
                self.DonateCntTotal,
                self.DonateCntDay,
            )
        return output