Exemplo n.º 1
0
        public void ShowBuff(BuffBase buff)
        {
            if (buff?.Data == null)
            {
                Log.Error("buff is invalid.");
                return;
            }
            if (m_Buff != null)
            {
                UpdateBuff();
                return;
            }

            m_Buff = buff;
            if (m_Buff.GetLeftTime() < float.Epsilon)
            {
                HideBuff();
                return;
            }

            if (m_Buff.Data.Icon == 0)
            {
                return;
            }

            this.visible = true;
            string iconPath = AssetUtility.GetBuffIconAsset(m_Buff.Data.Icon);

            m_Icon.url        = iconPath;
            m_Title.text      = GlobalTools.Format("{0}{1}", m_Buff.GetLeftTime().ToString("F1"), "s");
            m_Mask.fillAmount = m_Buff.GetLeftTime() / m_Buff.Data.LifeTime;
        }
Exemplo n.º 2
0
        public BuffBase FindBuff(int id)
        {
            BuffBase buff = null;

            m_BuffMap.TryGetValue(id, out buff);
            return(buff);
        }
Exemplo n.º 3
0
        public void Step()
        {
            if (m_Owner.IsDead)
            {
                return;
            }

            if (m_BuffMap.Count > 0)
            {
                for (m_BuffMap.Begin(); m_BuffMap.Next();)
                {
                    BuffBase buff = m_BuffMap.Value;
                    buff.Update();
                    if (buff.IsDead)
                    {
                        m_DelBuffList.Add(buff.Id);
                    }
                }
            }
            for (int i = 0; i < m_DelBuffList.Count; i++)
            {
                int id = m_DelBuffList[i];
                if (m_BuffMap.ContainsKey(id))
                {
                    m_BuffMap[id].Exit();
                    m_BuffMap.Remove(id);
                }
            }
            if (m_DelBuffList.Count > 0)
            {
                m_Owner.UpdateCurAttribute();
                m_DelBuffList.Clear();
            }
        }
Exemplo n.º 4
0
 public void HideBuff()
 {
     m_Buff       = null;
     this.visible = false;
     if (m_Icon.texture != null)
     {
         //GameEntry.Resource.UnloadAsset(m_Icon.texture);
         m_Icon.texture = null;
     }
 }
Exemplo n.º 5
0
 public void SetAllEffectEnable(bool enabled)
 {
     Map <int, BuffBase> .Enumerator em = m_BuffMap.GetEnumerator();
     while (em.MoveNext())
     {
         BuffBase buff = em.Current.Value;
         buff.SetEffectEnable(enabled);
     }
     em.Dispose();
 }
Exemplo n.º 6
0
 private bool IsControlBuff(BuffBase buff)
 {
     switch ((BattleActType)buff.Data.Result)
     {
     case BattleActType.Blind:
     case BattleActType.Fear:
     case BattleActType.Fixbody:
     case BattleActType.Frozen:
     case BattleActType.Paraly:
     case BattleActType.Sleep:
     case BattleActType.Stun:
     case BattleActType.Variation:
         return(true);
     }
     return(false);
 }
Exemplo n.º 7
0
        public void AddBuff(int id, ActorBase caster)
        {
            if (m_Owner.IsDead)
            {
                return;
            }

            DRBuff db = GameEntry.DataTable.GetDataTable <DRBuff>()?.GetDataRow(id);

            if (db == null)
            {
                return;
            }

            BuffBase commonBuff = FindBuff(id);

            if (commonBuff != null)
            {
                switch ((BuffOverlayType)commonBuff.Data.OverlayType)
                {
                case BuffOverlayType.Overlay:
                    commonBuff.Overlay();
                    break;

                case BuffOverlayType.Reset:
                    commonBuff.Refresh();
                    break;

                case BuffOverlayType.Cancle:
                    m_DelBuffList.Add(commonBuff.Id);
                    break;
                }
                return;
            }
            CommandReplyType reply = CommandReplyType.NO;

            switch ((BattleActType)db.Result)
            {
            case BattleActType.Addattr:
            case BattleActType.Subattr:
            case BattleActType.Lddattr:
            case BattleActType.Lubattr:
            {
                reply = CommandReplyType.YES;
            }
            break;

            case BattleActType.Super:
            {
                reply = CommandReplyType.YES;
            }
            break;

            case BattleActType.Variation:
            {
                reply = m_Owner.ExecuteCommand(new VariationCommand(db.LifeTime, db.ChangeModelID));
            }
            break;

            case BattleActType.Hitfly:
            {
                reply = m_Owner.ExecuteCommand(new BeatFlyCommand());
            }
            break;

            case BattleActType.Hitdown:
            {
                reply = m_Owner.ExecuteCommand(new BeatDownCommand());
            }
            break;

            case BattleActType.Hitback:
            {
                reply = m_Owner.ExecuteCommand(new BeatBackCommand());
            }
            break;

            case BattleActType.Stun:
            {
                reply = m_Owner.ExecuteCommand(new StunCommand(db.LifeTime));
            }
            break;

            case BattleActType.Fixbody:
            {
                reply = m_Owner.ExecuteCommand(new FixBodyCommand(db.LifeTime));
            }
            break;

            case BattleActType.Stealth:
            {
                reply = m_Owner.ExecuteCommand(new StealthCommand(db.LifeTime));
            }
            break;

            case BattleActType.Frozen:
            {
                reply = m_Owner.ExecuteCommand(new FrostCommand(db.LifeTime));
            }
            break;

            case BattleActType.Blind:
            {
                reply = m_Owner.ExecuteCommand(new BlindCommand(db.LifeTime));
            }
            break;

            case BattleActType.Silent:
            {
                reply = m_Owner.ExecuteCommand(new SilentCommand(db.LifeTime));
            }
            break;

            case BattleActType.Sleep:
            {
                reply = m_Owner.ExecuteCommand(new SleepCommand(db.LifeTime));
            }
            break;

            case BattleActType.Absorb:
            {
                reply = CommandReplyType.YES;
            }
            break;

            case BattleActType.Wild:
            {
                reply = CommandReplyType.YES;
            }
            break;

            case BattleActType.Divive:
            {
                RemoveAllDebuff();
                reply = CommandReplyType.YES;
            }
            break;

            case BattleActType.Paraly:
            {
                reply = CommandReplyType.YES;
            }
            break;

            case BattleActType.Fear:
            {
                reply = CommandReplyType.YES;
            }
            break;

            case BattleActType.Reflex:
            {
                reply = CommandReplyType.YES;
            }
            break;

            case BattleActType.Dead:
            {
                reply = CommandReplyType.YES;
            }
            break;
            }

            if (reply == CommandReplyType.YES)
            {
                BuffBase buff = new BuffBase(id, m_Owner, caster);
                m_BuffMap.Add(id, buff);
            }

            m_Owner.UpdateCurAttribute();
        }