|
@@ -66,7 +66,7 @@ namespace CommonAI.Zone.Instance
|
|
|
private readonly int mSpellTotalTime; //法术的总时长
|
|
|
|
|
|
// 飞弹各种奇葩数据记录, 法术数量可控
|
|
|
- private readonly JSGCreateSpellData mCreateSpellData; //法术创建信息(可变的,由技能数据确定)
|
|
|
+ private JSGCreateSpellData mCreateSpellData; //法术创建信息(可变的,由技能数据确定)
|
|
|
// 飞弹不同的法术id
|
|
|
public List<LaunchSpell> mCurveSpellList;
|
|
|
//连续飞弹
|
|
@@ -403,7 +403,35 @@ namespace CommonAI.Zone.Instance
|
|
|
setPos(mStartPos.X, mStartPos.Y, this.LaunchHeightZ);
|
|
|
|
|
|
}
|
|
|
- protected override void onRemoved()
|
|
|
+
|
|
|
+ //public long mDisPosingTime = 0;
|
|
|
+ //public long mDisPosingTime1 = 0;
|
|
|
+ protected override void Disposing()
|
|
|
+ {
|
|
|
+ this.mSeekingCooldownTime = null;
|
|
|
+ this.mKeyFrames = null;
|
|
|
+ //mDisPosingTime = CommonLang.CUtils.localTimeMS;
|
|
|
+ //mDisPosingTime1 = System.DateTime.Now.Ticks;
|
|
|
+
|
|
|
+ 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
|
|
|
/// <summary>
|
|
|
/// 更新范围检测以及关键帧
|
|
|
/// </summary>
|
|
|
- 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())
|
|
|
{
|
|
|
+ //if(mKeyFrames == null)
|
|
|
+ //{
|
|
|
+ // long ltime1 = CommonLang.CUtils.localTimeMS - mDisPosingTime;
|
|
|
+ // long ltime2 = System.DateTime.Now.Ticks - mDisPosingTime1;
|
|
|
+ //}
|
|
|
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)
|
|
|
{
|
|
|
// 单Frame情况下,如果是Attack。进行唯一敌人判定(X型拼接法术, 需要伤害只生效一次)
|
|
@@ -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;
|
|
|
|