| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using System.Collections.Generic;
- using System.Text;
- namespace ET.Server
- {
- [EntitySystemOf(typeof(Cell))]
- public static partial class CellSystem
- {
- [EntitySystem]
- private static void Awake(this ET.Server.Cell self)
- {
- }
-
- [EntitySystem]
- private static void Destroy(this Cell self)
- {
- self.AOIUnits.Clear();
- self.SubsEnterEntities.Clear();
- self.SubsLeaveEntities.Clear();
- }
- public static void Add(this Cell self, AOIEntity aoiEntity)
- {
- self.AOIUnits.Add(aoiEntity.Id, aoiEntity);
- }
- public static void Remove(this Cell self, AOIEntity aoiEntity)
- {
- self.AOIUnits.Remove(aoiEntity.Id);
- }
- public static string CellIdToString(this long cellId)
- {
- int y = (int)(cellId & 0xffffffff);
- int x = (int)((ulong)cellId >> 32);
- return $"{x}:{y}";
- }
- public static string CellIdToString(this HashSet<long> cellIds)
- {
- StringBuilder sb = new StringBuilder();
- foreach (long cellId in cellIds)
- {
- sb.Append(cellId.CellIdToString());
- sb.Append(",");
- }
- return sb.ToString();
- }
- }
- }
|