PlayerSystem.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. using System.Collections.Generic;
  2. using System.Text.Json;
  3. using BattleIce;
  4. namespace ET.Server
  5. {
  6. public class PlayerAwakeSystem: AwakeSystem<WNPlayer, Session, PlayerInfo>
  7. {
  8. /// <summary>
  9. /// 玩家实体创建
  10. /// </summary>
  11. /// <param name="self"></param>
  12. /// <param name="session"></param>
  13. /// <param name="playerInfo"></param>
  14. protected override void Awake(WNPlayer self, Session session, PlayerInfo playerInfo)
  15. {
  16. // 绑定sessionId
  17. self.GameSessionActorId = session.InstanceId;
  18. self.Session = session;
  19. self.BasicProp = CharacterCategory.Instance.Get(playerInfo.Pro);
  20. self.BornType = (int)BORN_TYPE.NORMAL;
  21. self.EnterState = (int)ENTER_STATE.online;
  22. // 玩家基础数据组件
  23. self.AddComponent<PlayerDataComponent, PlayerInfo, WNPlayer>(playerInfo, self);
  24. // 玩家临时数据组件
  25. self.AddComponent<PlayerTempDataComponent, WNPlayer>(self);
  26. // 玩家货币组件
  27. self.AddComponent<PlayerMoneyComponent, WNPlayer>(self);
  28. }
  29. }
  30. public class PlayerDestroySystem: DestroySystem<WNPlayer>
  31. {
  32. /// <summary>
  33. /// 玩家实体销毁
  34. /// </summary>
  35. /// <param name="self"></param>
  36. protected override void Destroy(WNPlayer self)
  37. {
  38. Log.Info($"玩家实体销毁...");
  39. }
  40. }
  41. [FriendOf(typeof (WNPlayer))]
  42. [FriendOf(typeof (BattleIceAgentComponent))]
  43. public static class PlayerSystem
  44. {
  45. /// <summary>
  46. /// 获取角色id
  47. /// </summary>
  48. /// <param name="self"></param>
  49. /// <returns></returns>
  50. public static long GetId(this WNPlayer self)
  51. {
  52. return self.GetComponent<PlayerDataComponent>().Data.Id;
  53. }
  54. /// <summary>
  55. /// 获取账号id
  56. /// </summary>
  57. /// <param name="self"></param>
  58. /// <returns></returns>
  59. public static long GetUserId(this WNPlayer self)
  60. {
  61. return self.GetComponent<PlayerDataComponent>().Data.UserId;
  62. }
  63. /// <summary>
  64. /// 获取名称
  65. /// </summary>
  66. /// <param name="self"></param>
  67. /// <returns></returns>
  68. public static string GetName(this WNPlayer self)
  69. {
  70. return self.GetComponent<PlayerDataComponent>().Data.Name;
  71. }
  72. /// <summary>
  73. /// 获取性别
  74. /// </summary>
  75. /// <param name="self"></param>
  76. /// <returns></returns>
  77. public static int GetSex(this WNPlayer self)
  78. {
  79. return self.GetComponent<PlayerDataComponent>().Data.Sex;
  80. }
  81. /// <summary>
  82. /// 获取职业
  83. /// </summary>
  84. /// <param name="self"></param>
  85. /// <returns></returns>
  86. public static int GetPro(this WNPlayer self)
  87. {
  88. return self.GetComponent<PlayerDataComponent>().Data.Pro;
  89. }
  90. /// <summary>
  91. /// 获取经验
  92. /// </summary>
  93. /// <param name="self"></param>
  94. /// <returns></returns>
  95. public static long GetExp(this WNPlayer self)
  96. {
  97. return self.GetComponent<PlayerDataComponent>().Data.Exp;
  98. }
  99. /// <summary>
  100. /// 获取等级
  101. /// </summary>
  102. /// <param name="self"></param>
  103. /// <returns></returns>
  104. public static int GetLevel(this WNPlayer self)
  105. {
  106. return self.GetComponent<PlayerDataComponent>().Data.Level;
  107. }
  108. /// <summary>
  109. /// 获取金币
  110. /// </summary>
  111. /// <param name="self"></param>
  112. /// <returns></returns>
  113. public static long GetGold(this WNPlayer self)
  114. {
  115. return self.GetComponent<PlayerDataComponent>().Data.Gold;
  116. }
  117. /// <summary>
  118. /// 获取场景实例id
  119. /// </summary>
  120. /// <param name="self"></param>
  121. /// <returns></returns>
  122. public static long GetMapInstanceId(this WNPlayer self)
  123. {
  124. return self.Map.InstanceId;
  125. }
  126. /** 获取服务器id **/
  127. public static int GetLogicServerId(this WNPlayer self)
  128. {
  129. return self.GetComponent<PlayerDataComponent>().Data.LogicServerId;
  130. }
  131. public static ZoneManagerPrx GetZoneManager(this WNPlayer self)
  132. {
  133. return self.DomainScene().GetComponent<BattleIceAgentComponent>().IceZoneManager;
  134. }
  135. public static XmdsManagerPrx GetXmdsManager(this WNPlayer self)
  136. {
  137. return self.DomainScene().GetComponent<BattleIceAgentComponent>().IceXmdsManager;
  138. }
  139. /** bornData相关初始化 **/
  140. public static void InitBornData(this WNPlayer self)
  141. {
  142. switch (self.BornType)
  143. {
  144. case (int)BORN_TYPE.HISTORY:
  145. self.GetComponent<PlayerTempDataComponent>().MapData.mapId = self.GetComponent<PlayerTempDataComponent>().MapData.historyMapId;
  146. self.GetComponent<PlayerTempDataComponent>().MapData.mapInstanceId =
  147. self.GetComponent<PlayerTempDataComponent>().MapData.historyMapInstanceId;
  148. self.GetComponent<PlayerTempDataComponent>().MapData.x = self.GetComponent<PlayerTempDataComponent>().MapData.historyX;
  149. self.GetComponent<PlayerTempDataComponent>().MapData.y = self.GetComponent<PlayerTempDataComponent>().MapData.historyY;
  150. break;
  151. case (int)BORN_TYPE.BORN:
  152. self.GetComponent<PlayerTempDataComponent>().MapData.mapId = self.GetComponent<PlayerTempDataComponent>().MapData.bornMapId;
  153. self.GetComponent<PlayerTempDataComponent>().MapData.mapInstanceId =
  154. self.GetComponent<PlayerTempDataComponent>().MapData.bornMapInstanceId;
  155. self.GetComponent<PlayerTempDataComponent>().MapData.x = self.GetComponent<PlayerTempDataComponent>().MapData.bornX;
  156. self.GetComponent<PlayerTempDataComponent>().MapData.y = self.GetComponent<PlayerTempDataComponent>().MapData.bornY;
  157. break;
  158. }
  159. }
  160. /** 客户端资源加载完成通知 给客户端推送的数据要在这里 **/
  161. public static void OnReady(this WNPlayer self)
  162. {
  163. self.OnEndEnterScene();
  164. // 登录第一次进场景处理,此次登陆登出期间只处理一次
  165. if (self.readyFirst)
  166. {
  167. self.readyFirst = false;
  168. }
  169. }
  170. /** 玩家登录事件 **/
  171. public static void OnLogin(this WNPlayer self)
  172. {
  173. self.readyFirst = true;
  174. self.DomainScene().GetComponent<GamePlayerComponent>().Add(self.GetId(), self);
  175. }
  176. /** 向客户端推送角色相关数据 **/
  177. public static void OnEndEnterScene(this WNPlayer self)
  178. {
  179. bool ready = self.GetComponent<PlayerTempDataComponent>().MapData.ready;
  180. if (ready)
  181. {
  182. Log.Warning($"$OnEndEnterScene跳过 : playerId={self.GetId()}, 玩家场景:{self.Map.MapId}, 进入场景:" + (self.Map?.MapId ?? -1));
  183. return;
  184. }
  185. self.GetComponent<PlayerTempDataComponent>().MapData.ready = true;
  186. self.GetXmdsManager().playerReady(self.GetId().ToString().Trim());
  187. //PKMode设置为All
  188. self.GetXmdsManager().refreshPlayerPKMode(self.GetId().ToString().Trim(), false, (int)PkModel.All);
  189. //设置为自动战斗
  190. self.GetXmdsManager().autoBattle(self.Map.Id.ToString().Trim(), self.GetId().ToString().Trim(), true);
  191. }
  192. /** 场景中角色需求数据 **/
  193. public static string toJSON4EnterScene(this WNPlayer self, Map map)
  194. {
  195. var json = new
  196. {
  197. effects = new
  198. {
  199. MaxHP = 666,
  200. HPPer = 1,
  201. HP = 233,
  202. Attack = 10,
  203. AttackPer = 100,
  204. },
  205. effectsExt = new { },
  206. skills = new List<SkillInfo>()
  207. {
  208. new SkillInfo
  209. {
  210. id = 100,
  211. level = 1,
  212. type = 1,
  213. skillTime = 10000,
  214. cdTime = 5000,
  215. flag = 0
  216. },
  217. new SkillInfo
  218. {
  219. id = 101,
  220. level = 1,
  221. type = 1,
  222. skillTime = 10000,
  223. cdTime = 5000,
  224. flag = 0
  225. },
  226. },
  227. tasks = new { },
  228. flags = new { },
  229. playerEntered = false,
  230. avatars = new { },
  231. basic = new
  232. {
  233. name = self.GetName(),
  234. alliesForce = 0,
  235. force = 1,
  236. pro = self.GetPro(),
  237. serverId = 101,
  238. titleId = 0,
  239. level = self.GetLevel(),
  240. vip = 0,
  241. upLevel = 1,
  242. beReward = 0,
  243. logicServerId = ConstGame.GameServerId,
  244. sex = self.GetSex(),
  245. uuid = self.GetId().ToString(),
  246. potionAddition = 0
  247. },
  248. connectServerId = "bs-" + ConstGame.GameServerId,
  249. uid = self.GetId().ToString(),
  250. unitTemplateID = 1,
  251. robot = false,
  252. tempData = new
  253. {
  254. //x = this.getPlayerAreaData().bornX,
  255. //y = this.getPlayerAreaData().bornY,
  256. x = 3,
  257. y = 10,
  258. direction = 0.1,
  259. hp = 1000,
  260. mp = 0,
  261. },
  262. pkInfo = new { mode = 0, value = 0, level = 1, },
  263. //petBase,
  264. addTestPetData = 0,
  265. sceneData = new { allowAutoGuard = 3, },
  266. };
  267. var retjson = System.Text.Json.JsonSerializer.Serialize(json, new JsonSerializerOptions { IncludeFields = true });
  268. Log.Debug("===================================");
  269. Log.Debug(retjson.ToString());
  270. Log.Debug("^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^");
  271. return retjson;
  272. }
  273. }
  274. }