Exemple #1
0
        /// <summary>
        /// Загрузка фаций из файла facies
        /// </summary>
        public void LoadFacies()
        {
            try
            {
                using (var sr = new System.IO.StreamReader("facies"))
                {
                    MetamorphicFacie curFacie = new MetamorphicFacie();
                    var str = "";

                    while ((str = sr.ReadLine()) != null)
                    {
                        if (str.StartsWith("#"))
                        {
                            continue;
                        }
                        if (string.IsNullOrWhiteSpace(str))
                        {
                            continue;
                        }

                        if (str.StartsWith("~"))
                        {
                            var substrs = str.Split(new[] { '|' }, StringSplitOptions.RemoveEmptyEntries);

                            curFacie = new MetamorphicFacie {
                                Name = substrs[0].Substring(1)
                            };
                            MetamorphicFacies.Add(curFacie);

                            //если есть цвет - присваиваем его свойству Color
                            if (substrs.Length > 1)
                            {
                                var colString = substrs[1].Replace(@"(", "").Replace(@")", "").Replace(" ", "");
                                var colComps  = colString.Split(new[] { ',', ';' }, StringSplitOptions.RemoveEmptyEntries);
                                if (colComps.Length < 3)
                                {
                                    continue;
                                }

                                var red   = Tools.ParseOrDefaultInt(colComps[0], -1);
                                var green = Tools.ParseOrDefaultInt(colComps[1], -1);
                                var blue  = Tools.ParseOrDefaultInt(colComps[2], -1);
                                if (red < 0 || green < 0 || blue < 0)
                                {
                                    continue;
                                }
                                curFacie.Color = Color.FromArgb(122, red, green, blue);
                            }

                            continue;
                        }

                        var substrings = str.Split(new[] { '\t', ' ' }, StringSplitOptions.RemoveEmptyEntries);
                        var curP       = Tools.ParseOrDefaultDouble(substrings[1]);
                        var curT       = Tools.ParseOrDefaultDouble(substrings[0]);

                        curFacie.Points.Add(new PTPoint(curP * 1e9, curT));
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
                return;
            }
        }
Exemple #2
0
 public MetamorphicFacie GetFacie(PTPoint point)
 {
     return(MetamorphicFacies.FirstOrDefault(x => x.IsPointWithin(point)));
 }