OSDN Git Service

連合艦隊表示のときに連合の種類を表示する
[kancollesniffer/KancolleSniffer.git] / KancolleSniffer / MainForm.cs
1 // Copyright (C) 2013, 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.ComponentModel;\r
18 using System.Diagnostics;\r
19 using System.Drawing;\r
20 using System.Globalization;\r
21 using System.IO;\r
22 using System.Linq;\r
23 using System.Net;\r
24 using System.Runtime.InteropServices;\r
25 using System.Text;\r
26 using System.Text.RegularExpressions;\r
27 using System.Threading;\r
28 using System.Threading.Tasks;\r
29 using System.Windows.Forms;\r
30 using KancolleSniffer.Log;\r
31 using KancolleSniffer.Model;\r
32 using KancolleSniffer.Net;\r
33 using KancolleSniffer.Util;\r
34 using KancolleSniffer.View;\r
35 using Microsoft.CSharp.RuntimeBinder;\r
36 using Timer = System.Windows.Forms.Timer;\r
37 using static System.Math;\r
38 \r
39 namespace KancolleSniffer\r
40 {\r
41     public partial class MainForm : Form\r
42     {\r
43         private readonly Sniffer _sniffer = new Sniffer();\r
44         private readonly Config _config = new Config();\r
45         private readonly ConfigDialog _configDialog;\r
46         private readonly ProxyManager _proxyManager;\r
47         private readonly ResizableToolTip _toolTip = new ResizableToolTip {ShowAlways = true};\r
48         private readonly ResizableToolTip _toolTipQuest = new ResizableToolTip {ShowAlways = true, AutoPopDelay = 10000};\r
49         private readonly ResizableToolTip _tooltipCopy = new ResizableToolTip {AutomaticDelay = 0};\r
50         private int _currentFleet;\r
51         private bool _combinedFleet;\r
52         private readonly Label[] _labelCheckFleets;\r
53         private readonly MainFormLabels _mainLabels;\r
54         private readonly ListForm _listForm;\r
55         private readonly NotificationManager _notificationManager;\r
56         private bool _started;\r
57         private bool _timerEnabled;\r
58         private string _debugLogFile;\r
59         private IEnumerator<string> _playLog;\r
60         private DateTime _prev, _now;\r
61         private bool _inSortie;\r
62 \r
63         private readonly ErrorDialog _errorDialog = new ErrorDialog();\r
64         private readonly ErrorLog _errorLog;\r
65 \r
66         public MainForm()\r
67         {\r
68             InitializeComponent();\r
69             HttpProxy.AfterSessionComplete += HttpProxy_AfterSessionComplete;\r
70             _configDialog = new ConfigDialog(_config, this);\r
71             _labelCheckFleets = new[] {labelCheckFleet1, labelCheckFleet2, labelCheckFleet3, labelCheckFleet4};\r
72 \r
73             // この時点でAutoScaleDimensions == CurrentAutoScaleDimensionsなので、\r
74             // MainForm.Designer.csのAutoScaleDimensionsの6f,12fを使う。\r
75             ShipLabel.ScaleFactor = new SizeF(CurrentAutoScaleDimensions.Width / 6f,\r
76                 CurrentAutoScaleDimensions.Height / 12f);\r
77 \r
78             SetupFleetClick();\r
79             _mainLabels = new MainFormLabels();\r
80             _mainLabels.CreateAkashiTimers(panelShipInfo);\r
81             _mainLabels.CreateShipLabels(panelShipInfo, ShowShipOnShipList);\r
82             _mainLabels.CreateAkashiTimers7(panel7Ships);\r
83             _mainLabels.CreateShipLabels7(panel7Ships, ShowShipOnShipList);\r
84             _mainLabels.CreateCombinedShipLabels(panelCombinedFleet, ShowShipOnShipList);\r
85             _mainLabels.CreateNDockLabels(panelDock, labelNDock_Click);\r
86             panelRepairList.CreateLabels(panelRepairList_Click);\r
87             labelPresetAkashiTimer.BackColor = ShipLabel.ColumnColors[1];\r
88             _listForm = new ListForm(_sniffer, _config) {Owner = this};\r
89             _notificationManager = new NotificationManager(Alarm);\r
90             _config.Load();\r
91             _proxyManager = new ProxyManager(_config, this);\r
92             _errorLog = new ErrorLog(_sniffer);\r
93             _proxyManager.UpdatePacFile();\r
94             PerformZoom();\r
95             _mainLabels.AdjustAkashiTimers();\r
96             LoadData();\r
97             _sniffer.RepeatingTimerController = new RepeatingTimerController(_notificationManager, _config);\r
98         }\r
99 \r
100         /// <summary>\r
101         /// パネルのz-orderがくるうのを避ける\r
102         /// https://stackoverflow.com/a/5777090/1429506\r
103         /// </summary>\r
104         private void MainForm_Shown(object sender, EventArgs e)\r
105         {\r
106             // ReSharper disable once NotAccessedVariable\r
107             IntPtr handle;\r
108             foreach (var panel in new[] {panelShipInfo, panel7Ships, panelCombinedFleet})\r
109                 // ReSharper disable once RedundantAssignment\r
110                 handle = panel.Handle;\r
111         }\r
112 \r
113         private readonly FileSystemWatcher _watcher = new FileSystemWatcher\r
114         {\r
115             Path = AppDomain.CurrentDomain.BaseDirectory,\r
116             NotifyFilter = NotifyFilters.LastWrite\r
117         };\r
118 \r
119         private readonly Timer _watcherTimer = new Timer {Interval = 1000};\r
120 \r
121         private void LoadData()\r
122         {\r
123             var target = "";\r
124             _sniffer.LoadState();\r
125             _watcher.SynchronizingObject = this;\r
126             _watcherTimer.Tick += (sender, ev) =>\r
127             {\r
128                 _watcherTimer.Stop();\r
129                 switch (target)\r
130                 {\r
131                     case "status.xml":\r
132                         _sniffer.LoadState();\r
133                         break;\r
134                     case "TP.csv":\r
135                         _sniffer.AdditionalData.LoadTpSpec();\r
136                         break;\r
137                 }\r
138             };\r
139             _watcher.Changed += (sender, ev) =>\r
140             {\r
141                 target = ev.Name;\r
142                 _watcherTimer.Stop();\r
143                 _watcherTimer.Start();\r
144             };\r
145             _watcher.EnableRaisingEvents = true;\r
146         }\r
147 \r
148         private class RepeatingTimerController : Sniffer.IRepeatingTimerController\r
149         {\r
150             private readonly NotificationManager _manager;\r
151             private readonly Config _config;\r
152 \r
153             public RepeatingTimerController(NotificationManager manager, Config config)\r
154             {\r
155                 _manager = manager;\r
156                 _config = config;\r
157             }\r
158 \r
159             public void Stop(string key)\r
160             {\r
161                 _manager.StopRepeat(key,\r
162                     (key == "入渠終了" || key == "遠征終了") &&\r
163                     (_config.Notifications[key].Flags & NotificationType.Cont) != 0);\r
164             }\r
165 \r
166             public void Stop(string key, int fleet) => _manager.StopRepeat(key, fleet);\r
167 \r
168             public void Suspend(string exception = null) => _manager.SuspendRepeat(exception);\r
169 \r
170             public void Resume() => _manager.ResumeRepeat();\r
171         }\r
172 \r
173         private void HttpProxy_AfterSessionComplete(HttpProxy.Session session)\r
174         {\r
175             BeginInvoke(new Action<HttpProxy.Session>(ProcessRequest), session);\r
176         }\r
177 \r
178         private void ProcessRequest(HttpProxy.Session session)\r
179         {\r
180             var url = session.Request.PathAndQuery;\r
181             if (!url.Contains("kcsapi/"))\r
182                 return;\r
183             var request = session.Request.BodyAsString;\r
184             var response = session.Response.BodyAsString;\r
185             if (response == null || !response.StartsWith("svdata="))\r
186             {\r
187                 WriteDebugLog(url, request, response);\r
188                 return;\r
189             }\r
190             response = UnEscapeString(response.Remove(0, "svdata=".Length));\r
191             WriteDebugLog(url, request, response);\r
192             ProcessRequestMain(url, request, response);\r
193         }\r
194 \r
195         private void ProcessRequestMain(string url, string request, string response)\r
196         {\r
197             try\r
198             {\r
199                 UpdateInfo(_sniffer.Sniff(url, request, JsonParser.Parse(response)));\r
200                 _errorLog.CheckBattleApi(url, request, response);\r
201             }\r
202 \r
203             catch (RuntimeBinderException e)\r
204             {\r
205                 if (_errorDialog.ShowDialog(this,\r
206                         "艦これに仕様変更があったか、受信内容が壊れています。",\r
207                         _errorLog.GenerateErrorLog(url, request, response, e.ToString())) == DialogResult.Abort)\r
208                     Exit();\r
209             }\r
210             catch (LogIOException e)\r
211             {\r
212                 // ReSharper disable once PossibleNullReferenceException\r
213                 if (_errorDialog.ShowDialog(this, e.Message, e.InnerException.ToString()) == DialogResult.Abort)\r
214                     Exit();\r
215             }\r
216             catch (BattleResultError)\r
217             {\r
218                 if (_errorDialog.ShowDialog(this, "戦闘結果の計算に誤りがあります。",\r
219                         _errorLog.GenerateBattleErrorLog()) == DialogResult.Abort)\r
220                     Exit();\r
221             }\r
222             catch (Exception e)\r
223             {\r
224                 if (_errorDialog.ShowDialog(this, "エラーが発生しました。",\r
225                         _errorLog.GenerateErrorLog(url, request, response, e.ToString())) == DialogResult.Abort)\r
226                     Exit();\r
227             }\r
228         }\r
229 \r
230         private void Exit()\r
231         {\r
232             _proxyManager.Shutdown();\r
233             Environment.Exit(1);\r
234         }\r
235 \r
236         private void WriteDebugLog(string url, string request, string response)\r
237         {\r
238             if (_debugLogFile != null)\r
239             {\r
240                 File.AppendAllText(_debugLogFile,\r
241                     $"date: {DateTime.Now:g}\nurl: {url}\nrequest: {request}\nresponse: {response ?? "(null)"}\n");\r
242             }\r
243         }\r
244 \r
245         private string UnEscapeString(string s)\r
246         {\r
247             try\r
248             {\r
249                 var rx = new Regex(@"\\[uU]([0-9A-Fa-f]{4})");\r
250                 return rx.Replace(s,\r
251                     match => ((char)int.Parse(match.Value.Substring(2), NumberStyles.HexNumber)).ToString());\r
252             }\r
253             catch (ArgumentException)\r
254             {\r
255                 return s;\r
256             }\r
257         }\r
258 \r
259         private void UpdateInfo(Sniffer.Update update)\r
260         {\r
261             if (update == Sniffer.Update.Start)\r
262             {\r
263                 labelLogin.Visible = false;\r
264                 linkLabelGuide.Visible = false;\r
265                 _started = true;\r
266                 return;\r
267             }\r
268             if (!_started)\r
269                 return;\r
270             if (_now == DateTime.MinValue)\r
271                 _now = DateTime.Now;\r
272             if ((update & Sniffer.Update.Item) != 0)\r
273                 UpdateItemInfo();\r
274             if ((update & Sniffer.Update.Timer) != 0)\r
275                 UpdateTimers();\r
276             if ((update & Sniffer.Update.NDock) != 0)\r
277                 UpdateNDocLabels();\r
278             if ((update & Sniffer.Update.Mission) != 0)\r
279                 UpdateMissionLabels();\r
280             if ((update & Sniffer.Update.QuestList) != 0)\r
281                 UpdateQuestList();\r
282             if ((update & Sniffer.Update.Ship) != 0)\r
283                 UpdateShipInfo();\r
284             if ((update & Sniffer.Update.Battle) != 0)\r
285                 UpdateBattleInfo();\r
286             if ((update & Sniffer.Update.Cell) != 0)\r
287                 UpdateCellInfo();\r
288         }\r
289 \r
290         private void MainForm_Load(object sender, EventArgs e)\r
291         {\r
292             RestoreLocation();\r
293             if (_config.HideOnMinimized && WindowState == FormWindowState.Minimized)\r
294                 ShowInTaskbar = false;\r
295             if (_config.ShowHpInPercent)\r
296                 _mainLabels.ToggleHpPercent();\r
297             if (_config.ShipList.Visible)\r
298                 _listForm.Show();\r
299             ApplyConfig();\r
300             ApplyDebugLogSetting();\r
301             ApplyLogSetting();\r
302             ApplyProxySetting();\r
303             CheckVersionUp((current, latest) =>\r
304             {\r
305                 if (latest == current)\r
306                     return;\r
307                 linkLabelGuide.Text = $"バージョン{latest}があります。";\r
308                 linkLabelGuide.LinkArea = new LinkArea(0, linkLabelGuide.Text.Length);\r
309                 linkLabelGuide.Click += (obj, ev) =>\r
310                 {\r
311                     Process.Start("https://ja.osdn.net/rel/kancollesniffer/" + latest);\r
312                 };\r
313             });\r
314         }\r
315 \r
316         public async void CheckVersionUp(Action<string, string> action)\r
317         {\r
318             var current = string.Join(".", Application.ProductVersion.Split('.').Take(2));\r
319             try\r
320             {\r
321                 var latest = (await new WebClient().DownloadStringTaskAsync("http://kancollesniffer.osdn.jp/version"))\r
322                     .TrimEnd();\r
323                 try\r
324                 {\r
325                     action(current, latest);\r
326                 }\r
327                 catch (InvalidOperationException)\r
328                 {\r
329                 }\r
330             }\r
331             catch (WebException)\r
332             {\r
333             }\r
334         }\r
335 \r
336         private void MainForm_FormClosing(object sender, FormClosingEventArgs e)\r
337         {\r
338             if (!_config.ExitSilently)\r
339             {\r
340                 using (var dialog = new ConfirmDialog())\r
341                 {\r
342                     if (dialog.ShowDialog(this) != DialogResult.Yes)\r
343                     {\r
344                         e.Cancel = true;\r
345                         return;\r
346                     }\r
347                 }\r
348             }\r
349             e.Cancel = false;\r
350             _sniffer.FlashLog();\r
351             _config.Location = (WindowState == FormWindowState.Normal ? Bounds : RestoreBounds).Location;\r
352             _config.ShowHpInPercent = _mainLabels.ShowHpInPercent;\r
353             _config.ShipList.Visible = _listForm.Visible && _listForm.WindowState == FormWindowState.Normal;\r
354             _config.Save();\r
355             _sniffer.SaveState();\r
356             _proxyManager.Shutdown();\r
357         }\r
358 \r
359         private void MainForm_Resize(object sender, EventArgs e)\r
360         {\r
361             ShowInTaskbar = !(_config.HideOnMinimized && WindowState == FormWindowState.Minimized);\r
362         }\r
363 \r
364         private void notifyIconMain_MouseDoubleClick(object sender, MouseEventArgs e)\r
365         {\r
366             NotifyIconOpenToolStripMenuItem_Click(sender, e);\r
367         }\r
368 \r
369         private void NotifyIconOpenToolStripMenuItem_Click(object sender, EventArgs e)\r
370         {\r
371             ShowInTaskbar = true;\r
372             WindowState = FormWindowState.Normal;\r
373             TopMost = _config.TopMost; // 最前面に表示されなくなることがあるのを回避する\r
374             Activate();\r
375         }\r
376 \r
377         private void ExitToolStripMenuItem_Click(object sender, EventArgs e)\r
378         {\r
379             Close();\r
380         }\r
381 \r
382         private void ConfigToolStripMenuItem_Click(object sender, EventArgs e)\r
383         {\r
384             if (_configDialog.ShowDialog(this) == DialogResult.OK)\r
385             {\r
386                 _config.Save();\r
387                 ApplyConfig();\r
388                 StopRepeatingTimer(_configDialog.RepeatSettingsChanged);\r
389             }\r
390         }\r
391 \r
392         private void StopRepeatingTimer(IEnumerable<string> names)\r
393         {\r
394             foreach (var name in names)\r
395                 _notificationManager.StopRepeat(name);\r
396         }\r
397 \r
398         private void PerformZoom()\r
399         {\r
400             if (_config.Zoom == 100)\r
401                 return;\r
402             var prev = CurrentAutoScaleDimensions;\r
403             foreach (var control in new Control[]\r
404             {\r
405                 this, _listForm, labelLogin, linkLabelGuide,\r
406                 _configDialog, _configDialog.NotificationConfigDialog,\r
407                 contextMenuStripMain, _errorDialog\r
408             })\r
409             {\r
410                 control.Font = new Font(control.Font.FontFamily, control.Font.Size * _config.Zoom / 100);\r
411             }\r
412             foreach (var toolTip in new[]{_toolTip, _toolTipQuest, _tooltipCopy})\r
413             {\r
414                 toolTip.Font = new Font(toolTip.Font.FontFamily, toolTip.Font.Size * _config.Zoom / 100);\r
415             }\r
416             ShipLabel.LatinFont = new Font("Tahoma", 8f * _config.Zoom / 100);\r
417             var cur = CurrentAutoScaleDimensions;\r
418             ShipLabel.ScaleFactor = new SizeF(ShipLabel.ScaleFactor.Width * cur.Width / prev.Width,\r
419                 ShipLabel.ScaleFactor.Height * cur.Height / prev.Height);\r
420         }\r
421 \r
422         private void RestoreLocation()\r
423         {\r
424             if (_config.Location.X == int.MinValue)\r
425                 return;\r
426             if (IsTitleBarOnAnyScreen(_config.Location))\r
427                 Location = _config.Location;\r
428         }\r
429 \r
430         private void ApplyConfig()\r
431         {\r
432             _listForm.TopMost = TopMost = _config.TopMost;\r
433             _sniffer.ShipCounter.Margin = _config.MarginShips;\r
434             UpdateNumOfShips();\r
435             _sniffer.ItemCounter.Margin = _config.MarginEquips;\r
436             UpdateNumOfEquips();\r
437             _sniffer.Achievement.ResetHours = _config.ResetHours;\r
438             labelAkashiRepair.Visible = labelAkashiRepairTimer.Visible =\r
439                 labelPresetAkashiTimer.Visible = _config.UsePresetAkashi;\r
440         }\r
441 \r
442         public void ApplyDebugLogSetting()\r
443         {\r
444             _debugLogFile = _config.DebugLogging ? _config.DebugLogFile : null;\r
445         }\r
446 \r
447         public bool ApplyProxySetting()\r
448         {\r
449             return _proxyManager.ApplyConfig();\r
450         }\r
451 \r
452         public void ApplyLogSetting()\r
453         {\r
454             LogServer.OutputDir = _config.Log.OutputDir;\r
455             LogServer.LogProcessor = new LogProcessor(_sniffer.Material.MaterialHistory, _sniffer.MapDictionary);\r
456             _sniffer.EnableLog(_config.Log.On ? LogType.All : LogType.None);\r
457             _sniffer.MaterialLogInterval = _config.Log.MaterialLogInterval;\r
458             _sniffer.LogOutputDir = _config.Log.OutputDir;\r
459         }\r
460 \r
461         public static bool IsTitleBarOnAnyScreen(Point location)\r
462         {\r
463             var rect = new Rectangle(\r
464                 new Point(location.X + SystemInformation.IconSize.Width + SystemInformation.HorizontalFocusThickness,\r
465                     location.Y + SystemInformation.CaptionHeight), new Size(60, 1));\r
466             return Screen.AllScreens.Any(screen => screen.WorkingArea.Contains(rect));\r
467         }\r
468 \r
469         private void timerMain_Tick(object sender, EventArgs e)\r
470         {\r
471             if (_timerEnabled)\r
472             {\r
473                 try\r
474                 {\r
475                     _now = DateTime.Now;\r
476                     UpdateTimers();\r
477                     NotifyTimers();\r
478                     _prev = _now;\r
479                 }\r
480                 catch (Exception ex)\r
481                 {\r
482                     if (_errorDialog.ShowDialog(this, "エラーが発生しました。", ex.ToString()) == DialogResult.Abort)\r
483                         Exit();\r
484                 }\r
485             }\r
486             if (_playLog == null || _configDialog.Visible)\r
487             {\r
488                 labelPlayLog.Visible = false;\r
489                 return;\r
490             }\r
491             PlayLog();\r
492         }\r
493 \r
494         public void SetPlayLog(string file)\r
495         {\r
496             _playLog = File.ReadLines(file).GetEnumerator();\r
497         }\r
498 \r
499         private void PlayLog()\r
500         {\r
501             var lines = new List<string>();\r
502             foreach (var s in new[] {"url: ", "request: ", "response: "})\r
503             {\r
504                 do\r
505                 {\r
506                     if (!_playLog.MoveNext() || _playLog.Current == null)\r
507                     {\r
508                         labelPlayLog.Visible = false;\r
509                         return;\r
510                     }\r
511                 } while (!_playLog.Current.StartsWith(s));\r
512                 lines.Add(_playLog.Current.Substring(s.Length));\r
513             }\r
514             labelPlayLog.Visible = !labelPlayLog.Visible;\r
515             ProcessRequestMain(lines[0], lines[1], lines[2]);\r
516         }\r
517 \r
518         private void ShowShipOnShipList(object sender, EventArgs ev)\r
519         {\r
520             if (!_listForm.Visible)\r
521                 return;\r
522             var idx = (int)((Control)sender).Tag;\r
523             var ship = (_combinedFleet\r
524                 ? _sniffer.Fleets[0].Ships.Concat(_sniffer.Fleets[1].Ships).ToArray()\r
525                 : _sniffer.Fleets[_currentFleet].Ships)[idx];\r
526             if (!ship.Empty)\r
527                 _listForm.ShowShip(ship.Id);\r
528         }\r
529 \r
530         private void UpdateItemInfo()\r
531         {\r
532             UpdateNumOfShips();\r
533             UpdateNumOfEquips();\r
534             _notificationManager.Flash();\r
535             labelNumOfBuckets.Text = _sniffer.Material.MaterialHistory[(int)Material.Bucket].Now.ToString("D");\r
536             UpdateBucketHistory();\r
537             var ac = _sniffer.Achievement.Value;\r
538             if (ac >= 10000)\r
539                 ac = 9999;\r
540             labelAchievement.Text = ac >= 1000 ? ((int)ac).ToString("D") : ac.ToString("F1");\r
541             _toolTip.SetToolTip(labelAchievement,\r
542                 "今月 " + _sniffer.Achievement.ValueOfMonth.ToString("F1") + "\n" +\r
543                 "EO " + _sniffer.ExMap.Achievement);\r
544             UpdateMaterialHistory();\r
545             if (_listForm.Visible)\r
546                 _listForm.UpdateList();\r
547         }\r
548 \r
549         private void UpdateNumOfShips()\r
550         {\r
551             var ship = _sniffer.ShipCounter;\r
552             labelNumOfShips.Text = $"{ship.Now:D}/{ship.Max:D}";\r
553             labelNumOfShips.ForeColor = ship.TooMany ? CUDColors.Red : Color.Black;\r
554             if (ship.Alarm)\r
555             {\r
556                 var message = $"残り{ship.Rest:D}隻";\r
557                 _notificationManager.Enqueue("艦娘数超過", message);\r
558                 ship.Alarm = false;\r
559             }\r
560         }\r
561 \r
562         private void UpdateNumOfEquips()\r
563         {\r
564             var item = _sniffer.ItemCounter;\r
565             labelNumOfEquips.Text = $"{item.Now:D}/{item.Max:D}";\r
566             labelNumOfEquips.ForeColor = item.TooMany ? CUDColors.Red : Color.Black;\r
567             if (item.Alarm)\r
568             {\r
569                 var message = $"残り{item.Rest:D}個";\r
570                 _notificationManager.Enqueue("装備数超過", message);\r
571                 item.Alarm = false;\r
572             }\r
573         }\r
574 \r
575         private void UpdateBucketHistory()\r
576         {\r
577             var count = _sniffer.Material.MaterialHistory[(int)Material.Bucket];\r
578             var day = CutOverflow(count.Now - count.BegOfDay, 999);\r
579             var week = CutOverflow(count.Now - count.BegOfWeek, 999);\r
580             labelBucketHistory.Text = $"{day:+#;-#;±0} 今日\n{week:+#;-#;±0} 今週";\r
581         }\r
582 \r
583         private void UpdateMaterialHistory()\r
584         {\r
585             var labels = new[] {labelFuelHistory, labelBulletHistory, labelSteelHistory, labelBouxiteHistory};\r
586             var text = new[] {"燃料", "弾薬", "鋼材", "ボーキ"};\r
587             for (var i = 0; i < labels.Length; i++)\r
588             {\r
589                 var count = _sniffer.Material.MaterialHistory[i];\r
590                 var port = CutOverflow(count.Now - _sniffer.Material.PrevPort[i], 99999);\r
591                 var day = CutOverflow(count.Now - count.BegOfDay, 99999);\r
592                 var week = CutOverflow(count.Now - count.BegOfWeek, 99999);\r
593                 labels[i].Text = $"{text[i]}\n{port:+#;-#;±0}\n{day:+#;-#;±0}\n{week:+#;-#;±0}";\r
594             }\r
595         }\r
596 \r
597         private int CutOverflow(int value, int limit)\r
598         {\r
599             if (value > limit)\r
600                 return limit;\r
601             if (value < -limit)\r
602                 return -limit;\r
603             return value;\r
604         }\r
605 \r
606         private void UpdateShipInfo()\r
607         {\r
608             SetCurrentFleet();\r
609             UpdatePanelShipInfo();\r
610             NotifyDamagedShip();\r
611             UpdateChargeInfo();\r
612             UpdateRepairList();\r
613             UpdateMissionLabels();\r
614             if (_listForm.Visible)\r
615                 _listForm.UpdateList();\r
616         }\r
617 \r
618         private void SetCurrentFleet()\r
619         {\r
620             var states = _sniffer.Fleets.Select(fleet => fleet.State).ToArray();\r
621             var inSortie = states.Any(state => state >= FleetState.Sortie);\r
622             if (_inSortie || !inSortie)\r
623             {\r
624                 _inSortie = inSortie;\r
625                 return;\r
626             }\r
627             _inSortie = true;\r
628             if (states[0] == FleetState.Sortie && states[1] == FleetState.Sortie)\r
629             {\r
630                 _combinedFleet = true;\r
631                 _currentFleet = 0;\r
632             }\r
633             else\r
634             {\r
635                 _combinedFleet = false;\r
636                 _currentFleet = Array.FindIndex(states, state => state >= FleetState.Sortie);\r
637             }\r
638         }\r
639 \r
640         private void UpdatePanelShipInfo()\r
641         {\r
642             var fleets = _sniffer.Fleets;\r
643             var ships = fleets[_currentFleet].ActualShips;\r
644             panel7Ships.Visible = ships.Count == 7;\r
645             _mainLabels.SetShipLabels(ships);\r
646             if (!_sniffer.IsCombinedFleet)\r
647                 _combinedFleet = false;\r
648             labelFleet1.Text = _combinedFleet ? CombinedName : "第一";\r
649             panelCombinedFleet.Visible = _combinedFleet;\r
650             if (_combinedFleet)\r
651                 _mainLabels.SetCombinedShipLabels(fleets[0].ActualShips, fleets[1].ActualShips);\r
652             for (var i = 0; i < _labelCheckFleets.Length; i++)\r
653                 _labelCheckFleets[i].Visible = _currentFleet == i;\r
654             UpdateAkashiTimer();\r
655             var battle = _sniffer.Battle;\r
656             UpdateFighterPower(_combinedFleet && (battle.BattleState == BattleState.None || battle.EnemyIsCombined));\r
657             UpdateLoS();\r
658             UpdateCondTimers();\r
659         }\r
660 \r
661         private string CombinedName\r
662         {\r
663             get\r
664             {\r
665                 switch (_sniffer.Fleets[0].CombinedType)\r
666                 {\r
667                     case CombinedType.Carrier:\r
668                         return "機動";\r
669                     case CombinedType.Surface:\r
670                         return "水上";\r
671                     case CombinedType.Transport:\r
672                         return "輸送";\r
673                     default:\r
674                         return "連合";\r
675                 }\r
676             }\r
677         }\r
678 \r
679         private void NotifyDamagedShip()\r
680         {\r
681             if (!_sniffer.BadlyDamagedShips.Any())\r
682                 return;\r
683             _notificationManager.StopRepeat("大破警告");\r
684             SetNotification("大破警告", string.Join(" ", _sniffer.BadlyDamagedShips));\r
685             _notificationManager.Flash();\r
686         }\r
687 \r
688         public void UpdateFighterPower(bool combined)\r
689         {\r
690             var fleets = _sniffer.Fleets;\r
691             var fp = combined\r
692                 ? fleets[0].FighterPower.Zip(fleets[1].FighterPower, (a, b) => a + b).ToArray()\r
693                 : fleets[_currentFleet].FighterPower;\r
694             labelFighterPower.Text = fp[0].ToString("D");\r
695             var cr = combined\r
696                 ? fleets[0].ContactTriggerRate + fleets[1].ContactTriggerRate\r
697                 : fleets[_currentFleet].ContactTriggerRate;\r
698             var text = "制空: " + (fp[0] == fp[1] ? $"{fp[0]}" : $"{fp[0]}~{fp[1]}") +\r
699                        $" 触接: {cr * 100:f1}";\r
700             _toolTip.SetToolTip(labelFighterPower, text);\r
701             _toolTip.SetToolTip(labelFighterPowerCaption, text);\r
702         }\r
703 \r
704         private void UpdateLoS()\r
705         {\r
706             var fleet = _sniffer.Fleets[_currentFleet];\r
707             labelLoS.Text = RoundDown(fleet.GetLineOfSights(1)).ToString("F1");\r
708             var text = $"係数3: {RoundDown(fleet.GetLineOfSights(3)):F1}\r\n" +\r
709                        $"係数4: {RoundDown(fleet.GetLineOfSights(4)):F1}";\r
710             _toolTip.SetToolTip(labelLoS, text);\r
711             _toolTip.SetToolTip(labelLoSCaption, text);\r
712         }\r
713 \r
714         private double RoundDown(double number)\r
715         {\r
716             return Floor(number * 10) / 10.0;\r
717         }\r
718 \r
719         private void UpdateBattleInfo()\r
720         {\r
721             ResetBattleInfo();\r
722             _listForm.UpdateBattleResult();\r
723             _listForm.UpdateAirBattleResult();\r
724             if (_sniffer.Battle.BattleState == BattleState.None)\r
725                 return;\r
726             panelBattleInfo.BringToFront();\r
727             var battle = _sniffer.Battle;\r
728             labelFormation.Text = new[] {"同航戦", "反航戦", "T字有利", "T字不利"}[battle.Formation[2] - 1];\r
729             UpdateBattleFighterPower();\r
730             if ((_config.Spoilers & Spoiler.ResultRank) != 0)\r
731                 ShowResultRank();\r
732         }\r
733 \r
734         private void UpdateCellInfo()\r
735         {\r
736             _listForm.UpdateCellInfo();\r
737         }\r
738 \r
739         private void ResetBattleInfo()\r
740         {\r
741             labelFormation.Text = "";\r
742             labelEnemyFighterPower.Text = "";\r
743             labelFighterPower.ForeColor = DefaultForeColor;\r
744             labelResultRank.Text = "判定";\r
745             panelBattleInfo.Visible = _sniffer.Battle.BattleState != BattleState.None;\r
746         }\r
747 \r
748         private void UpdateBattleFighterPower()\r
749         {\r
750             var battle = _sniffer.Battle;\r
751             var power = battle.EnemyFighterPower;\r
752             labelEnemyFighterPower.Text = power.AirCombat + power.UnknownMark;\r
753             if (power.AirCombat != power.Interception)\r
754             {\r
755                 var text = "防空: " + power.Interception + power.UnknownMark;\r
756                 _toolTip.SetToolTip(labelEnemyFighterPower, text);\r
757                 _toolTip.SetToolTip(labelEnemyFighterPowerCaption, text);\r
758             }\r
759             else\r
760             {\r
761                 _toolTip.SetToolTip(labelEnemyFighterPower, "");\r
762                 _toolTip.SetToolTip(labelEnemyFighterPowerCaption, "");\r
763             }\r
764             UpdateFighterPower(_sniffer.IsCombinedFleet && battle.EnemyIsCombined);\r
765             labelFighterPower.ForeColor = new[]\r
766                 {DefaultForeColor, DefaultForeColor, CUDColors.Blue, CUDColors.Green, CUDColors.Orange, CUDColors.Red}[\r
767                 battle.AirControlLevel + 1];\r
768         }\r
769 \r
770         private void ShowResultRank()\r
771         {\r
772             var result = new[] {"完全S", "勝利S", "勝利A", "勝利B", "敗北C", "敗北D", "敗北E"};\r
773             labelResultRank.Text = result[(int)_sniffer.Battle.ResultRank];\r
774         }\r
775 \r
776         private void labelResultRank_Click(object sender, EventArgs e)\r
777         {\r
778             ShowResultRank();\r
779         }\r
780 \r
781         private void UpdateChargeInfo()\r
782         {\r
783             var fuelSq = new[] {labelFuelSq1, labelFuelSq2, labelFuelSq3, labelFuelSq4};\r
784             var bullSq = new[] {labelBullSq1, labelBullSq2, labelBullSq3, labelBullSq4};\r
785 \r
786             for (var i = 0; i < fuelSq.Length; i++)\r
787             {\r
788                 var stat = _sniffer.Fleets[i].ChargeStatus;\r
789                 fuelSq[i].ImageIndex = stat.Fuel;\r
790                 bullSq[i].ImageIndex = stat.Bull;\r
791             }\r
792         }\r
793 \r
794         private void UpdateNDocLabels()\r
795         {\r
796             _mainLabels.SetNDockLabels(_sniffer.NDock);\r
797         }\r
798 \r
799 \r
800         private void labelNDock_Click(object sender, EventArgs e)\r
801         {\r
802             _config.ShowEndTime ^= TimerKind.NDock;\r
803             UpdateTimers();\r
804         }\r
805 \r
806         private void UpdateMissionLabels()\r
807         {\r
808             var nameLabels = new[] {labelMissionName1, labelMissionName2, labelMissionName3};\r
809             var paramsLabels = new[] {labelMissionParams1, labelMissionParams2, labelMissionParams3};\r
810             var names = _sniffer.Missions.Select(mission => mission.Name).ToArray();\r
811             for (var i = 0; i < ShipInfo.FleetCount - 1; i++)\r
812             {\r
813                 paramsLabels[i].Visible = false;\r
814                 if (string.IsNullOrEmpty(names[i]))\r
815                 {\r
816                     paramsLabels[i].Text = GenerateFleetParamsForMission(i + 1);\r
817                     paramsLabels[i].Visible = true;\r
818                 }\r
819                 nameLabels[i].Text = names[i];\r
820             }\r
821         }\r
822 \r
823         private string GenerateFleetParamsForMission(int fleetNumber)\r
824         {\r
825             var result = new List<string>();\r
826             var fleet = _sniffer.Fleets[fleetNumber];\r
827             var kira = fleet.Ships.Count(ship => ship.Cond > 49);\r
828             var plus = fleet.Ships[0].Cond > 49;\r
829             if (kira > 0)\r
830                 result.Add($"キラ{kira}{(plus ? "+" : "")}");\r
831             var drums = fleet.Ships.SelectMany(ship => ship.Slot).Count(item => item.Spec.IsDrum);\r
832             var drumShips = fleet.Ships.Count(ship => ship.Slot.Any(item => item.Spec.IsDrum));\r
833             if (drums > 0)\r
834                 result.Add($"ド{drums}({drumShips}隻)");\r
835             if (fleet.DaihatsuBonus > 0)\r
836                 result.Add($"ダ{fleet.DaihatsuBonus * 100:f1}%");\r
837             return string.Join(" ", result);\r
838         }\r
839 \r
840         private void labelMission_Click(object sender, EventArgs e)\r
841         {\r
842             _config.ShowEndTime ^= TimerKind.Mission;\r
843             UpdateTimers();\r
844         }\r
845 \r
846         private void UpdateTimers()\r
847         {\r
848             var mission = new[] {labelMission1, labelMission2, labelMission3};\r
849             for (var i = 0; i < mission.Length; i++)\r
850             {\r
851                 var entry = _sniffer.Missions[i];\r
852                 SetTimerColor(mission[i], entry.Timer, _now);\r
853                 mission[i].Text = entry.Timer.ToString(_now, (_config.ShowEndTime & TimerKind.Mission) != 0);\r
854             }\r
855             for (var i = 0; i < _sniffer.NDock.Length; i++)\r
856             {\r
857                 var entry = _sniffer.NDock[i];\r
858                 _mainLabels.SetNDockTimer(i, entry.Timer, _now, (_config.ShowEndTime & TimerKind.NDock) != 0);\r
859             }\r
860             var kdock = new[] {labelConstruct1, labelConstruct2, labelConstruct3, labelConstruct4};\r
861             for (var i = 0; i < kdock.Length; i++)\r
862             {\r
863                 var timer = _sniffer.KDock[i];\r
864                 SetTimerColor(kdock[i], timer, _now);\r
865                 kdock[i].Text = timer.ToString(_now);\r
866             }\r
867             UpdateCondTimers();\r
868             UpdateAkashiTimer();\r
869             _timerEnabled = true;\r
870         }\r
871 \r
872         private void NotifyTimers()\r
873         {\r
874             for (var i = 0; i < _sniffer.Missions.Length; i++)\r
875             {\r
876                 var entry = _sniffer.Missions[i];\r
877                 CheckAlarm("遠征終了", entry.Timer, i + 1, entry.Name);\r
878             }\r
879             for (var i = 0; i < _sniffer.NDock.Length; i++)\r
880             {\r
881                 var entry = _sniffer.NDock[i];\r
882                 CheckAlarm("入渠終了", entry.Timer, i, entry.Name);\r
883             }\r
884             for (var i = 0; i < _sniffer.KDock.Length; i++)\r
885             {\r
886                 var timer = _sniffer.KDock[i];\r
887                 CheckAlarm("建造完了", timer, i, "");\r
888             }\r
889             NotifyCondTimers();\r
890             NotifyAkashiTimer();\r
891             _notificationManager.Flash();\r
892         }\r
893 \r
894         private void CheckAlarm(string key, AlarmTimer timer, int fleet, string subject)\r
895         {\r
896             if (timer.CheckAlarm(_prev, _now))\r
897             {\r
898                 SetNotification(key, fleet, subject);\r
899                 return;\r
900             }\r
901             var pre = TimeSpan.FromSeconds(_config.Notifications[key].PreliminaryPeriod);\r
902             if (pre == TimeSpan.Zero)\r
903                 return;\r
904             if (timer.CheckAlarm(_prev + pre, _now + pre))\r
905                 SetPreNotification(key, fleet, subject);\r
906         }\r
907 \r
908         private void SetTimerColor(Label label, AlarmTimer timer, DateTime now)\r
909         {\r
910             label.ForeColor = timer.IsFinished(now) ? CUDColors.Red : Color.Black;\r
911         }\r
912 \r
913         private void UpdateCondTimers()\r
914         {\r
915             DateTime timer;\r
916             if (_combinedFleet)\r
917             {\r
918                 var timer1 = _sniffer.GetConditionTimer(0);\r
919                 var timer2 = _sniffer.GetConditionTimer(1);\r
920                 timer = timer2 > timer1 ? timer2 : timer1;\r
921             }\r
922             else\r
923             {\r
924                 timer = _sniffer.GetConditionTimer(_currentFleet);\r
925             }\r
926             if (timer == DateTime.MinValue)\r
927             {\r
928                 labelCondTimerTitle.Text = "";\r
929                 labelCondTimer.Text = "";\r
930                 return;\r
931             }\r
932             var span = TimeSpan.FromSeconds(Ceiling((timer - _now).TotalSeconds));\r
933             if (span >= TimeSpan.FromMinutes(9))\r
934             {\r
935                 labelCondTimerTitle.Text = "cond40まで";\r
936                 labelCondTimer.Text = (span - TimeSpan.FromMinutes(9)).ToString(@"mm\:ss");\r
937                 labelCondTimer.ForeColor = DefaultForeColor;\r
938             }\r
939             else\r
940             {\r
941                 labelCondTimerTitle.Text = "cond49まで";\r
942                 labelCondTimer.Text = (span >= TimeSpan.Zero ? span : TimeSpan.Zero).ToString(@"mm\:ss");\r
943                 labelCondTimer.ForeColor = span <= TimeSpan.Zero ? CUDColors.Red : DefaultForeColor;\r
944             }\r
945         }\r
946 \r
947         private void NotifyCondTimers()\r
948         {\r
949             var notice = _sniffer.GetConditionNotice(_prev, _now);\r
950             var pre = TimeSpan.FromSeconds(_config.Notifications["疲労回復"].PreliminaryPeriod);\r
951             var preNotice = pre == TimeSpan.Zero\r
952                 ? new int[ShipInfo.FleetCount]\r
953                 : _sniffer.GetConditionNotice(_prev + pre, _now + pre);\r
954             for (var i = 0; i < ShipInfo.FleetCount; i++)\r
955             {\r
956                 if (_config.NotifyConditions.Contains(notice[i]))\r
957                 {\r
958                     SetNotification("疲労回復" + notice[i], i, "cond" + notice[i]);\r
959                 }\r
960                 else if (_config.NotifyConditions.Contains(preNotice[i]))\r
961                 {\r
962                     SetPreNotification("疲労回復" + preNotice[i], i, "cond" + notice[i]);\r
963                 }\r
964             }\r
965         }\r
966 \r
967         private void UpdateAkashiTimer()\r
968         {\r
969             if (_config.UsePresetAkashi)\r
970                 UpdatePresetAkashiTimer();\r
971             _mainLabels.SetAkashiTimer(_sniffer.Fleets[_currentFleet].ActualShips,\r
972                 _sniffer.AkashiTimer.GetTimers(_currentFleet, _now));\r
973         }\r
974 \r
975         private void UpdatePresetAkashiTimer()\r
976         {\r
977             var akashi = _sniffer.AkashiTimer;\r
978             var span = akashi.GetPresetDeckTimer(_now);\r
979             var color = span == TimeSpan.Zero && akashi.CheckPresetRepairing() ? CUDColors.Red : DefaultForeColor;\r
980             var text = span == TimeSpan.MinValue ? "" : span.ToString(@"mm\:ss");\r
981             labelAkashiRepairTimer.ForeColor = color;\r
982             labelAkashiRepairTimer.Text = text;\r
983             if (akashi.CheckPresetRepairing() && !akashi.CheckRepairing(_currentFleet, _now))\r
984             {\r
985                 labelPresetAkashiTimer.ForeColor = color;\r
986                 labelPresetAkashiTimer.Text = text;\r
987             }\r
988             else\r
989             {\r
990                 labelPresetAkashiTimer.ForeColor = DefaultForeColor;\r
991                 labelPresetAkashiTimer.Text = "";\r
992             }\r
993         }\r
994 \r
995         private void NotifyAkashiTimer()\r
996         {\r
997             var akashi = _sniffer.AkashiTimer;\r
998             var msgs = akashi.GetNotice(_prev, _now);\r
999             if (msgs.Length == 0)\r
1000             {\r
1001                 _notificationManager.StopRepeat("泊地修理");\r
1002                 return;\r
1003             }\r
1004             if (!akashi.CheckRepairing(_now) && !(akashi.CheckPresetRepairing() && _config.UsePresetAkashi))\r
1005             {\r
1006                 _notificationManager.StopRepeat("泊地修理");\r
1007                 return;\r
1008             }\r
1009             var skipPreliminary = false;\r
1010             if (msgs[0].Proceeded == "20分経過しました。")\r
1011             {\r
1012                 SetNotification("泊地修理20分経過", msgs[0].Proceeded);\r
1013                 msgs[0].Proceeded = "";\r
1014                 skipPreliminary = true;\r
1015                 // 修理完了がいるかもしれないので続ける\r
1016             }\r
1017             for (var i = 0; i < ShipInfo.FleetCount; i++)\r
1018             {\r
1019                 if (msgs[i].Proceeded != "")\r
1020                     SetNotification("泊地修理進行", i, msgs[i].Proceeded);\r
1021                 if (msgs[i].Completed != "")\r
1022                     SetNotification("泊地修理完了", i, msgs[i].Completed);\r
1023             }\r
1024             var pre = TimeSpan.FromSeconds(_config.Notifications["泊地修理20分経過"].PreliminaryPeriod);\r
1025             if (skipPreliminary || pre == TimeSpan.Zero)\r
1026                 return;\r
1027             if ((msgs = akashi.GetNotice(_prev + pre, _now + pre))[0].Proceeded == "20分経過しました。")\r
1028                 SetPreNotification("泊地修理20分経過", 0, msgs[0].Proceeded);\r
1029         }\r
1030 \r
1031         private void SetNotification(string key, string subject)\r
1032         {\r
1033             SetNotification(key, 0, subject);\r
1034         }\r
1035 \r
1036         private void SetNotification(string key, int fleet, string subject)\r
1037         {\r
1038             var spec = _config.Notifications[_notificationManager.KeyToName(key)];\r
1039             _notificationManager.Enqueue(key, fleet, subject,\r
1040                 (spec.Flags & _config.NotificationFlags & NotificationType.Repeat) == 0 ? 0 : spec.RepeatInterval);\r
1041         }\r
1042 \r
1043         private void SetPreNotification(string key, int fleet, string subject)\r
1044         {\r
1045             var spec = _config.Notifications[_notificationManager.KeyToName(key)];\r
1046             if ((spec.Flags & NotificationType.Preliminary) != 0)\r
1047                 _notificationManager.Enqueue(key, fleet, subject, 0, true);\r
1048         }\r
1049 \r
1050         private void UpdateRepairList()\r
1051         {\r
1052             panelRepairList.SetRepairList(_sniffer.RepairList);\r
1053         }\r
1054 \r
1055         private void UpdateQuestList()\r
1056         {\r
1057             var category = new[]\r
1058             {\r
1059                 labelQuestColor1, labelQuestColor2, labelQuestColor3, labelQuestColor4, labelQuestColor5,\r
1060                 labelQuestColor6\r
1061             };\r
1062             var name = new[] {labelQuest1, labelQuest2, labelQuest3, labelQuest4, labelQuest5, labelQuest6};\r
1063             var count = new[]\r
1064             {\r
1065                 labelQuestCount1, labelQuestCount2, labelQuestCount3, labelQuestCount4, labelQuestCount5,\r
1066                 labelQuestCount6\r
1067             };\r
1068             var progress = new[]\r
1069                 {labelProgress1, labelProgress2, labelProgress3, labelProgress4, labelProgress5, labelProgress6};\r
1070             var quests = _sniffer.Quests;\r
1071             for (var i = 0; i < name.Length; i++)\r
1072             {\r
1073                 if (i < quests.Length)\r
1074                 {\r
1075                     category[i].BackColor = quests[i].Color;\r
1076                     name[i].Text = quests[i].Name;\r
1077                     progress[i].Text = $"{quests[i].Progress:D}%";\r
1078                     _toolTipQuest.SetToolTip(name[i], quests[i].ToToolTip());\r
1079                     var c = quests[i].Count;\r
1080                     if (c.Id == 0)\r
1081                     {\r
1082                         count[i].Text = "";\r
1083                         count[i].ForeColor = Color.Black;\r
1084                         _toolTip.SetToolTip(count[i], "");\r
1085                         continue;\r
1086                     }\r
1087                     count[i].Text = " " + c;\r
1088                     count[i].ForeColor = c.Cleared ? CUDColors.Green : Color.Black;\r
1089                     _toolTip.SetToolTip(count[i], c.ToToolTip());\r
1090                 }\r
1091                 else\r
1092                 {\r
1093                     category[i].BackColor = DefaultBackColor;\r
1094                     name[i].Text = count[i].Text = progress[i].Text = "";\r
1095                     _toolTipQuest.SetToolTip(name[i], "");\r
1096                     _toolTip.SetToolTip(count[i], "");\r
1097                 }\r
1098             }\r
1099         }\r
1100 \r
1101         private void Alarm(string balloonTitle, string balloonMessage, string name)\r
1102         {\r
1103             var flags = _config.Notifications[name].Flags;\r
1104             var effective = _config.NotificationFlags & _config.Notifications[name].Flags;\r
1105             if ((effective & NotificationType.FlashWindow) != 0)\r
1106                 Win32API.FlashWindow(Handle);\r
1107             if ((effective & NotificationType.ShowBaloonTip) != 0)\r
1108                 notifyIconMain.ShowBalloonTip(20000, balloonTitle, balloonMessage, ToolTipIcon.Info);\r
1109             if ((effective & NotificationType.PlaySound) != 0)\r
1110                 PlaySound(_config.Sounds[name], _config.Sounds.Volume);\r
1111             if (_config.Pushbullet.On && (flags & NotificationType.Push) != 0)\r
1112             {\r
1113                 Task.Run(() =>\r
1114                 {\r
1115                     PushNotification.PushToPushbullet(_config.Pushbullet.Token, balloonTitle, balloonMessage);\r
1116                 });\r
1117             }\r
1118             if (_config.Pushover.On && (flags & NotificationType.Push) != 0)\r
1119             {\r
1120                 Task.Run(() =>\r
1121                 {\r
1122                     PushNotification.PushToPushover(_config.Pushover.ApiKey, _config.Pushover.UserKey,\r
1123                         balloonTitle, balloonMessage);\r
1124                 });\r
1125             }\r
1126         }\r
1127 \r
1128         [DllImport("winmm.dll")]\r
1129         private static extern int mciSendString(String command,\r
1130             StringBuilder buffer, int bufferSize, IntPtr hWndCallback);\r
1131 \r
1132 // ReSharper disable InconsistentNaming\r
1133         // ReSharper disable once IdentifierTypo\r
1134         private const int MM_MCINOTIFY = 0x3B9;\r
1135 \r
1136         private const int MCI_NOTIFY_SUCCESSFUL = 1;\r
1137 // ReSharper restore InconsistentNaming\r
1138 \r
1139         public void PlaySound(string file, int volume)\r
1140         {\r
1141             if (!File.Exists(file))\r
1142                 return;\r
1143             mciSendString("close sound", null, 0, IntPtr.Zero);\r
1144             if (mciSendString("open \"" + file + "\" type mpegvideo alias sound", null, 0, IntPtr.Zero) != 0)\r
1145                 return;\r
1146             mciSendString("setaudio sound volume to " + volume * 10, null, 0, IntPtr.Zero);\r
1147             mciSendString("play sound notify", null, 0, Handle);\r
1148         }\r
1149 \r
1150         protected override void WndProc(ref Message m)\r
1151         {\r
1152             if (m.Msg == MM_MCINOTIFY && (int)m.WParam == MCI_NOTIFY_SUCCESSFUL)\r
1153                 mciSendString("close sound", null, 0, IntPtr.Zero);\r
1154             base.WndProc(ref m);\r
1155         }\r
1156 \r
1157         private void SetupFleetClick()\r
1158         {\r
1159             var labels = new[]\r
1160             {\r
1161                 new[] {labelFleet1, labelFleet2, labelFleet3, labelFleet4},\r
1162                 new[] {labelFuelSq1, labelFuelSq2, labelFuelSq3, labelFuelSq4},\r
1163                 new[] {labelBullSq1, labelBullSq2, labelBullSq3, labelBullSq4}\r
1164             };\r
1165             foreach (var a in labels)\r
1166             {\r
1167                 a[0].Tag = 0;\r
1168                 a[0].Click += labelFleet1_Click;\r
1169                 a[0].DoubleClick += labelFleet1_DoubleClick;\r
1170                 for (var fleet = 1; fleet < labels[0].Length; fleet++)\r
1171                 {\r
1172                     a[fleet].Tag = fleet;\r
1173                     a[fleet].Click += labelFleet_Click;\r
1174                     a[fleet].DoubleClick += labelFleet_DoubleClick;\r
1175                 }\r
1176             }\r
1177         }\r
1178 \r
1179         private void labelFleet_Click(object sender, EventArgs e)\r
1180         {\r
1181             if (!_started)\r
1182                 return;\r
1183             var fleet = (int)((Label)sender).Tag;\r
1184             if (_currentFleet == fleet)\r
1185                 return;\r
1186             _combinedFleet = false;\r
1187             _currentFleet = fleet;\r
1188             UpdatePanelShipInfo();\r
1189         }\r
1190 \r
1191         private readonly SemaphoreSlim _clickSemaphore = new SemaphoreSlim(1);\r
1192         private readonly SemaphoreSlim _doubleClickSemaphore = new SemaphoreSlim(0);\r
1193 \r
1194         private async void labelFleet1_Click(object sender, EventArgs e)\r
1195         {\r
1196             if (!_started)\r
1197                 return;\r
1198             if (_currentFleet != 0)\r
1199             {\r
1200                 labelFleet_Click(sender, e);\r
1201                 return;\r
1202             }\r
1203             if (!_clickSemaphore.Wait(0))\r
1204                 return;\r
1205             try\r
1206             {\r
1207                 if (await _doubleClickSemaphore.WaitAsync(SystemInformation.DoubleClickTime))\r
1208                     return;\r
1209             }\r
1210             finally\r
1211             {\r
1212                 _clickSemaphore.Release();\r
1213             }\r
1214             _combinedFleet = _sniffer.IsCombinedFleet && !_combinedFleet;\r
1215             UpdatePanelShipInfo();\r
1216         }\r
1217 \r
1218         private void labelFleet1_MouseHover(object sender, EventArgs e)\r
1219         {\r
1220             labelFleet1.Text = _currentFleet == 0 && _sniffer.IsCombinedFleet && !_combinedFleet ? "連合" : "第一";\r
1221         }\r
1222 \r
1223         private void labelFleet1_MouseLeave(object sender, EventArgs e)\r
1224         {\r
1225             labelFleet1.Text = _combinedFleet ? CombinedName : "第一";\r
1226         }\r
1227 \r
1228         private void labelFleet_DoubleClick(object sender, EventArgs e)\r
1229         {\r
1230             if (!_started)\r
1231                 return;\r
1232             var fleet = (int)((Label)sender).Tag;\r
1233             var text = TextGenerator.GenerateFleetData(_sniffer, fleet);\r
1234             CopyFleetText(text, (Label)sender);\r
1235         }\r
1236 \r
1237         private void labelFleet1_DoubleClick(object sender, EventArgs e)\r
1238         {\r
1239             if (!_started)\r
1240                 return;\r
1241             _doubleClickSemaphore.Release();\r
1242             var text = TextGenerator.GenerateFleetData(_sniffer, 0);\r
1243             if (_combinedFleet)\r
1244                 text += TextGenerator.GenerateFleetData(_sniffer, 1);\r
1245             CopyFleetText(text, (Label)sender);\r
1246         }\r
1247 \r
1248         private void CopyFleetText(string text, Label fleetButton)\r
1249         {\r
1250             if (string.IsNullOrEmpty(text))\r
1251                 return;\r
1252             Clipboard.SetText(text);\r
1253             _tooltipCopy.Active = true;\r
1254             _tooltipCopy.Show("コピーしました。", fleetButton);\r
1255             Task.Run(async () =>\r
1256             {\r
1257                 await Task.Delay(1000);\r
1258                 _tooltipCopy.Active = false;\r
1259             });\r
1260         }\r
1261 \r
1262         private void labelBucketHistoryButton_Click(object sender, EventArgs e)\r
1263         {\r
1264             if (labelBucketHistory.Visible)\r
1265             {\r
1266                 labelBucketHistory.Visible = false;\r
1267                 labelBucketHistoryButton.BackColor = DefaultBackColor;\r
1268             }\r
1269             else\r
1270             {\r
1271                 labelBucketHistory.Visible = true;\r
1272                 labelBucketHistory.BringToFront();\r
1273                 labelBucketHistoryButton.BackColor = CustomColors.ActiveButtonColor;\r
1274             }\r
1275         }\r
1276 \r
1277         private void labelBucketHistory_Click(object sender, EventArgs e)\r
1278         {\r
1279             labelBucketHistory.Visible = false;\r
1280             labelBucketHistoryButton.BackColor = DefaultBackColor;\r
1281         }\r
1282 \r
1283         private void labelMaterialHistoryButton_Click(object sender, EventArgs e)\r
1284         {\r
1285             if (panelMaterialHistory.Visible)\r
1286             {\r
1287                 panelMaterialHistory.Visible = false;\r
1288                 labelMaterialHistoryButton.BackColor = DefaultBackColor;\r
1289             }\r
1290             else\r
1291             {\r
1292                 panelMaterialHistory.Visible = true;\r
1293                 panelMaterialHistory.BringToFront();\r
1294                 labelMaterialHistoryButton.BackColor = CustomColors.ActiveButtonColor;\r
1295             }\r
1296         }\r
1297 \r
1298         private void panelMaterialHistory_Click(object sender, EventArgs e)\r
1299         {\r
1300             panelMaterialHistory.Visible = false;\r
1301             labelMaterialHistoryButton.BackColor = DefaultBackColor;\r
1302         }\r
1303 \r
1304         public void ResetAchievement()\r
1305         {\r
1306             _sniffer.Achievement.Reset();\r
1307             UpdateItemInfo();\r
1308         }\r
1309 \r
1310         private void labelRepairListButton_Click(object sender, EventArgs e)\r
1311         {\r
1312             if (panelRepairList.Visible)\r
1313             {\r
1314                 panelRepairList.Visible = false;\r
1315                 labelRepairListButton.BackColor = DefaultBackColor;\r
1316             }\r
1317             else\r
1318             {\r
1319                 panelRepairList.Visible = true;\r
1320                 panelRepairList.BringToFront();\r
1321                 labelRepairListButton.BackColor = CustomColors.ActiveButtonColor;\r
1322             }\r
1323         }\r
1324 \r
1325         private void panelRepairList_Click(object sender, EventArgs e)\r
1326         {\r
1327             panelRepairList.Visible = false;\r
1328             labelRepairListButton.BackColor = DefaultBackColor;\r
1329         }\r
1330 \r
1331         private void ShipListToolStripMenuItem_Click(object sender, EventArgs e)\r
1332         {\r
1333             _listForm.UpdateList();\r
1334             _listForm.Show();\r
1335             if (_listForm.WindowState == FormWindowState.Minimized)\r
1336                 _listForm.WindowState = FormWindowState.Normal;\r
1337             _listForm.Activate();\r
1338         }\r
1339 \r
1340         private void LogToolStripMenuItem_Click(object sender, EventArgs e)\r
1341         {\r
1342             Process.Start("http://localhost:" + _config.Proxy.Listen + "/");\r
1343         }\r
1344 \r
1345         private void labelClearQuest_Click(object sender, EventArgs e)\r
1346         {\r
1347             _sniffer.ClearQuests();\r
1348             UpdateQuestList();\r
1349         }\r
1350 \r
1351         private void labelClearQuest_MouseDown(object sender, MouseEventArgs e)\r
1352         {\r
1353             labelClearQuest.BackColor = CustomColors.ActiveButtonColor;\r
1354         }\r
1355 \r
1356         private void labelClearQuest_MouseUp(object sender, MouseEventArgs e)\r
1357         {\r
1358             labelClearQuest.BackColor = DefaultBackColor;\r
1359         }\r
1360 \r
1361         private void labelQuest_DoubleClick(object sender, EventArgs e)\r
1362         {\r
1363             var label = (Label)sender;\r
1364             if (string.IsNullOrEmpty(label.Text))\r
1365                 return;\r
1366             Clipboard.SetText(label.Text);\r
1367             _tooltipCopy.Active = true;\r
1368             _tooltipCopy.Show("コピーしました。", label);\r
1369             Task.Run(async () =>\r
1370             {\r
1371                 await Task.Delay(1000);\r
1372                 _tooltipCopy.Active = false;\r
1373             });\r
1374         }\r
1375 \r
1376         private void CaptureToolStripMenuItem_Click(object sender, EventArgs e)\r
1377         {\r
1378             try\r
1379             {\r
1380                 var proc = new ProcessStartInfo("BurageSnap.exe") {WorkingDirectory = "Capture"};\r
1381                 Process.Start(proc);\r
1382             }\r
1383             catch (FileNotFoundException)\r
1384             {\r
1385             }\r
1386             catch (Win32Exception)\r
1387             {\r
1388             }\r
1389         }\r
1390     }\r
1391 }