2022-08-30 15:00:58 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace SharpChat.Packet {
|
|
|
|
|
public class ContextChannelsPacket : ServerPacket {
|
2024-05-10 18:29:48 +00:00
|
|
|
|
public record ListEntry(string Name, bool HasPassword, bool IsTemporary);
|
2022-08-30 15:00:58 +00:00
|
|
|
|
|
2024-05-10 18:29:48 +00:00
|
|
|
|
private readonly ListEntry[] Entries;
|
|
|
|
|
|
|
|
|
|
public ContextChannelsPacket(ListEntry[] entries) {
|
|
|
|
|
Entries = entries ?? throw new ArgumentNullException(nameof(entries));
|
2022-08-30 15:00:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-05-10 15:24:43 +00:00
|
|
|
|
public override string Pack() {
|
2023-02-07 15:01:56 +00:00
|
|
|
|
StringBuilder sb = new();
|
2022-08-30 15:00:58 +00:00
|
|
|
|
|
2024-05-10 18:29:48 +00:00
|
|
|
|
sb.AppendFormat("7\t2\t{0}", Entries.Length);
|
2022-08-30 15:00:58 +00:00
|
|
|
|
|
2024-05-10 18:29:48 +00:00
|
|
|
|
foreach(ListEntry entry in Entries)
|
2024-05-10 17:28:52 +00:00
|
|
|
|
sb.AppendFormat(
|
|
|
|
|
"\t{0}\t{1}\t{2}",
|
2024-05-10 18:29:48 +00:00
|
|
|
|
entry.Name,
|
|
|
|
|
entry.HasPassword ? 1 : 0,
|
|
|
|
|
entry.IsTemporary ? 1 : 0
|
2024-05-10 17:28:52 +00:00
|
|
|
|
);
|
2022-08-30 15:00:58 +00:00
|
|
|
|
|
2024-05-10 15:24:43 +00:00
|
|
|
|
return sb.ToString();
|
2022-08-30 15:00:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|