SessionPlayerComponentSystem.cs 926 B

1234567891011121314151617181920212223242526272829303132333435
  1. namespace ET.Server
  2. {
  3. [FriendOf(typeof (SessionPlayerComponent))]
  4. public static class SessionPlayerComponentSystem
  5. {
  6. public class SessionPlayerComponentDestroySystem: DestroySystem<SessionPlayerComponent>
  7. {
  8. protected override void Destroy(SessionPlayerComponent self)
  9. {
  10. Player player = self.GetMyPlayer();
  11. if (player == null)
  12. {
  13. return;
  14. }
  15. Log.Info($"玩家断线了, playerId={self.PlayerId}, name={player.Name}");
  16. // 发送断线消息
  17. // ActorLocationSenderComponent.Instance?.Send(self.PlayerId, new G2M_SessionDisconnect());
  18. // 销毁玩家实体
  19. player.Dispose();
  20. }
  21. }
  22. /// <summary>
  23. /// 获取玩家实体
  24. /// </summary>
  25. /// <param name="self"></param>
  26. /// <returns></returns>
  27. public static Player GetMyPlayer(this SessionPlayerComponent self)
  28. {
  29. return self.DomainScene().GetComponent<GamePlayerComponent>().Get(self.PlayerId);
  30. }
  31. }
  32. }