public XmlAddCAGCategory(XmlAddCAGCategory parent, XmlReader xml) { Parent = parent; if (xml.MoveToAttribute("title")) { m_Title = xml.Value == "Add Menu" ? "XmlAdd Menu" : xml.Value; } else { m_Title = "empty"; } if (m_Title == "Docked") { m_Title = "Docked 2"; } if (xml.IsEmptyElement) { Nodes = new XmlAddCAGNode[0]; } else { ArrayList nodes = new ArrayList(); try { while (xml.Read() && xml.NodeType != XmlNodeType.EndElement) { if (xml.NodeType == XmlNodeType.Element && xml.Name == "object") { nodes.Add(new XmlAddCAGObject(this, xml)); } else if (xml.NodeType == XmlNodeType.Element && xml.Name == "category") { if (!xml.IsEmptyElement) { nodes.Add(new XmlAddCAGCategory(this, xml)); } } else { xml.Skip(); } } } catch (Exception ex) { Console.WriteLine("XmlCategorizedAddGump: Corrupted Data/objects.xml file detected. Not all XmlCAG objects loaded. {0}", ex); } Nodes = (XmlAddCAGNode[])nodes.ToArray(typeof(XmlAddCAGNode)); } }
public void Initialize(int page) { m_Page = page; XmlAddCAGNode[] nodes = m_Category.Nodes; int count = nodes.Length - (page * EntryCount); if (count < 0) { count = 0; } else if (count > EntryCount) { count = EntryCount; } int totalHeight = OffsetSize + ((EntryHeight + OffsetSize) * (count + 1)); AddPage(0); AddBackground(0, 0, BackWidth, BorderSize + totalHeight + BorderSize, BackGumpID); AddImageTiled(BorderSize, BorderSize, TotalWidth - (OldStyle ? SetWidth + OffsetSize : 0), totalHeight, OffsetGumpID); int x = BorderSize + OffsetSize; int y = BorderSize + OffsetSize; if (OldStyle) { AddImageTiled(x, y, TotalWidth - (OffsetSize * 3) - SetWidth, EntryHeight, HeaderGumpID); } else { AddImageTiled(x, y, PrevWidth, EntryHeight, HeaderGumpID); } if (m_Category.Parent != null) { AddButton(x + PrevOffsetX, y + PrevOffsetY, PrevButtonID1, PrevButtonID2, 1, GumpButtonType.Reply, 0); if (PrevLabel) { AddLabel(x + PrevLabelOffsetX, y + PrevLabelOffsetY, TextHue, "Previous"); } } x += PrevWidth + OffsetSize; int emptyWidth = TotalWidth - (PrevWidth * 2) - NextWidth - (OffsetSize * 5) - (OldStyle ? SetWidth + OffsetSize : 0); if (!OldStyle) { AddImageTiled(x - (OldStyle ? OffsetSize : 0), y, emptyWidth + (OldStyle ? OffsetSize * 2 : 0), EntryHeight, EntryGumpID); } AddHtml(x + TextOffsetX, y + ((EntryHeight - 20) / 2), emptyWidth - TextOffsetX, EntryHeight, String.Format("<center>{0}</center>", m_Category.Caption), false, false); x += emptyWidth + OffsetSize; if (OldStyle) { AddImageTiled(x, y, TotalWidth - (OffsetSize * 3) - SetWidth, EntryHeight, HeaderGumpID); } else { AddImageTiled(x, y, PrevWidth, EntryHeight, HeaderGumpID); } if (page > 0) { AddButton(x + PrevOffsetX, y + PrevOffsetY, PrevButtonID1, PrevButtonID2, 2, GumpButtonType.Reply, 0); if (PrevLabel) { AddLabel(x + PrevLabelOffsetX, y + PrevLabelOffsetY, TextHue, "Previous"); } } x += PrevWidth + OffsetSize; if (!OldStyle) { AddImageTiled(x, y, NextWidth, EntryHeight, HeaderGumpID); } if ((page + 1) * EntryCount < nodes.Length) { AddButton(x + NextOffsetX, y + NextOffsetY, NextButtonID1, NextButtonID2, 3, GumpButtonType.Reply, 1); if (NextLabel) { AddLabel(x + NextLabelOffsetX, y + NextLabelOffsetY, TextHue, "Next"); } } for (int i = 0, index = page * EntryCount; i < EntryCount && index < nodes.Length; ++i, ++index) { x = BorderSize + OffsetSize; y += EntryHeight + OffsetSize; XmlAddCAGNode node = nodes[index]; AddImageTiled(x, y, EntryWidth, EntryHeight, EntryGumpID); AddLabelCropped(x + TextOffsetX, y + ((EntryHeight - 20) / 2), EntryWidth - TextOffsetX, EntryHeight, TextHue, node.Caption); x += EntryWidth + OffsetSize; if (SetGumpID != 0) { AddImageTiled(x, y, SetWidth, EntryHeight, SetGumpID); } AddButton(x + SetOffsetX, y + SetOffsetY, SetButtonID1, SetButtonID2, i + 4, GumpButtonType.Reply, 0); if (node is XmlAddCAGObject) { XmlAddCAGObject obj = (XmlAddCAGObject)node; int itemID = obj.ItemID; Rectangle2D bounds = ItemBounds.Table[itemID]; if (itemID != 1 && bounds.Height < (EntryHeight * 2)) { if (bounds.Height < EntryHeight) { AddItem(x - OffsetSize - 22 - ((i % 2) * 44) - (bounds.Width / 2) - bounds.X, y + (EntryHeight / 2) - (bounds.Height / 2) - bounds.Y, itemID); } else { AddItem(x - OffsetSize - 22 - ((i % 2) * 44) - (bounds.Width / 2) - bounds.X, y + EntryHeight - 1 - bounds.Height - bounds.Y, itemID); } } } } }
private XmlAddCAGCategory() { m_Title = "no data"; Nodes = new XmlAddCAGNode[0]; }