EditorDisplay.World.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using CommonAI.Zone.ZoneEditor.Plugin.EditorToScene;
  9. using CommonAI.Zone.ZoneEditor.Plugin.SceneToEditor;
  10. using CommonAI.Zone;
  11. using CommonAI.Zone.ZoneEditor;
  12. using CommonAI.RTS;
  13. using CommonLang.Vector;
  14. using System.Collections;
  15. using CommonAI.Zone.Instance;
  16. using CommonLang;
  17. using GameEditorPlugin.Win32;
  18. using CommonFroms.Drawing;
  19. using CommonAI.RTS.Manhattan;
  20. using GameEditorPlugin.Tools;
  21. using CommonAI.Zone.Helper;
  22. namespace GameEditorPlugin.Win32.Editor
  23. {
  24. public class EditorWorld : DisplayTerrain
  25. {
  26. private EditorDisplayPanel owner;
  27. private HashMap<string, EditorObject> objectes = new HashMap<string, EditorObject>();
  28. private ZoneManhattanMap mmap;
  29. private ManhattanMapAreaGenerator mmap_area_gen;
  30. public ZoneManhattanMap ManhattanMap
  31. {
  32. get { return mmap; }
  33. }
  34. public ManhattanMapAreaGenerator MapAreaGenerator
  35. {
  36. get { return mmap_area_gen; }
  37. }
  38. public EditorWorld(EditorDisplayPanel owner, ZoneInfo data)
  39. {
  40. this.owner = owner;
  41. this.mmap = new EditorZoneManhattanMap(data, null);
  42. this.mmap_area_gen = new ManhattanMapAreaGenerator(data);
  43. this.IsAreaDirty = true;
  44. base.InitTerrain(data);
  45. }
  46. public void ResetTerrain(ZoneInfo data)
  47. {
  48. this.mmap = new EditorZoneManhattanMap(data, null);
  49. this.mmap_area_gen = new ManhattanMapAreaGenerator(data);
  50. this.IsAreaDirty = true;
  51. base.InitTerrain(data);
  52. }
  53. public override void Dispose()
  54. {
  55. }
  56. //---------------------------------------------------
  57. private HashSet<RspZoneFlagChanged> fill_stack = new HashSet<RspZoneFlagChanged>();
  58. public delegate void TerrainMapBlockAction(ZoneInfo terrain, int bx, int by);
  59. public void ForEachTerrainRound(float wx, float wy, float size, TerrainMapBlockAction action)
  60. {
  61. int ix = (int)(wx / CellW);
  62. int iy = (int)(wy / CellH);
  63. float cw = CellW;
  64. float ch = CellH;
  65. float cx = cw / 2f;
  66. float cy = ch / 2f;
  67. float dr = (float)size * cw / 2f;
  68. float dw = (float)size * cw;
  69. float dh = (float)size * ch;
  70. float sx = ((int)((wx - dw / 2f) / CellW)) * cw;
  71. float sy = ((int)((wy - dh / 2f) / CellH)) * ch;
  72. for (float x = sx; x <= sx + dw; x += CellW)
  73. {
  74. for (float y = sy; y <= sy + dh; y += CellH)
  75. {
  76. if (CMath.includeRoundPoint(wx, wy, dr, x + cx, y + cy))
  77. {
  78. ix = (int)(x / CellW);
  79. iy = (int)(y / CellH);
  80. if (ix >= 0 && ix < Terrain.XCount && iy >= 0 && iy < Terrain.YCount)
  81. {
  82. action(Terrain, ix, iy);
  83. }
  84. }
  85. }
  86. }
  87. }
  88. public void ForEachTerrainRectangle(float wx, float wy, float width, float height, TerrainMapBlockAction action)
  89. {
  90. int cx1 = (int)((wx - width / 2) / CellW);
  91. int cy1 = (int)((wy - height / 2) / CellH);
  92. int cx2 = (int)((wx + width / 2) / CellW);
  93. int cy2 = (int)((wy + height / 2) / CellH);
  94. cx1 = Math.Max(cx1, 0);
  95. cy1 = Math.Max(cy1, 0);
  96. cx2 = Math.Min(cx2, Terrain.XCount - 1);
  97. cy2 = Math.Min(cy2, Terrain.YCount - 1);
  98. for (int cx = cx1; cx <= cx2; ++cx)
  99. {
  100. for (int cy = cy1; cy <= cy2; ++cy)
  101. {
  102. action(Terrain, cx, cy);
  103. }
  104. }
  105. }
  106. public void FillTerrainRound(float wx, float wy, float size, int flag)
  107. {
  108. ForEachTerrainRound(wx, wy, size, (terrain, ix, iy) =>
  109. {
  110. Terrain.TerrainMatrix[ix, iy] = flag;
  111. fill_stack.Add(new RspZoneFlagChanged(ix, iy, flag));
  112. });
  113. IsAreaDirty = true;
  114. }
  115. public void FillTerrainRectangle(float wx, float wy, float width, float height, int flag)
  116. {
  117. ForEachTerrainRectangle(wx, wy, width, height, (terrain, ix, iy) =>
  118. {
  119. Terrain.TerrainMatrix[ix, iy] = flag;
  120. fill_stack.Add(new RspZoneFlagChanged(ix, iy, flag));
  121. });
  122. IsAreaDirty = true;
  123. }
  124. public List<RspZoneFlagChanged> PopFillTerrainStack()
  125. {
  126. List<RspZoneFlagChanged> ret = new List<RspZoneFlagChanged>(fill_stack);
  127. fill_stack.Clear();
  128. return ret;
  129. }
  130. //---------------------------------------------------
  131. #region Events
  132. public void AddUnit(MsgPutUnit msg)
  133. {
  134. AddObject(new EditorUnit(this, msg));
  135. }
  136. public void AddItem(MsgPutItem msg)
  137. {
  138. AddObject(new EditorItem(this, msg));
  139. }
  140. public void AddRegion(MsgPutRegion msg)
  141. {
  142. AddObject(new EditorRegion(this, msg));
  143. }
  144. public void AddPoint(MsgPutPoint msg)
  145. {
  146. AddObject(new EditorPoint(this, msg));
  147. }
  148. public void AddDecoration(MsgPutDecoration msg)
  149. {
  150. AddObject(new EditorDecoration(this, msg));
  151. }
  152. public void AddArea(MsgPutArea msg)
  153. {
  154. this.IsAreaDirty = true;
  155. AddObject(new EditorArea(this, msg));
  156. }
  157. public void RenameObject(MsgRenameObject msg)
  158. {
  159. EditorObject obj = objectes.Get(msg.SrcName);
  160. if (obj != null)
  161. {
  162. obj.Name = msg.DstName;
  163. }
  164. }
  165. public void RemoveObject(MsgRemoveObject msg)
  166. {
  167. objectes.RemoveByKey(msg.Name);
  168. }
  169. public void SelectObject(MsgSelectObject msg)
  170. {
  171. EditorObject obj = objectes.Get(msg.Name);
  172. DeselectAll(obj);
  173. if (obj != null)
  174. {
  175. obj.Selected = true;
  176. if (msg.IsLocateCamera)
  177. {
  178. setCamera(obj.X, obj.Y);
  179. }
  180. }
  181. SelectedObject = obj;
  182. }
  183. public EditorObject SelectedObject { get; private set; }
  184. #endregion
  185. //---------------------------------------------------
  186. #region Render
  187. internal bool IsAreaDirty { get; private set; }
  188. private SolidBrush name_brush = new SolidBrush(Color.White);
  189. private Font name_font = new Font(@"微软雅黑", 9f, FontStyle.Regular);
  190. protected override void renderObjects(Graphics g, RectangleF worldBounds)
  191. {
  192. drawObjectes<EditorObject>(g, worldBounds, objectes.Values);
  193. if (owner.ShowGrid || owner.LastMode.Mode == MsgSetEditorMode.MODE_TERRAIN)
  194. {
  195. drawGrid(g, worldBounds, CellW, CellH);
  196. }
  197. }
  198. protected override void renderScreen(Graphics g, RectangleF worldBounds)
  199. {
  200. renderUnitsHP(g, worldBounds);
  201. }
  202. protected override void renderTerrain(Graphics g, RectangleF rect)
  203. {
  204. base.renderTerrain(g, rect);
  205. foreach (var so in objectes.Values)
  206. {
  207. so.render_in_terrain(g);
  208. }
  209. }
  210. private void renderUnitsHP(Graphics g, RectangleF rect)
  211. {
  212. bool showall = EditorDisplayPanel.ShowAll;
  213. foreach (EditorObject u in objectes.Values)
  214. {
  215. if (showall || u.Pickable)
  216. {
  217. if (CMath.intersectRect2(
  218. rect.X,
  219. rect.Y,
  220. rect.Width,
  221. rect.Height,
  222. u.X + u.LocalBounds.X,
  223. u.Y + u.LocalBounds.Y,
  224. u.LocalBounds.Width,
  225. u.LocalBounds.Height))
  226. {
  227. System.Drawing.Drawing2D.GraphicsState state = g.Save();
  228. g.TranslateTransform(
  229. worldToScreenX(u.X),
  230. worldToScreenY(u.Y));
  231. g.DrawString(u.Name, name_font, name_brush, 0, 0);
  232. g.Restore(state);
  233. }
  234. }
  235. }
  236. }
  237. public override void render(Graphics g)
  238. {
  239. base.render(g);
  240. this.IsAreaDirty = false;
  241. }
  242. #endregion
  243. //---------------------------------------------------
  244. public EditorObject GetObject(string name)
  245. {
  246. return objectes.Get(name);
  247. }
  248. private void AddObject(EditorObject obj)
  249. {
  250. var removed = objectes.RemoveByKey(obj.Name);
  251. objectes.Add(obj.Name, obj);
  252. if (SelectedObject == removed)
  253. {
  254. SelectedObject = obj;
  255. obj.Selected = true;
  256. }
  257. }
  258. public void DeselectAll(EditorObject exclude = null)
  259. {
  260. SelectedObject = null;
  261. foreach (EditorObject obj in objectes.Values)
  262. {
  263. if (exclude != obj)
  264. {
  265. if (obj.Selected)
  266. {
  267. obj.Selected = false;
  268. RspOnObjectSelected rsp = new RspOnObjectSelected();
  269. rsp.Name = obj.Name;
  270. rsp.Selected = false;
  271. owner.SendToEditor(rsp);
  272. }
  273. }
  274. }
  275. }
  276. public void Deselect(EditorObject obj)
  277. {
  278. if (SelectedObject == obj)
  279. {
  280. SelectedObject = null;
  281. }
  282. if (obj.Selected)
  283. {
  284. obj.Selected = false;
  285. RspOnObjectSelected rsp = new RspOnObjectSelected();
  286. rsp.Name = obj.Name;
  287. rsp.Selected = false;
  288. owner.SendToEditor(rsp);
  289. }
  290. }
  291. public EditorObject TryPickObject(float x, float y)
  292. {
  293. bool showall = EditorDisplayPanel.ShowAll;
  294. foreach (EditorObject u in objectes.Values)
  295. {
  296. if (showall || u.Pickable)
  297. {
  298. if (u.touch(x, y))
  299. {
  300. return u;
  301. }
  302. }
  303. }
  304. return null;
  305. }
  306. public EditorObject PickObject(float x, float y)
  307. {
  308. bool showall = EditorDisplayPanel.ShowAll;
  309. foreach (EditorObject u in objectes.Values)
  310. {
  311. if (showall || u.Pickable)
  312. {
  313. if (u.touch(x, y))
  314. {
  315. u.Selected = true;
  316. RspOnObjectSelected rsp = new RspOnObjectSelected();
  317. rsp.Name = u.Name;
  318. rsp.Selected = true;
  319. owner.SendToEditor(rsp);
  320. return u;
  321. }
  322. }
  323. }
  324. DeselectAll();
  325. return null;
  326. }
  327. public EditorObject PickObject(string name)
  328. {
  329. var u = GetObject(name);
  330. if (u != null && u.Pickable)
  331. {
  332. u.Selected = true;
  333. RspOnObjectSelected rsp = new RspOnObjectSelected();
  334. rsp.Name = u.Name;
  335. rsp.Selected = true;
  336. owner.SendToEditor(rsp);
  337. return u;
  338. }
  339. DeselectAll();
  340. return null;
  341. }
  342. }
  343. }