OSDN Git Service

補強装備スロットに対応する
[kancollesniffer/KancolleSniffer.git] / KancolleSniffer / EquipPanel.cs
1 // Copyright (C) 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.Collections.Generic;\r
20 using System.Drawing;\r
21 using System.Windows.Forms;\r
22 \r
23 namespace KancolleSniffer\r
24 {\r
25     public class EquipPanel : Panel\r
26     {\r
27         private const int LineHeight = 14;\r
28         private const int LabelHeight = 12;\r
29         private EquipColumn[] _equipList;\r
30         private readonly List<ShipLabel[]> _labelList = new List<ShipLabel[]>();\r
31         private readonly List<Panel> _panelList = new List<Panel>();\r
32 \r
33         private class EquipColumn\r
34         {\r
35             public string Fleet { get; set; }\r
36             public string Ship { get; set; }\r
37             public int Id { get; set; }\r
38             public string Equip { get; set; }\r
39             public Color Color { get; set; }\r
40             public string Spec { get; set; }\r
41 \r
42             public EquipColumn()\r
43             {\r
44                 Fleet = Ship = Equip = "";\r
45                 Color = DefaultBackColor;\r
46             }\r
47         }\r
48 \r
49         public void UpdateEquip(Sniffer sniffer)\r
50         {\r
51             CreateEquipList(sniffer);\r
52             SuspendLayout();\r
53             CreateEquipLabels();\r
54             SetEquipLabels();\r
55             ResumeLayout();\r
56         }\r
57 \r
58         private void CreateEquipList(Sniffer sniffer)\r
59         {\r
60             var list = new List<EquipColumn>();\r
61             var fn = new[] {"第一艦隊", "第二艦隊", "第三艦隊", "第四艦隊"};\r
62             for (var f = 0; f < fn.Length; f++)\r
63             {\r
64                 var drumTotal = 0;\r
65                 var drumShips = 0;\r
66                 var levelTotal = 0;\r
67                 var ships = new List<EquipColumn>();\r
68                 foreach (var s in sniffer.GetShipStatuses(f))\r
69                 {\r
70                     var drum = 0;\r
71                     var equips = new List<EquipColumn>();\r
72                     for (var i = 0; i < s.Slot.Length; i++)\r
73                     {\r
74                         var slot = s.Slot[i];\r
75                         var onslot = s.OnSlot[i];\r
76                         var max = s.Spec.MaxEq[i];\r
77                         if (slot == -1)\r
78                             continue;\r
79                         var item = sniffer.Item.ItemDict[slot];\r
80                         if (item.Spec.Name == "ドラム缶(輸送用)")\r
81                             drum++;\r
82                         equips.Add(new EquipColumn\r
83                         {\r
84                             Equip = item.Spec.Name +\r
85                                     (item.Alv == 0 ? "" : "+" + item.Alv) +\r
86                                     (item.Level == 0 ? "" : "★" + item.Level) +\r
87                                     (!item.Spec.IsAircraft ? "" : " " + onslot + "/" + max),\r
88                             Color = item.Spec.Color\r
89                         });\r
90                     }\r
91                     if (s.SlotEx > 0)\r
92                     {\r
93                         var item = sniffer.Item.ItemDict[s.SlotEx];\r
94                         equips.Add(new EquipColumn {Equip = item.Spec.Name, Color = item.Spec.Color});\r
95                     }\r
96                     if (drum != 0)\r
97                         drumShips++;\r
98                     drumTotal += drum;\r
99                     levelTotal += s.Level;\r
100                     var rfp = s.RealFirepower;\r
101                     var ras = s.RealAntiSubmarine;\r
102                     ships.Add(new EquipColumn\r
103                     {\r
104                         Ship = (s.Escaped ? "[避]" : "") + s.Name + " Lv" + s.Level,\r
105                         Id = s.Id,\r
106                         Spec = (rfp == 0 ? "" : "砲" + rfp) + (ras == 0 ? "" : " 潜" + ras)\r
107                     });\r
108                     ships.AddRange(equips);\r
109                 }\r
110                 list.Add(new EquipColumn\r
111                 {\r
112                     Fleet = fn[f] + (levelTotal == 0 ? "" : " 合計Lv" + levelTotal) +\r
113                             (drumTotal == 0 ? "" : " ドラム缶" + drumTotal + "(" + drumShips + "隻)")\r
114                 });\r
115                 list.AddRange(ships);\r
116             }\r
117             _equipList = list.ToArray();\r
118         }\r
119 \r
120         private void CreateEquipLabels()\r
121         {\r
122             for (var i = _labelList.Count; i < _equipList.Length; i++)\r
123                 CreateEquipLabels(i);\r
124         }\r
125 \r
126         private void CreateEquipLabels(int i)\r
127         {\r
128             var y = 1 + LineHeight * i;\r
129             var lbp = new Panel\r
130             {\r
131                 Location = new Point(0, y),\r
132                 Size = new Size(ShipListForm.PanelWidth, LineHeight),\r
133                 BackColor = ShipLabels.ColumnColors[(i + 1) % 2],\r
134                 Visible = false\r
135             };\r
136             lbp.Scale(ShipLabel.ScaleFactor);\r
137             lbp.Tag = lbp.Location.Y;\r
138             var labels = new[]\r
139             {\r
140                 new ShipLabel {Location = new Point(1, 2), AutoSize = true},\r
141                 new ShipLabel {Location = new Point(10, 2), AutoSize = true},\r
142                 new ShipLabel {Location = new Point(40, 2), AutoSize = true},\r
143                 new ShipLabel {Location = new Point(37, 2), Size = new Size(4, LabelHeight - 2)},\r
144                 new ShipLabel {Location = new Point(217, 2), AutoSize = true, AnchorRight = true}\r
145             };\r
146             _labelList.Add(labels);\r
147             _panelList.Add(lbp);\r
148             // ReSharper disable once CoVariantArrayConversion\r
149             lbp.Controls.AddRange(labels);\r
150             Controls.Add(lbp);\r
151             foreach (var label in labels)\r
152             {\r
153                 label.Scale();\r
154                 label.PresetColor =\r
155                     label.BackColor = ShipLabels.ColumnColors[(i + 1) % 2];\r
156             }\r
157         }\r
158 \r
159         private void SetEquipLabels()\r
160         {\r
161             for (var i = 0; i < _equipList.Length; i++)\r
162                 SetEquip(i);\r
163             for (var i = _equipList.Length; i < _labelList.Count; i++)\r
164                 _panelList[i].Visible = false;\r
165         }\r
166 \r
167         private void SetEquip(int i)\r
168         {\r
169             var lbp = _panelList[i];\r
170             if (!lbp.Visible)\r
171                 lbp.Location = new Point(lbp.Left, (int)lbp.Tag + AutoScrollPosition.Y);\r
172             var e = _equipList[i];\r
173             var labels = _labelList[i];\r
174             labels[0].Text = e.Fleet;\r
175             labels[1].SetName(e.Ship);\r
176             labels[2].Text = e.Equip;\r
177             labels[3].Visible = e.Equip != "";\r
178             labels[3].BackColor = e.Color;\r
179             labels[4].Text = e.Spec;\r
180             lbp.Visible = true;\r
181         }\r
182 \r
183         public void ShowShip(int id)\r
184         {\r
185             var i = Array.FindIndex(_equipList, e => e.Id == id);\r
186             if (i == -1)\r
187                 return;\r
188             var y = (int)Math.Round(ShipLabel.ScaleFactor.Height * LineHeight * i);\r
189             AutoScrollPosition = new Point(0, y);\r
190         }\r
191     }\r
192 }