| | |
| | | ('PKScore', ctypes.c_ulong),
|
| | | ('DanLV', ctypes.c_ubyte),
|
| | | ('Time', ctypes.c_ulong),
|
| | | ('Face', ctypes.c_ulong),
|
| | | ('FacePic', ctypes.c_ulong),
|
| | | ('ADOResult', ctypes.c_ulong),
|
| | | ]
|
| | |
|
| | |
| | | self.PKScore, pos = CommFunc.ReadDWORD(buf, pos)
|
| | | self.DanLV, pos = CommFunc.ReadBYTE(buf, pos)
|
| | | self.Time, pos = CommFunc.ReadDWORD(buf, pos)
|
| | | self.Face, pos = CommFunc.ReadDWORD(buf, pos)
|
| | | self.FacePic, pos = CommFunc.ReadDWORD(buf, pos)
|
| | | return self.getLength()
|
| | |
|
| | |
|
| | |
| | | PKScore = %s,
|
| | | DanLV = %s,
|
| | | Time = %s,
|
| | | Face = %s,
|
| | | FacePic = %s,
|
| | | ADOResult = %s,
|
| | | '''%(
|
| | | self.ZoneID,
|
| | |
| | | self.PKScore,
|
| | | self.DanLV,
|
| | | self.Time,
|
| | | self.Face,
|
| | | self.FacePic,
|
| | | self.ADOResult,
|
| | | )
|
| | | return output
|