OSDN Git Service

FormのサブクラスをFormsに移動する
[kancollesniffer/KancolleSniffer.git] / KancolleSniffer / View / ShipListPanel / ShipListLabels.cs
1 // Copyright (C) 2019 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.Collections.Generic;\r
16 using System.Drawing;\r
17 using System.Windows.Forms;\r
18 using KancolleSniffer.Forms;\r
19 \r
20 namespace KancolleSniffer.View.ShipListPanel\r
21 {\r
22     public class ShipListLabels\r
23     {\r
24         private readonly ShipListPanel _shipListPanel;\r
25         private readonly List<ShipLabels> _labelList = new List<ShipLabels>();\r
26 \r
27         public ShipListLabels(ShipListPanel shipListPanel)\r
28         {\r
29             _shipListPanel = shipListPanel;\r
30         }\r
31 \r
32         public void CreateShipLabels(int i)\r
33         {\r
34             var y = ShipListPanel.LineHeight * i + 1;\r
35             const int height = ShipListPanel.LabelHeight;\r
36             var labels = new ShipLabels\r
37             {\r
38                 Fleet = new ShipLabel.Fleet(new Point(1, 2)),\r
39                 Name = new ShipLabel.Name(new Point(10, 2), ShipNameWidth.ShipList),\r
40                 Hp = new ShipLabel.Hp(new Point(126, 0), ShipListPanel.LineHeight),\r
41                 Cond = new ShipLabel.Cond(new Point(128, 0), ShipListPanel.LineHeight),\r
42                 Level = new ShipLabel.Level(new Point(154, 2), height),\r
43                 Exp = new ShipLabel.Exp(new Point(175, 2), height),\r
44                 BackPanel =  new Panel\r
45                 {\r
46                     Location = new Point(0, y),\r
47                     Size = new Size(ListForm.PanelWidth, ShipListPanel.LineHeight),\r
48                 }\r
49             };\r
50             _labelList.Add(labels);\r
51             labels.Arrange(_shipListPanel, CustomColors.ColumnColors.BrightFirst(i));\r
52             _shipListPanel.SetHpPercent(labels.Hp);\r
53         }\r
54 \r
55         public void SetShipStatus(int i)\r
56         {\r
57             var s = _shipListPanel.GetShip(i);\r
58             var labels = _labelList[i];\r
59             if (s.Level == 1000) // 艦種の表示\r
60             {\r
61                 SetShipType(i);\r
62                 return;\r
63             }\r
64             labels.Set(s);\r
65             labels.BackPanel.Visible = true;\r
66         }\r
67 \r
68         public void SetShipType(int i)\r
69         {\r
70             var s = _shipListPanel.GetShip(i);\r
71             var labels = _labelList[i];\r
72             labels.Reset();\r
73             labels.Fleet.Text = s.Name;\r
74             labels.BackPanel.Visible = true;\r
75         }\r
76 \r
77         public void HidePanel(int i)\r
78         {\r
79             _labelList[i].BackPanel.Visible = false;\r
80         }\r
81     }\r
82 }