private void GetSpellNames(int offset, out string name, out string abbreviature, out string reagents) { switch (_spellBookType) { case SpellBookType.Magery: SpellDefinition def = SpellsMagery.GetSpell(offset + 1); name = def.Name; abbreviature = SpellsMagery.SpecialReagentsChars[offset][1]; reagents = def.CreateReagentListString("\n"); break; case SpellBookType.Necromancy: def = SpellsNecromancy.GetSpell(offset + 1); name = def.Name; abbreviature = SpellsNecromancy.SpellsSpecialsName[offset][1]; reagents = def.CreateReagentListString("\n"); break; case SpellBookType.Chivalry: def = SpellsChivalry.GetSpell(offset + 1); name = def.Name; abbreviature = def.PowerWords; reagents = string.Empty; break; case SpellBookType.Bushido: def = SpellsBushido.GetSpell(offset + 1); name = def.Name; abbreviature = def.PowerWords; reagents = string.Empty; break; case SpellBookType.Ninjitsu: def = SpellsNinjitsu.GetSpell(offset + 1); name = def.Name; abbreviature = def.PowerWords; reagents = string.Empty; break; case SpellBookType.Spellweaving: def = SpellsSpellweaving.GetSpell(offset + 1); name = def.Name; abbreviature = def.PowerWords; reagents = string.Empty; break; case SpellBookType.Mysticism: def = SpellsMysticism.GetSpell(offset + 1); name = def.Name; abbreviature = def.PowerWords; reagents = def.CreateReagentListString("\n"); break; default: throw new ArgumentOutOfRangeException(); } }
private void GetSpellRequires(int offset, out int y, out string text) { y = 162; int manaCost = 0; int minSkill = 0; switch (_spellBookType) { case SpellBookType.Necromancy: SpellDefinition def = SpellsNecromancy.GetSpell(offset + 1); manaCost = def.ManaCost; minSkill = def.MinSkill; break; case SpellBookType.Chivalry: def = SpellsChivalry.GetSpell(offset + 1); manaCost = def.ManaCost; minSkill = def.MinSkill; break; case SpellBookType.Bushido: def = SpellsBushido.GetSpell(offset + 1); manaCost = def.ManaCost; minSkill = def.MinSkill; break; case SpellBookType.Ninjitsu: def = SpellsNinjitsu.GetSpell(offset + 1); manaCost = def.ManaCost; minSkill = def.MinSkill; break; case SpellBookType.Spellweaving: def = SpellsSpellweaving.GetSpell(offset + 1); manaCost = def.ManaCost; minSkill = def.MinSkill; break; case SpellBookType.Mysticism: def = SpellsMysticism.GetSpell(offset + 1); manaCost = def.ManaCost; minSkill = def.MinSkill; break; } text = $"Mana cost: {manaCost}\nMin. Skill: {minSkill}"; }
private SpellDefinition GetSpellDefinition(int idx) { SpellDefinition def = null; switch (_spellBookType) { case SpellBookType.Magery: def = SpellsMagery.GetSpell(idx); break; case SpellBookType.Necromancy: def = SpellsNecromancy.GetSpell(idx); break; case SpellBookType.Chivalry: def = SpellsChivalry.GetSpell(idx); break; case SpellBookType.Bushido: def = SpellsBushido.GetSpell(idx); break; case SpellBookType.Ninjitsu: def = SpellsNinjitsu.GetSpell(idx); break; case SpellBookType.Spellweaving: def = SpellsSpellweaving.GetSpell(idx); break; case SpellBookType.Mysticism: def = SpellsMysticism.GetSpell(idx); break; case SpellBookType.Bardic: def = SpellsBardic.GetSpell(idx); break; } return(def); }
private SpellDefinition?GetSpellDefinition(object sender) { Control ctrl = (Control)sender; int idx = (int)(ctrl.LocalSerial > 1000 ? ctrl.LocalSerial - 1000 : ctrl.LocalSerial - 100) + 1; SpellDefinition?def = null; switch (_spellBookType) { case SpellBookType.Magery: def = SpellsMagery.GetSpell(idx); break; case SpellBookType.Necromancy: def = SpellsNecromancy.GetSpell(idx); break; case SpellBookType.Chivalry: def = SpellsChivalry.GetSpell(idx); break; case SpellBookType.Bushido: def = SpellsBushido.GetSpell(idx); break; case SpellBookType.Ninjitsu: def = SpellsNinjitsu.GetSpell(idx); break; case SpellBookType.Spellweaving: def = SpellsSpellweaving.GetSpell(idx); break; case SpellBookType.Mysticism: def = SpellsMysticism.GetSpell(idx); break; default: throw new ArgumentOutOfRangeException(); } return(def); }
private void CreateBook() { Clear(); _pageCornerLeft = _pageCornerRight = null; GetBookInfo(_spellBookType, out Graphic bookGraphic, out Graphic minimizedGraphic, out Graphic iconStartGraphic, out int maxSpellsCount, out int spellIndexOffset, out int spellsOnPage, out int dictionaryPagesCount); AddChildren(new GumpPic(0, 0, bookGraphic, 0)); AddChildren(_pageCornerLeft = new GumpPic(50, 8, 0x08BB, 0)); _pageCornerLeft.LocalSerial = 0; _pageCornerLeft.Page = int.MaxValue; _pageCornerLeft.MouseClick += PageCornerOnMouseClick; _pageCornerLeft.MouseDoubleClick += PageCornerOnMouseDoubleClick; AddChildren(_pageCornerRight = new GumpPic(321, 8, 0x08BC, 0)); _pageCornerRight.LocalSerial = 1; _pageCornerRight.Page = 1; _pageCornerRight.MouseClick += PageCornerOnMouseClick; _pageCornerRight.MouseDoubleClick += PageCornerOnMouseDoubleClick; int totalSpells = 0; for (int circle = 0; circle < 8; circle++) { for (int i = 1; i <= 8; i++) { if (_spellBook.HasSpell(circle, i)) { _spells[circle * 8 + i - 1] = 1; totalSpells++; } } } _maxPage = (dictionaryPagesCount >> 1) + ((totalSpells + 1) >> 1); int offs = 0; bool isMageSpellbook = false; if (_spellBookType == SpellBookType.Magery) { isMageSpellbook = true; AddChildren(new Button((int)ButtonCircle.Circle_1_2, 0x08B1, 0x08B1) { X = 58, Y = 175, ButtonAction = ButtonAction.Activate, ToPage = 1 }); AddChildren(new Button((int)ButtonCircle.Circle_1_2, 0x08B2, 0x08B2) { X = 93, Y = 175, ButtonAction = ButtonAction.Activate, ToPage = 1 }); AddChildren(new Button((int)ButtonCircle.Circle_3_4, 0x08B3, 0x08B3) { X = 130, Y = 175, ButtonAction = ButtonAction.Activate, ToPage = 2 }); AddChildren(new Button((int)ButtonCircle.Circle_3_4, 0x08B4, 0x08B4) { X = 164, Y = 175, ButtonAction = ButtonAction.Activate, ToPage = 2 }); AddChildren(new Button((int)ButtonCircle.Circle_5_6, 0x08B5, 0x08B5) { X = 227, Y = 175, ButtonAction = ButtonAction.Activate, ToPage = 3 }); AddChildren(new Button((int)ButtonCircle.Circle_5_6, 0x08B6, 0x08B6) { X = 260, Y = 175, ButtonAction = ButtonAction.Activate, ToPage = 3 }); AddChildren(new Button((int)ButtonCircle.Circle_7_8, 0x08B7, 0x08B7) { X = 297, Y = 175, ButtonAction = ButtonAction.Activate, ToPage = 4 }); AddChildren(new Button((int)ButtonCircle.Circle_7_8, 0x08B8, 0x08B8) { X = 332, Y = 175, ButtonAction = ButtonAction.Activate, ToPage = 4 }); } for (int i = 1; i <= (dictionaryPagesCount >> 1); i++) { int page = i; for (int j = 0; j < 2; j++) { if (page == 1 && _spellBookType == SpellBookType.Chivalry) { Label label = new Label("Tithing points\nAvailable: " + World.Player.TithingPoints, false, 0x0288, font: 6) { X = 62, Y = 162 }; AddChildren(label, page); } int indexX = 106; int dataX = 62; int y = 0; uint spellSerial = 100; if (j % 2 != 0) { indexX = 269; dataX = 225; spellSerial = 1000; } Label text = new Label("INDEX", false, 0x0288, font: 6) { X = indexX, Y = 10 }; AddChildren(text, page); if (isMageSpellbook) { text = new Label(SpellsMagery.CircleNames[(i - 1) * 2 + j % 2], false, 0x0288, font: 6) { X = dataX, Y = 30 }; AddChildren(text, page); } for (int k = 0; k < spellsOnPage; k++) { if (_spells[offs] > 0) { GetSpellNames(offs, out string name, out string abbreviature, out string reagents); text = new HoveredLabel(name, false, 0x0288, 0x33, font: 9) { X = dataX, Y = 52 + y, LocalSerial = (uint)((dictionaryPagesCount >> 1) + (offs >> 1) + 1), AcceptMouseInput = true }; text.MouseClick += (sender, e) => { HoveredLabel l = (HoveredLabel)sender; SetActivePage((int)l.LocalSerial.Value); }; AddChildren(text, page); y += 15; } offs++; } } } int page1 = (dictionaryPagesCount >> 1) + 1; int topTextY = _spellBookType == SpellBookType.Magery ? 10 : 6; bool haveReagents = _spellBookType <= SpellBookType.Necromancy; bool haveAbbreviature = _spellBookType != SpellBookType.Bushido && _spellBookType != SpellBookType.Ninjitsu; for (int i = 0; i < maxSpellsCount; i++) { if (_spells[i] <= 0) { continue; } int iconX = 62; int topTextX = 87; int iconTextX = 112; uint iconSerial = 100 + (uint)i; if (i > 0) { if (i % 2 != 0) { iconX = 225; topTextX = 244 - 20; iconTextX = 275; iconSerial = 1000 + (uint)(i); } else { page1++; } } GetSpellNames(i, out string name, out string abbreviature, out string reagents); if (isMageSpellbook) { Label text = new Label(SpellsMagery.CircleNames[i >> 3], false, 0x0288, font: 6) { X = topTextX, Y = topTextY }; AddChildren(text, page1); text = new Label(name, false, 0x0288, 80, 6) { X = iconTextX, Y = 34 }; AddChildren(text, page1); int abbreviatureY = 26; if (text.Height < 24) { abbreviatureY = 31; } abbreviatureY += text.Height; text = new Label(abbreviature, false, 0x0288, font: 8) { X = iconTextX, Y = abbreviatureY }; AddChildren(text, page1); } else { Label text = new Label(name, false, 0x0288, font: 6) { X = topTextX, Y = topTextY }; AddChildren(text, page1); if (haveAbbreviature) { text = new Label(abbreviature, false, 0x0288, 80, 6) { X = iconTextX, Y = 34 }; AddChildren(text, page1); } } GumpPic icon = new GumpPic(iconX, 40, (Graphic)(iconStartGraphic + i), 0) { X = iconX, Y = 40, LocalSerial = iconSerial }; icon.DragBegin += (sender, e) => { GumpControl ctrl = (GumpControl)sender; int idx = (int)(ctrl.LocalSerial > 1000 ? ctrl.LocalSerial - 1000 : ctrl.LocalSerial - 100) + 1; SpellDefinition?def = null; switch (_spellBookType) { case SpellBookType.Magery: def = SpellsMagery.GetSpell(idx); break; case SpellBookType.Necromancy: def = SpellsNecromancy.GetSpell(idx); break; case SpellBookType.Chivalry: def = SpellsChivalry.GetSpell(idx); break; case SpellBookType.Bushido: def = SpellsBushido.GetSpell(idx); break; case SpellBookType.Ninjitsu: def = SpellsNinjitsu.GetSpell(idx); break; case SpellBookType.Spellweaving: def = SpellsSpellweaving.GetSpell(idx); break; case SpellBookType.Mysticism: def = SpellsMysticism.GetSpell(idx); break; default: throw new ArgumentOutOfRangeException(); } UseSpellButtonGump gump = new UseSpellButtonGump(def.Value) { X = Mouse.Position.X - 22, Y = Mouse.Position.Y - 22 }; UIManager.Add(gump); UIManager.AttemptDragControl(gump, Mouse.Position, true); }; AddChildren(icon, page1); if (haveReagents) { AddChildren(new GumpPicTiled(iconX, 88, 120, 5, 0x0835), page1); Label text = new Label("Reagents:", false, 0x0288, font: 6) { X = iconX, Y = 92 }; AddChildren(text, page1); text = new Label(reagents, false, 0x0288, font: 9) { X = iconX, Y = 114 }; AddChildren(text, page1); } if (!isMageSpellbook) { GetSpellRequires(i, out int requiriesY, out string requires); Label text = new Label(requires, false, 0x0288, font: 6) { X = iconX, Y = requiriesY }; AddChildren(text, page1); } } SetActivePage(1); }