OSDN Git Service

設定ファイルの形式をXMLに変更する
[kancollesniffer/KancolleSniffer.git] / KancolleSniffer / Config.cs
1 // Copyright (C) 2014, 2015 Kazuhiro Fujieda <fujieda@users.osdn.me>\r
2 // \r
3 // Licensed under the Apache License, Version 2.0 (the "License");\r
4 // you may not use this file except in compliance with the License.\r
5 // You may obtain a copy of the License at\r
6 //\r
7 //    http://www.apache.org/licenses/LICENSE-2.0\r
8 //\r
9 // Unless required by applicable law or agreed to in writing, software\r
10 // distributed under the License is distributed on an "AS IS" BASIS,\r
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
12 // See the License for the specific language governing permissions and\r
13 // limitations under the License.\r
14 \r
15 using System;\r
16 using System.Collections.Generic;\r
17 using System.Drawing;\r
18 using System.IO;\r
19 using System.Linq;\r
20 using System.Xml.Serialization;\r
21 \r
22 namespace KancolleSniffer\r
23 {\r
24     public class ProxyConfig\r
25     {\r
26         public const int DefaultListenPort = 8080;\r
27         public const string AutoConfigUrl = "https://kancollesniffer.osdn.jp/proxy.pac";\r
28         public const string AutoConfigUrlWithPort = "https://kancollesniffer.osdn.jp/proxy.php?port=";\r
29         public bool Auto { get; set; }\r
30         public int Listen { get; set; }\r
31         public bool UseUpstream { get; set; }\r
32         public int UpstreamPort { get; set; }\r
33 \r
34         public ProxyConfig()\r
35         {\r
36             Auto = true;\r
37             Listen = DefaultListenPort;\r
38             UseUpstream = false;\r
39             UpstreamPort = 8888;\r
40         }\r
41     }\r
42 \r
43     public class ShipListConfig\r
44     {\r
45         public Point Location { get; set; }\r
46         public Size Size { get; set; }\r
47         public bool ShipType { get; set; }\r
48         public List<List<int>> ShipGroup { get; set; }\r
49 \r
50         public ShipListConfig()\r
51         {\r
52             Location = new Point(int.MinValue, int.MinValue);\r
53             ShipGroup = new List<List<int>>();\r
54         }\r
55     }\r
56 \r
57     public class LogConfig\r
58     {\r
59         public bool On { get; set; }\r
60         public string OutputDir { get; set; }\r
61         public int MaterialLogInterval { get; set; }\r
62         public bool ServerOn { get; set; }\r
63         public int Listen { get; set; }\r
64 \r
65         public LogConfig()\r
66         {\r
67             On = true;\r
68             OutputDir = "";\r
69             MaterialLogInterval = 10;\r
70             ServerOn = true;\r
71             Listen = 8008;\r
72         }\r
73     }\r
74 \r
75     public class KancolleDbConfig\r
76     {\r
77         public bool On { get; set; }\r
78         public string Token { get; set; } = "";\r
79     }\r
80 \r
81     public class SoundConfig\r
82     {\r
83         public int Volume { get; set; } = 100;\r
84 \r
85         public string[] Files { get; set; } = {\r
86             "ensei.mp3",\r
87             "nyuukyo.mp3",\r
88             "kenzou.mp3",\r
89             "kanmusu.mp3",\r
90             "soubi.mp3",\r
91             "taiha.mp3",\r
92             "20min.mp3",\r
93             "syuuri.mp3",\r
94             "syuuri2.mp3",\r
95             "hirou.mp3"\r
96         };\r
97 \r
98         public readonly string[] SoundNames =\r
99         {\r
100             "遠征終了", "入渠終了", "建造完了", "艦娘数超過", "装備数超過",\r
101             "大破警告", "泊地修理20分経過", "泊地修理進行", "泊地修理完了", "疲労回復"\r
102         };\r
103 \r
104         private readonly Dictionary<string, int> _names = new Dictionary<string, int>();\r
105 \r
106         public SoundConfig()\r
107         {\r
108             var idx = 0;\r
109             foreach (var name in SoundNames)\r
110                 _names[name] = idx++;\r
111         }\r
112 \r
113         public string this[string name]\r
114         {\r
115             get { return Files[_names[name]]; }\r
116             set { Files[_names[name]] = value; }\r
117         }\r
118     }\r
119 \r
120     public class Config\r
121     {\r
122         private readonly string _baseDir = AppDomain.CurrentDomain.BaseDirectory;\r
123         private readonly string _configFileName;\r
124 \r
125         public Point Location { get; set; } = new Point(int.MinValue, int.MinValue);\r
126         public bool TopMost { get; set; }\r
127         public bool HideOnMinimized { get; set; }\r
128         public bool FlashWindow { get; set; } = true;\r
129         public bool ShowBaloonTip { get; set; }\r
130         public bool PlaySound { get; set; } = true;\r
131         public int MarginShips { get; set; } = 4;\r
132         public int MarginEquips { get; set; } = 10;\r
133         public List<int> NotifyConditions { get; set; } = new List<int>(new[] {40, 49});\r
134         public List<int> ResetHours { get; set; } = new List<int>(new[] {2});\r
135         public bool AlwaysShowResultRank { get; set; }\r
136         public bool UsePresetAkashi { get; set; }\r
137         public SoundConfig Sounds { get; set; } = new SoundConfig();\r
138         public bool DebugLogging { get; set; }\r
139         public string DebugLogFile { get; set; } = "log.txt";\r
140         public ProxyConfig Proxy { get; set; } = new ProxyConfig();\r
141         public ShipListConfig ShipList { get; set; } = new ShipListConfig();\r
142         public LogConfig Log { get; set; } = new LogConfig();\r
143         public KancolleDbConfig KancolleDb { get; set; } = new KancolleDbConfig();\r
144 \r
145         public Config()\r
146         {\r
147             _configFileName = Path.Combine(_baseDir, "config.xml");\r
148             ConvertPath(PrependBaseDir);\r
149         }\r
150 \r
151         public void Load()\r
152         {\r
153             try\r
154             {\r
155                 var serializer = new XmlSerializer(typeof(Config));\r
156                 Config config;\r
157                 using (var file = File.OpenText(_configFileName))\r
158                     config = (Config)serializer.Deserialize(file);\r
159                 foreach (var property in GetType().GetProperties())\r
160                     property.SetValue(this, property.GetValue(config, null), null);\r
161             }\r
162             catch (FileNotFoundException)\r
163             {\r
164                 ReadOldConfig();\r
165                 Save();\r
166             }\r
167             ConvertPath(PrependBaseDir);\r
168         }\r
169 \r
170         public void Save()\r
171         {\r
172             ConvertPath(StripBaseDir);\r
173             var serializer = new XmlSerializer(typeof(Config));\r
174             using (var file = File.CreateText(_configFileName))\r
175                 serializer.Serialize(file, this);\r
176         }\r
177 \r
178         private void ConvertPath(Func<string, string> func)\r
179         {\r
180             DebugLogFile = func(DebugLogFile);\r
181             Log.OutputDir = func(Log.OutputDir);\r
182             for (var i = 0; i < Sounds.Files.Length; i++)\r
183                 Sounds.Files[i] = func(Sounds.Files[i]);\r
184         }\r
185 \r
186         private string StripBaseDir(string path)\r
187         {\r
188             if (!path.StartsWith(_baseDir))\r
189                 return path;\r
190             path = path.Substring(_baseDir.Length);\r
191             return path.StartsWith(Path.DirectorySeparatorChar.ToString()) ? path.Substring(1) : path;\r
192         }\r
193 \r
194         private string PrependBaseDir(string path) => Path.IsPathRooted(path) ? path : Path.Combine(_baseDir, path);\r
195 \r
196         private void ReadOldConfig()\r
197         {\r
198             var old = Path.Combine(_baseDir, "config.json");\r
199             var json = (dynamic)JsonParser.Parse(File.ReadAllText(old));\r
200             Location = new Point((int)json.Location.X, (int)json.Location.Y);\r
201             foreach (var property in (from prop in GetType().GetProperties()\r
202                 let type = prop.PropertyType\r
203                 where type == typeof(bool) || type == typeof(int) || type == typeof(string)\r
204                 select prop))\r
205             {\r
206                 if (!json.IsDefined(property.Name))\r
207                     continue;\r
208                 var v = json[property.Name];\r
209                 property.SetValue(this, property.PropertyType == typeof(int) ? (int)v : v);\r
210             }\r
211             NotifyConditions = new List<int>((int[])json.NotifyConditions);\r
212             ResetHours = new List<int>((int[])json.ResetHours);\r
213             Sounds.Volume = (int)json.SoundVolume;\r
214             var idx = 0;\r
215             foreach (var name in new[]\r
216             {\r
217                 "Mission", "NDock", "KDock", "MaxShips", "MaxEquips",\r
218                 "DamagedShip", "Akashi20Min", "AkashiProgress", "AkashiComplete", "Condition"\r
219             })\r
220             {\r
221                 if (json.IsDefined(name + "SoundFile"))\r
222                     Sounds.Files[idx] = json[name + "SoundFile"];\r
223                 idx++;\r
224             }\r
225             Proxy.Auto = json.Proxy.Auto;\r
226             Proxy.Listen = (int)json.Proxy.Listen;\r
227             Proxy.UseUpstream = json.Proxy.UseUpstream;\r
228             Proxy.UpstreamPort = (int)json.Proxy.UpstreamPort;\r
229             var sl = json.ShipList;\r
230             ShipList.Location = new Point((int)sl.Location.X, (int)sl.Location.Y);\r
231             ShipList.Size = new Size((int)sl.Size.Width, (int)sl.Size.Height);\r
232             ShipList.ShipType = sl.ShipType;\r
233             var sg = (int[][])sl.ShipGroup;\r
234             ShipList.ShipGroup = new List<List<int>>();\r
235             foreach (var g in sg)\r
236                 ShipList.ShipGroup.Add(new List<int>(g));\r
237             Log.On = json.Log.On;\r
238             Log.OutputDir = json.Log.OutputDir;\r
239             Log.MaterialLogInterval = (int)json.Log.MaterialLogInterval;\r
240             Log.ServerOn = json.Log.ServerOn;\r
241             Log.Listen = (int)json.Log.Listen;\r
242         }\r
243     }\r
244 }