Overwrite

Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
Unstable Kitsune
2023-11-28 23:20:26 -05:00
parent 3cd54811de
commit b918192e4e
11608 changed files with 2644205 additions and 47 deletions

View File

@@ -0,0 +1,60 @@
using System;
using System.Xml;
namespace Server.Gumps
{
public class ChildNode
{
private readonly ParentNode m_Parent;
private string m_Name;
private Point3D m_Location;
public ChildNode(XmlTextReader xml, ParentNode parent)
{
this.m_Parent = parent;
this.Parse(xml);
}
public ParentNode Parent
{
get
{
return this.m_Parent;
}
}
public string Name
{
get
{
return this.m_Name;
}
}
public Point3D Location
{
get
{
return this.m_Location;
}
}
private void Parse(XmlTextReader xml)
{
if (xml.MoveToAttribute("name"))
this.m_Name = xml.Value;
else
this.m_Name = "empty";
int x = 0, y = 0, z = 0;
if (xml.MoveToAttribute("x"))
x = Utility.ToInt32(xml.Value);
if (xml.MoveToAttribute("y"))
y = Utility.ToInt32(xml.Value);
if (xml.MoveToAttribute("z"))
z = Utility.ToInt32(xml.Value);
this.m_Location = new Point3D(x, y, z);
}
}
}

258
Scripts/Gumps/Go/GoGump.cs Normal file
View File

