XmdsInstanceSummonUnit.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. using CommonAI.Zone;
  2. using CommonAI.Zone.Helper;
  3. using CommonAI.Zone.Instance;
  4. using CommonLang;
  5. namespace XmdsCommonServer.Plugin.Units
  6. {
  7. /// <summary>
  8. /// 召唤单位,目前召唤单位AI与宠物相同,先继承自宠物.
  9. /// </summary>
  10. public class XmdsInstanceSummonUnit : XmdsInstancePet //InstanceGuard, ViewTrigger.ViewTriggerListener, ISummonedUnit
  11. {
  12. public override bool IntersectObj { get { return false; } }
  13. public XmdsInstanceSummonUnit(InstanceZone zone, UnitInfo info, string name, int force, int level)
  14. : base(zone, info, name, force, level)
  15. {
  16. }
  17. public InstanceUnit BindUnit { get; set; }
  18. protected override void onAdded(bool pointLv)
  19. {
  20. base.onAdded(pointLv);
  21. if(this.Info.SumType == CommonAI.Data.SummonType.attack)
  22. {
  23. base.SetFollowMode(XmdsCommon.Plugin.XmdsPetConifg.XmdsPetFollowMode.ActiveAtk);
  24. }
  25. }
  26. override protected void onUpdate(bool slowRefresh)
  27. {
  28. base.onUpdate(slowRefresh);
  29. if (BindUnit != null)
  30. {
  31. if (X != BindUnit.X || Y != BindUnit.Y)
  32. {
  33. setPos(BindUnit.X, BindUnit.Y, false);
  34. }
  35. }
  36. if ((PassTimeMS >= Info.LifeTimeMS) || (SummonerUnit != null && !SummonerUnit.IsActive))
  37. {
  38. kill(null, false);
  39. }
  40. }
  41. public override void InitSkills(LaunchSkill baseSkill, params LaunchSkill[] skills)
  42. {
  43. if (this.Virtual == null ||
  44. (this.Virtual as XmdsVirtual).IsFinishSkillInit() == false)
  45. {
  46. return;
  47. }
  48. base.InitSkills(baseSkill, skills);
  49. }
  50. // 各种填坑,宠物机制被改的贼特殊,贼恶心
  51. protected override bool IsCanAttack(InstanceUnit unit) { return true; }
  52. public override bool IsPet { get { return false; } }
  53. public override bool IsPlayerUnit { get { return false; } }
  54. protected override bool IsPetCanAttack() { return true; }
  55. protected override void followMasterChangeSpeed(float speedChag) { }
  56. protected override bool CheckFollowMaster()
  57. {
  58. if(this.Info.SumType == CommonAI.Data.SummonType.MoveToMaster || this.Info.SumType == CommonAI.Data.SummonType.AwaitMaster)
  59. {
  60. return false;
  61. }
  62. return true;
  63. }
  64. protected override void Disposing()
  65. {
  66. BindUnit = null;
  67. base.Disposing();
  68. }
  69. protected override bool TryAtkSelfEnemy()
  70. {
  71. bool ret = false;
  72. using (var list = ListObjectPool<InstanceUnit>.AllocAutoRelease())
  73. {
  74. //找到离自己最近的单位攻击.
  75. Parent.getObjectsRoundRange<InstanceUnit>(Collider.Object_BlockBody_TouchRound, X, Y, Info.GuardRange, list, AoiStatus);
  76. DoAndRemoveCollection.UpdateAndRemove<InstanceUnit>(list, (InstanceUnit u) =>
  77. {
  78. return !u.IsActive;
  79. });
  80. if (list != null && list.Count > 0)
  81. {
  82. list.Sort((a, b) =>
  83. {
  84. //选距离最近的单位.
  85. float da = CMath.getDistanceSquare(a.X, a.Y, this.X, this.Y);
  86. float db = CMath.getDistanceSquare(b.X, b.Y, this.X, this.Y);
  87. return (int)(da - db);
  88. });
  89. foreach (SkillState skill in SkillStatus)
  90. {
  91. if (skill.LaunchSkill.AutoLaunch && skill.TryLaunch())
  92. {
  93. foreach (InstanceUnit u in list)
  94. {
  95. if (this.IsCanAttack(u) && Parent.IsAttackable(this, u, skill.Data.ExpectTarget, AttackReason.Attack, skill.Data))
  96. {
  97. //是否在守卫范围内.
  98. if (CheckInAtkRange(u, this.Info.GuardRange + skill.Data.AttackRange))
  99. {
  100. //检测是否有可释放技能//
  101. if (tryAutoLaunch(skill, u))
  102. {
  103. return true;
  104. }
  105. }
  106. }
  107. }
  108. }
  109. }
  110. }
  111. }
  112. return ret;
  113. }
  114. }
  115. }