using System.Collections.Generic; using System.Text.Json; using BattleIce; using JsonSerializer = System.Text.Json.JsonSerializer; namespace ET.Server { [FriendOf(typeof (WNPlayer))] [FriendOf(typeof (BattleIceAgentComponent))] public static class PlayerSystem { public class PlayerAwakeSystem: AwakeSystem { protected override void Awake(WNPlayer self, Session session) { Log.Info($"创建玩家实体..."); PlayerInfo playerInfo = session.GetComponent().PlayerInfo; // 绑定sessionId self.GameSessionActorId = session.InstanceId; self.Session = session; self.BasicProp = CharacterConfigCategory.Instance.Get(playerInfo.Pro); self.BornType = (int)BORN_TYPE.NORMAL; self.EnterState = (int)ENTER_STATE.online; // 玩家基础数据组件 self.AddComponent(playerInfo); // 玩家临时数据组件 self.AddComponent(); // 玩家技能组件 self.AddComponent(); // 玩家货币组件 self.AddComponent(); // 玩家背包组件 // self.AddComponent(); // 玩家属性组件 self.AddComponent(); } } public class PlayerDestroySystem: DestroySystem { protected override void Destroy(WNPlayer self) { Log.Info($"销毁玩家实体..."); } } /// /// 获取角色id /// /// /// public static long GetId(this WNPlayer self) { return self.GetComponent().Data.Id; } /// /// 获取玩家类型 /// /// /// public static int GetPlayerType(this WNPlayer self) { return self.GetComponent().Data.PlayerType; } /// /// 获取直播间id /// /// /// public static string GetRoomId(this WNPlayer self) { return self.GetComponent().Data.RoomId; } /// /// 获取名称 /// /// /// public static string GetName(this WNPlayer self) { return self.GetComponent().Data.Name; } /// /// 获取性别 /// /// /// public static int GetSex(this WNPlayer self) { return self.GetComponent().Data.Sex; } /// /// 获取职业 /// /// /// public static int GetPro(this WNPlayer self) { return self.GetComponent().Data.Pro; } /// /// 获取经验 /// /// /// public static long GetExp(this WNPlayer self) { return self.GetComponent().Data.Exp; } /// /// 获取等级 /// /// /// public static int GetLevel(this WNPlayer self) { return self.GetComponent().Data.Level; } /// /// 获取金币 /// /// /// public static long GetGold(this WNPlayer self) { return self.GetComponent().Data.Gold; } /// /// 获取场景实例id /// /// /// public static long GetMapInstanceId(this WNPlayer self) { return self.Map.InstanceId; } /** 获取服务器id **/ public static int GetLogicServerId(this WNPlayer self) { return self.GetComponent().Data.LogicServerId; } public static ZoneManagerPrx GetZoneManager(this WNPlayer self) { return self.DomainScene().GetComponent().IceZoneManager; } public static XmdsManagerPrx GetXmdsManager(this WNPlayer self) { return self.DomainScene().GetComponent().IceXmdsManager; } /** bornData相关初始化 **/ public static void InitBornData(this WNPlayer self) { switch (self.BornType) { case (int)BORN_TYPE.HISTORY: self.GetComponent().MapData.mapId = self.GetComponent().MapData.historyMapId; self.GetComponent().MapData.mapInstanceId = self.GetComponent().MapData.historyMapInstanceId; self.GetComponent().MapData.x = self.GetComponent().MapData.historyX; self.GetComponent().MapData.y = self.GetComponent().MapData.historyY; break; case (int)BORN_TYPE.BORN: self.GetComponent().MapData.mapId = self.GetComponent().MapData.bornMapId; self.GetComponent().MapData.mapInstanceId = self.GetComponent().MapData.bornMapInstanceId; self.GetComponent().MapData.x = self.GetComponent().MapData.bornX; self.GetComponent().MapData.y = self.GetComponent().MapData.bornY; break; } } /** 客户端资源加载完成通知 给客户端推送的数据要在这里 **/ public static void OnReady(this WNPlayer self) { self.OnEndEnterScene(); // 登录第一次进场景处理,此次登陆登出期间只处理一次 if (self.ReadyFirst) { self.ReadyFirst = false; } } /** 玩家登录事件 **/ public static void OnLogin(this WNPlayer self) { self.ReadyFirst = true; self.DomainScene().GetComponent().Add(self.GetId(), self); } /** 向客户端推送角色相关数据 **/ public static void OnEndEnterScene(this WNPlayer self) { bool ready = self.GetComponent().MapData.ready; if (ready) { Log.Warning($"$OnEndEnterScene跳过 : playerId={self.GetId()}, 玩家场景:{self.Map.MapId}, 进入场景:" + (self.Map?.MapId ?? -1)); return; } self.GetComponent().MapData.ready = true; self.GetXmdsManager().playerReady(self.GetId().ToString().Trim()); //PKMode设置为All self.GetXmdsManager().refreshPlayerPKMode(self.GetId().ToString().Trim(), false, (int)PkModel.All); //设置为自动战斗 self.GetXmdsManager().autoBattle(self.Map.Id.ToString().Trim(), self.GetId().ToString().Trim(), true); } /// /// 战斗服角色数据 /// /// /// private static Dictionary GetBattlerServerBasic(this WNPlayer self) { Dictionary data = new Dictionary(); data.Add("name", self.GetName()); data.Add("alliesForce", 0); data.Add("force", 1); data.Add("pro", self.GetPro()); data.Add("serverId", ConstGame.GameServerId); data.Add("titleId", 0); data.Add("level", self.GetLevel()); data.Add("vip", 0); data.Add("upLevel", 1); // 无悬赏 data.Add("beReward", 0); data.Add("logicServerId", ConstGame.GameServerId); data.Add("sex", self.GetSex()); data.Add("uuid", self.GetId().ToString()); data.Add("potionAddition", 0); return data; } /// /// 场景中角色需求数据 /// /// /// /// public static string ToJSON4EnterScene(this WNPlayer self, Map map) { var json = new { effects = self.GetComponent().GetBattleServerEffects(), effectsExt = new { }, skills = self.GetComponent().ToJson4BattleServerSkills, tasks = new { }, flags = new { }, playerEntered = false, avatars = new { }, basic = self.GetBattlerServerBasic(), connectServerId = "bs-" + ConstGame.GameServerId, uid = self.GetId().ToString(), unitTemplateID = self.BasicProp.TemplateId, robot = false, tempData = self.GetComponent().ToJson4BattleServerTempData, pkInfo = new { mode = 0, value = 0, level = 1, }, //petBase, addTestPetData = 0, sceneData = new { allowAutoGuard = 3, }, }; return JsonSerializer.Serialize(json, new JsonSerializerOptions { IncludeFields = true }); } } }