@@ -0,0 +1,258 @@
using System;
using Server.Network;
namespace Server.Gumps
{
public class GoGump : Gump
{
public static readonly LocationTree Felucca = new LocationTree("felucca.xml", Map.Felucca);
public static readonly LocationTree Trammel = new LocationTree("trammel.xml", Map.Trammel);
public static readonly LocationTree Ilshenar = new LocationTree("ilshenar.xml", Map.Ilshenar);
public static readonly LocationTree Malas = new LocationTree("malas.xml", Map.Malas);
public static readonly LocationTree Tokuno = new LocationTree("tokuno.xml", Map.Tokuno);
#region SA
public static readonly LocationTree TerMur = new LocationTree("termur.xml", Map.TerMur);
#endregion
public static bool OldStyle = PropsConfig.OldStyle;
public static readonly int GumpOffsetX = PropsConfig.GumpOffsetX;
public static readonly int GumpOffsetY = PropsConfig.GumpOffsetY;
public static readonly int TextHue = PropsConfig.TextHue;
public static readonly int TextOffsetX = PropsConfig.TextOffsetX;
public static readonly int OffsetGumpID = PropsConfig.OffsetGumpID;
public static readonly int HeaderGumpID = PropsConfig.HeaderGumpID;
public static readonly int EntryGumpID = PropsConfig.EntryGumpID;
public static readonly int BackGumpID = PropsConfig.BackGumpID;
public static readonly int SetGumpID = PropsConfig.SetGumpID;
public static readonly int SetWidth = PropsConfig.SetWidth;
public static readonly int SetOffsetX = PropsConfig.SetOffsetX, SetOffsetY = PropsConfig.SetOffsetY;
public static readonly int SetButtonID1 = PropsConfig.SetButtonID1;
public static readonly int SetButtonID2 = PropsConfig.SetButtonID2;
public static readonly int PrevWidth = PropsConfig.PrevWidth;
public static readonly int PrevOffsetX = PropsConfig.PrevOffsetX, PrevOffsetY = PropsConfig.PrevOffsetY;
public static readonly int PrevButtonID1 = PropsConfig.PrevButtonID1;
public static readonly int PrevButtonID2 = PropsConfig.PrevButtonID2;
public static readonly int NextWidth = PropsConfig.NextWidth;
public static readonly int NextOffsetX = PropsConfig.NextOffsetX, NextOffsetY = PropsConfig.NextOffsetY;
public static readonly int NextButtonID1 = PropsConfig.NextButtonID1;
public static readonly int NextButtonID2 = PropsConfig.NextButtonID2;
public static readonly int OffsetSize = PropsConfig.OffsetSize;
public static readonly int EntryHeight = PropsConfig.EntryHeight;
public static readonly int BorderSize = PropsConfig.BorderSize;
private static readonly bool PrevLabel = false;
private static readonly bool NextLabel = false;
private static readonly int PrevLabelOffsetX = PrevWidth + 1;
private static readonly int PrevLabelOffsetY = 0;
private static readonly int NextLabelOffsetX = -29;
private static readonly int NextLabelOffsetY = 0;
private static readonly int EntryWidth = 180;
private static readonly int EntryCount = 15;
private static readonly int TotalWidth = OffsetSize + EntryWidth + OffsetSize + SetWidth + OffsetSize;
private static readonly int TotalHeight = OffsetSize + ((EntryHeight + OffsetSize) * (EntryCount + 1));
private static readonly int BackWidth = BorderSize + TotalWidth + BorderSize;
private static readonly int BackHeight = BorderSize + TotalHeight + BorderSize;
public static void DisplayTo(Mobile from)
{
LocationTree tree;
if (from.Map == Map.Ilshenar)
tree = Ilshenar;
else if (from.Map == Map.Felucca)
tree = Felucca;
else if (from.Map == Map.Trammel)
tree = Trammel;
else if (from.Map == Map.Malas)
tree = Malas;
#region SA
else if (from.Map == Map.Tokuno)
tree = Tokuno;
else
tree = TerMur;
#endregion
ParentNode branch = null;
tree.LastBranch.TryGetValue(from, out branch);
if (branch == null)
branch = tree.Root;
if (branch != null)
from.SendGump(new GoGump(0, from, tree, branch));
}
private readonly LocationTree m_Tree;
private readonly ParentNode m_Node;
private readonly int m_Page;
private GoGump(int page, Mobile from, LocationTree tree, ParentNode node)
: base(50, 50)
{
from.CloseGump(typeof(GoGump));
tree.LastBranch[from] = node;
this.m_Page = page;
this.m_Tree = tree;
this.m_Node = node;
int x = BorderSize + OffsetSize;
int y = BorderSize + OffsetSize;
int count = node.Children.Length - (page * EntryCount);
if (count < 0)
count = 0;
else if (count > EntryCount)
count = EntryCount;
int totalHeight = OffsetSize + ((EntryHeight + OffsetSize) * (count + 1));
this.AddPage(0);
this.AddBackground(0, 0, BackWidth, BorderSize + totalHeight + BorderSize, BackGumpID);
this.AddImageTiled(BorderSize, BorderSize, TotalWidth - (OldStyle ? SetWidth + OffsetSize : 0), totalHeight, OffsetGumpID);
if (OldStyle)
this.AddImageTiled(x, y, TotalWidth - (OffsetSize * 3) - SetWidth, EntryHeight, HeaderGumpID);
else
this.AddImageTiled(x, y, PrevWidth, EntryHeight, HeaderGumpID);
if (node.Parent != null)
{
this.AddButton(x + PrevOffsetX, y + PrevOffsetY, PrevButtonID1, PrevButtonID2, 1, GumpButtonType.Reply, 0);
if (PrevLabel)
this.AddLabel(x + PrevLabelOffsetX, y + PrevLabelOffsetY, TextHue, "Previous");
}
x += PrevWidth + OffsetSize;
int emptyWidth = TotalWidth - (PrevWidth * 2) - NextWidth - (OffsetSize * 5) - (OldStyle ? SetWidth + OffsetSize : 0);
if (!OldStyle)
this.AddImageTiled(x - (OldStyle ? OffsetSize : 0), y, emptyWidth + (OldStyle ? OffsetSize * 2 : 0), EntryHeight, EntryGumpID);
this.AddHtml(x + TextOffsetX, y, emptyWidth - TextOffsetX, EntryHeight, String.Format("<center>{0}</center>", node.Name), false, false);
x += emptyWidth + OffsetSize;
if (OldStyle)
this.AddImageTiled(x, y, TotalWidth - (OffsetSize * 3) - SetWidth, EntryHeight, HeaderGumpID);
else
this.AddImageTiled(x, y, PrevWidth, EntryHeight, HeaderGumpID);
if (page > 0)
{
this.AddButton(x + PrevOffsetX, y + PrevOffsetY, PrevButtonID1, PrevButtonID2, 2, GumpButtonType.Reply, 0);
if (PrevLabel)
this.AddLabel(x + PrevLabelOffsetX, y + PrevLabelOffsetY, TextHue, "Previous");
}
x += PrevWidth + OffsetSize;
if (!OldStyle)
this.AddImageTiled(x, y, NextWidth, EntryHeight, HeaderGumpID);
if ((page + 1) * EntryCount < node.Children.Length)
{
this.AddButton(x + NextOffsetX, y + NextOffsetY, NextButtonID1, NextButtonID2, 3, GumpButtonType.Reply, 1);
if (NextLabel)
this.AddLabel(x + NextLabelOffsetX, y + NextLabelOffsetY, TextHue, "Next");
}
for (int i = 0, index = page * EntryCount; i < EntryCount && index < node.Children.Length; ++i, ++index)
{
x = BorderSize + OffsetSize;
y += EntryHeight + OffsetSize;
object child = node.Children[index];
string name = "";
if (child is ParentNode)
name = ((ParentNode)child).Name;
else if (child is ChildNode)
name = ((ChildNode)child).Name;
this.AddImageTiled(x, y, EntryWidth, EntryHeight, EntryGumpID);
this.AddLabelCropped(x + TextOffsetX, y, EntryWidth - TextOffsetX, EntryHeight, TextHue, name);
x += EntryWidth + OffsetSize;
if (SetGumpID != 0)
this.AddImageTiled(x, y, SetWidth, EntryHeight, SetGumpID);
this.AddButton(x + SetOffsetX, y + SetOffsetY, SetButtonID1, SetButtonID2, index + 4, GumpButtonType.Reply, 0);
}
}
public override void OnResponse(NetState state, RelayInfo info)
{
Mobile from = state.Mobile;
switch ( info.ButtonID )
{
case 1:
{
if (this.m_Node.Parent != null)
from.SendGump(new GoGump(0, from, this.m_Tree, this.m_Node.Parent));
break;
}
case 2:
{
if (this.m_Page > 0)
from.SendGump(new GoGump(this.m_Page - 1, from, this.m_Tree, this.m_Node));
break;
}
case 3:
{
if ((this.m_Page + 1) * EntryCount < this.m_Node.Children.Length)
from.SendGump(new GoGump(this.m_Page + 1, from, this.m_Tree, this.m_Node));
break;
}
default:
{
int index = info.ButtonID - 4;
if (index >= 0 && index < this.m_Node.Children.Length)
{
object o = this.m_Node.Children[index];
if (o is ParentNode)
{
from.SendGump(new GoGump(0, from, this.m_Tree, (ParentNode)o));
}
else
{
ChildNode n = (ChildNode)o;
from.MoveToWorld(n.Location, this.m_Tree.Map);
}
}
break;
}
}
}
}
}

