OSDN Git Service

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