ZoneServiceICE.cs 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737
  1. using CommonAI;
  2. using CommonAI.data;
  3. using CommonAI.Data;
  4. using CommonAI.Zone;
  5. using CommonAI.Zone.Helper;
  6. using CommonAI.Zone.Instance;
  7. using CommonAI.Zone.ZoneEditor;
  8. using CommonAI.ZoneServer.JSGModule;
  9. using CommonLang;
  10. using CommonLang.Log;
  11. using CommonLang.Property;
  12. using Pomelo;
  13. using System;
  14. using System.Collections;
  15. using System.Collections.Generic;
  16. using System.Data;
  17. using System.Threading;
  18. using System.Web.Helpers;
  19. using XmdsCommon.EditorData;
  20. using XmdsCommon.Message;
  21. using XmdsCommon.Plugin;
  22. using XmdsCommonServer.Message;
  23. using XmdsCommonServer.Plugin;
  24. using XmdsCommonServer.Plugin.Units;
  25. using XmdsCommonServer.Plugin.XmdsSkillTemplate.Skills;
  26. using XmdsCommonSkill.Plugin;
  27. using XmdsCommonSkill.Plugin.FunctionEvent;
  28. using XmdsServerNode.Node;
  29. using XmdsServerNode.Node.Interface;
  30. using XmdsServerNode.Node.R2bNotify;
  31. using static CommonAI.Zone.Instance.InstanceUnit;
  32. using static JSGMountainKingModule;
  33. namespace XmdsServerEdgeJS.Zone
  34. {
  35. public class ZoneServiceICE : ZoneService
  36. {
  37. private static readonly short [] mXChange = { 0, 0, -1, 1 };
  38. private static readonly short [] mYChange = { 1, -1, 0, 0 };
  39. public static ZoneServiceICE InstanceICE { get; private set; }
  40. public ZoneServiceICE() { InstanceICE = this; }
  41. //----------------------------------------------------------------------------------------------
  42. #region _游戏服单向通知战斗服_
  43. /// <summary>
  44. /// 无差别通知战斗服
  45. /// </summary>
  46. /// <param name="instanceId"></param>
  47. /// <param name="name"></param>
  48. /// <param name="param"></param>
  49. /// <returns></returns>
  50. public void r2b_notify_notifyBattleServer(string instanceId, string name, dynamic param)
  51. {
  52. R2BNotifyMessage msg = R2bNotifyManager.GetR2bNotifyMessage(name);
  53. if (msg != null)
  54. {
  55. CommonAIServer.ServerUtils.DynamicToObject(param, msg);
  56. base.notifyBattleServer(instanceId, msg);
  57. }
  58. }
  59. /// <summary>
  60. /// 玩家基本信息同步
  61. /// </summary>
  62. /// <param name="instanceId"></param>
  63. /// <returns>副本实例id</returns>
  64. public void r2b_notify_refreshPlayerBasicData(string playerId, dynamic basic)
  65. {
  66. var player = getPlayer(playerId);
  67. if (player != null)
  68. {
  69. XmdsUnitBaseInfo baseData = XmdsPlayerUtil.instance().createXmdsUnitBaseInfo(basic);
  70. XmdsUnitBaseInfoEventB2C b2c = new XmdsUnitBaseInfoEventB2C(baseData);
  71. player.ReceiveMsgR2B(b2c);
  72. }
  73. }
  74. /// <summary>
  75. /// 玩家基本信息同步
  76. /// </summary>
  77. /// <param name="instanceId"></param>
  78. /// <returns>副本实例id</returns>
  79. public void r2b_notify_refreshPlayerPropertyChange(string playerId, int changeType, int valueType, int value, int duration, long timestamp)
  80. {
  81. var player = getPlayer(playerId);
  82. if (player != null)
  83. {
  84. PropertyChangeEventR2B r2b = new PropertyChangeEventR2B();
  85. r2b.ChangeType = (PropertyChangeEventR2B.PropertyChangeType)changeType;
  86. r2b.ChangeValueType = (PropertyChangeEventR2B.ValueType)valueType;
  87. r2b.ChangeValue = value;
  88. r2b.Duration = duration;
  89. //r2b.TimestampMS = timestamp;
  90. //药剂时间直接用本机的时间
  91. r2b.TimestampMS = TimeUtil.GetTimestampMS() + r2b.Duration;
  92. //Console.Write("timestamp:" + timestamp);
  93. //TimeSpan ts = DateTime.UtcNow - new DateTime(1970, 1, 1).ToUniversalTime();
  94. //Console.Write("timestamp cs:" + ts.TotalMilliseconds);
  95. player.ReceiveMsgR2B(r2b);
  96. }
  97. }
  98. /// <summary>
  99. /// 玩家基本信息同步
  100. /// </summary>
  101. /// <param name="instanceId"></param>
  102. /// <returns>副本实例id</returns>
  103. public void r2b_notify_refreshPlayerPetBaseInfoChange(string playerId, dynamic propertyData)
  104. {
  105. var player = getPlayer(playerId);
  106. if (player != null)
  107. {
  108. PetBaseInfoChangeEventR2B r2b = new PetBaseInfoChangeEventR2B();
  109. r2b.BaseInfo = XmdsPlayerUtil.instance().createPetBaseData(propertyData);
  110. player.ReceiveMsgR2B(r2b);
  111. }
  112. }
  113. //public void r2b_request_addUnit(string instanceId, int unitTemplateID, string data, Action<int> cb, Action<Exception> err)
  114. /// <summary>
  115. /// 玩家基本信息同步
  116. /// </summary>
  117. /// <param name="instanceId"></param>
  118. /// <returns>副本实例id</returns>
  119. public void r2b_notify_refreshPlayerPetDataChange(string playerId, int type, PetDataChangeEventR2B r2b, Action<int> cb, Action<Exception> err)
  120. {
  121. int petHP = 0;
  122. var player = getPlayer(playerId);
  123. if (player != null)
  124. {
  125. player.ReceiveMsgR2B(r2b);
  126. // 获取该玩家宠物血量
  127. if (player.BindingObject != null && player.BindingObject.BindingActor != null)
  128. {
  129. XmdsVirtual_Player zv = (XmdsVirtual_Player)player.BindingObject.BindingActor.Virtual;
  130. if(zv != null && zv.GetPet() != null)
  131. {
  132. petHP = zv.GetPet().mUnit.CurrentHP;
  133. }
  134. }
  135. }
  136. cb(petHP);
  137. }
  138. /// <summary>
  139. /// 宠物技能信息同步
  140. /// </summary>
  141. /// <param name="playerId"></param>
  142. /// <param name="type"></param>
  143. /// <param name="propertyData"></param>
  144. /// <returns></returns>
  145. public void r2b_notify_refreshPlayerPetSkillChange(string playerId, int type, dynamic propertyData)
  146. {
  147. var player = getPlayer(playerId);
  148. if (player != null)
  149. {
  150. PetSkillChangeEventR2B r2b = new PetSkillChangeEventR2B();
  151. List<GameSkill> UnitSkills = new List<GameSkill>();
  152. foreach (dynamic obj in propertyData)
  153. {
  154. GameSkill skill = new GameSkill();
  155. skill.SkillID = (int)obj.id;
  156. skill.SkillLevel = (int)obj.level;
  157. skill.SkillType = (XmdsSkillType)obj.type;
  158. skill.TalentSkillLevel1 = (int)obj.talentLevel[0];
  159. skill.TalentSkillLevel2 = (int)obj.talentLevel[1];
  160. skill.TalentSkillLevel3 = (int)obj.talentLevel[2];
  161. UnitSkills.Add(skill);
  162. }
  163. r2b.OperateID = (PlayerSkillChangeEventR2B.SkillOperate)type;
  164. r2b.SkillList = UnitSkills;
  165. player.ReceiveMsgR2B(r2b);
  166. }
  167. }
  168. /// <summary>
  169. /// 玩家基本信息同步
  170. /// </summary>
  171. /// <param name="playerId"></param>
  172. /// <returns></returns>
  173. public void r2b_notify_refreshPlayerPetPropertyChange(string playerId, dynamic propertyData)
  174. {
  175. var player = getPlayer(playerId);
  176. if (player != null)
  177. {
  178. PetPropertyChangeEventR2B r2b = new PetPropertyChangeEventR2B();
  179. PropertyChangeEventR2B order = new PropertyChangeEventR2B();
  180. order.ChangeType = (PropertyChangeEventR2B.PropertyChangeType)propertyData.changeType;
  181. order.ChangeValue = (int)propertyData.value;
  182. order.ChangeValueType = (PropertyChangeEventR2B.ValueType)propertyData.valueType;
  183. order.Duration = (int)propertyData.duration;
  184. order.TimestampMS = (long)propertyData.timestamp;
  185. r2b.Order = order;
  186. player.ReceiveMsgR2B(r2b);
  187. }
  188. }
  189. /// <summary>
  190. /// 玩家基本信息同步
  191. /// </summary>
  192. /// <param name="instanceId"></param>
  193. /// <returns>副本实例id</returns>
  194. public void r2b_notify_refreshPlayerPKMode(string playerId, bool isLook, dynamic model, Action<int> cb, Action<Exception> err)
  195. {
  196. int resCode = 0;
  197. var player = getPlayer(playerId);
  198. if (player != null)
  199. {
  200. /*player.BindingActor.Virtual.IsInPVE() || */
  201. if(isLook)
  202. {
  203. resCode = (player.BindingActor.IsActive && player.BindingActor.Virtual.IsInPVP()) ? 1 : 0;
  204. if (resCode == 1)
  205. {
  206. XmdsVirtual playerVirtual = player.BindingActor.Virtual as XmdsVirtual;
  207. log.Warn("PVP状态下传送1:" + playerVirtual.mUnit.PlayerUUID + ", 场景ID: " + playerVirtual.mUnit.Parent.GetSceneID() + ", hateInfo:" +
  208. playerVirtual.GetHateSystem().GetHatePlayerInfo() + ", 触发PVP玩家:" + playerVirtual.mPvpTriggerPlayerId);
  209. }
  210. }
  211. else
  212. {
  213. PlayerPKModeChangeEventR2B r2b = new PlayerPKModeChangeEventR2B();
  214. r2b.CurPKMode = (PKMode)model;
  215. player.ReceiveMsgR2B(r2b);
  216. }
  217. }
  218. cb(resCode);
  219. }
  220. /// <summary>
  221. /// 玩家基本信息同步
  222. /// </summary>
  223. /// <param name="instanceId"></param>
  224. /// <returns>副本实例id</returns>
  225. public void r2b_notify_refreshPlayerPKValue(string playerId, int value)
  226. {
  227. var player = getPlayer(playerId);
  228. if (player != null)
  229. {
  230. PlayerPKValueChangeEventR2B r2b = new PlayerPKValueChangeEventR2B();
  231. r2b.ChangeValue = value;
  232. player.ReceiveMsgR2B(r2b);
  233. }
  234. }
  235. /// <summary>
  236. /// 玩家基本信息同步
  237. /// </summary>
  238. /// <param name="instanceId"></param>
  239. /// <returns>副本实例id</returns>
  240. public void r2b_notify_refreshPlayerPKLevel(string playerId, dynamic level)
  241. {
  242. var player = getPlayer(playerId);
  243. if (player != null)
  244. {
  245. PlayerPKLevelChangeEventR2B r2b = new PlayerPKLevelChangeEventR2B();
  246. r2b.CurPKLv = (PKLevel)level;
  247. player.ReceiveMsgR2B(r2b);
  248. }
  249. }
  250. /// <summary>
  251. /// 玩家队伍信息同步
  252. /// </summary>
  253. /// <param name="instanceId"></param>
  254. /// <returns>副本实例id</returns>
  255. public void r2b_notify_refreshPlayerTeamData(string playerId, List<string> uuidList)
  256. {
  257. var player = getPlayer(playerId);
  258. if (player != null)
  259. {
  260. TeamInfoEventR2B r2b = new TeamInfoEventR2B();
  261. r2b.UUIDList = uuidList;
  262. player.Node.OnPlayerReviveTeamInfoEventR2B(player, r2b);
  263. }
  264. }
  265. /// <summary>
  266. /// 玩家背包剩余格子数量信息同步
  267. /// </summary>
  268. /// <param name="instanceId"></param>
  269. /// <returns>副本实例id</returns>
  270. public void r2b_notify_refreshPlayerRemainBagCountData(string playerId, int remainCount)
  271. {
  272. var player = getPlayer(playerId);
  273. if (player != null)
  274. {
  275. SyncPlayerInventorySizeEventR2B r2b = new SyncPlayerInventorySizeEventR2B();
  276. r2b.Size = remainCount;
  277. player.ReceiveMsgR2B(r2b);
  278. }
  279. }
  280. /// <summary>
  281. /// 玩家队伍背包剩余格子数量信息同步
  282. /// </summary>
  283. /// <param name="instanceId"></param>
  284. /// <returns>副本实例id</returns>
  285. public void r2b_notify_refreshPlayerRemainTeamBagCountData(string playerId, int remainCount)
  286. {
  287. var player = getPlayer(playerId);
  288. if (player != null)
  289. {
  290. TeamInventorySizeChangeEventR2B r2b = new TeamInventorySizeChangeEventR2B();
  291. r2b.size = remainCount;
  292. player.ReceiveMsgR2B(r2b);
  293. }
  294. }
  295. /// <summary>
  296. /// 玩家战斗信息同步
  297. /// </summary>
  298. /// <param name="instanceId"></param>
  299. /// <returns>副本实例id</returns>
  300. public void r2b_notify_refreshPlayerBattleEffect(string playerId, dynamic effects)
  301. {
  302. var player = getPlayer(playerId);
  303. if (player != null)
  304. {
  305. XmdsUnitProp effectData = XmdsPlayerUtil.instance().createXmdsUnitProp(effects, playerId);
  306. XmdsUnitPropEventB2C b2c = new XmdsUnitPropEventB2C(effectData);
  307. player.ReceiveMsgR2B(b2c);
  308. }
  309. }
  310. /// <summary>
  311. /// 添加玩家属性
  312. /// </summary>
  313. /// <param name="instanceId"></param>
  314. /// <returns>副本实例id</returns>
  315. public void r2b_notify_addPlayerAtt(List<string> notifyPlayerIds, string playerId, string key, int value)
  316. {
  317. var player = getPlayer(playerId);
  318. if (player != null)
  319. {
  320. List<IPlayer> notifyPlayers = new List<IPlayer>();
  321. foreach (string notifyPlayerId in notifyPlayerIds)
  322. {
  323. XmdsPlayer notifyPlayer = getPlayer(notifyPlayerId);
  324. if (notifyPlayer != null)
  325. {
  326. notifyPlayers.Add(notifyPlayer);
  327. }
  328. }
  329. if (key.Equals("hp"))
  330. {
  331. player.Node.OnPlayerAddHPByItem(notifyPlayers, player, value);
  332. }
  333. }
  334. }
  335. /// <summary>
  336. /// 玩家技能信息同步
  337. /// </summary>
  338. /// <param name="instanceId"></param>
  339. /// <returns>副本实例id</returns>
  340. public void r2b_notify_refreshPlayerSkill(string playerId, int operateID, dynamic skills)
  341. {
  342. var player = getPlayer(playerId);
  343. if (player != null)
  344. {
  345. //XmdsUnitSkillInfo skillData = XmdsPlayerUtil.instance().createXmdsUnitSkillInfo(skills);
  346. PlayerSkillChangeEventR2B r2b = new PlayerSkillChangeEventR2B();
  347. List<GameSkill> UnitSkills = new List<GameSkill>();
  348. foreach (dynamic obj in skills)
  349. {
  350. GameSkill skill = new GameSkill();
  351. skill.SkillID = (int)obj.id;
  352. skill.SkillLevel = (int)obj.level;
  353. skill.SkillType = (XmdsSkillType)obj.type;
  354. skill.TalentSkillLevel1 = (int)obj.talentLevel[0];
  355. skill.TalentSkillLevel2 = (int)obj.talentLevel[1];
  356. skill.TalentSkillLevel3 = (int)obj.talentLevel[2];
  357. skill.SkillTimestampMS = (long)obj.skillTime;
  358. skill.SkillCDDecreasePercent = (int)obj.cdTime;
  359. UnitSkills.Add(skill);
  360. }
  361. r2b.OperateID = (PlayerSkillChangeEventR2B.SkillOperate)operateID;
  362. r2b.SkillList = UnitSkills;
  363. player.ReceiveMsgR2B(r2b);
  364. }
  365. }
  366. /// <summary>
  367. /// 玩家时装信息同步
  368. /// </summary>
  369. /// <param name="instanceId"></param>
  370. /// <returns>副本实例id</returns>
  371. public void r2b_notify_refreshPlayerAvatar(string playerId, dynamic avatars)
  372. {
  373. var player = getPlayer(playerId);
  374. if (player != null)
  375. {
  376. List<XmdsAvatarInfo> avatarList = XmdsPlayerUtil.instance().createXmdsAvatarInfoList(avatars);
  377. PlayAvatarEventB2C b2c = new PlayAvatarEventB2C(avatarList);
  378. player.ReceiveMsgR2B(b2c);
  379. }
  380. }
  381. /// <summary>
  382. /// 协助角色复活
  383. /// </summary>
  384. /// <param name="playerId"></param>
  385. /// <param name="x"></param>
  386. /// <param name="y"></param>
  387. /// <param name="items"></param>
  388. /// <returns>副本实例id</returns>
  389. public void r2b_notify_helpRevivePlayer(string playerId, string revivePlayerId, int time)
  390. {
  391. var player = getPlayer(playerId);
  392. var revivePlayer = getPlayer(revivePlayerId);
  393. if (player != null && revivePlayer != null)
  394. {
  395. player.Node.OnHelpPlayerRebirth(player, revivePlayer, time);
  396. }
  397. }
  398. /// <summary>
  399. /// 角色复活
  400. /// </summary>
  401. /// <param name="playerId"></param>
  402. /// <param name="x"></param>
  403. /// <param name="y"></param>
  404. /// <param name="items"></param>
  405. /// <returns>副本实例id</returns>
  406. public void r2b_notify_revivePlayer(string playerId, int type, int qty, string itemType, int hp, int mp)
  407. {
  408. var player = getPlayer(playerId);
  409. if (player != null)
  410. {
  411. ConsumeItemEventB2R b2r = new ConsumeItemEventB2R();
  412. b2r.playerId = playerId;
  413. b2r.Qty = qty;
  414. b2r.Type = itemType;
  415. PlayerRebirthEventR2B b2c = new PlayerRebirthEventR2B((byte)type, b2r);
  416. b2c.HP = hp;
  417. b2c.MP = mp;
  418. player.ReceiveMsgR2B(b2c);
  419. }
  420. }
  421. /// <summary>
  422. /// 角色复活
  423. /// </summary>
  424. /// <param name="playerId"></param>
  425. /// <param name="x"></param>
  426. /// <param name="y"></param>
  427. /// <param name="items"></param>
  428. /// <returns>副本实例id</returns>
  429. public void r2b_notify_refreshSummonMount(string playerId, int time, bool IsSummonMount)
  430. {
  431. var player = getPlayer(playerId);
  432. if (player != null)
  433. {
  434. PlayerSummonMountEventR2B b2c = new PlayerSummonMountEventR2B();
  435. b2c.TimeMS = time;
  436. b2c.IsSummonMount = IsSummonMount;
  437. player.ReceiveMsgR2B(b2c);
  438. }
  439. }
  440. /// <summary>
  441. /// 怪物死亡掉落
  442. /// </summary>
  443. /// <param name="PlayerId"></param>
  444. /// <param name="x"></param>
  445. /// <param name="y"></param>
  446. /// <param name="items"></param>
  447. /// <returns>副本实例id</returns>
  448. public void r2b_notify_onMonsterDiedDrops(string instanceId, float x, float y, dynamic items)
  449. {
  450. //TODO 要计算道具的位置
  451. var zone = getZoneNode(instanceId);
  452. if (zone != null)
  453. {
  454. zone.Node.AddDropItem(x, y, items);
  455. }
  456. }
  457. /// <summary>
  458. /// 提示客户端获得道具
  459. /// </summary>
  460. /// <param name="PlayerId"></param>
  461. /// <param name="itemIcon"></param>
  462. /// <param name="quality"></param>
  463. /// <param name="num"></param>
  464. /// <returns></returns>
  465. public void r2b_notify_onFinishPickItem(string playerId, string itemIcon, int quality, int num, int objectId, String instanceId)
  466. {
  467. //TODO 要计算道具的位置
  468. var player = getPlayer(playerId);
  469. if (player != null)
  470. {
  471. player.Node.FinishPickItem(player, itemIcon, quality, num);
  472. }
  473. //if(objectId > 0)
  474. //{
  475. // var node = getZoneNode(instanceId);
  476. // if (node != null)
  477. // {
  478. // node.Node.QueueTaskAsync((zone) =>
  479. // {
  480. // zone.RemoveObjectByID((uint)objectId);
  481. // });
  482. // }
  483. //}
  484. }
  485. /// <summary>
  486. ///
  487. /// </summary>
  488. /// <param name="playerId"></param>
  489. /// <param name="eventId"></param>
  490. /// <param name="data"></param>
  491. /// <param name="cb"></param>
  492. /// <param name="err"></param>
  493. public void r2b_notify_triggrBattleFunction(string playerId, int eventId, int value1, int value2, int value3, int value4, int value5, int value6)
  494. {
  495. XmdsPlayer player = getPlayer(playerId);
  496. if (player != null)
  497. {
  498. player.Node.QueueTaskAsync(() =>
  499. {
  500. try
  501. {
  502. if(eventId <= 0)
  503. {
  504. log.Warn("r2b_notify_triggrBattleFunction 错误事件id:" + playerId + ", " + eventId);
  505. return;
  506. }
  507. if(value1 == 0 && value2 == 0 && value3 == 0 && value4 == 0 && value5 == 0 && value6 == 0)
  508. {
  509. XmdsVirtual virtualUnit = (player.BindingActor.Virtual as XmdsVirtual);
  510. BattleFunction.GetInstance().TriggrBattleFunction(eventId, virtualUnit, virtualUnit);
  511. }
  512. else
  513. {
  514. BattleFunction.GetInstance().TriggrBattleFunction(eventId, (player.BindingActor.Virtual as XmdsVirtual), value1, value2, value3, value4, value5, value6);
  515. }
  516. }
  517. catch(Exception e)
  518. {
  519. log.Warn("r2b_notify_triggrBattleFunction catch: " + playerId + ", " + eventId + ", 参数:" + value1 + ", " + value2
  520. + ", " + value3 + ", " + value4 + ", " + value5 + ", " + value6 + ", e: " + e);
  521. }
  522. });
  523. }
  524. else
  525. {
  526. log.Warn("r2b_notify_triggrBattleFunction player not exists:" + playerId + ", " + eventId);
  527. }
  528. }
  529. /// <summary>
  530. /// 种怪
  531. /// </summary>
  532. /// <param name="instanceId"></param>
  533. /// <param name="data"></param>
  534. public void r2b_notify_addUnits(string instanceId, string propertyData, Action<int> cb, Action<Exception> err)
  535. {
  536. int unitId = 0;
  537. dynamic data = Json.Decode(propertyData);
  538. var zoneNode = getZoneNode(instanceId);
  539. if (zoneNode != null)
  540. {
  541. zoneNode.Node.QueueTaskAsync((zone) =>
  542. {
  543. int count = 0;
  544. foreach (var u in data)
  545. {
  546. int templateId = u.id;
  547. int gsFlag = u["gsFlag"];
  548. int hp = 0;
  549. int maxHP = 0;
  550. float birthDirection = (float)u["birthDirection"];
  551. int level = u["level"];
  552. string flagName = u["flag"];
  553. string name = u["name"];
  554. //指定追击玩家id(必须是无限追击怪才会联动生效)
  555. string attackPlayerId = u["attackPlayer"];
  556. //创建护卫怪,主人ObjectId(主人脱战或者死亡消失)
  557. int masterId = u.masterID;
  558. bool autoGuard = false;
  559. if (u["autoGuard"] != null)
  560. {
  561. autoGuard = u["autoGuard"];
  562. }
  563. //同一个场景内是否只能拥有唯一一个unit
  564. bool unique = false;
  565. if (u["unique"] != null)
  566. {
  567. unique = u["unique"];
  568. }
  569. if (u["hp"] != null && u["maxHP"] != null)
  570. {
  571. hp = u["hp"];
  572. maxHP = u["maxHP"];
  573. }
  574. float x = 0;
  575. float y = 0;
  576. if (flagName != null)
  577. {
  578. var p = zone.getFlag(flagName);
  579. if(p == null)
  580. {
  581. log.Error("r2b_notify_addUnits 路点错误,怪物:" + templateId + ", 路点:" + flagName);
  582. cb(0);
  583. return;
  584. }
  585. else if (p is ZoneRegion)
  586. {
  587. // Region随机取一个坐标
  588. var v2 = (p as ZoneRegion).getRandomPos(zone.RandomN);
  589. x = v2.X;
  590. y = v2.Y;
  591. }
  592. else
  593. {
  594. x = p.X;
  595. y = p.Y;
  596. }
  597. }
  598. else
  599. {
  600. //根据坐标
  601. x = u.x;
  602. y = u.y;
  603. }
  604. int force = u.force;
  605. var unitInfo = zone.Templates.getUnit(templateId);
  606. if (unitInfo != null)
  607. {
  608. string uuid = u["uuid"];
  609. if (string.IsNullOrEmpty(uuid))
  610. {
  611. if (unitInfo.UType == CommonAI.Zone.UnitInfo.UnitType.TYPE_PLAYER)
  612. {
  613. uuid = unitInfo.Name + CUtils.CurrentTimeMS.ToString() + count.ToString();
  614. }
  615. else
  616. {
  617. uuid = "";
  618. }
  619. }
  620. if (unique)
  621. {
  622. InstanceUnit targetUnit = zone.getUnitByTemplateID(templateId);
  623. if (targetUnit != null)
  624. {
  625. log.Info("AddUnits is already exist, id:" + templateId + "," + x + "," + y);
  626. continue;
  627. }
  628. }
  629. var ret = zone.AddUnit(unitInfo, uuid, force, level, x, y, birthDirection, null, name, gsFlag, level > 0);
  630. if(ret == null)
  631. {
  632. log.Warn("单位添加失败:" + unitInfo.TemplateID + ", " + zone.Data.ID);
  633. continue;
  634. }
  635. if (flagName != null)
  636. {
  637. ret.SetAttribute("RefreshMonsterTag", flagName);
  638. }
  639. if (ret is InstancePlayer && autoGuard)
  640. {
  641. var act = new CommonAI.Zone.UnitGuardAction(ret.ID, autoGuard);
  642. zone.pushAction(act);
  643. }
  644. if (ret.Virtual is XmdsVirtual_Monster)
  645. {
  646. var monster = ret.Virtual as XmdsVirtual_Monster;
  647. if (u["shareType"] != null)
  648. {
  649. monster.IsShare = true;
  650. }
  651. //血量数据设置
  652. if(hp > 0)
  653. {
  654. // 最大血量小于设置血量,需要调整下
  655. if(monster.mUnit.MaxHP < hp)
  656. {
  657. monster.mUnit.SetMaxHP(hp);
  658. }
  659. monster.mUnit.CurrentHP = hp;
  660. }
  661. if (!JSGModule.IsEmpty(attackPlayerId))
  662. {
  663. ret.BindAttackPlayer(attackPlayerId);
  664. }
  665. if(masterId > 0)
  666. {
  667. ret.BindMasterId(masterId);
  668. }
  669. }
  670. unitId = (int)ret.ID;
  671. }
  672. count = count + 1;
  673. }
  674. if(count <= 1)
  675. {
  676. cb(unitId);
  677. }
  678. else
  679. {
  680. cb(0);
  681. }
  682. });
  683. }
  684. else
  685. {
  686. log.Warn("场景不存在加入单位:" + instanceId + ", " + propertyData);
  687. cb(-1);
  688. }
  689. }
  690. /// <summary>
  691. /// 玩家基本信息同步
  692. /// </summary>
  693. /// <param name="instanceId"></param>
  694. /// <returns>副本实例id</returns>
  695. public void r2b_notify_refreshPlayerPetFollowModeChange(string playerId, int model)
  696. {
  697. var player = getPlayer(playerId);
  698. if (player != null)
  699. {
  700. PetFollowModeChangeEventR2B r2b = new PetFollowModeChangeEventR2B();
  701. r2b.mode = (XmdsPetConifg.XmdsPetFollowMode)model;
  702. player.ReceiveMsgR2B(r2b);
  703. }
  704. }
  705. // TODO playerReady
  706. public void r2b_notify_playerReady(string playerId)
  707. {
  708. var player = getPlayer(playerId);
  709. if (player != null)
  710. {
  711. player.Node.OnPlayerReadyR2B(player);
  712. }
  713. }
  714. public void r2b_request_addUnit(string instanceId, int unitTemplateID, string data, Action<int> cb, Action<Exception> err)
  715. {
  716. dynamic input = Json.Decode(data);
  717. string name = (string)input.name;
  718. byte force = (byte)input.force;
  719. String flag = input.flag; //刷新点
  720. float x = (float)input.x;
  721. float y = (float)input.y;
  722. float direction = (float)input.direction;
  723. int lifeEndTime = (int)input.lifeEndTime;
  724. int lifeTime = (int)input.lifeTime;
  725. bool showLifeTime = (bool)input.showLifeTime;
  726. byte maxPickPlayers = (byte)input.maxPickPlayers;
  727. short maxPickTimes = (short)input.maxPickTimes;
  728. short gotInterval = (short)input.gotInterval;
  729. float offset = (float)input.offsetValue;
  730. String playerId = input.playerId;
  731. var node = getZoneNode(instanceId);
  732. if (node != null)
  733. {
  734. node.Node.QueueTaskAsync((zone) =>
  735. {
  736. //如果玩家id不为空,就是用改玩家的坐标
  737. if(playerId != null && playerId.Length > 0)
  738. {
  739. var player = zone.getPlayerByUUID(playerId);
  740. if(player != null)
  741. {
  742. x = player.X;
  743. y = player.Y;
  744. }
  745. }
  746. var temp = zone.Templates.getItem(unitTemplateID);
  747. if (temp != null)
  748. {
  749. //如果设置了路点,优先使用路点的x,y
  750. if (flag != null)
  751. {
  752. var p = zone.getFlag(flag);
  753. if(p == null)
  754. {
  755. log.Error("创建单位出现错误flag:" + unitTemplateID + ", " + flag);
  756. cb(-1);
  757. return;
  758. }
  759. if (p is ZoneRegion)
  760. {
  761. // Region随机取一个坐标
  762. var v2 = (p as ZoneRegion).getRandomPos(zone.RandomN);
  763. x = v2.X;
  764. y = v2.Y;
  765. }
  766. else
  767. {
  768. x = p.X;
  769. y = p.Y;
  770. }
  771. }
  772. if (lifeTime > 0)
  773. {
  774. temp.LifeTimeMS = lifeTime * 1000;
  775. }
  776. temp.LifeEndTime = lifeEndTime;
  777. temp.showLifeTime = showLifeTime;
  778. if(maxPickPlayers != 0)
  779. {
  780. temp.maxPickPlayers = maxPickPlayers;
  781. }
  782. if(maxPickTimes != 0)
  783. {
  784. temp.maxPickTimes = maxPickTimes;
  785. }
  786. if(gotInterval != -1)
  787. {
  788. temp.UseCoolDownTimeMS = gotInterval;
  789. }
  790. if(offset == 0)
  791. {
  792. InstanceItem unit_data = zone.AddItem(temp, name, x, y, direction, force, name, null);
  793. if (unit_data != null)
  794. {
  795. cb((int)unit_data.ID);
  796. }
  797. }
  798. else
  799. {
  800. //特殊写法,仰慕道具
  801. for(int i = 0; i < 4; i++)
  802. {
  803. float tempX = x + mXChange[i] * offset;
  804. float tempY = y + mYChange[i] * offset;
  805. InstanceItem unit_data = zone.AddItem(temp, name, tempX, tempY, direction, force, name, null);
  806. }
  807. cb(0);
  808. }
  809. }
  810. else
  811. {
  812. cb(0);
  813. }
  814. });
  815. }
  816. else
  817. {
  818. cb(-1);
  819. }
  820. }
  821. public void r2b_request_removeUnit(string instanceId, int unitId)
  822. {
  823. var node = getZoneNode(instanceId);
  824. if (node != null)
  825. {
  826. node.Node.QueueTaskAsync((zone) =>
  827. {
  828. zone.RemoveUnitByID((uint)unitId);
  829. });
  830. }
  831. }
  832. public void r2b_transferUnit(string instanceId, uint unitId, float x, float y)
  833. {
  834. var node = getZoneNode(instanceId);
  835. if (node != null)
  836. {
  837. node.Node.QueueTaskAsync((zone) =>
  838. {
  839. var unit = zone.getUnit(unitId);
  840. unit.transport(x, y);
  841. });
  842. }
  843. }
  844. public void r2b_request_removePointUnit(string instanceId, int unitObjectId)
  845. {
  846. var node = getZoneNode(instanceId);
  847. if (node != null)
  848. {
  849. node.Node.QueueTaskAsync((zone) =>
  850. {
  851. zone.RemoveObjectByID((uint)unitObjectId);
  852. });
  853. }
  854. }
  855. public void r2b_request_removeItem(string instanceId, int itemId)
  856. {
  857. var node = getZoneNode(instanceId);
  858. if (node != null)
  859. {
  860. node.Node.QueueTaskAsync((zone) =>
  861. {
  862. zone.RemoveItemByID((uint)itemId);
  863. });
  864. }
  865. }
  866. #endregion
  867. //----------------------------------------------------------------------------------------------
  868. #region _获取静态数据_
  869. /// <summary>
  870. /// 【静态数据】获取副本传送点
  871. /// </summary>
  872. /// <param name="instanceId"></param>
  873. /// <returns>副本实例id</returns>
  874. public void r2b_get_static_getBornPlace(string instanceId, int areaId, string pointId, Action<dynamic> cb, Action<Exception> err)
  875. {
  876. var node = getZoneNode(instanceId);
  877. if (node != null)
  878. {
  879. cb(node.r2b_get_getBornPlace(areaId, pointId));
  880. }
  881. else
  882. {
  883. err(new InstanceNotExistException(instanceId));
  884. }
  885. }
  886. /// <summary>
  887. /// 【静态数据】获取副本静态模版数据
  888. /// </summary>
  889. /// <param name="instanceId"></param>
  890. /// <returns>副本实例id</returns>
  891. public void r2b_get_static_getZoneStaticData(string instanceId, Action<EdgeSceneData> cb, Action<Exception> err)
  892. {
  893. var node = getZoneNode(instanceId);
  894. if (node != null)
  895. {
  896. var data = new EdgeSceneData(node.Node.SceneData);
  897. cb(data);
  898. }
  899. else
  900. {
  901. err(new InstanceNotExistException(instanceId));
  902. }
  903. }
  904. ///
  905. public void r2b_notify_setTeamData(string playerId, dynamic data)
  906. {
  907. var player = getPlayer(playerId);
  908. if (player != null)
  909. {
  910. TeamDataEventR2B r2b = new TeamDataEventR2B();
  911. r2b.LeaderId = data.leaderId;
  912. r2b.TeamMembers = new List<TeamMemberEventR2B>();
  913. foreach (dynamic obj in data.members)
  914. {
  915. TeamMemberEventR2B mbr = new TeamMemberEventR2B();
  916. mbr.followLeader = (int)obj.followLeader;
  917. mbr.uuid = obj.uuid;
  918. r2b.TeamMembers.Add(mbr);
  919. }
  920. player.ReceiveMsgR2B(r2b);
  921. }
  922. }
  923. #endregion
  924. //----------------------------------------------------------------------------------------------
  925. #region _获取动态数据_
  926. /// <summary>
  927. /// 获取地图上所有enable的区域
  928. /// </summary>
  929. /// <param name="instanceId"></param>
  930. /// <returns></returns>
  931. public void r2b_get_getZoneRegions(string instanceId, Action<List<EdgeRegionData>> cb, Action<Exception> err)
  932. {
  933. var node = getZoneNode(instanceId);
  934. if (node != null)
  935. {
  936. node.Node.QueueTaskAsync((zone) =>
  937. {
  938. try
  939. {
  940. List<RegionData> regions = zone.Data.Regions;
  941. List<EdgeRegionData> edgeRegions = new List<EdgeRegionData>();
  942. foreach (RegionData rd in regions)
  943. {
  944. var flag = zone.getFlag(rd.Name);
  945. if (flag != null && flag.Enable)
  946. {
  947. EdgeRegionData eRd = new EdgeRegionData(rd);
  948. eRd.Enable = true;
  949. edgeRegions.Add(eRd);
  950. }
  951. }
  952. cb(edgeRegions);
  953. }
  954. catch (Exception e)
  955. {
  956. err(e);
  957. }
  958. });
  959. }
  960. else
  961. {
  962. err(new InstanceNotExistException(instanceId));
  963. }
  964. }
  965. /// <summary>
  966. /// 获取地图上所有enable的区域
  967. /// </summary>
  968. /// <param name="playerId"></param>
  969. /// <returns></returns>
  970. public void r2b_get_canUseItem(string playerId, Action<bool> cb, Action<Exception> err)
  971. {
  972. XmdsPlayer player = getPlayer(playerId);
  973. if (player != null)
  974. {
  975. //player.Node.QueueTaskAsync(() =>
  976. //{
  977. // try
  978. // {
  979. XmdsVirtual zv = (XmdsVirtual)player.BindingActor.Virtual;
  980. cb(zv.CanUseItem());
  981. // }
  982. // catch (Exception e)
  983. // {
  984. // err(e);
  985. // }
  986. //});
  987. }
  988. else
  989. {
  990. err(new PlayerNotExistException(playerId));
  991. }
  992. }
  993. /// <summary>
  994. /// 获取该地图的所有unit
  995. /// </summary>
  996. /// <param name="instanceId"></param>
  997. /// <returns></returns>
  998. public void r2b_get_getAllUnitInfo(string instanceId, Action<List<UnitInfo>> cb, Action<Exception> err)
  999. {
  1000. var node = getZoneNode(instanceId);
  1001. if (node != null)
  1002. {
  1003. node.Node.QueueTaskAsync((zone) =>
  1004. {
  1005. var units = new List<InstanceUnit>();
  1006. zone.GetAllUnits(units);
  1007. List<UnitInfo> ret = new List<UnitInfo>();
  1008. foreach (InstanceUnit unit in units)
  1009. {
  1010. CommonAI.ZoneClient.SyncUnitInfo syncInfo = unit.GenSyncUnitInfo();
  1011. UnitInfo info = new UnitInfo();
  1012. info.type = unit.GetType().Name;
  1013. info.ObjectId = syncInfo.ObjectID;
  1014. info.force = syncInfo.Force;
  1015. info.templateId = syncInfo.TemplateID;
  1016. info.playerId = syncInfo.PlayerUUID;
  1017. info.x = syncInfo.x;
  1018. info.y = syncInfo.y;
  1019. ret.Add(info);
  1020. }
  1021. cb(ret);
  1022. });
  1023. }
  1024. else
  1025. {
  1026. err(new InstanceNotExistException(instanceId));
  1027. }
  1028. }
  1029. /// <summary>
  1030. /// 获取该地图的所有npc
  1031. /// </summary>
  1032. /// <param name="instanceId"></param>
  1033. /// <returns></returns>
  1034. public void r2b_get_getAllNpcInfo(string instanceId, Action<List<UnitInfo>> cb, Action<Exception> err)
  1035. {
  1036. try
  1037. {
  1038. var node = getZoneNode(instanceId);
  1039. if (node != null)
  1040. {
  1041. //node.Node.QueueTaskAsync((zone) =>
  1042. //{
  1043. List<InstanceUnit> units = new List<InstanceUnit>();
  1044. node.Node.Zone.GetAllUnits(units);
  1045. List<UnitInfo> ret = new List<UnitInfo>();
  1046. foreach (InstanceUnit unit in units)
  1047. {
  1048. if (unit.Info.UType == CommonAI.Zone.UnitInfo.UnitType.TYPE_NPC)
  1049. {
  1050. CommonAI.ZoneClient.SyncUnitInfo syncInfo = unit.GenSyncUnitInfo();
  1051. UnitInfo info = new UnitInfo();
  1052. UnitData data = (UnitData)unit.GetAttribute("UnitData");
  1053. string[] attributes = data == null ? null : data.Attributes;
  1054. //string[] attributes = unit.Info.Attributes;
  1055. if (attributes != null && attributes.Length > 0)
  1056. {
  1057. info.unitType = attributes[0];
  1058. }
  1059. else
  1060. {
  1061. info.unitType = "";
  1062. }
  1063. info.name = unit.Name;
  1064. info.type = unit.GetType().Name;
  1065. info.ObjectId = syncInfo.ObjectID;
  1066. info.force = syncInfo.Force;
  1067. info.templateId = syncInfo.TemplateID;
  1068. info.playerId = syncInfo.PlayerUUID;
  1069. info.x = syncInfo.x;
  1070. info.y = syncInfo.y;
  1071. ret.Add(info);
  1072. }
  1073. }
  1074. cb(ret);
  1075. return;
  1076. //});
  1077. }
  1078. }
  1079. catch(Exception e)
  1080. {
  1081. log.Warn("r2b_get_getAllNpcInfo catch: " + instanceId + ", " + e);
  1082. }
  1083. cb(new List<UnitInfo>());
  1084. }
  1085. /// <summary>
  1086. /// 获取所有玩家UUID信息
  1087. /// </summary>
  1088. public void r2b_get_getAllPlayerUUID(Action<dynamic> cb, Action<Exception> err)
  1089. {
  1090. GetAllPlayers((e2, ret) =>
  1091. {
  1092. if (e2 != null)
  1093. {
  1094. err(e2);
  1095. }
  1096. else
  1097. {
  1098. dynamic json = new { list = ret };
  1099. cb(json);
  1100. }
  1101. });
  1102. }
  1103. /// <summary>
  1104. /// 玩家基本信息同步
  1105. /// </summary>
  1106. /// <param name="PlayerId"></param>
  1107. /// <returns>副本实例id</returns>
  1108. public void r2b_get_getPlayerData(string playerId, bool changeArea, Action<dynamic> cb, Action<Exception> err)
  1109. {
  1110. XmdsPlayer player = getPlayer(playerId);
  1111. if (player != null && player.BindingActor != null)
  1112. {
  1113. //player.Node.QueueTaskAsync(() =>
  1114. //{
  1115. // try
  1116. // {
  1117. InstancePlayer p = player.BindingActor;
  1118. XmdsUnitProperties prop = p.Properties as XmdsUnitProperties;
  1119. PKInfo pkInfo = prop.ServerData.UnitPKInfo;
  1120. ArrayList skillList = new ArrayList();
  1121. XmdsVirtual zv = (XmdsVirtual)p.Virtual;
  1122. if (changeArea)
  1123. {
  1124. XmdsCommonServer.Plugin.XmdsVirtual.XmdsSkillStatusData skillData = zv.GetSkillStatusData();
  1125. foreach (KeyValuePair<int, long> kvp in skillData.SkillTimestampMSMap)
  1126. {
  1127. int skillId = kvp.Key;
  1128. long skillTime = kvp.Value;
  1129. skillList.Add(new { skillId = skillId, skillTime = skillTime });
  1130. }
  1131. }
  1132. dynamic ret = new
  1133. {
  1134. x = p.X,
  1135. y = p.Y,
  1136. direction = p.Direction,
  1137. hp = p.get_current_hp(),
  1138. mp = p.get_current_mp(),
  1139. pkMode = (int)pkInfo.CurPKMode,
  1140. pkValue = pkInfo.CurPKValue,
  1141. pkLevel = (int)pkInfo.CurPKLevel,
  1142. skillData = skillList,
  1143. combatState = zv.CombatState
  1144. };
  1145. cb(ret);
  1146. // }
  1147. // catch (Exception e)
  1148. // {
  1149. // err(e);
  1150. // }
  1151. //});
  1152. }
  1153. else
  1154. {
  1155. //err(new PlayerNotExistException(playerId));
  1156. cb(null);
  1157. }
  1158. }
  1159. /// <summary>
  1160. /// 玩家宠物基本信息同步
  1161. /// </summary>
  1162. /// <param name="PlayerId"></param>
  1163. /// <returns>副本实例id</returns>
  1164. public void r2b_get_getPlayerPetData(string playerId, Action<dynamic> cb, Action<Exception> err)
  1165. {
  1166. try
  1167. {
  1168. do
  1169. {
  1170. if (string.IsNullOrEmpty(playerId))
  1171. {
  1172. log.Error("那个sx传过来一个空玩家信息:");
  1173. break; ;
  1174. }
  1175. XmdsPlayer player = getPlayer(playerId);
  1176. if (player != null && player.BindingActor != null)
  1177. {
  1178. XmdsVirtual_Player zv = (XmdsVirtual_Player)player.BindingActor.Virtual;
  1179. if(zv == null)
  1180. {
  1181. break;
  1182. }
  1183. XmdsVirtual_Pet petData = zv.GetPet();
  1184. if (petData == null)
  1185. {
  1186. log.Warn("找不到玩家对应宠物信息:" + playerId);
  1187. break; ;
  1188. }
  1189. dynamic ret = new
  1190. {
  1191. hp = petData.mUnit.CurrentHP,
  1192. mp = petData.mUnit.CurrentMP,
  1193. };
  1194. cb(ret);
  1195. return;
  1196. }
  1197. } while (false);
  1198. }
  1199. catch(Exception e)
  1200. {
  1201. log.Error("r2b_get_getPlayerPetData : " + playerId + ", " + e);
  1202. }
  1203. dynamic retFinal = new
  1204. {
  1205. hp = -1,
  1206. mp = -1,
  1207. };
  1208. cb(retFinal);
  1209. }
  1210. /// <summary>
  1211. /// 玩家基本信息同步
  1212. /// </summary>
  1213. /// <param name="PlayerId"></param>
  1214. /// <returns>副本实例id</returns>
  1215. public void r2b_get_getPlayerSkillCDTime(string playerId, Action<ArrayList> cb, Action<Exception> err)
  1216. {
  1217. XmdsPlayer player = getPlayer(playerId);
  1218. if (player != null)
  1219. {
  1220. //player.Node.QueueTaskAsync(() =>
  1221. //{
  1222. try
  1223. {
  1224. ArrayList skillList = new ArrayList();
  1225. global::XmdsCommonServer.Plugin.XmdsVirtual zv = (global::XmdsCommonServer.Plugin.XmdsVirtual)player.BindingActor.Virtual;
  1226. global::XmdsCommonServer.Plugin.XmdsVirtual.XmdsSkillStatusData skillData = zv.GetSkillStatusData();
  1227. foreach (KeyValuePair<int, long> kvp in skillData.SkillTimestampMSMap)
  1228. {
  1229. int skillId = kvp.Key;
  1230. long skillTime = kvp.Value;
  1231. skillList.Add(new { skillId = skillId, skillTime = skillTime });
  1232. }
  1233. cb(skillList);
  1234. }
  1235. catch (Exception e)
  1236. {
  1237. err(e);
  1238. }
  1239. //});
  1240. }
  1241. else
  1242. {
  1243. err(new PlayerNotExistException(playerId));
  1244. }
  1245. }
  1246. public void r2b_get_CanTalkWithNpc(string playerId, uint npcId, Action<dynamic> cb, Action<Exception> err)
  1247. {
  1248. XmdsPlayer player = getPlayer(playerId);
  1249. if (player != null)
  1250. {
  1251. //player.Node.QueueTaskAsync(() =>
  1252. //{
  1253. InstancePlayer src = player.BindingActor;
  1254. InstanceUnit dst = null;
  1255. if (src != null && (dst = src.Parent.getUnit(npcId)) != null)
  1256. {
  1257. dynamic ret = new
  1258. {
  1259. templateId = dst.Info.TemplateID,
  1260. canTalk = CMath.intersectRound(
  1261. src.X, src.Y, src.BodyBlockSize + 5,
  1262. dst.X, dst.Y, dst.BodyBlockSize),
  1263. };
  1264. cb(ret);
  1265. return;
  1266. }
  1267. //});
  1268. }
  1269. cb(new
  1270. {
  1271. templateId = 0,
  1272. canTalk = false,
  1273. });
  1274. }
  1275. /// <summary>
  1276. /// 玩家基本信息同步
  1277. /// </summary>
  1278. /// <param name="PlayerId"></param>
  1279. /// <returns>副本实例id</returns>
  1280. public void r2b_get_getPlayerPKInfoData(string playerId, Action<dynamic> cb, Action<Exception> err)
  1281. {
  1282. XmdsPlayer player = getPlayer(playerId);
  1283. if (player != null)
  1284. {
  1285. //player.Node.QueueTaskAsync(() =>
  1286. //{
  1287. //try
  1288. //{
  1289. XmdsUnitProperties prop = player.BindingActor.Properties as XmdsUnitProperties;
  1290. PKInfo pkInfo = prop.ServerData.UnitPKInfo;
  1291. dynamic ret = new
  1292. {
  1293. pkMode = (int)pkInfo.CurPKMode,
  1294. pkValue = pkInfo.CurPKValue,
  1295. pkLevel = (int)pkInfo.CurPKLevel
  1296. };
  1297. cb(ret);
  1298. //}
  1299. //catch (Exception e)
  1300. //{
  1301. // err(e);
  1302. //}
  1303. //});
  1304. }
  1305. else
  1306. {
  1307. err(new PlayerNotExistException(playerId));
  1308. }
  1309. }
  1310. public void r2b_request_autoBattle(string instanceId, string playerId, bool enable)
  1311. {
  1312. var node = getZoneNode(instanceId);
  1313. if (node != null)
  1314. {
  1315. node.Node.QueueTaskAsync((zone) =>
  1316. {
  1317. InstanceUnit u = zone.getPlayerByUUID(playerId.ToString());
  1318. if (u != null)
  1319. {
  1320. UnitGuardAction guard = new UnitGuardAction();
  1321. guard.guard = enable;
  1322. guard.object_id = u.ID;
  1323. guard.forceNotify = true;
  1324. u.Parent.pushAction(guard);
  1325. log.Debug("--------autoBattle from gs: playerId=" + playerId + " area=" + node.Node.Name + " instanceId=" + instanceId);
  1326. }
  1327. else
  1328. {
  1329. log.Error("r2b_request_autoBattle PlayerNotExistException: playerId =" + playerId + " area=" + node.Node.Name);
  1330. }
  1331. });
  1332. }
  1333. }
  1334. public void r2b_request_getPlayerStatistic(string instanceId, string playerId, int flag, Action<dynamic> cb, Action<Exception> err)
  1335. {
  1336. try
  1337. {
  1338. var node = getZoneNode(instanceId);
  1339. var player = getPlayer(playerId);
  1340. if (player != null && node != null)
  1341. {
  1342. if (flag == 0)
  1343. {
  1344. node.Node.ForEachPlayers((client) =>
  1345. {
  1346. var insPlayer = client.Actor;
  1347. if (insPlayer != null)
  1348. {
  1349. insPlayer.Statistic.Reset();
  1350. }
  1351. });
  1352. cb(null);
  1353. return;
  1354. }
  1355. else
  1356. {
  1357. dynamic statistic = new Dictionary<string, dynamic>();
  1358. node.Node.ForEachPlayers((client) =>
  1359. {
  1360. var insPlayer = client.Actor;
  1361. if (insPlayer != null)
  1362. {
  1363. statistic[insPlayer.PlayerUUID] = new
  1364. {
  1365. totalDamage = insPlayer.Statistic.TotalDamage,
  1366. totalHealing = insPlayer.Statistic.TotalHealing,
  1367. //killPlayerCount = insPlayer.Statistic.KillPlayerCount,
  1368. //killUnitCount = insPlayer.Statistic.KillUnitCount,
  1369. //deadCount = insPlayer.Statistic.DeadCount,
  1370. SelfDamage = insPlayer.Statistic.SelfDamage
  1371. };
  1372. }
  1373. });
  1374. cb(statistic);
  1375. return;
  1376. }
  1377. }
  1378. }
  1379. catch(Exception e)
  1380. {
  1381. log.Error("r2b_request_getPlayerStatistic catch: " + playerId + ", " + instanceId + ", " + flag + ", " + e);
  1382. }
  1383. string notifyMsg = "r2b_request_getPlayerStatistic error: " + playerId + ", " + instanceId + ", " + flag;
  1384. log.Error(notifyMsg);
  1385. cb(notifyMsg);
  1386. }
  1387. public void r2b_request_getInstanceStatistic(string instanceId, Action<dynamic> cb, Action<Exception> err)
  1388. {
  1389. var node = getZoneNode(instanceId);
  1390. if (node != null)
  1391. {
  1392. dynamic statistic = new Dictionary<string, dynamic>();
  1393. node.Node.ForEachPlayers((client) =>
  1394. {
  1395. var insPlayer = client.Actor;
  1396. if (insPlayer != null)
  1397. {
  1398. statistic[insPlayer.PlayerUUID] = new
  1399. {
  1400. totalDamage = insPlayer.Statistic.TotalDamage,
  1401. totalHealing = insPlayer.Statistic.TotalHealing,
  1402. killPlayerCount = insPlayer.Statistic.KillPlayerCount,
  1403. killUnitCount = insPlayer.Statistic.KillUnitCount,
  1404. deadCount = insPlayer.Statistic.DeadCount
  1405. };
  1406. }
  1407. });
  1408. cb(statistic);
  1409. }
  1410. else
  1411. {
  1412. log.Error("r2b_request_getInstanceStatistic: InstanceNotExistException: instanceId =" + instanceId);
  1413. cb(null);
  1414. return;
  1415. }
  1416. }
  1417. /// <summary>
  1418. /// 玩家更换技能
  1419. /// </summary>
  1420. /// <param name="instanceId"></param>
  1421. /// <returns>副本实例id</returns>
  1422. ///
  1423. public void r2b_notify_playerChangeSkill(string playerId, int oldSkillID, int newSkillID, dynamic data)
  1424. {
  1425. var player = getPlayer(playerId);
  1426. if (player != null)
  1427. {
  1428. XmdsInstancePlayer instancePlayer = player.getInstancePlayer() as XmdsInstancePlayer;
  1429. if (instancePlayer == null)
  1430. {
  1431. return;
  1432. }
  1433. SkillLevelData levelData = null;
  1434. if (data != null)
  1435. {
  1436. levelData = new SkillLevelData();
  1437. levelData.SkillLevel = data.level;
  1438. levelData.TalentSkillLevel1 = data.talentLevel[0];
  1439. levelData.TalentSkillLevel2 = data.talentLevel[1];
  1440. levelData.TalentSkillLevel3 = data.talentLevel[2];
  1441. levelData.skillType = (XmdsSkillType)data.skillType;
  1442. }
  1443. instancePlayer.PlayerChangeSkill(oldSkillID, newSkillID, levelData);
  1444. //player.get
  1445. //XmdsUnitSkillInfo skillData = XmdsPlayerUtil.instance()
  1446. }
  1447. }
  1448. /// <summary>
  1449. /// 玩家基本信息同步
  1450. /// </summary>
  1451. /// <param name="playerId"></param>
  1452. /// <returns></returns>
  1453. public bool r2b_notify_transferToPointPos(string instanceId, string playerId, string refreshPoint, bool setDirction, float direction)
  1454. {
  1455. var node = getZoneNode(instanceId);
  1456. if (node == null)
  1457. {
  1458. return false;
  1459. }
  1460. var player = getPlayer(playerId);
  1461. if (player == null)
  1462. {
  1463. return false;
  1464. }
  1465. InstanceFlag flag = node.Node.Zone.getFlag(refreshPoint);
  1466. if (flag == null)
  1467. {
  1468. return false;
  1469. }
  1470. if (flag is ZoneWayPoint)
  1471. {
  1472. // Region随机取一个坐标
  1473. var v2 = (flag as ZoneWayPoint).getRandomPos(node.Node.Zone.RandomN);
  1474. player.getInstancePlayer().transport(v2.X, v2.Y, setDirction, direction);
  1475. return true;
  1476. }
  1477. return false;
  1478. }
  1479. /// <summary>
  1480. /// 更改玩家状态
  1481. /// </summary>
  1482. /// <param name="playerId"></param>
  1483. /// <returns></returns>
  1484. public void r2b_notify_changePlayerStatus(string instanceId, string playerId, byte status, int time)
  1485. {
  1486. if(status != (byte)UnitActionStatus.DaZuo && status != (byte)UnitActionStatus.ClearYaoQi
  1487. && status != (byte)UnitActionStatus.Idle && status != (byte)UnitActionStatus.CrossRobbery
  1488. && status != (byte)UnitActionStatus.DaZuoRecoveryAttr)
  1489. {
  1490. return;
  1491. }
  1492. var node = getZoneNode(instanceId);
  1493. if (node == null)
  1494. {
  1495. return ;
  1496. }
  1497. var player = getPlayer(playerId);
  1498. if (player == null)
  1499. {
  1500. return ;
  1501. }
  1502. var instancePlayer = player.getInstancePlayer();
  1503. if(instancePlayer == null)
  1504. {
  1505. return;
  1506. }
  1507. //if(status == (byte)UnitActionStatus.ChuanGongA)
  1508. //{
  1509. // instancePlayer.changeState(new StateChuanGongA(instancePlayer), false);
  1510. //}
  1511. //else if(status == (byte)UnitActionStatus.ChuanGongB)
  1512. //{
  1513. // instancePlayer.changeState(new StateChuanGongB(instancePlayer), false);
  1514. //}
  1515. //else
  1516. if(status == (byte)UnitActionStatus.DaZuo)
  1517. {
  1518. instancePlayer.Virtual.TakeOffMount();
  1519. instancePlayer.changeState(new StateDaZuo(instancePlayer, time), false);
  1520. }
  1521. else if (status == (byte) UnitActionStatus.DaZuoRecoveryAttr)
  1522. {
  1523. //非战斗状态,才能打坐回血
  1524. if (instancePlayer.Virtual.GetBattleStatus() <= BattleStatus.ReadyBattle && (instancePlayer.CurrentActionStatus != UnitActionStatus.DaZuoRecoveryAttr) && (instancePlayer.CurrentActionStatus != UnitActionStatus.Move) )
  1525. {
  1526. instancePlayer.Virtual.TakeOffMount();
  1527. instancePlayer.changeState(new StateDaZuoRecoveryAttr(instancePlayer, time), false);
  1528. }
  1529. }
  1530. else if(status == (byte)UnitActionStatus.ClearYaoQi)
  1531. {
  1532. instancePlayer.Virtual.TakeOffMount();
  1533. instancePlayer.changeState(new StateClearYaoQi(instancePlayer), false);
  1534. }
  1535. else if (status == (byte)UnitActionStatus.Idle)
  1536. {
  1537. if(instancePlayer.CurrentActionStatus == UnitActionStatus.DaZuo || instancePlayer.CurrentActionStatus == UnitActionStatus.ChuanGongA
  1538. || instancePlayer.CurrentActionStatus == UnitActionStatus.ChuanGongB || instancePlayer.CurrentActionStatus == UnitActionStatus.DaZuoRecoveryAttr)
  1539. {
  1540. instancePlayer.CurrentState.MarkRemove();
  1541. }
  1542. }
  1543. else if(status == (byte)UnitActionStatus.CrossRobbery)
  1544. {
  1545. instancePlayer.Virtual.TakeOffMount();
  1546. instancePlayer.changeState(new StateDuJie(instancePlayer), false);
  1547. }
  1548. }
  1549. /// <summary>
  1550. /// 更改玩家状态
  1551. /// </summary>
  1552. /// <param name="playerId"></param>
  1553. /// <returns></returns>
  1554. public void r2b_notify_playerChuanGong(string instanceId, string playerIdA, string playerIdB)
  1555. {
  1556. var node = getZoneNode(instanceId);
  1557. if (node == null)
  1558. {
  1559. return;
  1560. }
  1561. var playerA = getPlayer(playerIdA);
  1562. var playerB = getPlayer(playerIdB);
  1563. if (playerA == null || playerB == null)
  1564. {
  1565. return;
  1566. }
  1567. var instancePlayerA = playerA.getInstancePlayer();
  1568. var instancePlayerB = playerB.getInstancePlayer();
  1569. if (instancePlayerA == null || instancePlayerB == null)
  1570. {
  1571. return;
  1572. }
  1573. instancePlayerA.Virtual.TakeOffMount();
  1574. instancePlayerB.Virtual.TakeOffMount();
  1575. instancePlayerA.changeState(new StateChuanGongA(instancePlayerA), false);
  1576. instancePlayerB.changeState(new StateChuanGongB(instancePlayerB), false);
  1577. //接受传功者,pos和方向设置
  1578. instancePlayerB.faceTo(instancePlayerA.Direction);
  1579. float xAdd = (float)(2 * Math.Cos(instancePlayerA.Direction)); //角Dir的对边
  1580. float yAdd = (float)(2 * Math.Sin(instancePlayerA.Direction)); //Dir的邻边
  1581. instancePlayerB.setPos(instancePlayerA.X + xAdd, instancePlayerA.Y + yAdd);
  1582. }
  1583. /** 通知山大王延时刷新 */
  1584. public void r2b_notifyMountainKingRefresh(string instanceId, string data)
  1585. {
  1586. var node = getZoneNode(instanceId);
  1587. if (node == null)
  1588. {
  1589. return;
  1590. }
  1591. List<KingRefreshData> refreshList = new List<KingRefreshData>();
  1592. dynamic propertyData = Json.Decode(data);
  1593. foreach(var temp in propertyData)
  1594. {
  1595. refreshList.Add(new KingRefreshData(temp.monsterId, temp.nextRefreshTime));
  1596. }
  1597. if(refreshList.Count > 0)
  1598. {
  1599. JSGMountainKingModule.OnMonsterRefreshNotify(node.GetBindGameSrvId(), refreshList);
  1600. }
  1601. }
  1602. #endregion
  1603. //----------------------------------------------------------------------------------------------
  1604. }
  1605. }