OSDN Git Service

無条件先制対潜可能艦にFletcherとJanus改を加える
[kancollesniffer/KancolleSniffer.git] / KancolleSniffer / Model / AlarmCounter.cs
1 // Copyright (C) 2018 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 \r
17 namespace KancolleSniffer.Model\r
18 {\r
19     public class AlarmCounter\r
20     {\r
21         private readonly Func<int> _getCount;\r
22         private int _now;\r
23 \r
24         public AlarmCounter(Func<int> getCount)\r
25         {\r
26             _getCount = getCount;\r
27         }\r
28 \r
29         public int Max { get; set; }\r
30         public int Margin { private get; set; }\r
31         public bool Alarm { get; set; }\r
32         public bool TooMany => Max != 0 && Now >= Max - Margin;\r
33         public int Rest => Max == 0 ? 0 : Max - Now;\r
34 \r
35         public int Now\r
36         {\r
37             get\r
38             {\r
39                 var prev = _now;\r
40                 _now = _getCount();\r
41                 if (Max == 0)\r
42                     return _now;\r
43                 var limit = Max - Margin;\r
44                 Alarm = Alarm || prev < limit && _now >= limit;\r
45                 return _now;\r
46             }\r
47         }\r
48     }\r
49 }