123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- using System.Collections.Generic;
- using System.Linq;
- namespace ET.Server
- {
- [FriendOf(typeof (SessionPlayerComponent))]
- public static class SessionPlayerComponentSystem
- {
- public class SessionPlayerComponentAwakeSystem: AwakeSystem<SessionPlayerComponent>
- {
- /// <summary>
- /// session玩家组件创建
- /// </summary>
- /// <param name="self"></param>
- protected override void Awake(SessionPlayerComponent self)
- {
- Log.Info($"创建session玩家绑定组件...");
- self.PlayerId = 0;
- self.PlayerList = new List<PlayerInfo>();
- }
- }
- public class SessionPlayerComponentDestroySystem: DestroySystem<SessionPlayerComponent>
- {
- protected override void Destroy(SessionPlayerComponent self)
- {
- WNPlayer player = self.GetMyPlayer();
- if (player == null)
- {
- return;
- }
- Log.Info($"玩家断线了, playerId={self.PlayerId}, name={player.GetName()}");
- // 玩家离开
- player.GetComponent<PlayerTempDataComponent>().MapData.ready = false;
- Map map = player.Map;
- if (map != null)
- {
- // 记录玩家历史
- map.SyncPlayerHistoryData(player);
- // 战斗服场景玩家离开
- map.PlayerLeaveRequest(player, false);
- // 本地场景移除玩家
- map.RemovePlayer(player, false);
- // 移除本地组件数据
- map.DomainScene().GetComponent<GamePlayerComponent>().Remove(player.GetId());
- // 战斗服结束场景
- map.GetZoneManager().destroyZoneRequest(map.Id.ToString());
- }
- player.Dispose();
- }
- }
- /// <summary>
- /// 绑定玩家id
- /// </summary>
- /// <param name="self"></param>
- /// <param name="playerId"></param>
- public static void BindPlayerId(this SessionPlayerComponent self, long playerId)
- {
- Log.Debug($"session玩家绑定组件 绑定玩家id={playerId}");
- self.PlayerId = playerId;
- }
- /// <summary>
- /// 是否存在
- /// </summary>
- /// <param name="self"></param>
- /// <param name="playerId"></param>
- /// <returns></returns>
- public static bool IsExist(this SessionPlayerComponent self, long playerId)
- {
- return self.PlayerList.Any(info => info != null && info.Id == playerId);
- }
- /// <summary>
- /// 获取
- /// </summary>
- /// <param name="self"></param>
- /// <param name="playerId"></param>
- /// <returns></returns>
- public static PlayerInfo Get(this SessionPlayerComponent self, long playerId)
- {
- return self.PlayerList.FirstOrDefault(info => info != null && info.Id == playerId);
- }
- /// <summary>
- /// 添加
- /// </summary>
- /// <param name="self"></param>
- /// <param name="info"></param>
- public static void Add(this SessionPlayerComponent self, PlayerInfo info)
- {
- if (info != null)
- {
- self.PlayerList.Add(info);
- }
- }
- /// <summary>
- /// 获取当前玩家实体
- /// </summary>
- /// <param name="self"></param>
- /// <returns></returns>
- public static WNPlayer GetMyPlayer(this SessionPlayerComponent self)
- {
- return self.DomainScene().GetComponent<GamePlayerComponent>().Get(self.PlayerId);
- }
- }
- }
|