LineWidthManager.cs
8.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
using PUSICANLibrary;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using TSA_V.Common;
namespace TSA_V.DeviceLibrary
{
/// <summary>
/// 流水线宽度
/// </summary>
public class LWidthManager
{
public static int Line_ChangeValue = ConfigAppSettings.GetIntValue(Setting_Init.Line_ChangeValue);
public static int Line_HomeWidth = ConfigAppSettings.GetIntValue(Setting_Init.Line_HomeWidth);
public static uint Line_NodeAddr =(uint) ConfigAppSettings.GetIntValue(Setting_Init.Line_NodeAddr);
public static int Line_LastWidth = ConfigAppSettings.GetIntValue(Setting_Init.Line_LastWidth);
private static string Line_WidthPosition = ConfigAppSettings.GetValue(Setting_Init.Line_WidthPosition);
public static int DefaultPosition = 0;
public static void Init()
{
LaodMap();
DefaultPosition = GetWidthPosition(Line_LastWidth);
}
public static bool CanStartChWidth()
{
//是否可以开始调宽
if (IOManager.IOValue(IOManager.LineInCheck).Equals(IO_VALUE.HIGH) ||
IOManager.IOValue(IOManager.LineOutCheck).Equals(IO_VALUE.HIGH) ||
IOManager.IOValue(IOManager.LineWorkCheck).Equals(IO_VALUE.HIGH))
{
return false;
}
//如果已经在调宽中
if (!IsStop)
{
return false ;
}
return true ;
}
public static bool IsStop = true ;
public static void StopChangeWidth()
{
IsStop = true;
}
public static string StartChangeWidth(int targetWidth, int targetPosition, int timeOutSeconds = 600)
{
string result = "";
if (targetWidth <= 0)
{
return result =ResourceControl.GetString(ResourceControl.WidthInvalid, "宽度无效");
}
if (!CanStartChWidth())
{
return result = ResourceControl.GetString(ResourceControl.ChangeWFail, "启动调宽失败");
}
if (!IsStop)
{
return result = ResourceControl.GetString(ResourceControl.InChangeW, "已在调宽中");
}
IsStop = false;
string logName = "轨道调宽[" + targetWidth + "][" + targetPosition + "][" + timeOutSeconds + "]:";
try
{
LogUtil.info(logName+ "开始" );
Line_LastWidth = targetWidth;
DefaultPosition = targetPosition;
ConfigAppSettings.SaveValue(Setting_Init.Line_LastWidth, Line_LastWidth);
// PUSICANLibrary.PUSICANControl.AbsMove(Line_NodeAddr, targetPosition);
Stopwatch stopwatch = new Stopwatch();
stopwatch.Start();
if (PUSICANControl.IsBusy(Line_NodeAddr))
{
LogUtil.info(logName + " Node[" + Line_NodeAddr + "]开始原点返回前发现在忙碌中,先停止运动");
PUSICANControl.StopMove(Line_NodeAddr);
}
LogUtil.info(logName + " Node[" + Line_NodeAddr + "]开始原点返回");
PUSICANControl.HomeMove(LWidthManager.Line_NodeAddr,true);
while (true)
{
Thread.Sleep(200);
if (IsStop || TSAVBean.IsInSuddenDown)
{
result = ResourceControl.GetString(ResourceControl.UserStop, "用户中止");
break;
}
else if (stopwatch.ElapsedMilliseconds / 1000 > timeOutSeconds)
{
result = ResourceControl.GetString(ResourceControl.HomeMoveTimeout, "等待原点完成超时");
break;
}
else if (PUSICANControl.IsHomeEnd(LWidthManager.Line_NodeAddr))
{
result = "";
break;
}
}
if (!String.IsNullOrEmpty(result))
{
IsStop = true;
LogUtil.info(logName + " Node[" + Line_NodeAddr + "] 原点返回失败,直接返回 [" + result + "] ");
return result;
}
else
{
IsStop = false;
LogUtil.info(logName + " Node[" + Line_NodeAddr + "] 原点返回完成 , 开始移动到目标位置 [" + targetPosition + "]");
}
PUSICANControl.DefatutPosMove(Line_NodeAddr, targetPosition,0,true);
while (true)
{
Thread.Sleep(200);
if (IsStop || TSAVBean.IsInSuddenDown)
{
IsStop = true;
result = ResourceControl.GetString(ResourceControl.UserStop, "用户中止");
break;
}
else if (stopwatch.ElapsedMilliseconds / 1000 > timeOutSeconds)
{
IsStop = true;
result = ResourceControl.GetString(ResourceControl.WaitChangeWOk, "等待目标位置{0}超时", DefaultPosition);
break;
}
else
{
int positiona = PUSICANControl.GetPosition(LWidthManager.Line_NodeAddr);
if (positiona.Equals(LWidthManager.DefaultPosition))
{
IsStop = true;
result = "";
break;
}
}
}
LogUtil.info(logName + " Node[" + Line_NodeAddr + "] 到 [" + targetPosition + "] 结束 ["+result+"]");
}
catch (Exception ex)
{
LogUtil.error(logName+"出错:" + ex.ToString());
}
finally
{
IsStop = true;
// result = "异常中止";
}
return result;
}
public static int GetWidthPosition(int targetWidth)
{
// LaodMap();
if (WPositionMap.ContainsKey(targetWidth))
{
return WPositionMap[targetWidth];
}
int targetP = (targetWidth - Line_HomeWidth) * Line_ChangeValue;
return targetP;
}
public static Dictionary<int , int> WPositionMap = null;
private static Dictionary<int, int> LaodMap()
{
try
{
if (WPositionMap == null)
{
WPositionMap = new Dictionary<int, int>();
string[] arrayList = Line_WidthPosition.Split(';');
foreach (string str in arrayList)
{
string[] arrStr = str.Split('=');
if (arrStr.Length == 2)
{
int key =Convert.ToInt32( arrStr[0].Trim());
if (key.Equals(0))
{
continue;
}
int value = Convert.ToInt32(arrStr[1].Trim());
WPositionMap.Add(key, value);
}
}
}
}
catch (Exception ex)
{
}
return WPositionMap;
}
public static void UpdateWPosition(int width,int position)
{
if (WPositionMap.ContainsKey(width))
{
WPositionMap[width] = position;
}
else
{
WPositionMap.Add(width, position);
}
string newStr = "";
foreach (int key in WPositionMap.Keys)
{
newStr += key + "=" + WPositionMap[key] + ";";
}
newStr = newStr.Substring(0, newStr.Length - 1);
Line_WidthPosition = newStr;
ConfigAppSettings.SaveValue(Setting_Init.Line_WidthPosition, Line_WidthPosition);
}
}
}