View File

@@ -0,0 +1,62 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Xml;
namespace Server.Gumps
{
public class LocationTree
{
private readonly Map m_Map;
private readonly ParentNode m_Root;
private readonly Dictionary<Mobile, ParentNode> m_LastBranch;
public LocationTree(string fileName, Map map)
{
this.m_LastBranch = new Dictionary<Mobile, ParentNode>();
this.m_Map = map;
string path = Path.Combine("Data/Locations/", fileName);
if (File.Exists(path))
{
XmlTextReader xml = new XmlTextReader(new StreamReader(path));
xml.WhitespaceHandling = WhitespaceHandling.None;
this.m_Root = this.Parse(xml);
xml.Close();
}
}
public Dictionary<Mobile, ParentNode> LastBranch
{
get
{
return this.m_LastBranch;
}
}
public Map Map
{
get
{
return this.m_Map;
}
}
public ParentNode Root
{
get
{
return this.m_Root;
}
}
private ParentNode Parse(XmlTextReader xml)
{
xml.Read();
xml.Read();
xml.Read();
return new ParentNode(xml, null);
}
}
}

View File

@@ -0,0 +1,76 @@
using System;
using System.Collections;
using System.Xml;
namespace Server.Gumps
{
public class ParentNode
{
private readonly ParentNode m_Parent;
private object[] m_Children;
private string m_Name;
public ParentNode(XmlTextReader xml, ParentNode parent)
{
this.m_Parent = parent;
this.Parse(xml);
}
public ParentNode Parent
{
get
{
return this.m_Parent;
}
}
public object[] Children
{
get
{
return this.m_Children;
}
}
public string Name
{
get
{
return this.m_Name;
}
}
private void Parse(XmlTextReader xml)
{
if (xml.MoveToAttribute("name"))
this.m_Name = xml.Value;
else
this.m_Name = "empty";
if (xml.IsEmptyElement)
{
this.m_Children = new object[0];
}
else
{
ArrayList children = new ArrayList();
while (xml.Read() && (xml.NodeType == XmlNodeType.Element || xml.NodeType == XmlNodeType.Comment))
{
if (xml.NodeType == XmlNodeType.Comment)
continue;
if (xml.Name == "child")
{
ChildNode n = new ChildNode(xml, this);
children.Add(n);
}
else
{
children.Add(new ParentNode(xml, this));
}
}
this.m_Children = children.ToArray();
}
}
}
}