OSDN Git Service

連合艦隊でないときにTPに第二艦隊の値が積算されるのを直す
[kancollesniffer/KancolleSniffer.git] / KancolleSniffer / ShipLabels.cs
index ddee0a3..54490bf 100644 (file)
@@ -1,19 +1,16 @@
 // Copyright (C) 2014, 2015 Kazuhiro Fujieda <fujieda@users.osdn.me>\r
 // \r
-// This program is part of KancolleSniffer.\r
+// Licensed under the Apache License, Version 2.0 (the "License");\r
+// you may not use this file except in compliance with the License.\r
+// You may obtain a copy of the License at\r
 //\r
-// KancolleSniffer is free software: you can redistribute it and/or modify\r
-// it under the terms of the GNU General Public License as published by\r
-// the Free Software Foundation, either version 3 of the License, or\r
-// (at your option) any later version.\r
+//    http://www.apache.org/licenses/LICENSE-2.0\r
 //\r
-// This program is distributed in the hope that it will be useful,\r
-// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
-// GNU General Public License for more details.\r
-//\r
-// You should have received a copy of the GNU General Public License\r
-// along with this program; if not, see <http://www.gnu.org/licenses/>.\r
+// Unless required by applicable law or agreed to in writing, software\r
+// distributed under the License is distributed on an "AS IS" BASIS,\r
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+// See the License for the specific language governing permissions and\r
+// limitations under the License.\r
 \r
 using System;\r
 using System.Drawing;\r
