InstanceUnit.Status.cs 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using CommonLang;
  5. using CommonAI.Zone.Helper;
  6. using CommonAI.Zone.Formula;
  7. using CommonAI.Zone.UnitTriggers;
  8. using CommonAI.Zone.Attributes;
  9. using CommonLang.Property;
  10. using CommonAI.RTS;
  11. using CommonLang.Vector;
  12. using CommonAI.ZoneClient;
  13. using CommonAI.data;
  14. using static CommonAI.Zone.LaunchSpell;
  15. using CommonAI.Data;
  16. namespace CommonAI.Zone.Instance
  17. {
  18. public delegate int ReadBuffDelegate(InstanceUnit.BuffState buffState);
  19. /// <summary>
  20. /// 所有常态状态(Buff,技能,被动系)
  21. /// </summary>
  22. partial class InstanceUnit
  23. {
  24. //--------------------------------------------------------------------------------------------------------------
  25. #region _时效性效果_
  26. //--------------------------------------------------------------------------------------------------------------
  27. /// <summary>
  28. /// 是否可被发现
  29. /// </summary>
  30. virtual public bool IsVisible { get { return !mInvisibleTimeMS.Enable;/* && !DeadHide; */} }
  31. /// <summary>
  32. /// 是否无敌
  33. /// </summary>
  34. virtual public bool IsInvincible { get { return mInvincibleTimeMS.Enable; } }
  35. /// <summary>
  36. /// 此单位是否霸体
  37. /// </summary>
  38. virtual public bool IsNoneBlock { get { return mNoneBlockTimeMS.Enable; } }
  39. /// <summary>
  40. /// 是否为眩晕
  41. /// </summary>
  42. virtual public bool IsStun { get { return mStunTimeMS.Enable; } }
  43. /// <summary>
  44. /// 是否沉默
  45. /// </summary>
  46. virtual public bool IsSilent { get { return mSilentTimeMS.Enable; } }
  47. /// <summary>
  48. /// 是否免控
  49. /// </summary>
  50. virtual public bool IsIgnoreControl { get { return mIgnoreControl.Enable; } }
  51. /** 是否不允许移动 */
  52. public bool MarkCannotMove = false;
  53. virtual public bool IsCannotMove { get { return mCannotMoveTimeMS.Enable; } }
  54. //死亡隐藏
  55. private bool mDeadHide = false;
  56. public bool DeadHide{ get { return mDeadHide; } set { mDeadHide = value; } }
  57. public bool IsInPVP() { return this.Virtual.IsInPVP(); }
  58. public bool IsInPVE() { return this.Virtual.IsInPVE(); }
  59. virtual public string PlayerUUID
  60. {
  61. get { return ""; }
  62. }
  63. //--------------------------------------------------------------------------------------------------------------
  64. private readonly List<MultiTimeLine> mMultiTimeLineGroup = new List<MultiTimeLine>();
  65. private UnitSyncMultiTimeLine mMultiTimeLineSync;
  66. /// <summary>
  67. /// 注册自定义MultiTimeLine
  68. /// </summary>
  69. /// <param name="index"></param>
  70. /// <returns></returns>
  71. public MultiTimeLine RegistMultiTimeLine(out int index)
  72. {
  73. index = mMultiTimeLineGroup.Count;
  74. var timeline = new MultiTimeLine(MultiTimeLineRefresh);
  75. mMultiTimeLineGroup.Add(timeline);
  76. return timeline;
  77. }
  78. /// <summary>
  79. /// 获取指定ID TimeLine
  80. /// </summary>
  81. /// <param name="index"></param>
  82. /// <returns></returns>
  83. public MultiTimeLine GetTimeLine(int index)
  84. {
  85. return mMultiTimeLineGroup[index];
  86. }
  87. public bool IsMoveAble()
  88. {
  89. return this.Info.IsMoveable && this.Info.MoveSpeedSEC > 0;
  90. }
  91. /// <summary>
  92. /// 指定TimeLine是否还有任务
  93. /// </summary>
  94. /// <param name="index"></param>
  95. /// <returns></returns>
  96. public bool IsTimeLineEnable(int index)
  97. {
  98. return mMultiTimeLineGroup[index].Enable;
  99. }
  100. /// <summary>
  101. /// 获取指定 TimeLine 的 ID
  102. /// </summary>
  103. /// <param name="timeline"></param>
  104. /// <returns></returns>
  105. public int GetTimeLineIndex(MultiTimeLine timeline)
  106. {
  107. return mMultiTimeLineGroup.IndexOf(timeline);
  108. }
  109. //是否跟随队长
  110. public virtual bool IsFollowMaster() { return false; }
  111. /// <summary>
  112. /// 添加TimeLine任务
  113. /// </summary>
  114. /// <param name="index"></param>
  115. /// <param name="timeMS"></param>
  116. /// <returns></returns>
  117. public TimeExpire<int> AddTimeLineTask(int index, int timeMS)
  118. {
  119. return mMultiTimeLineGroup[index].Add(timeMS);
  120. }
  121. /// <summary>
  122. /// 强制移除TimeLine任务
  123. /// </summary>
  124. /// <param name="index"></param>
  125. /// <param name="task"></param>
  126. /// <returns></returns>
  127. public bool RemoveTimeLineTask(int index, TimeExpire<int> task)
  128. {
  129. return mMultiTimeLineGroup[index].Remove(task);
  130. }
  131. //--------------------------------------------------------------------------------------------------------------
  132. /// <summary>
  133. /// 被击中后不会被中断(霸体),是一个叠加值
  134. /// </summary>
  135. private MultiTimeLine mNoneBlockTimeMS;
  136. /// <summary>
  137. /// 眩晕,移动限制状态,是一个叠加值
  138. /// </summary>
  139. private MultiTimeLine mStunTimeMS;
  140. /// <summary>
  141. /// 隐形,是一个叠加值
  142. /// </summary>
  143. private MultiTimeLine mInvisibleTimeMS;
  144. /// <summary>
  145. /// 无敌时间,是个叠加值
  146. /// </summary>
  147. private MultiTimeLine mInvincibleTimeMS;
  148. /// <summary>
  149. /// 沉默时间,是个叠加值
  150. /// </summary>
  151. private MultiTimeLine mSilentTimeMS;
  152. /// <summary>
  153. /// 沉默时间,是个叠加值
  154. /// </summary>
  155. private MultiTimeLine mCannotMoveTimeMS;
  156. /// <summary>
  157. /// 免控时间
  158. /// </summary>
  159. private MultiTimeLine mIgnoreControl;
  160. //是否刷新标记
  161. private bool mNeedUpdate = false;
  162. public bool IsCanLaunchSkill(int skillID)
  163. {
  164. if (this.IsStun || (this.IsSilent == true && skillID != this.Virtual.GetBaseSkillID()))
  165. {
  166. return false;
  167. }
  168. return true;
  169. }
  170. private void InitTimeLines()
  171. {
  172. int index;
  173. mNoneBlockTimeMS = RegistMultiTimeLine(out index);
  174. mStunTimeMS = RegistMultiTimeLine(out index);
  175. mInvisibleTimeMS = RegistMultiTimeLine(out index);
  176. mInvincibleTimeMS = RegistMultiTimeLine(out index);
  177. mSilentTimeMS = RegistMultiTimeLine(out index);
  178. mCannotMoveTimeMS = RegistMultiTimeLine(out index);
  179. mIgnoreControl = RegistMultiTimeLine(out index);
  180. mMultiTimeLineSync = new UnitSyncMultiTimeLine(this.ID);
  181. }
  182. private void UpdateTimeLines(int intervalMS)
  183. {
  184. if(!mNeedUpdate)
  185. {
  186. return;
  187. }
  188. bool hasUpdate = false;
  189. for (int i = mMultiTimeLineGroup.Count - 1; i >= 0; --i)
  190. {
  191. if (mMultiTimeLineGroup[i].Update(intervalMS))
  192. {
  193. hasUpdate = true;
  194. }
  195. }
  196. // 全部timer都没有,不刷新
  197. if (!hasUpdate)
  198. {
  199. mNeedUpdate = false;
  200. }
  201. //不能移动单独刷新,此状态需要通知客户端
  202. if(this.MarkCannotMove && !this.IsCannotMove)
  203. {
  204. this.MarkCannotMove = false;
  205. this.RemoveActionSubState(UnitActionSubStatus.CanNotMove);
  206. }
  207. if (mMultiTimeLineSync.Update(mMultiTimeLineGroup))
  208. {
  209. queueEvent(mMultiTimeLineSync);
  210. }
  211. }
  212. public void MultiTimeLineRefresh(bool isAdd)
  213. {
  214. this.mNeedUpdate = true;
  215. }
  216. /// <summary>
  217. /// 设置霸体时间,如果当前已霸体,则取最大值
  218. /// </summary>
  219. /// <param name="timeMS"></param>
  220. public TimeExpire<int> SetNoneBlockTimeMS(int timeMS)
  221. {
  222. return mNoneBlockTimeMS.Add(timeMS);
  223. }
  224. /// <summary>
  225. /// 设置眩晕时间,如果当前已眩晕,则取最大值
  226. /// </summary>
  227. /// <param name="timeMS"></param>
  228. public TimeExpire<int> SetStunTimeMS(int timeMS)
  229. {
  230. TimeExpire<int> ret = mStunTimeMS.Add(timeMS);
  231. if (!IsStateDead)
  232. {
  233. changeState(new StateStun(this));
  234. }
  235. return ret;
  236. }
  237. /// <summary>
  238. /// 设置隐身时间,如果当前已隐身,则取最大值
  239. /// </summary>
  240. /// <param name="timeMS"></param>
  241. public TimeExpire<int> SetInvisibleTimeMS(int timeMS)
  242. {
  243. return mInvisibleTimeMS.Add(timeMS);
  244. }
  245. /// <summary>
  246. /// 设置无敌时间,如果当前已无敌,则取最大值
  247. /// </summary>
  248. /// <param name="timeMS"></param>
  249. public TimeExpire<int> SetInvincibleTimeMS(int timeMS)
  250. {
  251. return mInvincibleTimeMS.Add(timeMS);
  252. }
  253. /// <summary>
  254. /// 设置沉默时间
  255. /// </summary>
  256. /// <param name="timeMS"></param>
  257. public TimeExpire<int> SetSilentTimeMS(int timeMS)
  258. {
  259. return mSilentTimeMS.Add(timeMS);
  260. }
  261. /** 设置无法移动时间 */
  262. public TimeExpire<int> SetCannotMoveTimeMS(int timeMS)
  263. {
  264. this.MarkCannotMove = true;
  265. this.AddActionSubState(UnitActionSubStatus.CanNotMove);
  266. return mCannotMoveTimeMS.Add(timeMS);
  267. }
  268. /// <summary>
  269. /// 设置免控时间
  270. /// </summary>
  271. /// <param name="timeMS"></param>
  272. public TimeExpire<int> SetIgnoreControlTimeMS(int timeMS)
  273. {
  274. return mIgnoreControl.Add(timeMS);
  275. }
  276. public bool RemoveNoneBlock(TimeExpire<int> task)
  277. {
  278. return mNoneBlockTimeMS.Remove(task);
  279. }
  280. public bool RemoveStun(TimeExpire<int> task)
  281. {
  282. return mStunTimeMS.Remove(task);
  283. }
  284. public bool RemoveInvisible(TimeExpire<int> task)
  285. {
  286. return mInvisibleTimeMS.Remove(task);
  287. }
  288. public bool RemoveInvincible(TimeExpire<int> task)
  289. {
  290. return mInvincibleTimeMS.Remove(task);
  291. }
  292. public bool RemoveSilent(TimeExpire<int> task)
  293. {
  294. return mSilentTimeMS.Remove(task);
  295. }
  296. public bool RemoveCannotMove(TimeExpire<int> task)
  297. {
  298. return mCannotMoveTimeMS.Remove(task);
  299. }
  300. public bool RemoveIgnoreControl(TimeExpire<int> task)
  301. {
  302. return mIgnoreControl.Remove(task);
  303. }
  304. public void ClearNoneBlock()
  305. {
  306. mNoneBlockTimeMS.Clear();
  307. }
  308. public void ClearStun()
  309. {
  310. mStunTimeMS.Clear();
  311. }
  312. public void ClearInvisible()
  313. {
  314. mInvisibleTimeMS.Clear();
  315. }
  316. public void ClearInvincible()
  317. {
  318. mInvincibleTimeMS.Clear();
  319. }
  320. public void ClearSilent()
  321. {
  322. mSilentTimeMS.Clear();
  323. }
  324. public void ClearCannotMove()
  325. {
  326. mCannotMoveTimeMS.Clear();
  327. }
  328. public void ClearIgnoreControl()
  329. {
  330. mIgnoreControl.Clear();
  331. }
  332. #endregion
  333. //-----------------------------------------------------------------------------------------------------//
  334. //-----------------------------------------------------------------------------------------------
  335. #region _技能状态类_
  336. public PlayerSkillChangedEvent GetSkillEvent()
  337. {
  338. PlayerSkillChangedEvent evt = new PlayerSkillChangedEvent(ID);
  339. evt.unitFastCastRate = this.mFastCastRate;
  340. if (mDefaultSkill != null)
  341. {
  342. evt.baseSkill = mDefaultSkill.Data;
  343. }
  344. foreach (SkillState sk in mSkillStatus.Skills)
  345. {
  346. if (sk.GetSkillType() != XmdsSkillType.cardSkill && (evt.baseSkill == null || sk.Data.TemplateID != evt.baseSkill.ID))
  347. {
  348. sk.Data.CurUseTimes = (short)sk.OveryLayer;
  349. evt.skills.Add(sk.Data);
  350. }
  351. }
  352. return evt;
  353. }
  354. public ClientStruct.UnitSkillStatus[] GetCurrentSkillStatus()
  355. {
  356. ClientStruct.UnitSkillStatus[] ret = new ClientStruct.UnitSkillStatus[mSkillStatus.Count];
  357. int i = 0;
  358. foreach (SkillState sk in mSkillStatus.Skills)
  359. {
  360. ret[i].SkillTemplateID = (sk.Data.TemplateID);
  361. ret[i].PassTime = (sk.PassTime);
  362. ret[i].useTimes = sk.OveryLayer;
  363. i++;
  364. }
  365. return ret;
  366. }
  367. /// <summary>
  368. /// 初始化技能可用性
  369. /// </summary>
  370. public PlayerSkillActiveChangedEvent GetSyncSkillActives()
  371. {
  372. PlayerSkillActiveChangedEvent mSyncSkillActives = new PlayerSkillActiveChangedEvent(this.ID, mSkillStatus.Count);
  373. foreach (SkillState st in mSkillStatus.Skills)
  374. {
  375. PlayerSkillActiveChangedEvent.State sat = new PlayerSkillActiveChangedEvent.State();
  376. sat.SkillTemplateID = st.ID;
  377. sat.ST = st.ActiveState;
  378. mSyncSkillActives.Skills.Add(sat);
  379. }
  380. return mSyncSkillActives;
  381. }
  382. private SkillMap mSkillStatus = new SkillMap();
  383. private SkillState mDefaultSkill;
  384. private List<SkillTemplate> mAllSkills = new List<SkillTemplate>();
  385. private bool mSyncSkillActivesChanged = false;
  386. private void updateSyncSkillActives()
  387. {
  388. if (mSyncSkillActivesChanged)
  389. {
  390. mSyncSkillActivesChanged = false;
  391. queueEvent(GetSyncSkillActives());
  392. }
  393. }
  394. protected bool DoTryAddSkill(ref SkillTemplate sk)
  395. {
  396. bool ret = true;
  397. if (mOnTryAddSkill != null)
  398. {
  399. foreach (TryAddSkill tryadd in mOnTryAddSkill.GetInvocationList())
  400. {
  401. if (!tryadd.Invoke(this, ref sk))
  402. {
  403. ret = false;
  404. }
  405. }
  406. }
  407. return ret;
  408. }
  409. /// <summary>
  410. /// 重置当前单位技能,当前单位技能重置为单位模板指定技能
  411. /// </summary>
  412. public void ResetSkills()
  413. {
  414. if (mFormula.TryResetSkill(this))
  415. {
  416. InitSkills(mInfo.BaseSkillID, mInfo.Skills.ToArray());
  417. }
  418. }
  419. /// <summary>
  420. /// 设置当前单位技能
  421. /// </summary>
  422. /// <param name="baseSkill"></param>
  423. /// <param name="skills"></param>
  424. public virtual void InitSkills(LaunchSkill baseSkill, LaunchSkill[] skills)
  425. {
  426. List<SkillState> exist = new List<SkillState>(mSkillStatus.Skills);
  427. mSyncSkillActivesChanged = true;
  428. mDefaultSkill = null;
  429. mSkillStatus.Clear();
  430. mAllSkills.Clear();
  431. foreach (SkillState st in exist)
  432. {
  433. if (mOnSkillRemoved != null) { mOnSkillRemoved.Invoke(this, st); }
  434. }
  435. if (baseSkill != null)
  436. {
  437. SkillTemplate st = Templates.getSkill(baseSkill.SkillID);
  438. if (DoTryAddSkill(ref st))
  439. {
  440. if (st != null && !mSkillStatus.ContainsKey(baseSkill.SkillID))
  441. {
  442. mDefaultSkill = new SkillState(st, baseSkill, this);
  443. mAllSkills.Add(st);
  444. mSkillStatus.Add(mDefaultSkill);
  445. if (mOnSkillAdded != null) { mOnSkillAdded.Invoke(this, mDefaultSkill); }
  446. }
  447. }
  448. }
  449. foreach (LaunchSkill lsk in skills)
  450. {
  451. SkillTemplate stt = Templates.getSkill(lsk.SkillID);
  452. if (DoTryAddSkill(ref stt))
  453. {
  454. if (stt != null && !mSkillStatus.ContainsKey(lsk.SkillID))
  455. {
  456. SkillState sk = new SkillState(stt, lsk, this);
  457. mAllSkills.Add(stt);
  458. mSkillStatus.Add(sk);
  459. if (mOnSkillAdded != null) { mOnSkillAdded.Invoke(this, sk); }
  460. }
  461. }
  462. }
  463. if (IsInZone)
  464. {
  465. Parent.queueObjectEvent(this, GetSkillEvent());
  466. }
  467. if (mOnSkillChanged != null)
  468. {
  469. mOnSkillChanged.Invoke(this, mDefaultSkill, mSkillStatus.SkillsArray);
  470. }
  471. }
  472. /// <summary>
  473. /// 设置当前单位技能
  474. /// </summary>
  475. /// <param name="baseSkill"></param>
  476. /// <param name="skills"></param>
  477. public void InitSkills(SkillTemplate baseSkill, SkillTemplate[] skills)
  478. {
  479. List<SkillState> exist = new List<SkillState>(mSkillStatus.Skills);
  480. mSyncSkillActivesChanged = true;
  481. mDefaultSkill = null;
  482. mSkillStatus.Clear();
  483. mAllSkills.Clear();
  484. foreach (SkillState st in exist)
  485. {
  486. if (mOnSkillRemoved != null) { mOnSkillRemoved.Invoke(this, st); }
  487. }
  488. if (baseSkill != null)
  489. {
  490. if (DoTryAddSkill(ref baseSkill))
  491. {
  492. if (baseSkill != null && !mSkillStatus.ContainsKey(baseSkill.ID))
  493. {
  494. mDefaultSkill = new SkillState(baseSkill, new LaunchSkill(baseSkill.ID), this);
  495. mAllSkills.Add(baseSkill);
  496. mSkillStatus.Add(mDefaultSkill);
  497. if (mOnSkillAdded != null) { mOnSkillAdded.Invoke(this, mDefaultSkill); }
  498. }
  499. }
  500. }
  501. foreach (SkillTemplate ssk in skills)
  502. {
  503. SkillTemplate stt = ssk;
  504. if (DoTryAddSkill(ref stt))
  505. {
  506. if (stt != null && !mSkillStatus.ContainsKey(stt.ID))
  507. {
  508. LaunchSkill lsk = null;
  509. foreach(LaunchSkill _lsk in mInfo.Skills)
  510. {
  511. if (_lsk.SkillID == stt.ID)
  512. {
  513. lsk = _lsk;
  514. break;
  515. }
  516. }
  517. if (lsk == null)
  518. lsk = new LaunchSkill(stt.ID);
  519. SkillState state = new SkillState(stt, lsk, this);
  520. mAllSkills.Add(stt);
  521. mSkillStatus.Add(state);
  522. if (mOnSkillAdded != null) { mOnSkillAdded.Invoke(this, state); }
  523. }
  524. }
  525. }
  526. if (IsInZone)
  527. {
  528. Parent.queueObjectEvent(this, GetSkillEvent());
  529. }
  530. if (mOnSkillChanged != null)
  531. {
  532. mOnSkillChanged.Invoke(this, mDefaultSkill, mSkillStatus.SkillsArray);
  533. }
  534. }
  535. public SkillState AddSkill(SkillTemplate st, bool is_default = false)
  536. {
  537. if (DoTryAddSkill(ref st))
  538. {
  539. if (st != null && !mSkillStatus.ContainsKey(st.ID))
  540. {
  541. mSyncSkillActivesChanged = true;
  542. SkillState state = new SkillState(st, new LaunchSkill(st.ID), this);
  543. mAllSkills.Add(st);
  544. mSkillStatus.Add(state);
  545. if (is_default)
  546. {
  547. mDefaultSkill = state;
  548. }
  549. if (IsInZone)
  550. {
  551. st.CurUseTimes = (short)state.OveryLayer;
  552. Parent.queueObjectEvent(this, new PlayerSkillAddedEvent(ID, st, is_default));
  553. }
  554. if (mOnSkillAdded != null) { mOnSkillAdded.Invoke(this, state); }
  555. if (mOnSkillChanged != null) { mOnSkillChanged.Invoke(this, mDefaultSkill, mSkillStatus.SkillsArray); }
  556. return state;
  557. }
  558. }
  559. return null;
  560. }
  561. public SkillState RemoveSkill(int skillTemplateID)
  562. {
  563. SkillState state = mSkillStatus.RemoveByKey(skillTemplateID);
  564. if (state != null)
  565. {
  566. mSyncSkillActivesChanged = true;
  567. mAllSkills.RemoveAll((t) => { return (t.TemplateID == skillTemplateID); });
  568. if (state == mDefaultSkill)
  569. {
  570. mDefaultSkill = null;
  571. }
  572. if (IsInZone) { Parent.queueObjectEvent(this, new PlayerSkillRemovedEvent(ID, skillTemplateID)); }
  573. if (mOnSkillRemoved != null) { mOnSkillRemoved.Invoke(this, state); }
  574. if (mOnSkillChanged != null) { mOnSkillChanged.Invoke(this, mDefaultSkill, mSkillStatus.SkillsArray); }
  575. }
  576. return state;
  577. }
  578. public SkillTemplate DefaultSkill
  579. {
  580. get
  581. {
  582. if (mDefaultSkill != null)
  583. {
  584. return mDefaultSkill.Data;
  585. }
  586. return null;
  587. }
  588. }
  589. public SkillState DefaultSkillStatus()
  590. {
  591. return mDefaultSkill;
  592. }
  593. public IEnumerable<SkillState> SkillStatus
  594. {
  595. get
  596. {
  597. return mSkillStatus.Skills;
  598. }
  599. }
  600. public SkillTemplate getSkill(int skillID)
  601. {
  602. SkillState st = mSkillStatus.Get(skillID);
  603. if (st != null)
  604. {
  605. return st.Data;
  606. }
  607. return null;
  608. }
  609. public SkillState getSkillState(int skillID)
  610. {
  611. SkillState st = mSkillStatus.Get(skillID);
  612. if (st != null)
  613. {
  614. return st;
  615. }
  616. return null;
  617. }
  618. public void onSkillHitTarget()
  619. {
  620. if (mOnSkillHitTarger != null) mOnSkillHitTarger.Invoke();
  621. }
  622. /// <summary>
  623. /// 获得当前随机可释放的技能
  624. /// </summary>
  625. /// <param name="expectTarget"></param>
  626. /// <returns></returns>
  627. public virtual SkillState getRandomLaunchableExpectSkill(SkillTemplate.CastTarget expectTarget)
  628. {
  629. int rand = RandomN.Next(0, mAllSkills.Count);
  630. for (int si = mAllSkills.Count - 1; si >= 0; --si)
  631. {
  632. SkillTemplate st = mAllSkills[CMath.cycNum(rand, si, mAllSkills.Count)];
  633. if (st.ExpectTarget == expectTarget)
  634. {
  635. SkillState sst = mSkillStatus.Get(st.GetID());
  636. if (sst.LaunchSkill.AutoLaunch && sst.TryLaunch() && sst.CanAutoLaunch())
  637. {
  638. return sst;
  639. }
  640. }
  641. }
  642. return null;
  643. }
  644. /// <summary>
  645. /// 获得当前随机可释放的技能
  646. /// </summary>
  647. /// <param name="target"></param>
  648. /// <param name="expectTarget"></param>
  649. /// <param name="reason"></param>
  650. /// <param name="checkRange"></param>
  651. /// <returns></returns>
  652. public virtual SkillState getRandomLaunchableExpectSkill(InstanceUnit target, SkillTemplate.CastTarget expectTarget, AttackReason reason = AttackReason.Tracing, bool checkRange = false)
  653. {
  654. int rand = RandomN.Next(0, mAllSkills.Count);
  655. for (int si = mAllSkills.Count - 1; si >= 0; --si)
  656. {
  657. SkillTemplate st = mAllSkills[CMath.cycNum(rand, si, mAllSkills.Count)];
  658. if (st.ExpectTarget == expectTarget)
  659. {
  660. SkillState sst = mSkillStatus.Get(st.GetID());
  661. if (sst.LaunchSkill.AutoLaunch && sst.TryLaunch() && Parent.IsAttackable(this, target, expectTarget, reason, st))
  662. {
  663. if (!checkRange || sst.checkTargetRange(target))
  664. {
  665. return sst;
  666. }
  667. }
  668. }
  669. }
  670. return null;
  671. }
  672. /// <summary>
  673. /// 获得当前随机可释放的技能
  674. /// </summary>
  675. /// <returns></returns>
  676. public virtual SkillState getRandomLaunchableSkill()
  677. {
  678. int rand = RandomN.Next(0, mAllSkills.Count);
  679. for (int si = mAllSkills.Count - 1; si >= 0; --si)
  680. {
  681. SkillTemplate st = mAllSkills[CMath.cycNum(rand, si, mAllSkills.Count)];
  682. SkillState sst = mSkillStatus.Get(st.GetID());
  683. if (sst.TryLaunch())
  684. {
  685. return sst;
  686. }
  687. }
  688. return null;
  689. }
  690. public void getKeepSkills(List<int> keeps, List<LaunchSkill> ret)
  691. {
  692. foreach (SkillState st in mSkillStatus.Skills)
  693. {
  694. if (keeps.Contains(st.ID))
  695. {
  696. ret.Add(st.LaunchSkill);
  697. }
  698. }
  699. }
  700. private void updateSkills()
  701. {
  702. //int intervalMS = Parent.UpdateIntervalMS;
  703. //for (int i = 0; i < mSkillStatus.Count; i++)
  704. //{
  705. // SkillState st = mSkillStatus.GetAt(i);
  706. // st.Update(intervalMS);
  707. //}
  708. mSkillStatus.update(Parent.UpdateIntervalMS);
  709. }
  710. protected virtual void clearSkills()
  711. {
  712. this.mSkillStatus.Clear();
  713. }
  714. // Skills
  715. class SkillMap
  716. {
  717. private HashMap<int, SkillState> Map = new HashMap<int, SkillState>();
  718. private List<SkillState> For = new List<SkillState>();
  719. public int Count { get { return For.Count; } }
  720. public IEnumerable<SkillState> Skills { get { return For; } }
  721. public SkillState[] SkillsArray { get { return For.ToArray(); } }
  722. public SkillState GetAt(int i)
  723. {
  724. return For[i];
  725. }
  726. public SkillState Get(int id)
  727. {
  728. return Map.Get(id);
  729. }
  730. public void Add(SkillState state)
  731. {
  732. if (!Map.ContainsKey(state.ID))
  733. {
  734. Map.Put(state.ID, state);
  735. For.Add(state);
  736. }
  737. }
  738. public SkillState RemoveByKey(int id)
  739. {
  740. SkillState ret = Map.RemoveByKey(id);
  741. if (ret != null)
  742. {
  743. For.Remove(ret);
  744. }
  745. return ret;
  746. }
  747. public bool ContainsKey(int id)
  748. {
  749. return Map.ContainsKey(id);
  750. }
  751. public void Clear()
  752. {
  753. Map.Clear();
  754. For.Clear();
  755. }
  756. public void update(int intervalMS)
  757. {
  758. foreach (SkillState st in this.For)
  759. {
  760. st.Update(intervalMS);
  761. }
  762. }
  763. }
  764. public delegate void ISkillCDStatusChange(SkillState skill, bool iscd);
  765. public class SkillState
  766. {
  767. // 技能CD状态更改监听
  768. readonly private List<ISkillCDStatusChange> mSkillCDStatusChange = new List<ISkillCDStatusChange>();
  769. readonly public SkillTemplate Data;
  770. readonly public LaunchSkill LaunchSkill;
  771. readonly public InstanceUnit Owner;
  772. private SkillActiveState current_state = SkillActiveState.Active;
  773. private int total_cd_time;
  774. private int decrease_total_timems;
  775. private int trigger_decrease_times; //机制触发,减少CD
  776. // 叠层
  777. private int overLayer = -1;
  778. /// <summary>
  779. /// 从技能开始时的逝去时间
  780. /// </summary>
  781. private int pass_time;
  782. /// <summary>
  783. /// 最后CD完成时间
  784. /// </summary>
  785. private int stop_time;
  786. /// <summary>
  787. /// 如果是多段攻击,记录段数
  788. /// </summary>
  789. private int action_step = -1;
  790. private int lockActionStep = -1; //锁定执行序列号
  791. // 是否是多段式技能
  792. private bool mCanStoreTimes = false;
  793. /// <summary>
  794. /// 多段攻击自动下段
  795. /// </summary>
  796. private bool auto_increase_action_step = true;
  797. /// <summary>
  798. /// 当前是否在冷却
  799. /// </summary>
  800. private bool is_cd = false;
  801. /// <summary>
  802. /// 当前是否在多段攻击允许时间内
  803. /// </summary>
  804. private bool is_in_mutil_time = true;
  805. /// <summary>
  806. /// 当前释放技能时的状态机
  807. /// </summary>
  808. private StateSkill state;
  809. private float action_speed;
  810. public int ID { get { return Data.ID; } }
  811. /// <summary>
  812. /// 当前技能是否在转CD
  813. /// </summary>
  814. public bool IsCD { get { return is_cd; } }
  815. public SkillActiveState ActiveState { get { return current_state; } }
  816. public bool IsActive { get { return current_state == SkillActiveState.Active || current_state == SkillActiveState.ActiveAndHide; } }
  817. public bool IsPauseOnDeactive { get { return current_state == SkillActiveState.DeactiveAndPause; } }
  818. public XmdsSkillType GetSkillType() { return this.Data.Properties.GetSkillType(); }
  819. //是否是多段式技能
  820. private byte mMaxMutilStep = 0;
  821. //代码逻辑控制cd
  822. private bool mCodeControlCD;
  823. /// <summary>
  824. /// 当前技能是否放完
  825. /// </summary>
  826. public bool IsDone
  827. {
  828. get
  829. {
  830. if (Data.IsCoolDownWithAction)
  831. {
  832. if (state == null)
  833. return true;
  834. if (state.IsDone)
  835. return true;
  836. if (state.IsCancelableBySkill)
  837. return true;
  838. return false;
  839. }
  840. else if (this.IsMutilAction() && this.IsHasNext())//多段式攻击
  841. {
  842. if (is_in_mutil_time)
  843. {
  844. return true;
  845. }
  846. }
  847. return !is_cd;
  848. }
  849. }
  850. public bool CanAutoLaunch()
  851. {
  852. return this.stop_time == 0 || this.GetSkillType() == XmdsSkillType.normalAtk || this.stop_time + 2000 < this.pass_time || this.IsInMutilTime;
  853. }
  854. public bool IsCodeConttrolCD()
  855. {
  856. return this.mCodeControlCD;
  857. }
  858. /// <summary>
  859. /// CD 需要的总时间
  860. /// </summary>
  861. public int TotalCDTime
  862. {
  863. get { return total_cd_time - this.trigger_decrease_times; } set { total_cd_time = value; }
  864. }
  865. /// <summary>
  866. /// CD 需要的总时间
  867. /// </summary>
  868. public bool IsInMutilTime
  869. {
  870. get { return is_in_mutil_time; } set { is_in_mutil_time = value; }
  871. }
  872. public void ResetTotalTime()
  873. {
  874. this.total_cd_time = Data.ToUnitSkillTotalTime(Owner.mFastCastRate) - decrease_total_timems;
  875. this.total_cd_time = Math.Max(0, this.total_cd_time);
  876. }
  877. public int PassTime
  878. {
  879. get { return pass_time; }
  880. }
  881. public int OveryLayer
  882. {
  883. get { return this.overLayer; }
  884. }
  885. public void ResetPassTime()
  886. {
  887. this.pass_time = 0;
  888. }
  889. public void SetCDStates(bool cdStatus)
  890. {
  891. this.is_cd = cdStatus;
  892. for (int i = 0; i < mSkillCDStatusChange.Count; i++)
  893. {
  894. mSkillCDStatusChange[i].Invoke(this, this.is_cd);
  895. }
  896. }
  897. public void ResgistSkillCDChangeListen(ISkillCDStatusChange listen)
  898. {
  899. if(listen != null)
  900. {
  901. this.mSkillCDStatusChange.Add(listen);
  902. }
  903. }
  904. public bool IsMutilAction()
  905. {
  906. return Data.IsSingleAction && (Data.ActionQueue.Count > 1);
  907. }
  908. public bool IsHasNext()
  909. {
  910. bool isHasNext = this.ActionIndex < this.mMaxMutilStep;
  911. if(!isHasNext && this.Data.ActionQueue.Count > this.ActionIndex && this.Data.ActionQueue[this.ActionIndex].IsCancelBySkillNext)
  912. {
  913. isHasNext = true;
  914. }
  915. return isHasNext;
  916. }
  917. public byte GetMaxMutilStep()
  918. {
  919. return this.mMaxMutilStep;
  920. }
  921. public int GetMaxSteps()
  922. {
  923. return this.mMaxMutilStep > 0 ? Math.Min(this.mMaxMutilStep, this.Data.ActionQueue.Count-1) : (this.Data.ActionQueue.Count-1);
  924. }
  925. public UnitActionData GetNextAction()
  926. {
  927. if(this.ActionIndex + 1 >= this.Data.ActionQueue.Count)
  928. {
  929. return null;
  930. }
  931. return this.Data.ActionQueue[this.ActionIndex + 1];
  932. }
  933. public UnitActionData GetCurAction()
  934. {
  935. if (this.ActionIndex < 0 || this.ActionIndex >= this.Data.ActionQueue.Count)
  936. {
  937. return null;
  938. }
  939. return this.Data.ActionQueue[this.ActionIndex];
  940. }
  941. public float ActionSpeed { get { return action_speed; } }
  942. public int ActionIndex { get { return action_step; }}
  943. public int LockActionStep { get { return lockActionStep; } set { lockActionStep = value; } }
  944. public object Tag { get; set; }
  945. public bool CanStoreTimes { get { return this.mCanStoreTimes; }}
  946. internal SkillState(SkillTemplate data, LaunchSkill skill, InstanceUnit owner)
  947. {
  948. this.Owner = owner;
  949. this.Data = data;
  950. this.mCanStoreTimes = (this.Data.Properties.GetSkillUseTimes() > 1 && this.Data.Properties.GetSkillAddTimeInterval() > 0);
  951. //默认有最大层数
  952. if (this.mCanStoreTimes)
  953. {
  954. this.overLayer = this.Data.Properties.GetSkillUseTimes();
  955. }
  956. this.LaunchSkill = skill;
  957. this.total_cd_time = Data.ToUnitSkillTotalTime(Owner.mFastCastRate) - decrease_total_timems;
  958. this.pass_time = int.MaxValue / 2;
  959. this.action_speed = data.ActionSpeedRate + Owner.__mSkillActionSpeedRate;
  960. // 多段式技能,但是只能释放一段
  961. if(Data.IsSingleAction && (Data.ActionQueue.Count > 1))
  962. {
  963. for (int i = 0; i < Data.ActionQueue.Count; i++)
  964. {
  965. this.mMaxMutilStep = (byte)i;
  966. if (Data.ActionQueue[i].SigleActionType == ActionEnum.forbidNext || Data.ActionQueue[i].SigleActionType == ActionEnum.forbidNext_lock
  967. || Data.ActionQueue[i].SigleActionType == ActionEnum.forbidNext_showTime)
  968. {
  969. break;
  970. }
  971. }
  972. }
  973. }
  974. //设置自动释放
  975. public void setAutoLaunch(bool AutoLaunch)
  976. {
  977. this.LaunchSkill.AutoLaunch = AutoLaunch;
  978. }
  979. public void setMaxMutilStep(int vlaue)
  980. {
  981. this.mMaxMutilStep = (byte)vlaue;
  982. }
  983. public void SetActionIndex(int index)
  984. {
  985. this.action_step = index;
  986. }
  987. // 设置机制冷却缩减时间
  988. public void setTriggerDecreaseTime(int time, bool notify = false)
  989. {
  990. this.trigger_decrease_times = time;
  991. // time==0是开始释放时的重置
  992. if(notify)
  993. {
  994. PlayerCDEvent evt = new PlayerCDEvent(this.Owner.ID);
  995. evt.is_decrease_time = true;
  996. evt.is_all = false;
  997. evt.decrease_timeMS = time;
  998. evt.skill_template_id = this.LaunchSkill.SkillID;
  999. this.Owner.Parent.queueObjectEvent(this.Owner, evt);
  1000. }
  1001. }
  1002. /// <summary>
  1003. /// 检测目标距离
  1004. /// </summary>
  1005. /// <returns></returns>
  1006. public bool checkTargetRange(InstanceUnit targetUnit)
  1007. {
  1008. if (Data.AttackMustBeInRange && Data.AttackAngle == 0)
  1009. {
  1010. if (targetUnit != null)
  1011. {
  1012. float rg = Owner.GetSkillAttackRange(this.Data, targetUnit);
  1013. if (Collider.Object_HitBody_TouchRound(targetUnit, Owner.X, Owner.Y, rg))
  1014. {
  1015. return true;
  1016. }
  1017. }
  1018. return false;
  1019. }
  1020. return true;
  1021. }
  1022. /// <summary>
  1023. /// 检测目标距离
  1024. /// </summary>
  1025. /// <returns></returns>
  1026. public bool checkTargetInAttackRange(InstanceUnit targetUnit, LaunchSkillParam param)
  1027. {
  1028. //只处理怪物的自动战斗,玩家控制不了
  1029. if (this.Owner.IsMonster && this.Data.AttackKeepRange > 0)
  1030. {
  1031. targetUnit = targetUnit == null ? this.Owner.Parent.getUnit(param.TargetUnitID) : targetUnit;
  1032. if (targetUnit != null && CMath.getDistance(targetUnit.X, targetUnit.Y, this.Owner.X, this.Owner.Y) < Data.AttackKeepRange)
  1033. {
  1034. return false;
  1035. }
  1036. }
  1037. if (this.Data.AttackRange > 0)
  1038. {
  1039. targetUnit = targetUnit == null ? this.Owner.Parent.getUnit(param.TargetUnitID) : targetUnit;
  1040. if (targetUnit != null && CMath.getDistance(targetUnit.X, targetUnit.Y, this.Owner.X, this.Owner.Y) > (Owner.GetSkillAttackRange(this.Data) + targetUnit.BodyBlockSize))
  1041. {
  1042. return false;
  1043. }
  1044. }
  1045. return true;
  1046. }
  1047. public void SetDecreaseTotalTimeMS(int timeMS)
  1048. {
  1049. this.decrease_total_timems = timeMS;
  1050. }
  1051. public void AddDecreaseTotalTimeMS(int timeMS)
  1052. {
  1053. this.decrease_total_timems += timeMS;
  1054. }
  1055. public int GetDecreaseTotalTimeMS()
  1056. {
  1057. return this.decrease_total_timems;
  1058. }
  1059. /// <summary>
  1060. /// 指定技能动作
  1061. /// </summary>
  1062. /// <param name="step"></param>
  1063. public void Reset(bool init = false)
  1064. {
  1065. this.action_step = -1;
  1066. if (!init)
  1067. {
  1068. this.IsInMutilTime = false;
  1069. }
  1070. }
  1071. /// <summary>
  1072. /// 设置是否自动控制多段攻击(如果要手动指定播放技能,则设置为False)
  1073. /// </summary>
  1074. /// <param name="at"></param>
  1075. public void SetAutoIncreaseActionIndex(bool at)
  1076. {
  1077. this.auto_increase_action_step = at;
  1078. }
  1079. internal void Launch(StateSkill s, LaunchSkillParam param)
  1080. {
  1081. this.NextAction();
  1082. this.total_cd_time = this.GetDefTotalCDTime();
  1083. this.pass_time = 0;
  1084. this.state = s;
  1085. this.SetCDStates(true);
  1086. }
  1087. private int GetDefTotalCDTime()
  1088. {
  1089. int cd_time = 0;
  1090. cd_time = Data.ToUnitSkillTotalTime(Owner.mFastCastRate) - decrease_total_timems;
  1091. if(this.GetSkillType() == XmdsSkillType.normalAtk)
  1092. {
  1093. cd_time = (int)(cd_time / (Owner.GetAttackSpeed() * 0.0001f));
  1094. }
  1095. else
  1096. {
  1097. cd_time = (int)((1.0f - Math.Min(XmdsConstConfig.SKILL_CD_REDUCE_MAX, Owner.SkillCdReduce) * 0.0001f) * cd_time);
  1098. }
  1099. cd_time = Math.Max(0, cd_time);
  1100. return cd_time;
  1101. }
  1102. public void updateOverLayer(int value)
  1103. {
  1104. this.overLayer = value;
  1105. //通知叠层
  1106. var queData = new PlayerSkillUseTimeChangedEvent(this.Owner.ID, this.Data.ID, (byte)this.overLayer);
  1107. queData.hasNext = (byte)((this.OveryLayer >= this.Data.Properties.GetSkillUseTimes()) ? 0 : 1);
  1108. this.Owner.queueEvent(queData);
  1109. }
  1110. public void StartCD(int total_time = 0)
  1111. {
  1112. if (total_time > 0)
  1113. {
  1114. this.total_cd_time = Math.Max(0, total_time - decrease_total_timems);
  1115. }
  1116. else
  1117. {
  1118. //this.total_cd_time = Data.ToUnitSkillTotalTime(Owner.mFastCastRate) - decrease_total_timems;
  1119. //this.total_cd_time = Math.Max(0, this.total_cd_time);
  1120. this.total_cd_time = this.GetDefTotalCDTime();
  1121. }
  1122. this.pass_time = 0;
  1123. this.SetCDStates(true);
  1124. Owner.queueEvent(new PlayerSkillTimeChangedEvent(Owner.ID, ID, this.pass_time, this.TotalCDTime));
  1125. }
  1126. public void LogicToCD()
  1127. {
  1128. this.mCodeControlCD = true;
  1129. this.StartCD();
  1130. }
  1131. public void ForceIntoCD()
  1132. {
  1133. this.is_in_mutil_time = false;
  1134. this.action_step = -1;
  1135. this.StartCD();
  1136. }
  1137. internal void Stop(StateSkill s)
  1138. {
  1139. this.state = null;
  1140. // CD 依靠动作结束
  1141. if (Data.IsCoolDownWithAction)
  1142. {
  1143. this.SetCDStates(false);
  1144. this.stop_time = this.pass_time;
  1145. }
  1146. }
  1147. internal void Update(int intervalMS)
  1148. {
  1149. if (!IsActive && IsPauseOnDeactive)
  1150. {
  1151. return;
  1152. }
  1153. this.pass_time += intervalMS;
  1154. if(this.CanStoreTimes)
  1155. {
  1156. if(this.overLayer < Data.Properties.GetSkillUseTimes() && this.pass_time >= Data.Properties.GetSkillAddTimeInterval())
  1157. {
  1158. this.pass_time = 0;
  1159. this.updateOverLayer(this.overLayer + 1);
  1160. }
  1161. }
  1162. else if (is_cd && !Data.IsCoolDownWithAction)
  1163. {
  1164. // 技能 CD
  1165. if (this.pass_time >= TotalCDTime)
  1166. {
  1167. if(this.IsMutilAction() && (this.is_in_mutil_time || (this.action_step >= Data.ActionQueue.Count)))
  1168. {
  1169. if(this.action_step < Data.ActionQueue.Count && this.action_step > 0 &&
  1170. (Data.ActionQueue[this.action_step].SigleActionType == ActionEnum.chargeAtk || Data.ActionQueue[this.action_step].SigleActionType == ActionEnum.IsAutoNext))
  1171. {
  1172. pass_time = 0;
  1173. return;
  1174. }
  1175. else
  1176. {
  1177. this.Reset();
  1178. this.StartCD();
  1179. }
  1180. }
  1181. else
  1182. {
  1183. this.is_in_mutil_time = true;
  1184. this.SetCDStates(false);
  1185. this.stop_time = this.pass_time;
  1186. //Console.WriteLine("out cd : " + TimeUtil.GetTimestampMS());
  1187. }
  1188. }
  1189. }
  1190. }
  1191. public bool TryLaunch()
  1192. {
  1193. if (!IsActive)
  1194. {
  1195. return false;
  1196. }
  1197. if (!this.Owner.IsCanLaunchSkill(Data.TemplateID))
  1198. {
  1199. return false;
  1200. }
  1201. //if (Owner.__mCurrentHP.Value >= Data.CostHP)
  1202. {
  1203. return IsDone;
  1204. }
  1205. //return false;
  1206. }
  1207. public int NextAction()
  1208. {
  1209. if (Data.IsSingleAction && auto_increase_action_step)
  1210. {
  1211. int action_time = this.TotalCDTime;
  1212. // 是放技能时,处于多段攻击连击冷却时间范围
  1213. //if (pass_time - stop_time < Data.SingleActionCoolDownMS || pass_time < (action_time + Data.SingleActionCoolDownMS))
  1214. if (this.action_step < 0)
  1215. {
  1216. this.action_step = 0;
  1217. }
  1218. else
  1219. {
  1220. if (Data.IsCoolDownWithAction)
  1221. {
  1222. action_time = Data.ActionQueue[action_step % Data.ActionQueue.Count].TotalTimeMS;
  1223. }
  1224. if (this.IsMutilAction())
  1225. {
  1226. if (this.IsInMutilTime || (this.Data.IsCoolDownWithAction && this.IsDone) || (!this.IsDone && this.action_step < this.mMaxMutilStep))
  1227. {
  1228. this.action_step += 1;
  1229. this.action_step = (byte)(action_step % Data.ActionQueue.Count);
  1230. //if (this.action_step >= Data.ActionQueue.Count || !IsCanLaunchNextStepByPlayer(Data.ActionQueue[this.action_step]))
  1231. //{
  1232. // this.action_step = 0;
  1233. // this.is_in_mutil_time = false;
  1234. //}
  1235. }
  1236. }
  1237. }
  1238. }
  1239. return action_step;
  1240. }
  1241. public bool IsCanLaunchNextStepByPlayer(UnitActionData actionData)
  1242. {
  1243. // = this.Data.ActionQueue[this.ActionIndex];
  1244. if (actionData.SigleActionType == ActionEnum.forbidNext ||
  1245. actionData.SigleActionType == ActionEnum.forbidNext_lock)
  1246. {
  1247. return false;
  1248. }
  1249. return true;
  1250. }
  1251. internal void ClearCD()
  1252. {
  1253. this.pass_time = TotalCDTime;
  1254. }
  1255. internal void DecreaseSkillCD(int timeMS)
  1256. {
  1257. if (!Data.IsCoolDownWithAction)
  1258. {
  1259. this.pass_time += timeMS;
  1260. }
  1261. }
  1262. internal void DecreaseSkillCD_Pct(float percent)
  1263. {
  1264. if (!Data.IsCoolDownWithAction)
  1265. {
  1266. this.pass_time += (int)(TotalCDTime * percent);
  1267. }
  1268. }
  1269. internal void SetPassTime(int passtime)
  1270. {
  1271. if (!Data.IsCoolDownWithAction)
  1272. {
  1273. if (passtime != this.pass_time)
  1274. {
  1275. this.pass_time = passtime;
  1276. Owner.queueEvent(new PlayerSkillTimeChangedEvent(Owner.ID, ID, this.pass_time, this.total_cd_time));
  1277. if (pass_time < TotalCDTime)
  1278. {
  1279. this.SetCDStates(true);
  1280. }
  1281. }
  1282. }
  1283. }
  1284. internal bool TrySetActive(SkillActiveState state)
  1285. {
  1286. if (state != current_state)
  1287. {
  1288. this.current_state = state;
  1289. this.Owner.mSyncSkillActivesChanged = true;
  1290. return true;
  1291. }
  1292. return false;
  1293. }
  1294. }
  1295. /// <summary>
  1296. /// 设置技能可用性
  1297. /// </summary>
  1298. /// <param name="skillTemplateID"></param>
  1299. /// <param name="active"></param>
  1300. /// <param name="pause_on_deactive"></param>
  1301. public void SetSkillActive(int skillTemplateID, bool active, bool pause_on_deactive = false)
  1302. {
  1303. SkillState st = getSkillState(skillTemplateID);
  1304. if (st != null)
  1305. {
  1306. if (active)
  1307. st.TrySetActive(SkillActiveState.Active);
  1308. else if (pause_on_deactive)
  1309. st.TrySetActive(SkillActiveState.DeactiveAndPause);
  1310. else
  1311. st.TrySetActive(SkillActiveState.Deactive);
  1312. }
  1313. //标记冻结
  1314. this.Virtual.SetSkillActive(skillTemplateID, active, pause_on_deactive);
  1315. }
  1316. public void SetSkillActive(int skillTemplateID, SkillActiveState state)
  1317. {
  1318. SkillState st = getSkillState(skillTemplateID);
  1319. if (st != null)
  1320. {
  1321. st.TrySetActive(state);
  1322. }
  1323. }
  1324. /// <summary>
  1325. /// 清除技能CD
  1326. /// </summary>
  1327. /// <param name="skillTemplateID"></param>
  1328. public void ClearSkillCD(int skillTemplateID)
  1329. {
  1330. SkillState ss = getSkillState(skillTemplateID);
  1331. if (ss != null)
  1332. {
  1333. ss.ClearCD();
  1334. PlayerCDEvent evt = new PlayerCDEvent(ID);
  1335. evt.is_clear = true;
  1336. evt.is_all = false;
  1337. evt.skill_template_id = skillTemplateID;
  1338. Parent.queueObjectEvent(this, evt);
  1339. }
  1340. }
  1341. /// <summary>
  1342. /// 清除所有技能CD
  1343. /// </summary>
  1344. public void ClearAllSkillCD()
  1345. {
  1346. foreach (SkillState ss in mSkillStatus.Skills)
  1347. {
  1348. ss.ClearCD();
  1349. }
  1350. PlayerCDEvent evt = new PlayerCDEvent(ID);
  1351. evt.is_clear = true;
  1352. evt.is_all = true;
  1353. Parent.queueObjectEvent(this, evt);
  1354. }
  1355. /// <summary>
  1356. /// 减少当前CD固定时间
  1357. /// </summary>
  1358. /// <param name="skillTemplateID"></param>
  1359. /// <param name="updateTimeMS"></param>
  1360. public void DecreaseSkillCD(int skillTemplateID, int updateTimeMS)
  1361. {
  1362. SkillState ss = getSkillState(skillTemplateID);
  1363. if (ss != null)
  1364. {
  1365. ss.DecreaseSkillCD(updateTimeMS);
  1366. PlayerCDEvent evt = new PlayerCDEvent(ID);
  1367. evt.is_decrease_time = true;
  1368. evt.is_all = false;
  1369. evt.decrease_timeMS = updateTimeMS;
  1370. evt.skill_template_id = skillTemplateID;
  1371. Parent.queueObjectEvent(this, evt);
  1372. }
  1373. }
  1374. /// <summary>
  1375. /// 减少当前CD固定时间
  1376. /// </summary>
  1377. /// <param name="updateTimeMS"></param>
  1378. public void DecreaseAllSkillCD(int updateTimeMS)
  1379. {
  1380. foreach (SkillState ss in mSkillStatus.Skills)
  1381. {
  1382. ss.DecreaseSkillCD(updateTimeMS);
  1383. }
  1384. PlayerCDEvent evt = new PlayerCDEvent(ID);
  1385. evt.is_decrease_time = true;
  1386. evt.is_all = true;
  1387. evt.decrease_timeMS = updateTimeMS;
  1388. Parent.queueObjectEvent(this, evt);
  1389. }
  1390. public void DecreaseSkillCD_Pct(int skillTemplateID, float percent)
  1391. {
  1392. SkillState ss = getSkillState(skillTemplateID);
  1393. if (ss != null)
  1394. {
  1395. ss.DecreaseSkillCD_Pct(percent);
  1396. PlayerCDEvent evt = new PlayerCDEvent(ID);
  1397. evt.is_decrease_pct = true;
  1398. evt.is_all = false;
  1399. evt.decrease_pct = percent;
  1400. evt.skill_template_id = skillTemplateID;
  1401. Parent.queueObjectEvent(this, evt);
  1402. }
  1403. }
  1404. public void DecreaseAllSkillCD_Pct(float percent)
  1405. {
  1406. foreach (SkillState ss in mSkillStatus.Skills)
  1407. {
  1408. ss.DecreaseSkillCD_Pct(percent);
  1409. }
  1410. PlayerCDEvent evt = new PlayerCDEvent(ID);
  1411. evt.is_decrease_pct = true;
  1412. evt.is_all = true;
  1413. evt.decrease_pct = percent;
  1414. Parent.queueObjectEvent(this, evt);
  1415. }
  1416. public void SetSkillPassTime(int skillID, int passTimeMS)
  1417. {
  1418. SkillState ss = this.getSkillState(skillID);
  1419. if (ss != null)
  1420. {
  1421. ss.SetPassTime(passTimeMS);
  1422. }
  1423. }
  1424. public void StartSkillCD(int skillID, int totalTimeMS = 0)
  1425. {
  1426. SkillState ss = this.getSkillState(skillID);
  1427. if (ss != null)
  1428. {
  1429. ss.StartCD(totalTimeMS);
  1430. }
  1431. }
  1432. #endregion
  1433. //-----------------------------------------------------------------------------------------------
  1434. #region _BUFF状态类_
  1435. public ClientStruct.UnitBuffStatus[] GetCurrentBuffStatus()
  1436. {
  1437. List<ClientStruct.UnitBuffStatus> ret = new List<ClientStruct.UnitBuffStatus>(mBuffs.Count);
  1438. mBuffs.ForEachRead((buff) =>
  1439. {
  1440. if (buff.Data.ClientVisible)
  1441. {
  1442. ClientStruct.UnitBuffStatus bf = new ClientStruct.UnitBuffStatus();
  1443. bf.BuffTemplateID = (buff.Data.TemplateID);
  1444. bf.SenderID = buff.SenderID;
  1445. bf.IsEquip = buff.IsEquip;
  1446. bf.TotalTime = buff.Data.LifeTimeMS;
  1447. bf.PassTime = (buff.PassTimeMS);
  1448. bf.OverlayLevel = buff.OverlayLevel;
  1449. ret.Add(bf);
  1450. }
  1451. return false;
  1452. });
  1453. return ret.ToArray();
  1454. }
  1455. public bool IshasControlBuff(Predicate<BuffTemplate> cb)
  1456. {
  1457. bool hasControlBuff = false;
  1458. mBuffs.ForEachReadTrueReturn((buff) =>
  1459. {
  1460. if (cb(buff.Data))
  1461. {
  1462. hasControlBuff = true;
  1463. return true;
  1464. }
  1465. return false;
  1466. });
  1467. return hasControlBuff;
  1468. }
  1469. public void GetAllBuffStatus(List<BuffState> ret)
  1470. {
  1471. mBuffs.ForEachRead((bf) =>
  1472. {
  1473. ret.Add(bf);
  1474. return false;
  1475. });
  1476. }
  1477. private class BuffMap
  1478. {
  1479. class BuffList : IEnumerable<InstanceUnit.BuffState>
  1480. {
  1481. readonly public BuffTemplate bufft;
  1482. private HashMap<uint, InstanceUnit.BuffState> list;
  1483. private InstanceUnit.BuffState last;
  1484. public BuffList(BuffTemplate bufft)
  1485. {
  1486. this.bufft = bufft;
  1487. this.list = new HashMap<uint, BuffState>(1);
  1488. }
  1489. public void Add(InstanceUnit.BuffState bs)
  1490. {
  1491. if (bs.Data.IsDuplicating)
  1492. {
  1493. list.Add(bs.SenderID, bs);
  1494. }
  1495. else
  1496. {
  1497. list.Add(0, bs);
  1498. }
  1499. last = bs;
  1500. }
  1501. public InstanceUnit.BuffState Remove(uint unit_id)
  1502. {
  1503. if (bufft.IsDuplicating)
  1504. {
  1505. InstanceUnit.BuffState bs = list.RemoveByKey(unit_id);
  1506. if (bs != null && bs == last)
  1507. {
  1508. if (list.Count > 0)
  1509. {
  1510. foreach (InstanceUnit.BuffState bf in list.Values)
  1511. {
  1512. last = bf;
  1513. break;
  1514. }
  1515. }
  1516. else
  1517. {
  1518. last = null;
  1519. }
  1520. }
  1521. return bs;
  1522. }
  1523. else
  1524. {
  1525. last = null;
  1526. return list.RemoveByKey(0);
  1527. }
  1528. }
  1529. public void Clear(List<InstanceUnit.BuffState> cleared)
  1530. {
  1531. last = null;
  1532. cleared.AddRange(list.Values);
  1533. list.Clear();
  1534. }
  1535. public InstanceUnit.BuffState Get(uint unit_id)
  1536. {
  1537. return list.Get(unit_id);
  1538. }
  1539. public int Count { get { return list.Count; } }
  1540. public InstanceUnit.BuffState Last { get { return last; } }
  1541. IEnumerator<BuffState> IEnumerable<BuffState>.GetEnumerator()
  1542. {
  1543. return list.Values.GetEnumerator();
  1544. }
  1545. System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
  1546. {
  1547. return list.Values.GetEnumerator();
  1548. }
  1549. }
  1550. private HashMap<int, BuffList> mObjects = new HashMap<int, BuffList>();
  1551. private List<BuffState> mObjectsList = new List<BuffState>();
  1552. private bool dirty = true;
  1553. public int Count { get { return mObjects.Count; } }
  1554. //-----------------------------------------------------------------------
  1555. // read
  1556. //-----------------------------------------------------------------------
  1557. public InstanceUnit.BuffState GetObject(int id)
  1558. {
  1559. BuffList list;
  1560. if (mObjects.TryGetValue(id, out list))
  1561. {
  1562. return list.Last;
  1563. }
  1564. return null;
  1565. }
  1566. public void GetObjects(int id, List<InstanceUnit.BuffState> ret)
  1567. {
  1568. BuffList list;
  1569. if (mObjects.TryGetValue(id, out list))
  1570. {
  1571. ret.AddRange(list);
  1572. }
  1573. }
  1574. public InstanceUnit.BuffState GetObject(int buff_id, uint unit_id)
  1575. {
  1576. BuffList list;
  1577. if (mObjects.TryGetValue(buff_id, out list))
  1578. {
  1579. return list.Get(unit_id);
  1580. }
  1581. return null;
  1582. }
  1583. //-----------------------------------------------------------------------
  1584. // write
  1585. //-----------------------------------------------------------------------
  1586. public bool RemoveObject(InstanceUnit.BuffState bs)
  1587. {
  1588. BuffList list;
  1589. if (mObjects.TryGetValue(bs.ID, out list))
  1590. {
  1591. dirty = true;
  1592. return list.Remove(bs.SenderID) != null;
  1593. }
  1594. return false;
  1595. }
  1596. public InstanceUnit.BuffState RemoveObject(int buffID, uint unit_id)
  1597. {
  1598. BuffList list;
  1599. if (mObjects.TryGetValue(buffID, out list))
  1600. {
  1601. dirty = true;
  1602. return list.Remove(unit_id);
  1603. }
  1604. return null;
  1605. }
  1606. public void RemoveObjects(int buffID, List<InstanceUnit.BuffState> removed)
  1607. {
  1608. BuffList list;
  1609. if (mObjects.TryGetValue(buffID, out list))
  1610. {
  1611. dirty = true;
  1612. list.Clear(removed);
  1613. }
  1614. }
  1615. public void AddObject(InstanceUnit.BuffState obj)
  1616. {
  1617. BuffList list = mObjects.Get(obj.ID);
  1618. if (list == null)
  1619. {
  1620. list = new BuffList(obj.Data);
  1621. mObjects.Add(obj.ID, list);
  1622. }
  1623. list.Add(obj);
  1624. dirty = true;
  1625. }
  1626. private IList<BuffState> Refresh()
  1627. {
  1628. if (dirty)
  1629. {
  1630. dirty = false;
  1631. mObjectsList.Clear();
  1632. foreach (BuffList list in mObjects.Values)
  1633. {
  1634. foreach (InstanceUnit.BuffState buff in list)
  1635. {
  1636. mObjectsList.Add(buff);
  1637. }
  1638. }
  1639. }
  1640. return mObjectsList;
  1641. }
  1642. private void ToList(List<BuffState> ret)
  1643. {
  1644. foreach (BuffList list in mObjects.Values)
  1645. {
  1646. foreach (InstanceUnit.BuffState buff in list)
  1647. {
  1648. ret.Add(buff);
  1649. }
  1650. }
  1651. }
  1652. //-----------------------------------------------------------------------
  1653. //
  1654. //-----------------------------------------------------------------------
  1655. /// <summary>
  1656. ///
  1657. /// </summary>
  1658. /// <param name="action">返回true终止迭代!</param>
  1659. public void ForEachRead(Predicate<InstanceUnit.BuffState> action)
  1660. {
  1661. foreach (BuffList list in mObjects.Values)
  1662. {
  1663. foreach (InstanceUnit.BuffState buff in list)
  1664. {
  1665. if (action(buff))
  1666. {
  1667. return;
  1668. }
  1669. }
  1670. }
  1671. }
  1672. public bool ForEachReadTrueReturn(Predicate<InstanceUnit.BuffState> action)
  1673. {
  1674. foreach (BuffList list in mObjects.Values)
  1675. {
  1676. foreach (InstanceUnit.BuffState buff in list)
  1677. {
  1678. if (action(buff))
  1679. {
  1680. return true;
  1681. }
  1682. }
  1683. }
  1684. return false;
  1685. }
  1686. /// <summary>
  1687. ///
  1688. /// </summary>
  1689. /// <param name="action">返回true终止迭代!</param>
  1690. public void ForEachWrite(Predicate<InstanceUnit.BuffState> action)
  1691. {
  1692. using (var list = ListObjectPool<BuffState>.AllocAutoRelease())
  1693. {
  1694. ToList(list);
  1695. for (int i = 0; i < list.Count; i++)
  1696. {
  1697. if (action(list[i]))
  1698. {
  1699. return;
  1700. }
  1701. }
  1702. }
  1703. }
  1704. public void Update(InstanceZone parent)
  1705. {
  1706. IList<BuffState> list = Refresh();
  1707. for (int i = 0; i < list.Count; i++)
  1708. {
  1709. BuffState bs = list[i];
  1710. bs.OnUpdate(parent);
  1711. if (bs.IsEnd() && !bs.MarkRemove)
  1712. {
  1713. this.RemoveObject(bs);
  1714. bs.OnEnd(BuffState.EndResult_ByTimeUp);
  1715. }
  1716. }
  1717. }
  1718. }
  1719. public class BuffState
  1720. {
  1721. public const string EndResult_ByTimeUp = "time_up";
  1722. public const string EndResult_ByReplaced = "replaced";
  1723. public const string EndResult_ByClientRemoved = "client_removed";
  1724. public const string EndResult_ByCatgoryExclusive = "catgory_exclusive";
  1725. public const string EndResult_ByCode = "code";
  1726. public const string ENDResult_HuDunBreak = "HuDunBreak";
  1727. readonly private BuffTemplate mData;
  1728. readonly private InstanceUnit mOwner;
  1729. readonly private InstanceUnit sender;
  1730. private TimeExpire<int> st_stun;
  1731. private TimeExpire<int> st_invisible;
  1732. private TimeExpire<int> st_invincible;
  1733. private TimeExpire<int> st_silent;
  1734. private TimeExpire<int> st_canmove;
  1735. private TimeExpire<int> st_ignoreControl;
  1736. private int mBuffExtData; //buff扩展字段
  1737. private TimeInterval<BuffTemplate.KeyFrame> interval;
  1738. private PopupKeyFrames<BuffTemplate.KeyFrame> keyframes;
  1739. private int total_time;
  1740. private int passtime;
  1741. private byte overlay_level;
  1742. public BuffTemplate Data { get { return mData; } }
  1743. public int ID { get { return mData.ID; } }
  1744. public byte OverlayLevel { get { return overlay_level; }}
  1745. public int PassTimeMS { get { return passtime; } }
  1746. public int LifeTimeMS { get { return total_time; } }
  1747. public bool IsEquip { get; private set; }
  1748. public uint SenderID { get { return sender.ID; } }
  1749. public int BuffExtData { get { return mBuffExtData; } set { mBuffExtData = value; } }
  1750. public InstanceZone Zone { get { return mOwner.Parent; } }
  1751. public InstanceUnit Owner { get { return mOwner; } }
  1752. public InstanceUnit Sender { get { return sender; } }
  1753. public object Tag { get; set; }
  1754. //释放时位置信息
  1755. private Vector2 mHitPos = new Vector2();
  1756. public bool MarkRemove { get; set; }
  1757. //set和get放在一起虽然爽,但是可读性真一般
  1758. public void SetLayerLevel(byte value)
  1759. {
  1760. this.overlay_level = value;
  1761. }
  1762. internal BuffState(BuffTemplate data, InstanceUnit unit, InstanceUnit sender, byte overlay_level, bool forever, bool isControlBuf)
  1763. {
  1764. this.mData = data;
  1765. this.mOwner = unit;
  1766. this.sender = sender;
  1767. this.IsEquip = forever;
  1768. this.overlay_level = overlay_level;
  1769. this.passtime = 0;
  1770. this.MarkRemove = false;
  1771. this.interval = new TimeInterval<BuffTemplate.KeyFrame>(data.HitIntervalMS);
  1772. this.interval.FirstTimeEnable = data.FirstTimeEnable;
  1773. this.interval.Tag = data.HitKeyFrame;
  1774. this.keyframes = new PopupKeyFrames<BuffTemplate.KeyFrame>();
  1775. this.keyframes.AddRange(data.KeyFrames);
  1776. this.total_time = data.LifeTimeMS;
  1777. //控制增幅
  1778. if (sender.__mControledTimeAdd != 0 && (mData.IsSilent || mData.MakeStun || isControlBuf))
  1779. {
  1780. this.total_time = (int)(Math.Max(0.0f, 1.0f + unit.__mControledTimeAdd * 0.0001f) * this.total_time);
  1781. }
  1782. //韧性,控制减
  1783. if (unit.ControledTimeReduce != 0 && (mData.IsSilent || mData.MakeStun || isControlBuf))
  1784. {
  1785. this.total_time = (int)(Math.Max(0.0f, 1.0f - unit.ControledTimeReduce * 0.0001f) * this.total_time);
  1786. }
  1787. }
  1788. internal void OnStart()
  1789. {
  1790. mHitPos.SetX(mOwner.X);
  1791. mHitPos.SetY(mOwner.Y);
  1792. mOwner.mFormula.OnBuffBegin(mOwner, this, sender);
  1793. if (mData.MakeStun)
  1794. {
  1795. this.st_stun = mOwner.SetStunTimeMS(total_time);
  1796. }
  1797. if (mData.IsInvisible)
  1798. {
  1799. this.st_invisible = mOwner.SetInvisibleTimeMS(total_time);
  1800. }
  1801. if (mData.IsInvincible)
  1802. {
  1803. this.st_invincible = mOwner.SetInvincibleTimeMS(total_time);
  1804. }
  1805. if (mData.IsSilent)
  1806. {
  1807. this.st_silent = mOwner.SetSilentTimeMS(total_time);
  1808. }
  1809. if(!mData.IsCanMove)
  1810. {
  1811. this.st_canmove = mOwner.SetCannotMoveTimeMS(total_time);
  1812. }
  1813. // 免疫控制
  1814. if(mData.IgnoreControl)
  1815. {
  1816. this.st_ignoreControl = mOwner.SetIgnoreControlTimeMS(total_time);
  1817. }
  1818. if (mData.UnitTrigger != null)
  1819. {
  1820. mOwner.addTrigger(mData.UnitTrigger.TriggerTemplateID);
  1821. }
  1822. if (mData.UnitChangeSkills)
  1823. {
  1824. if (mData.UnitKeepSkillsID != null && mData.UnitKeepSkillsID.Count > 0)
  1825. {
  1826. using (var keeps = ListObjectPool<LaunchSkill>.AllocAutoRelease())
  1827. {
  1828. mOwner.getKeepSkills(mData.UnitKeepSkillsID, keeps);
  1829. keeps.AddRange(mData.UnitSkills);
  1830. mOwner.InitSkills(mData.UnitBaseSkillID, keeps.ToArray());
  1831. }
  1832. }
  1833. else
  1834. {
  1835. mOwner.InitSkills(mData.UnitBaseSkillID, mData.UnitSkills.ToArray());
  1836. }
  1837. }
  1838. mOwner.doGotBuff(this);
  1839. if (mData.ClientVisible)
  1840. {
  1841. //Console.WriteLine("获得剑影 - " + this.BuffExtData);
  1842. mOwner.queueEvent(new UnitLaunchBuffEvent(mOwner.ID, this.ID, this.SenderID,
  1843. this.LifeTimeMS, this.IsEquip, overlay_level, this.BuffExtData));
  1844. }
  1845. }
  1846. internal void OnEnd(string result, bool replace = false)
  1847. {
  1848. this.passtime = total_time;
  1849. this.MarkRemove = true;
  1850. mOwner.doLostBuff(this);
  1851. if (this.st_stun != null)
  1852. {
  1853. mOwner.mStunTimeMS.Remove(st_stun);
  1854. }
  1855. if (this.st_invisible != null)
  1856. {
  1857. mOwner.mInvisibleTimeMS.Remove(st_invisible);
  1858. }
  1859. if (this.st_invincible != null)
  1860. {
  1861. mOwner.mInvisibleTimeMS.Remove(st_invincible);
  1862. }
  1863. if (this.st_silent != null)
  1864. {
  1865. mOwner.mSilentTimeMS.Remove(st_silent);
  1866. }
  1867. if(this.st_canmove != null)
  1868. {
  1869. mOwner.mCannotMoveTimeMS.Remove(st_canmove);
  1870. }
  1871. if(this.st_ignoreControl != null)
  1872. {
  1873. mOwner.mIgnoreControl.Remove(st_ignoreControl);
  1874. }
  1875. if (mData.UnitTrigger != null)
  1876. {
  1877. mOwner.removeTrigger(mData.UnitTrigger.TriggerTemplateID);
  1878. }
  1879. if (mData.UnitChangeSkills)
  1880. {
  1881. mOwner.ResetSkills();
  1882. }
  1883. if (mData.EndKeyFrame != null)
  1884. {
  1885. doKeyFrame(mData.EndKeyFrame);
  1886. }
  1887. mOwner.mFormula.OnBuffEnd(mOwner, this, result, replace);
  1888. if (this.Data.ClientVisible)
  1889. {
  1890. if (!replace)
  1891. {
  1892. mOwner.queueEvent(new UnitStopBuffEvent(mOwner.ID, this.ID, SenderID));
  1893. }
  1894. }
  1895. }
  1896. internal void OnUpdate(InstanceZone zone)
  1897. {
  1898. using (var kfs = ListObjectPool<BuffTemplate.KeyFrame>.AllocAutoRelease())
  1899. {
  1900. if (keyframes.PopKeyFrames(passtime, kfs) > 0)
  1901. {
  1902. foreach (BuffTemplate.KeyFrame kf in kfs)
  1903. {
  1904. doKeyFrame(kf);
  1905. }
  1906. }
  1907. }
  1908. if (interval.Update(zone.UpdateIntervalMS))
  1909. {
  1910. doKeyFrame(mData.HitKeyFrame);
  1911. mOwner.mFormula.OnBuffUpdate(mOwner, this, interval.TotalTickCount);
  1912. }
  1913. passtime += zone.UpdateIntervalMS;
  1914. }
  1915. private void doKeyFrame(BuffTemplate.KeyFrame kf)
  1916. {
  1917. if (kf != null)
  1918. {
  1919. if (kf.Attack != null)
  1920. {
  1921. mOwner.doHitAttack(sender, new AttackSource(this, kf.Attack));
  1922. }
  1923. if (kf.Spell != null)
  1924. {
  1925. if(kf.Spell.SenderUnit == LaunchSpllSenderUnit.AttackerUnit)
  1926. {
  1927. this.sender.Parent.unitLaunchSpell(XmdsSkillType.none, sender, kf.Spell,
  1928. this.sender.X, this.sender.Y, mOwner.ID, null);
  1929. }
  1930. else
  1931. {
  1932. mOwner.Parent.unitLaunchSpell(XmdsSkillType.none, sender, kf.Spell,
  1933. mOwner.X, mOwner.Y, mOwner.ID, null);
  1934. }
  1935. }
  1936. if (kf.Item != null)
  1937. {
  1938. mOwner.UseItem(kf.Item.ItemTemplateID);
  1939. }
  1940. if(kf.addItem != null)
  1941. {
  1942. this.BuffAddItem(kf.addItem);
  1943. }
  1944. }
  1945. }
  1946. /** buff生成道具 */
  1947. private void BuffAddItem(BuffAddItem addItem)
  1948. {
  1949. var itemInfo = Zone.Templates.getItem(addItem.ItemTemplateID);
  1950. if(itemInfo == null)
  1951. {
  1952. log.Warn("BuffAddItem找不到指定道具: " + addItem.ItemTemplateID);
  1953. return;
  1954. }
  1955. if(addItem.posType == CommonAI.Zone.BuffAddItem.PosType.HitBuffPos)
  1956. {
  1957. this.mOwner.Parent.AddItem(itemInfo, null, this.mHitPos.X, this.mHitPos.Y, 0, this.mOwner.Force, null, this.Owner);
  1958. }
  1959. else if(addItem.posType == CommonAI.Zone.BuffAddItem.PosType.BindUnitPos)
  1960. {
  1961. this.mOwner.Parent.AddItem(itemInfo, null, this.Owner.X, this.Owner.Y, 0, this.mOwner.Force, null, this.Owner);
  1962. }
  1963. else if(addItem.posType == CommonAI.Zone.BuffAddItem.PosType.PointPos)
  1964. {
  1965. this.mOwner.Parent.AddItem(itemInfo, null, addItem.pointX, addItem.pointY, 0, this.mOwner.Force, null, this.Owner);
  1966. }
  1967. }
  1968. public bool IsEnd()
  1969. {
  1970. if (Data.IsRemoveOnSenderRemoved)
  1971. {
  1972. if (!sender.Enable || sender.IsDead())
  1973. {
  1974. return true;
  1975. }
  1976. }
  1977. if(Data.IsRemoveOnDead && this.mOwner.IsDead())
  1978. {
  1979. return true;
  1980. }
  1981. if (IsEquip) return false;
  1982. return (passtime >= total_time);
  1983. }
  1984. public void AddLifeTimeMS(int timeMS)
  1985. {
  1986. this.total_time += timeMS;
  1987. }
  1988. //public void RefrushToMaxOverlayer()
  1989. //{
  1990. // this.overlay_level = this.mData.MaxOverlay;
  1991. //}
  1992. }
  1993. private BuffMap mBuffs = new BuffMap();
  1994. /// <summary>
  1995. /// 是否存在技能变身BUFF
  1996. /// </summary>
  1997. public bool IsBuffChangeSkills
  1998. {
  1999. get
  2000. {
  2001. return GetChangeSkillBuff() != null;
  2002. }
  2003. }
  2004. /// <summary>
  2005. /// 获得技能变身BUFF
  2006. /// </summary>
  2007. public BuffState GetChangeSkillBuff()
  2008. {
  2009. BuffState ret = null;
  2010. mBuffs.ForEachRead((bs) =>
  2011. {
  2012. if (bs.Data.UnitChangeSkills && !bs.IsEnd())
  2013. {
  2014. ret = bs;
  2015. return true;
  2016. }
  2017. return false;
  2018. });
  2019. return ret;
  2020. }
  2021. public BuffState GetBuffByID(int buffTemplateID)
  2022. {
  2023. return mBuffs.GetObject(buffTemplateID);
  2024. }
  2025. public BuffState GetBuffByIDAndSender(int buffTemplateID, uint senderUnitID)
  2026. {
  2027. return mBuffs.GetObject(buffTemplateID, senderUnitID);
  2028. }
  2029. public BuffState AddBuff(int buffID, int pointMaxOverLayer = 0, bool forever = false, bool bMaxOverlayer = false, bool bMaxReset = false)
  2030. {
  2031. BuffTemplate buff = Templates.getBuff(buffID);
  2032. if (buff != null)
  2033. {
  2034. return this.AddBuff(buff, this, pointMaxOverLayer, forever, bMaxOverlayer, 0, false, bMaxReset);
  2035. }
  2036. return null;
  2037. }
  2038. public BuffState AddBuff(int buffID, InstanceUnit sender, int pointMaxOverLayer = 0, bool forever = false,
  2039. bool bMaxOverlayer = false, bool bMaxReset = false, int buffExt = 0, int addLyers = 0)
  2040. {
  2041. BuffTemplate buff = Templates.getBuff(buffID);
  2042. if (buff != null)
  2043. {
  2044. return this.AddBuff(buff, sender, pointMaxOverLayer, forever, bMaxOverlayer, buffExt, false, bMaxReset, addLyers);
  2045. }
  2046. return null;
  2047. }
  2048. /** 编辑器直接编写增加buff接口 */
  2049. public BuffState AddBuff(LaunchBuff buff, InstanceUnit sender, bool forever = false)
  2050. {
  2051. //如果绑定了事件id,就表示去触发事件
  2052. if (buff.BuffID == 0 && buff.BindEventID > 0)
  2053. {
  2054. BattleFunction.GetInstance().TriggrBattleFunction(buff.BindEventID, this.Virtual, sender == null ? null : sender.Virtual);
  2055. return null;
  2056. }
  2057. return this.AddBuff(buff.BuffID, sender, 0, forever);
  2058. }
  2059. /// <summary>
  2060. /// 增加Buff
  2061. /// </summary>
  2062. /// <param name="forever">如果为True,则表示Buff不受时间CD控制</param>
  2063. public virtual BuffState AddBuff(BuffTemplate buff, InstanceUnit sender, int pointMaxOverLayer = 0, bool forever = false,
  2064. bool bMaxOverlayer = false, int buffExt = 0, bool isControlBuf = false, bool maxReset = false, int addLayers = 0)
  2065. {
  2066. object tag = null;
  2067. if (mFormula.TryAddBuff(this, sender, ref buff, out tag))
  2068. {
  2069. if (!forever && buff.LifeTimeMS <= 0)
  2070. {
  2071. return null;
  2072. }
  2073. //凌驾于一切之上的免控
  2074. if(isControlBuf && this.IsIgnoreControl)
  2075. {
  2076. return null;
  2077. }
  2078. if (!removeBuffByCatgory(buff.ID, buff.ExclusiveCatgory, buff.ExclusivePriority))
  2079. {
  2080. return null;
  2081. }
  2082. int finalMaxOverLay = (pointMaxOverLayer <= 0) ? buff.MaxOverlay : pointMaxOverLayer;
  2083. int overlay_level = bMaxOverlayer ? (finalMaxOverLay - 1) : 0;
  2084. BuffState bs = mBuffs.RemoveObject(buff.ID, sender.ID);
  2085. if (bs != null)
  2086. {
  2087. if (buff.IsOverlay)
  2088. {
  2089. int finalAddLayer = Math.Max(1, addLayers);
  2090. if(bs.OverlayLevel + finalAddLayer >= finalMaxOverLay && maxReset)
  2091. {
  2092. overlay_level = 0;
  2093. }
  2094. else
  2095. {
  2096. overlay_level = bMaxOverlayer ? (finalMaxOverLay - 1) : (Math.Min(bs.OverlayLevel + finalAddLayer, finalMaxOverLay - 1));
  2097. }
  2098. }
  2099. bs.OnEnd(BuffState.EndResult_ByReplaced, true);
  2100. }
  2101. else if(addLayers > 0 && buff.MaxOverlay > 0)
  2102. {
  2103. overlay_level = Math.Max(0, Math.Min(buff.MaxOverlay - 1, addLayers-1));
  2104. }
  2105. BuffState newbs = new BuffState(buff, this, sender, (byte)overlay_level, forever, isControlBuf);
  2106. newbs.Tag = tag;
  2107. newbs.BuffExtData = (bs == null) ? buffExt : bs.BuffExtData;
  2108. mBuffs.AddObject(newbs);
  2109. newbs.OnStart();
  2110. //System.Console.WriteLine("AddBuf - " + newbs.Data.ID + ", " + newbs.OverlayLevel);
  2111. mFormula.SendAddBuffEvent(this, sender, buff);
  2112. return newbs;
  2113. }
  2114. return null;
  2115. }
  2116. /// <summary>
  2117. /// 移除互斥技能,根据优先级
  2118. /// </summary>
  2119. /// <param name="buffID"></param>
  2120. /// <param name="catgory"></param>
  2121. /// <param name="priority"></param>
  2122. private bool removeBuffByCatgory(int buffID, int catgory, int priority)
  2123. {
  2124. if (catgory != 0)
  2125. {
  2126. // 检测当时有更高优先级 //
  2127. {
  2128. BuffState greater_buff = null;
  2129. mBuffs.ForEachRead((bs) =>
  2130. {
  2131. if ((bs.ID != buffID) && (bs.Data.ExclusiveCatgory == catgory) && (bs.Data.ExclusivePriority > priority))
  2132. {
  2133. greater_buff = bs;
  2134. return true;
  2135. }
  2136. return false;
  2137. });
  2138. if (greater_buff != null)
  2139. {
  2140. return false;
  2141. }
  2142. }
  2143. // 移除低优先级 //
  2144. mBuffs.ForEachWrite((bs) =>
  2145. {
  2146. if ((bs.ID != buffID) && (bs.Data.ExclusiveCatgory == catgory))
  2147. {
  2148. mBuffs.RemoveObject(bs);
  2149. bs.OnEnd(BuffState.EndResult_ByCatgoryExclusive);
  2150. }
  2151. return false;
  2152. });
  2153. }
  2154. return true;
  2155. }
  2156. public void removeBuff(int buffID, string result = BuffState.EndResult_ByCode)
  2157. {
  2158. using (var bss = ListObjectPool<BuffState>.AllocAutoRelease())
  2159. {
  2160. mBuffs.RemoveObjects(buffID, bss);
  2161. if (bss.Count > 0)
  2162. {
  2163. foreach (BuffState bs in bss)
  2164. {
  2165. bs.OnEnd(result);
  2166. }
  2167. }
  2168. }
  2169. }
  2170. public void removeBuffBySender(int buffID, uint senderUnitID, string result = BuffState.EndResult_ByCode)
  2171. {
  2172. BuffState bs = mBuffs.RemoveObject(buffID, senderUnitID);
  2173. if (bs != null)
  2174. {
  2175. bs.OnEnd(result);
  2176. }
  2177. }
  2178. public void clearBuffs(string result = BuffState.EndResult_ByCode)
  2179. {
  2180. mBuffs.ForEachWrite((bs) =>
  2181. {
  2182. if (!bs.Data.IsPassive && !bs.IsEquip)
  2183. {
  2184. mBuffs.RemoveObject(bs);
  2185. bs.OnEnd(result);
  2186. }
  2187. return false;
  2188. });
  2189. }
  2190. private void updateBuffs()
  2191. {
  2192. mBuffs.Update(Parent);
  2193. }
  2194. #endregion
  2195. //---------------------------------------------------------------------------------------------------------------
  2196. #region _被动系触发类_
  2197. private readonly List<TriggerState> mTriggerStatus = new List<TriggerState>();
  2198. private readonly UnitTriggerHelper mTriggerHelper;
  2199. /// <summary>
  2200. /// 保存被动状态
  2201. /// </summary>
  2202. public class TriggerState
  2203. {
  2204. readonly internal UnitTriggerTemplate mData;
  2205. readonly internal InstanceUnit mOwner;
  2206. public bool IsDamageTrigger { get; private set; }
  2207. public bool IsAttackTrigger { get; private set; }
  2208. public UnitTriggerTemplate Data { get { return mData; } }
  2209. public object Tag { get; set; }
  2210. private long launch_time;
  2211. internal TriggerState(UnitTriggerTemplate data, InstanceUnit unit)
  2212. {
  2213. this.mData = data;
  2214. this.mOwner = unit;
  2215. this.IsDamageTrigger = false;
  2216. this.IsAttackTrigger = false;
  2217. this.launch_time = -mData.CoolDownTimeMS;
  2218. foreach (BaseTriggerEvent evt in data.Triggers)
  2219. {
  2220. UnitTriggerEventTypeAttribute ut = PropertyUtil.GetAttribute<UnitTriggerEventTypeAttribute>(evt.GetType());
  2221. foreach (Type dtype in ut.DelegateTypes)
  2222. {
  2223. if (dtype == typeof(DamageHandler))
  2224. {
  2225. this.IsDamageTrigger = true;
  2226. }
  2227. else if (dtype == typeof(AttackHandler))
  2228. {
  2229. this.IsAttackTrigger = true;
  2230. }
  2231. }
  2232. }
  2233. }
  2234. internal void Start(InstanceUnit target)
  2235. {
  2236. if (IsActive)
  2237. {
  2238. this.launch_time = mOwner.Parent.PassTimeMS;
  2239. uint targetID = 0;
  2240. Vector2 targetPos = new Vector2(mOwner.X, mOwner.Y);
  2241. if (target != null)
  2242. {
  2243. targetPos.SetX(target.X);
  2244. targetPos.SetY(target.Y);
  2245. targetID = target.ID;
  2246. }
  2247. // 如果关键帧绑定特效
  2248. if (mData.DoEffect != null)
  2249. {
  2250. mOwner.queueEvent(new UnitEffectEvent(mOwner.ID, mData.DoEffect));
  2251. }
  2252. // 如果关键帧绑定释放法术
  2253. if (mData.DoSpell != null)
  2254. {
  2255. mOwner.Parent.unitLaunchSpell(XmdsSkillType.none, mOwner, mData.DoSpell, mOwner.X, mOwner.Y, 0, targetPos);
  2256. }
  2257. // 如果关键帧绑定自己释放BUFF
  2258. if (mData.DoBuff != null)
  2259. {
  2260. mOwner.AddBuff(mData.DoBuff, mOwner);
  2261. }
  2262. // 如果关键帧绑定单位位移
  2263. if (mData.DoSkill != null)
  2264. {
  2265. mOwner.launchSkill(mData.DoSkill.SkillID, new InstanceUnit.LaunchSkillParam(targetID, targetPos));
  2266. }
  2267. //召唤
  2268. if (mData.DoSummon != null)
  2269. {
  2270. mOwner.Parent.unitSummonUnit(mOwner, mData.DoSummon);
  2271. }
  2272. mOwner.mFormula.OnTriggerStart(mOwner, this, target);
  2273. }
  2274. }
  2275. public bool Test(AttackSource source)
  2276. {
  2277. if (IsActive)
  2278. {
  2279. foreach (BaseTriggerEvent evt in mData.Triggers)
  2280. {
  2281. if (!mOwner.mFormula.TryLaunchTrigger(mOwner, mData, evt, source) || !evt.Test(mOwner, source))
  2282. {
  2283. return false;
  2284. }
  2285. }
  2286. return true;
  2287. }
  2288. return false;
  2289. }
  2290. /// <summary>
  2291. /// 是否处于冷却状态
  2292. /// </summary>
  2293. public bool IsActive
  2294. {
  2295. get { return (launch_time + mData.CoolDownTimeMS) < mOwner.Parent.PassTimeMS; }
  2296. }
  2297. }
  2298. private void updateTriggers(bool slowRefresh)
  2299. {
  2300. this.mFormula.OnUpdateTriggerSkill(this, Parent.UpdateIntervalMS, slowRefresh);
  2301. }
  2302. public void addTriggers(ICollection<LaunchTrigger> triggers)
  2303. {
  2304. foreach (LaunchTrigger launch in triggers)
  2305. {
  2306. addTrigger(launch.TriggerTemplateID);
  2307. }
  2308. }
  2309. public bool containsTrigger(int tgID)
  2310. {
  2311. for (int i = mTriggerStatus.Count - 1; i >= 0; --i)
  2312. {
  2313. if (mTriggerStatus[i].mData.ID == tgID)
  2314. {
  2315. return true;
  2316. }
  2317. }
  2318. return false;
  2319. }
  2320. public TriggerState findTrigger(int tgID)
  2321. {
  2322. for (int i = mTriggerStatus.Count - 1; i >= 0; --i)
  2323. {
  2324. if (mTriggerStatus[i].mData.ID == tgID)
  2325. {
  2326. return mTriggerStatus[i];
  2327. }
  2328. }
  2329. return null;
  2330. }
  2331. public bool addTrigger(UnitTriggerTemplate trigger)
  2332. {
  2333. if (!containsTrigger(trigger.ID))
  2334. {
  2335. TriggerState ts = new TriggerState(trigger, this);
  2336. mTriggerStatus.Add(ts);
  2337. }
  2338. return false;
  2339. }
  2340. public bool addTrigger(int triggerID)
  2341. {
  2342. if (!containsTrigger(triggerID))
  2343. {
  2344. UnitTriggerTemplate tg = Templates.getUnitTrigger(triggerID);
  2345. if (tg != null)
  2346. {
  2347. TriggerState ts = new TriggerState(tg, this);
  2348. mTriggerStatus.Add(ts);
  2349. }
  2350. }
  2351. return false;
  2352. }
  2353. public void removeTrigger(int tgID)
  2354. {
  2355. TriggerState bs = findTrigger(tgID);
  2356. if (bs != null)
  2357. {
  2358. mTriggerStatus.Remove(bs);
  2359. }
  2360. }
  2361. public bool startTrigger(int tgID, InstanceUnit target)
  2362. {
  2363. TriggerState bs = findTrigger(tgID);
  2364. if (bs != null && bs.IsActive)
  2365. {
  2366. bs.Start(target);
  2367. return true;
  2368. }
  2369. return false;
  2370. }
  2371. public void clearTriggers()
  2372. {
  2373. mTriggerStatus.Clear();
  2374. }
  2375. /// <summary>
  2376. /// 如果被攻击,尝试启动单位触发器
  2377. /// </summary>
  2378. /// <param name="attacker"></param>
  2379. /// <param name="source"></param>
  2380. public void TryStartDamageTriggers(InstanceUnit attacker, AttackSource source)
  2381. {
  2382. foreach (TriggerState ts in this.mTriggerStatus)
  2383. {
  2384. if (ts.IsDamageTrigger && ts.Test(source))
  2385. {
  2386. ts.Start(attacker);
  2387. }
  2388. }
  2389. }
  2390. /// <summary>
  2391. /// 如果攻击别人,尝试启动触发器
  2392. /// </summary>
  2393. /// <param name="target"></param>
  2394. /// <param name="source"></param>
  2395. public void TryStartAttackTriggers(InstanceUnit target, AttackSource source)
  2396. {
  2397. foreach (TriggerState ts in this.mTriggerStatus)
  2398. {
  2399. if (ts.IsAttackTrigger && ts.Test(source))
  2400. {
  2401. ts.Start(target);
  2402. }
  2403. }
  2404. }
  2405. public class UnitTriggerHelper
  2406. {
  2407. private readonly InstanceUnit unit;
  2408. public UnitTriggerHelper(InstanceUnit unit)
  2409. {
  2410. this.unit = unit;
  2411. unit.OnDamage += this.onUnitDamage;
  2412. unit.OnAttack += this.onUnitAttack;
  2413. }
  2414. public void onUnitDamage(InstanceUnit obj, InstanceUnit attacker, int hp, AttackSource source)
  2415. {
  2416. unit.TryStartDamageTriggers(attacker, source);
  2417. }
  2418. public void onUnitAttack(InstanceUnit obj, InstanceUnit target, int hp, AttackSource source)
  2419. {
  2420. unit.TryStartAttackTriggers(target, source);
  2421. }
  2422. }
  2423. #endregion
  2424. //---------------------------------------------------------------------------------------------------------------
  2425. #region _背包和道具_
  2426. public ClientStruct.UnitItemStatus[] GetCurrentItemStatus()
  2427. {
  2428. ClientStruct.UnitItemStatus[] ret = new ClientStruct.UnitItemStatus[mInventorySlots.Count];
  2429. int i = 0;
  2430. foreach (InventorySlot item in mInventorySlots)
  2431. {
  2432. ret[i].ItemTemplateID = item.ItemTemplateID;
  2433. ret[i].Count = item.Count;
  2434. i++;
  2435. }
  2436. return ret;
  2437. }
  2438. public class InventorySlot
  2439. {
  2440. readonly public int Index;
  2441. readonly public InstanceUnit Owner;
  2442. public InventorySlot(int index, InstanceUnit owner)
  2443. {
  2444. this.Index = index;
  2445. this.Owner = owner;
  2446. }
  2447. public bool IsEmpty
  2448. {
  2449. get
  2450. {
  2451. return (Item == null);
  2452. }
  2453. }
  2454. public int ItemTemplateID
  2455. {
  2456. get
  2457. {
  2458. if (Item != null)
  2459. return Item.TemplateID;
  2460. return 0;
  2461. }
  2462. }
  2463. public ItemTemplate Item { get; private set; }
  2464. public int Count { get; private set; }
  2465. internal int AddItem(ItemTemplate item, int count)
  2466. {
  2467. if (item == null) return 0;
  2468. if (count <= 0) return 0;
  2469. if (this.IsEmpty)
  2470. {
  2471. // 背包为空 //
  2472. this.Item = item;
  2473. this.Count = Math.Min(this.Item.MaxStackCount, count);
  2474. this.Owner.doGotInventoryItem(this, item, Index, count);
  2475. return this.Count;
  2476. }
  2477. else if (item.TemplateID == this.ItemTemplateID)
  2478. {
  2479. int oldcount = this.Count;
  2480. // 道具类型一致, 堆叠 //
  2481. this.Count = Math.Min(this.Item.MaxStackCount, this.Count + count);
  2482. if (oldcount != this.Count)
  2483. {
  2484. this.Owner.doGotInventoryItem(this, item, Index, count);
  2485. return this.Count - oldcount;
  2486. }
  2487. return 0;
  2488. }
  2489. return 0;
  2490. }
  2491. internal int TryUse(int count)
  2492. {
  2493. if (IsEmpty) return 0;
  2494. if (!Item.IsInventoryUseable) return 0;
  2495. if (Owner.tryUseItem(Item, Owner))
  2496. {
  2497. return Math.Min(count, this.Count);
  2498. }
  2499. return 0;
  2500. }
  2501. internal int Use(int count)
  2502. {
  2503. if (IsEmpty) return 0;
  2504. if (!Item.IsInventoryUseable) return 0;
  2505. if (Owner.tryUseItem(Item, Owner))
  2506. {
  2507. int used = 0;
  2508. count = Math.Min(count, this.Count);
  2509. for (int i = 0; i < count; i++)
  2510. {
  2511. Owner.UseItem(Item);
  2512. this.Count--;
  2513. used++;
  2514. if (Count == 0)
  2515. {
  2516. break;
  2517. }
  2518. }
  2519. this.Owner.doLostInventoryItem(this, Item, Index, count);
  2520. if (Count == 0)
  2521. {
  2522. this.Item = null;
  2523. }
  2524. return used;
  2525. }
  2526. return 0;
  2527. }
  2528. internal int Drop(int count)
  2529. {
  2530. if (IsEmpty) return 0;
  2531. count = Math.Min(count, this.Count);
  2532. this.Count -= count;
  2533. if (this.Count <= 0)
  2534. {
  2535. this.Count = 0;
  2536. }
  2537. this.Owner.doLostInventoryItem(this, Item, Index, count);
  2538. if (this.Count == 0)
  2539. {
  2540. this.Item = null;
  2541. }
  2542. return count;
  2543. }
  2544. internal int Clean()
  2545. {
  2546. return Drop(this.Count);
  2547. }
  2548. }
  2549. private List<InventorySlot> mInventorySlots = new List<InventorySlot>();
  2550. private HashMap<int, TimeExpire<ItemTemplate>> mCoolDownItems = new HashMap<int, TimeExpire<ItemTemplate>>();
  2551. private List<TimeExpire<ItemTemplate>> mRemoved = new List<TimeExpire<ItemTemplate>>();
  2552. private void InitBagSlots()
  2553. {
  2554. for (int i = 0; i < mInfo.InventorySize; i++)
  2555. {
  2556. mInventorySlots.Add(new InventorySlot(i, this));
  2557. }
  2558. }
  2559. private bool tryUseItem(ItemTemplate item, InstanceUnit item_creater)
  2560. {
  2561. if (mFormula.TryUseItem(this, item, item_creater))
  2562. {
  2563. if (item.UseCoolDownTimeMS > 0)
  2564. {
  2565. if (IsItemCoolDown(item.ID))
  2566. {
  2567. return false;
  2568. }
  2569. return true;
  2570. }
  2571. return true;
  2572. }
  2573. return false;
  2574. }
  2575. private void beginUseItem(ItemTemplate item)
  2576. {
  2577. if (item.UseCoolDownTimeMS > 0)
  2578. {
  2579. mCoolDownItems.Put(item.ID, new TimeExpire<ItemTemplate>(item, item.UseCoolDownTimeMS));
  2580. }
  2581. }
  2582. private void updateItems()
  2583. {
  2584. int intervalMS = Parent.UpdateIntervalMS;
  2585. /*
  2586. using (var removed = ListObjectPool<TimeExpire<ItemTemplate>>.AllocAutoRelease())
  2587. {
  2588. foreach (TimeExpire<ItemTemplate> expire in mCoolDownItems.Values)
  2589. {
  2590. if (expire.Update(intervalMS))
  2591. {
  2592. removed.Add(expire);
  2593. }
  2594. }
  2595. if (removed.Count > 0)
  2596. {
  2597. foreach (TimeExpire<ItemTemplate> expire in removed)
  2598. {
  2599. if (expire.IsEnd)
  2600. {
  2601. mCoolDownItems.RemoveByKey(expire.Tag.ID);
  2602. }
  2603. }
  2604. }
  2605. }*/
  2606. if(mCoolDownItems.Count <= 0)
  2607. {
  2608. return;
  2609. }
  2610. //换一个写法
  2611. mRemoved.Clear();
  2612. foreach (TimeExpire<ItemTemplate> expire in mCoolDownItems.Values)
  2613. {
  2614. if (expire.Update(intervalMS))
  2615. {
  2616. mRemoved.Add(expire);
  2617. }
  2618. }
  2619. if (mRemoved.Count > 0)
  2620. {
  2621. foreach (TimeExpire<ItemTemplate> expire in mRemoved)
  2622. {
  2623. if (expire.IsEnd)
  2624. {
  2625. mCoolDownItems.RemoveByKey(expire.Tag.ID);
  2626. }
  2627. }
  2628. mRemoved.Clear();
  2629. }
  2630. }
  2631. protected virtual void clearItemSlots()
  2632. {
  2633. foreach (var slot in mInventorySlots)
  2634. {
  2635. slot.Clean();
  2636. }
  2637. mInventorySlots.Clear();
  2638. mCoolDownItems.Clear();
  2639. }
  2640. /// <summary>
  2641. /// 检测此道具是否在CD
  2642. /// </summary>
  2643. /// <param name="itemTemplateID"></param>
  2644. /// <returns></returns>
  2645. public bool IsItemCoolDown(int itemTemplateID)
  2646. {
  2647. if (mCoolDownItems.ContainsKey(itemTemplateID))
  2648. {
  2649. return true;
  2650. }
  2651. return false;
  2652. }
  2653. /// <summary>
  2654. /// 添加道具到白空的背包
  2655. /// </summary>
  2656. /// <param name="item"></param>
  2657. /// <param name="count"></param>
  2658. /// <returns></returns>
  2659. public int AddItemToEmptyInventory(ItemTemplate item, int count = 1)
  2660. {
  2661. if (item == null) return 0;
  2662. if (count <= 0) return 0;
  2663. if (!item.IsDuplicateInventory || item.HoldingLimit > 0)
  2664. {
  2665. int holding = GetItemCountInInventory(item.ID);
  2666. if (!item.IsDuplicateInventory)
  2667. {
  2668. if (holding > 0)
  2669. {
  2670. return 0;
  2671. }
  2672. count = 1;
  2673. }
  2674. if (item.HoldingLimit > 0)
  2675. {
  2676. if (holding >= item.HoldingLimit)
  2677. {
  2678. return 0;
  2679. }
  2680. if (holding + count > item.HoldingLimit)
  2681. {
  2682. count = item.HoldingLimit - holding;
  2683. }
  2684. if (count <= 0) return 0;
  2685. }
  2686. }
  2687. int added = 0;
  2688. //优先堆叠//
  2689. for (int i = 0; i < mInventorySlots.Count; i++)
  2690. {
  2691. InventorySlot slot = mInventorySlots[i];
  2692. if (slot.ItemTemplateID == item.ID)
  2693. {
  2694. added += slot.AddItem(item, count - added);
  2695. if (added >= count)
  2696. {
  2697. break;
  2698. }
  2699. }
  2700. }
  2701. //使用空闲格子//
  2702. for (int i = 0; i < mInventorySlots.Count; i++)
  2703. {
  2704. InventorySlot slot = mInventorySlots[i];
  2705. added += slot.AddItem(item, count - added);
  2706. if (added >= count)
  2707. {
  2708. break;
  2709. }
  2710. }
  2711. return added;
  2712. }
  2713. /// <summary>
  2714. /// 添加道具到指定背包
  2715. /// </summary>
  2716. /// <param name="item"></param>
  2717. /// <param name="index"></param>
  2718. /// <param name="count"></param>
  2719. /// <returns></returns>
  2720. public int AddItemToInventory(ItemTemplate item, int index, int count = 1)
  2721. {
  2722. if (item == null) return 0;
  2723. if (count <= 0) return 0;
  2724. if (!item.IsDuplicateInventory || item.HoldingLimit > 0)
  2725. {
  2726. int holding = GetItemCountInInventory(item.ID);
  2727. if (!item.IsDuplicateInventory)
  2728. {
  2729. if (holding > 0)
  2730. {
  2731. return 0;
  2732. }
  2733. count = 1;
  2734. }
  2735. if (item.HoldingLimit > 0)
  2736. {
  2737. if (holding >= item.HoldingLimit)
  2738. {
  2739. return 0;
  2740. }
  2741. if (holding + count > item.HoldingLimit)
  2742. {
  2743. count = item.HoldingLimit - holding;
  2744. }
  2745. if (count <= 0) return 0;
  2746. }
  2747. }
  2748. if (index >= 0 && index < mInventorySlots.Count)
  2749. {
  2750. InventorySlot slot = mInventorySlots[index];
  2751. return slot.AddItem(item, count);
  2752. }
  2753. return 0;
  2754. }
  2755. /// <summary>
  2756. /// 添加道具到指定背包
  2757. /// </summary>
  2758. /// <param name="itemTemplateID"></param>
  2759. /// <param name="index"></param>
  2760. /// <param name="count"></param>
  2761. /// <returns></returns>
  2762. public int AddItemToInventory(int itemTemplateID, int index, int count = 1)
  2763. {
  2764. if (count <= 0) return 0;
  2765. return AddItemToInventory(Templates.getItem(itemTemplateID), index, count);
  2766. }
  2767. private int UseItemInternal(InventorySlot slot, int count)
  2768. {
  2769. if (slot.Item != null)
  2770. {
  2771. if (slot.Item.UseInProgressTimeMS > 0)
  2772. {
  2773. count = slot.TryUse(count);
  2774. if (count > 0)
  2775. {
  2776. this.startPickProgressSelf(slot.Item.UseInProgressTimeMS, (s, p) =>
  2777. {
  2778. slot.Use(count);
  2779. });
  2780. }
  2781. return count;
  2782. }
  2783. else
  2784. {
  2785. return slot.Use(count);
  2786. }
  2787. }
  2788. return 0;
  2789. }
  2790. /// <summary>
  2791. /// 使用背包的道具
  2792. /// </summary>
  2793. /// <param name="index"></param>
  2794. /// <param name="count"></param>
  2795. /// <returns></returns>
  2796. public int UseInventoryItem(int index, int count = 1)
  2797. {
  2798. if (count <= 0) return 0;
  2799. if (index >= 0 && index < mInventorySlots.Count)
  2800. {
  2801. InventorySlot slot = mInventorySlots[index];
  2802. return UseItemInternal(slot, count);
  2803. }
  2804. return 0;
  2805. }
  2806. public int UseInventoryItemByType(int itemTemplateID, int count = 1)
  2807. {
  2808. if (count <= 0) return 0;
  2809. for (int i = 0; i < mInventorySlots.Count; i++)
  2810. {
  2811. InventorySlot slot = mInventorySlots[i];
  2812. if (slot.ItemTemplateID == itemTemplateID)
  2813. {
  2814. return UseItemInternal(slot, count);
  2815. }
  2816. }
  2817. return 0;
  2818. }
  2819. public int DropInventoryItemByIndex(int index, int count = 1)
  2820. {
  2821. if (count <= 0) return 0;
  2822. if (index >= 0 && index < mInventorySlots.Count)
  2823. {
  2824. InventorySlot slot = mInventorySlots[index];
  2825. return slot.Drop(count);
  2826. }
  2827. return 0;
  2828. }
  2829. public int DropInventoryItemByType(int itemTemplateID, int count = 1)
  2830. {
  2831. if (count <= 0) return 0;
  2832. int droped = 0;
  2833. for (int i = 0; i < mInventorySlots.Count; i++)
  2834. {
  2835. InventorySlot slot = mInventorySlots[i];
  2836. if (slot.ItemTemplateID == itemTemplateID)
  2837. {
  2838. droped += slot.Drop(count);
  2839. if (droped >= count)
  2840. {
  2841. break;
  2842. }
  2843. }
  2844. }
  2845. return droped;
  2846. }
  2847. public int ClearInventoryItemByIndex(int index)
  2848. {
  2849. if (index >= 0 && index < mInventorySlots.Count)
  2850. {
  2851. InventorySlot slot = mInventorySlots[index];
  2852. return slot.Clean();
  2853. }
  2854. return 0;
  2855. }
  2856. public int ClearInventoryItemByType(int itemTemplateID)
  2857. {
  2858. int droped = 0;
  2859. for (int i = 0; i < mInventorySlots.Count; i++)
  2860. {
  2861. InventorySlot slot = mInventorySlots[i];
  2862. if (slot.ItemTemplateID == itemTemplateID)
  2863. {
  2864. droped += slot.Clean();
  2865. }
  2866. }
  2867. return droped;
  2868. }
  2869. /// <summary>
  2870. /// 背包内是否有此道具
  2871. /// </summary>
  2872. /// <param name="itemTemplateID"></param>
  2873. /// <returns></returns>
  2874. public bool ContainsItemInInventory(int itemTemplateID)
  2875. {
  2876. for (int i = 0; i < mInventorySlots.Count; i++)
  2877. {
  2878. InventorySlot slot = mInventorySlots[i];
  2879. if (slot.ItemTemplateID == itemTemplateID)
  2880. {
  2881. return true;
  2882. }
  2883. }
  2884. return false;
  2885. }
  2886. public int GetItemCountInInventory(int itemTemplateID)
  2887. {
  2888. int ret = 0;
  2889. for (int i = 0; i < mInventorySlots.Count; i++)
  2890. {
  2891. InventorySlot slot = mInventorySlots[i];
  2892. if (slot.ItemTemplateID == itemTemplateID)
  2893. {
  2894. ret += slot.Count;
  2895. }
  2896. }
  2897. return ret;
  2898. }
  2899. #endregion
  2900. //---------------------------------------------------------------------------------------------------------------
  2901. #region _物理运动_
  2902. public bool IsFallingDown
  2903. {
  2904. get
  2905. {
  2906. if (mCurrentFallingDown != null)
  2907. return !mCurrentFallingDown.IsEnd;
  2908. return false;
  2909. }
  2910. }
  2911. public bool IsDamageFallingDown
  2912. {
  2913. get
  2914. {
  2915. StateDamage damage = (this.CurrentState as StateDamage);
  2916. if (damage != null)
  2917. {
  2918. return damage.IsFallingDown;
  2919. }
  2920. return false;
  2921. }
  2922. }
  2923. public bool IsPhysicalMove
  2924. {
  2925. get
  2926. {
  2927. if (mCurrentStartMove != null)
  2928. return !mCurrentStartMove.IsEnd;
  2929. return false;
  2930. }
  2931. }
  2932. private FallingDown mCurrentFallingDown;
  2933. private HitMoveSpeed mCurrentStartMove;
  2934. private void updatePhysical()
  2935. {
  2936. if (mCurrentFallingDown != null && mCurrentFallingDown.Update(Parent.UpdateIntervalMS))
  2937. {
  2938. mCurrentFallingDown = null;
  2939. }
  2940. if (mCurrentStartMove != null && mCurrentStartMove.Update(Parent.UpdateIntervalMS))
  2941. {
  2942. mCurrentStartMove = null;
  2943. }
  2944. }
  2945. /// <summary>
  2946. /// 开始自由落体
  2947. /// </summary>
  2948. /// <param name="launcher"></param>
  2949. /// <param name="speedZ"></param>
  2950. /// <param name="gravity"></param>
  2951. /// <param name="zlimit"></param>
  2952. /// <returns></returns>
  2953. public virtual FallingDown StartFly(object launcher, float speedZ, float gravity, float zlimit)
  2954. {
  2955. mCurrentFallingDown = new FallingDown(this, speedZ, gravity, zlimit);
  2956. return mCurrentFallingDown;
  2957. }
  2958. /// <summary>
  2959. /// 开始复杂移动
  2960. /// </summary>
  2961. /// <param name="launcher"></param>
  2962. /// <param name="direction"></param>
  2963. /// <param name="rotateSpeedSEC"></param>
  2964. /// <param name="expectlTimeMS"></param>
  2965. /// <param name="moveSpeedSEC"></param>
  2966. /// <param name="moveSpeedAdd"></param>
  2967. /// <param name="moveSpeedAcc"></param>
  2968. /// <param name="isNoneTouch"></param>
  2969. public virtual HitMoveSpeed StartHitMove(
  2970. object launcher,
  2971. float direction,
  2972. float rotateSpeedSEC,
  2973. int expectlTimeMS,
  2974. float moveSpeedSEC,
  2975. float moveSpeedAdd,
  2976. float moveSpeedAcc,
  2977. bool isNoneTouch)
  2978. {
  2979. if (mCurrentStartMove != null)
  2980. {
  2981. mCurrentStartMove.Stop();
  2982. }
  2983. HitMoveSpeed move = new HitMoveSpeed(
  2984. this,
  2985. direction,
  2986. rotateSpeedSEC,
  2987. expectlTimeMS,
  2988. moveSpeedSEC,
  2989. moveSpeedAdd,
  2990. moveSpeedAcc,
  2991. isNoneTouch);
  2992. mCurrentStartMove = move;
  2993. return move;
  2994. }
  2995. /// <summary>
  2996. /// 落体运动
  2997. /// </summary>
  2998. public class FallingDown
  2999. {
  3000. private readonly InstanceUnit unit;
  3001. private readonly float gravity;
  3002. private readonly float z_limit;
  3003. private float z_speed;
  3004. public FallingDown(InstanceUnit unit, float zspeed, float zgravity, float zlimit)
  3005. {
  3006. this.unit = unit;
  3007. this.z_limit = zlimit;
  3008. this.z_speed = zspeed;
  3009. this.gravity = zgravity == 0 ? unit.Templates.CFG.GLOBAL_GRAVITY : zgravity;
  3010. this.ExpectTimeMS = MoveHelper.CalculateFlyTimeMS(unit.Z, zspeed, zlimit, gravity, 10);
  3011. this.IsEnd = false;
  3012. }
  3013. public bool Update(int intervalMS)
  3014. {
  3015. //向上受到ZLimit限制//
  3016. unit.Z += MoveHelper.GetDistance(intervalMS, z_speed);
  3017. unit.Z = Math.Max(0, unit.Z);
  3018. this.IsEnd = unit.Z <= 0;
  3019. //骤停//
  3020. if (z_limit != 0 && z_speed > 0 && unit.Z > z_limit)
  3021. {
  3022. z_speed = 0;
  3023. }
  3024. this.z_speed -= MoveHelper.GetDistance(intervalMS, gravity);
  3025. return IsEnd;
  3026. }
  3027. public bool IsEnd { get; private set; }
  3028. public int ExpectTimeMS { get; private set; }
  3029. public float ZSpeedSEC { get { return z_speed; } }
  3030. public float ZLimit { get { return z_limit; } }
  3031. }
  3032. public class HitMoveSpeed
  3033. {
  3034. private readonly InstanceUnit mOwner;
  3035. private readonly float mStartDirection;
  3036. private readonly float mMoveSpeedAdd;
  3037. private readonly float mMoveSpeedAcc;
  3038. private readonly float mRotateSpeedSEC;
  3039. private float moveSpeedSEC;
  3040. private TimeExpire<int> hitMoveTime;
  3041. private FallingDown hasFly;
  3042. private IPositionObject moveTarget;
  3043. private bool moveTargetBody;
  3044. private bool isNoneTouch = false;
  3045. public HitMoveSpeed(
  3046. InstanceUnit owner,
  3047. float direction,
  3048. float rotateSpeedSEC,
  3049. int expectlTimeMS,
  3050. float moveSpeedSEC,
  3051. float moveSpeedAdd,
  3052. float moveSpeedAccPct,
  3053. bool isNoneTouch)
  3054. {
  3055. this.mOwner = owner;
  3056. this.mStartDirection = direction;
  3057. this.moveSpeedSEC = moveSpeedSEC;
  3058. this.mMoveSpeedAdd = moveSpeedAdd;
  3059. this.mMoveSpeedAcc = moveSpeedAccPct / 100f;
  3060. this.mRotateSpeedSEC = rotateSpeedSEC;
  3061. this.isNoneTouch = isNoneTouch;
  3062. this.TotalTimeMS = expectlTimeMS;
  3063. this.hitMoveTime = new TimeExpire<int>(TotalTimeMS);
  3064. this.IsEnd = false;
  3065. this.PrevX = owner.X;
  3066. this.PrevY = owner.Y;
  3067. }
  3068. public void SetFly(object launcher, float moveZSpeed, float gravity, float zlimit)
  3069. {
  3070. if (moveZSpeed != 0)
  3071. {
  3072. this.hasFly = mOwner.StartFly(launcher, moveZSpeed, gravity, zlimit);
  3073. this.TotalTimeMS = hasFly.ExpectTimeMS;
  3074. this.hitMoveTime = new TimeExpire<int>(TotalTimeMS);
  3075. }
  3076. }
  3077. public void SetMoveTarget(IPositionObject target, bool targetBodyBlock)
  3078. {
  3079. moveTarget = target;
  3080. moveTargetBody = targetBodyBlock;
  3081. }
  3082. public void Stop()
  3083. {
  3084. this.IsEnd = true;
  3085. }
  3086. public bool Update(int intervalMS)
  3087. {
  3088. int intervalMS_move = intervalMS;
  3089. if (hitMoveTime.PassTimeMS + intervalMS >= hitMoveTime.TotalTimeMS)
  3090. {
  3091. intervalMS_move = hitMoveTime.TotalTimeMS - hitMoveTime.PassTimeMS;
  3092. }
  3093. if (mRotateSpeedSEC != 0)
  3094. {
  3095. mOwner.turn(MoveHelper.GetDistance(intervalMS_move, mRotateSpeedSEC));
  3096. }
  3097. this.PrevX = mOwner.X;
  3098. this.PrevY = mOwner.Y;
  3099. // 移动 //
  3100. if (moveTarget != null)
  3101. {
  3102. move(intervalMS_move, moveTarget);
  3103. }
  3104. else
  3105. {
  3106. move(intervalMS_move, mStartDirection);
  3107. }
  3108. // 递增 //
  3109. {
  3110. //每秒递减速度绝对值//
  3111. MoveHelper.UpdateSpeed(intervalMS_move, ref moveSpeedSEC, mMoveSpeedAdd, mMoveSpeedAcc);
  3112. }
  3113. if (hitMoveTime.PassTimeMS + intervalMS >= hitMoveTime.TotalTimeMS || hitMoveTime.Update(intervalMS))
  3114. {
  3115. IsEnd = true;
  3116. }
  3117. return IsEnd;
  3118. }
  3119. private void move(int intervalMS, IPositionObject target)
  3120. {
  3121. if (moveTargetBody)
  3122. {
  3123. float distance = MoveHelper.GetDistance(intervalMS, moveSpeedSEC);
  3124. if (CMath.includeRoundPoint(mOwner.X, mOwner.Y, target.RadiusSize + mOwner.RadiusSize + distance, target.X, target.Y))
  3125. {
  3126. return;
  3127. }
  3128. }
  3129. if (hasFly != null)
  3130. {
  3131. mOwner.jumpToTarget(target.X, target.Y, moveSpeedSEC, intervalMS, IsNoneTouch);
  3132. }
  3133. else
  3134. {
  3135. if (IsNoneTouch)
  3136. {
  3137. mOwner.jumpToTarget(target.X, target.Y, moveSpeedSEC, intervalMS, IsNoneTouch);
  3138. }
  3139. else if (mMoveSpeedAdd != 0 || mMoveSpeedAcc != 0)
  3140. {
  3141. mOwner.moveImpactTo(target.X, target.Y, moveSpeedSEC, intervalMS);
  3142. }
  3143. else
  3144. {
  3145. mOwner.moveBlockTo(target.X, target.Y, moveSpeedSEC, intervalMS);
  3146. }
  3147. }
  3148. }
  3149. private void move(int intervalMS, float direction)
  3150. {
  3151. if (hasFly != null)
  3152. {
  3153. mOwner.jumpTo(direction, moveSpeedSEC, intervalMS, IsNoneTouch);
  3154. }
  3155. else
  3156. {
  3157. if (IsNoneTouch)
  3158. {
  3159. mOwner.jumpTo(direction, moveSpeedSEC, intervalMS, IsNoneTouch);
  3160. }
  3161. else if (mMoveSpeedAdd != 0 || mMoveSpeedAcc != 0)
  3162. {
  3163. mOwner.moveImpact(direction, moveSpeedSEC, intervalMS);
  3164. }
  3165. else
  3166. {
  3167. mOwner.moveBlockTo(direction, moveSpeedSEC, intervalMS);
  3168. }
  3169. }
  3170. }
  3171. public float PrevX { get; private set; }
  3172. public float PrevY { get; private set; }
  3173. public bool IsFly { get { return hasFly != null; } }
  3174. public int TotalTimeMS { get; private set; }
  3175. public bool IsEnd { get; private set; }
  3176. public bool IsNoneTouch
  3177. {
  3178. get { return isNoneTouch; }
  3179. set { this.isNoneTouch = value; }
  3180. }
  3181. public float ZSpeedSEC
  3182. {
  3183. get
  3184. {
  3185. if (hasFly != null)
  3186. return hasFly.ZSpeedSEC;
  3187. return 0;
  3188. }
  3189. }
  3190. }
  3191. #endregion
  3192. //---------------------------------------------------------------------------------------------------------------
  3193. }
  3194. }