123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using CommonAI.RTS;
- using CommonLang.Vector;
- using System.Drawing;
- using CommonAI.Zone;
- using CommonLang;
- using System.Drawing.Drawing2D;
- using System.Windows.Forms;
- using CommonFroms;
- using CommonLang.Property;
- using CommonAI.Zone.Helper;
- using CommonAI.RTS.Manhattan;
- using System.Reflection;
- namespace GameEditorPlugin.Win32
- {
- public class EditorZoneManhattanMap : ZoneManhattanMap
- {
- public EditorZoneManhattanMap(ZoneInfo info, TerrainDefinitionMap define)
- : base(info, define)
- {
- }
- public override AstarManhattan.MMapNode CreateMapNode()
- {
- return new AstarManhattan.MMapNode();
- }
- }
- //-----------------------------------------------------------------------------------------------
- abstract public class DisplayObject
- {
- public abstract bool Visible { get; }
- public abstract float X { get; }
- public abstract float Y { get; }
- public abstract float Z { get; }
- public abstract RectangleF LocalBounds { get; }
- public abstract void render(Graphics g);
- public virtual void render_begin(Graphics g) { }
- public virtual void render_end(Graphics g) { }
- public virtual void renderHP(Graphics g) { }
- public virtual void renderName(Graphics g, Font font, Brush brush) { }
- }
- //-----------------------------------------------------------------------------------------------
- abstract public class DisplayTerrain : IDisposable
- {
- //-----------------------------------------------------------------------------------------------------------------
- #region ShowTags
- [Desc("显示Z高度", "show")]
- public bool ShowZ = true;
- [Desc("显示日志", "show")]
- public bool ShowLog = false;
- [Desc("显示地形", "show")]
- public bool ShowTerrain = true;
- public void GenShowItems(ToolStripDropDownButton drop)
- {
- List<ToolStripMenuItem> list = new List<ToolStripMenuItem>();
- foreach (var field in GetType().GetFields())
- {
- DescAttribute desc = PropertyUtil.GetAttribute<DescAttribute>(field);
- if (desc != null && field.FieldType == typeof(bool) && desc.Category == "show")
- {
- ToolStripMenuItem chk = new ToolStripMenuItem();
- chk.Size = new System.Drawing.Size(152, 22);
- chk.CheckOnClick = true;
- chk.Checked = (bool)field.GetValue(this);
- chk.Text = desc.Desc;
- chk.Tag = field;
- chk.Click += new System.EventHandler(this.chk_Click);
- list.Add(chk);
- }
- }
- drop.DropDownItems.AddRange(list.ToArray());
- }
- private void chk_Click(object sender, EventArgs e)
- {
- var chk = sender as ToolStripMenuItem;
- var field = chk.Tag as FieldInfo;
- field.SetValue(this, chk.Checked);
- }
- #endregion
- //-----------------------------------------------------------------------------------------------------------------
- private ZoneInfo mZoneInfo;
- private List<DisplayLog> logs = new List<DisplayLog>();
- //-----------------------------------------------------------------------------------------------------------------
- public abstract void Dispose();
- //-----------------------------------------------------------------------------------------------------------------
- public ZoneInfo Terrain { get { return mZoneInfo; } }
- protected virtual void InitTerrain(ZoneInfo zoneInfo)
- {
- this.mZoneInfo = zoneInfo;
- }
- public int Width { get { if (mZoneInfo != null) return mZoneInfo.TotalWidth; return 1; } }
- public int Height { get { if (mZoneInfo != null) return mZoneInfo.TotalHeight; return 1; } }
- public int CellW { get { if (mZoneInfo != null) return mZoneInfo.GridCellW; return 1; } }
- public int CellH { get { if (mZoneInfo != null) return mZoneInfo.GridCellH; return 1; } }
- public int XCount { get { if (mZoneInfo != null) return mZoneInfo.XCount; return 1; } }
- public int YCount { get { if (mZoneInfo != null) return mZoneInfo.YCount; return 1; } }
- //-----------------------------------------------------------------------------------------------------------------
- private QueryKey queryKey;
- public void BindMessageFilter(PictureBox control)
- {
- if (queryKey == null)
- {
- this.queryKey = new QueryKey(control);
- }
- }
- public void UnbindMessageFilter()
- {
- if (queryKey != null)
- {
- queryKey.Dispose();
- queryKey = null;
- }
- }
- public bool IsMouseDown(MouseButtons btn)
- {
- if (queryKey != null)
- {
- return queryKey.IsMouseDown(btn);
- }
- return false;
- }
- public bool IsMouseUp(MouseButtons btn)
- {
- if (queryKey != null)
- {
- return queryKey.IsMouseUp(btn);
- }
- return false;
- }
- public bool IsMouseHold(MouseButtons btn)
- {
- if (queryKey != null)
- {
- return queryKey.IsMouseHold(btn);
- }
- return false;
- }
- //-----------------------------------------------------------------------------------------------------------------
- // windows
- private RectangleF mWindow = new RectangleF(0, 0, 512, 512);
- private float mouseX = 0;
- private float mouseY = 0;
- private float cameraX = 0;
- private float cameraY = 0;
- private float cameraScaleX = 1;
- private float cameraScaleY = 1;
- public float MouseX { get { return mouseX; } }
- public float MouseY { get { return mouseY; } }
- public float CameraX { get { return cameraX; } }
- public float CameraY { get { return cameraY; } }
- public float WindowW { get { return mWindow.Width; } }
- public float WindowH { get { return mWindow.Height; } }
- public RectangleF CameraScrollRect
- {
- get
- {
- return new RectangleF(
- screenToWorldX(0),
- screenToWorldY(0),
- screenToWorldSizeX(mWindow.Width),
- screenToWorldSizeY(mWindow.Height));
- }
- }
- public void setWindow(RectangleF window)
- {
- this.mWindow.X = window.X;
- this.mWindow.Y = window.Y;
- this.mWindow.Width = window.Width;
- this.mWindow.Height = window.Height;
- }
- public float screenToWorldSizeX(float s)
- {
- return s / cameraScaleX;
- }
- public float screenToWorldSizeY(float s)
- {
- return s / cameraScaleY;
- }
- public float worldToScreenSizeX(float s)
- {
- return s * cameraScaleX;
- }
- public float worldToScreenSizeY(float s)
- {
- return s * cameraScaleY;
- }
- public float screenToWorldX(float x)
- {
- return (x - mWindow.Width / 2) / cameraScaleX + cameraX;
- }
- public float screenToWorldY(float y)
- {
- return (y - mWindow.Height / 2) / cameraScaleY + cameraY;
- }
- public float worldToScreenX(float x)
- {
- return (x - cameraX) * cameraScaleX + mWindow.Width / 2;
- }
- public float worldToScreenY(float y)
- {
- return (y - cameraY) * cameraScaleY + mWindow.Height / 2;
- }
- public void setCamera(float x, float y)
- {
- this.cameraX = x;
- this.cameraY = y;
- }
- public void setCameraScale(float scaleX, float scaleY)
- {
- cameraScaleX = scaleX;
- cameraScaleX = Math.Max(cameraScaleX, 0.01f);
- cameraScaleY = scaleY;
- cameraScaleY = Math.Max(cameraScaleY, 0.01f);
- }
- public float getCameraScaleX()
- {
- return cameraScaleX;
- }
- public float getCameraScaleY()
- {
- return cameraScaleY;
- }
- public float getCameraScale()
- {
- return Math.Max(cameraScaleX, cameraScaleY);
- }
- //-----------------------------------------------------------------------------------------------------------------
- virtual public void update(int intervalMS)
- {
- }
- virtual public void update_flush()
- {
- if (queryKey != null)
- {
- queryKey.Update();
- this.mouseX = queryKey.MouseX;
- this.mouseY = queryKey.MouseY;
- }
- for (int i = logs.Count - 1; i >= 0; --i)
- {
- DisplayLog u = logs[i];
- u.update();
- if (!u.Alive)
- {
- logs.RemoveAt(i);
- }
- }
- }
- //-----------------------------------------------------------------------------------------------------------------
- #region _render_
- public static Font font = new Font(@"微软雅黑", 9, FontStyle.Regular);
- private float begin_pen_scale = 1f;
- public float PenScale { get { return begin_pen_scale; } }
- protected readonly SolidBrush brush_cell = new SolidBrush(Color.FromArgb(0xff, 0x20, 0x40, 0x20));
- protected readonly Pen pen_z = new Pen(Color.White);
- protected readonly Pen pen_grid = new Pen(Color.FromArgb(0x10, 0xff, 0xff, 0xff));
- virtual public void render(Graphics g)
- {
- RectangleF worldBounds = new RectangleF(
- screenToWorldX(0),
- screenToWorldY(0),
- screenToWorldSizeX(mWindow.Width),
- screenToWorldSizeY(mWindow.Height));
- GraphicsState gs = g.Save();
- {
- this.begin_pen_scale = 1f / getCameraScale();
- g.TranslateTransform(
- mWindow.Width / 2,
- mWindow.Height / 2);
- g.ScaleTransform(
- cameraScaleX,
- cameraScaleY);
- g.TranslateTransform(
- -cameraX,
- -cameraY);
- renderTerrain(g, worldBounds);
- renderObjects(g, worldBounds);
- }
- g.Restore(gs);
- renderScreen(g, worldBounds);
- if (ShowLog) renderLogs(g);
- }
- private void renderLogs(Graphics g)
- {
- for (int i = logs.Count - 1; i >= 0; --i)
- {
- DisplayLog u = logs[i];
- GraphicsState state = g.Save();
- g.TranslateTransform(
- worldToScreenX(u.pos.X),
- worldToScreenY(u.pos.Y));
- u.render(g);
- g.Restore(state);
- }
- }
- protected abstract void renderObjects(Graphics g, RectangleF worldBounds);
- protected abstract void renderScreen(Graphics g, RectangleF worldBounds);
- protected virtual void renderTerrain(Graphics g, RectangleF rect)
- {
- if (ShowTerrain && mZoneInfo != null)
- {
- int sx = (int)(rect.X / CellW);
- int sy = (int)(rect.Y / CellH);
- int sw = (int)(rect.Width / CellW) + 1;
- int sh = (int)(rect.Height / CellH) + 1;
- int lw = (int)(rect.Width + CellW * 2);
- int lh = (int)(rect.Height + CellH * 2);
- for (int x = sx + sw; x >= sx; --x)
- {
- if (x < mZoneInfo.XCount && x >= 0)
- {
- for (int y = sy + sh; y >= sy; --y)
- {
- if (y < mZoneInfo.YCount && y >= 0)
- {
- int flag = mZoneInfo.TerrainMatrix[x, y];
- renderCell(g, x, y, flag);
- }
- }
- }
- }
- }
- }
- protected virtual void renderCell(Graphics g, int bx, int by, int flag)
- {
- if (flag != 0)
- {
- brush_cell.Color = Color.FromArgb(flag);
- g.FillRectangle(brush_cell,
- bx * CellW,
- by * CellH,
- CellW,
- CellH);
- }
- }
- //----------------------------------------------------------------------------------------------------
- public delegate void DrawAction(Graphics g, RectangleF cameraBounds);
- public void drawInWorldSpace(Graphics g, DrawAction action)
- {
- RectangleF worldBounds = new RectangleF(
- screenToWorldX(0),
- screenToWorldY(0),
- screenToWorldSizeX(mWindow.Width),
- screenToWorldSizeY(mWindow.Height));
- GraphicsState gs = g.Save();
- {
- this.begin_pen_scale = 1f / getCameraScale();
- g.TranslateTransform(
- mWindow.Width / 2,
- mWindow.Height / 2);
- g.ScaleTransform(
- cameraScaleX,
- cameraScaleY);
- g.TranslateTransform(
- -cameraX,
- -cameraY);
- action(g, worldBounds);
- }
- g.Restore(gs);
- }
- public void drawGrid(Graphics g, RectangleF rect, int cellW, int cellH)
- {
- pen_grid.Width = 1f / getCameraScale();
- int sx = (int)(rect.X / cellW);
- int sy = (int)(rect.Y / cellH);
- int sw = (int)(rect.Width / cellW) + 1;
- int sh = (int)(rect.Height / cellH) + 1;
- int lw = (int)(rect.Width + cellW * 2);
- int lh = (int)(rect.Height + cellH * 2);
- for (int x = sx + sw; x >= sx; --x)
- {
- g.DrawLine(pen_grid, x * cellW, sy * cellH, x * cellW, (sy * cellH + lh));
- }
- for (int y = sy + sh; y >= sy; --y)
- {
- g.DrawLine(pen_grid, sx * cellW, y * cellH, (sx * cellW + lw), y * cellH);
- }
- }
- protected void drawObjectes<T>(Graphics g, RectangleF rect, ICollection<T> units)
- where T : DisplayObject
- {
- float penscale = 1f / getCameraScale();
- foreach (DisplayObject u in units)
- {
- if (u.Visible && CMath.intersectRect2(
- rect.X,
- rect.Y,
- rect.Width,
- rect.Height,
- u.X + u.LocalBounds.X,
- u.Y + u.LocalBounds.Y,
- u.LocalBounds.Width,
- u.LocalBounds.Height
- ))
- {
- GraphicsState state = g.Save();
- try
- {
- g.TranslateTransform(u.X, u.Y);
- if (ShowZ && u.Z != 0)
- {
- pen_z.Width = penscale;
- g.DrawLine(pen_z, 0, 0, 0, -u.Z);
- g.ScaleTransform(1 + u.Z, 1 + u.Z);
- }
- u.render_begin(g);
- u.render(g);
- u.render_end(g);
- }
- catch (Exception err)
- {
- Console.WriteLine(err.Message + "\n" + err.StackTrace);
- }
- finally
- {
- g.Restore(state);
- }
- }
- }
- }
- #endregion
- //-----------------------------------------------------------------------------------------------------------------
- //-----------------------------------------------------------------------------------------------------------------
- public void showLog(string text, float x, float y)
- {
- if (ShowLog)
- logs.Add(new DisplayLog(text, x, y, Color.White));
- }
- public void showLog(string text, float x, float y, Color color)
- {
- if (ShowLog)
- logs.Add(new DisplayLog(text, x, y, color));
- }
- public class DisplayLog
- {
- public readonly Vector2 pos = new Vector2();
- private Brush brush;
- private int time = 20;
- private readonly string text;
- internal DisplayLog(string text, float x, float y, Color color)
- {
- this.text = text;
- this.time = 20;
- this.pos.SetX(x);
- this.pos.SetY(y);
- this.brush = new SolidBrush(color);
- }
- internal void update()
- {
- time--;
- }
- internal void render(Graphics g)
- {
- SizeF size = g.MeasureString(text, font);
- g.DrawString(
- text,
- font,
- brush,
- -size.Width / 2,
- -size.Height / 2 - 20 + time,
- StringFormat.GenericDefault);
- }
- internal bool Alive
- {
- get { return time > 0; }
- }
- }
- }
- //-----------------------------------------------------------------------------------------------
- abstract public class DisplayManhattanTerrain : DisplayTerrain
- {
- [Desc("显示地形边界", "show")]
- public bool ShowTerrainMesh = false;
- [Desc("显示空间分割", "show")]
- public bool ShowSpaceDiv = false;
- [Desc("显示Area值", "show")]
- public bool ShowAreaValue = false;
- public abstract AstarManhattan PathFinder { get; }
- public abstract int SpaceDivSize { get; }
- protected readonly Pen pen_node_mesh = new Pen(Color.FromArgb(0xFF, 0xff, 0xff, 0xff));
- protected readonly SolidBrush pen_area_value = new SolidBrush(Color.White);
- protected override void renderTerrain(Graphics g, RectangleF rect)
- {
- base.renderTerrain(g, rect);
- this.renderSpaceDiv(g, rect);
- this.renderTerrainMesh(g, rect);
- }
- protected virtual void renderTerrainMesh(Graphics g, RectangleF rect)
- {
- pen_node_mesh.Width = PenScale;
- if (ShowTerrainMesh || ShowAreaValue)
- {
- if (PathFinder != null)
- {
- int sx = (int)(rect.X / CellW);
- int sy = (int)(rect.Y / CellH);
- int sw = (int)(rect.Width / CellW) + 1;
- int sh = (int)(rect.Height / CellH) + 1;
- int lw = (int)(rect.Width + CellW * 2);
- int lh = (int)(rect.Height + CellH * 2);
- for (int bx = sx + sw; bx >= sx; --bx)
- {
- for (int by = sy + sh; by >= sy; --by)
- {
- var tn = PathFinder.GetMapNode(bx, by);
- if (tn != null)
- {
- if (ShowTerrainMesh) { renderMeshCell(g, tn); }
- if (ShowAreaValue) { renderAreaValue(g, tn); }
- }
- }
- }
- }
- }
- }
- protected virtual void renderMeshCell(Graphics g, AstarManhattan.MMapNode tn)
- {
- if (tn.Mesh != null)
- {
- using (var list = ListObjectPool<CommonLang.Geometry.Line2>.AllocAutoRelease())
- {
- tn.Mesh.ToLines(list);
- foreach (var line in list)
- {
- g.DrawLine(pen_node_mesh, line.P.X, line.P.Y, line.Q.X, line.Q.Y);
- }
- }
- }
- }
- protected virtual void renderAreaValue(Graphics g, AstarManhattan.MMapNode tn)
- {
- if (!tn.Blocked)
- {
- var text = tn.AreaValue.ToString();
- var save = g.Save();
- try
- {
- g.TranslateTransform(tn.BX * CellW, tn.BY * CellH);
- g.ScaleTransform(PenScale, PenScale);
- g.DrawString(
- text,
- font,
- pen_area_value,
- 0, 0,
- StringFormat.GenericDefault);
- }
- finally
- {
- g.Restore(save);
- }
- }
- }
- protected virtual void renderSpaceDiv(Graphics g, RectangleF rect)
- {
- if (ShowSpaceDiv && SpaceDivSize > 0)
- {
- drawGrid(g, rect, SpaceDivSize * CellW, SpaceDivSize * CellH);
- }
- }
- protected void drawPath(Graphics g, Vector2 path_begin, AstarManhattan.MWayPoint path, Pen pen_line, Pen pen_begin = null, Brush pen_brush = null)
- {
- if (path_begin != null && pen_begin != null)
- {
- g.DrawLine(pen_begin, path_begin.X, path_begin.Y, path.PosX, path.PosY);
- }
- if (path != null)
- {
- foreach (AstarManhattan.MWayPoint wp in path)
- {
- if (pen_brush != null)
- {
- g.FillRectangle(pen_brush, wp.BX * CellW, wp.BY * CellH, CellW, CellH);
- }
- if (wp.Next != null)
- {
- g.DrawLine(pen_line, wp.PosX, wp.PosY, wp.Next.PosX, wp.Next.PosY);
- }
- }
- }
- }
- }
- //-----------------------------------------------------------------------------------------------
- }
|