continuity/Wonderking/Packets/Outgoing/CharacterSelectionSetGuildNamePacket.cs

29 lines
861 B
C#
Raw Normal View History

2024-02-07 15:40:36 +00:00
// Licensed to Timothy Schenk under the GNU AGPL Version 3 License.
2023-11-20 18:58:30 +00:00
using System.Text;
2024-04-04 14:57:42 +00:00
using RaiNote.PacketMediator;
namespace Wonderking.Packets.Outgoing;
[WonderkingPacketId(OperationCode.CharacterSelectionSetGuildName)]
public class CharacterSelectionSetGuildNamePacket : IOutgoingPacket
{
public required string[] GuildNames { get; set; }
2024-02-07 15:40:36 +00:00
public byte[] Serialize()
{
2023-11-19 16:07:28 +00:00
Span<byte> data = stackalloc byte[1 + (1 + 16 + 1) * GuildNames.Length];
data.Clear();
2023-11-19 16:07:28 +00:00
data[0] = (byte)GuildNames.Length;
for (var i = 0; i < GuildNames.Length; i++)
{
2023-11-19 16:07:28 +00:00
data[1 + i * (1 + 16 + 1)] = (byte)i;
Encoding.ASCII.GetBytes(GuildNames[i], data.Slice(2 + i * (1 + 16 + 1), 16));
// Null terminator
2023-11-19 16:07:28 +00:00
data[18 + i * (1 + 16 + 1)] = 0;
}
return data.ToArray();
}
}