Implementing private messages in lobby chat, ticket #12. Some cosmetic improvements are still missing.

This commit is contained in:
lotodore
2011-02-11 23:02:29 +00:00
parent 02518c67b2
commit c4b8e567ed
25 changed files with 220 additions and 27 deletions
+6 -1
View File
@@ -669,7 +669,8 @@ ChatMessage ::= [APPLICATION 130] SEQUENCE {
chatTypeLobby [0] ChatTypeLobby,
chatTypeGame [1] ChatTypeGame,
chatTypeBot [2] ChatTypeBot,
chatTypeBroadcast [3] ChatTypeBroadcast
chatTypeBroadcast [3] ChatTypeBroadcast,
chatTypePrivate [4] ChatTypePrivate
},
chatText UTF8String (SIZE(1..128))
}
@@ -689,6 +690,10 @@ ChatTypeBroadcast ::= SEQUENCE {
ChatTypeBot ::= SEQUENCE {
}
ChatTypePrivate ::= SEQUENCE {
playerId NonZeroId
}
DialogMessage ::= [APPLICATION 131] SEQUENCE {
notificationText UTF8String (SIZE(1..128))
}