Example #1
0
        public void getPreferences()
        {
            KeyValue pref     = null;
            KeyValue kv_files = null;

            foreach (KeyValue kv in KVData.Children)
            {
                if (kv.Key == "preferences")
                {
                    pref = kv;
                }
            }

            foreach (KeyValue kv in pref.Children)
            {
                if (kv.Key == "create_note0_lore")
                {
                    if (kv.Children.ElementAt(0).Key == "1")
                    {
                        create_note0_lore = true;
                    }
                    else
                    {
                        create_note0_lore = false;
                    }
                }
                else if (kv.Key == "kv_files")
                {
                    kv_files = kv;
                }
            }

            foreach (KeyValue kv in kv_files.Children)
            {
                CombineKVFile cf = new CombineKVFile(kv.Key);
                foreach (KeyValue kv2 in kv.Children)
                {
                    if (kv2.Key == "path")
                    {
                        cf.path = kv2.Children.ElementAt(0).Key;
                    }
                    if (kv2.Key == "activated")
                    {
                        if (kv2.Children.ElementAt(0).Key == "1")
                        {
                            cf.activated = true;
                        }
                        else
                        {
                            cf.activated = false;
                        }
                    }
                }
                combineKVFiles.Add(cf);
            }
        }
Example #2
0
        public void getPreferences()
        {
            KeyValue pref = null;
            KeyValue kv_files = null;
            foreach (KeyValue kv in KVData.Children) {
                if (kv.Key == "preferences") {
                    pref = kv;
                }
            }

            foreach (KeyValue kv in pref.Children) {
                if (kv.Key == "create_note0_lore") {
                    if (kv.Children.ElementAt(0).Key == "1") {
                        create_note0_lore = true;
                    } else {
                        create_note0_lore = false;
                    }
                } else if (kv.Key == "kv_files") {
                    kv_files = kv;
                }
            }

            foreach (KeyValue kv in kv_files.Children) {
                CombineKVFile cf = new CombineKVFile(kv.Key);
                foreach (KeyValue kv2 in kv.Children) {
                    if (kv2.Key == "path") {
                        cf.path = kv2.Children.ElementAt(0).Key;
                    }
                    if (kv2.Key == "activated") {
                        if (kv2.Children.ElementAt(0).Key == "1") {
                            cf.activated = true;
                        } else {
                            cf.activated = false;
                        }
                    }
                }
                combineKVFiles.Add(cf);
            }
        }