ActorMoveAgent.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. using CommonAI.RTS.Manhattan;
  2. using CommonAI.Zone.Helper;
  3. using CommonLang;
  4. using CommonLang.Vector;
  5. using System;
  6. namespace CommonAI.ZoneClient.Agent
  7. {
  8. public class ActorMoveAgent : AbstractAgent
  9. {
  10. public float TargetX { get { return target.X; } }
  11. public float TargetY { get { return target.Y; } }
  12. public AstarManhattan.FindPathResult Result { get; private set; }
  13. private float EndDistance { get; set; }
  14. public UnitActionStatus MoveState { get; set; }
  15. public object UserData { get; set; }
  16. public override bool IsEnd { get { return way_points == null; } }
  17. public override bool IsDuplicate { get { return false; } }
  18. public bool IsPause { get; set; }
  19. public System.Action<float, float, UnitActionStatus> UpdateCheck;
  20. private float fSeekDstRadius = 3f;
  21. public AstarManhattan.MWayPoint WayPoints { get { return way_points; } }
  22. private AstarManhattan.MWayPoint way_points;
  23. private Vector2 target;
  24. private float cur_dir = 0;
  25. private bool auto_adjust = false;
  26. private Vector2 cur_pos = new Vector2();
  27. private bool bNeedFixShake = false;
  28. public ActorMoveAgent(float toX, float toY, float endDistance, UnitActionStatus st = UnitActionStatus.Move, bool autoAdjust = true, object ud = null, float seekDstRadius = 3.0f)
  29. {
  30. this.target = new Vector2(toX, toY);
  31. this.auto_adjust = autoAdjust;
  32. this.EndDistance = endDistance;
  33. this.MoveState = st;
  34. this.UserData = ud;
  35. this.fSeekDstRadius = seekDstRadius;
  36. }
  37. protected override void OnInit(ZoneActor actor)
  38. {
  39. this.Owner.OnDoEvent += Owner_OnDoEvent;
  40. this.OnEnd += ActorMoveAgent_OnEnd;
  41. this.Start();
  42. }
  43. private void ActorMoveAgent_OnEnd(AbstractAgent agent)
  44. {
  45. if (this.Owner != null)
  46. {
  47. this.Owner.OnDoEvent -= Owner_OnDoEvent;
  48. }
  49. }
  50. protected override void OnDispose()
  51. {
  52. this.Owner.OnDoEvent -= Owner_OnDoEvent;
  53. base.OnDispose();
  54. way_points = null;
  55. }
  56. public override void Abort()
  57. {
  58. base.Abort();
  59. Stop();
  60. }
  61. private void Owner_OnDoEvent(ZoneObject obj, Zone.ObjectEvent e)
  62. {
  63. if (e is Zone.UnitForceSyncPosEvent)
  64. {
  65. this.Abort();
  66. }
  67. }
  68. //目标移动位置了,重新规则路线
  69. public void RelocateTarget(float x, float y)
  70. {
  71. target.SetX(x);
  72. target.SetY(y);
  73. Start();
  74. }
  75. /// <summary>
  76. /// 再次开始
  77. /// </summary>
  78. public void Start()
  79. {
  80. float distance = MathVector.getDistance(Owner.X, Owner.Y, TargetX, TargetY);
  81. if (distance <= EndDistance)
  82. {
  83. Result = AstarManhattan.FindPathResult.Destination;
  84. return;
  85. }
  86. float destX = TargetX, destY = TargetY;
  87. if(Layer.TryTouchMap(Owner, destX, destY))
  88. {
  89. way_points = null;
  90. Result = AstarManhattan.FindPathResult.NoWay;
  91. //目的地不可到达
  92. if (!auto_adjust)
  93. {
  94. return;
  95. }
  96. //优化为附近可到达区域
  97. float fixx = -1, fixy = -1;
  98. if (!Owner.Parent.GetNearWay(Owner.X, Owner.Y, destX, destY, fSeekDstRadius, ref fixx, ref fixy))
  99. {
  100. return;
  101. }
  102. destX = fixx;
  103. destY = fixy;
  104. }
  105. Result = Owner.Parent.FindPathResult(Owner.X, Owner.Y, destX, destY, out way_points);
  106. if (Result == AstarManhattan.FindPathResult.Cross)
  107. {
  108. if (way_points == null || Layer.TryTouchMap(Owner, way_points.PosX, way_points.PosY))
  109. {
  110. Result = AstarManhattan.FindPathResult.NoWay;
  111. }
  112. else if (way_points != null && way_points.Next != null)
  113. {
  114. bNeedFixShake = true;
  115. }
  116. }
  117. }
  118. /// <summary>
  119. /// 外部打断寻路.
  120. /// </summary>
  121. public void Stop()
  122. {
  123. this.way_points = null;
  124. }
  125. static string GetStackTraceModelName()
  126. {
  127. //当前堆栈信息
  128. System.Diagnostics.StackTrace st = new System.Diagnostics.StackTrace();
  129. System.Diagnostics.StackFrame[] sfs = st.GetFrames();
  130. string _filterdName = "ResponseWrite,ResponseWriteError,";
  131. string _fullName = string.Empty, _methodName = string.Empty;
  132. for (int i = 1; i < sfs.Length; ++i)
  133. {
  134. if (System.Diagnostics.StackFrame.OFFSET_UNKNOWN == sfs[i].GetILOffset()) break;
  135. _methodName = sfs[i].GetMethod().Name;
  136. if (_filterdName.Contains(_methodName)) continue;
  137. _fullName = _methodName + "()->" + _fullName;
  138. }
  139. st = null;
  140. sfs = null;
  141. _filterdName = _methodName = null;
  142. return _fullName.TrimEnd('-', '>');
  143. }
  144. private void Turn(int intervalMS)
  145. {
  146. if (way_points != null)
  147. {
  148. float direction = MathVector.getDegree(cur_pos.X, cur_pos.Y, way_points.PosX, way_points.PosY);
  149. this.cur_dir = MoveHelper.DirectionChange(
  150. direction,
  151. cur_dir,
  152. Owner.TurnSpeedSEC,
  153. intervalMS);
  154. }
  155. }
  156. //解决快速连续寻路时,移动方向会一直摇摆的问题
  157. private void fixShake(Vector2 cur, AstarManhattan.MWayPoint head)
  158. {
  159. if(head.Next != null)
  160. {
  161. TVector2 nowPos = new TVector2(cur.X, cur.Y);
  162. TVector2 vcFirst = new TVector2(head.PosX, head.PosY);
  163. TVector2 vcNext = new TVector2(head.Next.PosX, head.Next.PosY);
  164. TVector2 v1 = nowPos - vcFirst;
  165. TVector2 v2 = vcNext - vcFirst;
  166. float a = (float)Math.Atan2(v1.Y, v1.X);
  167. float b = (float)Math.Atan2(v2.Y, v2.X);
  168. if(float.Equals(a, b) || float.Equals(Math.PI, Math.Abs(a - b)))
  169. {
  170. //现在的点就是在连线之间,或延长线上
  171. TVector2 v3 = nowPos - vcNext;
  172. if (v3.X * v2.X <= 0 && v3.Y * v2.Y <= 0)
  173. {
  174. //如果当前点在两路点连线之间,就不能朝vcFirst移动了(这样就会倒退,造成摇摆)
  175. head.SetPos(nowPos.X, nowPos.Y);
  176. }
  177. }
  178. else
  179. {
  180. //当前位置不在两个路点的连线上
  181. float dis = nowPos.DistanceTo(vcFirst) * (float)Math.Cos(Math.Abs(a - b));
  182. float dx = (float)(Math.Cos(b) * dis);
  183. float dy = (float)(Math.Sin(b) * dis);
  184. //如果垂足在两路点连线之外,初始路点不变;如果在连线之间,将寻路起点设为垂足
  185. if (dx * v2.X > 0)
  186. {
  187. head.SetPos(vcFirst.X + dx, vcFirst.Y + dy);
  188. }
  189. }
  190. }
  191. }
  192. protected override void BeginUpdate(int intervalMS)
  193. {
  194. if (way_points == null)
  195. {
  196. return;
  197. }
  198. if (IsPause || Owner.CurrentState == UnitActionStatus.Spawn)
  199. {
  200. return;
  201. }
  202. if (!Owner.IsCanControlMove)
  203. {
  204. this.Abort();
  205. return;
  206. }
  207. cur_pos.SetX(Owner.X);
  208. cur_pos.SetY(Owner.Y);
  209. cur_dir = Owner.Direction;
  210. if (way_points != null)
  211. {
  212. float disSquare = MathVector.getDistanceSquare(cur_pos.X, cur_pos.Y, TargetX, TargetY);
  213. if (disSquare < EndDistance * EndDistance)
  214. {
  215. this.Stop();
  216. return;
  217. }
  218. }
  219. if (bNeedFixShake)
  220. {
  221. fixShake(cur_pos, way_points);
  222. bNeedFixShake = false;
  223. }
  224. float length = MoveHelper.GetDistance(intervalMS, Owner.MoveSpeedSEC);
  225. float distance = MathVector.getDistance(cur_pos.X, cur_pos.Y, way_points.PosX, way_points.PosY);
  226. if (MathVector.moveTo(cur_pos, way_points.PosX, way_points.PosY, length))
  227. {
  228. this.way_points = way_points.Next;
  229. if (distance < length && way_points != null)
  230. {
  231. MathVector.moveTo(cur_pos, way_points.PosX, way_points.PosY, length - distance);
  232. }
  233. }
  234. else
  235. {
  236. Turn(intervalMS);
  237. }
  238. if (Layer.TryTouchMap(Owner, cur_pos.X, cur_pos.Y))
  239. {
  240. this.Abort();
  241. }
  242. else
  243. {
  244. Owner.SendUpdatePos(cur_pos.X, cur_pos.Y, cur_dir, MoveState);
  245. if (UpdateCheck != null)
  246. {
  247. UpdateCheck(TargetX, TargetY, MoveState);
  248. }
  249. }
  250. }
  251. public bool TryStep()
  252. {
  253. if (way_points != null)
  254. {
  255. float px = Owner.X;
  256. float py = Owner.Y;
  257. int intervalMS = Layer.CurrentIntervalMS;
  258. float length = MoveHelper.GetDistance(intervalMS, Owner.MoveSpeedSEC);
  259. float distance = MathVector.getDistance(px, py, way_points.PosX, way_points.PosY);
  260. MathVector.moveTo(ref px, ref py, way_points.PosX, way_points.PosY, length);
  261. if (Layer.TryTouchMap(Owner, px, py))
  262. {
  263. return false;
  264. }
  265. return true;
  266. }
  267. return false;
  268. }
  269. }
  270. }