using System; using System.Collections.Generic; using System.Linq; using System.Reflection; namespace PSO2SERVER.Packets.Handlers { public class PacketHandlerAttr : Attribute { public uint Type, Subtype; public PacketHandlerAttr(uint type, uint subtype) { Type = type; Subtype = subtype; } } public abstract class PacketHandler { public abstract void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size); } public static class PacketHandlers { private static readonly Dictionary Handlers = new Dictionary(); public static void LoadPacketHandlers() { var classes = from t in Assembly.GetExecutingAssembly().GetTypes() where t.IsClass && t.Namespace == "PSO2SERVER.Packets.Handlers" && t.IsSubclassOf(typeof (PacketHandler)) select t; foreach (var t in classes.ToList()) { var attrs = (Attribute[]) t.GetCustomAttributes(typeof (PacketHandlerAttr), false); if (attrs.Length > 0) { var attr = (PacketHandlerAttr) attrs[0]; Logger.WriteInternal("[PKT] 载入数据包处理 {0} 数据包 {1:X}-{2:X}.", t.Name, attr.Type, attr.Subtype); if (!Handlers.ContainsKey(Helper.PacketTypeToUShort(attr.Type, attr.Subtype))) Handlers.Add(Helper.PacketTypeToUShort(attr.Type, attr.Subtype), (PacketHandler) Activator.CreateInstance(t)); } } } /// /// Gets and creates a PacketHandler for a given packet type and subtype. /// /// An instance of a PacketHandler or null /// Type a. /// Type b. public static PacketHandler GetHandlerFor(uint type, uint subtype) { var packetCode = Helper.PacketTypeToUShort(type, subtype); PacketHandler handler = null; if (Handlers.ContainsKey(packetCode)) Handlers.TryGetValue(packetCode, out handler); return handler; } public static PacketHandler[] GetLoadedHandlers() { return Handlers.Values.ToArray(); } } }