PlayerDataComponentSystem.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. namespace ET.Server
  2. {
  3. public class PlayerDataComponentaAwakeSystem: AwakeSystem<PlayerDataComponent, PlayerInfo, WNPlayer>
  4. {
  5. /// <summary>
  6. /// 玩家基础数据组件创建
  7. /// </summary>
  8. /// <param name="self"></param>
  9. /// <param name="info"></param>
  10. /// <param name="player"></param>
  11. protected override void Awake(PlayerDataComponent self, PlayerInfo info, WNPlayer player)
  12. {
  13. self.Player = player;
  14. self.Data = info;
  15. }
  16. }
  17. public class PlayerDataComponentDestroySystem: DestroySystem<PlayerDataComponent>
  18. {
  19. /// <summary>
  20. /// 玩家基础数据组件销毁
  21. /// </summary>
  22. /// <param name="self"></param>
  23. protected override void Destroy(PlayerDataComponent self)
  24. {
  25. Log.Debug($"玩家基础数据保存");
  26. self?.Save();
  27. }
  28. }
  29. [FriendOf(typeof (PlayerDataComponent))]
  30. public static class PlayerDataComponentSystem
  31. {
  32. public static async ETTask Save(this PlayerDataComponent self)
  33. {
  34. if (self.Data != null)
  35. {
  36. await DBManagerComponent.Instance.GetZoneDB(self.DomainZone()).Save(self.Data);
  37. }
  38. }
  39. }
  40. }