1234567891011121314151617181920212223242526272829303132 |
- using System.Collections.Generic;
- namespace ET.Server;
- [FriendOf(typeof(Room))]
- public static class RoomSystem
- {
- [ObjectSystem]
- public class RoomAwakeSystem : AwakeSystem<Room>
- {
- protected override void Awake(Room self)
- {
- Log.Info($"创建房间实体...");
- self.Type = 2;
- self.Players = new List<Player>();
- self.CreateTime = TimeHelper.ServerNow();
- // 添加本地房间数据
- self.DomainScene().GetComponent<GameRoomComponent>().Add(self);
- }
-
- [ObjectSystem]
- public class RoomDestroySystem : DestroySystem<Room>
- {
- protected override void Destroy(Room self)
- {
- Log.Info($"销毁房间实体...");
- // 移除本地房间数据
- self.DomainScene().GetComponent<GameRoomComponent>()?.Remove(self.Id);
- }
- }
- }
- }
|