ZoneObject.Unit.Status.cs 63 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741
  1. using CommonAI.RTS;
  2. using CommonLang.Vector;
  3. using CommonAI.Zone;
  4. using CommonAI.Zone.Attributes;
  5. using CommonAI.Zone.Helper;
  6. using CommonLang;
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. using CommonAI.Zone.Formula;
  12. using System.Collections;
  13. using CommonLang.Log;
  14. namespace CommonAI.ZoneClient
  15. {
  16. public partial class ZoneUnit
  17. { //--------------------------------------------------------------------------------
  18. #region DamageDeadFly
  19. private TimeExpire<UnitDamageEvent> mDamageTime;
  20. private TimeExpire<UnitDeadEvent> mDeadTime;
  21. private FallingDown mHitFlyState;
  22. public FallingDown StartFly(float z_speed, float gravity, float z_limit)
  23. {
  24. if (!Parent.IsSyncZ && z_speed != 0)
  25. {
  26. mHitFlyState = new FallingDown(this, z_speed, gravity, z_limit);
  27. return mHitFlyState;
  28. }
  29. return null;
  30. }
  31. protected virtual void DoDamage(UnitDamageEvent e)
  32. {
  33. mDamageTime = new TimeExpire<UnitDamageEvent>(e, e.DamageTimeMS);
  34. if (e.HasFly)
  35. {
  36. StartFly(e.ZSpeedSEC, e.ZGravity, e.ZLimit);
  37. }
  38. if (Info.DamageEffect != null)
  39. {
  40. Parent.PreQueueEvent(new UnitEffectEvent(this.ObjectID, Info.DamageEffect));
  41. }
  42. SetCurrentState(UnitActionStatus.Damage, e);
  43. }
  44. protected virtual void DoJump(UnitJumpEvent e)
  45. {
  46. StartFly(e.ZSpeed, e.ZGravity, e.ZLimit);
  47. }
  48. protected virtual void DoDead(UnitDeadEvent me)
  49. {
  50. if (me.RebirthTimeMS > 0)
  51. {
  52. mDeadTime = new TimeExpire<UnitDeadEvent>(me, me.RebirthTimeMS);
  53. }
  54. //所有的怪都清了一遍,都是先下发UnitDeadEvent,然后在下发死亡状态,为了防止切换状态的时候清掉特效,逻辑层的死亡特效屏蔽掉,放在表现层下
  55. //if (Info.DeadEffect != null)
  56. //{
  57. // Parent.PreQueueEvent(new UnitEffectEvent(this.ObjectID, Info.DeadEffect));
  58. //}
  59. if (me.Crushed)
  60. {
  61. if (Info.CrushEffect != null)
  62. {
  63. Parent.PreQueueEvent(new UnitEffectEvent(this.ObjectID, Info.CrushEffect));
  64. }
  65. }
  66. }
  67. private void UpdateDamage(int intervalMS)
  68. {
  69. if (mDeadTime != null && mDeadTime.Update(intervalMS))
  70. {
  71. mDeadTime = null;
  72. }
  73. if (mDamageTime != null && mDamageTime.Update(intervalMS))
  74. {
  75. mDamageTime = null;
  76. }
  77. }
  78. /// <summary>
  79. /// 落体运动
  80. /// </summary>
  81. public class FallingDown
  82. {
  83. private readonly ZoneUnit unit;
  84. private readonly float gravity;
  85. private readonly float z_limit;
  86. private float z_speed;
  87. public FallingDown(ZoneUnit unit, float zspeed, float zgravity, float zlimit)
  88. {
  89. this.unit = unit;
  90. this.z_limit = zlimit;
  91. this.z_speed = zspeed;
  92. this.gravity = zgravity == 0 ? unit.Templates.CFG.GLOBAL_GRAVITY : zgravity;
  93. this.ExpectTimeMS = MoveHelper.CalculateFlyTimeMS(unit.Z, zspeed, zlimit, gravity, 10);
  94. this.IsEnd = false;
  95. }
  96. public bool Update(int intervalMS)
  97. {
  98. //向上受到ZLimit限制//
  99. unit.Z += MoveHelper.GetDistance(intervalMS, z_speed);
  100. unit.Z = Math.Max(0, unit.Z);
  101. this.IsEnd = unit.Z <= 0;
  102. //骤停//
  103. if (z_limit != 0 && z_speed > 0 && unit.Z > z_limit)
  104. {
  105. z_speed = 0;
  106. }
  107. this.z_speed -= MoveHelper.GetDistance(intervalMS, gravity);
  108. return IsEnd;
  109. }
  110. public bool IsEnd { get; private set; }
  111. public int ExpectTimeMS { get; private set; }
  112. public float ZSpeedSEC { get { return z_speed; } }
  113. public float ZLimit { get { return z_limit; } }
  114. }
  115. #endregion
  116. //--------------------------------------------------------------------------------
  117. #region Skill
  118. public float GetSkillAttackRange(SkillTemplate skill)
  119. {
  120. return IsAttackRangeIncludeBodySize ? BodySize + skill.AttackRange : skill.AttackRange;
  121. }
  122. internal void SyncSkillStatus(ClientStruct.UnitSkillStatus[] skills)
  123. {
  124. if (skills != null)
  125. {
  126. foreach (ClientStruct.UnitSkillStatus st in skills)
  127. {
  128. SkillState status = this.GetSkillState(st.SkillTemplateID);
  129. if (status != null)
  130. {
  131. status.Sync(st);
  132. }
  133. }
  134. }
  135. }
  136. public virtual void InitSkills()
  137. {
  138. mSkillStatus.Clear();
  139. if (Info.BaseSkillID != null)
  140. {
  141. BaseSkillID = Info.BaseSkillID.SkillID;
  142. if (BaseSkillID != 0)
  143. {
  144. SkillTemplate skt = Templates.getSkill(BaseSkillID);
  145. if(skt == null)
  146. {
  147. ClientLog.LogError("Skill template({0}@{1}) Not Found.", BaseSkillID, Info.Name);
  148. return;
  149. }
  150. mSkillStatus.Put(new SkillState(skt, this));
  151. }
  152. }
  153. else
  154. {
  155. BaseSkillID = 0;
  156. }
  157. foreach (LaunchSkill skid in Info.Skills)
  158. {
  159. if (skid.SkillID != 0)
  160. {
  161. SkillTemplate skt = Templates.getSkill(skid.SkillID);
  162. if (skt == null)
  163. {
  164. ClientLog.LogError("Skill template({0}@{1}) Not Found.", skid.SkillID, Info.Name);
  165. return;
  166. }
  167. mSkillStatus.Put(new SkillState(skt, this));
  168. }
  169. }
  170. if (mOnSkillChanged != null)
  171. {
  172. mOnSkillChanged.Invoke(SkillOption.Init, this, BaseSkillID, mSkillStatus.Keys.ToArray());
  173. }
  174. }
  175. protected virtual void DoSkillChanged(PlayerSkillChangedEvent e)
  176. {
  177. this.mFastCastRate = e.unitFastCastRate;
  178. //一项一项排查,是不是有不同
  179. bool dif = false;
  180. if(e.baseSkill != null && e.baseSkill.TemplateID == BaseSkillID)
  181. {
  182. if(e.skills.Count == mSkillStatus.Count - 1)
  183. {
  184. foreach(var skt in e.skills)
  185. {
  186. if(!mSkillStatus.ContainsKey(skt.TemplateID))
  187. {
  188. dif = true;
  189. break;
  190. }
  191. }
  192. }
  193. else
  194. {
  195. dif = true;
  196. }
  197. }
  198. else
  199. {
  200. dif = true;
  201. }
  202. if (!dif)
  203. {
  204. //YXJDebug.logDebug(">skills are exactly the same, why you post >PlayerSkillChangedEvent");
  205. return;
  206. }
  207. mSkillStatus.Clear();
  208. if (e.baseSkill != null)
  209. {
  210. BaseSkillID = e.baseSkill.TemplateID;
  211. mSkillStatus.Put(new SkillState(e.baseSkill, this));
  212. }
  213. else
  214. {
  215. BaseSkillID = 0;
  216. }
  217. foreach (var skt in e.skills)
  218. {
  219. mSkillStatus.Put(new SkillState(skt, this));
  220. }
  221. if (mOnSkillChanged != null)
  222. {
  223. mOnSkillChanged.Invoke(SkillOption.Reset, this, BaseSkillID, mSkillStatus.Keys.ToArray());
  224. }
  225. }
  226. protected virtual void DoPlayerSkillActiveChangedEvent(PlayerSkillActiveChangedEvent e)
  227. {
  228. for (int i = e.Skills.Count - 1; i >= 0; --i)
  229. {
  230. PlayerSkillActiveChangedEvent.State sat = e.Skills[i];
  231. SkillState ss = GetSkillState(sat.SkillTemplateID);
  232. if (ss != null)
  233. {
  234. ss.SetActive(sat.ST);
  235. }
  236. }
  237. if (mOnSkillChanged != null)
  238. {
  239. mOnSkillChanged.Invoke(SkillOption.ActiveChange, this, 0, null);
  240. }
  241. }
  242. protected void AddSkill(SkillTemplate skill, bool isDefault)
  243. {
  244. mSkillStatus.Put(new SkillState(skill, this));
  245. if (isDefault)
  246. {
  247. BaseSkillID = skill.ID;
  248. }
  249. if (mOnSkillChanged != null)
  250. {
  251. mOnSkillChanged.Invoke(SkillOption.Add, this, skill.ID, mSkillStatus.Keys.ToArray());
  252. }
  253. }
  254. protected void RemoveSkill(int skillTemplateID)
  255. {
  256. if (mSkillStatus.RemoveByKey(skillTemplateID) != null)
  257. {
  258. if (BaseSkillID == skillTemplateID)
  259. {
  260. BaseSkillID = 0;
  261. }
  262. if (mOnSkillChanged != null)
  263. {
  264. mOnSkillChanged.Invoke(SkillOption.Remove, this, skillTemplateID, mSkillStatus.Keys.ToArray());
  265. }
  266. }
  267. }
  268. private void UpdateSkills(int intervalMS)
  269. {
  270. for (int i = 0; i < mSkillStatus.Count; i++)
  271. {
  272. SkillState ss = mSkillStatus.GetAt(i);
  273. ss.Update(intervalMS);
  274. }
  275. if (mChantingSkill != null && mChantingSkill.Update(intervalMS))
  276. {
  277. mChantingSkill = null;
  278. }
  279. }
  280. //新增技能使用次数
  281. protected virtual void DoPlayerSkillUseTimeChangedEvent(PlayerSkillUseTimeChangedEvent evt)
  282. {
  283. SkillState ss = mSkillStatus.Get(evt.SkillTemplateID);
  284. if (ss != null)
  285. {
  286. //UnityEngine.Debug.LogError("PlayerSkillUseTimeChangedEvent usetimes = " + evt.useTimes);
  287. ss.SyncSkillUseTimes(evt.useTimes);
  288. }
  289. }
  290. protected virtual void DoSkillAdded(PlayerSkillAddedEvent e)
  291. {
  292. this.AddSkill(e.Skill, e.IsDefault);
  293. }
  294. protected virtual void DoSkillRemoved(PlayerSkillRemovedEvent e)
  295. {
  296. this.RemoveSkill(e.SkillID);
  297. }
  298. protected virtual void DoLaunchSkill(UnitLaunchSkillEvent me)
  299. {
  300. //ClientLog.LogWarning(">doLaunchSkillAction>{0} @ {1}", me.action_index, me.skill_id);
  301. SkillState ss = mSkillStatus.Get(me.skill_id);
  302. if (ss != null)
  303. {
  304. this.mLastLaunchSkill = ss;
  305. ss.Launch(me);
  306. }
  307. doLaunchSkillAction(me);
  308. if (mOnLaunchSkill != null)
  309. {
  310. mOnLaunchSkill.Invoke(this, ss, me);
  311. }
  312. }
  313. protected virtual void DoSkillCDChanged(PlayerCDEvent evt)
  314. {
  315. if (evt.is_all)
  316. {
  317. for (int i = 0; i < mSkillStatus.Count; i++)
  318. {
  319. SkillState ss = mSkillStatus.GetAt(i);
  320. if (evt.is_clear)
  321. ss.ClearCD();
  322. else if (evt.is_decrease_time)
  323. ss.DecreaseCD(evt.decrease_timeMS);
  324. else if (evt.is_decrease_pct)
  325. ss.DecreaseCD_Pct(evt.decrease_pct);
  326. }
  327. }
  328. else
  329. {
  330. SkillState ss = mSkillStatus.Get(evt.skill_template_id);
  331. if (ss != null)
  332. {
  333. if (evt.is_clear)
  334. ss.ClearCD();
  335. else if (evt.is_decrease_time)
  336. ss.DecreaseCD(evt.decrease_timeMS);
  337. else if (evt.is_decrease_pct)
  338. ss.DecreaseCD_Pct(evt.decrease_pct);
  339. }
  340. }
  341. }
  342. protected virtual void DoChangeAction(UnitSkillActionChangeEvent e)
  343. {
  344. if (mLastLaunchSkill != null)
  345. {
  346. mLastLaunchSkill.ChangeAction(e.ActionIndex);
  347. }
  348. if (mCurrentSkillAction != null)
  349. {
  350. mCurrentSkillAction.onUnitSkillActionChangeEvent(e);
  351. }
  352. if (mLastLaunchSkill != null && mOnSkillActionChanged != null)
  353. {
  354. mOnSkillActionChanged.Invoke(this, mLastLaunchSkill, e.ActionIndex);
  355. }
  356. }
  357. protected virtual void DoPlayerSkillStopEvent(PlayerSkillStopEvent e)
  358. {
  359. SkillState ss = mSkillStatus.Get(e.SkillID);
  360. if (ss != null)
  361. {
  362. ss.PlayerStop(e);
  363. }
  364. mChantingSkill = null;
  365. clearSkillAction();
  366. }
  367. protected virtual void DoPlayerSkillTimeChangedEvent(PlayerSkillTimeChangedEvent e)
  368. {
  369. SkillState ss = mSkillStatus.Get(e.SkillTemplateID);
  370. if (ss != null)
  371. {
  372. ss.TimeChange(e);
  373. }
  374. }
  375. public int BaseSkillID { get; private set; }
  376. internal SkillMap mSkillStatus = new SkillMap();
  377. private SkillState mLastLaunchSkill;
  378. public class SkillMap
  379. {
  380. private HashMap<int, SkillState> Map = new HashMap<int, SkillState>();
  381. private List<SkillState> For = new List<SkillState>();
  382. public int Count { get { return For.Count; } }
  383. public ICollection<int> Keys { get { return Map.Keys; } }
  384. public IEnumerable<SkillState> Skills { get { return For; } }
  385. public SkillState[] SkillsArray { get { return For.ToArray(); } }
  386. public SkillState GetAt(int i)
  387. {
  388. return For[i];
  389. }
  390. public SkillState Get(int id)
  391. {
  392. return Map.Get(id);
  393. }
  394. public void Put(SkillState state)
  395. {
  396. SkillState old = Map.Get(state.Data.ID);
  397. if (old != null)
  398. {
  399. For.Remove(old);
  400. }
  401. Map.Put(state.Data.ID, state);
  402. For.Add(state);
  403. }
  404. public SkillState RemoveByKey(int id)
  405. {
  406. SkillState ret = Map.RemoveByKey(id);
  407. if (ret != null)
  408. {
  409. For.Remove(ret);
  410. }
  411. return ret;
  412. }
  413. public bool ContainsKey(int id)
  414. {
  415. return Map.ContainsKey(id);
  416. }
  417. public void Clear()
  418. {
  419. Map.Clear();
  420. For.Clear();
  421. }
  422. }
  423. public class SkillState
  424. {
  425. readonly public SkillTemplate Data;
  426. readonly public ZoneUnit Owner;
  427. private SkillActiveState current_state;
  428. private int all_action_time_ms;
  429. private int pass_time_ms;
  430. private int stop_time_ms;
  431. private float percent = 1f;
  432. private float action_speed = 1f;
  433. private int total_cd_time_ms;
  434. private bool is_in_mutil_time = false;
  435. private bool is_period_cd_end = false;
  436. //新增蓄力
  437. private ActionEnum action_type;
  438. //新增使用次数
  439. private int use_Times;
  440. private bool is_use_tiems = false;
  441. private bool is_skill_end = false;
  442. private bool is_Skill_Block = false;
  443. //新增技能描述类型
  444. private SkillDescType skill_desc_type = SkillDescType.None;
  445. //当前技能是否还从未触发过
  446. private bool is_skill_never_launch;
  447. //CD状态变化事件
  448. public System.Action OnCDStateChange;
  449. //蓄力状态发生了变化
  450. public System.Action OnChargeStateChange;
  451. //蓄力条进度
  452. public float ChargeProgress { private set; get; }
  453. public uint ChargeTimeMS { private set; get; }
  454. internal SkillState(SkillTemplate data, ZoneUnit owner)
  455. {
  456. this.Data = data;
  457. this.Owner = owner;
  458. this.all_action_time_ms = Data.ActionQueueTimeMS;
  459. this.total_cd_time_ms = data.CoolDownMS;
  460. this.pass_time_ms = stop_time_ms = FullCDTimeMS;
  461. this.pass_time_ms = data.CoolDownMS;
  462. this.is_in_mutil_time = Data.IsSingleAction;
  463. this.use_Times = (int)data.CurUseTimes;
  464. this.is_use_tiems = this.use_Times >= 0 ? true : false;
  465. //以服务器为主,服务器那边目前没有做具体细分
  466. if (data.ActionPriority < 0)
  467. {
  468. skill_desc_type = SkillDescType.Displacement;
  469. }
  470. this.is_skill_never_launch = true;
  471. }
  472. internal bool TryLaunch(UnitLaunchSkillAction act)
  473. {
  474. if (IsActive &&
  475. Owner.MP >= Data.CostMP &&
  476. Owner.HP >= Data.CostHP &&
  477. (!IsCD))
  478. {
  479. return true;
  480. }
  481. return false;
  482. }
  483. internal void Launch(UnitLaunchSkillEvent evt)
  484. {
  485. this.is_skill_never_launch = false;
  486. this.percent = 0;
  487. this.pass_time_ms = 0;
  488. this.is_skill_end = false;
  489. this.CurrentActionID = evt.action_index;
  490. this.action_type = Data.ActionQueue[evt.action_index].SigleActionType;
  491. this.is_Skill_Block = Data.ActionQueue[evt.action_index].IsAddSkillBtnBlock;
  492. //ClientLog.LogWarning(">launch SkillState >{0} @ {1}, isMulti:{2}", CurrentActionID, this.Data.TemplateID, this.is_in_mutil_time);
  493. if (CurrentActionID + 1 == Data.ActionQueue.Count)
  494. {
  495. this.is_period_cd_end = this.Data.IsSingleAction;
  496. }
  497. if (evt.IsActionSpeedUP)
  498. {
  499. this.action_speed = evt.action_speed;
  500. }
  501. else
  502. {
  503. this.action_speed = 1f;
  504. }
  505. if (evt.IsChangeTotalCDTime)
  506. {
  507. this.total_cd_time_ms = evt.TotalCDTimeMS;
  508. }
  509. else
  510. {
  511. this.total_cd_time_ms = ToFullTimeCD();
  512. this.is_skill_end = true;
  513. //ClientLog.LogError("is_skill_end: true");
  514. }
  515. OnCDStateChange?.Invoke();
  516. if (OnChargeStateChange != null)
  517. {
  518. if (Data.ActionQueue[CurrentActionID].ShowChargeTimeMS > 0)
  519. {
  520. ChargeProgress = 0f;
  521. ChargeTimeMS = 0;
  522. OnChargeStateChange.Invoke();
  523. }
  524. else if (ChargeProgress > 0 && ChargeProgress < 1)
  525. {
  526. ChargeProgress = 1f;
  527. OnChargeStateChange.Invoke();
  528. }
  529. }
  530. }
  531. public byte NextAction()
  532. {
  533. if (Data.IsSingleAction)
  534. {
  535. int action_step = CurrentActionID;
  536. int action_time = this.FullCDTimeMS;
  537. if (Data.IsCoolDownWithAction)
  538. {
  539. action_time = Data.ActionQueue[action_step % Data.ActionQueue.Count].TotalTimeMS;
  540. }
  541. // 是放技能时,处于多段攻击连击冷却时间范围
  542. if (pass_time_ms - stop_time_ms < Data.SingleActionCoolDownMS || pass_time_ms < (action_time + Data.SingleActionCoolDownMS))
  543. {
  544. action_step += 1;
  545. action_step = (byte)(action_step % Data.ActionQueue.Count);
  546. return (byte)action_step;
  547. }
  548. }
  549. return 0;
  550. }
  551. private int ToFullTimeCD()
  552. {
  553. if (Data.IsCoolDownWithAction)
  554. {
  555. if (Data.IsSingleAction)
  556. {
  557. return Data.ActionQueue[CurrentActionID].TotalTimeMS;
  558. }
  559. else
  560. {
  561. return all_action_time_ms;
  562. }
  563. }
  564. return Data.ToUnitSkillTotalTime(Owner.mFastCastRate);
  565. }
  566. internal void SetActive(SkillActiveState state)
  567. {
  568. this.current_state = state;
  569. }
  570. internal void ChangeAction(int step)
  571. {
  572. var aq = Data.ActionQueue[CurrentActionID];
  573. if (aq.ShowChargeTimeMS > 0 && ChargeProgress < 1)
  574. {
  575. ChargeProgress = 1f;
  576. OnChargeStateChange?.Invoke();
  577. }
  578. this.CurrentActionID = step;
  579. }
  580. internal void ClearCD()
  581. {
  582. this.pass_time_ms = FullCDTimeMS;
  583. }
  584. internal void DecreaseCD(int ms)
  585. {
  586. this.pass_time_ms += ms;
  587. }
  588. internal void DecreaseCD_Pct(float pct)
  589. {
  590. this.pass_time_ms += (int)(FullCDTimeMS * pct);
  591. }
  592. internal void PlayerStop(PlayerSkillStopEvent stop)
  593. {
  594. this.stop_time_ms = pass_time_ms;
  595. this.is_skill_end = true;
  596. this.is_Skill_Block = false;
  597. if (ChargeProgress > 0 && ChargeProgress < 1)
  598. {
  599. ChargeProgress = 1f;
  600. OnChargeStateChange?.Invoke();
  601. }
  602. }
  603. internal void Sync(ClientStruct.UnitSkillStatus syn)
  604. {
  605. this.pass_time_ms = syn.PassTime;
  606. this.use_Times = syn.useTimes;
  607. this.is_use_tiems = syn.useTimes >= 0 ? true : false;
  608. internal_update(0);
  609. }
  610. internal void TimeChange(PlayerSkillTimeChangedEvent e)
  611. {
  612. if (this.is_skill_never_launch)
  613. {
  614. //重新登录后,技能的状态会丢失,这里重新算一下
  615. if(e.SkillPassTimeMS < e.SkillTotalTimeMS)
  616. {
  617. //CD未结束的技能,action都是在最后一段(不然不会有CD)
  618. this.CurrentActionID = Data.ActionQueue.Count - 1;
  619. }
  620. }
  621. this.pass_time_ms = e.SkillPassTimeMS;
  622. this.total_cd_time_ms = e.SkillTotalTimeMS;
  623. this.is_in_mutil_time = this.Data.IsSingleAction;
  624. this.is_period_cd_end = this.Data.IsSingleAction;
  625. this.is_Skill_Block = false;
  626. this.is_skill_end = true;
  627. internal_update(0);
  628. OnCDStateChange?.Invoke();
  629. if(OnChargeStateChange != null && ChargeProgress > 0 && ChargeProgress < 1)
  630. {
  631. ChargeProgress = 1f;
  632. OnChargeStateChange.Invoke();
  633. }
  634. }
  635. internal void Update(int intervalMS)
  636. {
  637. if (!IsActive && IsPauseOnDeactive) { return; }
  638. internal_update(intervalMS);
  639. if (this.isPeriodCDEnd)
  640. {
  641. SetMutilTime();
  642. }
  643. if (OnChargeStateChange != null && CurrentActionID >= 0 && CurrentActionID < Data.ActionQueue.Count)
  644. {
  645. var aq = Data.ActionQueue[CurrentActionID];
  646. if (aq.ShowChargeTimeMS > 0)
  647. {
  648. ChargeTimeMS += (uint)intervalMS;
  649. if (ChargeProgress < 1)
  650. {
  651. ChargeProgress = ChargeTimeMS / (float)aq.ShowChargeTimeMS;
  652. if (ChargeProgress > 1) ChargeProgress = 1f;
  653. OnChargeStateChange.Invoke();
  654. }
  655. }
  656. else if (ChargeProgress > 0 && ChargeProgress < 1)
  657. {
  658. ChargeProgress = 1f;
  659. OnChargeStateChange.Invoke();
  660. }
  661. }
  662. }
  663. internal void SetPassTime(int passTime)
  664. {
  665. this.pass_time_ms = passTime;
  666. internal_update(0);
  667. }
  668. void SetMutilTime()
  669. {
  670. if (CDPercent < 1)
  671. {
  672. this.is_in_mutil_time = false;
  673. }
  674. else
  675. {
  676. this.is_in_mutil_time = true;
  677. this.is_period_cd_end = false;
  678. }
  679. }
  680. private void internal_update(int intervalMS)
  681. {
  682. pass_time_ms += intervalMS;
  683. if (pass_time_ms >= FullCDTimeMS)
  684. {
  685. if (percent < 1)
  686. {
  687. percent = 1f;
  688. stop_time_ms = pass_time_ms;
  689. OnCDStateChange?.Invoke();
  690. }
  691. }
  692. else
  693. {
  694. percent = (float)pass_time_ms / FullCDTimeMS;
  695. }
  696. }
  697. //新增技能使用次数
  698. internal void SyncSkillUseTimes(int usetimes)
  699. {
  700. this.use_Times = usetimes;
  701. this.is_use_tiems = true;
  702. }
  703. public int FullCDTimeMS
  704. {
  705. get
  706. {
  707. return total_cd_time_ms;
  708. }
  709. }
  710. public bool isMutilTime
  711. {
  712. get { return this.is_in_mutil_time; }
  713. }
  714. public bool isPeriodCDEnd
  715. {
  716. get { return this.is_period_cd_end; }
  717. }
  718. public bool IsCD
  719. {
  720. get
  721. {
  722. if (Data.IsCoolDownWithAction)
  723. {
  724. return false;
  725. }
  726. return (percent < 1f);
  727. }
  728. }
  729. public float CDPercent
  730. {
  731. get
  732. {
  733. if (Data.IsCoolDownWithAction)
  734. {
  735. return 1f;
  736. }
  737. return percent;
  738. }
  739. }
  740. public float ActionSpeed { get { return action_speed; } }
  741. public int PassTimeMS { get { return pass_time_ms; } }
  742. public int StopTimeMS { get { return stop_time_ms; } }
  743. public int CurrentActionID { get; private set; }
  744. public SkillActiveState ActiveState { get { return current_state; } }
  745. public bool IsActive { get { return current_state == SkillActiveState.Active || current_state == SkillActiveState.ActiveAndHide; } }
  746. public bool IsPauseOnDeactive { get { return current_state == SkillActiveState.DeactiveAndPause; } }
  747. public ActionEnum ActionType { get { return action_type; } }
  748. public int UseTimes { get { return this.use_Times; } }
  749. public bool IsUseTimes { get { return this.is_use_tiems; } }
  750. //目前仅用于蓄力,后面如果有其它类型需要用到,注意TimeChange和StopSkill消息的顺序.......
  751. public bool IsSkillEnd {
  752. get { return this.is_skill_end; }
  753. }
  754. public bool IsSkillBlock { get { return this.is_Skill_Block; } }
  755. public SkillDescType SkillType { get { return this.skill_desc_type; } }
  756. }
  757. [Obsolete]
  758. public List<SkillState> GetSkillStatus()
  759. {
  760. return new List<SkillState>(mSkillStatus.Skills);
  761. }
  762. public void GetSkillStatus(List<SkillState> ret)
  763. {
  764. ret.AddRange(mSkillStatus.Skills);
  765. }
  766. public SkillState GetSkillState(int templateID)
  767. {
  768. return mSkillStatus.Get(templateID);
  769. }
  770. #endregion
  771. //---------------------------------------------------------------------------
  772. // skill action
  773. //---------------------------------------------------------------------------
  774. #region SkillAction
  775. /// <summary>
  776. /// 是否正在吟唱
  777. /// </summary>
  778. public bool IsChanttingSkill
  779. {
  780. get { return mChantingSkill != null; }
  781. }
  782. public int ChantingSkillPassMS
  783. {
  784. get { return (mChantingSkill != null) ? mChantingSkill.PassTimeMS : 0; }
  785. }
  786. public int ChantingSkillTotalMS
  787. {
  788. get { return (mChantingSkill != null) ? mChantingSkill.TotalTimeMS : 0; }
  789. }
  790. public SkillTemplate ChantingSkillData
  791. {
  792. get { return (mChantingSkill != null) ? mChantingSkill.Tag : null; }
  793. }
  794. public SkillState ChantingSkill
  795. {
  796. get { if (mChantingSkill != null) { return GetSkillState(mChantingSkill.Tag.TemplateID); } return null; }
  797. }
  798. private TimeExpire<SkillTemplate> mChantingSkill;
  799. protected virtual void DoUnitChantSkillEvent(UnitChantSkillEvent e)
  800. {
  801. var temp = Templates.getSkill(e.skill_id);
  802. mChantingSkill = new TimeExpire<SkillTemplate>(temp, e.chant_ms);
  803. SkillState ss = GetSkillState(e.skill_id);
  804. if (ss != null)
  805. {
  806. if (mOnChantSkill != null)
  807. {
  808. mOnChantSkill.Invoke(this, e, mChantingSkill);
  809. }
  810. }
  811. }
  812. protected virtual void doLaunchSkillAction(UnitLaunchSkillEvent me)
  813. {
  814. clearSkillAction();
  815. var temp = Templates.getSkill(me.skill_id);
  816. if (temp != null)
  817. {
  818. mCurrentSkillAction = new UnitSkillAction(this, temp);
  819. mCurrentSkillAction.onLaunch(me);
  820. invokeSkillActionStart(mCurrentSkillAction);
  821. }
  822. }
  823. protected virtual void invokeSkillActionStart(ISkillAction act)
  824. {
  825. if (mOnSkillActionStart != null)
  826. {
  827. mOnSkillActionStart.Invoke(this, act);
  828. }
  829. }
  830. public virtual ISkillAction CurrentSkillAction
  831. {
  832. get { return mCurrentSkillAction; }
  833. }
  834. public virtual UnitActionData CurrentSkillActionData
  835. {
  836. get
  837. {
  838. if (CurrentSkillAction != null)
  839. {
  840. return CurrentSkillAction.CurrentAction;
  841. }
  842. return null;
  843. }
  844. }
  845. //-------------------------------------------------------------------------------------------
  846. // unit impl
  847. private UnitSkillAction mCurrentSkillAction;
  848. private void updateSkillAction(int intervalMS)
  849. {
  850. if (mCurrentSkillAction != null)
  851. {
  852. //UnityEngine.Debug.LogError("2 mCurrentSkillAction = " + mCurrentSkillAction.SkillData.TemplateID + " actionIndex = " + mCurrentSkillAction.CurrentActionIndex);
  853. mCurrentSkillAction.onUpdate(intervalMS);
  854. if (mCurrentSkillAction.IsDone)
  855. {
  856. clearSkillAction();
  857. }
  858. }
  859. }
  860. private void clearSkillAction()
  861. {
  862. if (mCurrentSkillAction != null)
  863. {
  864. mCurrentSkillAction.onStop();
  865. mCurrentSkillAction = null;
  866. }
  867. }
  868. public abstract class ISkillAction
  869. {
  870. private BitSet8 current_action_status = new BitSet8();
  871. public bool IsControlMoveable { get { return current_action_status.Get(0); } protected set { current_action_status.Set(0, value); } }
  872. public bool IsControlFaceable { get { return current_action_status.Get(1); } protected set { current_action_status.Set(1, value); } }
  873. public bool IsCancelableBySkill { get { return current_action_status.Get(2); } protected set { current_action_status.Set(2, value); } }
  874. public bool IsCancelableByMove { get { return current_action_status.Get(3); } protected set { current_action_status.Set(3, value); } }
  875. public bool IsNoneBlock { get { return current_action_status.Get(4); } protected set { current_action_status.Set(4, value); } }
  876. public bool IsNoneTouch { get { return current_action_status.Get(5); } protected set { current_action_status.Set(5, value); } }
  877. public bool IsFaceToTarget { get { return current_action_status.Get(6); } protected set { current_action_status.Set(6, value); } }
  878. public abstract SkillTemplate SkillData { get; }
  879. public abstract UnitLaunchSkillEvent LaunchEvent { get; }
  880. public abstract bool IsDone { get; }
  881. public abstract float ActionSpeed { get; }
  882. public abstract byte ActionStepIndex { get; }
  883. public abstract int[] ActionTimeArray { get; }
  884. public abstract int TotalTimeMS { get; }
  885. public abstract int CurrentActionIndex { get; }
  886. public abstract string CurrentActionName { get; }
  887. public abstract UnitActionData CurrentAction { get; }
  888. public abstract float ExpirePercent { get; }
  889. //把当前的执行时间抛出去给客户端用,很违和的做法,没办法数据配在扩展属性里面
  890. //CommonAI取不出来,强行操作会引发不可控的Bug
  891. public abstract int CurPassTimeMS { get; }
  892. public abstract bool IsJumpAction { get; }
  893. internal abstract void onLaunch(UnitLaunchSkillEvent e);
  894. internal abstract void onUnitSkillActionChangeEvent(UnitSkillActionChangeEvent evt);
  895. internal abstract void onUpdate(int intervalMS);
  896. internal abstract void onStop();
  897. internal abstract void RestJumpAction(bool isJumpAction);
  898. }
  899. public class UnitSkillAction : ISkillAction
  900. {
  901. readonly private ZoneUnit ownerUnit;
  902. readonly private SkillTemplate skill;
  903. private UnitLaunchSkillEvent launch_event;
  904. private int current_pass_time = 0;
  905. private int total_pass_time = 0;
  906. private int total_time_ms = 0;
  907. private bool is_done = false;
  908. private bool is_jump_action = false;
  909. private Queue<UnitActionData> action_queue;
  910. private int current_action_index = 0;
  911. private UnitActionData current_action = null;
  912. private PopupKeyFrames<UnitActionData.KeyFrame> current_frames = new PopupKeyFrames<UnitActionData.KeyFrame>();
  913. private int current_action_total_time = 0;
  914. private int[] action_time_array;
  915. public ZoneLayer Parent { get { return ownerUnit.Parent; } }
  916. public override int[] ActionTimeArray { get { return action_time_array; } }
  917. public override int TotalTimeMS { get { return total_time_ms; } }
  918. public override byte ActionStepIndex { get { return (launch_event != null) ? launch_event.action_index : (byte)0; } }
  919. public override int CurrentActionIndex { get { return current_action_index; } }
  920. public override string CurrentActionName { get { return (current_action != null) ? current_action.ActionName : null; } }
  921. public override UnitActionData CurrentAction { get { return current_action; } }
  922. public override float ExpirePercent { get { return total_pass_time / (float)TotalTimeMS; } }
  923. public override SkillTemplate SkillData { get { return skill; } }
  924. public override UnitLaunchSkillEvent LaunchEvent { get { return launch_event; } }
  925. public override bool IsDone { get { return is_done; } }
  926. public override int CurPassTimeMS { get { return current_pass_time; } }
  927. protected internal UnitSkillAction(ZoneUnit actor, SkillTemplate skill)
  928. {
  929. this.skill = skill;
  930. this.ownerUnit = actor;
  931. this.action_time_array = skill.ActionQueueTimeArray;
  932. }
  933. public override float ActionSpeed
  934. {
  935. get
  936. {
  937. if (launch_event != null)
  938. {
  939. if(launch_event.action_speed_add != null && launch_event.action_index < launch_event.action_speed_add.Length)
  940. {
  941. return launch_event.action_speed + launch_event.action_speed_add[launch_event.action_index];
  942. }
  943. return launch_event.action_speed;
  944. }
  945. return 1f;
  946. }
  947. }
  948. public override bool IsJumpAction
  949. {
  950. get
  951. {
  952. return is_jump_action;
  953. }
  954. }
  955. internal override void onLaunch(UnitLaunchSkillEvent e)
  956. {
  957. //UnityEngine.Debug.LogError("SkillID = " + e.skill_id + " ActionSpeed = " + e.action_speed + " action_index = " + e.action_index);
  958. this.launch_event = e;
  959. this.total_pass_time = 0;
  960. this.current_pass_time = 0;
  961. if (e.action_time_array != null && e.action_time_array.Length > 0)
  962. {
  963. this.total_time_ms = e.TotalActionTimeMS;
  964. this.action_time_array = e.action_time_array;
  965. }
  966. else if (skill.IsSingleAction)
  967. {
  968. this.total_time_ms = skill.ActionQueue[launch_event.action_index].TotalTimeMS;
  969. this.action_time_array = new int[] { TotalTimeMS };
  970. }
  971. else
  972. {
  973. this.total_time_ms = skill.ActionQueueTimeMS;
  974. this.action_time_array = skill.ActionQueueTimeArray;
  975. }
  976. if (skill.IsSingleAction)
  977. {
  978. var sa = skill.ActionQueue[launch_event.action_index];
  979. this.action_queue = new Queue<UnitActionData>(1);
  980. this.action_queue.Enqueue(sa);
  981. this.current_action_index = launch_event.action_index;
  982. }
  983. else
  984. {
  985. this.action_queue = new Queue<UnitActionData>(skill.ActionQueue);
  986. this.current_action_index = launch_event.action_index;
  987. }
  988. this.current_action = null;
  989. this.nextAction(this.current_action_index);
  990. }
  991. internal override void onUnitSkillActionChangeEvent(UnitSkillActionChangeEvent e)
  992. {
  993. while (this.CurrentActionIndex < e.ActionIndex)
  994. {
  995. if (!nextAction(current_action_index + 1))
  996. {
  997. this.total_pass_time = TotalTimeMS;
  998. this.is_done = true;
  999. break;
  1000. }
  1001. }
  1002. }
  1003. internal override void onStop()
  1004. {
  1005. this.is_done = true;
  1006. this.total_pass_time = TotalTimeMS;
  1007. }
  1008. internal override void onUpdate(int intervalMS)
  1009. {
  1010. int time_pass = (int)(intervalMS * ActionSpeed);
  1011. this.total_pass_time += time_pass;
  1012. this.total_pass_time = Math.Min(total_pass_time, TotalTimeMS);
  1013. this.current_pass_time += time_pass;
  1014. if (current_action == null)
  1015. {
  1016. nextAction(current_action_index + 1);
  1017. }
  1018. if (current_action == null)
  1019. {
  1020. this.is_done = true;
  1021. this.total_pass_time = TotalTimeMS;
  1022. }
  1023. else
  1024. {
  1025. // 关键帧 //
  1026. using (var kfs = ListObjectPool<UnitActionData.KeyFrame>.AllocAutoRelease())
  1027. {
  1028. if (current_frames.PopKeyFrames(current_pass_time, kfs) > 0)
  1029. {
  1030. for (int i = 0; i < kfs.Count; i++)
  1031. {
  1032. doKeyFrame(kfs[i]);
  1033. }
  1034. }
  1035. }
  1036. // 下段动作 //
  1037. if ((current_action != null) && (current_pass_time >= current_action_total_time))
  1038. {
  1039. current_action = null;
  1040. if (action_queue.Count == 0)
  1041. {
  1042. this.is_done = true;
  1043. this.total_pass_time = TotalTimeMS;
  1044. }
  1045. }
  1046. }
  1047. }
  1048. private bool nextAction(int index)
  1049. {
  1050. if (action_queue != null && action_queue.Count > 0)
  1051. {
  1052. this.current_action_index = index;
  1053. this.current_action = action_queue.Dequeue();
  1054. if (current_action != null)
  1055. {
  1056. this.current_frames.AddRange(current_action.KeyFrames);
  1057. this.current_pass_time = 0;
  1058. //NewAction//
  1059. if (launch_event.action_time_array != null)
  1060. {
  1061. if (skill.IsSingleAction)
  1062. {
  1063. this.current_action_total_time = launch_event.TotalActionTimeMS;
  1064. }
  1065. else if (current_action_index < launch_event.action_time_array.Length)
  1066. {
  1067. this.current_action_total_time = launch_event.action_time_array[current_action_index];
  1068. }
  1069. }
  1070. else
  1071. {
  1072. this.current_action_total_time = current_action.TotalTimeMS;
  1073. }
  1074. this.IsCancelableBySkill = current_action.IsCancelableBySkill;
  1075. this.IsNoneBlock = current_action.IsNoneBlock;
  1076. this.IsNoneTouch = current_action.IsNoneTouch;
  1077. this.IsFaceToTarget = current_action.IsFaceToTarget;
  1078. this.IsCancelableByMove = current_action.IsCancelable;
  1079. this.IsControlMoveable = current_action.IsControlMoveable;
  1080. this.IsControlFaceable = current_action.IsControlFaceable;
  1081. return true;
  1082. }
  1083. }
  1084. current_action = null;
  1085. return false;
  1086. }
  1087. private void doKeyFrame(UnitActionData.KeyFrame kf)
  1088. {
  1089. // 关键帧改变状态
  1090. if (kf.ChangeStatus != null)
  1091. {
  1092. this.IsNoneBlock = kf.ChangeStatus.IsNoneBlock;
  1093. this.IsNoneTouch = kf.ChangeStatus.IsNoneTouch;
  1094. this.IsFaceToTarget = kf.ChangeStatus.IsFaceToTarget;
  1095. this.IsCancelableByMove = kf.ChangeStatus.IsCancelable;
  1096. this.IsCancelableBySkill = kf.ChangeStatus.IsCancelableBySkill;
  1097. this.IsControlMoveable = kf.ChangeStatus.IsControlMoveable;
  1098. this.IsControlFaceable = kf.ChangeStatus.IsControlFaceable;
  1099. }
  1100. }
  1101. internal override void RestJumpAction(bool isJumpAction)
  1102. {
  1103. is_jump_action = isJumpAction;
  1104. }
  1105. }
  1106. //-------------------------------------------------------------------------------------------
  1107. #endregion
  1108. //--------------------------------------------------------------------------------
  1109. #region Buff
  1110. internal BuffMap mBuffStatus = new BuffMap();
  1111. internal void SyncBuffStatus(ClientStruct.UnitBuffStatus[] buffs)
  1112. {
  1113. if (buffs != null)
  1114. {
  1115. for (int i = 0; i < buffs.Length; i++)
  1116. {
  1117. ClientStruct.UnitBuffStatus st = buffs[i];
  1118. TryAddBuff(st.BuffTemplateID, st.SenderID, st.IsEquip, st.TotalTime, st.OverlayLevel, st.PassTime);
  1119. }
  1120. }
  1121. }
  1122. protected void SyncBuffOverlayLevel(BuffDataNotify data)
  1123. {
  1124. BuffState bs = mBuffStatus.Get(data.buffId, data.senderId);
  1125. if (bs != null)
  1126. {
  1127. bs.SyncBuffExtData(data.overlayLevel, bs.BuffExtendData);
  1128. //YXJDebug.logError(data.buffId + " , level:" + bs.OverlayLevel + " time = " + bs.BuffTotalTime + ", per:"+bs.CDPercent);
  1129. if (mOnBuffChanged != null)
  1130. {
  1131. mOnBuffChanged.Invoke(this, bs);
  1132. }
  1133. }
  1134. }
  1135. protected virtual void DoLaunchBuff(UnitLaunchBuffEvent me)
  1136. {
  1137. //YXJDebug.logError(me.buffTemplateID + " overlayLevel = " + me.overlayLevel + " time = " + me.buffTimeMS);
  1138. TryAddBuff(me.buffTemplateID, me.senderID, me.IsEquip, me.buffTimeMS, me.overlayLevel, 0, me.buffExtData);
  1139. }
  1140. protected virtual void DoStopBuff(UnitStopBuffEvent e)
  1141. {
  1142. TryRemoveBuff(e.buffTemplateID, e.senderID);
  1143. }
  1144. //新增Buff接口
  1145. protected virtual void DoRemoveOverlayLevelBuff(SyncUnitBuffState e)
  1146. {
  1147. //UnityEngine.Debug.LogError("DoRemoveOverlayLevelBuff overlayLevel = " + e.overlayLevel + " buffExtData = " + e.buffExtData);
  1148. if (e.buffExtData > 0)
  1149. {
  1150. var bs = mBuffStatus.Get(e.buffTemplateID, e.ObjectID);
  1151. if (bs != null && mOnRemoveBuffByOverlayLeveled != null)
  1152. {
  1153. mOnRemoveBuffByOverlayLeveled(this, bs);
  1154. bs.SyncBuffExtData(e.overlayLevel, e.buffExtData);
  1155. }
  1156. }
  1157. else
  1158. {
  1159. TryRemoveBuff(e.buffTemplateID, e.ObjectID);
  1160. }
  1161. }
  1162. private void TryAddBuff(int buffTempalteID, uint senderID, bool isEquip, int totalTime, byte overlayLevel, int passTime = 0, int buffExtData = 0)
  1163. {
  1164. BuffTemplate buff = Templates.getBuff(buffTempalteID);
  1165. if (buff != null)
  1166. {
  1167. BuffState bs = mBuffStatus.Get(buffTempalteID, senderID);
  1168. if (bs != null)
  1169. {
  1170. bs.Sync(overlayLevel, totalTime, passTime, buffExtData);
  1171. if (mOnBuffChanged != null)
  1172. {
  1173. mOnBuffChanged.Invoke(this, bs);
  1174. }
  1175. }
  1176. else
  1177. {
  1178. bs = new BuffState(buff, this, senderID, isEquip);
  1179. bs.Sync(overlayLevel, totalTime, passTime, buffExtData);
  1180. mBuffStatus.Put(bs);
  1181. if (mOnBuffAdded != null)
  1182. {
  1183. mOnBuffAdded.Invoke(this, bs);
  1184. }
  1185. }
  1186. //UnityEngine.Debug.LogError("Server buffID = " + buffTempalteID + " LockStateAction = " + buff.LockStateAction);
  1187. //新增单独状态
  1188. if (!string.IsNullOrEmpty(buff.LockStateAction))
  1189. {
  1190. this.SetCurrentState(UnitActionStatus.BuffLockStateAction, CurrentSubState, buff);
  1191. }
  1192. }
  1193. }
  1194. private void TryRemoveBuff(int buffTempalteID, uint senderID)
  1195. {
  1196. BuffState bs = mBuffStatus.RemoveByKey(buffTempalteID, senderID);
  1197. if (bs != null)
  1198. {
  1199. bs.OnEnd();
  1200. if (mOnBuffRemoved != null)
  1201. {
  1202. mOnBuffRemoved.Invoke(this, bs);
  1203. }
  1204. //UnityEngine.Debug.LogError("RemoveBuff CurrentState= " + CurrentState);
  1205. //置回单独状态
  1206. if (CurrentState == UnitActionStatus.BuffLockStateAction)
  1207. {
  1208. this.SetCurrentState(UnitActionStatus.Idle);
  1209. }
  1210. }
  1211. }
  1212. private void UpdateBuffs(int intervalMS)
  1213. {
  1214. mBuffStatus.ForEachUpdate(intervalMS);
  1215. //mBuffStatus.ForEach((bs) =>
  1216. //{
  1217. // bs.OnUpdate(intervalMS);
  1218. //});
  1219. }
  1220. //返回当前buff列表中,是否含有变身buff
  1221. public bool HasMakeAvatarBuff()
  1222. {
  1223. bool has = false;
  1224. mBuffStatus.ForEach((BuffState buf) => {
  1225. if (buf.Data.MakeAvatar)
  1226. {
  1227. has = true;
  1228. }
  1229. });
  1230. return has;
  1231. }
  1232. //返回当前buff列表中,是否含有切换技能buff
  1233. public bool HasChangeSkillBuff()
  1234. {
  1235. bool has = false;
  1236. mBuffStatus.ForEach((BuffState buf) => {
  1237. if (buf.Data.UnitChangeSkills)
  1238. {
  1239. has = true;
  1240. }
  1241. });
  1242. return has;
  1243. }
  1244. public class BuffMap
  1245. {
  1246. private HashMap<int, BuffList> Map = new HashMap<int, BuffList>();
  1247. private List<BuffList> For = new List<BuffList>();
  1248. public BuffState Get(int id, uint senderID)
  1249. {
  1250. var list = Map.Get(id);
  1251. if (list != null)
  1252. {
  1253. return list.Get(senderID);
  1254. }
  1255. return null;
  1256. }
  1257. internal void Put(BuffState state)
  1258. {
  1259. var list = Map.Get(state.BuffID);
  1260. if (list == null)
  1261. {
  1262. list = new BuffList(state.Data);
  1263. Map.Add(state.BuffID, list);
  1264. For.Add(list);
  1265. }
  1266. list.Add(state);
  1267. }
  1268. internal BuffState RemoveByKey(int id, uint senderID)
  1269. {
  1270. var list = Map.Get(id);
  1271. if (list != null)
  1272. {
  1273. var st = list.Get(senderID);
  1274. if (st != null)
  1275. {
  1276. var ret = list.Remove(senderID);
  1277. if (list.Count == 0)
  1278. {
  1279. For.Remove(list);
  1280. Map.Remove(id);
  1281. }
  1282. return ret;
  1283. }
  1284. }
  1285. return null;
  1286. }
  1287. internal void Clear()
  1288. {
  1289. For.Clear();
  1290. Map.Clear();
  1291. }
  1292. public void ForEach(Action<BuffState> action)
  1293. {
  1294. for (int i = For.Count - 1; i >= 0; --i)
  1295. {
  1296. For[i].ForEach(action);
  1297. }
  1298. }
  1299. public int GetBuffCount()
  1300. {
  1301. return For.Count;
  1302. }
  1303. public void ForEachUpdate(int intervalMS)
  1304. {
  1305. for (int i = For.Count - 1; i >= 0; --i)
  1306. {
  1307. For[i].ForEachUpdate(intervalMS);
  1308. }
  1309. }
  1310. public class BuffList
  1311. {
  1312. public readonly BuffTemplate Data;
  1313. private HashMap<uint, BuffState> Map = new HashMap<uint, BuffState>();
  1314. private List<BuffState> For = new List<BuffState>();
  1315. public int Count { get { return Map.Count; } }
  1316. internal BuffList(BuffTemplate data)
  1317. {
  1318. this.Data = data;
  1319. }
  1320. internal BuffState Remove(uint senderID)
  1321. {
  1322. BuffState ret;
  1323. if (Data.IsDuplicating)
  1324. {
  1325. ret = Map.RemoveByKey(senderID);
  1326. }
  1327. else
  1328. {
  1329. ret = Map.RemoveByKey(0);
  1330. }
  1331. if (ret != null)
  1332. {
  1333. For.Remove(ret);
  1334. }
  1335. return ret;
  1336. }
  1337. internal void Add(BuffState state)
  1338. {
  1339. if (Data.IsDuplicating)
  1340. {
  1341. Map.Add(state.SenderID, state);
  1342. }
  1343. else
  1344. {
  1345. Map.Add(0, state);
  1346. }
  1347. For.Add(state);
  1348. }
  1349. internal BuffState Get(uint senderID)
  1350. {
  1351. if (Data.IsDuplicating)
  1352. {
  1353. if (senderID == 0 && Map.Count > 0)
  1354. {
  1355. return Map.First().Value;
  1356. }
  1357. else
  1358. {
  1359. return Map.Get(senderID);
  1360. }
  1361. }
  1362. else
  1363. {
  1364. return Map.Get(0);
  1365. }
  1366. }
  1367. internal void ForEach(Action<BuffState> action)
  1368. {
  1369. for (int i = For.Count - 1; i >= 0; --i)
  1370. {
  1371. action(For[i]);
  1372. }
  1373. }
  1374. public void ForEachUpdate(int intervalMS)
  1375. {
  1376. for (int i = For.Count - 1; i >= 0; --i)
  1377. {
  1378. For[i].OnUpdate(intervalMS);
  1379. }
  1380. }
  1381. }
  1382. }
  1383. public class BuffState
  1384. {
  1385. readonly public BuffTemplate Data;
  1386. readonly public bool isEquip;
  1387. readonly public ZoneUnit Owner;
  1388. readonly public uint SenderID;
  1389. private byte overlay_level;
  1390. private int total_time;
  1391. private int pass_time = 0;
  1392. private float percent = 1f;
  1393. private int buff_ext_data = 0;
  1394. private int buff_ext_data_index = -1;
  1395. private TimeInterval<BuffTemplate.KeyFrame> interval;
  1396. private PopupKeyFrames<BuffTemplate.KeyFrame> keyframes;
  1397. internal BuffState(BuffTemplate data, ZoneUnit owner, uint senderID, bool isEquip)
  1398. {
  1399. this.Data = data;
  1400. this.isEquip = isEquip;
  1401. this.Owner = owner;
  1402. this.SenderID = senderID;
  1403. }
  1404. internal void Sync(byte overlayLevel, int totalTime, int passTime, int buffExtData = 0)
  1405. {
  1406. this.overlay_level = overlayLevel;
  1407. this.total_time = totalTime;
  1408. if (passTime < this.pass_time || this.pass_time == 0)
  1409. {
  1410. this.interval = new TimeInterval<BuffTemplate.KeyFrame>(Data.HitIntervalMS);
  1411. this.interval.Tag = Data.HitKeyFrame;
  1412. this.keyframes = new PopupKeyFrames<BuffTemplate.KeyFrame>();
  1413. this.keyframes.AddRange(Data.KeyFrames);
  1414. this.pass_time = 0;
  1415. }
  1416. if (passTime > this.pass_time)
  1417. {
  1418. this.interval.SetPassTime(passTime);
  1419. this.keyframes.PopKeyFrames(passTime, null);
  1420. this.pass_time = passTime;
  1421. }
  1422. this.percent = Math.Min(1, pass_time / (float)total_time);
  1423. this.buff_ext_data = buffExtData;
  1424. SetBuffExtendDataIndex(buffExtData);
  1425. }
  1426. internal void OnEnd()
  1427. {
  1428. if (Data.EndKeyFrame != null && Data.EndKeyFrame.Effect != null)
  1429. {
  1430. Owner.Parent.PreQueueEvent(new UnitEffectEvent(Owner.ObjectID, Data.EndKeyFrame.Effect));
  1431. }
  1432. }
  1433. internal void OnUpdate(int intervalMS)
  1434. {
  1435. using (var kfs = ListObjectPool<BuffTemplate.KeyFrame>.AllocAutoRelease())
  1436. {
  1437. if (keyframes.PopKeyFrames(pass_time, kfs) > 0)
  1438. {
  1439. for (int i = 0; i < kfs.Count; i++)
  1440. {
  1441. BuffTemplate.KeyFrame kf = kfs[i];
  1442. if (kf.Effect != null)
  1443. {
  1444. Owner.Parent.PreQueueEvent(new UnitEffectEvent(Owner.ObjectID, kf.Effect));
  1445. }
  1446. }
  1447. }
  1448. }
  1449. if (interval.Update(intervalMS))
  1450. {
  1451. if (Data.HitKeyFrame != null && Data.HitKeyFrame.Effect != null)
  1452. {
  1453. Owner.Parent.PreQueueEvent(new UnitEffectEvent(Owner.ObjectID, Data.HitKeyFrame.Effect));
  1454. }
  1455. }
  1456. this.pass_time += intervalMS;
  1457. if (percent < 1f)
  1458. {
  1459. this.percent = Math.Min(1, pass_time / (float)total_time);
  1460. }
  1461. }
  1462. public void SyncBuffExtData(byte overlayLevel, int buffExtData)
  1463. {
  1464. overlay_level = overlayLevel;
  1465. buff_ext_data = buffExtData;
  1466. }
  1467. private void SetBuffExtendDataIndex(int curBuffExtData)
  1468. {
  1469. if (curBuffExtData < 1) return;
  1470. if (curBuffExtData < 10)
  1471. {
  1472. buff_ext_data_index = curBuffExtData;
  1473. }
  1474. else
  1475. {
  1476. string curString = Convert.ToString(curBuffExtData);
  1477. var str = curString.Substring(curString.Length - 1, 1);
  1478. if (!string.IsNullOrEmpty(str))
  1479. {
  1480. int.TryParse(str, out buff_ext_data_index);
  1481. }
  1482. }
  1483. }
  1484. public int BuffID { get { return Data.ID; } }
  1485. public bool IsDone { get { return (isEquip) ? false : (percent >= 1f); } }
  1486. public float CDPercent { get { return percent; } }
  1487. public byte OverlayLevel { get { return overlay_level; } }
  1488. public int BuffTotalTime { get { return total_time; } }
  1489. public int BuffLeftTime { get { return total_time - pass_time; } }
  1490. public int BuffExtendData { get { return buff_ext_data; } }
  1491. public int BuffExtendDataIndex { get { return buff_ext_data_index; } }
  1492. }
  1493. [Obsolete]
  1494. public List<BuffState> GetBuffStatus()
  1495. {
  1496. var list = new List<BuffState>();
  1497. GetBuffStatus(list);
  1498. return list;
  1499. }
  1500. public void GetBuffStatus(List<BuffState> ret)
  1501. {
  1502. mBuffStatus.ForEach((bs) => { ret.Add(bs); });
  1503. }
  1504. public int GetBuffStatusCount()
  1505. {
  1506. return mBuffStatus.GetBuffCount();
  1507. }
  1508. public BuffState GetBuff(int tempID, uint senderID)
  1509. {
  1510. return mBuffStatus.Get(tempID, senderID);
  1511. }
  1512. public BuffState GetBuff(int tempID)
  1513. {
  1514. return mBuffStatus.Get(tempID, 0);
  1515. }
  1516. #endregion
  1517. //--------------------------------------------------------------------------------
  1518. #region PickObject
  1519. private TimeExpire<UnitStartPickObjectEvent> mPickEvent;
  1520. public TimeExpire<UnitStartPickObjectEvent> PickEvent { get { return mPickEvent; } }
  1521. protected virtual void DoStartPick(UnitStartPickObjectEvent pick)
  1522. {
  1523. mPickEvent = new TimeExpire<UnitStartPickObjectEvent>(pick, pick.PickTimeMS);
  1524. SetCurrentState(UnitActionStatus.Pick, pick);
  1525. if (mOnStartPickObject != null)
  1526. {
  1527. mOnStartPickObject.Invoke(this, mPickEvent);
  1528. }
  1529. }
  1530. protected virtual void DoStopPick(UnitStopPickObjectEvent pick)
  1531. {
  1532. if (mPickEvent != null)
  1533. {
  1534. mPickEvent.End();
  1535. mPickEvent = null;
  1536. }
  1537. if (mOnStopPickObject != null)
  1538. {
  1539. mOnStopPickObject.Invoke(this, pick);
  1540. }
  1541. }
  1542. private void UpdatePickEvent(int intervalMS)
  1543. {
  1544. if (mPickEvent != null)
  1545. {
  1546. mPickEvent.Update(intervalMS);
  1547. }
  1548. }
  1549. #endregion
  1550. //--------------------------------------------------------------------------------
  1551. #region 本地技能预演
  1552. protected virtual void DoJumpToTargetEnd()
  1553. {
  1554. if (mOnClientSkillSimulation != null)
  1555. {
  1556. mOnClientSkillSimulation.Invoke(this, SimulationSkillEnum.JumpEnd);
  1557. }
  1558. }
  1559. #endregion 本地技能预演
  1560. #region MultiTimeLine
  1561. /// <summary>
  1562. /// 是否可被发现
  1563. /// </summary>
  1564. virtual public bool IsVisible { get { return !IsTimeLineEnable(2); } }
  1565. /// <summary>
  1566. /// 是否无敌
  1567. /// </summary>
  1568. virtual public bool IsInvincible { get { return IsTimeLineEnable(3); } }
  1569. /// <summary>
  1570. /// 此单位是否霸体
  1571. /// </summary>
  1572. virtual public bool IsNoneBlock { get { return IsTimeLineEnable(0); } }
  1573. /// <summary>
  1574. /// 是否为眩晕
  1575. /// </summary>
  1576. virtual public bool IsStun { get { return IsTimeLineEnable(1); } }
  1577. /// <summary>
  1578. /// 是否沉默
  1579. /// </summary>
  1580. virtual public bool IsSilent { get { return IsTimeLineEnable(4); } }
  1581. //--------------------------------------------------------------------------------
  1582. private UnitSyncMultiTimeLine mMultiTimeLine;
  1583. private void DoUnitSyncMultiTimeLine(UnitSyncMultiTimeLine e)
  1584. {
  1585. this.mMultiTimeLine = e;
  1586. }
  1587. /// <summary>
  1588. /// 指定TimeLine是否还有任务
  1589. /// </summary>
  1590. /// <param name="index"></param>
  1591. /// <returns></returns>
  1592. public bool IsTimeLineEnable(int index)
  1593. {
  1594. if (mMultiTimeLine != null && mMultiTimeLine.timelines != null && index < mMultiTimeLine.timelines.Count && index >= 0)
  1595. {
  1596. return mMultiTimeLine.timelines[index];
  1597. }
  1598. return false;
  1599. }
  1600. public void GetMultiTimeLineStatus(List<bool> list)
  1601. {
  1602. if (mMultiTimeLine != null && mMultiTimeLine.timelines != null)
  1603. {
  1604. list.AddRange(mMultiTimeLine.timelines);
  1605. }
  1606. }
  1607. #endregion
  1608. }
  1609. }