ZoneObject.Unit.Status.cs 63 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747
  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. this.CurrentActionID = -1;
  472. }
  473. internal bool TryLaunch(UnitLaunchSkillAction act)
  474. {
  475. if (IsActive &&
  476. Owner.MP >= Data.CostMP &&
  477. Owner.HP >= Data.CostHP &&
  478. (!IsCD))
  479. {
  480. return true;
  481. }
  482. return false;
  483. }
  484. internal void Launch(UnitLaunchSkillEvent evt)
  485. {
  486. this.is_skill_never_launch = false;
  487. this.percent = 0;
  488. this.pass_time_ms = 0;
  489. this.is_skill_end = false;
  490. this.CurrentActionID = evt.action_index;
  491. this.action_type = Data.ActionQueue[evt.action_index].SigleActionType;
  492. this.is_Skill_Block = Data.ActionQueue[evt.action_index].IsAddSkillBtnBlock;
  493. //ClientLog.LogWarning(">launch SkillState >{0} @ {1}, isMulti:{2}", CurrentActionID, this.Data.TemplateID, this.is_in_mutil_time);
  494. if (CurrentActionID + 1 == Data.ActionQueue.Count)
  495. {
  496. this.is_period_cd_end = this.Data.IsSingleAction;
  497. }
  498. if (evt.IsActionSpeedUP)
  499. {
  500. this.action_speed = evt.action_speed;
  501. }
  502. else
  503. {
  504. this.action_speed = 1f;
  505. }
  506. if (evt.IsChangeTotalCDTime)
  507. {
  508. this.total_cd_time_ms = evt.TotalCDTimeMS;
  509. }
  510. else
  511. {
  512. this.total_cd_time_ms = ToFullTimeCD();
  513. this.is_skill_end = true;
  514. //ClientLog.LogError("is_skill_end: true");
  515. }
  516. OnCDStateChange?.Invoke();
  517. if (OnChargeStateChange != null)
  518. {
  519. if (Data.ActionQueue[CurrentActionID].ShowChargeTimeMS > 0)
  520. {
  521. ChargeProgress = 0f;
  522. ChargeTimeMS = 0;
  523. OnChargeStateChange.Invoke();
  524. }
  525. else if (ChargeProgress > 0 && ChargeProgress < 1)
  526. {
  527. ChargeProgress = 1f;
  528. OnChargeStateChange.Invoke();
  529. }
  530. }
  531. }
  532. public byte NextAction()
  533. {
  534. if (Data.IsSingleAction)
  535. {
  536. int action_step = CurrentActionID;
  537. int action_time = this.FullCDTimeMS;
  538. if (Data.IsCoolDownWithAction)
  539. {
  540. action_time = Data.ActionQueue[action_step % Data.ActionQueue.Count].TotalTimeMS;
  541. }
  542. // 是放技能时,处于多段攻击连击冷却时间范围
  543. if (pass_time_ms - stop_time_ms < Data.SingleActionCoolDownMS || pass_time_ms < (action_time + Data.SingleActionCoolDownMS))
  544. {
  545. action_step += 1;
  546. action_step = (byte)(action_step % Data.ActionQueue.Count);
  547. return (byte)action_step;
  548. }
  549. }
  550. return 0;
  551. }
  552. private int ToFullTimeCD()
  553. {
  554. if (Data.IsCoolDownWithAction)
  555. {
  556. if (Data.IsSingleAction)
  557. {
  558. return Data.ActionQueue[CurrentActionID].TotalTimeMS;
  559. }
  560. else
  561. {
  562. return all_action_time_ms;
  563. }
  564. }
  565. return Data.ToUnitSkillTotalTime(Owner.mFastCastRate);
  566. }
  567. internal void SetActive(SkillActiveState state)
  568. {
  569. this.current_state = state;
  570. }
  571. internal void ChangeAction(int step)
  572. {
  573. var aq = Data.ActionQueue[CurrentActionID];
  574. if (aq.ShowChargeTimeMS > 0 && ChargeProgress < 1)
  575. {
  576. ChargeProgress = 1f;
  577. OnChargeStateChange?.Invoke();
  578. }
  579. this.CurrentActionID = step;
  580. }
  581. internal void ClearCD()
  582. {
  583. this.pass_time_ms = FullCDTimeMS;
  584. }
  585. internal void DecreaseCD(int ms)
  586. {
  587. this.pass_time_ms += ms;
  588. }
  589. internal void DecreaseCD_Pct(float pct)
  590. {
  591. this.pass_time_ms += (int)(FullCDTimeMS * pct);
  592. }
  593. internal void PlayerStop(PlayerSkillStopEvent stop)
  594. {
  595. this.stop_time_ms = pass_time_ms;
  596. this.is_skill_end = true;
  597. this.is_Skill_Block = false;
  598. if (ChargeProgress > 0 && ChargeProgress < 1)
  599. {
  600. ChargeProgress = 1f;
  601. OnChargeStateChange?.Invoke();
  602. }
  603. }
  604. internal void Sync(ClientStruct.UnitSkillStatus syn)
  605. {
  606. this.pass_time_ms = syn.PassTime;
  607. this.use_Times = syn.useTimes;
  608. this.is_use_tiems = syn.useTimes >= 0 ? true : false;
  609. internal_update(0);
  610. }
  611. internal void TimeChange(PlayerSkillTimeChangedEvent e)
  612. {
  613. if (this.is_skill_never_launch)
  614. {
  615. //重新登录后,技能的状态会丢失,这里重新算一下
  616. if(e.SkillPassTimeMS < e.SkillTotalTimeMS)
  617. {
  618. //CD未结束的技能,action都是在最后一段(不然不会有CD)
  619. this.CurrentActionID = Data.ActionQueue.Count - 1;
  620. if (OnChargeStateChange != null)
  621. {
  622. ChargeProgress = 1f;
  623. OnChargeStateChange.Invoke();
  624. }
  625. }
  626. }
  627. this.pass_time_ms = e.SkillPassTimeMS;
  628. this.total_cd_time_ms = e.SkillTotalTimeMS;
  629. this.is_in_mutil_time = this.Data.IsSingleAction;
  630. this.is_period_cd_end = this.Data.IsSingleAction;
  631. this.is_Skill_Block = false;
  632. this.is_skill_end = true;
  633. internal_update(0);
  634. OnCDStateChange?.Invoke();
  635. if(OnChargeStateChange != null && ChargeProgress > 0 && ChargeProgress < 1)
  636. {
  637. ChargeProgress = 1f;
  638. OnChargeStateChange.Invoke();
  639. }
  640. }
  641. internal void Update(int intervalMS)
  642. {
  643. if (!IsActive && IsPauseOnDeactive) { return; }
  644. internal_update(intervalMS);
  645. if (this.isPeriodCDEnd)
  646. {
  647. SetMutilTime();
  648. }
  649. if (OnChargeStateChange != null && CurrentActionID >= 0 && CurrentActionID < Data.ActionQueue.Count)
  650. {
  651. var aq = Data.ActionQueue[CurrentActionID];
  652. if (aq.ShowChargeTimeMS > 0)
  653. {
  654. if (ChargeProgress < 1)
  655. {
  656. ChargeTimeMS += (uint)intervalMS;
  657. ChargeProgress = ChargeTimeMS / (float)aq.ShowChargeTimeMS;
  658. if (ChargeProgress > 1) ChargeProgress = 1f;
  659. OnChargeStateChange.Invoke();
  660. }
  661. }
  662. else if (ChargeProgress > 0 && ChargeProgress < 1)
  663. {
  664. ChargeProgress = 1f;
  665. OnChargeStateChange.Invoke();
  666. }
  667. }
  668. }
  669. internal void SetPassTime(int passTime)
  670. {
  671. this.pass_time_ms = passTime;
  672. internal_update(0);
  673. }
  674. void SetMutilTime()
  675. {
  676. if (CDPercent < 1)
  677. {
  678. this.is_in_mutil_time = false;
  679. }
  680. else
  681. {
  682. this.is_in_mutil_time = true;
  683. this.is_period_cd_end = false;
  684. }
  685. }
  686. private void internal_update(int intervalMS)
  687. {
  688. pass_time_ms += intervalMS;
  689. if (pass_time_ms >= FullCDTimeMS)
  690. {
  691. if (percent < 1)
  692. {
  693. percent = 1f;
  694. stop_time_ms = pass_time_ms;
  695. OnCDStateChange?.Invoke();
  696. }
  697. }
  698. else
  699. {
  700. percent = (float)pass_time_ms / FullCDTimeMS;
  701. }
  702. }
  703. //新增技能使用次数
  704. internal void SyncSkillUseTimes(int usetimes)
  705. {
  706. this.use_Times = usetimes;
  707. this.is_use_tiems = true;
  708. }
  709. public int FullCDTimeMS
  710. {
  711. get
  712. {
  713. return total_cd_time_ms;
  714. }
  715. }
  716. public bool isMutilTime
  717. {
  718. get { return this.is_in_mutil_time; }
  719. }
  720. public bool isPeriodCDEnd
  721. {
  722. get { return this.is_period_cd_end; }
  723. }
  724. public bool IsCD
  725. {
  726. get
  727. {
  728. if (Data.IsCoolDownWithAction)
  729. {
  730. return false;
  731. }
  732. return (percent < 1f);
  733. }
  734. }
  735. public float CDPercent
  736. {
  737. get
  738. {
  739. if (Data.IsCoolDownWithAction)
  740. {
  741. return 1f;
  742. }
  743. return percent;
  744. }
  745. }
  746. public float ActionSpeed { get { return action_speed; } }
  747. public int PassTimeMS { get { return pass_time_ms; } }
  748. public int StopTimeMS { get { return stop_time_ms; } }
  749. public int CurrentActionID { get; private set; }
  750. public SkillActiveState ActiveState { get { return current_state; } }
  751. public bool IsActive { get { return current_state == SkillActiveState.Active || current_state == SkillActiveState.ActiveAndHide; } }
  752. public bool IsPauseOnDeactive { get { return current_state == SkillActiveState.DeactiveAndPause; } }
  753. public ActionEnum ActionType { get { return action_type; } }
  754. public int UseTimes { get { return this.use_Times; } }
  755. public bool IsUseTimes { get { return this.is_use_tiems; } }
  756. //目前仅用于蓄力,后面如果有其它类型需要用到,注意TimeChange和StopSkill消息的顺序.......
  757. public bool IsSkillEnd {
  758. get { return this.is_skill_end; }
  759. }
  760. public bool IsSkillBlock { get { return this.is_Skill_Block; } }
  761. public SkillDescType SkillType { get { return this.skill_desc_type; } }
  762. }
  763. [Obsolete]
  764. public List<SkillState> GetSkillStatus()
  765. {
  766. return new List<SkillState>(mSkillStatus.Skills);
  767. }
  768. public void GetSkillStatus(List<SkillState> ret)
  769. {
  770. ret.AddRange(mSkillStatus.Skills);
  771. }
  772. public SkillState GetSkillState(int templateID)
  773. {
  774. return mSkillStatus.Get(templateID);
  775. }
  776. #endregion
  777. //---------------------------------------------------------------------------
  778. // skill action
  779. //---------------------------------------------------------------------------
  780. #region SkillAction
  781. /// <summary>
  782. /// 是否正在吟唱
  783. /// </summary>
  784. public bool IsChanttingSkill
  785. {
  786. get { return mChantingSkill != null; }
  787. }
  788. public int ChantingSkillPassMS
  789. {
  790. get { return (mChantingSkill != null) ? mChantingSkill.PassTimeMS : 0; }
  791. }
  792. public int ChantingSkillTotalMS
  793. {
  794. get { return (mChantingSkill != null) ? mChantingSkill.TotalTimeMS : 0; }
  795. }
  796. public SkillTemplate ChantingSkillData
  797. {
  798. get { return (mChantingSkill != null) ? mChantingSkill.Tag : null; }
  799. }
  800. public SkillState ChantingSkill
  801. {
  802. get { if (mChantingSkill != null) { return GetSkillState(mChantingSkill.Tag.TemplateID); } return null; }
  803. }
  804. private TimeExpire<SkillTemplate> mChantingSkill;
  805. protected virtual void DoUnitChantSkillEvent(UnitChantSkillEvent e)
  806. {
  807. var temp = Templates.getSkill(e.skill_id);
  808. mChantingSkill = new TimeExpire<SkillTemplate>(temp, e.chant_ms);
  809. SkillState ss = GetSkillState(e.skill_id);
  810. if (ss != null)
  811. {
  812. if (mOnChantSkill != null)
  813. {
  814. mOnChantSkill.Invoke(this, e, mChantingSkill);
  815. }
  816. }
  817. }
  818. protected virtual void doLaunchSkillAction(UnitLaunchSkillEvent me)
  819. {
  820. clearSkillAction();
  821. var temp = Templates.getSkill(me.skill_id);
  822. if (temp != null)
  823. {
  824. mCurrentSkillAction = new UnitSkillAction(this, temp);
  825. mCurrentSkillAction.onLaunch(me);
  826. invokeSkillActionStart(mCurrentSkillAction);
  827. }
  828. }
  829. protected virtual void invokeSkillActionStart(ISkillAction act)
  830. {
  831. if (mOnSkillActionStart != null)
  832. {
  833. mOnSkillActionStart.Invoke(this, act);
  834. }
  835. }
  836. public virtual ISkillAction CurrentSkillAction
  837. {
  838. get { return mCurrentSkillAction; }
  839. }
  840. public virtual UnitActionData CurrentSkillActionData
  841. {
  842. get
  843. {
  844. if (CurrentSkillAction != null)
  845. {
  846. return CurrentSkillAction.CurrentAction;
  847. }
  848. return null;
  849. }
  850. }
  851. //-------------------------------------------------------------------------------------------
  852. // unit impl
  853. private UnitSkillAction mCurrentSkillAction;
  854. private void updateSkillAction(int intervalMS)
  855. {
  856. if (mCurrentSkillAction != null)
  857. {
  858. //UnityEngine.Debug.LogError("2 mCurrentSkillAction = " + mCurrentSkillAction.SkillData.TemplateID + " actionIndex = " + mCurrentSkillAction.CurrentActionIndex);
  859. mCurrentSkillAction.onUpdate(intervalMS);
  860. if (mCurrentSkillAction.IsDone)
  861. {
  862. clearSkillAction();
  863. }
  864. }
  865. }
  866. private void clearSkillAction()
  867. {
  868. if (mCurrentSkillAction != null)
  869. {
  870. mCurrentSkillAction.onStop();
  871. mCurrentSkillAction = null;
  872. }
  873. }
  874. public abstract class ISkillAction
  875. {
  876. private BitSet8 current_action_status = new BitSet8();
  877. public bool IsControlMoveable { get { return current_action_status.Get(0); } protected set { current_action_status.Set(0, value); } }
  878. public bool IsControlFaceable { get { return current_action_status.Get(1); } protected set { current_action_status.Set(1, value); } }
  879. public bool IsCancelableBySkill { get { return current_action_status.Get(2); } protected set { current_action_status.Set(2, value); } }
  880. public bool IsCancelableByMove { get { return current_action_status.Get(3); } protected set { current_action_status.Set(3, value); } }
  881. public bool IsNoneBlock { get { return current_action_status.Get(4); } protected set { current_action_status.Set(4, value); } }
  882. public bool IsNoneTouch { get { return current_action_status.Get(5); } protected set { current_action_status.Set(5, value); } }
  883. public bool IsFaceToTarget { get { return current_action_status.Get(6); } protected set { current_action_status.Set(6, value); } }
  884. public abstract SkillTemplate SkillData { get; }
  885. public abstract UnitLaunchSkillEvent LaunchEvent { get; }
  886. public abstract bool IsDone { get; }
  887. public abstract float ActionSpeed { get; }
  888. public abstract byte ActionStepIndex { get; }
  889. public abstract int[] ActionTimeArray { get; }
  890. public abstract int TotalTimeMS { get; }
  891. public abstract int CurrentActionIndex { get; }
  892. public abstract string CurrentActionName { get; }
  893. public abstract UnitActionData CurrentAction { get; }
  894. public abstract float ExpirePercent { get; }
  895. //把当前的执行时间抛出去给客户端用,很违和的做法,没办法数据配在扩展属性里面
  896. //CommonAI取不出来,强行操作会引发不可控的Bug
  897. public abstract int CurPassTimeMS { get; }
  898. public abstract bool IsJumpAction { get; }
  899. internal abstract void onLaunch(UnitLaunchSkillEvent e);
  900. internal abstract void onUnitSkillActionChangeEvent(UnitSkillActionChangeEvent evt);
  901. internal abstract void onUpdate(int intervalMS);
  902. internal abstract void onStop();
  903. internal abstract void RestJumpAction(bool isJumpAction);
  904. }
  905. public class UnitSkillAction : ISkillAction
  906. {
  907. readonly private ZoneUnit ownerUnit;
  908. readonly private SkillTemplate skill;
  909. private UnitLaunchSkillEvent launch_event;
  910. private int current_pass_time = 0;
  911. private int total_pass_time = 0;
  912. private int total_time_ms = 0;
  913. private bool is_done = false;
  914. private bool is_jump_action = false;
  915. private Queue<UnitActionData> action_queue;
  916. private int current_action_index = 0;
  917. private UnitActionData current_action = null;
  918. private PopupKeyFrames<UnitActionData.KeyFrame> current_frames = new PopupKeyFrames<UnitActionData.KeyFrame>();
  919. private int current_action_total_time = 0;
  920. private int[] action_time_array;
  921. public ZoneLayer Parent { get { return ownerUnit.Parent; } }
  922. public override int[] ActionTimeArray { get { return action_time_array; } }
  923. public override int TotalTimeMS { get { return total_time_ms; } }
  924. public override byte ActionStepIndex { get { return (launch_event != null) ? launch_event.action_index : (byte)0; } }
  925. public override int CurrentActionIndex { get { return current_action_index; } }
  926. public override string CurrentActionName { get { return (current_action != null) ? current_action.ActionName : null; } }
  927. public override UnitActionData CurrentAction { get { return current_action; } }
  928. public override float ExpirePercent { get { return total_pass_time / (float)TotalTimeMS; } }
  929. public override SkillTemplate SkillData { get { return skill; } }
  930. public override UnitLaunchSkillEvent LaunchEvent { get { return launch_event; } }
  931. public override bool IsDone { get { return is_done; } }
  932. public override int CurPassTimeMS { get { return current_pass_time; } }
  933. protected internal UnitSkillAction(ZoneUnit actor, SkillTemplate skill)
  934. {
  935. this.skill = skill;
  936. this.ownerUnit = actor;
  937. this.action_time_array = skill.ActionQueueTimeArray;
  938. }
  939. public override float ActionSpeed
  940. {
  941. get
  942. {
  943. if (launch_event != null)
  944. {
  945. if(launch_event.action_speed_add != null && launch_event.action_index < launch_event.action_speed_add.Length)
  946. {
  947. return launch_event.action_speed + launch_event.action_speed_add[launch_event.action_index];
  948. }
  949. return launch_event.action_speed;
  950. }
  951. return 1f;
  952. }
  953. }
  954. public override bool IsJumpAction
  955. {
  956. get
  957. {
  958. return is_jump_action;
  959. }
  960. }
  961. internal override void onLaunch(UnitLaunchSkillEvent e)
  962. {
  963. //UnityEngine.Debug.LogError("SkillID = " + e.skill_id + " ActionSpeed = " + e.action_speed + " action_index = " + e.action_index);
  964. this.launch_event = e;
  965. this.total_pass_time = 0;
  966. this.current_pass_time = 0;
  967. if (e.action_time_array != null && e.action_time_array.Length > 0)
  968. {
  969. this.total_time_ms = e.TotalActionTimeMS;
  970. this.action_time_array = e.action_time_array;
  971. }
  972. else if (skill.IsSingleAction)
  973. {
  974. this.total_time_ms = skill.ActionQueue[launch_event.action_index].TotalTimeMS;
  975. this.action_time_array = new int[] { TotalTimeMS };
  976. }
  977. else
  978. {
  979. this.total_time_ms = skill.ActionQueueTimeMS;
  980. this.action_time_array = skill.ActionQueueTimeArray;
  981. }
  982. if (skill.IsSingleAction)
  983. {
  984. var sa = skill.ActionQueue[launch_event.action_index];
  985. this.action_queue = new Queue<UnitActionData>(1);
  986. this.action_queue.Enqueue(sa);
  987. this.current_action_index = launch_event.action_index;
  988. }
  989. else
  990. {
  991. this.action_queue = new Queue<UnitActionData>(skill.ActionQueue);
  992. this.current_action_index = launch_event.action_index;
  993. }
  994. this.current_action = null;
  995. this.nextAction(this.current_action_index);
  996. }
  997. internal override void onUnitSkillActionChangeEvent(UnitSkillActionChangeEvent e)
  998. {
  999. while (this.CurrentActionIndex < e.ActionIndex)
  1000. {
  1001. if (!nextAction(current_action_index + 1))
  1002. {
  1003. this.total_pass_time = TotalTimeMS;
  1004. this.is_done = true;
  1005. break;
  1006. }
  1007. }
  1008. }
  1009. internal override void onStop()
  1010. {
  1011. this.is_done = true;
  1012. this.total_pass_time = TotalTimeMS;
  1013. }
  1014. internal override void onUpdate(int intervalMS)
  1015. {
  1016. int time_pass = (int)(intervalMS * ActionSpeed);
  1017. this.total_pass_time += time_pass;
  1018. this.total_pass_time = Math.Min(total_pass_time, TotalTimeMS);
  1019. this.current_pass_time += time_pass;
  1020. if (current_action == null)
  1021. {
  1022. nextAction(current_action_index + 1);
  1023. }
  1024. if (current_action == null)
  1025. {
  1026. this.is_done = true;
  1027. this.total_pass_time = TotalTimeMS;
  1028. }
  1029. else
  1030. {
  1031. // 关键帧 //
  1032. using (var kfs = ListObjectPool<UnitActionData.KeyFrame>.AllocAutoRelease())
  1033. {
  1034. if (current_frames.PopKeyFrames(current_pass_time, kfs) > 0)
  1035. {
  1036. for (int i = 0; i < kfs.Count; i++)
  1037. {
  1038. doKeyFrame(kfs[i]);
  1039. }
  1040. }
  1041. }
  1042. // 下段动作 //
  1043. if ((current_action != null) && (current_pass_time >= current_action_total_time))
  1044. {
  1045. current_action = null;
  1046. if (action_queue.Count == 0)
  1047. {
  1048. this.is_done = true;
  1049. this.total_pass_time = TotalTimeMS;
  1050. }
  1051. }
  1052. }
  1053. }
  1054. private bool nextAction(int index)
  1055. {
  1056. if (action_queue != null && action_queue.Count > 0)
  1057. {
  1058. this.current_action_index = index;
  1059. this.current_action = action_queue.Dequeue();
  1060. if (current_action != null)
  1061. {
  1062. this.current_frames.AddRange(current_action.KeyFrames);
  1063. this.current_pass_time = 0;
  1064. //NewAction//
  1065. if (launch_event.action_time_array != null)
  1066. {
  1067. if (skill.IsSingleAction)
  1068. {
  1069. this.current_action_total_time = launch_event.TotalActionTimeMS;
  1070. }
  1071. else if (current_action_index < launch_event.action_time_array.Length)
  1072. {
  1073. this.current_action_total_time = launch_event.action_time_array[current_action_index];
  1074. }
  1075. }
  1076. else
  1077. {
  1078. this.current_action_total_time = current_action.TotalTimeMS;
  1079. }
  1080. this.IsCancelableBySkill = current_action.IsCancelableBySkill;
  1081. this.IsNoneBlock = current_action.IsNoneBlock;
  1082. this.IsNoneTouch = current_action.IsNoneTouch;
  1083. this.IsFaceToTarget = current_action.IsFaceToTarget;
  1084. this.IsCancelableByMove = current_action.IsCancelable;
  1085. this.IsControlMoveable = current_action.IsControlMoveable;
  1086. this.IsControlFaceable = current_action.IsControlFaceable;
  1087. return true;
  1088. }
  1089. }
  1090. current_action = null;
  1091. return false;
  1092. }
  1093. private void doKeyFrame(UnitActionData.KeyFrame kf)
  1094. {
  1095. // 关键帧改变状态
  1096. if (kf.ChangeStatus != null)
  1097. {
  1098. this.IsNoneBlock = kf.ChangeStatus.IsNoneBlock;
  1099. this.IsNoneTouch = kf.ChangeStatus.IsNoneTouch;
  1100. this.IsFaceToTarget = kf.ChangeStatus.IsFaceToTarget;
  1101. this.IsCancelableByMove = kf.ChangeStatus.IsCancelable;
  1102. this.IsCancelableBySkill = kf.ChangeStatus.IsCancelableBySkill;
  1103. this.IsControlMoveable = kf.ChangeStatus.IsControlMoveable;
  1104. this.IsControlFaceable = kf.ChangeStatus.IsControlFaceable;
  1105. }
  1106. }
  1107. internal override void RestJumpAction(bool isJumpAction)
  1108. {
  1109. is_jump_action = isJumpAction;
  1110. }
  1111. }
  1112. //-------------------------------------------------------------------------------------------
  1113. #endregion
  1114. //--------------------------------------------------------------------------------
  1115. #region Buff
  1116. internal BuffMap mBuffStatus = new BuffMap();
  1117. internal void SyncBuffStatus(ClientStruct.UnitBuffStatus[] buffs)
  1118. {
  1119. if (buffs != null)
  1120. {
  1121. for (int i = 0; i < buffs.Length; i++)
  1122. {
  1123. ClientStruct.UnitBuffStatus st = buffs[i];
  1124. TryAddBuff(st.BuffTemplateID, st.SenderID, st.IsEquip, st.TotalTime, st.OverlayLevel, st.PassTime);
  1125. }
  1126. }
  1127. }
  1128. protected void SyncBuffOverlayLevel(BuffDataNotify data)
  1129. {
  1130. BuffState bs = mBuffStatus.Get(data.buffId, data.senderId);
  1131. if (bs != null)
  1132. {
  1133. bs.SyncBuffExtData(data.overlayLevel, bs.BuffExtendData);
  1134. //YXJDebug.logError(data.buffId + " , level:" + bs.OverlayLevel + " time = " + bs.BuffTotalTime + ", per:"+bs.CDPercent);
  1135. if (mOnBuffChanged != null)
  1136. {
  1137. mOnBuffChanged.Invoke(this, bs);
  1138. }
  1139. }
  1140. }
  1141. protected virtual void DoLaunchBuff(UnitLaunchBuffEvent me)
  1142. {
  1143. //YXJDebug.logError(me.buffTemplateID + " overlayLevel = " + me.overlayLevel + " time = " + me.buffTimeMS);
  1144. TryAddBuff(me.buffTemplateID, me.senderID, me.IsEquip, me.buffTimeMS, me.overlayLevel, 0, me.buffExtData);
  1145. }
  1146. protected virtual void DoStopBuff(UnitStopBuffEvent e)
  1147. {
  1148. TryRemoveBuff(e.buffTemplateID, e.senderID);
  1149. }
  1150. //新增Buff接口
  1151. protected virtual void DoRemoveOverlayLevelBuff(SyncUnitBuffState e)
  1152. {
  1153. //UnityEngine.Debug.LogError("DoRemoveOverlayLevelBuff overlayLevel = " + e.overlayLevel + " buffExtData = " + e.buffExtData);
  1154. if (e.buffExtData > 0)
  1155. {
  1156. var bs = mBuffStatus.Get(e.buffTemplateID, e.ObjectID);
  1157. if (bs != null && mOnRemoveBuffByOverlayLeveled != null)
  1158. {
  1159. mOnRemoveBuffByOverlayLeveled(this, bs);
  1160. bs.SyncBuffExtData(e.overlayLevel, e.buffExtData);
  1161. }
  1162. }
  1163. else
  1164. {
  1165. TryRemoveBuff(e.buffTemplateID, e.ObjectID);
  1166. }
  1167. }
  1168. private void TryAddBuff(int buffTempalteID, uint senderID, bool isEquip, int totalTime, byte overlayLevel, int passTime = 0, int buffExtData = 0)
  1169. {
  1170. BuffTemplate buff = Templates.getBuff(buffTempalteID);
  1171. if (buff != null)
  1172. {
  1173. BuffState bs = mBuffStatus.Get(buffTempalteID, senderID);
  1174. if (bs != null)
  1175. {
  1176. bs.Sync(overlayLevel, totalTime, passTime, buffExtData);
  1177. if (mOnBuffChanged != null)
  1178. {
  1179. mOnBuffChanged.Invoke(this, bs);
  1180. }
  1181. }
  1182. else
  1183. {
  1184. bs = new BuffState(buff, this, senderID, isEquip);
  1185. bs.Sync(overlayLevel, totalTime, passTime, buffExtData);
  1186. mBuffStatus.Put(bs);
  1187. if (mOnBuffAdded != null)
  1188. {
  1189. mOnBuffAdded.Invoke(this, bs);
  1190. }
  1191. }
  1192. //UnityEngine.Debug.LogError("Server buffID = " + buffTempalteID + " LockStateAction = " + buff.LockStateAction);
  1193. //新增单独状态
  1194. if (!string.IsNullOrEmpty(buff.LockStateAction))
  1195. {
  1196. this.SetCurrentState(UnitActionStatus.BuffLockStateAction, CurrentSubState, buff);
  1197. }
  1198. }
  1199. }
  1200. private void TryRemoveBuff(int buffTempalteID, uint senderID)
  1201. {
  1202. BuffState bs = mBuffStatus.RemoveByKey(buffTempalteID, senderID);
  1203. if (bs != null)
  1204. {
  1205. bs.OnEnd();
  1206. if (mOnBuffRemoved != null)
  1207. {
  1208. mOnBuffRemoved.Invoke(this, bs);
  1209. }
  1210. //UnityEngine.Debug.LogError("RemoveBuff CurrentState= " + CurrentState);
  1211. //置回单独状态
  1212. if (CurrentState == UnitActionStatus.BuffLockStateAction)
  1213. {
  1214. this.SetCurrentState(UnitActionStatus.Idle);
  1215. }
  1216. }
  1217. }
  1218. private void UpdateBuffs(int intervalMS)
  1219. {
  1220. mBuffStatus.ForEachUpdate(intervalMS);
  1221. //mBuffStatus.ForEach((bs) =>
  1222. //{
  1223. // bs.OnUpdate(intervalMS);
  1224. //});
  1225. }
  1226. //返回当前buff列表中,是否含有变身buff
  1227. public bool HasMakeAvatarBuff()
  1228. {
  1229. bool has = false;
  1230. mBuffStatus.ForEach((BuffState buf) => {
  1231. if (buf.Data.MakeAvatar)
  1232. {
  1233. has = true;
  1234. }
  1235. });
  1236. return has;
  1237. }
  1238. //返回当前buff列表中,是否含有切换技能buff
  1239. public bool HasChangeSkillBuff()
  1240. {
  1241. bool has = false;
  1242. mBuffStatus.ForEach((BuffState buf) => {
  1243. if (buf.Data.UnitChangeSkills)
  1244. {
  1245. has = true;
  1246. }
  1247. });
  1248. return has;
  1249. }
  1250. public class BuffMap
  1251. {
  1252. private HashMap<int, BuffList> Map = new HashMap<int, BuffList>();
  1253. private List<BuffList> For = new List<BuffList>();
  1254. public BuffState Get(int id, uint senderID)
  1255. {
  1256. var list = Map.Get(id);
  1257. if (list != null)
  1258. {
  1259. return list.Get(senderID);
  1260. }
  1261. return null;
  1262. }
  1263. internal void Put(BuffState state)
  1264. {
  1265. var list = Map.Get(state.BuffID);
  1266. if (list == null)
  1267. {
  1268. list = new BuffList(state.Data);
  1269. Map.Add(state.BuffID, list);
  1270. For.Add(list);
  1271. }
  1272. list.Add(state);
  1273. }
  1274. internal BuffState RemoveByKey(int id, uint senderID)
  1275. {
  1276. var list = Map.Get(id);
  1277. if (list != null)
  1278. {
  1279. var st = list.Get(senderID);
  1280. if (st != null)
  1281. {
  1282. var ret = list.Remove(senderID);
  1283. if (list.Count == 0)
  1284. {
  1285. For.Remove(list);
  1286. Map.Remove(id);
  1287. }
  1288. return ret;
  1289. }
  1290. }
  1291. return null;
  1292. }
  1293. internal void Clear()
  1294. {
  1295. For.Clear();
  1296. Map.Clear();
  1297. }
  1298. public void ForEach(Action<BuffState> action)
  1299. {
  1300. for (int i = For.Count - 1; i >= 0; --i)
  1301. {
  1302. For[i].ForEach(action);
  1303. }
  1304. }
  1305. public int GetBuffCount()
  1306. {
  1307. return For.Count;
  1308. }
  1309. public void ForEachUpdate(int intervalMS)
  1310. {
  1311. for (int i = For.Count - 1; i >= 0; --i)
  1312. {
  1313. For[i].ForEachUpdate(intervalMS);
  1314. }
  1315. }
  1316. public class BuffList
  1317. {
  1318. public readonly BuffTemplate Data;
  1319. private HashMap<uint, BuffState> Map = new HashMap<uint, BuffState>();
  1320. private List<BuffState> For = new List<BuffState>();
  1321. public int Count { get { return Map.Count; } }
  1322. internal BuffList(BuffTemplate data)
  1323. {
  1324. this.Data = data;
  1325. }
  1326. internal BuffState Remove(uint senderID)
  1327. {
  1328. BuffState ret;
  1329. if (Data.IsDuplicating)
  1330. {
  1331. ret = Map.RemoveByKey(senderID);
  1332. }
  1333. else
  1334. {
  1335. ret = Map.RemoveByKey(0);
  1336. }
  1337. if (ret != null)
  1338. {
  1339. For.Remove(ret);
  1340. }
  1341. return ret;
  1342. }
  1343. internal void Add(BuffState state)
  1344. {
  1345. if (Data.IsDuplicating)
  1346. {
  1347. Map.Add(state.SenderID, state);
  1348. }
  1349. else
  1350. {
  1351. Map.Add(0, state);
  1352. }
  1353. For.Add(state);
  1354. }
  1355. internal BuffState Get(uint senderID)
  1356. {
  1357. if (Data.IsDuplicating)
  1358. {
  1359. if (senderID == 0 && Map.Count > 0)
  1360. {
  1361. return Map.First().Value;
  1362. }
  1363. else
  1364. {
  1365. return Map.Get(senderID);
  1366. }
  1367. }
  1368. else
  1369. {
  1370. return Map.Get(0);
  1371. }
  1372. }
  1373. internal void ForEach(Action<BuffState> action)
  1374. {
  1375. for (int i = For.Count - 1; i >= 0; --i)
  1376. {
  1377. action(For[i]);
  1378. }
  1379. }
  1380. public void ForEachUpdate(int intervalMS)
  1381. {
  1382. for (int i = For.Count - 1; i >= 0; --i)
  1383. {
  1384. For[i].OnUpdate(intervalMS);
  1385. }
  1386. }
  1387. }
  1388. }
  1389. public class BuffState
  1390. {
  1391. readonly public BuffTemplate Data;
  1392. readonly public bool isEquip;
  1393. readonly public ZoneUnit Owner;
  1394. readonly public uint SenderID;
  1395. private byte overlay_level;
  1396. private int total_time;
  1397. private int pass_time = 0;
  1398. private float percent = 1f;
  1399. private int buff_ext_data = 0;
  1400. private int buff_ext_data_index = -1;
  1401. private TimeInterval<BuffTemplate.KeyFrame> interval;
  1402. private PopupKeyFrames<BuffTemplate.KeyFrame> keyframes;
  1403. internal BuffState(BuffTemplate data, ZoneUnit owner, uint senderID, bool isEquip)
  1404. {
  1405. this.Data = data;
  1406. this.isEquip = isEquip;
  1407. this.Owner = owner;
  1408. this.SenderID = senderID;
  1409. }
  1410. internal void Sync(byte overlayLevel, int totalTime, int passTime, int buffExtData = 0)
  1411. {
  1412. this.overlay_level = overlayLevel;
  1413. this.total_time = totalTime;
  1414. if (passTime < this.pass_time || this.pass_time == 0)
  1415. {
  1416. this.interval = new TimeInterval<BuffTemplate.KeyFrame>(Data.HitIntervalMS);
  1417. this.interval.Tag = Data.HitKeyFrame;
  1418. this.keyframes = new PopupKeyFrames<BuffTemplate.KeyFrame>();
  1419. this.keyframes.AddRange(Data.KeyFrames);
  1420. this.pass_time = 0;
  1421. }
  1422. if (passTime > this.pass_time)
  1423. {
  1424. this.interval.SetPassTime(passTime);
  1425. this.keyframes.PopKeyFrames(passTime, null);
  1426. this.pass_time = passTime;
  1427. }
  1428. this.percent = Math.Min(1, pass_time / (float)total_time);
  1429. this.buff_ext_data = buffExtData;
  1430. SetBuffExtendDataIndex(buffExtData);
  1431. }
  1432. internal void OnEnd()
  1433. {
  1434. if (Data.EndKeyFrame != null && Data.EndKeyFrame.Effect != null)
  1435. {
  1436. Owner.Parent.PreQueueEvent(new UnitEffectEvent(Owner.ObjectID, Data.EndKeyFrame.Effect));
  1437. }
  1438. }
  1439. internal void OnUpdate(int intervalMS)
  1440. {
  1441. using (var kfs = ListObjectPool<BuffTemplate.KeyFrame>.AllocAutoRelease())
  1442. {
  1443. if (keyframes.PopKeyFrames(pass_time, kfs) > 0)
  1444. {
  1445. for (int i = 0; i < kfs.Count; i++)
  1446. {
  1447. BuffTemplate.KeyFrame kf = kfs[i];
  1448. if (kf.Effect != null)
  1449. {
  1450. Owner.Parent.PreQueueEvent(new UnitEffectEvent(Owner.ObjectID, kf.Effect));
  1451. }
  1452. }
  1453. }
  1454. }
  1455. if (interval.Update(intervalMS))
  1456. {
  1457. if (Data.HitKeyFrame != null && Data.HitKeyFrame.Effect != null)
  1458. {
  1459. Owner.Parent.PreQueueEvent(new UnitEffectEvent(Owner.ObjectID, Data.HitKeyFrame.Effect));
  1460. }
  1461. }
  1462. this.pass_time += intervalMS;
  1463. if (percent < 1f)
  1464. {
  1465. this.percent = Math.Min(1, pass_time / (float)total_time);
  1466. }
  1467. }
  1468. public void SyncBuffExtData(byte overlayLevel, int buffExtData)
  1469. {
  1470. overlay_level = overlayLevel;
  1471. buff_ext_data = buffExtData;
  1472. }
  1473. private void SetBuffExtendDataIndex(int curBuffExtData)
  1474. {
  1475. if (curBuffExtData < 1) return;
  1476. if (curBuffExtData < 10)
  1477. {
  1478. buff_ext_data_index = curBuffExtData;
  1479. }
  1480. else
  1481. {
  1482. string curString = Convert.ToString(curBuffExtData);
  1483. var str = curString.Substring(curString.Length - 1, 1);
  1484. if (!string.IsNullOrEmpty(str))
  1485. {
  1486. int.TryParse(str, out buff_ext_data_index);
  1487. }
  1488. }
  1489. }
  1490. public int BuffID { get { return Data.ID; } }
  1491. public bool IsDone { get { return (isEquip) ? false : (percent >= 1f); } }
  1492. public float CDPercent { get { return percent; } }
  1493. public byte OverlayLevel { get { return overlay_level; } }
  1494. public int BuffTotalTime { get { return total_time; } }
  1495. public int BuffLeftTime { get { return total_time - pass_time; } }
  1496. public int BuffExtendData { get { return buff_ext_data; } }
  1497. public int BuffExtendDataIndex { get { return buff_ext_data_index; } }
  1498. }
  1499. [Obsolete]
  1500. public List<BuffState> GetBuffStatus()
  1501. {
  1502. var list = new List<BuffState>();
  1503. GetBuffStatus(list);
  1504. return list;
  1505. }
  1506. public void GetBuffStatus(List<BuffState> ret)
  1507. {
  1508. mBuffStatus.ForEach((bs) => { ret.Add(bs); });
  1509. }
  1510. public int GetBuffStatusCount()
  1511. {
  1512. return mBuffStatus.GetBuffCount();
  1513. }
  1514. public BuffState GetBuff(int tempID, uint senderID)
  1515. {
  1516. return mBuffStatus.Get(tempID, senderID);
  1517. }
  1518. public BuffState GetBuff(int tempID)
  1519. {
  1520. return mBuffStatus.Get(tempID, 0);
  1521. }
  1522. #endregion
  1523. //--------------------------------------------------------------------------------
  1524. #region PickObject
  1525. private TimeExpire<UnitStartPickObjectEvent> mPickEvent;
  1526. public TimeExpire<UnitStartPickObjectEvent> PickEvent { get { return mPickEvent; } }
  1527. protected virtual void DoStartPick(UnitStartPickObjectEvent pick)
  1528. {
  1529. mPickEvent = new TimeExpire<UnitStartPickObjectEvent>(pick, pick.PickTimeMS);
  1530. SetCurrentState(UnitActionStatus.Pick, pick);
  1531. if (mOnStartPickObject != null)
  1532. {
  1533. mOnStartPickObject.Invoke(this, mPickEvent);
  1534. }
  1535. }
  1536. protected virtual void DoStopPick(UnitStopPickObjectEvent pick)
  1537. {
  1538. if (mPickEvent != null)
  1539. {
  1540. mPickEvent.End();
  1541. mPickEvent = null;
  1542. }
  1543. if (mOnStopPickObject != null)
  1544. {
  1545. mOnStopPickObject.Invoke(this, pick);
  1546. }
  1547. }
  1548. private void UpdatePickEvent(int intervalMS)
  1549. {
  1550. if (mPickEvent != null)
  1551. {
  1552. mPickEvent.Update(intervalMS);
  1553. }
  1554. }
  1555. #endregion
  1556. //--------------------------------------------------------------------------------
  1557. #region 本地技能预演
  1558. protected virtual void DoJumpToTargetEnd()
  1559. {
  1560. if (mOnClientSkillSimulation != null)
  1561. {
  1562. mOnClientSkillSimulation.Invoke(this, SimulationSkillEnum.JumpEnd);
  1563. }
  1564. }
  1565. #endregion 本地技能预演
  1566. #region MultiTimeLine
  1567. /// <summary>
  1568. /// 是否可被发现
  1569. /// </summary>
  1570. virtual public bool IsVisible { get { return !IsTimeLineEnable(2); } }
  1571. /// <summary>
  1572. /// 是否无敌
  1573. /// </summary>
  1574. virtual public bool IsInvincible { get { return IsTimeLineEnable(3); } }
  1575. /// <summary>
  1576. /// 此单位是否霸体
  1577. /// </summary>
  1578. virtual public bool IsNoneBlock { get { return IsTimeLineEnable(0); } }
  1579. /// <summary>
  1580. /// 是否为眩晕
  1581. /// </summary>
  1582. virtual public bool IsStun { get { return IsTimeLineEnable(1); } }
  1583. /// <summary>
  1584. /// 是否沉默
  1585. /// </summary>
  1586. virtual public bool IsSilent { get { return IsTimeLineEnable(4); } }
  1587. //--------------------------------------------------------------------------------
  1588. private UnitSyncMultiTimeLine mMultiTimeLine;
  1589. private void DoUnitSyncMultiTimeLine(UnitSyncMultiTimeLine e)
  1590. {
  1591. this.mMultiTimeLine = e;
  1592. }
  1593. /// <summary>
  1594. /// 指定TimeLine是否还有任务
  1595. /// </summary>
  1596. /// <param name="index"></param>
  1597. /// <returns></returns>
  1598. public bool IsTimeLineEnable(int index)
  1599. {
  1600. if (mMultiTimeLine != null && mMultiTimeLine.timelines != null && index < mMultiTimeLine.timelines.Count && index >= 0)
  1601. {
  1602. return mMultiTimeLine.timelines[index];
  1603. }
  1604. return false;
  1605. }
  1606. public void GetMultiTimeLineStatus(List<bool> list)
  1607. {
  1608. if (mMultiTimeLine != null && mMultiTimeLine.timelines != null)
  1609. {
  1610. list.AddRange(mMultiTimeLine.timelines);
  1611. }
  1612. }
  1613. #endregion
  1614. }
  1615. }