Exemplo n.º 1
0
        /// <summary>
        ///     Auras the time left.
        /// </summary>
        /// <param name="source">The source.</param>
        /// <param name="auraId">The aura id.</param>
        /// <returns></returns>
        protected static TimeSpan AuraTimeLeft(WoWUnit source, int auraId)
        {
            if (!source.HasAura(auraId))
            {
                return(TimeSpan.Zero);
            }

            return(source.GetAuraById(auraId).TimeLeft);
        }
Exemplo n.º 2
0
        /// <summary>
        ///     (Non-Blocking) Casts the provided spell on the provided target requiring all conditions to be satisfied prior to
        ///     casting.
        /// </summary>
        /// <returns>Returns true if the cast is successful</returns>
        public static async Task <bool> CastOnTarget(WoWUnit target, IAbility ability, List <ICondition> conditions)
        {
            foreach (var condition in conditions)
            {
                if (!condition.Satisfied())
                {
                    return(false);
                }
            }

            if (!SpellManager.HasSpell(ability.Spell))
            {
                return(false);
            }
            if (!SpellManager.CanCast(ability.Spell))
            {
                return(false);
            }
            if (!SpellManager.Cast(ability.Spell, target))
            {
                return(false);
            }

            var logColor = Colors.CornflowerBlue;

            switch (ability.Category)
            {
            case AbilityCategory.Heal:
                logColor = Colors.Yellow;
                break;

            case AbilityCategory.Defensive:
                logColor = Colors.LightGreen;
                break;

            case AbilityCategory.Bloodtalons:
                logColor = Colors.YellowGreen;
                break;

            case AbilityCategory.Pandemic:
                logColor = Colors.Blue;
                break;

            case AbilityCategory.Buff:
                logColor = Colors.Plum;
                break;
            }

            if (StyxWoW.Me.Specialization == WoWSpec.DruidGuardian)
            {
                Log.AppendLine(
                    string.Format("[{0}] Casted {1} on {2} {3}(HP: {4:0.##}%, Rage: {5:0.##}%, SE = {6}) {7}",
                                  ability.Category,
                                  ability.Spell.Name,
                                  target == null ? "Nothing" : (target.IsMe ? "Me" : target.SafeName),
                                  target == null
                            ? "No Guid"
                            : (target.IsMe ? string.Empty : "[" + UnitManager.GuidToUnitId(target.Guid) + "] "),
                                  StyxWoW.Me.HealthPercent,
                                  StyxWoW.Me.RagePercent,
                                  UnitManager.Instance.LastKnownSurroundingEnemies.Count,
                                  target == null
                            ? string.Empty
                            : (target.IsMe
                                ? string.Empty
                                : string.Format("(Target HP = {0:0.##}%, D = {1:0.##} yd, L = {2})",
                                                target.HealthPercent, target.Distance,
                                                target.HasAura(SpellBook.Lacerate)
                                        ? target.GetAuraById(SpellBook.Lacerate).StackCount.ToString()
                                        : "0"))
                                  ), logColor);
            }
            else
            {
                Log.AppendLine(
                    string.Format("[{0}] Casted {1} on {2} {3}({4}CP: {5}, HP: {6:0.##}%, E: {7:0.##}%, SE = {8}) {9}",
                                  ability.Category,
                                  ability.Spell.Name,
                                  target == null ? "Nothing" : (target.IsMe ? "Me" : target.SafeName),
                                  target == null
                            ? "No Guid"
                            : (target.IsMe ? string.Empty : "[" + UnitManager.GuidToUnitId(target.Guid) + "] "),
                                  ability.Spell.Id == SpellBook.Rake || ability.Spell.Id == SpellBook.Rip
                            ? string.Format("M: {0:0.##}x, ", SnapshotManager.CurrentMultiplier)
                            : string.Empty,
                                  StyxWoW.Me.ComboPoints,
                                  StyxWoW.Me.HealthPercent,
                                  StyxWoW.Me.EnergyPercent,
                                  UnitManager.Instance.LastKnownSurroundingEnemies.Count,
                                  target == null
                            ? string.Empty
                            : (target.IsMe
                                ? string.Empty
                                : string.Format("(Target HP = {0:0.##}%, D = {1:0.##} ({2:0.##}) yd)",
                                                target.HealthPercent, Math.Abs(target.Distance - target.CombatReach),
                                                target.Distance))
                                  ), logColor);
            }


            await CommonCoroutines.SleepForLagDuration();

            return(true);
        }