@@ -24,17 +21,26 @@ using static System.Math;
 \r
 namespace KancolleSniffer\r
 {\r
+    public enum ShipNameWidth\r
+    {\r
+        AkashiTimer = 53,\r
+        NDock = 69,\r
+        RepairList = NDock,\r
+        RepairListFull = 75,\r
+        Max = int.MaxValue\r
+    }\r
+\r
     public class ShipLabels\r
     {\r
         private readonly ShipLabel[][] _labels = new ShipLabel[ShipInfo.MemberCount][];\r
         private readonly ShipLabel[][] _combinedLabels = new ShipLabel[ShipInfo.MemberCount * 2][];\r
         private readonly ShipLabel[] _akashiTimers = new ShipLabel[ShipInfo.MemberCount];\r
-        private readonly ShipLabel[][] _damagedShipList = new ShipLabel[16][];\r
-        private Control _panelDamagedShipList;\r
+        private readonly ShipLabel[][] _repairList = new ShipLabel[16][];\r
+        private Control _panelRepairList;\r
         private readonly ShipLabel[][] _ndockLabels = new ShipLabel[DockInfo.DockCount][];\r
         public static Color[] ColumnColors = {SystemColors.Control, Color.FromArgb(255, 250, 250, 250)};\r
 \r
-        public void CreateLabels(Control parent, EventHandler onClick)\r
+        public void CreateShipLabels(Control parent, EventHandler onClick)\r
         {\r
             parent.SuspendLayout();\r
             const int top = 3, height = 12, lh = 16;\r
@@ -90,18 +96,26 @@ namespace KancolleSniffer
             parent.ResumeLayout();\r
         }\r
 \r
-        public void SetShipInfo(ShipStatus[] statuses)\r
+        public void SetShipLabels(ShipStatus[] statuses)\r
         {\r
-            var empty = new ShipStatus();\r
             for (var i = 0; i < _labels.Length; i++)\r
             {\r
                 var labels = _labels[i];\r
-                var s = i < statuses.Length ? statuses[i] : empty;\r
-                labels[0].SetHp(s);\r
-                labels[1].SetCond(s);\r
-                labels[2].SetLevel(s);\r
-                labels[3].SetExpToNext(s);\r
-                labels[4].SetName(s);\r
+                if (i < statuses.Length)\r
+                {\r
+                    var s = statuses[i];\r
+                    labels[0].SetHp(s);\r
+                    labels[1].SetCond(s);\r
+                    labels[2].SetLevel(s);\r
+                    labels[3].SetExpToNext(s);\r
+                    labels[4].SetName(s);\r
+                }\r
+                else\r
+                {\r
+                    labels[0].Text = labels[1].Text = labels[2].Text = labels[3].Text = "";\r
+                    labels[4].SetName("");\r
+                    labels[0].BackColor = labels[1].BackColor = labels[0].PresetColor;\r
+                }\r
             }\r
         }\r
 \r
@@ -109,6 +123,7 @@ namespace KancolleSniffer
         {\r
             parent.SuspendLayout();\r
             const int top = 3, height = 12, lh = 16;\r
+            const int parentWidth = 220; // parent.Widthを使うとDPIスケーリング時に計算がくるうので\r
             ShipLabel[] headings;\r
             parent.Controls.AddRange(headings = new[]\r
             {\r
@@ -116,7 +131,7 @@ namespace KancolleSniffer
                 new ShipLabel {Location = new Point(86, top), Text = "cnd", AutoSize = true},\r
                 new ShipLabel {Location = new Point(177, top), Text = "HP", AutoSize = true},\r
                 new ShipLabel {Location = new Point(195, top), Text = "cnd", AutoSize = true},\r
-                new ShipLabel {Location = new Point(0, 1), Size = new Size(parent.Width, lh - 1)}\r
+                new ShipLabel {Location = new Point(0, 1), Size = new Size(parentWidth, lh - 1)}\r
             });\r
             foreach (var label in headings)\r
             {\r
@@ -125,7 +140,7 @@ namespace KancolleSniffer
             }\r
             for (var i = 0; i < _combinedLabels.Length; i++)\r
             {\r
-                var x = (parent.Width / 2) * (i / ShipInfo.MemberCount);\r
+                var x = parentWidth / 2 * (i / ShipInfo.MemberCount);\r
                 var y = top + lh * ((i % ShipInfo.MemberCount) + 1);\r
                 parent.Controls.AddRange(_combinedLabels[i] = new[]\r
                 {\r
@@ -137,7 +152,7 @@ namespace KancolleSniffer
                         TextAlign = ContentAlignment.MiddleRight\r
                     },\r
                     new ShipLabel {Location = new Point(x + 2, y), AutoSize = true}, // 名前のZ-orderを下に\r
-                    new ShipLabel {Location = new Point(x, y - 2), Size = new Size(parent.Width / 2, lh - 1)}\r
+                    new ShipLabel {Location = new Point(x, y - 2), Size = new Size(parentWidth / 2, lh - 1)}\r
                 });\r
                 foreach (var label in _combinedLabels[i])\r
                 {\r
@@ -150,18 +165,26 @@ namespace KancolleSniffer
             parent.ResumeLayout();\r
         }\r
 \r
-        public void SetCombinedShipInfo(ShipStatus[] first, ShipStatus[] second)\r
+        public void SetCombinedShipLabels(ShipStatus[] first, ShipStatus[] second)\r
         {\r
-            var empty = new ShipStatus();\r
             for (var i = 0; i < _combinedLabels.Length; i++)\r
             {\r
                 var idx = i % ShipInfo.MemberCount;\r
                 var statuses = i < ShipInfo.MemberCount ? first : second;\r
                 var labels = _combinedLabels[i];\r
-                var s = idx < statuses.Length ? statuses[idx] : empty;\r
-                labels[0].SetHp(s);\r
-                labels[1].SetCond(s);\r
-                labels[2].SetName(s);\r
+                if (idx < statuses.Length)\r
+                {\r
+                    var s = statuses[idx];\r
+                    labels[0].SetHp(s);\r
+                    labels[1].SetCond(s);\r
+                    labels[2].SetName(s);\r
+                }\r
+                else\r
+                {\r
+                    labels[0].Text = labels[1].Text = "";\r
+                    labels[2].SetName("");\r
+                    labels[0].BackColor = labels[1].BackColor = labels[0].PresetColor;\r
+                }\r
             }\r
         }\r
 \r
@@ -170,7 +193,7 @@ namespace KancolleSniffer
             parent.SuspendLayout();\r
             for (var i = 0; i < _akashiTimers.Length; i++)\r
             {\r
-                const int x = 51;\r
+                const int x = 55;\r
                 var y = 3 + 16 * (i + 1);\r
                 ShipLabel label;\r
                 parent.Controls.Add(\r
@@ -202,6 +225,7 @@ namespace KancolleSniffer
             {\r
                 var label = _akashiTimers[i];\r
                 var labelHp = _labels[i][0];\r
+                var labelName = _labels[i][4];\r
                 if (i >= timers.Length || timers[i].Span == TimeSpan.MinValue)\r
                 {\r
                     label.Visible = false;\r
@@ -213,6 +237,7 @@ namespace KancolleSniffer
                 label.Visible = true;\r
                 label.Text = timer.Span.ToString(@"mm\:ss");\r
                 label.ForeColor = Control.DefaultForeColor;\r
+                labelName.SetName(stat, ShipNameWidth.AkashiTimer);\r
                 if (timer.Diff == 0)\r
                 {\r
                     labelHp.ForeColor = Control.DefaultForeColor;\r
@@ -225,41 +250,41 @@ namespace KancolleSniffer
             }\r
         }\r
 \r
-        public void CreateDamagedShipList(Control parent, EventHandler onClick)\r
+        public void CreateRepairList(Control parent, EventHandler onClick)\r
         {\r
             parent.SuspendLayout();\r
-            for (var i = 0; i < _damagedShipList.Length; i++)\r
+            for (var i = 0; i < _repairList.Length; i++)\r
             {\r
                 var y = 3 + i * 16;\r
                 const int height = 12;\r
-                parent.Controls.AddRange(_damagedShipList[i] = new[]\r
+                parent.Controls.AddRange(_repairList[i] = new[]\r
                 {\r
                     new ShipLabel {Location = new Point(0, y), Size = new Size(11, height)},\r
-                    new ShipLabel {Location = new Point(119, y), Size = new Size(4, height - 1)},\r
+                    new ShipLabel {Location = new Point(119, y), Size = new Size(5, height - 1)},\r
                     new ShipLabel {Location = new Point(75, y), AutoSize = true},\r
                     new ShipLabel {Location = new Point(9, y), AutoSize = true},\r
                     new ShipLabel {Location = new Point(0, y - 2), Size = new Size(parent.Width, height + 3)}\r
                 });\r
-                foreach (var label in _damagedShipList[i])\r
+                foreach (var label in _repairList[i])\r
                 {\r
                     label.Scale();\r
                     label.PresetColor = label.BackColor = ColumnColors[(i + 1) % 2];\r
                     label.Click += onClick;\r
                 }\r
             }\r
-            _panelDamagedShipList = parent;\r
+            _panelRepairList = parent;\r
             parent.ResumeLayout();\r
         }\r
 \r
-        public void SetDamagedShipList(ShipStatus[] list)\r
+        public void SetRepairList(ShipStatus[] list)\r
         {\r
             const int fleet = 0, name = 3, time = 2, damage = 1;\r
-            var parent = _panelDamagedShipList;\r
-            var num = Min(list.Length, _damagedShipList.Length);\r
+            var parent = _panelRepairList;\r
+            var num = Min(list.Length, _repairList.Length);\r
             if (num == 0)\r
             {\r
                 parent.Size = new Size(parent.Width, (int)Round(ShipLabel.ScaleFactor.Height * 19));\r
-                var labels = _damagedShipList[0];\r
+                var labels = _repairList[0];\r
                 labels[fleet].Text = "";\r
                 labels[name].SetName("なし");\r
                 labels[time].Text = "";\r
@@ -267,17 +292,14 @@ namespace KancolleSniffer
                 return;\r
             }\r
             parent.Size = new Size(parent.Width, (int)Round(ShipLabel.ScaleFactor.Height * (num * 16 + 3)));\r
-            var colors = new[] {Color.FromArgb(255, 225, 225, 21), Color.Orange, Color.Red};\r
             for (var i = 0; i < num; i++)\r
             {\r
                 var s = list[i];\r
-                var labels = _damagedShipList[i];\r
+                var labels = _repairList[i];\r
                 labels[fleet].SetFleet(s);\r
-                labels[name].SetName(s);\r
+                labels[name].SetName(s, ShipNameWidth.RepairList);\r
                 labels[time].SetRepairTime(s);\r
-                labels[damage].BackColor = (int)s.DamageLevel == 0\r
-                    ? labels[damage].PresetColor\r
-                    : colors[(int)s.DamageLevel - 1];\r
+                labels[damage].BackColor = ShipLabel.DamageColor(s, labels[damage].PresetColor);\r
             }\r
         }\r
 \r
@@ -291,10 +313,9 @@ namespace KancolleSniffer
                     {\r
                         new ShipLabel\r
                         {\r
-                            Location = new Point(93, y),\r
+                            Location = new Point(138, y),\r
                             AutoSize = true,\r
-                            AnchorRight = true,\r
-                            Text = "00:00:00"\r
+                            AnchorRight = true\r
                         },\r
                         new ShipLabel {Location = new Point(29, y), AutoSize = true} // 名前のZ-orderを下に\r
                     });\r
@@ -304,23 +325,19 @@ namespace KancolleSniffer
                     label.Click += onClick;\r
                 }\r
             }\r
-            parent.Click += onClick;\r
         }\r
 \r
         public void SetNDockLabels(NameAndTimer[] ndock)\r
         {\r
             for (var i = 0; i < _ndockLabels.Length; i++)\r
-                _ndockLabels[i][1].SetName(ndock[i].Name);\r
+                _ndockLabels[i][1].SetName("", ndock[i].Name, "", ShipNameWidth.NDock);\r
         }\r
 \r
         public void SetNDockTimer(int dock, RingTimer timer, bool finishTime)\r
         {\r
             var label = _ndockLabels[dock][0];\r
             label.ForeColor = timer.IsFinished ? Color.Red : Color.Black;\r
-            if (finishTime)\r
-                label.SetRepairFinishTime(timer.EndTime);\r
-            else\r
-                label.SetRepairTime(timer.Rest);\r
+            label.Text = timer.ToString(finishTime);\r
         }\r
     }\r
 \r
@@ -328,56 +345,92 @@ namespace KancolleSniffer
     public class ShipLabel : Label\r
     {\r
         public static SizeF ScaleFactor { get; set; }\r
+        public static Font LatinFont { get; set; } = new Font("Tahoma", 8f);\r
         public Color PresetColor { get; set; }\r
         public bool AnchorRight { get; set; }\r
         private int _right = int.MinValue;\r
         private int _left;\r
 \r
-        public void SetName(ShipStatus status)\r
+        public ShipLabel()\r
+        {\r
+            UseMnemonic = false;\r
+        }\r
+\r
+        public void SetName(ShipStatus status, ShipNameWidth width = ShipNameWidth.Max)\r
         {\r
             var empty = status.Id != -1 && status.Slot.All(e => e.Id == -1) ? "▫" : "";\r
             var dc = status.PreparedDamageControl;\r
             var dcname = dc == 42 ? "[ダ]" : dc == 43 ? "[メ]" : "";\r
-            SetName((status.Escaped ? "[避]" : dcname) + status.Name + empty);\r
+            SetName((status.Escaped ? "[避]" : dcname), status.Name, empty, width);\r
         }\r
 \r
         public void SetName(string name)\r
         {\r
-            var lu = name != null && new Regex(@"^\p{Lu}").IsMatch(name);\r
+            SetName("", name, "");\r
+        }\r
+\r
+        public void SetName(string prefix, string name, string suffix, ShipNameWidth width = ShipNameWidth.Max)\r
+        {\r
+            if (name == null)\r
+                return;\r
+            var lu = new Regex(@"^\p{Lu}").IsMatch(name);\r
             var shift = (int)Round(ScaleFactor.Height);\r
             if (lu && Font.Equals(Parent.Font))\r
             {\r
                 Location += new Size(0, -shift);\r
-                Font = new Font("Tahoma", 8f);\r
+                Font = LatinFont;\r
             }\r
             else if (!lu && !Font.Equals(Parent.Font))\r
             {\r
                 Location += new Size(0, shift);\r
                 Font = Parent.Font;\r
             }\r
-            Text = name;\r
+            var result = prefix + name + suffix;\r
+            var measured = TextRenderer.MeasureText(result, Font).Width;\r
+            if (measured <= (int)width)\r
+            {\r
+                Text = result;\r
+                return;\r
+            }\r
+            var truncated = "";\r
+            foreach (var ch in name)\r
+            {\r
+                var tmp = truncated + ch;\r
+                if (TextRenderer.MeasureText(tmp, Font).Width > (int)width)\r
+                    break;\r
+                truncated = tmp;\r
+            }\r
+            Text = prefix + truncated.TrimEnd(' ') + suffix;\r
         }\r
 \r
         public void SetHp(ShipStatus status)\r
         {\r
-            SetHp(status.NowHp, status.MaxHp);\r
+            Text = $"{status.NowHp:D}/{status.MaxHp:D}";\r
+            BackColor = DamageColor(status, PresetColor);\r
         }\r
 \r
         public void SetHp(int now, int max)\r
         {\r
-            var colors = new[] {PresetColor, Color.FromArgb(255, 240, 240, 100), Color.Orange, Color.Red};\r
-            Text = $"{now:D}/{max:D}";\r
-            BackColor = colors[(int)ShipStatus.CalcDamage(now, max)];\r
+            SetHp(new ShipStatus {NowHp = now, MaxHp = max});\r
         }\r
 \r
-        public void SetCond(ShipStatus status)\r
+        public static Color DamageColor(ShipStatus status, Color backcolor)\r
         {\r
-            if (status.Level == 0)\r
+            switch (status.DamageLevel)\r
             {\r
-                Text = "0";\r
-                BackColor = PresetColor;\r
-                return;\r
+                case ShipStatus.Damage.Badly:\r
+                    return Color.Red;\r
+                case ShipStatus.Damage.Half:\r
+                    return Color.Orange;\r
+                case ShipStatus.Damage.Small:\r
+                    return Color.FromArgb(240, 240, 0);\r
+                default:\r
+                    return backcolor;\r
             }\r
+        }\r
+\r
+        public void SetCond(ShipStatus status)\r
+        {\r
             var cond = status.Cond;\r
             Text = cond.ToString("D");\r
             BackColor = cond >= 50\r
@@ -407,11 +460,6 @@ namespace KancolleSniffer
             Text = $@"{(int)span.TotalHours:d2}:{span:mm\:ss}";\r
         }\r
 \r
-        public void SetRepairFinishTime(DateTime time)\r
-        {\r
-            Text = time == DateTime.MinValue ? "-------" : time.ToString(@"dd\ HH\:mm");\r
-        }\r
-\r
         public void SetFleet(ShipStatus status)\r
         {\r
             Text = new[] {"", "1", "2", "3", "4"}[status.Fleet + 1];\r