GamePlayerComponentSystem.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System.Linq;
  2. namespace ET.Server
  3. {
  4. public class PlayerComponentAwakeSystem: AwakeSystem<GamePlayerComponent>
  5. {
  6. /// <summary>
  7. /// 游戏服在线玩家组件创建
  8. /// </summary>
  9. /// <param name="self"></param>
  10. protected override void Awake(GamePlayerComponent self)
  11. {
  12. }
  13. }
  14. public class PlayerComponentDestroySystem: DestroySystem<GamePlayerComponent>
  15. {
  16. /// <summary>
  17. /// 游戏服在线玩家组件销毁
  18. /// </summary>
  19. /// <param name="self"></param>
  20. protected override void Destroy(GamePlayerComponent self)
  21. {
  22. }
  23. }
  24. [FriendOf(typeof (GamePlayerComponent))]
  25. public static class GamePlayerComponentSystem
  26. {
  27. public static void Add(this GamePlayerComponent self, long playerId, WNPlayer player)
  28. {
  29. self.idPlayers[playerId] = player;
  30. }
  31. public static WNPlayer Get(this GamePlayerComponent self, long id)
  32. {
  33. self.idPlayers.TryGetValue(id, out WNPlayer gamer);
  34. return gamer;
  35. }
  36. public static void Remove(this GamePlayerComponent self, long id)
  37. {
  38. self.idPlayers.Remove(id);
  39. }
  40. public static WNPlayer[] GetAll(this GamePlayerComponent self)
  41. {
  42. return self.idPlayers.Values.ToArray();
  43. }
  44. }
  45. }