GameMapComponentSystem.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. protected override void Destroy(GameMapComponent self)
  26. {
  27. }
  28. }
  29. public static void Add(this GameMapComponent self, Map map)
  30. {
  31. self.allMaps.TryAdd(map.Id, map);
  32. }
  33. public static Map Get(this GameMapComponent self, long instanceId)
  34. {
  35. self.allMaps.TryGetValue(instanceId, out Map map);
  36. return map;
  37. }
  38. public static void Remove(this GameMapComponent self, long instanceId)
  39. {
  40. self.allMaps.Remove(instanceId);
  41. }
  42. public static Map[] GetAll(this GameMapComponent self)
  43. {
  44. return self.allMaps.Values.ToArray();
  45. }
  46. }
  47. }