OSDN Git Service

終了時に直近の提督経験値を記録する
[kancollesniffer/KancolleSniffer.git] / KancolleSniffer / MissingData.cs
1 // Copyright (C) 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.IO;\r
18 using System.Linq;\r
19 \r
20 namespace KancolleSniffer\r
21 {\r
22     internal class MissingData\r
23     {\r
24         private static readonly string EnemySlotFile =\r
25             Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "EnemySlot.csv");\r
26 \r
27         private static Dictionary<int, int[]> _maxEq;\r
28 \r
29         public static Dictionary<int, int[]> MaxEq\r
30         {\r
31             get\r
32             {\r
33                 if (_maxEq != null)\r
34                     return _maxEq;\r
35                 _maxEq = new Dictionary<int, int[]>();\r
36                 try\r
37                 {\r
38                     foreach (var line in File.ReadLines(EnemySlotFile))\r
39                     {\r
40                         int num;\r
41                         var entry = line.Split(',').Select(e => int.TryParse(e, out num) ? num : 0).ToArray();\r
42                         _maxEq[entry[0]] = entry.Skip(1).ToArray();\r
43                     }\r
44                 }\r
45                 catch (FileNotFoundException)\r
46                 {\r
47                 }\r
48                 return _maxEq;\r
49             }\r
50         }\r
51     }\r
52 }