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)\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                 }\r
180             }\r
181             _panelDamagedShipList = parent;\r
182             parent.ResumeLayout();\r
183         }\r
184 \r
185         public void SetDamagedShipList(ShipStatus[] list)\r
186         {\r
187             const int fleet = 0, name = 3, time = 2, damage = 1;\r
188             var parent = _panelDamagedShipList;\r
189             var num = Min(list.Length, _damagedShipList.Length);\r
190             if (num == 0)\r
191             {\r
192                 parent.Size = new Size(parent.Width, (int)Round(ShipLabel.ScaleFactor.Height * 19));\r
193                 var labels = _damagedShipList[0];\r
194                 labels[fleet].Text = "";\r
195                 labels[name].SetName("なし");\r
196                 labels[time].Text = "";\r
197                 labels[damage].BackColor = labels[damage].PresetColor;\r
198                 return;\r
199             }\r
200             parent.Size = new Size(parent.Width, (int)Round(ShipLabel.ScaleFactor.Height * (num * 16 + 3)));\r
201             var colors = new[] { Color.FromArgb(255, 225, 225, 21), Color.Orange, Color.Red };\r
202             for (var i = 0; i < num; i++)\r
203             {\r
204                 var s = list[i];\r
205                 var labels = _damagedShipList[i];\r
206                 labels[fleet].SetFleet(s);\r
207                 labels[name].SetName(s);\r
208                 labels[time].SetRepairTime(s);\r
209                 labels[damage].BackColor = (int)s.DamageLevel == 0\r
210                     ? labels[damage].PresetColor\r
211                     : colors[(int)s.DamageLevel - 1];\r
212             }\r
213         }\r
214 \r
215         public void CreateNDockLabels(Control parent)\r
216         {\r
217             for (var i = 0; i < _ndockLabels.Length; i++)\r
218             {\r
219                 var y = 3 + i * 15;\r
220                 parent.Controls.AddRange(\r
221                     _ndockLabels[i] = new[]\r
222                     {\r
223                         new ShipLabel {Location = new Point(93, y), AutoSize = true, Text = "00:00:00"},\r
224                         new ShipLabel {Location = new Point(29, y), AutoSize = true} // 名前のZ-orderを下に\r
225                     });\r
226                 foreach (var label in _ndockLabels[i])\r
227                     label.Scale();\r
228             }\r
229         }\r
230 \r
231         public void SetNDockLabels(NameAndTimer[] ndock)\r
232         {\r
233             for (var i = 0; i < _ndockLabels.Length; i++)\r
234                 _ndockLabels[i][1].SetName(ndock[i].Name);\r
235         }\r
236 \r
237         public void SetNDockTimer(int dock, RingTimer timer)\r
238         {\r
239             var label = _ndockLabels[dock][0];\r
240             label.ForeColor = timer.IsFinished ? Color.Red : Color.Black;\r
241             label.SetRepairTime(timer.Rest);\r
242         }\r
243     }\r
244 \r
245     [System.ComponentModel.DesignerCategory("Code")]\r
246     public class ShipLabel : Label\r
247     {\r
248         public static SizeF ScaleFactor { get; set; }\r
249         public Color PresetColor { get; set; }\r
250         public bool AnchorRight { get; set; }\r
251         private int _right = int.MinValue;\r
252         private int _left;\r
253 \r
254         public void SetName(ShipStatus status)\r
255         {\r
256             SetName((status.Escaped ? "[避]" : "") + status.Name);\r
257         }\r
258 \r
259         public void SetName(string name)\r
260         {\r
261             var lu = name != null && new Regex(@"^\p{Lu}").IsMatch(name);\r
262             var shift = (int)Round(ScaleFactor.Height);\r
263             if (lu && Font.Equals(Parent.Font))\r
264             {\r
265                 Location += new Size(0, -shift);\r
266                 Font = new Font("Tahoma", 8f);\r
267             }\r
268             else if (!lu && !Font.Equals(Parent.Font))\r
269             {\r
270                 Location += new Size(0, shift);\r
271                 Font = Parent.Font;\r
272             }\r
273             Text = name;\r
274         }\r
275 \r
276         public void SetHp(ShipStatus status)\r
277         {\r
278             SetHp(status.NowHp, status.MaxHp);\r
279         }\r
280 \r
281         public void SetHp(int now, int max)\r
282         {\r
283             var colors = new[] {PresetColor, Color.FromArgb(255, 240, 240, 100), Color.Orange, Color.Red};\r
284             Text = $"{now:D}/{max:D}";\r
285             BackColor = colors[(int)ShipStatus.CalcDamage(now, max)];\r
286         }\r
287 \r
288         public void SetCond(ShipStatus status)\r
289         {\r
290             if (status.Level == 0)\r
291             {\r
292                 Text = "0";\r
293                 BackColor = PresetColor;\r
294                 return;\r
295             }\r
296             var cond = status.Cond;\r
297             Text = cond.ToString("D");\r
298             BackColor = cond >= 50\r
299                 ? Color.Yellow\r
300                 : cond >= 30\r
301                     ? PresetColor\r
302                     : cond >= 20 ? Color.Orange : Color.Red;\r
303         }\r
304 \r
305         public void SetLevel(ShipStatus status)\r
306         {\r
307             Text = status.Level.ToString("D");\r
308         }\r
309 \r
310         public void SetExpToNext(ShipStatus status)\r
311         {\r
312             Text = status.ExpToNext.ToString("D");\r
313         }\r
314 \r
315         public void SetRepairTime(ShipStatus status)\r
316         {\r
317             SetRepairTime(status.RepairTime);\r
318         }\r
319 \r
320         public void SetRepairTime(TimeSpan span)\r
321         {\r
322             Text = $@"{(int)span.TotalHours:d2}:{span:mm\:ss}";\r
323         }\r
324 \r
325         public void SetFleet(ShipStatus status)\r
326         {\r
327             Text = new[] {"", "1", "2", "3", "4"}[status.Fleet + 1];\r
328         }\r
329 \r
330         protected override void OnLayout(LayoutEventArgs levent)\r
331         {\r
332             base.OnLayout(levent);\r
333             if (!AnchorRight)\r
334                 return;\r
335             if (_right == int.MinValue || _left != Left)\r
336             {\r
337                 _right = Right;\r
338                 _left = Left;\r
339                 return;\r
340             }\r
341             if (_right == Right)\r
342                 return;\r
343             _left -= Right - _right;\r
344             Location = new Point(_left, Top);\r
345         }\r
346 \r
347         public void Scale()\r
348         {\r
349             Scale(ScaleFactor);\r
350         }\r
351     }\r
352 }