BattleObject.cs 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. using UnityEngine;
  2. using System;
  3. using CommonLang.Concurrent;
  4. using CommonAI.Zone;
  5. using CommonLang;
  6. using CommonAIClient.Unity.Utils;
  7. namespace CommonAIClient.Unity.Battle
  8. {
  9. public partial class BattleObject : IDisposable
  10. {
  11. #region RefCount
  12. private static AtomicInteger s_alloc_count = new AtomicInteger(0);
  13. private static AtomicInteger s_active_count = new AtomicInteger(0);
  14. /// <summary>
  15. /// 分配实例数量
  16. /// </summary>
  17. public static int AllocCount { get { return s_alloc_count.Value; } }
  18. /// <summary>
  19. /// 未释放实例数量
  20. /// </summary>
  21. public static int ActiveCount { get { return s_active_count.Value; } }
  22. #endregion
  23. private bool mDisposed;
  24. private bool mActiveSelf;
  25. private BattleScene mBattleScene;
  26. private GameObject mObjectRoot;
  27. private GameObject mDisplayRoot;
  28. private GameObject mDummyRoot;
  29. private GameObject mEffectRoot;
  30. private DisplayCell mDisplayCell;
  31. private HashMap<string, DummyNode> mDummys = new HashMap<string, DummyNode>();
  32. //保存最后申请的动作
  33. private string mLastAnimName;
  34. private bool mLastCrossFade;
  35. private WrapMode mLastWrapMode;
  36. private float mLastSpeed;
  37. public bool IsDisposed { get { return mDisposed; } }
  38. protected BattleScene BattleScene { get { return mBattleScene; } }
  39. protected GameObject ObjectRoot { get { return mObjectRoot; } }
  40. public Vector3 Position { get { return this.mObjectRoot.Position(); } }
  41. protected GameObject DisplayRoot { get { return mDisplayRoot; } }
  42. protected GameObject DummyRoot { get { return mDummyRoot; } }
  43. public GameObject EffectRoot { get { return mEffectRoot; } }
  44. protected DisplayCell DisplayCell { get { return mDisplayCell; } }
  45. protected HashMap<string, DummyNode> Dummys { get { return mDummys; } }
  46. public string LastAnimName { get { return mLastAnimName; } }
  47. public bool LastCrossFade { get { return mLastCrossFade; } }
  48. public WrapMode LastWrapMode { get { return mLastWrapMode; } }
  49. public float LastSpeed { get { return mLastSpeed; } }
  50. public bool ActiveSelf
  51. {
  52. get { return mActiveSelf; }
  53. set
  54. {
  55. this.mActiveSelf = value;
  56. this.ObjectRoot.SetActive(mActiveSelf);
  57. this.PlayAnim(mLastAnimName, mLastCrossFade, mLastWrapMode, mLastSpeed);
  58. }
  59. }
  60. public BattleObject(BattleScene battleScene, string name = "")
  61. {
  62. s_alloc_count++;
  63. s_active_count++;
  64. mBattleScene = battleScene;
  65. mObjectRoot = new GameObject(name);
  66. mDisplayRoot = new GameObject("DisplayRoot");
  67. mDisplayRoot.ParentRoot(mObjectRoot);
  68. mDummyRoot = new GameObject("DummyRoot");
  69. mDummyRoot.ParentRoot(mObjectRoot);
  70. mEffectRoot = new GameObject("EffectRoot");
  71. mEffectRoot.ParentRoot(mObjectRoot);
  72. mDisplayCell = BattleFactroy.Instance.CreateDisplayCell(mDisplayRoot);
  73. }
  74. ~BattleObject()
  75. {
  76. s_alloc_count--;
  77. }
  78. protected virtual void CorrectDummyNode()
  79. {
  80. foreach (var elem in mDummys)
  81. {
  82. GameObject trace = mDisplayCell.GetDummyNode(elem.Key);
  83. elem.Value.Init(elem.Key, trace);
  84. }
  85. }
  86. /// <summary>
  87. /// 如果名字不为空 一定会返回一个DummyNode
  88. /// </summary>
  89. /// <param name="name"></param>
  90. /// <returns></returns>
  91. public virtual DummyNode GetDummyNode(string name)
  92. {
  93. if (string.IsNullOrEmpty(name))
  94. {
  95. Debug.LogError("string.IsNullOrEmpty(name)");
  96. return null;
  97. }
  98. DummyNode dummyNode = null;
  99. if (!mDummys.TryGetValue(name, out dummyNode))
  100. {
  101. GameObject node = mDisplayCell.GetDummyNode(name);
  102. if (node == null)
  103. {
  104. Debug.LogError("node not exist " + name);
  105. }
  106. GameObject tmp = new GameObject(name);
  107. tmp.ParentRoot(mDummyRoot);
  108. dummyNode = tmp.AddComponent<DummyNode>();
  109. dummyNode.Init(name, node);
  110. mDummys.Add(name, dummyNode);
  111. }
  112. return dummyNode;
  113. }
  114. public virtual float GetAnimLength(string name)
  115. {
  116. if (this.DisplayCell != null)
  117. {
  118. return this.DisplayCell.GetAnimLength(name);
  119. }
  120. return 0f;
  121. }
  122. public virtual void PlayAnim(string name, bool crossFade
  123. , WrapMode wrapMode = WrapMode.Once, float speed = 1f)
  124. {
  125. if (!string.IsNullOrEmpty(name))
  126. {
  127. mLastAnimName = name;
  128. mLastCrossFade = crossFade;
  129. mLastWrapMode = wrapMode;
  130. mLastSpeed = speed;
  131. mDisplayCell.PlayAnim(name, crossFade, wrapMode, speed);
  132. }
  133. }
  134. /// <summary>
  135. ///
  136. /// </summary>
  137. /// <param name="eff"></param>
  138. /// <param name="pos"> unity pos</param>
  139. /// <param name="rot"> unity rot</param>
  140. public virtual void PlayEffect(LaunchEffect eff, Vector3 pos, Quaternion rot)
  141. {
  142. if (eff != null)
  143. {
  144. //声音
  145. if (!string.IsNullOrEmpty(eff.SoundName))
  146. {
  147. if (eff.IsLoop)
  148. {
  149. BattleFactroy.Instance.SoundAdapter.PlaySound(eff.SoundName, eff.EffectTimeMS, pos);
  150. }
  151. else
  152. {
  153. BattleFactroy.Instance.SoundAdapter.PlaySound(eff.SoundName, pos);
  154. }
  155. }
  156. //特效
  157. if (!string.IsNullOrEmpty(eff.Name))
  158. {
  159. BattleFactroy.Instance.GameObjectAdapter.Load(eff.Name
  160. , System.IO.Path.GetFileNameWithoutExtension(eff.Name)
  161. , (succ, aoe) =>
  162. {
  163. if (succ)
  164. {
  165. if (IsDisposed && eff.BindBody)
  166. {
  167. BattleFactroy.Instance.GameObjectAdapter.Unload(aoe);
  168. return;
  169. }
  170. OnLoadEffectSuccess(aoe, eff, pos, rot);
  171. }
  172. });
  173. }
  174. }
  175. }
  176. protected virtual void OnLoadEffectSuccess(AssetObjectExt aoe
  177. , LaunchEffect eff, Vector3 pos, Quaternion rot)
  178. {
  179. aoe.gameObject.Parent(BattleScene.EffectRoot);
  180. aoe.gameObject.Position(pos);
  181. aoe.gameObject.Rotation(rot);
  182. var script = aoe.gameObject.AddComponent<EffectAutoDestroy>();
  183. script.aoeHandler = aoe;
  184. script.duration = eff.IsLoop ? eff.EffectTimeMS / 1000f : 0f;
  185. GameObject dummy = mEffectRoot;
  186. if (!string.IsNullOrEmpty(eff.BindPartName))
  187. {
  188. dummy = mDisplayCell.GetDummyNode(eff.BindPartName);
  189. if (dummy == null)
  190. {
  191. dummy = mEffectRoot;
  192. }
  193. aoe.gameObject.Position(dummy.Position());
  194. }
  195. if (eff.BindBody)
  196. {
  197. aoe.gameObject.ParentRoot(dummy);
  198. }
  199. }
  200. public void Update(float deltaTime)
  201. {
  202. if (!mDisposed)
  203. {
  204. OnUpdate(deltaTime);
  205. }
  206. }
  207. protected virtual void OnUpdate(float deltaTime)
  208. {
  209. }
  210. public void Dispose()
  211. {
  212. if (!mDisposed)
  213. {
  214. OnDispose();
  215. mDisposed = true;
  216. s_active_count--;
  217. }
  218. }
  219. protected virtual void OnDispose()
  220. {
  221. mDisplayCell.Dispose();
  222. AssetObjectExt[] aoes = mDummyRoot.GetComponentsInChildren<AssetObjectExt>();
  223. foreach (var elem in aoes)
  224. {
  225. EffectAutoDestroy[] scripts = elem.gameObject.GetComponents<EffectAutoDestroy>();
  226. if (scripts.Length > 0)
  227. {
  228. foreach (var script in scripts)
  229. {
  230. script.DoDestroy();
  231. }
  232. }
  233. else
  234. {
  235. BattleFactroy.Instance.GameObjectAdapter.Unload(elem);
  236. }
  237. }
  238. GameObject.Destroy(mObjectRoot);
  239. }
  240. }
  241. }