sharp-chat/SharpChat.SockChat/PacketsS2C/ChannelUpdateS2CPacket.cs

31 lines
1.1 KiB
C#
Raw Normal View History

namespace SharpChat.SockChat.PacketsS2C {
public class ChannelUpdateS2CPacket : ISockChatS2CPacket {
private readonly string ChannelNamePrevious;
private readonly string ChannelNameNew;
private readonly bool ChannelHasPassword;
private readonly bool ChannelIsTemporary;
2022-08-30 15:00:58 +00:00
public ChannelUpdateS2CPacket(
string channelNamePrevious,
string channelNameNew,
bool channelHasPassword,
bool channelIsTemporary
) {
ChannelNamePrevious = channelNamePrevious;
ChannelNameNew = channelNameNew;
ChannelHasPassword = channelHasPassword;
ChannelIsTemporary = channelIsTemporary;
2022-08-30 15:00:58 +00:00
}
public string Pack() {
2024-05-10 17:28:52 +00:00
return string.Format(
"4\t1\t{0}\t{1}\t{2}\t{3}",
2024-05-19 21:02:17 +00:00
SockChatUtility.SanitiseChannelName(ChannelNamePrevious),
SockChatUtility.SanitiseChannelName(ChannelNameNew),
ChannelHasPassword ? 1 : 0,
ChannelIsTemporary ? 1 : 0
2024-05-10 17:28:52 +00:00
);
2022-08-30 15:00:58 +00:00
}
}
}