Exemplo n.º 1
0
        public void Load(FileInfo WorldConfiguration, IMapProvider mapprovider, MapEventManager eventmanager)
        {
            XmlDocument doc = new XmlDocument();
            doc.Load(WorldConfiguration.FullName);

            this.FileName = WorldConfiguration.Name;
            this.FilePath = WorldConfiguration.FullName;

            XmlNodeList worldNodes = doc.GetElementsByTagName("Worlds");
            foreach (XmlNode worldNode in worldNodes[0].ChildNodes)
            {
                World world = new World();
                world.Load(worldNode, mapprovider, eventmanager);

                this.WorldsList.Add(world.Name, world);
            }
        }
Exemplo n.º 2
0
        public void Load(XmlNode worldNode, IMapProvider mapprovider, MapEventManager mapmanager)
        {
            foreach (XmlNode node in worldNode.ChildNodes)
            {
                if (node.Name == "DefaultSpawn")
                {
                    this.DefaultSpawn = node.InnerText;
                }
                else if (node.Name == "MapLoc")
                {
                    /* Load the map header from an XML node */
                    MapHeader header = new MapHeader();
                    header.MapProvider = new XMLMapProvider();
                    header.MapManager = mapmanager;

                    int x = 0, y = 0;

                    foreach(XmlNode cnode in node.ChildNodes)
                    {
                        if(cnode.Name == "Name")
                            header.MapName = cnode.InnerText;
                        else if(cnode.Name == "FilePath")
                            header.MapFileLocation = Path.Combine(Environment.CurrentDirectory, "Maps\\" + cnode.InnerText);
                        else if(cnode.Name == "X")
                            x = Convert.ToInt32(cnode.InnerText);
                        else if(cnode.Name == "Y")
                            y = Convert.ToInt32(cnode.InnerText);
                    }

                    header.MapLocation = new MapPoint(x, y);

                    this.MapList.Add(header.MapName, header);
                }
            }

            var worldName = worldNode.Attributes.GetNamedItem("Name");
            this.Name = worldName.InnerText;
            CalcWorldSize();
        }
Exemplo n.º 3
0
        public Map GetMap(object providerdata, MapEventManager mapmanager)
        {
            FileInfo MapPath = (FileInfo)providerdata;
            if(!MapPath.Exists)
                throw new ArgumentException("Invalid file path. Map does not exist.");

            Map Map = new Map();

            XmlDocument doc = new XmlDocument();
            doc.Load(MapPath.FullName);

            XmlNodeList nodes = doc.GetElementsByTagName("Map");
            XmlNodeList innerNodes = nodes[0].ChildNodes;

            for(int i = 0; i < innerNodes.Count; i++)
            {
                if(innerNodes[i].Name == "Name")
                    Map.Name = innerNodes[i].InnerText;

                else if(innerNodes[i].Name == "TileSet")
                    Map.TextureName = innerNodes[i].InnerText;

                else if(innerNodes[i].Name == "MapSize")
                {
                    int x = 0, y = 0;

                    foreach(XmlNode node in innerNodes[i].ChildNodes)
                    {
                        if(node.Name == "X")
                            x = Convert.ToInt32(node.InnerText);
                        else if(node.Name == "Y")
                            y = Convert.ToInt32(node.InnerText);
                    }
                    Map.MapSize = new MapPoint(x, y);
                }
                else if(innerNodes[i].Name == "TilePixelSize")
                {
                    int size = Convert.ToInt32(innerNodes[i].InnerText);
                    Map.TileSize = new ScreenPoint(size, size); // Tiles are always square
                }

                else if(innerNodes[i].Name == "UnderLayer")
                {
                    string[] baseText = innerNodes[i].InnerText.Replace("\r\n", string.Empty).Replace("   ", string.Empty).Trim().Split(' ');

                    Map.UnderLayer = Array.ConvertAll<string, int>(baseText, new Converter<string, int>(this.ConvertStringToInt));
                }

                else if(innerNodes[i].Name == "BaseLayer")
                {
                    string[] baseText = innerNodes[i].InnerText.Replace("\r\n", string.Empty).Replace("   ", string.Empty).Trim().Split(' ');

                    Map.BaseLayer = Array.ConvertAll<string, int>(baseText, new Converter<string, int>(this.ConvertStringToInt));
                }

                else if(innerNodes[i].Name == "MiddleLayer")
                {
                    string[] baseText = innerNodes[i].InnerText.Replace("\r\n", string.Empty).Replace("   ", string.Empty).Trim().Split(' ');

                    Map.MiddleLayer = Array.ConvertAll<string, int>(baseText, new Converter<string, int>(this.ConvertStringToInt));
                }

                else if(innerNodes[i].Name == "TopLayer")
                {
                    string[] baseText = innerNodes[i].InnerText.Replace("\r\n", string.Empty).Replace("   ", string.Empty).Trim().Split(' ');

                    Map.TopLayer = Array.ConvertAll<string, int>(baseText, new Converter<string, int>(this.ConvertStringToInt));
                }
                else if(innerNodes[i].Name == "CollisionLayer")
                {
                    string[] baseText = innerNodes[i].InnerText.Replace("\r\n", string.Empty).Replace("   ", string.Empty).Trim().Split(' ');

                    Map.CollisionLayer = Array.ConvertAll<string, int>(baseText, new Converter<string, int>(this.ConvertStringToInt));
                }
                else if(innerNodes[i].Name == "AnimatedTiles")
                {
                    XmlNodeList tiles = innerNodes[i].ChildNodes;

                    foreach(XmlNode node in tiles)
                    {
                        int tileID = 0;
                        int frameCount = 0;
                        Rectangle tileRect = Rectangle.Empty;

                        foreach(XmlNode subnode in node.ChildNodes)
                        {
                            if(subnode.Name == "TileID")
                                tileID = Convert.ToInt32(subnode.InnerText);
                            else if(subnode.Name == "FrameCount")
                                frameCount = Convert.ToInt32(subnode.InnerText);
                            else if(subnode.Name == "TileRect")
                            {
                                var data = Array.ConvertAll<string, int>(subnode.InnerText.Split(' '), new Converter<string, int>(this.ConvertStringToInt));
                                tileRect = new Rectangle(data[0], data[1], data[2], data[3]);
                            }

                        }

                        Map.AnimatedTiles.Add(tileID, new FrameAnimation(tileRect, frameCount));
                    }
                }
                else if(innerNodes[i].Name == "Events" && mapmanager != null)
                {
                    if(Map.EventList.Count > 0) // Already loaded? Don't load again
                        continue;

                    var root = innerNodes[i];

                    XmlNodeList events = root.ChildNodes;

                    foreach(XmlNode node in events)
                    {
                        Map.EventList.Add(mapmanager.LoadEventFromXml(node));
                    }
                }
            }

            return Map;
        }