UserSessionComponentSystem.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. namespace ET.Server
  2. {
  3. [FriendOf(typeof(UserSessionComponent))]
  4. public static class UserSessionComponentSystem
  5. {
  6. public class UserSessionComponentDestroySystem: DestroySystem<UserSessionComponent>
  7. {
  8. protected override void Destroy(UserSessionComponent self)
  9. {
  10. self.UserSession.Clear();
  11. }
  12. }
  13. public static long Get(this UserSessionComponent self, long userId)
  14. {
  15. if (!self.UserSession.TryGetValue(userId, out long instanceId))
  16. {
  17. return 0;
  18. }
  19. return instanceId;
  20. }
  21. public static void Add(this UserSessionComponent self, long userId, long instanceId)
  22. {
  23. if (self.UserSession.ContainsKey(userId))
  24. {
  25. self.UserSession[userId] = instanceId;
  26. return;
  27. }
  28. self.UserSession.Add(userId, instanceId);
  29. }
  30. public static void Remove(this UserSessionComponent self, long userId)
  31. {
  32. if (self.UserSession.ContainsKey(userId))
  33. {
  34. self.UserSession.Remove(userId);
  35. }
  36. }
  37. }
  38. }