Browse Source

ClientChatMsg to encode/decode text correctly

related to #51 and #13
pull/55/head
Rossen Georgiev 9 years ago
parent
commit
39627fe883
  1. 20
      steam/core/msg.py

20
steam/core/msg.py

@ -422,32 +422,40 @@ class ClientChatMsg:
steamIdChatter = 0
steamIdChatRoom = 0
ChatMsgType = 0
ChatMsg = ""
text = ""
def __init__(self, data=None):
if data:
self.load(data)
def serialize(self):
return struct.pack("QQI{}s".format(len(self.ChatMsg)),
rbytes = struct.pack("<QQI",
self.steamIdChatter,
self.steamIdChatRoom,
self.ChatMsgType,
self.ChatMsg
)
# utf-8 encode only when unicode in py2 and str in py3
rbytes += (self.text.encode('utf-8')
if (not isinstance(self.text, str) and bytes is str)
or isinstance(self.text, str)
else self.text
) + b'\x00'
return rbytes
def load(self, data):
(self.steamIdChatter,
self.steamIdChatRoom,
self.ChatMsgType,
self.ChatMsg
) = struct.unpack_from("<QQI{}s".format(len(data) - struct.calcsize("QQI")), data)
) = struct.unpack_from("<QQI", data)
self.text = data[struct.calcsize("<QQI"):-1].decode('utf-8')
def __str__(self):
return '\n'.join(["steamIdChatter: %d" % self.steamIdChatter,
"steamIdChatRoom: %d" % self.steamIdChatRoom,
"ChatMsgType: %d" % self.ChatMsgType,
"ChatMsg: %s" % self.ChatMsg,
"text: %s" % repr(self.text),
])
class ClientJoinChat:

Loading…
Cancel
Save