ZoneObject.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using CommonAI.RTS;
  5. using CommonLang.Vector;
  6. using CommonLang;
  7. using CommonAI.Zone;
  8. using CommonAI.Zone.ZoneEditor;
  9. using CommonAI.Zone.Instance;
  10. using CommonAI.Zone.Helper;
  11. using CommonAI.Zone.Attributes;
  12. using CommonAI.ZoneClient.Agent;
  13. using CommonLang.Concurrent;
  14. namespace CommonAI.ZoneClient
  15. {
  16. public abstract class ZoneLayerObject : GameEntity
  17. {
  18. private static AtomicInteger s_active_object_count = new AtomicInteger(0);
  19. private static AtomicInteger s_alloc_object_count = new AtomicInteger(0);
  20. /// <summary>
  21. /// 实例数量
  22. /// </summary>
  23. public static int ActiveObjectCount { get { return s_active_object_count.Value; } }
  24. /// <summary>
  25. /// 实例数量
  26. /// </summary>
  27. public static int AllocObjectCount { get { return s_alloc_object_count.Value; } }
  28. virtual public float X { get { return mPos.X; } }
  29. virtual public float Y { get { return mPos.Y; } }
  30. /// <summary>
  31. /// 这里表示高度
  32. /// </summary>
  33. virtual public float Z { get; protected set; }
  34. protected readonly Vector2 mPos = new Vector2();
  35. private readonly ZoneLayer mParent;
  36. public ZoneLayerObject(ZoneLayer parent)
  37. {
  38. s_alloc_object_count++;
  39. s_active_object_count++;
  40. this.mParent = parent;
  41. this.Z = 0;
  42. }
  43. ~ZoneLayerObject()
  44. {
  45. s_alloc_object_count--;
  46. }
  47. public ZoneLayer Parent
  48. {
  49. get { return mParent; }
  50. }
  51. public TemplateManager Templates
  52. {
  53. get { return mParent.Templates; }
  54. }
  55. protected override void Disposing()
  56. {
  57. base.Disposing();
  58. s_active_object_count--;
  59. }
  60. virtual public void ForceSyncPos(float x, float y)
  61. {
  62. mPos.SetX(x);
  63. mPos.SetY(y);
  64. }
  65. }
  66. public abstract class ZoneObject : ZoneLayerObject, IPositionObject
  67. {
  68. /// <summary>
  69. /// 单位ID
  70. /// </summary>
  71. public uint ObjectID { get { return ObjID; } }
  72. /// <summary>
  73. /// 是否在场景里
  74. /// </summary>
  75. public bool IsEnable { get; private set; }
  76. public abstract string Name { get; }
  77. public abstract string DisplayName { get; }
  78. public virtual bool TouchObj { get { return false; } }
  79. public virtual bool TouchMap { get { return false; } }
  80. virtual public float Direction { get { return mDirection; } internal set { mDirection = value; } }
  81. abstract public float RadiusSize { get; }
  82. readonly private uint ObjID;
  83. protected float mDirection;
  84. internal readonly SpaceDivision.ObjectCellNode mCurrentCellNode;
  85. private Vector2 mLastPos = new Vector2();
  86. public ZoneObject(uint objectID, ZoneLayer parent) : base(parent)
  87. {
  88. this.IsEnable = true;
  89. this.ObjID = objectID;
  90. this.mCurrentCellNode = new SpaceDivision.ObjectCellNode(this);
  91. }
  92. protected internal virtual void OnAdded() { }
  93. protected override void Disposing()
  94. {
  95. base.Disposing();
  96. IsEnable = false;
  97. mOnDoEvent = null;
  98. }
  99. internal protected abstract void DoEvent(ObjectEvent e);
  100. //-------------------------------------------------------------------------------------
  101. internal protected virtual void UpdateAI() { }
  102. internal protected abstract void Update();
  103. internal bool UpdatePos()
  104. {
  105. if (mLastPos.X != this.X || mLastPos.Y != this.Y)
  106. {
  107. mLastPos.SetX(this.X);
  108. mLastPos.SetY(this.Y);
  109. mCurrentCellNode.MarkPosDirty(true);
  110. Parent.SwapSpace(this);
  111. return true;
  112. }
  113. mCurrentCellNode.MarkPosDirty(false);
  114. return false;
  115. }
  116. //-------------------------------------------------------------------------------------
  117. virtual public void SyncPos(ref SyncPosEvent.UnitPos pos)
  118. {
  119. this.mPos.SetX(pos.X);
  120. this.mPos.SetY(pos.Y);
  121. this.Direction = pos.Direction;
  122. if (Parent.IsSyncZ) { this.Z = pos.Z; }
  123. }
  124. virtual public void SyncPos(ref SyncPosEvent.UnitState pos)
  125. {
  126. }
  127. virtual public void SetClientLocalCurrentState(UnitActionStatus state, object evt)
  128. {
  129. }
  130. //-------------------------------------------------------------------------------------
  131. public delegate void OnDoEventHandler(ZoneObject obj, ObjectEvent e);
  132. internal OnDoEventHandler mOnDoEvent;
  133. [EventTriggerDescAttribute("单位接收到服务端事件")]
  134. public event OnDoEventHandler OnDoEvent { add { mOnDoEvent += value; } remove { mOnDoEvent -= value; } }
  135. //-------------------------------------------------------------------------------------
  136. }
  137. }