|
@@ -66,7 +66,7 @@ namespace CommonAI.Zone.Instance
|
|
|
private readonly int mSpellTotalTime;
|
|
|
|
|
|
|
|
|
- private readonly JSGCreateSpellData mCreateSpellData;
|
|
|
+ private JSGCreateSpellData mCreateSpellData;
|
|
|
|
|
|
public List<LaunchSpell> mCurveSpellList;
|
|
|
|
|
@@ -403,7 +403,35 @@ namespace CommonAI.Zone.Instance
|
|
|
setPos(mStartPos.X, mStartPos.Y, this.LaunchHeightZ);
|
|
|
|
|
|
}
|
|
|
- protected override void onRemoved()
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ protected override void Disposing()
|
|
|
+ {
|
|
|
+ this.mSeekingCooldownTime = null;
|
|
|
+ this.mKeyFrames = null;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ if (this.mHittedUnits != null)
|
|
|
+ {
|
|
|
+ this.mHittedUnits.Clear();
|
|
|
+ this.mHittedUnits = null;
|
|
|
+ }
|
|
|
+
|
|
|
+ this.mHitIntervalTicker = null;
|
|
|
+ this.mCreateSpellData = null;
|
|
|
+
|
|
|
+ if(this.mCurveSpellList != null)
|
|
|
+ {
|
|
|
+ this.mCurveSpellList.Clear();
|
|
|
+ this.mCurveSpellList = null;
|
|
|
+ }
|
|
|
+
|
|
|
+ base.Disposing();
|
|
|
+ }
|
|
|
+
|
|
|
+ protected override void onRemoved()
|
|
|
{
|
|
|
if (mInfo.StopBindingSkillOnRemoved)
|
|
|
{
|
|
@@ -430,7 +458,11 @@ namespace CommonAI.Zone.Instance
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- updateKeyFrames();
|
|
|
+ if(this.mKeyFrames != null)
|
|
|
+ {
|
|
|
+ updateKeyFrames(slowRefresh);
|
|
|
+ }
|
|
|
+
|
|
|
if (mInfo.MType == SpellTemplate.MotionType.Foxfire && mTarget != null)
|
|
|
{
|
|
|
}
|
|
@@ -940,7 +972,7 @@ namespace CommonAI.Zone.Instance
|
|
|
}
|
|
|
|
|
|
|
|
|
- private void getShapeAttackable(List<InstanceUnit> ret, AttackReason reason)
|
|
|
+ private void getShapeAttackable(List<InstanceUnit> ret, AttackReason reason, bool slowRefresh)
|
|
|
{
|
|
|
AttackRange.Shape = (AttackShape)mInfo.BodyShape;
|
|
|
AttackRange.BodySize = this.mBaseSize;
|
|
@@ -980,7 +1012,7 @@ namespace CommonAI.Zone.Instance
|
|
|
|
|
|
|
|
|
|
|
|
- private void updateKeyFrames()
|
|
|
+ private void updateKeyFrames(bool slowRefresh)
|
|
|
{
|
|
|
switch (Info.MType)
|
|
|
{
|
|
@@ -1020,7 +1052,7 @@ namespace CommonAI.Zone.Instance
|
|
|
{
|
|
|
using (var enemy_list = ListObjectPool<InstanceUnit>.AllocAutoRelease())
|
|
|
{
|
|
|
- getShapeAttackable(enemy_list, AttackReason.Attack);
|
|
|
+ getShapeAttackable(enemy_list, AttackReason.Attack, slowRefresh);
|
|
|
if (enemy_list.Count > 0)
|
|
|
{
|
|
|
InstanceUnit target = enemy_list[0];
|
|
@@ -1041,7 +1073,7 @@ namespace CommonAI.Zone.Instance
|
|
|
{
|
|
|
using (var list = ListObjectPool<InstanceUnit>.AllocAutoRelease())
|
|
|
{
|
|
|
- getShapeAttackable(list, AttackReason.Attack);
|
|
|
+ getShapeAttackable(list, AttackReason.Attack, slowRefresh);
|
|
|
affectToMulti(list, kf, true);
|
|
|
}
|
|
|
}
|
|
@@ -1062,24 +1094,24 @@ namespace CommonAI.Zone.Instance
|
|
|
}
|
|
|
break;
|
|
|
case SpellTemplate.MotionType.Boomerang1:
|
|
|
- case SpellTemplate.MotionType.Boomerang2:
|
|
|
- if (Finish)
|
|
|
- {
|
|
|
- Parent.RemoveObject(this);
|
|
|
- }
|
|
|
+ case SpellTemplate.MotionType.Boomerang2:
|
|
|
if (Info.SpecialEffect == SpellTemplate.SpecialAdditionalEffect.DragPath && Info.SpecialEffectParam != 0f)
|
|
|
{
|
|
|
- updateDragPathKeyFramesRanged();
|
|
|
+ updateDragPathKeyFramesRanged(slowRefresh);
|
|
|
}
|
|
|
else if (Info.SpecialEffect == SpellTemplate.SpecialAdditionalEffect.DarkHole && Info.SpecialEffectParam != 0f)
|
|
|
{
|
|
|
- updateDarkHoleKeyFramesRanged();
|
|
|
+ updateDarkHoleKeyFramesRanged(slowRefresh);
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- updateKeyFramesRanged();
|
|
|
+ updateKeyFramesRanged(slowRefresh);
|
|
|
}
|
|
|
- break;
|
|
|
+ if (Finish)
|
|
|
+ {
|
|
|
+ Parent.RemoveObject(this);
|
|
|
+ }
|
|
|
+ break;
|
|
|
case SpellTemplate.MotionType.Foxfire:
|
|
|
if (mTarget != null && CMath.includeRoundPoint(mTarget.X, mTarget.Y, mTarget.BodyHitSize, this.X, this.Y))
|
|
|
{
|
|
@@ -1106,15 +1138,15 @@ namespace CommonAI.Zone.Instance
|
|
|
{
|
|
|
if (Info.SpecialEffect == SpellTemplate.SpecialAdditionalEffect.DragPath && Info.SpecialEffectParam != 0f)
|
|
|
{
|
|
|
- updateDragPathKeyFramesRanged();
|
|
|
+ updateDragPathKeyFramesRanged(slowRefresh);
|
|
|
}
|
|
|
else if (Info.SpecialEffect == SpellTemplate.SpecialAdditionalEffect.DarkHole && Info.SpecialEffectParam != 0f)
|
|
|
{
|
|
|
- updateDarkHoleKeyFramesRanged();
|
|
|
+ updateDarkHoleKeyFramesRanged(slowRefresh);
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- updateKeyFramesRanged();
|
|
|
+ updateKeyFramesRanged(slowRefresh);
|
|
|
}
|
|
|
}
|
|
|
break;
|
|
@@ -1167,10 +1199,15 @@ namespace CommonAI.Zone.Instance
|
|
|
}
|
|
|
|
|
|
|
|
|
- private void updateKeyFramesRanged()
|
|
|
+ private void updateKeyFramesRanged(bool slowRefresh)
|
|
|
{
|
|
|
using (var kfs = ListObjectPool<SpellTemplate.KeyFrame>.AllocAutoRelease())
|
|
|
{
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
int kfs_count = mKeyFrames.PopKeyFrames(PassTimeMS, kfs);
|
|
|
bool is_interval_test = mHitIntervalTicker.Update(Parent.UpdateIntervalMS);
|
|
|
|
|
@@ -1184,7 +1221,7 @@ namespace CommonAI.Zone.Instance
|
|
|
|
|
|
using (var enemy_list = ListObjectPool<InstanceUnit>.AllocAutoRelease())
|
|
|
{
|
|
|
- getShapeAttackable(enemy_list, AttackReason.Attack);
|
|
|
+ getShapeAttackable(enemy_list, AttackReason.Attack, slowRefresh);
|
|
|
if (kfs_count > 0)
|
|
|
{
|
|
|
|
|
@@ -1239,13 +1276,13 @@ namespace CommonAI.Zone.Instance
|
|
|
}
|
|
|
|
|
|
|
|
|
- private void updateDarkHoleKeyFramesRanged()
|
|
|
+ private void updateDarkHoleKeyFramesRanged(bool slowRefresh)
|
|
|
{
|
|
|
using (var kfs = ListObjectPool<SpellTemplate.KeyFrame>.AllocAutoRelease())
|
|
|
{
|
|
|
using (var enemy_list = ListObjectPool<InstanceUnit>.AllocAutoRelease())
|
|
|
{
|
|
|
- getShapeAttackable(enemy_list, AttackReason.Attack);
|
|
|
+ getShapeAttackable(enemy_list, AttackReason.Attack, slowRefresh);
|
|
|
|
|
|
for (int i = enemy_list.Count - 1; i >= 0; --i)
|
|
|
{
|
|
@@ -1354,13 +1391,13 @@ namespace CommonAI.Zone.Instance
|
|
|
public const float PiOver36 = (float)(Math.PI / 36.0);
|
|
|
public const float TwoPi = (float)(Math.PI * 2.0);
|
|
|
|
|
|
- private void updateDragPathKeyFramesRanged()
|
|
|
+ private void updateDragPathKeyFramesRanged(bool slowRefresh)
|
|
|
{
|
|
|
using (var kfs = ListObjectPool<SpellTemplate.KeyFrame>.AllocAutoRelease())
|
|
|
{
|
|
|
using (var enemy_list = ListObjectPool<InstanceUnit>.AllocAutoRelease())
|
|
|
{
|
|
|
- getShapeAttackable(enemy_list, AttackReason.Attack);
|
|
|
+ getShapeAttackable(enemy_list, AttackReason.Attack, slowRefresh);
|
|
|
|
|
|
float _a, _b, _angle, offset, dx, dy , dis;
|
|
|
|