BattleMgr_Cmd.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. using CommonAI.Zone;
  2. using CommonLang.Geometry;
  3. using ET.Client;
  4. using ET.EventType;
  5. using ET.Server;
  6. using System;
  7. namespace ET
  8. {
  9. [Event(SceneType.None)]
  10. public class BattleFuncHandler : BEvent<BattleFunc>
  11. {
  12. public override void OnEvent(BattleFunc a)
  13. {
  14. Log.Debug($"Battle Func:{a.FuncIndex}");
  15. asyncHandler(a.FuncIndex).Coroutine();
  16. }
  17. //获得当前战场focus中心(当前塔位置)
  18. private Vector2 vecTemp = new Vector2();
  19. private Vector2 GetCurBattleCenter()
  20. {
  21. foreach(var tid in ConstGame.TowerTemplateIDs)
  22. {
  23. var tower = BattleMgr.Instance.GetUnitByTemplateID(tid);
  24. if(tower != null && !tower.IsDead)
  25. {
  26. vecTemp.X = tower.ZUnit.X;
  27. vecTemp.Y = tower.ZUnit.Y;
  28. return vecTemp;
  29. }
  30. }
  31. return new Vector2(0, 0);
  32. }
  33. private async ETTask asyncHandler(BattleFunc.Index index)
  34. {
  35. var session = PlayerComponent.Instance.ClientScene().GetComponent<SessionComponent>().Session;
  36. switch (index)
  37. {
  38. case BattleFunc.Index.Func2:
  39. var units = new int[] {105, 108, 111, 117};
  40. var centerpos = GetCurBattleCenter();
  41. var rand = new Random();
  42. foreach (var id in units)
  43. {
  44. float r = (rand.Next(1000)) / 100.0f + 5;
  45. double ang = rand.Next(180) / 180.0f * Math.PI + Math.PI;
  46. Log.Debug($"rand unit r({r}), ang({ang})");
  47. float x = centerpos.X + (float)(r * Math.Cos(ang));
  48. float y = centerpos.Y - (float)(r * Math.Sin(ang));
  49. var ret = await session.Call(new C2G_AddUnitsToMap()
  50. {
  51. UnitId = id,
  52. Force = 1,
  53. X = (int)x,
  54. Y = (int)y
  55. });
  56. if (ret.Error != 0)
  57. {
  58. Log.Error(ret.Message);
  59. }
  60. }
  61. break;
  62. default:
  63. break;
  64. }
  65. }
  66. }
  67. //发送战斗服指令相关
  68. public partial class BattleMgr
  69. {
  70. private bool autoFight;
  71. public bool AutoFight
  72. {
  73. get
  74. {
  75. return autoFight;
  76. }
  77. set
  78. {
  79. if(value == autoFight) return;
  80. else
  81. {
  82. autoFight = value;
  83. }
  84. }
  85. }
  86. public CommonAI.Zone.Action SetAutoFight(bool flag)
  87. {
  88. return new UnitGuardAction(UnitMgr.Instance.ActorId, flag, CommonAI.XmdsConstConfig.AUTO_GUARD_MODE_POINT);
  89. }
  90. }
  91. }