GameMapComponentSystem.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. using System.Linq;
  2. namespace ET.Server
  3. {
  4. public class GameMapComponentAwakeSystem: AwakeSystem<GameMapComponent>
  5. {
  6. /// <summary>
  7. /// 游戏服场景组件创建
  8. /// </summary>
  9. /// <param name="self"></param>
  10. protected override void Awake(GameMapComponent self)
  11. {
  12. // todo 添加场景销毁检测定时器
  13. }
  14. }
  15. public class GameMapComponentDestroySystem: DestroySystem<GameMapComponent>
  16. {
  17. /// <summary>
  18. /// 游戏服场景组件销毁
  19. /// </summary>
  20. /// <param name="self"></param>
  21. /// <exception cref="NotImplementedException"></exception>
  22. protected override void Destroy(GameMapComponent self)
  23. {
  24. }
  25. }
  26. [FriendOf(typeof (GameMapComponent))]
  27. public static class GameMapComponentSystem
  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. }