OSDN Git Service

パネルのクリックでもパネルを閉じるようにする
[kancollesniffer/KancolleSniffer.git] / KancolleSniffer / ShipLabels.cs
1 // Copyright (C) 2014, 2015 Kazuhiro Fujieda <fujieda@users.osdn.me>\r
2 // \r
3 // This program is part of KancolleSniffer.\r
4 //\r
5 // KancolleSniffer is free software: you can redistribute it and/or modify\r
6 // it under the terms of the GNU General Public License as published by\r
7 // the Free Software Foundation, either version 3 of the License, or\r
8 // (at your option) any later version.\r
9 //\r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 //\r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, see <http://www.gnu.org/licenses/>.\r
17 \r
18 using System;\r
19 using System.Drawing;\r
20 using System.Text.RegularExpressions;\r
21 using System.Windows.Forms;\r
22 using static System.Math;\r
23 \r
24 namespace KancolleSniffer\r
25 {\r
26     public class ShipLabels\r
27     {\r
28         private readonly ShipLabel[][] _labels = new ShipLabel[ShipInfo.MemberCount][];\r
29         private readonly ShipLabel[] _akashiTimers = new ShipLabel[ShipInfo.MemberCount];\r
30         private readonly ShipLabel[][] _damagedShipList = new ShipLabel[16][];\r
31         private Control _panelDamagedShipList;\r
32         private readonly ShipLabel[][] _ndockLabels = new ShipLabel[DockInfo.DockCount][];\r
33         public static Color[] ColumnColors = {SystemColors.Control, Color.FromArgb(255, 250, 250, 250)};\r
34 \r
35         public void CreateLabels(Control parent, EventHandler onClick)\r
36         {\r
37             parent.SuspendLayout();\r
38             const int top = 3, height = 12, lh = 16;\r
39             ShipLabel[] headings;\r
40             parent.Controls.AddRange(headings = new[]\r
41             {\r
42                 new ShipLabel {Location = new Point(109, top), Text = "HP", AutoSize = true},\r
43                 new ShipLabel {Location = new Point(128, top), Text = "cond", AutoSize = true},\r
44                 new ShipLabel {Location = new Point(163, top), Text = "Lv", AutoSize = true},\r
45                 new ShipLabel {Location = new Point(194, top), Text = "Exp", AutoSize = true},\r
46                 new ShipLabel {Location = new Point(0, 1), Size = new Size(parent.Width, lh - 1)}\r
47             });\r
48             foreach (var label in headings)\r
49             {\r
50                 label.Scale();\r
51                 label.BackColor = ColumnColors[1];\r
52             }\r
53             for (var i = 0; i < _labels.Length; i++)\r
54             {\r
55                 var y = top + lh * (i + 1);\r
56                 parent.Controls.AddRange(_labels[i] = new[]\r
57                 {\r
58                     new ShipLabel {Location = new Point(129, y), AutoSize = true, AnchorRight = true},\r
59                     new ShipLabel\r
60                     {\r
61                         Location = new Point(132, y),\r
62                         Size = new Size(23, height),\r
63                         TextAlign = ContentAlignment.MiddleRight\r
64                     },\r
65                     new ShipLabel\r
66                     {\r
67                         Location = new Point(157, y),\r
68                         Size = new Size(23, height),\r
69                         TextAlign = ContentAlignment.MiddleRight\r
70                     },\r
71                     new ShipLabel\r
72                     {\r
73                         Location = new Point(177, y),\r
74                         Size = new Size(41, height),\r
75                         TextAlign = ContentAlignment.MiddleRight\r
76                     },\r
77                     new ShipLabel {Location = new Point(2, y), AutoSize = true}, // 名前のZ-orderを下に\r
78                     new ShipLabel {Location = new Point(0, y - 2), Size = new Size(parent.Width, lh - 1)}\r
79                 });\r
80                 foreach (var label in _labels[i])\r
81                 {\r
82                     label.Scale();\r
83                     label.PresetColor = label.BackColor = ColumnColors[i % 2];\r
84                     label.Tag = i;\r
85                     label.Click += onClick;\r
86                 }\r
87             }\r
88             parent.ResumeLayout();\r
89         }\r
90 \r
91         public void SetShipInfo(ShipStatus[] statuses)\r
92         {\r
93             var empty = new ShipStatus();\r
94             for (var i = 0; i < _labels.Length; i++)\r
95             {\r
96                 var labels = _labels[i];\r
97                 var s = i < statuses.Length ? statuses[i] : empty;\r
98                 labels[0].SetHp(s);\r
99                 labels[1].SetCond(s);\r
100                 labels[2].SetLevel(s);\r
101                 labels[3].SetExpToNext(s);\r
102                 labels[4].SetName(s);\r
103             }\r
104         }\r
105 \r
106         public void CreateAkashiTimers(Control parent)\r
107         {\r
108             parent.SuspendLayout();\r
109             for (var i = 0; i < _akashiTimers.Length; i++)\r
110             {\r
111                 const int x = 54;\r
112                 var y = 20 + 16 * i;\r
113                 ShipLabel label;\r
114                 parent.Controls.Add(\r
115                     label = _akashiTimers[i] = new ShipLabel {Location = new Point(x, y), AutoSize = true});\r
116                 label.BackColor = ColumnColors[i % 2];\r
117             }\r
118             foreach (var label in _akashiTimers)\r
119                 label.Scale();\r
120             parent.ResumeLayout();\r
121         }\r
122 \r
123         public void SetAkashiTimer(ShipStatus[] statuses, AkashiTimer.RepairSpan[] timers)\r
124         {\r
125             var shortest = -1;\r
126             for (var i = 0; i < timers.Length; i++)\r
127             {\r
128                 if (timers[i].Span <= TimeSpan.Zero)\r
129                     continue;\r
130                 if (shortest == -1 || timers[i].Span < timers[shortest].Span)\r
131                     shortest = i;\r
132             }\r
133             for (var i = 0; i < _akashiTimers.Length; i++)\r
134             {\r
135                 var label = _akashiTimers[i];\r
136                 var labelHp = _labels[i][0];\r
137                 if (i >= timers.Length || timers[i].Span == TimeSpan.MinValue)\r
138                 {\r
139                     label.Visible = false;\r
140                     labelHp.ForeColor = Control.DefaultForeColor;\r
141                     continue;\r
142                 }\r
143                 var timer = timers[i];\r
144                 var stat = statuses[i];\r
145                 label.Visible = true;\r
146                 label.Text = timer.Span.ToString(@"mm\:ss");\r
147                 label.ForeColor = Control.DefaultForeColor;\r
148                 if (timer.Diff == 0)\r
149                 {\r
150                     labelHp.ForeColor = Control.DefaultForeColor;\r
151                     continue;\r
152                 }\r
153                 if (i == shortest)\r
154                     label.ForeColor = Color.Red;\r
155                 labelHp.ForeColor = Color.DimGray;\r
156                 labelHp.SetHp(stat.NowHp + timer.Diff, stat.MaxHp);\r
157             }\r
158         }\r
159 \r
160         public void CreateDamagedShipList(Control parent, EventHandler onClick)\r
161         {\r
162             parent.SuspendLayout();\r
163             for (var i = 0; i < _damagedShipList.Length; i++)\r
164             {\r
165                 var y = 3 + i * 16;\r
166                 const int height = 12;\r
167                 parent.Controls.AddRange(_damagedShipList[i] = new[]\r
168                 {\r
169                     new ShipLabel {Location = new Point(0, y), Size = new Size(11, height)},\r
170                     new ShipLabel {Location = new Point(119, y), Size = new Size(4, height - 1)},\r
171                     new ShipLabel {Location = new Point(75, y), AutoSize = true},\r
172                     new ShipLabel {Location = new Point(9, y), AutoSize = true},\r
173                     new ShipLabel {Location = new Point(0, y - 2), Size = new Size(parent.Width, height + 3)}\r
174                 });\r
175                 foreach (var label in _damagedShipList[i])\r
176                 {\r
177                     label.Scale();\r
178                     label.PresetColor = label.BackColor = ColumnColors[(i + 1) % 2];\r
179                     label.Click += onClick;\r
180                 }\r
181             }\r
182             _panelDamagedShipList = parent;\r
183             parent.ResumeLayout();\r
184         }\r
185 \r
186         public void SetDamagedShipList(ShipStatus[] list)\r
187         {\r
188             const int fleet = 0, name = 3, time = 2, damage = 1;\r
189             var parent = _panelDamagedShipList;\r
190             var num = Min(list.Length, _damagedShipList.Length);\r
191             if (num == 0)\r
192             {\r
193                 parent.Size = new Size(parent.Width, (int)Round(ShipLabel.ScaleFactor.Height * 19));\r
194                 var labels = _damagedShipList[0];\r
195                 labels[fleet].Text = "";\r
196                 labels[name].SetName("なし");\r
197                 labels[time].Text = "";\r
198                 labels[damage].BackColor = labels[damage].PresetColor;\r
199                 return;\r
200             }\r
201             parent.Size = new Size(parent.Width, (int)Round(ShipLabel.ScaleFactor.Height * (num * 16 + 3)));\r
202             var colors = new[] { Color.FromArgb(255, 225, 225, 21), Color.Orange, Color.Red };\r
203             for (var i = 0; i < num; i++)\r
204             {\r
205                 var s = list[i];\r
206                 var labels = _damagedShipList[i];\r
207                 labels[fleet].SetFleet(s);\r
208                 labels[name].SetName(s);\r
209                 labels[time].SetRepairTime(s);\r
210                 labels[damage].BackColor = (int)s.DamageLevel == 0\r
211                     ? labels[damage].PresetColor\r
212                     : colors[(int)s.DamageLevel - 1];\r
213             }\r
214         }\r
215 \r
216         public void CreateNDockLabels(Control parent)\r
217         {\r
218             for (var i = 0; i < _ndockLabels.Length; i++)\r
219             {\r
220                 var y = 3 + i * 15;\r
221                 parent.Controls.AddRange(\r
222                     _ndockLabels[i] = new[]\r
223                     {\r
224                         new ShipLabel {Location = new Point(93, y), AutoSize = true, Text = "00:00:00"},\r
225                         new ShipLabel {Location = new Point(29, y), AutoSize = true} // 名前のZ-orderを下に\r
226                     });\r
227                 foreach (var label in _ndockLabels[i])\r
228                     label.Scale();\r
229             }\r
230         }\r
231 \r
232         public void SetNDockLabels(NameAndTimer[] ndock)\r
233         {\r
234             for (var i = 0; i < _ndockLabels.Length; i++)\r
235                 _ndockLabels[i][1].SetName(ndock[i].Name);\r
236         }\r
237 \r
238         public void SetNDockTimer(int dock, RingTimer timer)\r
239         {\r
240             var label = _ndockLabels[dock][0];\r
241             label.ForeColor = timer.IsFinished ? Color.Red : Color.Black;\r
242             label.SetRepairTime(timer.Rest);\r
243         }\r
244     }\r
245 \r
246     [System.ComponentModel.DesignerCategory("Code")]\r
247     public class ShipLabel : Label\r
248     {\r
249         public static SizeF ScaleFactor { get; set; }\r
250         public Color PresetColor { get; set; }\r
251         public bool AnchorRight { get; set; }\r
252         private int _right = int.MinValue;\r
253         private int _left;\r
254 \r
255         public void SetName(ShipStatus status)\r
256         {\r
257             SetName((status.Escaped ? "[避]" : "") + status.Name);\r
258         }\r
259 \r
260         public void SetName(string name)\r
261         {\r
262             var lu = name != null && new Regex(@"^\p{Lu}").IsMatch(name);\r
263             var shift = (int)Round(ScaleFactor.Height);\r
264             if (lu && Font.Equals(Parent.Font))\r
265             {\r
266                 Location += new Size(0, -shift);\r
267                 Font = new Font("Tahoma", 8f);\r
268             }\r
269             else if (!lu && !Font.Equals(Parent.Font))\r
270             {\r
271                 Location += new Size(0, shift);\r
272                 Font = Parent.Font;\r
273             }\r
274             Text = name;\r
275         }\r
276 \r
277         public void SetHp(ShipStatus status)\r
278         {\r
279             SetHp(status.NowHp, status.MaxHp);\r
280         }\r
281 \r
282         public void SetHp(int now, int max)\r
283         {\r
284             var colors = new[] {PresetColor, Color.FromArgb(255, 240, 240, 100), Color.Orange, Color.Red};\r
285             Text = $"{now:D}/{max:D}";\r
286             BackColor = colors[(int)ShipStatus.CalcDamage(now, max)];\r
287         }\r
288 \r
289         public void SetCond(ShipStatus status)\r
290         {\r
291             if (status.Level == 0)\r
292             {\r
293                 Text = "0";\r
294                 BackColor = PresetColor;\r
295                 return;\r
296             }\r
297             var cond = status.Cond;\r
298             Text = cond.ToString("D");\r
299             BackColor = cond >= 50\r
300                 ? Color.Yellow\r
301                 : cond >= 30\r
302                     ? PresetColor\r
303                     : cond >= 20 ? Color.Orange : Color.Red;\r
304         }\r
305 \r
306         public void SetLevel(ShipStatus status)\r
307         {\r
308             Text = status.Level.ToString("D");\r
309         }\r
310 \r
311         public void SetExpToNext(ShipStatus status)\r
312         {\r
313             Text = status.ExpToNext.ToString("D");\r
314         }\r
315 \r
316         public void SetRepairTime(ShipStatus status)\r
317         {\r
318             SetRepairTime(status.RepairTime);\r
319         }\r
320 \r
321         public void SetRepairTime(TimeSpan span)\r
322         {\r
323             Text = $@"{(int)span.TotalHours:d2}:{span:mm\:ss}";\r
324         }\r
325 \r
326         public void SetFleet(ShipStatus status)\r
327         {\r
328             Text = new[] {"", "1", "2", "3", "4"}[status.Fleet + 1];\r
329         }\r
330 \r
331         protected override void OnLayout(LayoutEventArgs levent)\r
332         {\r
333             base.OnLayout(levent);\r
334             if (!AnchorRight)\r
335                 return;\r
336             if (_right == int.MinValue || _left != Left)\r
337             {\r
338                 _right = Right;\r
339                 _left = Left;\r
340                 return;\r
341             }\r
342             if (_right == Right)\r
343                 return;\r
344             _left -= Right - _right;\r
345             Location = new Point(_left, Top);\r
346         }\r
347 \r
348         public void Scale()\r
349         {\r
350             Scale(ScaleFactor);\r
351         }\r
352     }\r
353 }