123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885 |
- #define JSG_MODIFY_ASTAT_SPACE
- using CommonAI.ZoneClient;
- using CommonLang;
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace CommonAI.RTS
- {
- /// <summary>
- /// 管理空间分割类,十字链表空间管理。
- /// </summary>
- public class SpaceDivision : IDisposable
- {
- public float SpaceCellW { get; private set; }
- public float SpaceCellH { get; private set; }
- public int SpaceXCount { get; private set; }
- public int SpaceYCount { get; private set; }
- private SpaceCellNode[,] SpaceMatrix;
- private bool mNearChanged = true;
- internal SpaceDivision(float total_w, float total_h, float cellSizeW, float cellSizeH)
- {
- this.SpaceCellW = cellSizeW;
- this.SpaceCellH = cellSizeH;
- this.SpaceXCount = CMath.roundMod(total_w, SpaceCellW);
- this.SpaceYCount = CMath.roundMod(total_h, SpaceCellH);
- this.SpaceMatrix = new SpaceCellNode[SpaceXCount, SpaceYCount];
- for (int ix = 0; ix < SpaceXCount; ++ix)
- {
- for (int iy = 0; iy < SpaceYCount; ++iy)
- {
- this.SpaceMatrix[ix, iy] = new SpaceCellNode(ix, iy);
- }
- }
- int[][] near_table = new int[][] {
- new int[]{-1,-1},
- new int[]{ 0,-1},
- new int[]{ 1,-1},
- new int[]{-1, 0},
- new int[]{ 1, 0},
- new int[]{-1, 1},
- new int[]{ 0, 1},
- new int[]{ 1, 1}
- };
- for (int ix = 0; ix < SpaceXCount; ++ix)
- {
- for (int iy = 0; iy < SpaceYCount; ++iy)
- {
- SpaceCellNode node = SpaceMatrix[ix, iy];
- for (int ni = 0; ni < near_table.Length; ni++)
- {
- SpaceCellNode near = GetSpaceCell(
- ix + near_table[ni][0],
- iy + near_table[ni][1]);
- if (near != null && near != node)
- {
- node.nears.Add(near);
- }
- }
- }
- }
- }
- public void Dispose()
- {
- for (int ix = 0; ix < SpaceXCount; ++ix)
- {
- for (int iy = 0; iy < SpaceYCount; ++iy)
- {
- SpaceCellNode node = SpaceMatrix[ix, iy];
- node.Dispose();
- }
- }
- }
- /// <summary>
- /// 实际坐标转换为分割块坐标
- /// </summary>
- /// <param name="x"></param>
- /// <param name="y"></param>
- /// <param name="cx"></param>
- /// <param name="cy"></param>
- public void ToSpaceBlock(float x, float y, out int cx, out int cy)
- {
- cx = (int)(x / SpaceCellW);
- cy = (int)(y / SpaceCellH);
- }
- private void ToSpaceBlock(float x, float y, float r, out int cx1, out int cy1, out int cx2, out int cy2)
- {
- cx1 = (int)((x - r) / this.SpaceCellW);
- cy1 = (int)((y - r) / this.SpaceCellH);
- cx2 = (int)((x + r) / this.SpaceCellW);
- cy2 = (int)((y + r) / this.SpaceCellH);
- cx1 = Math.Max(cx1, 0);
- cy1 = Math.Max(cy1, 0);
- cx2 = Math.Min(cx2, this.SpaceXCount - 1);
- cy2 = Math.Min(cy2, this.SpaceYCount - 1);
- }
- private void ToSpaceBlock(float x1, float y1, float x2, float y2, out int cx1, out int cy1, out int cx2, out int cy2)
- {
- if (x2 < x1) CUtils.Swap<float>(ref x2, ref x1);
- if (y2 < y1) CUtils.Swap<float>(ref y2, ref y1);
- cx1 = (int)(x1 / this.SpaceCellW);
- cy1 = (int)(y1 / this.SpaceCellH);
- cx2 = (int)(x2 / this.SpaceCellW);
- cy2 = (int)(y2 / this.SpaceCellH);
- cx1 = Math.Max(cx1, 0);
- cy1 = Math.Max(cy1, 0);
- cx2 = Math.Min(cx2, this.SpaceXCount - 1);
- cy2 = Math.Min(cy2, this.SpaceYCount - 1);
- }
- public SpaceCellNode GetSpaceCell(int cx, int cy)
- {
- if (cx < SpaceXCount && cx >= 0 && cy < SpaceYCount && cy >= 0)
- {
- return SpaceMatrix[cx, cy];
- }
- return null;
- }
- /// <summary>
- /// 按格取分割块
- /// </summary>
- /// <param name="cx"></param>
- /// <param name="cy"></param>
- /// <returns></returns>
- public SpaceCellNode GetSpaceCellNodeByBlock(int cx, int cy)
- {
- if (cx < SpaceXCount && cx >= 0 && cy < SpaceYCount && cy >= 0)
- {
- return SpaceMatrix[cx, cy];
- }
- return null;
- }
- /// <summary>
- /// 按坐标取分割块
- /// </summary>
- /// <param name="x"></param>
- /// <param name="y"></param>
- /// <returns></returns>
- public SpaceCellNode GetSpaceCellNode(float x, float y)
- {
- int cx = (int)(x / SpaceCellW);
- int cy = (int)(y / SpaceCellH);
- if (cx < SpaceXCount && cx >= 0 && cy < SpaceYCount && cy >= 0)
- {
- return SpaceMatrix[cx, cy];
- }
- return null;
- }
-
- public List<SpaceCellNode> ListSpaceCellNodes()
- {
- List<SpaceCellNode> ret = new List<SpaceCellNode>(SpaceXCount * SpaceYCount);
- for (int ix = 0; ix < SpaceXCount; ++ix)
- {
- for (int iy = 0; iy < SpaceYCount; ++iy)
- {
- ret.Add(GetSpaceCellNodeByBlock(ix, iy));
- }
- }
- return ret;
- }
- #region _ObjectPositionChanged_
- public void NearChange()
- {
- mNearChanged = true;
- }
- // 更新场景内的分割区域变化信息
- public void ClearSpaceNearChanges()
- {
- this.mNearChanged = false;
- for (int ix = 0; ix < SpaceXCount; ++ix)
- {
- for (int iy = 0; iy < SpaceYCount; ++iy)
- {
- SpaceCellNode node = SpaceMatrix[ix, iy];
- node.ClearNearChange();
- }
- }
- }
- /// <summary>
- /// 刷新空间分割位置为有改变
- /// </summary>
- /// <param name="old_cell"></param>
- public void NearChange(ObjectCellNode old_cell)
- {
- if (old_cell.cell != null)
- {
- old_cell.cell.NearChange();
- }
- this.NearChange();
- }
- /// <summary>
- /// 清除空间位置
- /// </summary>
- /// <param name="old_cell"></param>
- public void ClearSpace(ObjectCellNode old_cell)
- {
- if (old_cell.cell != null)
- {
- old_cell.cell.Remove(old_cell, true);
- }
- this.NearChange();
- }
- /// <summary>
- /// 切换单位空间位置
- /// </summary>
- public bool SwapSpace(ObjectCellNode obj, float x, float y, bool nearchange)
- {
- if (nearchange) mNearChanged = true;
- SpaceCellNode old_cell = obj.cell;
- SpaceCellNode new_cell = GetSpaceCellNode(x, y);
- if (old_cell != new_cell)
- {
- if (old_cell != null)
- {
- old_cell.Remove(obj, nearchange);
- }
- if (new_cell != null)
- {
- new_cell.Add(obj, nearchange);
- }
- return true;
- }
- return false;
- }
- public bool IsNearChanged()
- {
- return mNearChanged;
- }
- /// <summary>
- /// 判断是否附近有位置变化
- /// </summary>
- /// <param name="x"></param>
- /// <param name="y"></param>
- /// <returns></returns>
- public bool IsNearChanged(float x, float y)
- {
- if (this.mNearChanged)
- {
- SpaceCellNode node = this.GetSpaceCellNode(x, y);
- if (node != null)
- {
- if (node.IsNearChanged)
- {
- return true;
- }
- for (int i = node.nears.Count - 1; i >= 0; --i)
- {
- if (node.nears[i].IsNearChanged)
- {
- return true;
- }
- }
- }
- }
- return false;
- }
- public bool IsNearChanged(float x, float y, float r)
- {
- if (this.mNearChanged)
- {
- if (r < this.SpaceCellW && r < this.SpaceCellH)
- {
- SpaceCellNode node = this.GetSpaceCellNode(x, y);
- if (node != null)
- {
- if (node.IsNearChanged) return true;
- for (int i = node.nears.Count - 1; i >= 0; --i)
- {
- if (node.nears[i].IsNearChanged) return true;
- }
- }
- }
- else
- {
- #if JSG_MODIFY_ASTAT_SPACE
- int cx1, cy1, cx2, cy2;
- this.ToSpaceBlock(x - r, y - r, x + r, y + r, out cx1, out cy1, out cx2, out cy2);
- #else
- int cx1 = (int)((x - r) / this.SpaceCellW) - 1;
- int cy1 = (int)((y - r) / this.SpaceCellH) - 1;
- int cx2 = (int)((x + r) / this.SpaceCellW) + 1;
- int cy2 = (int)((y + r) / this.SpaceCellH) + 1;
- cx1 = Math.Max(cx1, 0);
- cy1 = Math.Max(cy1, 0);
- cx2 = Math.Min(cx2, this.SpaceXCount - 1);
- cy2 = Math.Min(cy2, this.SpaceYCount - 1);
- #endif
- for (int cx = cx1; cx <= cx2; ++cx)
- {
- for (int cy = cy1; cy <= cy2; ++cy)
- {
- SpaceCellNode cn = this.SpaceMatrix[cx, cy];
- if (cn.IsNearChanged) return true;
- }
- }
- }
- }
- return false;
- }
- public bool IsNearChanged(float x1, float y1, float x2, float y2)
- {
- if (this.mNearChanged)
- {
- if (x2 < x1) CUtils.Swap<float>(ref x2, ref x1);
- if (y2 < y1) CUtils.Swap<float>(ref y2, ref y1);
- #if JSG_MODIFY_ASTAT_SPACE
- int cx1, cy1, cx2, cy2;
- this.ToSpaceBlock(x1, y1, x2, y2, out cx1, out cy1, out cx2, out cy2);
- #else
- int cx1 = (int)(x1 / this.SpaceCellW) - 1;
- int cy1 = (int)(y1 / this.SpaceCellH) - 1;
- int cx2 = (int)(x2 / this.SpaceCellW) + 1;
- int cy2 = (int)(y2 / this.SpaceCellH) + 1;
- cx1 = Math.Max(cx1, 0);
- cy1 = Math.Max(cy1, 0);
- cx2 = Math.Min(cx2, this.SpaceXCount - 1);
- cy2 = Math.Min(cy2, this.SpaceYCount - 1);
- #endif
- for (int cx = cx1; cx <= cx2; ++cx)
- {
- for (int cy = cy1; cy <= cy2; ++cy)
- {
- SpaceCellNode cn = this.SpaceMatrix[cx, cy];
- if (cn.IsNearChanged) return true;
- }
- }
- }
- return false;
- }
- #endregion
- //----------------------------------------------------------------------------------------------------------------------------
- /// <summary>
- /// 获取当前坐标附近的所有单位容量
- /// </summary>
- /// <param name="x"></param>
- /// <param name="y"></param>
- /// <returns></returns>
- public int GetNearObjectsCapacity(float x, float y)
- {
- int ret = 0;
- SpaceCellNode node = this.GetSpaceCellNode(x, y);
- if (node != null)
- {
- ret += node.Count;
- for (int i = node.nears.Count - 1; i >= 0; --i)
- {
- ret += node.nears[i].Count;
- }
- }
- return Math.Max(ret, 10);
- }
- /// <summary>
- /// 遍历单位
- /// </summary>
- /// <param name="obj"></param>
- /// <param name="cancel">设置为True,立即停止遍历</param>
- public delegate void ObjectForEachAction<T>(T obj, ref bool cancel) where T : class;
- /// <summary>
- /// 获取当前坐标附近的所有单位
- /// </summary>
- /// <param name="x"></param>
- /// <param name="y"></param>
- /// <param name="indexer"></param>
- /// <returns>is cancel</returns>
- public bool ForEachNearObjects<T>(float x, float y, ObjectForEachAction<T> indexer) where T : class
- {
- SpaceDivision.SpaceCellNode node = GetSpaceCellNode(x, y);
- if (node != null)
- {
- if (node.ForEach<T>(indexer))
- {
- return true;
- }
- for (int i = node.nears.Count - 1; i >= 0; --i)
- {
- if (node.nears[i].ForEach<T>(indexer))
- {
- return true;
- }
- }
- }
- return false;
- }
- public ZoneItem GetNearPickableItem(ZoneActor owner)
- {
- SpaceDivision.SpaceCellNode node = GetSpaceCellNode(owner.X, owner.Y);
- if (node != null)
- {
- var ret = node.GetNearPickableItem(owner);
- if (ret != null)
- {
- return ret;
- }
- for (int i = node.nears.Count - 1; i >= 0; --i)
- {
- ret = node.nears[i].GetNearPickableItem(owner);
- if (ret != null)
- {
- return ret;
- }
- }
- }
- return null;
- }
- public ZoneItem GetNearPopPanelItem(ZoneActor owner)
- {
- SpaceDivision.SpaceCellNode node = GetSpaceCellNode(owner.X, owner.Y);
- if (node != null)
- {
- var ret = node.GetNearPopPanelItem(owner);
- if (ret != null)
- {
- return ret;
- }
- for (int i = node.nears.Count - 1; i >= 0; --i)
- {
- ret = node.nears[i].GetNearPopPanelItem(owner);
- if (ret != null)
- {
- return ret;
- }
- }
- }
- return null;
- }
- /// <summary>
- /// 获取当前坐标附近的所有单位
- /// </summary>
- /// <param name="x"></param>
- /// <param name="y"></param>
- /// <param name="r"></param>
- /// <param name="indexer"></param>
- /// <returns>is cancel</returns>
- public bool ForEachNearObjects<T>(float x, float y, float r, ObjectForEachAction<T> indexer) where T : class
- {
- if (r < SpaceCellW && r < SpaceCellH)
- {
- SpaceDivision.SpaceCellNode node = GetSpaceCellNode(x, y);
- if (node != null)
- {
- if (node.ForEach<T>(indexer))
- {
- return true;
- }
- for (int i = node.nears.Count - 1; i >= 0; --i)
- {
- if (node.nears[i].ForEach<T>(indexer))
- {
- return true;
- }
- }
- }
- }
- else
- {
- #if JSG_MODIFY_ASTAT_SPACE
- int cx1, cy1 , cx2 , cy2;
- this.ToSpaceBlock(x - r, y - r, x + r, y + r, out cx1, out cy1, out cx2, out cy2);
- #else
- int cx1 = (int)((x - r) / this.SpaceCellW) - 1;
- int cy1 = (int)((y - r) / this.SpaceCellH) - 1;
- int cx2 = (int)((x + r) / this.SpaceCellW) + 1;
- int cy2 = (int)((y + r) / this.SpaceCellH) + 1;
- cx1 = Math.Max(cx1, 0);
- cy1 = Math.Max(cy1, 0);
- cx2 = Math.Min(cx2, this.SpaceXCount - 1);
- cy2 = Math.Min(cy2, this.SpaceYCount - 1);
- #endif
- for (int cx = cx1; cx <= cx2; ++cx)
- {
- for (int cy = cy1; cy <= cy2; ++cy)
- {
- SpaceDivision.SpaceCellNode cn = this.SpaceMatrix[cx, cy];
- if (cn.ForEach<T>(indexer))
- {
- return true;
- }
- }
- }
- }
- return false;
- }
- /// <summary>
- /// 获取当前坐标附近的所有单位
- /// </summary>
- /// <param name="x1"></param>
- /// <param name="y1"></param>
- /// <param name="x2"></param>
- /// <param name="y2"></param>
- /// <param name="indexer"></param>
- /// <returns>is cancel</returns>
- public bool ForEachNearObjectsRect<T>(float x1, float y1, float x2, float y2, ObjectForEachAction<T> indexer) where T : class
- {
- bool cancel = false;
- if (x2 < x1) CUtils.Swap<float>(ref x2, ref x1);
- if (y2 < y1) CUtils.Swap<float>(ref y2, ref y1);
- #if JSG_MODIFY_ASTAT_SPACE
- int cx1, cy1, cx2, cy2;
- this.ToSpaceBlock(x1, y1, x2, y2, out cx1, out cy1, out cx2, out cy2);
- #else
- int cx1 = (int)(x1 / this.SpaceCellW) - 1;
- int cy1 = (int)(y1 / this.SpaceCellH) - 1;
- int cx2 = (int)(x2 / this.SpaceCellW) + 1;
- int cy2 = (int)(y2 / this.SpaceCellH) + 1;
- cx1 = Math.Max(cx1, 0);
- cy1 = Math.Max(cy1, 0);
- cx2 = Math.Min(cx2, this.SpaceXCount - 1);
- cy2 = Math.Min(cy2, this.SpaceYCount - 1);
- #endif
- for (int cx = cx1; cx <= cx2; ++cx)
- {
- for (int cy = cy1; cy <= cy2; ++cy)
- {
- SpaceDivision.SpaceCellNode cn = this.SpaceMatrix[cx, cy];
- if (cn.ForEach<T>(indexer))
- {
- return true;
- }
- }
- }
- return cancel;
- }
- //------------------------------------------------------------------------------------------------------------------
- /// <summary>
- /// 单位链表结构节点
- /// </summary>
- public class ObjectCellNode
- {
- public object Object { get { return obj; } }
- internal readonly object obj;
- internal SpaceCellNode cell;
- internal ObjectCellNode next;
- internal ObjectCellNode prev;
- internal bool mPosDirty;
- public ObjectCellNode(object obj)
- {
- this.obj = obj;
- }
- public void MarkPosDirty(bool dirty)
- {
- mPosDirty = dirty;
- }
- public ObjectCellNode Next { get { return next; } }
- public ObjectCellNode Prev { get { return prev; } }
- public bool PosDirty() { return mPosDirty;}
- internal void Remove()
- {
- if (next != null)
- {
- next.prev = this.prev;
- }
- if (prev != null)
- {
- prev.next = this.next;
- }
- this.next = null;
- this.prev = null;
- }
- internal void AddNext(ObjectCellNode next)
- {
- this.next = next;
- next.prev = this;
- }
- /// <summary>
- ///
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="action"></param>
- /// <returns>is canceled</returns>
- public bool ForEach<T>(ObjectForEachAction<T> action) where T : class
- {
- bool cancel = false;
- ObjectCellNode current = this;
- do
- {
- if (current.obj is T)
- {
- action((T)current.obj, ref cancel);
- if (cancel) return cancel;
- }
- current = current.next;
- }
- while (current != null);
- return cancel;
- }
- public ZoneItem GetNearPickableItem(ZoneActor owner)
- {
- var zl = owner.Parent;
- ZoneItem item = null;
- ObjectCellNode current = this;
- do
- {
- item = current.obj as ZoneItem;
- if (item != null && item.Info != null && !item.Info.IsPopPanel && zl.IsCanPickItem(owner, item))
- {
- return item;
- }
- current = current.next;
- }
- while (current != null);
- return null;
- }
- public ZoneItem GetNearPopPanelItem(ZoneActor owner)
- {
- var zl = owner.Parent;
- ZoneItem item = null;
- ObjectCellNode current = this;
- do
- {
- item = current.obj as ZoneItem;
- if (item != null && item.Info != null && item.Info.IsPopPanel)
- {
- if (zl.IsCanPickItem(owner, item)) return item;
- }
- current = current.next;
- }
- while (current != null);
- return null;
- }
- public bool ForEach(ObjectForEachAction<ObjectCellNode> action)
- {
- bool cancel = false;
- ObjectCellNode current = this;
- do
- {
- action(current, ref cancel);
- if (cancel) return cancel;
- current = current.next;
- }
- while (current != null);
- return cancel;
- }
- internal struct Iterator : IEnumerator
- {
- public readonly ObjectCellNode mBegin;
- private bool mStart;
- private ObjectCellNode index;
- public Iterator(ObjectCellNode begin)
- {
- this.mBegin = begin;
- this.mStart = false;
- this.index = null;
- }
- public object Current
- {
- get
- {
- if (index != null) return index.obj;
- return null;
- }
- }
- public bool MoveNext()
- {
- if (!mStart)
- {
- index = mBegin;
- mStart = true;
- if (index == null)
- return false;
- return true;
- }
- index = index.next;
- if (index == null)
- return false;
- return true;
- }
- public void Reset()
- {
- this.mStart = false;
- }
- public void Dispose() { }
- }
- }
- //------------------------------------------------------------------------------------------------------------------
- /// <summary>
- /// 空间分割节点,十字链表节点
- /// </summary>
- public class SpaceCellNode
- {
- internal readonly int six;
- internal readonly int siy;
- internal readonly List<SpaceCellNode> nears = new List<SpaceCellNode>();
- private ObjectCellNode mHead;
- private ObjectCellNode mTail;
- internal SpaceCellNode(int six, int siy)
- {
- this.six = six;
- this.siy = siy;
- }
- internal void Dispose()
- {
- using(var list = ListObjectPool<ObjectCellNode>.AllocAutoRelease())
- {
- foreach (var o in list)
- {
- this.Remove(o, false);
- }
- }
- nears.Clear();
- }
- public void NearChange()
- {
- IsNearChanged = true;
- }
- public void ClearNearChange()
- {
- IsNearChanged = false;
- }
- public void Add(ObjectCellNode cell, bool nearchange)
- {
- if (cell.Next != null || cell.Prev != null)
- {
- throw new Exception("obj.mCurCellNode.Next != null || obj.mCurCellNode.Prev != null");
- }
- if (nearchange) IsNearChanged = true;
- if (Count == 0)
- {
- mHead = mTail = cell;
- }
- else
- {
- mTail.AddNext(cell);
- mTail = cell;
- }
- cell.cell = this;
- Count++;
- if (mOnObjectAdded != null)
- {
- mOnObjectAdded.Invoke(this, cell.obj);
- }
- }
- public void Remove(ObjectCellNode cell, bool nearchange)
- {
- if (nearchange) IsNearChanged = true;
- Count--;
- if (Count == 0)
- {
- mHead = mTail = null;
- }
- else if (mHead == cell)
- {
- mHead = mHead.Next;
- }
- else if (mTail == cell)
- {
- mTail = mTail.Prev;
- }
- cell.Remove();
- cell.cell = null;
- if (mOnObjectRemoved != null)
- {
- mOnObjectRemoved.Invoke(this, cell.obj);
- }
- }
- public int BX { get { return six; } }
- public int BY { get { return siy; } }
- public bool IsNearChanged { get; private set; }
- public int Count { get; private set; }
-
- [Obsolete]
- public List<T> AsChildList<T>() where T : class
- {
- List<T> ret = new List<T>(this.Count);
- this.ForEach<T>((T o, ref bool c) =>
- {
- ret.Add(o);
- });
- return ret;
- }
- public void AsChildList<T>(List<T> ret) where T : class
- {
- this.ForEach<T>((T o, ref bool c) =>
- {
- ret.Add(o);
- });
- }
- public void AsNodeList(List<ObjectCellNode> ret)
- {
- if (mHead != null)
- {
- mHead.ForEach<ObjectCellNode>((ObjectCellNode o, ref bool cancel)=>
- {
- ret.Add(o);
- });
- }
- }
- /// <summary>
- ///
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="action"></param>
- /// <returns>is canceled</returns>
- public bool ForEach<T>(ObjectForEachAction<T> action) where T : class
- {
- if (mHead != null)
- {
- return mHead.ForEach<T>(action);
- }
- return false;
- }
- public ZoneItem GetNearPickableItem(ZoneActor owner)
- {
- if (mHead != null)
- {
- return mHead.GetNearPickableItem(owner);
- }
- return null;
- }
- public ZoneItem GetNearPopPanelItem(ZoneActor owner)
- {
- if (mHead != null)
- {
- return mHead.GetNearPopPanelItem(owner);
- }
- return null;
- }
- public delegate void OnObjectAddedHandler(SpaceCellNode node, object obj);
- public delegate void OnObjectRemovedHandler(SpaceCellNode node, object obj);
- private OnObjectAddedHandler mOnObjectAdded;
- private OnObjectRemovedHandler mOnObjectRemoved;
- public event OnObjectAddedHandler OnObjectAdded { add { mOnObjectAdded += value; } remove { mOnObjectAdded -= value; } }
- public event OnObjectRemovedHandler OnObjectRemoved { add { mOnObjectRemoved += value; } remove { mOnObjectRemoved -= value; } }
- }
- }
- }
|