OSDN Git Service

d4b7259c0a9eeba54973ba44f4e12320320d58ab
[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 ShipListForm.SortOrder SortOrder { get; set; } = ShipListForm.SortOrder.ExpToNext;\r
49         public List<List<int>> ShipGroup { get; set; }\r
50 \r
51         public ShipListConfig()\r
52         {\r
53             Location = new Point(int.MinValue, int.MinValue);\r
54             ShipGroup = new List<List<int>>();\r
55         }\r
56     }\r
57 \r
58     public class LogConfig\r
59     {\r
60         public bool On { get; set; }\r
61         public string OutputDir { get; set; }\r
62         public int MaterialLogInterval { get; set; }\r
63         public bool ServerOn { get; set; }\r
64         public int Listen { get; set; }\r
65 \r
66         public LogConfig()\r
67         {\r
68             On = true;\r
69             OutputDir = "";\r
70             MaterialLogInterval = 10;\r
71             ServerOn = true;\r
72             Listen = 8008;\r
73         }\r
74     }\r
75 \r
76     public class KancolleDbConfig\r
77     {\r
78         public bool On { get; set; }\r
79         public string Token { get; set; } = "";\r
80     }\r
81 \r
82     public class SoundConfig\r
83     {\r
84         public int Volume { get; set; } = 100;\r
85 \r
86         public string[] Files { get; set; } = {\r
87             "ensei.mp3",\r
88             "nyuukyo.mp3",\r
89             "kenzou.mp3",\r
90             "kanmusu.mp3",\r
91             "soubi.mp3",\r
92             "taiha.mp3",\r
93             "20min.mp3",\r
94             "syuuri.mp3",\r
95             "syuuri2.mp3",\r
96             "hirou.mp3"\r
97         };\r
98 \r
99         public readonly string[] SoundNames =\r
100         {\r
101             "遠征終了", "入渠終了", "建造完了", "艦娘数超過", "装備数超過",\r
102             "大破警告", "泊地修理20分経過", "泊地修理進行", "泊地修理完了", "疲労回復"\r
103         };\r
104 \r
105         private readonly Dictionary<string, int> _names = new Dictionary<string, int>();\r
106 \r
107         public SoundConfig()\r
108         {\r
109             var idx = 0;\r
110             foreach (var name in SoundNames)\r
111                 _names[name] = idx++;\r
112         }\r
113 \r
114         public string this[string name]\r
115         {\r
116             get { return Files[_names[name]]; }\r
117             set { Files[_names[name]] = value; }\r
118         }\r
119     }\r
120 \r
121     public class Config\r
122     {\r
123         private readonly string _baseDir = AppDomain.CurrentDomain.BaseDirectory;\r
124         private readonly string _configFileName;\r
125 \r
126         public Point Location { get; set; } = new Point(int.MinValue, int.MinValue);\r
127         public bool TopMost { get; set; }\r
128         public bool HideOnMinimized { get; set; }\r
129         public bool FlashWindow { get; set; } = true;\r
130         public bool ShowBaloonTip { get; set; }\r
131         public bool PlaySound { get; set; } = true;\r
132         public int MarginShips { get; set; } = 4;\r
133         public int MarginEquips { get; set; } = 10;\r
134         public List<int> NotifyConditions { get; set; }\r
135         public List<int> ResetHours { get; set; }\r
136         public bool AlwaysShowResultRank { get; set; }\r
137         public bool UsePresetAkashi { get; set; }\r
138         public SoundConfig Sounds { get; set; } = new SoundConfig();\r
139         public bool DebugLogging { get; set; }\r
140         public string DebugLogFile { get; set; } = "log.txt";\r
141         public ProxyConfig Proxy { get; set; } = new ProxyConfig();\r
142         public ShipListConfig ShipList { get; set; } = new ShipListConfig();\r
143         public LogConfig Log { get; set; } = new LogConfig();\r
144         public KancolleDbConfig KancolleDb { get; set; } = new KancolleDbConfig();\r
145 \r
146         public Config()\r
147         {\r
148             _configFileName = Path.Combine(_baseDir, "config.xml");\r
149             ConvertPath(PrependBaseDir);\r
150         }\r
151 \r
152         public void InitializeValues()\r
153         {\r
154             NotifyConditions = new List<int>(new[] {40, 49});\r
155             ResetHours = new List<int>(new int[] {2});\r
156         }\r
157 \r
158         public void Load()\r
159         {\r
160             try\r
161             {\r
162                 var serializer = new XmlSerializer(typeof(Config));\r
163                 Config config;\r
164                 using (var file = File.OpenText(_configFileName))\r
165                     config = (Config)serializer.Deserialize(file);\r
166                 foreach (var property in GetType().GetProperties())\r
167                     property.SetValue(this, property.GetValue(config, null), null);\r
168             }\r
169             catch (FileNotFoundException)\r
170             {\r
171                 InitializeValues();\r
172                 ReadOldConfig();\r
173                 Save();\r
174             }\r
175             ConvertPath(PrependBaseDir);\r
176         }\r
177 \r
178         public void Save()\r
179         {\r
180             ConvertPath(StripBaseDir);\r
181             var serializer = new XmlSerializer(typeof(Config));\r
182             using (var file = File.CreateText(_configFileName))\r
183                 serializer.Serialize(file, this);\r
184         }\r
185 \r
186         private void ConvertPath(Func<string, string> func)\r
187         {\r
188             DebugLogFile = func(DebugLogFile);\r
189             Log.OutputDir = func(Log.OutputDir);\r
190             for (var i = 0; i < Sounds.Files.Length; i++)\r
191                 Sounds.Files[i] = func(Sounds.Files[i]);\r
192         }\r
193 \r
194         private string StripBaseDir(string path)\r
195         {\r
196             if (!path.StartsWith(_baseDir))\r
197                 return path;\r
198             path = path.Substring(_baseDir.Length);\r
199             return path.StartsWith(Path.DirectorySeparatorChar.ToString()) ? path.Substring(1) : path;\r
200         }\r
201 \r
202         private string PrependBaseDir(string path) => Path.IsPathRooted(path) ? path : Path.Combine(_baseDir, path);\r
203 \r
204         private void ReadOldConfig()\r
205         {\r
206             var old = Path.Combine(_baseDir, "config.json");\r
207             dynamic json;\r
208             try\r
209             {\r
210                 json = JsonParser.Parse(File.ReadAllText(old));\r
211             }\r
212             catch (FileNotFoundException)\r
213             {\r
214                 return;\r
215             }\r
216             Location = new Point((int)json.Location.X, (int)json.Location.Y);\r
217             foreach (var property in (from prop in GetType().GetProperties()\r
218                 let type = prop.PropertyType\r
219                 where type == typeof(bool) || type == typeof(int) || type == typeof(string)\r
220                 select prop))\r
221             {\r
222                 if (!json.IsDefined(property.Name))\r
223                     continue;\r
224                 var v = json[property.Name];\r
225                 property.SetValue(this, property.PropertyType == typeof(int) ? (int)v : v);\r
226             }\r
227             NotifyConditions = new List<int>((int[])json.NotifyConditions);\r
228             ResetHours = new List<int>((int[])json.ResetHours);\r
229             Sounds.Volume = (int)json.SoundVolume;\r
230             var idx = 0;\r
231             foreach (var name in new[]\r
232             {\r
233                 "Mission", "NDock", "KDock", "MaxShips", "MaxEquips",\r
234                 "DamagedShip", "Akashi20Min", "AkashiProgress", "AkashiComplete", "Condition"\r
235             })\r
236             {\r
237                 if (json.IsDefined(name + "SoundFile"))\r
238                     Sounds.Files[idx] = json[name + "SoundFile"];\r
239                 idx++;\r
240             }\r
241             Proxy.Auto = json.Proxy.Auto;\r
242             Proxy.Listen = (int)json.Proxy.Listen;\r
243             Proxy.UseUpstream = json.Proxy.UseUpstream;\r
244             Proxy.UpstreamPort = (int)json.Proxy.UpstreamPort;\r
245             var sl = json.ShipList;\r
246             ShipList.Location = new Point((int)sl.Location.X, (int)sl.Location.Y);\r
247             ShipList.Size = new Size((int)sl.Size.Width, (int)sl.Size.Height);\r
248             ShipList.ShipType = sl.ShipType;\r
249             var sg = (int[][])sl.ShipGroup;\r
250             ShipList.ShipGroup = new List<List<int>>();\r
251             foreach (var g in sg)\r
252                 ShipList.ShipGroup.Add(new List<int>(g));\r
253             Log.On = json.Log.On;\r
254             Log.OutputDir = json.Log.OutputDir;\r
255             Log.MaterialLogInterval = (int)json.Log.MaterialLogInterval;\r
256             Log.ServerOn = json.Log.ServerOn;\r
257             Log.Listen = (int)json.Log.Listen;\r
258         }\r
259     }\r
260 }