123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- using System.Collections.Generic;
- using BattleIce;
- namespace ET.Server
- {
- [FriendOf(typeof (PlayerTempDataComponent))]
- public static class PlayerTempDataComponentSystem
- {
- public class PlayerTempDataComponentAwakeSystem: AwakeSystem<PlayerTempDataComponent, WNPlayer>
- {
- /// <summary>
- /// 玩家临时数据组件创建
- /// </summary>
- /// <param name="self"></param>
- /// <param name="player"></param>
- protected override void Awake(PlayerTempDataComponent self, WNPlayer player)
- {
- Log.Info($"创建玩家临时数据组件...");
- self.Player = player;
- }
- }
- public class PlayerTempDataComponentDestroySystem: DestroySystem<PlayerTempDataComponent>
- {
- /// <summary>
- /// 玩家临时数据组件销毁
- /// </summary>
- /// <param name="self"></param>
- protected override void Destroy(PlayerTempDataComponent self)
- {
- // todo 暂时去掉数据落地逻辑
- // Log.Debug($"玩家临时数据保存");
- // self?.Save();
- }
- }
- /// <summary>
- /// 初始化
- /// </summary>
- /// <param name="self"></param>
- public static void Init(this PlayerTempDataComponent self)
- {
- self.MapData = new PlayerMapInfo();
- self.MapData.mapId = 10098;
- self.MapData.x = 230;
- self.MapData.y = 100;
- self.MapData.direction = System.MathF.PI / 2;
- self.MapData.hp = PLAYER.initHp;
- self.MapData.mp = PLAYER.initMp;
- self.ToJson4BattleServerTempData = self.GetBattleServerTempData();
- // self?.Save();
- }
- private static async ETTask Save(this PlayerTempDataComponent self)
- {
- if (self.MapData == null)
- {
- Log.Debug($"保存玩家临时数据组件数据, Data is null");
- return;
- }
- self.MapData.Id = self.Player.GetId();
- await DBManagerComponent.Instance.GetZoneDB(self.DomainZone()).Save(self.Player.GetId(), self.MapData);
- }
- /** 同步场景出生数据 **/
- public static void SyncBornData(this PlayerTempDataComponent self, float bornX, float bornY, int bornAreaId)
- {
- self.MapData.bornX = bornX;
- self.MapData.bornY = bornY;
- self.MapData.bornMapId = bornAreaId;
- }
- /** 同步场景临时数据 **/
- public static void SyncNowData(this PlayerTempDataComponent self, int areaId, long instanceId, GetPlayerData data)
- {
- self.MapData.x = data.x;
- self.MapData.y = data.y;
- self.MapData.direction = data.direction;
- self.MapData.hp = data.hp;
- self.MapData.mp = data.mp;
- self.MapData.mapId = areaId;
- self.MapData.mapInstanceId = instanceId;
- }
- /** 同步场景历史数据 **/
- public static void SyncHistoryData(this PlayerTempDataComponent self, MapConfig prop, long instanceId, GetPlayerData data)
- {
- self.MapData.historyX = data.x;
- self.MapData.historyY = data.y;
- self.MapData.historyDirection = data.direction;
- self.MapData.historyMapId = prop.Id;
- self.MapData.historyMapInstanceId = instanceId;
- }
- /// <summary>
- /// 发送给场景服的数据
- /// </summary>
- /// <param name="self"></param>
- /// <returns></returns>
- private static Dictionary<string, object> GetBattleServerTempData(this PlayerTempDataComponent self)
- {
- Dictionary<string, object> data = new Dictionary<string, object>();
- data.Add("x", self.MapData.x);
- data.Add("y", self.MapData.y);
- data.Add("direction", self.MapData.direction);
- data.Add("hp", self.MapData.hp > 0 ? self.MapData.hp : self.Player.GetComponent<PlayerBtlComponent>().GetAllInflus(PlayerBtlData.MaxHP));
- data.Add("mp", self.MapData.mp);
- return data;
- }
- }
- }
|