RoomSystem.cs 940 B

1234567891011121314151617181920212223242526272829303132
  1. using System.Collections.Generic;
  2. namespace ET.Server;
  3. [FriendOf(typeof(Room))]
  4. public static class RoomSystem
  5. {
  6. [ObjectSystem]
  7. public class RoomAwakeSystem : AwakeSystem<Room>
  8. {
  9. protected override void Awake(Room self)
  10. {
  11. Log.Info($"创建房间实体...");
  12. self.Type = 2;
  13. self.Players = new List<Player>();
  14. self.CreateTime = TimeHelper.ServerNow();
  15. // 添加本地房间数据
  16. self.DomainScene().GetComponent<GameRoomComponent>().Add(self);
  17. }
  18. [ObjectSystem]
  19. public class RoomDestroySystem : DestroySystem<Room>
  20. {
  21. protected override void Destroy(Room self)
  22. {
  23. Log.Info($"销毁房间实体...");
  24. // 移除本地房间数据
  25. self.DomainScene().GetComponent<GameRoomComponent>()?.Remove(self.Id);
  26. }
  27. }
  28. }
  29. }