| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625 |
- using Microsoft.Xna.Framework;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- namespace OpenVIII.IGMData.Pool
- {
- public partial class Magic : IGMData.Pool.Base<Saves.CharacterData, byte>
- {
- #region Fields
- private const Font.ColorID @default = Font.ColorID.White;
- private const Font.ColorID junctioned = Font.ColorID.Grey;
- private const Font.ColorID nostat = Font.ColorID.Dark_Grey;
- private bool eventAdded = false;
- private bool skipRefresh = false;
- #endregion Fields
- #region Destructors
- ~Magic()
- {
- if (eventAdded)
- {
- if (!Battle)
- {
- Menu.Junction.ModeChangeHandler -= ModeChangeEvent;
- StatEventListener -= StatChangeEvent;
- }
- else if (Damageable != null)
- Damageable.BattleModeChangeEventHandler -= ModeChangeEvent;
- }
- }
- #endregion Destructors
- #region Events
- public static event EventHandler<Junction.Mode> SlotConfirmListener;
- public static event EventHandler<Damageable> SlotRefreshListener;
- public static event EventHandler<Junction.Mode> SlotUndoListener;
- public static event EventHandler<Kernel.Stat> StatEventListener;
- #endregion Events
- #region Properties
- public Damageable LastCharacter { get; private set; }
- public Junction.Mode LastMode { get; private set; }
- public int LastPage { get; private set; }
- public Kernel.Stat LastStat { get; private set; }
- public IEnumerable<Kernel.MagicData> Sort { get; private set; }
- public Junction.Mode SortMode { get; private set; }
- public Kernel.Stat Stat { get; private set; }
- public IGMData.Target.Group Target_Group => (IGMData.Target.Group)(((IGMData.Base)ITEM[Targets_Window, 0]));
- private int Targets_Window => Rows;
- #endregion Properties
- #region Methods
- public static void ChangeStat(Kernel.Stat stat) => StatEventListener?.Invoke(null, stat);
- public static Magic Create(Rectangle pos, Damageable damageable, bool battle = false)
- {
- return Create<Magic>(5, 3, new IGMDataItem.Box { Pos = pos, Title = Icons.ID.MAGIC }, 4, 13, damageable,battle:battle);
- }
- public static Magic Create() => Create<Magic>(6, 3, new IGMDataItem.Box { Pos = new Rectangle(135, 150, 300, 192), Title = Icons.ID.MAGIC }, 4, 13);
- public void FillMagic()
- {
- var pos = 0;
- var skip = Page * Rows;
- if (Battle || Sort == null)
- if (Damageable.GetEnemy(out var e))
- {
- bool add(Kernel.MagicData magic)
- {
- if (pos >= Rows)
- return false;
- if (skip-- <= 0)
- {
- addMagic(ref pos, magic);
- }
- return true;
- }
- var Unique_Magic = new HashSet<Kernel.MagicData>();
- foreach (var m in e.Abilities.Where(x => x.Magic != null))
- Unique_Magic.Add(m.Magic);
- foreach (var m in e.DrawList.Where(x => x.Data != null))
- Unique_Magic.Add(m.Data);
- foreach(var m in Unique_Magic)
- {
- if (!add(m))
- break;
- }
- ITEM[Rows, 2].Hide();
- DefaultPages = Unique_Magic.Count / Rows;
- UpdateTitle();
- }
- else
- for (var i = 0; pos < Rows && Source?.Magics != null && i < Source.Magics.Count; i++)
- {
- // Magic ID and Count
- var dat = Source.Magics[i];
- // if invalid
- if (dat.Key == 0 || Memory.KernelBin.MagicData.Count <= dat.Key || dat.Value == 0 || skip-- > 0) continue;
- addMagic(ref pos, Memory.KernelBin.MagicData[dat.Key], @default);
- }
- else
- foreach (var i in Sort)
- {
- if (pos >= Rows) break;
- if (skip-- > 0) continue;
- if (Source.Magics.ContainsKey(i.MagicDataID) && i.MagicDataID > 0 && skip-- <= 0)
- {
- switch (SortMode)
- {
- case Junction.Mode.Mag_Pool_Stat:
- if (i.JVal[Stat] == 0)
- addMagic(ref pos, i, nostat);
- else
- addMagic(ref pos, i, @default);
- break;
- case Junction.Mode.Mag_Pool_EL_D:
- if (i.JVal[Stat] * i.ElDef.Count() == 0)
- addMagic(ref pos, i, nostat);
- else
- addMagic(ref pos, i, @default);
- break;
- case Junction.Mode.Mag_Pool_EL_A:
- if (i.JVal[Stat] * i.ElAtk.Count() == 0)
- addMagic(ref pos, i, nostat);
- else
- addMagic(ref pos, i, @default);
- break;
- case Junction.Mode.Mag_Pool_ST_D:
- if (i.JVal[Stat] * i.StDef.Count() == 0)
- addMagic(ref pos, i, nostat);
- else
- addMagic(ref pos, i, @default);
- break;
- case Junction.Mode.Mag_Pool_ST_A:
- if (i.JVal[Stat] * i.StAtk.Count() == 0)
- addMagic(ref pos, i, nostat);
- else
- addMagic(ref pos, i, @default);
- break;
- default:
- addMagic(ref pos, i, @default);
- break;
- }
- }
- }
- for (; pos < Rows; pos++)
- {
- ITEM[pos, 0].Hide();
- ITEM[pos, 1].Hide();
- ITEM[pos, 2].Hide();
- BLANKS[pos] = true;
- Contents[pos] = 0;
- }
- }
- public void Generate_Preview(bool skipundo = false)
- {
- if (Stat != Kernel.Stat.None && CURSOR_SELECT < Contents.Length)
- {
- Cursor_Status |= Cursor_Status.Enabled;
- if (Source.StatJ[Stat] != Contents[CURSOR_SELECT])
- {
- if (!skipundo)
- {
- Undo();
- skipundo = false;
- }
- Source.JunctionSpell(Stat, Contents[CURSOR_SELECT]);
- SlotRefreshListener?.Invoke(this, Damageable);
- }
- }
- }
- public void Get_Slots_Values()
- {
- if (Damageable.GetCharacterData(out var c))
- Source = c;
- }
- public void Get_Sort()
- {
- if (!Battle)
- switch (SortMode)
- {
- case Junction.Mode.Mag_Pool_Stat:
- if (Stat != Kernel.Stat.None)
- Sort = Source.SortedMagic(Stat);
- break;
- case Junction.Mode.Mag_Pool_EL_D:
- Sort = Source.SortedMagic(Kernel.Stat.ElDef1);
- break;
- case Junction.Mode.Mag_Pool_EL_A:
- Sort = Source.SortedMagic(Kernel.Stat.ElAtk);
- break;
- case Junction.Mode.Mag_Pool_ST_D:
- Sort = Source.SortedMagic(Kernel.Stat.StDef1);
- break;
- case Junction.Mode.Mag_Pool_ST_A:
- Sort = Source.SortedMagic(Kernel.Stat.StAtk);
- break;
- default:
- Sort = Memory.KernelBin.MagicData.AsEnumerable();
- break;
- }
- }
- public override bool Inputs()
- {
- var ret = false;
- if (InputITEM(Target_Group, ref ret))
- { }
- else
- {
- Cursor_Status |= Cursor_Status.Enabled;
- return base.Inputs();
- }
- return ret;
- }
- public override bool Inputs_CANCEL()
- {
- if (Memory.State.Characters)
- {
- base.Inputs_CANCEL();
- if (Battle)
- {
- Hide();
- return true;
- }
- else
- {
- SlotUndoListener?.Invoke(this, (Junction.Mode)Menu.Junction.GetMode());
- SlotConfirmListener?.Invoke(this, (Junction.Mode)Menu.Junction.GetMode());
- SlotRefreshListener?.Invoke(this, Damageable);
- switch (SortMode)
- {
- case Junction.Mode.Mag_Pool_Stat:
- Menu.Junction.SetMode(Junction.Mode.Mag_Stat);
- break;
- case Junction.Mode.Mag_Pool_EL_A:
- Menu.Junction.SetMode(Junction.Mode.Mag_EL_A);
- break;
- case Junction.Mode.Mag_Pool_EL_D:
- Menu.Junction.SetMode(Junction.Mode.Mag_EL_D);
- break;
- case Junction.Mode.Mag_Pool_ST_A:
- Menu.Junction.SetMode(Junction.Mode.Mag_ST_A);
- break;
- case Junction.Mode.Mag_Pool_ST_D:
- Menu.Junction.SetMode(Junction.Mode.Mag_ST_D);
- break;
- }
- Cursor_Status &= ~Cursor_Status.Enabled;
- if (Damageable.GetCharacterData(out var c))
- Source = c;
- return true;
- }
- }
- return false;
- }
- public override bool Inputs_OKAY()
- {
- if (Battle)
- {
- Target_Group.SelectTargetWindows(Memory.KernelBin.MagicData[Contents[CURSOR_SELECT]]);
- Target_Group.ShowTargetWindows();
- }
- else
- if (Memory.State.Characters)
- {
- if (!BLANKS[CURSOR_SELECT])
- {
- skipsnd = true;
- AV.Sound.Play(31);
- base.Inputs_OKAY();
- SlotConfirmListener?.Invoke(this, (Junction.Mode)Menu.Junction.GetMode());
- if (Menu.Junction.GetMode().Equals(Junction.Mode.Mag_Pool_Stat))
- {
- Menu.Junction.SetMode(Junction.Mode.Mag_Stat);
- }
- else if (Menu.Junction.GetMode().Equals(Junction.Mode.Mag_Pool_EL_A) || Menu.Junction.GetMode().Equals(Junction.Mode.Mag_Pool_EL_D))
- {
- Menu.Junction.SetMode(Junction.Mode.Mag_EL_A);
- }
- else if (Menu.Junction.GetMode().Equals(Junction.Mode.Mag_Pool_ST_A) || Menu.Junction.GetMode().Equals(Junction.Mode.Mag_Pool_ST_D))
- {
- Menu.Junction.SetMode(Junction.Mode.Mag_ST_A);
- }
- Cursor_Status &= ~Cursor_Status.Enabled;
- Menu.Junction.Refresh();
- return true;
- }
- }
- return false;
- }
- public override void ModeChangeEvent(object sender, Enum e)
- {
- if (e.GetType() == typeof(Junction.Mode))
- UpdateOnEvent(sender, (Junction.Mode)e);
- else if (e.GetType() == typeof(Damageable.BattleMode))
- UpdateOnEvent(sender, null);
- }
- //public IGMData Values { get; private set; } = null;
- public override void Refresh()
- {
- if (!skipRefresh)
- {
- if (!eventAdded && Menu.Junction != null)
- {
- if (!Battle)
- {
- Menu.Junction.ModeChangeHandler += ModeChangeEvent;
- StatEventListener += StatChangeEvent; eventAdded = true;
- }
- else if (Damageable != null)
- {
- Damageable.BattleModeChangeEventHandler += ModeChangeEvent; eventAdded = true;
- }
- }
- base.Refresh();
- UpdateTitle();
- }
- else skipRefresh = false;
- }
- public override void Refresh(Damageable damageable)
- {
- if (Battle && eventAdded && damageable != Damageable)
- {
- eventAdded = false;
- if (Damageable != null)
- Damageable.BattleModeChangeEventHandler -= ModeChangeEvent;
- }
- base.Refresh(damageable);
- }
- public override void Reset()
- {
- HideChildren();
- Hide();
- base.Reset();
- }
- public override void UpdateTitle()
- {
- base.UpdateTitle();
- if (Pages == 1)
- {
- ((IGMDataItem.Box)CONTAINER).Title = Icons.ID.MAGIC;
- //ITEM[Count - 1, 0] = ITEM[Count - 2, 0] = null;
- }
- else
- if (Page < Pages)
- ((IGMDataItem.Box)CONTAINER).Title = (Icons.ID)((int)Icons.ID.MAGIC_PG1 + Page);
- }
- protected override void DrawITEM(int i, int d)
- {
- if (Targets_Window >= i || !Target_Group.Enabled)
- base.DrawITEM(i, d);
- }
- protected override void Init()
- {
- base.Init();
- SIZE[Rows] = SIZE[0];
- SIZE[Rows].Y = Y;
- ITEM[Rows, 2] = new IGMDataItem.Icon { Data = Icons.ID.NUM_, Pos = new Rectangle(SIZE[Rows].X + SIZE[Rows].Width - 45, SIZE[Rows].Y, 0, 0), Scale = new Vector2(2.5f) };
- for (var pos = 0; pos < Rows; pos++)
- {
- ITEM[pos, 0] = new IGMDataItem.Text { Pos = SIZE[pos] };
- ITEM[pos, 0].Hide();
- ITEM[pos, 1] = new IGMDataItem.Icon { Data = Icons.ID.JunctionSYM, Pos = new Rectangle(SIZE[pos].X + SIZE[pos].Width - 75, SIZE[pos].Y, 0, 0) };
- ITEM[pos, 1].Hide();
- ITEM[pos, 2] = new IGMDataItem.Integer { Pos = new Rectangle(SIZE[pos].X + SIZE[pos].Width - 50, SIZE[pos].Y, 0, 0), Spaces = 3 };
- ITEM[pos, 2].Hide();
- }
- ITEM[Targets_Window, 0] = IGMData.Target.Group.Create(Damageable);
- BLANKS[Rows] = true;
- Cursor_Status &= ~Cursor_Status.Horizontal;
- Cursor_Status |= Cursor_Status.Vertical;
- Cursor_Status &= ~Cursor_Status.Blinking;
- PointerZIndex = Rows - 1;
- }
- protected override void InitShift(int i, int col, int row)
- {
- base.InitShift(i, col, row);
- SIZE[i].Inflate(-22, -8);
- SIZE[i].Offset(0, 12 + (-8 * row));
- SIZE[i].Height = (int)(12 * TextScale.Y);
- }
- protected override void PAGE_NEXT()
- {
- base.PAGE_NEXT();
- UpdateOnEvent(this);
- while (Contents[0] == 0 && Page > 0)
- {
- skipsnd = true;
- base.PAGE_NEXT();
- UpdateOnEvent(this);
- }
- }
- protected override void PAGE_PREV()
- {
- base.PAGE_PREV();
- UpdateOnEvent(this);
- while (Contents[0] == 0 && Page > 0)
- {
- skipsnd = true;
- base.PAGE_PREV();
- UpdateOnEvent(this);
- }
- }
- protected override void SetCursor_select(int value)
- {
- if (value != GetCursor_select())
- {
- base.SetCursor_select(value);
- UpdateOnEvent(this);
- }
- }
- private void addMagic(ref int pos, Kernel.MagicData spell, Font.ColorID color = @default)
- {
- if (!Damageable.GetEnemy(out var e))
- {
- e = null;
- }
- var j = false;
- if (color == @default && e == null && Source != null && Source.StatJ.ContainsValue(spell.MagicDataID))
- {
- //spell is junctioned
- if (!Battle)
- color = junctioned;
- j = true;
- }
- ((IGMDataItem.Text)ITEM[pos, 0]).Data = spell.Name;
- ((IGMDataItem.Text)ITEM[pos, 0]).FontColor = color;
- ITEM[pos, 0].Show();
- if (j)
- ITEM[pos, 1].Show();
- else
- ITEM[pos, 1].Hide();
- int count = Source?.Magics[spell.MagicDataID] ?? 0;
- ((IGMDataItem.Integer)ITEM[pos, 2]).Data = count;
- if (count <= 0)
- ITEM[pos, 2].Hide();
- else
- ITEM[pos, 2].Show();
- //makes it so you cannot junction a magic to a stat that does nothing.
- BLANKS[pos] = color == nostat ? true : false;
- Contents[pos] = spell.MagicDataID;
- pos++;
- }
- private void Get_Sort_Stat()
- {
- if (Battle)
- {
- //SortMode = IGM_Junction.Mode.Mag_Pool_Stat;
- }
- else
- {
- SortMode = (Junction.Mode)Menu.Junction.GetMode();
- switch (SortMode)
- {
- default:
- case Junction.Mode.Mag_Stat:
- case Junction.Mode.Mag_Pool_Stat:
- SortMode = Junction.Mode.Mag_Pool_Stat;
- break;
- case Junction.Mode.Mag_ST_D:
- case Junction.Mode.Mag_Pool_ST_D:
- SortMode = Junction.Mode.Mag_Pool_ST_D;
- break;
- case Junction.Mode.Mag_ST_A:
- case Junction.Mode.Mag_Pool_ST_A:
- SortMode = Junction.Mode.Mag_Pool_ST_A;
- Stat = Kernel.Stat.StAtk;
- break;
- case Junction.Mode.Mag_EL_D:
- case Junction.Mode.Mag_Pool_EL_D:
- SortMode = Junction.Mode.Mag_Pool_EL_D;
- break;
- case Junction.Mode.Mag_EL_A:
- case Junction.Mode.Mag_Pool_EL_A:
- SortMode = Junction.Mode.Mag_Pool_EL_A;
- Stat = Kernel.Stat.ElAtk;
- break;
- }
- }
- }
- private void StatChangeEvent(object sender, Kernel.Stat e) => UpdateOnEvent(sender, null, e);
- private bool Undo()
- {
- SlotUndoListener?.Invoke(this, (Junction.Mode)(Menu.Junction.GetMode()));
- if (Memory.State.Characters && Damageable.GetCharacterData(out var c))
- Source = c;
- return true;
- }
- private void UpdateOnEvent(object sender, Junction.Mode? mode = null, Kernel.Stat? stat = null)
- {
- mode = mode ?? (Junction.Mode)Menu.Junction.GetMode();
- if ((
- mode == Junction.Mode.Mag_Pool_ST_A ||
- mode == Junction.Mode.Mag_Pool_ST_D ||
- mode == Junction.Mode.Mag_Pool_EL_A ||
- mode == Junction.Mode.Mag_Pool_EL_D ||
- mode == Junction.Mode.Mag_Pool_Stat) || Battle && Enabled)
- {
- Cursor_Status |= Cursor_Status.Enabled;
- }
- else
- {
- Cursor_Status &= ~Cursor_Status.Enabled;
- }
- if (Memory.State.Characters && Damageable != null)
- {
- Get_Sort_Stat();
- Stat = stat ?? Stat;
- Get_Slots_Values();
- if (SortMode != LastMode || this.Stat != LastStat || Damageable != LastCharacter)
- Get_Sort();
- var skipundo = false;
- if (Battle || !(SortMode == LastMode && Damageable == LastCharacter && this.Stat == LastStat && Page == LastPage))
- {
- // goal of these checks were to avoid updating the whole list if we don't need to.
- LastCharacter = Damageable;
- LastStat = this.Stat;
- LastPage = Page;
- LastMode = SortMode;
- skipundo = Undo();
- FillMagic();
- UpdateTitle();
- }
- if (!Battle && (
- mode == Junction.Mode.Mag_Pool_ST_A ||
- mode == Junction.Mode.Mag_Pool_ST_D ||
- mode == Junction.Mode.Mag_Pool_EL_A ||
- mode == Junction.Mode.Mag_Pool_EL_D ||
- mode == Junction.Mode.Mag_Pool_Stat))
- {
- Generate_Preview(skipundo);
- }
- }
- }
- #endregion Methods
- }
- }
|