Esempio n. 1
0
        private void btnSave_Click(object sender, EventArgs e)
        {
            //build the xml file
            StringBuilder sb = new StringBuilder();

            sb.AppendLine("<?xml version=\"1.0\" encoding=\"utf-8\"?><waypoints>");
            for (int i = 0; i < _path.Count; i++)
            {
                PathWaypoint p = _path[i];

                string line = "";
                string tag  = null;
                if (!String.IsNullOrEmpty(p.Tag))
                {
                    tag = string.Format(" tag=\"{0}\"", p.Tag);
                }
                string movement = null;
                if (p.MovementType != MovementType.None)
                {
                    movement = string.Format(" type=\"{0}\"", p.MovementType.ToString().ToUpper());
                }

                line = string.Format("	<!-- #{0,4} --><waypoint x=\"{1}\" z=\"{2}\" y=\"{3}\"{5}{6}>{4}</waypoint>", i, p.Coordinates.X, p.Coordinates.Z, p.Coordinates.Y, p.Script, tag ?? "", movement ?? "");

                sb.AppendLine(line);
            }

            sb.AppendLine("</waypoints>");

            string result   = sb.ToString();
            string filename = Path.Combine(Path.Combine(Path.GetDirectoryName(ToonController._settings.MicroMacroPath), "scripts\\rom\\waypoints\\_newPath.xml"));

            File.WriteAllText(filename, result);
        }
Esempio n. 2
0
        private void btnAdd_Click(object sender, EventArgs e)
        {
            PathWaypoint point = new PathWaypoint();

            point.Coordinates = new Vector3(World.PlayerPos);
            _path.Add(point);
            pathWaypointBindingSource.ResetBindings(false);
        }
Esempio n. 3
0
        private void btnLoad_Click(object sender, EventArgs e)
        {
            string filename = "";

            if (dlgOpen.ShowDialog() != DialogResult.OK)
            {
                return;
            }
            filename = dlgOpen.FileName;

            _path.Clear();

            if (File.Exists(filename))
            {
                XmlDocument doc = new XmlDocument();
                doc.Load(filename);

                XmlNodeList list = doc.GetElementsByTagName("waypoint");
                for (int i = 0; i < list.Count; i++)
                {
                    PathWaypoint p = new PathWaypoint();

                    XmlNode node = list[i];

                    double x = 0, y = 0, z = 0;

                    if (node.Attributes["x"] != null)
                    {
                        x = Convert.ToDouble(node.Attributes["x"].Value);
                    }
                    if (node.Attributes["y"] != null)
                    {
                        y = Convert.ToDouble(node.Attributes["y"].Value);
                    }
                    if (node.Attributes["z"] != null)
                    {
                        z = Convert.ToDouble(node.Attributes["z"].Value);
                    }

                    if (node.Attributes["tag"] != null)
                    {
                        p.Tag = node.Attributes["tag"].Value.ToString();
                    }
                    string movement = "None";
                    if (node.Attributes["type"] != null)
                    {
                        movement = node.Attributes["type"].Value.ToString();
                    }
                    p.MovementType = (MovementType)Enum.Parse(typeof(MovementType), movement, true);

                    p.Coordinates = new Vector3(x, y, z);

                    if (node.InnerText != null)
                    {
                        p.Script = node.InnerText;
                    }

                    _path.Add(p);
                }
            }

            pathWaypointBindingSource.ResetBindings(false);
        }