XmdsInstanceSummonUnit.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. public override bool IsMonster { get { return true; } }
  27. override protected void onUpdate(bool slowRefresh)
  28. {
  29. base.onUpdate(slowRefresh);
  30. if (BindUnit != null)
  31. {
  32. if (X != BindUnit.X || Y != BindUnit.Y)
  33. {
  34. setPos(BindUnit.X, BindUnit.Y, false);
  35. }
  36. }
  37. if ((PassTimeMS >= Info.LifeTimeMS) || (SummonerUnit != null && !SummonerUnit.IsActive))
  38. {
  39. kill(null, false);
  40. }
  41. }
  42. public override void InitSkills(LaunchSkill baseSkill, params LaunchSkill[] skills)
  43. {
  44. if (this.Virtual == null ||
  45. (this.Virtual as XmdsVirtual).IsFinishSkillInit() == false)
  46. {
  47. return;
  48. }
  49. base.InitSkills(baseSkill, skills);
  50. }
  51. // 各种填坑,宠物机制被改的贼特殊,贼恶心
  52. protected override bool IsCanAttack(InstanceUnit unit) { return true; }
  53. public override bool IsPet { get { return false; } }
  54. public override bool IsPlayerUnit { get { return false; } }
  55. protected override bool IsPetCanAttack() { return true; }
  56. protected override void followMasterChangeSpeed(float speedChag) { }
  57. protected override bool CheckFollowMaster()
  58. {
  59. if(this.Info.SumType == CommonAI.Data.SummonType.MoveToMaster || this.Info.SumType == CommonAI.Data.SummonType.AwaitMaster)
  60. {
  61. return false;
  62. }
  63. return true;
  64. }
  65. protected override void Disposing()
  66. {
  67. BindUnit = null;
  68. base.Disposing();
  69. }
  70. protected override bool TryAtkSelfEnemy()
  71. {
  72. bool ret = false;
  73. using (var list = ListObjectPool<InstanceUnit>.AllocAutoRelease())
  74. {
  75. //找到离自己最近的单位攻击.
  76. Parent.getObjectsRoundRange<InstanceUnit>(Collider.Object_BlockBody_TouchRound, X, Y, Info.GuardRange, list, AoiStatus);
  77. DoAndRemoveCollection.UpdateAndRemove<InstanceUnit>(list, (InstanceUnit u) =>
  78. {
  79. return !u.IsActive;
  80. });
  81. if (list != null && list.Count > 0)
  82. {
  83. list.Sort((a, b) =>
  84. {
  85. //选距离最近的单位.
  86. float da = CMath.getDistanceSquare(a.X, a.Y, this.X, this.Y);
  87. float db = CMath.getDistanceSquare(b.X, b.Y, this.X, this.Y);
  88. return (int)(da - db);
  89. });
  90. foreach (SkillState skill in SkillStatus)
  91. {
  92. if (skill.LaunchSkill.AutoLaunch && skill.TryLaunch())
  93. {
  94. foreach (InstanceUnit u in list)
  95. {
  96. if (this.IsCanAttack(u) && Parent.IsAttackable(this, u, skill.Data.ExpectTarget, AttackReason.Attack, skill.Data))
  97. {
  98. //是否在守卫范围内.
  99. if (CheckInAtkRange(u, this.Info.GuardRange + skill.Data.AttackRange))
  100. {
  101. //检测是否有可释放技能//
  102. if (tryAutoLaunch(skill, u))
  103. {
  104. return true;
  105. }
  106. }
  107. }
  108. }
  109. }
  110. }
  111. }
  112. }
  113. return ret;
  114. }
  115. }
  116. }