Exemplo n.º 3
0
        /// <summary>
        ///     (Non-Blocking) Casts the provided spell on the provided target requiring all conditions to be satisfied prior to
        ///     casting.
        /// </summary>
        /// <returns>Returns true if the cast is successful</returns>
        public static async Task<bool> CastOnTarget(WoWUnit target, IAbility ability, List<ICondition> conditions)
        {
            foreach (var condition in conditions)
                if (!condition.Satisfied()) return false;

            if (!SpellManager.HasSpell(ability.Spell)) return false;
            if (!SpellManager.CanCast(ability.Spell)) return false;
            if (!SpellManager.Cast(ability.Spell, target)) return false;

            var logColor = Colors.CornflowerBlue;

            switch (ability.Category)
            {
                case AbilityCategory.Heal:
                    logColor = Colors.Yellow;
                    break;
                case AbilityCategory.Defensive:
                    logColor = Colors.LightGreen;
                    break;
                case AbilityCategory.Bloodtalons:
                    logColor = Colors.YellowGreen;
                    break;
                case AbilityCategory.Pandemic:
                    logColor = Colors.Blue;
                    break;
                case AbilityCategory.Buff:
                    logColor = Colors.Plum;
                    break;
            }

            if (StyxWoW.Me.Specialization == WoWSpec.DruidGuardian)
            {
                Log.AppendLine(
                    string.Format("[{0}] Casted {1} on {2} {3}(HP: {4:0.##}%, Rage: {5:0.##}%, SE = {6}) {7}",
                        ability.Category,
                        ability.Spell.Name,
                        target == null ? "Nothing" : (target.IsMe ? "Me" : target.SafeName),
                        target == null
                            ? "No Guid"
                            : (target.IsMe ? string.Empty : "[" + UnitManager.GuidToUnitId(target.Guid) + "] "),
                        StyxWoW.Me.HealthPercent,
                        StyxWoW.Me.RagePercent,
                        UnitManager.Instance.LastKnownSurroundingEnemies.Count,
                        target == null
                            ? string.Empty
                            : (target.IsMe
                                ? string.Empty
                                : string.Format("(Target HP = {0:0.##}%, D = {1:0.##} yd, L = {2})",
                                    target.HealthPercent, target.Distance,
                                    target.HasAura(SpellBook.Lacerate)
                                        ? target.GetAuraById(SpellBook.Lacerate).StackCount.ToString()
                                        : "0"))
                        ), logColor);
            }
            else
            {
                Log.AppendLine(
                    string.Format("[{0}] Casted {1} on {2} {3}({4}CP: {5}, HP: {6:0.##}%, E: {7:0.##}%, SE = {8}) {9}",
                        ability.Category,
                        ability.Spell.Name,
                        target == null ? "Nothing" : (target.IsMe ? "Me" : target.SafeName),
                        target == null
                            ? "No Guid"
                            : (target.IsMe ? string.Empty : "[" + UnitManager.GuidToUnitId(target.Guid) + "] "),
                        ability.Spell.Id == SpellBook.Rake || ability.Spell.Id == SpellBook.Rip
                            ? string.Format("M: {0:0.##}x, ", SnapshotManager.CurrentMultiplier)
                            : string.Empty,
                        StyxWoW.Me.ComboPoints,
                        StyxWoW.Me.HealthPercent,
                        StyxWoW.Me.EnergyPercent,
                        UnitManager.Instance.LastKnownSurroundingEnemies.Count,
                        target == null
                            ? string.Empty
                            : (target.IsMe
                                ? string.Empty
                                : string.Format("(Target HP = {0:0.##}%, D = {1:0.##} ({2:0.##}) yd)",
                                    target.HealthPercent, Math.Abs(target.Distance - target.CombatReach),
                                    target.Distance))
                        ), logColor);
            }


            await CommonCoroutines.SleepForLagDuration();

            return true;
        }