ZoneFlags.cs 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. using CommonAI.RTS;
  2. using CommonLang.Vector;
  3. using CommonAI.RTS.Manhattan;
  4. using CommonAI.Zone.ZoneEditor;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using CommonLang;
  10. using CommonAI.Zone.Helper;
  11. namespace CommonAI.ZoneClient
  12. {
  13. public abstract class ZoneFlag : ZoneLayerObject
  14. {
  15. protected readonly SceneObjectData data;
  16. public string Name { get; private set; }
  17. public bool Enable { get; internal set; }
  18. public string Tag { get; internal set; }
  19. public SceneObjectData EditorData { get { return data; } }
  20. public ZoneFlag(SceneObjectData data, ZoneLayer parent)
  21. : base(parent)
  22. {
  23. this.data = data;
  24. this.Name = data.Name;
  25. this.mPos.SetX(data.X);
  26. this.mPos.SetY(data.Y);
  27. this.Enable = data.Enable;
  28. this.Tag = data.Tag;
  29. }
  30. public virtual void OnInit() { }
  31. }
  32. public class ZoneEditorUnit : ZoneFlag
  33. {
  34. public readonly UnitData Data;
  35. public ZoneEditorUnit(UnitData data, ZoneLayer parent)
  36. : base(data, parent)
  37. {
  38. this.Data = data;
  39. }
  40. }
  41. public class ZoneEditorItem : ZoneFlag
  42. {
  43. public readonly ItemData Data;
  44. public ZoneEditorItem(ItemData data, ZoneLayer parent)
  45. : base(data, parent)
  46. {
  47. this.Data = data;
  48. }
  49. }
  50. public class ZoneEditorRegion : ZoneFlag
  51. {
  52. public readonly RegionData Data;
  53. public ZoneEditorRegion(RegionData data, ZoneLayer parent)
  54. : base(data, parent)
  55. {
  56. this.Data = data;
  57. }
  58. }
  59. public class ZoneEditorPoint : ZoneFlag
  60. {
  61. public readonly PointData Data;
  62. public ZoneEditorPoint(PointData data, ZoneLayer parent)
  63. : base(data, parent)
  64. {
  65. this.Data = data;
  66. }
  67. }
  68. public class ZoneEditorDecoration : ZoneFlag
  69. {
  70. public readonly DecorationData Data;
  71. public readonly float W;
  72. public readonly float H;
  73. private readonly Rectangle BoundingBox;
  74. public ZoneEditorDecoration(DecorationData flag, ZoneLayer parent)
  75. : base(flag, parent)
  76. {
  77. this.Data = flag;
  78. this.W = flag.W;
  79. this.H = flag.H;
  80. switch (Data.RegionType)
  81. {
  82. case DecorationData.Shape.STRIP:
  83. TLine2 line = new TLine2(X, Y, X, Y);
  84. MathVector.movePolarExt(ref line.p, Data.StripDirection, -H / 2);
  85. MathVector.movePolarExt(ref line.q, Data.StripDirection, +H / 2);
  86. BoundingBox = new Rectangle(
  87. Math.Min(line.p.X, line.q.X),
  88. Math.Min(line.p.Y, line.q.Y),
  89. Math.Abs(line.p.X - line.q.X),
  90. Math.Abs(line.p.Y - line.q.Y));
  91. break;
  92. case DecorationData.Shape.RECTANGLE:
  93. case DecorationData.Shape.ROUND:
  94. default:
  95. BoundingBox = new Rectangle(X - W / 2, Y - H / 2, W, H);
  96. break;
  97. }
  98. }
  99. public void DecorationChanged()
  100. {
  101. if (Data.Blockable)
  102. {
  103. if (Enable)
  104. {
  105. this.FillTerrain(fill_Terrain_value);
  106. }
  107. else
  108. {
  109. this.FillTerrain(fill_Terrain_reset);
  110. }
  111. }
  112. }
  113. public override void OnInit()
  114. {
  115. this.DecorationChanged();
  116. }
  117. #region FillTerrain
  118. private void fill_Terrain_value(int bx, int by)
  119. {
  120. Parent.PathFinder.TryFillTerrain(bx, by, Data.BlockValue);
  121. }
  122. private void fill_Terrain_reset(int bx, int by)
  123. {
  124. Parent.PathFinder.TryFillTerrain(bx, by, Parent.TerrainSrc.TerrainMatrix[bx, by]);
  125. }
  126. protected void FillTerrain(AstarManhattan.ForEachTerrainAction fillAction)
  127. {
  128. if (!Parent.IsShareTerrain)
  129. {
  130. var mmap = Parent.PathFinder.MMap;
  131. switch (Data.RegionType)
  132. {
  133. case DecorationData.Shape.RECTANGLE:
  134. AstarManhattan.ForEachTerrainRect(mmap, X - W / 2, Y - H / 2, W, H, fillAction);
  135. break;
  136. case DecorationData.Shape.ROUND:
  137. AstarManhattan.ForEachTerrainEllipse(mmap, X - W / 2, Y - H / 2, W, H, fillAction);
  138. break;
  139. case DecorationData.Shape.STRIP:
  140. TLine2 line = new TLine2(X, Y, X, Y);
  141. MathVector.movePolarExt(ref line.p, Data.StripDirection, -H / 2);
  142. MathVector.movePolarExt(ref line.q, Data.StripDirection, +H / 2);
  143. AstarManhattan.ForEachTerrainStripWidth(mmap, line.p.X, line.p.Y, line.q.X, line.q.Y, W / 2, fillAction);
  144. break;
  145. }
  146. Parent.PathFinder.BeginFindPath();
  147. }
  148. }
  149. public bool TouchBlock(float x, float y)
  150. {
  151. if (Data.Blockable && Enable && Parent.PathFinder.MMap.TestBlockValue(Data.BlockValue))
  152. {
  153. int bx = (((int)x) / Parent.TerrainSrc.GridCellW);
  154. int by = (((int)y) / Parent.TerrainSrc.GridCellH);
  155. var mmap = Parent.PathFinder.MMap;
  156. switch (Data.RegionType)
  157. {
  158. case DecorationData.Shape.RECTANGLE:
  159. return AstarManhattan.ForEachTerrainRect(mmap, X - W / 2, Y - H / 2, W, H,
  160. (cx, cy) => { return cx == bx && cy == by; });
  161. case DecorationData.Shape.ROUND:
  162. return AstarManhattan.ForEachTerrainEllipse(mmap, X - W / 2, Y - H / 2, W, H,
  163. (cx, cy) => { return cx == bx && cy == by; });
  164. case DecorationData.Shape.STRIP:
  165. TLine2 line = new TLine2(X, Y, X, Y);
  166. MathVector.movePolarExt(ref line.p, Data.StripDirection, -H / 2);
  167. MathVector.movePolarExt(ref line.q, Data.StripDirection, +H / 2);
  168. return AstarManhattan.ForEachTerrainStripWidth(mmap, line.p.X, line.p.Y, line.q.X, line.q.Y, W / 2,
  169. (cx, cy) => { return cx == bx && cy == by; });
  170. }
  171. }
  172. return false;
  173. }
  174. #endregion
  175. }
  176. public class ZoneEditorArea : ZoneFlag
  177. {
  178. public readonly AreaData Data;
  179. public readonly float W;
  180. public readonly float H;
  181. public int CurrentMapNodeValue { get; private set; }
  182. public ZoneEditorArea(AreaData data, ZoneLayer parent)
  183. : base(data, parent)
  184. {
  185. this.Data = data;
  186. this.W = data.W;
  187. this.H = data.H;
  188. }
  189. public override void OnInit()
  190. {
  191. var current_node = Parent.PathFinder.GetMapNodeByPos(X, Y);
  192. if (current_node != null)
  193. {
  194. this.CurrentMapNodeValue = current_node.Value;
  195. var list = Parent.TerrainAreaGenerator.GetContinuousMapNode(X, Y, W / 2, H / 2);
  196. foreach (var index in list)
  197. {
  198. var node = Parent.PathFinder.GetMapNode(index.BX, index.BY) as ZoneMapNode;
  199. if (node != null)
  200. {
  201. node.SetClientArea(this);
  202. }
  203. }
  204. }
  205. }
  206. }
  207. }