GameMapComponentSystem.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. using System.Linq;
  2. namespace ET.Server
  3. {
  4. [FriendOf(typeof (GameMapComponent))]
  5. public static class GameMapComponentSystem
  6. {
  7. public class GameMapComponentAwakeSystem: AwakeSystem<GameMapComponent>
  8. {
  9. /// <summary>
  10. /// 游戏服场景组件创建
  11. /// </summary>
  12. /// <param name="self"></param>
  13. protected override void Awake(GameMapComponent self)
  14. {
  15. GameMapComponent.Instance = self;
  16. // todo 添加场景销毁检测定时器
  17. }
  18. }
  19. public class GameMapComponentDestroySystem: DestroySystem<GameMapComponent>
  20. {
  21. /// <summary>
  22. /// 游戏服场景组件销毁
  23. /// </summary>
  24. /// <param name="self"></param>
  25. /// <exception cref="NotImplementedException"></exception>
  26. protected override void Destroy(GameMapComponent self)
  27. {
  28. }
  29. }
  30. public static void Add(this GameMapComponent self, Map map)
  31. {
  32. self.allMaps.TryAdd(map.Id, map);
  33. }
  34. public static Map Get(this GameMapComponent self, long instanceId)
  35. {
  36. self.allMaps.TryGetValue(instanceId, out Map map);
  37. return map;
  38. }
  39. public static void Remove(this GameMapComponent self, long instanceId)
  40. {
  41. self.allMaps.Remove(instanceId);
  42. }
  43. public static Map[] GetAll(this GameMapComponent self)
  44. {
  45. return self.allMaps.Values.ToArray();
  46. }
  47. }
  48. }