diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/DeliverInitAction.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/DeliverInitAction.cs index 6c61341..295fcea 100644 --- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/DeliverInitAction.cs +++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/DeliverInitAction.cs @@ -38,9 +38,12 @@ namespace Mesnac.Action.ChemicalWeighing.LjDeliver DB91Helper DB91 = new DB91Helper(); DB137Helper DB137 = new DB137Helper(); DB120Helper DB120 = new DB120Helper(); + DB141Helper DB141 = new DB141Helper(); byte[] b1; - byte[] b90; //db1/90的byte数组 + byte[] b90; //db1/90/91的byte数组 + byte[] b91; + byte[] b141; /// /// 所有Alarm点位 @@ -722,6 +725,8 @@ namespace Mesnac.Action.ChemicalWeighing.LjDeliver { b1 = DB1.bytes; b90 = DB90.bytes; + b91 = DB91.bytes; + b141 = DB141.bytes; StringBuilder sb = new StringBuilder(); @@ -742,6 +747,20 @@ namespace Mesnac.Action.ChemicalWeighing.LjDeliver sb.Append(rows["Alarm_Cn_Info"].ToString()); sb.Append(@" \ "); } + else if ((int)rows["Alarm_Block"] == 91 && b91[(int)rows["Alarm_Word"]].GetBit((int)rows["Alarm_bit"]) == true) + { + sb.Append(rows["Alarm_Other_Info"].ToString()); + sb.Append(" "); + sb.Append(rows["Alarm_Cn_Info"].ToString()); + sb.Append(@" \ "); + } + else if ((int)rows["Alarm_Block"] == 141 && b141[(int)rows["Alarm_Word"]].GetBit((int)rows["Alarm_bit"]) == true) + { + sb.Append(rows["Alarm_Other_Info"].ToString()); + sb.Append(" "); + sb.Append(rows["Alarm_Cn_Info"].ToString()); + sb.Append(@" \ "); + } } string str = sb.ToString(); diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/DeliverEntity.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/DeliverEntity.cs index 360ac0a..ef38359 100644 --- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/DeliverEntity.cs +++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/DeliverEntity.cs @@ -64,6 +64,31 @@ namespace Mesnac.Action.ChemicalWeighing.LjDeliver.Entity public MCLabel PR1PCP02 { get; set; } public MCLabel PR1PCP03 { get; set; } + public MCLabel PFTStatus1 { get; set; } + public MCLabel PFTStatus2 { get; set; } + public MCLabel PFTStatus3 { get; set; } + public MCLabel PFTStatus4 { get; set; } + public MCLabel PFTStatus5 { get; set; } + public MCLabel PFTStatus6 { get; set; } + public MCLabel PFTStepCode1 { get; set; } + public MCLabel PFTStepCode2 { get; set; } + public MCLabel PFTStepCode3 { get; set; } + public MCLabel PFTStepCode4 { get; set; } + public MCLabel PFTStepCode5 { get; set; } + public MCLabel PFTStepCode6 { get; set; } + public MCLabel PFTStepName1 { get; set; } + public MCLabel PFTStepName2 { get; set; } + public MCLabel PFTStepName3 { get; set; } + public MCLabel PFTStepName4 { get; set; } + public MCLabel PFTStepName5 { get; set; } + public MCLabel PFTStepName6 { get; set; } + public MCLabel PFTStepTime1 { get; set; } + public MCLabel PFTStepTime2 { get; set; } + public MCLabel PFTStepTime3 { get; set; } + public MCLabel PFTStepTime4 { get; set; } + public MCLabel PFTStepTime5 { get; set; } + public MCLabel PFTStepTime6 { get; set; } + } internal class LjSwitchEntity diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliverPressureSetting/PlcDownload.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliverPressureSetting/PlcDownload.cs index ab584a4..8b62cd3 100644 --- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliverPressureSetting/PlcDownload.cs +++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliverPressureSetting/PlcDownload.cs @@ -21,7 +21,7 @@ namespace Mesnac.Action.ChemicalWeighing.LjDeliverPressureSetting ConveyorTimer conveyorTimerB = new ConveyorTimer(); ConveyorTimer conveyorTimerC = new ConveyorTimer(); - string Alarm = "组数值超出取值范围!(大于0小于50)"; + string Alarm = "组数值超出取值范围!(大于0小于200)"; if (!SetValueWithJudge(conveyorA, Convert.ToSingle(BoxE.ASetValue1.MCValue.ToString()), diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Util/ControlsImprot.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Util/ControlsImprot.cs index 717d15c..817e335 100644 --- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Util/ControlsImprot.cs +++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Util/ControlsImprot.cs @@ -192,6 +192,12 @@ namespace Mesnac.Action.ChemicalWeighing.Util obj.Text = Convert.ToString(set); obj.ForeColor = color; } + /// + /// 文本标签布尔转换 + /// + /// + /// + /// 1为自动手动、2为启动停止 public static void SetMCLabel(MCLabel obj, bool state, int flag) { if (flag == 1) diff --git a/DataBlockHelper/DBHelpers/DB141Helper.cs b/DataBlockHelper/DBHelpers/DB141Helper.cs new file mode 100644 index 0000000..4bb585d --- /dev/null +++ b/DataBlockHelper/DBHelpers/DB141Helper.cs @@ -0,0 +1,19 @@ +using HslCommunication; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DataBlockHelper.DBHelpers +{ + public class DB141Helper : DBHelper + { + public DB141Helper() + { + bytes = PlcConnect.Instance.Read("DB141.0.0", 7).Content; + } + + + } +} diff --git a/DataBlockHelper/DataBlockHelper.csproj b/DataBlockHelper/DataBlockHelper.csproj index 52db52a..d5fa1b1 100644 --- a/DataBlockHelper/DataBlockHelper.csproj +++ b/DataBlockHelper/DataBlockHelper.csproj @@ -54,6 +54,7 @@ + diff --git a/Main/MCEdit/Data/MCProject/nodeForm/LjDeliver.xml b/Main/MCEdit/Data/MCProject/nodeForm/LjDeliver.xml index f62be5e..4757359 100644 --- a/Main/MCEdit/Data/MCProject/nodeForm/LjDeliver.xml +++ b/Main/MCEdit/Data/MCProject/nodeForm/LjDeliver.xml @@ -1,6 +1,1037 @@ + + + + + + Red + DarkGray + + + False + + + + None + True + True + 压送罐2 + Transparent + ButtonHighlight + 14, 57 + MCLabel297 + 47, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 压送罐1 + Transparent + ButtonHighlight + 14, 35 + MCLabel298 + 47, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 140, 57 + PFTStepName6 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 70, 57 + PFTStatus6 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 105, 57 + PFTStepCode6 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 199, 57 + PFTStepTime6 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 状态 + Transparent + ButtonHighlight + 70, 10 + MCLabel303 + 29, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 步序 + Transparent + ButtonHighlight + 105, 10 + MCLabel304 + 29, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 步时 + Transparent + ButtonHighlight + 199, 10 + MCLabel305 + 29, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 步骤名称 + Transparent + ButtonHighlight + 140, 10 + MCLabel306 + 53, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 140, 35 + PFTStepName5 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 70, 35 + PFTStatus5 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 105, 35 + PFTStepCode5 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 199, 35 + PFTStepTime5 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + C组 + Transparent + ButtonHighlight + 14, 10 + MCLabel311 + 23, 12 + + 340, 736 + MCPanelBlack3 + 241, 83 + + + + + + + Red + DarkGray + + + False + + + + None + True + True + 压送罐2 + Transparent + ButtonHighlight + 14, 57 + MCLabel282 + 47, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 压送罐1 + Transparent + ButtonHighlight + 14, 35 + MCLabel283 + 47, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 140, 57 + PFTStepName4 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 70, 57 + PFTStatus4 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 105, 57 + PFTStepCode4 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 199, 57 + PFTStepTime4 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 状态 + Transparent + ButtonHighlight + 70, 10 + MCLabel288 + 29, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 步序 + Transparent + ButtonHighlight + 105, 10 + MCLabel289 + 29, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 步时 + Transparent + ButtonHighlight + 199, 10 + MCLabel290 + 29, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 步骤名称 + Transparent + ButtonHighlight + 140, 10 + MCLabel291 + 53, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 140, 35 + PFTStepName3 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 70, 35 + PFTStatus3 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 105, 35 + PFTStepCode3 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 199, 35 + PFTStepTime3 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + B组 + Transparent + ButtonHighlight + 14, 10 + MCLabel296 + 23, 12 + + 340, 455 + MCPanelBlack2 + 241, 83 + + + + + + + Red + DarkGray + + + False + + + + None + True + True + 压送罐2 + Transparent + ButtonHighlight + 14, 57 + MCLabel281 + 47, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 压送罐1 + Transparent + ButtonHighlight + 14, 35 + MCLabel280 + 47, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 140, 57 + PFTStepName2 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 70, 57 + PFTStatus2 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 105, 57 + PFTStepCode2 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 199, 57 + PFTStepTime2 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 状态 + Transparent + ButtonHighlight + 70, 10 + MCLabel16 + 29, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 步序 + Transparent + ButtonHighlight + 105, 10 + MCLabel17 + 29, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 步时 + Transparent + ButtonHighlight + 199, 10 + MCLabel19 + 29, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 步骤名称 + Transparent + ButtonHighlight + 140, 10 + MCLabel50 + 53, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 140, 35 + PFTStepName1 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 70, 35 + PFTStatus1 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 105, 35 + PFTStepCode1 + 11, 12 + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + Transparent + ButtonHighlight + 199, 35 + PFTStepTime1 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + A组 + Transparent + ButtonHighlight + 14, 10 + MCLabel275 + 23, 12 + + 340, 171 + MCPanelBlack1 + 241, 83 + + + + + + + False + + + + None + True + True + MiddleCenter + Aqua + 556, 24 + SpecialLabelBlue475 + 16, 1 + + + + + zsTurnOff + 559, 46 + DM1GDP01 + 25, 25 + + + + + + + False + + + + None + True + True + MiddleCenter + Aqua + 571, 24 + SpecialLabelBlue476 + 1, 67 + + + + + + + False + + + + None + True + True + MiddleCenter + Aqua + 125, 167 + SpecialLabelBlue477 + 1, 17 + @@ -82,7 +1113,7 @@ 23, 12 - 大仓压力曲线 + 压送罐压力曲线 True True Right @@ -158,7 +1189,7 @@ zsTurnOff - 336, 653 + 221, 653 DM3DSM01 15, 15 @@ -166,7 +1197,7 @@ zsTurnOff - 336, 372 + 221, 372 DM2DSM01 15, 15 @@ -174,18 +1205,10 @@ zsTurnOff - 336, 88 + 221, 88 DM1DSM01 15, 15 - - - - zsTurnOff - 555, 78 - DM1GDP01 - 25, 25 - @@ -200,12 +1223,12 @@ True MiddleCenter Aqua - 547, 90 + 571, 90 SpecialLabelBlue478 - 153, 1 + 129, 1 - 518, 82 + 528, 17 SheBei2 46, 51 @@ -829,7 +1852,7 @@ True 侧吹 ButtonHighlight - 323, 126 + 208, 126 agsfbsg 29, 12 @@ -849,7 +1872,7 @@ True 激振器 ButtonHighlight - 298, 109 + 183, 109 fdsbfs 41, 12 @@ -869,7 +1892,7 @@ True 0 White - 412, 722 + 297, 722 PR3DBT03 11, 12 @@ -889,7 +1912,7 @@ True 0 White - 410, 834 + 295, 834 PR3DBT04 11, 12 @@ -909,7 +1932,7 @@ True 0 White - 281, 722 + 166, 722 PR3DBT02 11, 12 @@ -929,7 +1952,7 @@ True 0 White - 412, 156 + 297, 156 PR1DBT03 11, 12 @@ -949,7 +1972,7 @@ True 0 White - 410, 268 + 295, 268 PR1DBT04 11, 12 @@ -969,7 +1992,7 @@ True 0 White - 281, 156 + 166, 156 PR1DBT02 11, 12 @@ -989,7 +2012,7 @@ True 0 White - 412, 441 + 297, 441 PR2DBT03 11, 12 @@ -1009,7 +2032,7 @@ True 0 White - 410, 553 + 295, 553 PR2DBT04 11, 12 @@ -1029,49 +2052,49 @@ True 0 White - 281, 441 + 166, 441 PR2DBT02 11, 12 TurnOff - 350, 686 + 235, 686 SideBlowing3 13, 11 TurnOff - 343, 676 + 228, 676 Excitation3 13, 11 TurnOff - 350, 405 + 235, 405 SideBlowing2 13, 11 TurnOff - 343, 395 + 228, 395 Excitation2 13, 11 TurnOff - 350, 121 + 235, 121 SideBlowing1 13, 11 TurnOff - 343, 111 + 228, 111 Excitation1 13, 11 @@ -1105,39 +2128,39 @@ - 339, 858 + 224, 858 AS3DBT07 14, 12 - 342, 578 + 227, 578 AS2DBT07 14, 12 - 341, 293 + 226, 293 AS1DBT07 14, 12 - 365, 656 + 250, 656 HighLevel3 13, 13 - 365, 375 + 250, 375 HighLevel2 13, 13 - 365, 91 + 250, 91 HighLevel1 13, 13 @@ -1229,7 +2252,7 @@ White 1649, 181 SpecialLabelBlue505 - 43, 3 + 202, 3 @@ -1270,7 +2293,7 @@ True 0 White - 205, 807 + 90, 807 PR3DBT01 11, 12 @@ -1290,7 +2313,7 @@ True 0 White - 205, 526 + 90, 526 PR2DBT01 11, 12 @@ -1310,7 +2333,7 @@ True 0 White - 205, 244 + 90, 244 PR1DBT01 11, 12 @@ -1330,7 +2353,7 @@ True 0 White - 246, 851 + 131, 851 SPV3DBT02 11, 12 @@ -1350,7 +2373,7 @@ True 0 White - 246, 828 + 131, 828 SPV3DBT01 11, 12 @@ -1370,7 +2393,7 @@ True 0 White - 246, 569 + 131, 569 SPV2DBT02 11, 12 @@ -1390,7 +2413,7 @@ True 0 White - 246, 547 + 131, 547 SPV2DBT01 11, 12 @@ -1410,7 +2433,7 @@ True 0 White - 246, 285 + 131, 285 SPV1DBT02 11, 12 @@ -1430,7 +2453,7 @@ True 0 White - 246, 262 + 131, 262 SPV1DBT01 11, 12 @@ -1564,9 +2587,9 @@ True MiddleCenter White - 1822, 118 + 1836, 110 SpecialLabelBlue698 - 30, 2 + 15, 2 @@ -1584,7 +2607,7 @@ White 1849, 88 SpecialLabelBlue697 - 2, 24 + 2, 95 @@ -2767,7 +3790,7 @@ True 玉米粉等 Yellow - 213, 590 + 98, 590 MCLabel274 53, 12 @@ -2787,7 +3810,7 @@ True 小料等 Yellow - 218, 305 + 103, 305 MCLabel273 41, 12 @@ -3065,9 +4088,9 @@ True MiddleCenter Aqua - 151, 72 + 36, 184 SpecialLabelBlue626 - 1, 754 + 1, 642 @@ -3083,9 +4106,9 @@ True MiddleCenter Aqua - 135, 72 + 36, 184 SpecialLabelBlue625 - 17, 1 + 90, 1 @@ -3101,9 +4124,9 @@ True MiddleCenter Aqua - 242, 583 + 127, 583 SpecialLabelBlue623 - 405, 1 + 520, 1 @@ -3119,7 +4142,7 @@ True MiddleCenter Aqua - 242, 545 + 127, 545 SpecialLabelBlue624 1, 39 @@ -3137,9 +4160,9 @@ True MiddleCenter Aqua - 242, 864 + 127, 864 SpecialLabelBlue599 - 446, 1 + 561, 1 @@ -3155,7 +4178,7 @@ True MiddleCenter Aqua - 242, 826 + 127, 826 SpecialLabelBlue600 1, 39 @@ -3173,7 +4196,7 @@ True MiddleCenter Aqua - 151, 825 + 36, 825 SpecialLabelBlue601 134, 1 @@ -3191,21 +4214,21 @@ True MiddleCenter White - 340, 846 + 225, 846 SpecialLabelBlue602 - 332, 3 + 447, 3 - 399, 820 + 284, 820 BU3DBT07 14, 12 - 337, 820 + 222, 820 BU3DBT06 14, 12 @@ -3223,7 +4246,7 @@ True MiddleCenter White - 401, 818 + 286, 818 SpecialLabelBlue603 3, 29 @@ -3241,14 +4264,14 @@ True MiddleCenter White - 340, 819 + 225, 819 SpecialLabelBlue604 3, 27 - 310, 842 + 195, 842 AS3DBT06 14, 12 @@ -3266,7 +4289,7 @@ True MiddleCenter Aqua - 415, 739 + 300, 739 SpecialLabelBlue605 26, 1 @@ -3284,7 +4307,7 @@ True MiddleCenter Aqua - 304, 740 + 189, 740 SpecialLabelBlue606 24, 1 @@ -3302,35 +4325,35 @@ True MiddleCenter Aqua - 264, 778 + 149, 778 SpecialLabelBlue607 177, 1 - 400, 711 + 285, 711 BU3DBT04 14, 12 - 333, 711 + 218, 711 BU3DBT03 14, 12 - 379, 716 + 264, 716 BU3DBT02 14, 12 - 352, 717 + 237, 717 BU3DBT01 14, 12 @@ -3348,7 +4371,7 @@ True MiddleCenter White - 404, 705 + 289, 705 SpecialLabelBlue608 2, 41 @@ -3366,7 +4389,7 @@ True MiddleCenter White - 337, 705 + 222, 705 SpecialLabelBlue609 2, 41 @@ -3384,7 +4407,7 @@ True MiddleCenter White - 337, 705 + 222, 705 SpecialLabelBlue610 69, 2 @@ -3402,7 +4425,7 @@ True MiddleCenter White - 356, 712 + 241, 712 SpecialLabelBlue611 30, 3 @@ -3420,7 +4443,7 @@ True MiddleCenter White - 383, 714 + 268, 714 SpecialLabelBlue612 3, 27 @@ -3438,7 +4461,7 @@ True MiddleCenter White - 356, 714 + 241, 714 SpecialLabelBlue613 3, 27 @@ -3456,59 +4479,59 @@ True MiddleCenter White - 370, 700 + 255, 700 SpecialLabelBlue614 3, 12 - 394, 746 + 279, 746 Atank6 13, 13 - 335, 747 + 220, 747 Atank5 13, 13 - 356, 850 + 241, 850 Xie19 32, 12 - 420, 795 + 305, 795 AS3DBT05 14, 12 - 310, 795 + 195, 795 AS3DBT04 14, 12 - 436, 748 + 321, 748 AS3DBT02 14, 12 - 300, 748 + 185, 748 AS3DBT01 14, 12 - 280, 795 + 165, 795 AS3DBT03 14, 12 @@ -3526,17 +4549,17 @@ True MiddleCenter White - 370, 631 + 255, 631 SpecialLabelBlue615 3, 24 - 350, 653 + 235, 653 Dou30 43, 49 - 162, 575 + 47, 575 HslTruck21 130, 72 @@ -3554,7 +4577,7 @@ True MiddleCenter Aqua - 303, 847 + 188, 847 SpecialLabelBlue616 38, 1 @@ -3572,7 +4595,7 @@ True MiddleCenter Aqua - 409, 801 + 294, 801 SpecialLabelBlue617 31, 1 @@ -3590,7 +4613,7 @@ True MiddleCenter Aqua - 440, 740 + 325, 740 SpecialLabelBlue618 1, 63 @@ -3608,7 +4631,7 @@ True MiddleCenter Aqua - 304, 801 + 189, 801 SpecialLabelBlue619 32, 1 @@ -3626,17 +4649,17 @@ True MiddleCenter Aqua - 303, 740 + 188, 740 SpecialLabelBlue620 1, 107 - 373, 736 + 258, 736 LouDou47 56, 83 - 313, 736 + 198, 736 LouDou48 56, 83 @@ -3654,7 +4677,7 @@ True MiddleCenter Aqua - 263, 778 + 148, 778 SpecialLabelBlue621 1, 48 @@ -3672,12 +4695,12 @@ True MiddleCenter Aqua - 284, 778 + 169, 778 SpecialLabelBlue622 1, 48 - 284, 604 + 169, 604 Trucks21 113, 37 @@ -3695,9 +4718,9 @@ True MiddleCenter Aqua - 242, 298 + 127, 298 SpecialLabelBlue595 - 363, 1 + 478, 1 @@ -3713,7 +4736,7 @@ True MiddleCenter Aqua - 242, 260 + 127, 260 SpecialLabelBlue596 1, 39 @@ -3731,7 +4754,7 @@ True MiddleCenter Aqua - 152, 544 + 37, 544 SpecialLabelBlue549 133, 1 @@ -3749,21 +4772,21 @@ True MiddleCenter White - 340, 565 + 225, 565 SpecialLabelBlue550 - 288, 3 + 403, 3 - 399, 539 + 284, 539 BU2DBT07 14, 12 - 337, 539 + 222, 539 BU2DBT06 14, 12 @@ -3781,7 +4804,7 @@ True MiddleCenter White - 401, 537 + 286, 537 SpecialLabelBlue551 3, 29 @@ -3799,14 +4822,14 @@ True MiddleCenter White - 340, 538 + 225, 538 SpecialLabelBlue552 3, 27 - 310, 561 + 195, 561 AS2DBT06 14, 12 @@ -3824,7 +4847,7 @@ True MiddleCenter Aqua - 415, 458 + 300, 458 SpecialLabelBlue553 26, 1 @@ -3842,7 +4865,7 @@ True MiddleCenter Aqua - 304, 459 + 189, 459 SpecialLabelBlue554 24, 1 @@ -3860,35 +4883,35 @@ True MiddleCenter Aqua - 264, 497 + 149, 497 SpecialLabelBlue555 177, 1 - 400, 430 + 285, 430 BU2DBT04 14, 12 - 333, 430 + 218, 430 BU2DBT03 14, 12 - 379, 435 + 264, 435 BU2DBT02 14, 12 - 352, 436 + 237, 436 BU2DBT01 14, 12 @@ -3906,7 +4929,7 @@ True MiddleCenter White - 404, 424 + 289, 424 SpecialLabelBlue556 2, 41 @@ -3924,7 +4947,7 @@ True MiddleCenter White - 337, 424 + 222, 424 SpecialLabelBlue557 2, 41 @@ -3942,7 +4965,7 @@ True MiddleCenter White - 337, 424 + 222, 424 SpecialLabelBlue558 69, 2 @@ -3960,7 +4983,7 @@ True MiddleCenter White - 356, 431 + 241, 431 SpecialLabelBlue559 30, 3 @@ -3978,7 +5001,7 @@ True MiddleCenter White - 383, 433 + 268, 433 SpecialLabelBlue560 3, 27 @@ -3996,7 +5019,7 @@ True MiddleCenter White - 356, 433 + 241, 433 SpecialLabelBlue561 3, 27 @@ -4014,59 +5037,59 @@ True MiddleCenter White - 370, 419 + 255, 419 SpecialLabelBlue562 3, 12 - 394, 465 + 279, 465 Atank4 13, 13 - 335, 466 + 220, 466 Atank3 13, 13 - 356, 569 + 241, 569 Xie18 32, 12 - 420, 514 + 305, 514 AS2DBT05 14, 12 - 310, 514 + 195, 514 AS2DBT04 14, 12 - 436, 467 + 321, 467 AS2DBT02 14, 12 - 300, 467 + 185, 467 AS2DBT01 14, 12 - 280, 514 + 165, 514 AS2DBT03 14, 12 @@ -4084,17 +5107,17 @@ True MiddleCenter White - 370, 348 + 255, 348 SpecialLabelBlue563 3, 24 - 350, 372 + 235, 372 Dou29 43, 49 - 162, 292 + 47, 292 HslTruck20 130, 72 @@ -4112,7 +5135,7 @@ True MiddleCenter Aqua - 303, 566 + 188, 566 SpecialLabelBlue564 38, 1 @@ -4130,7 +5153,7 @@ True MiddleCenter Aqua - 409, 520 + 294, 520 SpecialLabelBlue565 31, 1 @@ -4148,7 +5171,7 @@ True MiddleCenter Aqua - 440, 459 + 325, 459 SpecialLabelBlue566 1, 63 @@ -4166,7 +5189,7 @@ True MiddleCenter Aqua - 304, 520 + 189, 520 SpecialLabelBlue567 32, 1 @@ -4184,17 +5207,17 @@ True MiddleCenter Aqua - 303, 459 + 188, 459 SpecialLabelBlue568 1, 107 - 373, 455 + 258, 455 LouDou45 56, 83 - 313, 455 + 198, 455 LouDou46 56, 83 @@ -4212,7 +5235,7 @@ True MiddleCenter Aqua - 263, 497 + 148, 497 SpecialLabelBlue569 1, 48 @@ -4230,12 +5253,12 @@ True MiddleCenter Aqua - 284, 497 + 169, 497 SpecialLabelBlue570 1, 48 - 284, 321 + 169, 321 Trucks20 113, 37 @@ -4253,7 +5276,7 @@ True MiddleCenter Aqua - 152, 260 + 37, 260 SpecialLabelBlue544 133, 1 @@ -4271,21 +5294,21 @@ True MiddleCenter White - 340, 281 + 225, 281 SpecialLabelBlue543 - 250, 3 + 365, 3 - 399, 255 + 284, 255 BU1DBT07 14, 12 - 337, 255 + 222, 255 BU1DBT06 14, 12 @@ -4303,7 +5326,7 @@ True MiddleCenter White - 401, 253 + 286, 253 SpecialLabelBlue541 3, 29 @@ -4321,14 +5344,14 @@ True MiddleCenter White - 340, 254 + 225, 254 SpecialLabelBlue542 3, 27 - 310, 277 + 195, 277 AS1DBT06 14, 12 @@ -4346,7 +5369,7 @@ True MiddleCenter Aqua - 415, 174 + 300, 174 SpecialLabelBlue540 26, 1 @@ -4364,7 +5387,7 @@ True MiddleCenter Aqua - 304, 175 + 189, 175 SpecialLabelBlue539 24, 1 @@ -4382,35 +5405,35 @@ True MiddleCenter Aqua - 264, 213 + 149, 213 SpecialLabelBlue538 177, 1 - 400, 146 + 285, 146 BU1DBT04 14, 12 - 333, 146 + 218, 146 BU1DBT03 14, 12 - 379, 151 + 264, 151 BU1DBT02 14, 12 - 352, 152 + 237, 152 BU1DBT01 14, 12 @@ -4428,7 +5451,7 @@ True MiddleCenter White - 404, 140 + 289, 140 SpecialLabelBlue536 2, 41 @@ -4446,7 +5469,7 @@ True MiddleCenter White - 337, 140 + 222, 140 SpecialLabelBlue537 2, 41 @@ -4464,7 +5487,7 @@ True MiddleCenter White - 337, 140 + 222, 140 SpecialLabelBlue535 69, 2 @@ -4482,7 +5505,7 @@ True MiddleCenter White - 356, 147 + 241, 147 SpecialLabelBlue534 30, 3 @@ -4500,7 +5523,7 @@ True MiddleCenter White - 383, 149 + 268, 149 SpecialLabelBlue530 3, 27 @@ -4518,7 +5541,7 @@ True MiddleCenter White - 356, 149 + 241, 149 SpecialLabelBlue529 3, 27 @@ -4536,7 +5559,7 @@ True MiddleCenter White - 370, 135 + 255, 135 SpecialLabelBlue528 3, 12 @@ -4822,13 +5845,13 @@ ParametersWithPc.FC16_Level. - 394, 181 + 279, 181 Atank2 13, 13 - 335, 182 + 220, 182 Atank1 13, 13 @@ -5338,42 +6361,42 @@ 30, 40 - 356, 285 + 241, 285 Xie17 32, 12 - 420, 230 + 305, 230 AS1DBT05 14, 12 - 310, 230 + 195, 230 AS1DBT04 14, 12 - 436, 183 + 321, 183 AS1DBT02 14, 12 - 300, 183 + 185, 183 AS1DBT01 14, 12 - 280, 230 + 165, 230 AS1DBT03 14, 12 @@ -5391,12 +6414,12 @@ True MiddleCenter White - 370, 65 + 255, 65 SpecialLabelBlue514 3, 25 - 350, 88 + 235, 88 Dou28 43, 49 @@ -5470,12 +6493,12 @@ True 炭粉 Yellow - 218, 19 + 103, 19 MCLabel270 29, 12 - 162, 10 + 47, 10 HslTruck19 130, 72 @@ -5493,7 +6516,7 @@ True MiddleCenter Aqua - 303, 282 + 188, 282 SpecialLabelBlue520 38, 1 @@ -5511,7 +6534,7 @@ True MiddleCenter Aqua - 409, 236 + 294, 236 SpecialLabelBlue521 31, 1 @@ -5529,7 +6552,7 @@ True MiddleCenter Aqua - 440, 175 + 325, 175 SpecialLabelBlue522 1, 63 @@ -5547,7 +6570,7 @@ True MiddleCenter Aqua - 304, 236 + 189, 236 SpecialLabelBlue523 32, 1 @@ -5565,17 +6588,17 @@ True MiddleCenter Aqua - 303, 175 + 188, 175 SpecialLabelBlue524 1, 107 - 373, 171 + 258, 171 LouDou43 56, 83 - 313, 171 + 198, 171 LouDou44 56, 83 @@ -5593,7 +6616,7 @@ True MiddleCenter Aqua - 263, 213 + 148, 213 SpecialLabelBlue526 1, 48 @@ -5611,17 +6634,17 @@ True MiddleCenter Aqua - 284, 213 + 169, 213 SpecialLabelBlue527 1, 48 - 284, 39 + 169, 39 Trucks19 113, 37 - 42, 12 + 33, 101 QiGuanDanYuan8 99, 74