OSDN Git Service

修復時間が1分以内の入渠で艦娘が即座に回復するのを反映する
[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 bool Auto { get; set; }\r
28         public int Listen { get; set; }\r
29         public bool UseUpstream { get; set; }\r
30         public int UpstreamPort { get; set; }\r
31 \r
32         public ProxyConfig()\r
33         {\r
34             Auto = true;\r
35             Listen = DefaultListenPort;\r
36             UseUpstream = false;\r
37             UpstreamPort = 8888;\r
38         }\r
39     }\r
40 \r
41     public class ShipListConfig\r
42     {\r
43         public Point Location { get; set; }\r
44         public Size Size { get; set; }\r
45         public bool ShipType { get; set; }\r
46         public ListForm.SortOrder SortOrder { get; set; } = ListForm.SortOrder.ExpToNext;\r
47         public List<List<int>> ShipGroup { get; set; }\r
48 \r
49         public ShipListConfig()\r
50         {\r
51             Location = new Point(int.MinValue, int.MinValue);\r
52             ShipGroup = new List<List<int>>();\r
53         }\r
54     }\r
55 \r
56     public class LogConfig\r
57     {\r
58         public bool On { get; set; }\r
59         public string OutputDir { get; set; }\r
60         public int MaterialLogInterval { get; set; }\r
61 \r
62         public LogConfig()\r
63         {\r
64             On = true;\r
65             OutputDir = "";\r
66             MaterialLogInterval = 10;\r
67         }\r
68     }\r
69 \r
70     public class KancolleDbConfig\r
71     {\r
72         public bool On { get; set; }\r
73         public string Token { get; set; } = "";\r
74     }\r
75 \r
76     public class PushbulletConfig\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 string this[string name]\r
100         {\r
101             get => Files[Config.NotificationIndex[name]];\r
102             set => Files[Config.NotificationIndex[name]] = value;\r
103         }\r
104     }\r
105 \r
106     [Flags]\r
107     public enum NotificationType\r
108     {\r
109         FlashWindow = 1,\r
110         ShowBaloonTip = 1 << 1,\r
111         PlaySound = 1 << 2,\r
112         Pushbullet = 1 << 3,\r
113         All = (1 << 3) - 1 // Pushbullet以外\r
114     }\r
115 \r
116     public class NotificationConfig\r
117     {\r
118         public NotificationType[] Settings =\r
119             Config.NotificationNames.Select(x => NotificationType.All).ToArray();\r
120 \r
121         public NotificationType this[string name]\r
122         {\r
123             get => Settings[Config.NotificationIndex[name]];\r
124             set => Settings[Config.NotificationIndex[name]] = value;\r
125         }\r
126     }\r
127 \r
128     public class Config\r
129     {\r
130         private readonly string _baseDir = AppDomain.CurrentDomain.BaseDirectory;\r
131         private readonly string _configFileName;\r
132 \r
133         public Point Location { get; set; } = new Point(int.MinValue, int.MinValue);\r
134         public bool TopMost { get; set; }\r
135         public bool HideOnMinimized { get; set; }\r
136         public bool ExitSilently { get; set; }\r
137         public int Zoom { get; set; } = 100;\r
138         public bool FlashWindow { get; set; } = true;\r
139         public bool ShowBaloonTip { get; set; }\r
140         public bool PlaySound { get; set; } = true;\r
141         public NotificationConfig Notifications { get; set; } = new NotificationConfig();\r
142         public int MarginShips { get; set; } = 4;\r
143         public int MarginEquips { get; set; } = 10;\r
144         public List<int> NotifyConditions { get; set; }\r
145         public List<int> ResetHours { get; set; }\r
146         public bool AlwaysShowResultRank { get; set; }\r
147         public bool UsePresetAkashi { get; set; }\r
148         public SoundConfig Sounds { get; set; } = new SoundConfig();\r
149         public bool DebugLogging { get; set; }\r
150         public string DebugLogFile { get; set; } = "log.txt";\r
151         public ProxyConfig Proxy { get; set; } = new ProxyConfig();\r
152         public ShipListConfig ShipList { get; set; } = new ShipListConfig();\r
153         public LogConfig Log { get; set; } = new LogConfig();\r
154         public KancolleDbConfig KancolleDb { get; set; } = new KancolleDbConfig();\r
155         public PushbulletConfig Pushbullet { get; set; } = new PushbulletConfig();\r
156 \r
157         public static readonly string[] NotificationNames =\r
158         {\r
159             "遠征終了", "入渠終了", "建造完了", "艦娘数超過", "装備数超過",\r
160             "大破警告", "泊地修理20分経過", "泊地修理進行", "泊地修理完了", "疲労回復"\r
161         };\r
162 \r
163         public static readonly Dictionary<string, int> NotificationIndex =\r
164             NotificationNames.Select((name, i) => new {name, i}).ToDictionary(entry => entry.name, entry => entry.i);\r
165 \r
166         public Config()\r
167         {\r
168             _configFileName = Path.Combine(_baseDir, "config.xml");\r
169             ConvertPath(PrependBaseDir);\r
170         }\r
171 \r
172         public void InitializeValues()\r
173         {\r
174             NotifyConditions = new List<int>(new[] {40, 49});\r
175             ResetHours = new List<int>(new[] {2});\r
176         }\r
177 \r
178         public void Load()\r
179         {\r
180             try\r
181             {\r
182                 var serializer = new XmlSerializer(typeof(Config));\r
183                 Config config;\r
184                 using (var file = File.OpenText(_configFileName))\r
185                     config = (Config)serializer.Deserialize(file);\r
186                 foreach (var property in GetType().GetProperties())\r
187                     property.SetValue(this, property.GetValue(config, null), null);\r
188             }\r
189             catch (FileNotFoundException)\r
190             {\r
191                 InitializeValues();\r
192                 ReadOldConfig();\r
193                 Save();\r
194             }\r
195             ConvertPath(PrependBaseDir);\r
196         }\r
197 \r
198         public void Save()\r
199         {\r
200             ConvertPath(StripBaseDir);\r
201             var serializer = new XmlSerializer(typeof(Config));\r
202             using (var file = File.CreateText(_configFileName))\r
203                 serializer.Serialize(file, this);\r
204         }\r
205 \r
206         private void ConvertPath(Func<string, string> func)\r
207         {\r
208             DebugLogFile = func(DebugLogFile);\r
209             Log.OutputDir = func(Log.OutputDir);\r
210             for (var i = 0; i < Sounds.Files.Length; i++)\r
211                 Sounds.Files[i] = func(Sounds.Files[i]);\r
212         }\r
213 \r
214         private string StripBaseDir(string path)\r
215         {\r
216             if (!path.StartsWith(_baseDir))\r
217                 return path;\r
218             path = path.Substring(_baseDir.Length);\r
219             return path.StartsWith(Path.DirectorySeparatorChar.ToString()) ? path.Substring(1) : path;\r
220         }\r
221 \r
222         private string PrependBaseDir(string path) => Path.IsPathRooted(path) ? path : Path.Combine(_baseDir, path);\r
223 \r
224         private void ReadOldConfig()\r
225         {\r
226             var old = Path.Combine(_baseDir, "config.json");\r
227             dynamic json;\r
228             try\r
229             {\r
230                 json = JsonParser.Parse(File.ReadAllText(old));\r
231             }\r
232             catch (FileNotFoundException)\r
233             {\r
234                 return;\r
235             }\r
236             Location = new Point((int)json.Location.X, (int)json.Location.Y);\r
237             foreach (var property in (from prop in GetType().GetProperties()\r
238                 let type = prop.PropertyType\r
239                 where type == typeof(bool) || type == typeof(int) || type == typeof(string)\r
240                 select prop))\r
241             {\r
242                 if (!json.IsDefined(property.Name))\r
243                     continue;\r
244                 var v = json[property.Name];\r
245                 property.SetValue(this, property.PropertyType == typeof(int) ? (int)v : v);\r
246             }\r
247             NotifyConditions = new List<int>((int[])json.NotifyConditions);\r
248             ResetHours = new List<int>((int[])json.ResetHours);\r
249             Sounds.Volume = (int)json.SoundVolume;\r
250             var idx = 0;\r
251             foreach (var name in new[]\r
252             {\r
253                 "Mission", "NDock", "KDock", "MaxShips", "MaxEquips",\r
254                 "DamagedShip", "Akashi20Min", "AkashiProgress", "AkashiComplete", "Condition"\r
255             })\r
256             {\r
257                 if (json.IsDefined(name + "SoundFile"))\r
258                     Sounds.Files[idx] = json[name + "SoundFile"];\r
259                 idx++;\r
260             }\r
261             Proxy.Auto = json.Proxy.Auto;\r
262             Proxy.Listen = (int)json.Proxy.Listen;\r
263             Proxy.UseUpstream = json.Proxy.UseUpstream;\r
264             Proxy.UpstreamPort = (int)json.Proxy.UpstreamPort;\r
265             var sl = json.ShipList;\r
266             ShipList.Location = new Point((int)sl.Location.X, (int)sl.Location.Y);\r
267             ShipList.Size = new Size((int)sl.Size.Width, (int)sl.Size.Height);\r
268             ShipList.ShipType = sl.ShipType;\r
269             var sg = (int[][])sl.ShipGroup;\r
270             ShipList.ShipGroup = new List<List<int>>();\r
271             foreach (var g in sg)\r
272                 ShipList.ShipGroup.Add(new List<int>(g));\r
273             Log.On = json.Log.On;\r
274             Log.OutputDir = json.Log.OutputDir;\r
275             Log.MaterialLogInterval = (int)json.Log.MaterialLogInterval;\r
276         }\r
277     }\r
278 }