SmoOnlineServer/Shared/Constants.cs

25 lines
1.0 KiB
C#
Raw Permalink Normal View History

2022-02-04 09:45:38 +00:00
using System.Reflection;
using System.Runtime.InteropServices;
using Shared.Packet;
using Shared.Packet.Packets;
2022-02-10 01:44:50 +00:00
namespace Shared;
2022-02-04 09:45:38 +00:00
public static class Constants {
public const int CostumeNameSize = 0x20;
2022-02-04 09:45:38 +00:00
// dictionary of packet types to packet
public static readonly Dictionary<Type, PacketAttribute> PacketMap = Assembly
2022-02-04 09:45:38 +00:00
.GetExecutingAssembly()
.GetTypes()
.Where(type => type.IsAssignableTo(typeof(IPacket)) && type.GetCustomAttribute<PacketAttribute>() != null)
2022-02-04 09:45:38 +00:00
.ToDictionary(type => type, type => type.GetCustomAttribute<PacketAttribute>()!);
public static readonly Dictionary<PacketType, Type> PacketIdMap = Assembly
.GetExecutingAssembly()
.GetTypes()
2022-02-11 04:25:47 +00:00
.Where(type => type.IsAssignableTo(typeof(IPacket)) && type.GetCustomAttribute<PacketAttribute>() != null)
.ToDictionary(type => type.GetCustomAttribute<PacketAttribute>()!.Type, type => type);
2022-02-10 01:44:50 +00:00
public static int HeaderSize { get; } = PacketHeader.StaticSize;
}