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