示例#1
0
        private void button7_Click(object sender, EventArgs e)
        {
            VideoMap selected = (VideoMap)checkedListBox1.SelectedItem;

            RenameVideoMap(selected);
            LoadListBox();
        }
示例#2
0
        private void button2_Click(object sender, EventArgs e)
        {
            VideoMap newMap = new VideoMap();

            RenameVideoMap(newMap);
            EditVideoMap(newMap);
            videoMaps.Add(newMap);
            LoadListBox();
        }
示例#3
0
        private void EditVideoMap(VideoMap map)
        {
            PropertyDescriptor     pd              = TypeDescriptor.GetProperties(map)["Lines"];
            UITypeEditor           editor          = (UITypeEditor)pd.GetEditor(typeof(UITypeEditor));
            RuntimeServiceProvider serviceProvider = new RuntimeServiceProvider();

            editor.EditValue(serviceProvider, serviceProvider, map.Lines);
            LoadListBox();
        }
示例#4
0
        private void RenameVideoMap(VideoMap map)
        {
            string name = map.Name;

            if (Input.InputBox("Name", "Enter a name for the video map:", ref name) == DialogResult.OK)
            {
                map.Name = name;
            }
            LoadListBox();
        }
示例#5
0
        public static List <VideoMap> GetMapsFromFile(string filename)
        {
            List <VideoMap> maps = new List <VideoMap>();

            try
            {
                // Open the text file using a stream reader.
                using (var sr = new StreamReader(filename))
                {
                    // Read the stream as a string, and write the string to the console.
                    string   sectionName = "";
                    VideoMap currentMap  = null;
                    while (!sr.EndOfStream)
                    {
                        string line = sr.ReadLine();
                        string linedata;

                        if (line.Contains(";"))
                        {
                            linedata = line.Substring(0, line.IndexOf(";"));
                        }
                        else
                        {
                            linedata = line;
                        }
                        linedata = linedata.TrimEnd();
                        bool issectionheader = false;
                        if (linedata.Contains("[") && linedata.Contains("]"))
                        {
                            sectionName     = linedata.Substring(line.IndexOf("[") + 1, linedata.IndexOf("]") - linedata.IndexOf("[") - 1);
                            issectionheader = true;
                        }
                        if (!issectionheader && linedata.Length >= 85)
                        {
                            linedata = linedata.Replace("\t", "    ");
                            string linename = linedata.Substring(0, 25).Trim();

                            switch (sectionName.ToUpper())
                            {
                            case "SID":
                                if (linename.Length > 0)
                                {
                                    currentMap = new VideoMap()
                                    {
                                        Name = linename
                                    };
                                    maps.Add(currentMap);
                                }
                                if (currentMap != null)
                                {
                                    currentMap.Lines.Add(Line.Parse(linedata.Substring(26, 59)));
                                }
                                break;

                            case "STAR":
                                if (linename.Length > 0)
                                {
                                    currentMap = new VideoMap()
                                    {
                                        Name = linename
                                    };
                                    maps.Add(currentMap);
                                }
                                if (currentMap != null)
                                {
                                    currentMap.Lines.Add(Line.Parse(linedata.Substring(26, 59)));
                                }
                                break;

                            default:
                                break;
                            }
                        }
                    }
                }
            }
            catch (IOException e)
            {
                Console.WriteLine("The file could not be read:");
                Console.WriteLine(e.Message);
            }
            return(maps);
        }