using System; using System.Collections; using Server.Gumps; using Server.Items; using Server.Mobiles; using Server.Network; using Server.Spells.Fifth; using Server.Spells.Seventh; namespace Server.Spells.Ninjitsu { public class AnimalForm : NinjaSpell { public enum MorphResult { Success, Fail, NoSkill } private static SpellInfo m_Info = new SpellInfo( "Animal Form", null, -1, 9002 ); private static Hashtable m_LastAnimalForms = new Hashtable(); private static Hashtable m_Table = new Hashtable(); private bool m_WasMoving; public AnimalForm(Mobile caster, Item scroll) : base(caster, scroll, m_Info) { } public override TimeSpan CastDelayBase => TimeSpan.FromSeconds(1.0); public override double RequiredSkill => 0.0; public override int RequiredMana => Core.ML ? 10 : 0; public override int CastRecoveryBase => Core.ML ? 10 : base.CastRecoveryBase; public override bool BlockedByAnimalForm => false; public static AnimalFormEntry[] Entries{ get; } = { new AnimalFormEntry(typeof(Kirin), 1029632, 9632, 0, 1070811, 100.0, 0x84, 0, 0, false, true, false), new AnimalFormEntry(typeof(Unicorn), 1018214, 9678, 0, 1070812, 100.0, 0x7A, 0, 0, false, true, false), new AnimalFormEntry(typeof(BakeKitsune), 1030083, 10083, 0, 1070810, 82.5, 0xF6, 0, 0, false, true, false), new AnimalFormEntry(typeof(GreyWolf), 1028482, 9681, 2309, 1070810, 82.5, 0x19, 0x8FD, 0x90E, false, true, false), new AnimalFormEntry(typeof(Llama), 1028438, 8438, 0, 1070809, 70.0, 0xDC, 0, 0, false, true, false), new AnimalFormEntry(typeof(ForestOstard), 1018273, 8503, 2212, 1070809, 70.0, 0xDB, 0x899, 0x8B0, false, true, false), new AnimalFormEntry(typeof(BullFrog), 1028496, 8496, 2003, 1070807, 50.0, 0x51, 0x7D1, 0x7D6, false, false, false), new AnimalFormEntry(typeof(GiantSerpent), 1018114, 9663, 2009, 1070808, 50.0, 0x15, 0x7D1, 0x7E2, false, false, false), new AnimalFormEntry(typeof(Dog), 1018280, 8476, 2309, 1070806, 40.0, 0xD9, 0x8FD, 0x90E, false, false, false), new AnimalFormEntry(typeof(Cat), 1018264, 8475, 2309, 1070806, 40.0, 0xC9, 0x8FD, 0x90E, false, false, false), new AnimalFormEntry(typeof(Rat), 1018294, 8483, 2309, 1070805, 20.0, 0xEE, 0x8FD, 0x90E, true, false, false), new AnimalFormEntry(typeof(Rabbit), 1028485, 8485, 2309, 1070805, 20.0, 0xCD, 0x8FD, 0x90E, true, false, false), new AnimalFormEntry(typeof(Squirrel), 1031671, 11671, 0, 0, 20.0, 0x116, 0, 0, false, false, false), new AnimalFormEntry(typeof(Ferret), 1031672, 11672, 0, 1075220, 40.0, 0x117, 0, 0, false, false, true), new AnimalFormEntry(typeof(CuSidhe), 1031670, 11670, 0, 1075221, 60.0, 0x115, 0, 0, false, false, false), new AnimalFormEntry(typeof(Reptalon), 1075202, 11669, 0, 1075222, 90.0, 0x114, 0, 0, false, false, false) }; public static void Initialize() { EventSink.Login += OnLogin; } public static void OnLogin(LoginEventArgs e) { AnimalFormContext context = GetContext(e.Mobile); if (context != null && context.SpeedBoost) e.Mobile.Send(SpeedControl.MountSpeed); } public override bool CheckCast() { if (!Caster.CanBeginAction(typeof(PolymorphSpell))) { Caster.SendLocalizedMessage(1061628); // You can't do that while polymorphed. return false; } if (TransformationSpellHelper.UnderTransformation(Caster)) { Caster.SendLocalizedMessage(1063219); // You cannot mimic an animal while in that form. return false; } if (DisguiseTimers.IsDisguised(Caster)) { Caster.SendLocalizedMessage(1061631); // You can't do that while disguised. return false; } return base.CheckCast(); } public override bool CheckDisturb(DisturbType type, bool firstCircle, bool resistable) { return false; } private bool CasterIsMoving() { return Core.TickCount - Caster.LastMoveTime <= Caster.ComputeMovementSpeed(Caster.Direction); } public override void OnBeginCast() { base.OnBeginCast(); Caster.FixedEffect(0x37C4, 10, 14, 4, 3); m_WasMoving = CasterIsMoving(); } public override bool CheckFizzle() { // Spell is initially always successful, and with no skill gain. return true; } public override void OnCast() { if (!Caster.CanBeginAction(typeof(PolymorphSpell))) { Caster.SendLocalizedMessage(1061628); // You can't do that while polymorphed. } else if (TransformationSpellHelper.UnderTransformation(Caster)) { Caster.SendLocalizedMessage(1063219); // You cannot mimic an animal while in that form. } else if (!Caster.CanBeginAction(typeof(IncognitoSpell)) || Caster.IsBodyMod && GetContext(Caster) == null) { DoFizzle(); } else if (CheckSequence()) { AnimalFormContext context = GetContext(Caster); int mana = ScaleMana(RequiredMana); if (mana > Caster.Mana) { Caster.SendLocalizedMessage(1060174, mana.ToString()); // You must have at least ~1_MANA_REQUIREMENT~ Mana to use this ability. } else if (context != null) { RemoveContext(Caster, context, true); Caster.Mana -= mana; } else if (Caster is PlayerMobile) { bool skipGump = m_WasMoving || CasterIsMoving(); if (GetLastAnimalForm(Caster) == -1 || !skipGump) { Caster.CloseGump(typeof(AnimalFormGump)); Caster.SendGump(new AnimalFormGump(Caster, Entries, this)); } else { if (Morph(Caster, GetLastAnimalForm(Caster)) == MorphResult.Fail) { DoFizzle(); } else { Caster.FixedParticles(0x3728, 10, 13, 2023, EffectLayer.Waist); Caster.Mana -= mana; } } } else { if (Morph(Caster, GetLastAnimalForm(Caster)) == MorphResult.Fail) { DoFizzle(); } else { Caster.FixedParticles(0x3728, 10, 13, 2023, EffectLayer.Waist); Caster.Mana -= mana; } } } FinishSequence(); } public int GetLastAnimalForm(Mobile m) { if (m_LastAnimalForms.Contains(m)) return (int)m_LastAnimalForms[m]; return -1; } public static MorphResult Morph(Mobile m, int entryID) { if (entryID < 0 || entryID >= Entries.Length) return MorphResult.Fail; AnimalFormEntry entry = Entries[entryID]; m_LastAnimalForms[m] = entryID; //On OSI, it's the last /attempted/ one not the last succeeded one if (m.Skills.Ninjitsu.Value < entry.ReqSkill) { string args = $"{entry.ReqSkill.ToString("F1")}\t{SkillName.Ninjitsu}\t "; m.SendLocalizedMessage(1063013, args); // You need at least ~1_SKILL_REQUIREMENT~ ~2_SKILL_NAME~ skill to use that ability. return MorphResult.NoSkill; } /* if ( !m.CheckSkill( SkillName.Ninjitsu, entry.ReqSkill, entry.ReqSkill + 37.5 ) ) return MorphResult.Fail; * * On OSI,it seems you can only gain starting at '0' using Animal form. */ double ninjitsu = m.Skills.Ninjitsu.Value; if (ninjitsu < entry.ReqSkill + 37.5) { double chance = (ninjitsu - entry.ReqSkill) / 37.5; if (chance < Utility.RandomDouble()) return MorphResult.Fail; } m.CheckSkill(SkillName.Ninjitsu, 0.0, 37.5); if (!BaseFormTalisman.EntryEnabled(m, entry.Type)) return MorphResult.Success; // Still consumes mana, just no effect BaseMount.Dismount(m); int bodyMod = entry.BodyMod; int hueMod = entry.HueMod; m.BodyMod = bodyMod; m.HueMod = hueMod; if (entry.SpeedBoost) m.Send(SpeedControl.MountSpeed); SkillMod mod = null; if (entry.StealthBonus) { mod = new DefaultSkillMod(SkillName.Stealth, true, 20.0); mod.ObeyCap = true; m.AddSkillMod(mod); } SkillMod stealingMod = null; if (entry.StealingBonus) { stealingMod = new DefaultSkillMod(SkillName.Stealing, true, 10.0); stealingMod.ObeyCap = true; m.AddSkillMod(stealingMod); } Timer timer = new AnimalFormTimer(m, bodyMod, hueMod); timer.Start(); AddContext(m, new AnimalFormContext(timer, mod, entry.SpeedBoost, entry.Type, stealingMod)); m.CheckStatTimers(); return MorphResult.Success; } public static void AddContext(Mobile m, AnimalFormContext context) { m_Table[m] = context; if (context.Type == typeof(BakeKitsune) || context.Type == typeof(GreyWolf)) m.CheckStatTimers(); } public static void RemoveContext(Mobile m, bool resetGraphics) { AnimalFormContext context = GetContext(m); if (context != null) RemoveContext(m, context, resetGraphics); } public static void RemoveContext(Mobile m, AnimalFormContext context, bool resetGraphics) { m_Table.Remove(m); if (context.SpeedBoost) m.Send(SpeedControl.Disable); SkillMod mod = context.Mod; if (mod != null) m.RemoveSkillMod(mod); mod = context.StealingMod; if (mod != null) m.RemoveSkillMod(mod); if (resetGraphics) { m.HueMod = -1; m.BodyMod = 0; } m.FixedParticles(0x3728, 10, 13, 2023, EffectLayer.Waist); context.Timer.Stop(); } public static AnimalFormContext GetContext(Mobile m) { return m_Table[m] as AnimalFormContext; } public static bool UnderTransformation(Mobile m) { return GetContext(m) != null; } public static bool UnderTransformation(Mobile m, Type type) { AnimalFormContext context = GetContext(m); return context != null && context.Type == type; } /* private delegate void AnimalFormCallback( Mobile from ); private delegate bool AnimalFormRequirementCallback( Mobile from ); */ public class AnimalFormEntry { private int m_HueModMax; private int m_HueModMin; /* private AnimalFormCallback m_TransformCallback; private AnimalFormCallback m_UntransformCallback; private AnimalFormRequirementCallback m_RequirementCallback; */ public AnimalFormEntry(Type type, TextDefinition name, int itemID, int hue, int tooltip, double reqSkill, int bodyMod, int hueModMin, int hueModMax, bool stealthBonus, bool speedBoost, bool stealingBonus) { Type = type; Name = name; ItemID = itemID; Hue = hue; Tooltip = tooltip; ReqSkill = reqSkill; BodyMod = bodyMod; m_HueModMin = hueModMin; m_HueModMax = hueModMax; StealthBonus = stealthBonus; SpeedBoost = speedBoost; StealingBonus = stealingBonus; } public Type Type{ get; } public TextDefinition Name{ get; } public int ItemID{ get; } public int Hue{ get; } public int Tooltip{ get; } public double ReqSkill{ get; } public int BodyMod{ get; } public int HueMod => Utility.RandomMinMax(m_HueModMin, m_HueModMax); public bool StealthBonus{ get; } public bool SpeedBoost{ get; } public bool StealingBonus{ get; } } public class AnimalFormGump : Gump { //TODO: Convert this for ML to the BaseImageTileButtonsgump private Mobile m_Caster; private AnimalForm m_Spell; private Item m_Talisman; public AnimalFormGump(Mobile caster, AnimalFormEntry[] entries, AnimalForm spell) : base(50, 50) { m_Caster = caster; m_Spell = spell; m_Talisman = caster.Talisman; AddPage(0); AddBackground(0, 0, 520, 404, 0x13BE); AddImageTiled(10, 10, 500, 20, 0xA40); AddImageTiled(10, 40, 500, 324, 0xA40); AddImageTiled(10, 374, 500, 20, 0xA40); AddAlphaRegion(10, 10, 500, 384); AddHtmlLocalized(14, 12, 500, 20, 1063394, 0x7FFF, false, false); //