123456789101112131415161718192021222324252627282930313233343536373839404142 |
- namespace ET.Server
- {
- public class PlayerDataComponentaAwakeSystem: AwakeSystem<PlayerDataComponent, PlayerInfo, WNPlayer>
- {
- /// <summary>
- /// 玩家基础数据组件创建
- /// </summary>
- /// <param name="self"></param>
- /// <param name="info"></param>
- /// <param name="player"></param>
- protected override void Awake(PlayerDataComponent self, PlayerInfo info, WNPlayer player)
- {
- self.Player = player;
- self.Data = info;
- }
- }
- public class PlayerDataComponentDestroySystem: DestroySystem<PlayerDataComponent>
- {
- /// <summary>
- /// 玩家基础数据组件销毁
- /// </summary>
- /// <param name="self"></param>
- protected override void Destroy(PlayerDataComponent self)
- {
- Log.Debug($"玩家基础数据保存");
- self?.Save();
- }
- }
- [FriendOf(typeof (PlayerDataComponent))]
- public static class PlayerDataComponentSystem
- {
- public static async ETTask Save(this PlayerDataComponent self)
- {
- if (self.Data != null)
- {
- await DBManagerComponent.Instance.GetZoneDB(self.DomainZone()).Save(self.Data);
- }
- }
- }
- }
|