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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace FLY.Thick.Blowing.IService
{
/// <summary>
/// 基本吹膜系统
/// </summary>
public interface IBlowing : INotifyPropertyChanged
{
#region 分区设定
/// <summary>
/// 加热通道数
/// </summary>
int ChannelCnt { get; set; }
/// <summary>
/// 分区数/加热通道数
/// </summary>
int BPC { get; set; }
/// <summary>
/// 人字架总分区数,从1开始数
/// </summary>
int NBolts { get; }
/// <summary>
/// 人字架复位时, 探头对应的分区位, 也就是 0° 对应的分区位
/// </summary>
int OrgBoltNo { get; set; }
/// <summary>
/// 使用分区表
/// </summary>
bool IsUsedMap { get; set; }
/// <summary>
/// 分区表,必须保证不能为null
/// </summary>
List<BoltMapCell> Map { get; set; }
#endregion
/// <summary>
/// 参数应用
/// </summary>
void Apply();
/// <summary>
/// 每次有新数据时候推送。 修改参数,不会推送
/// </summary>
event RenZiJiaDataEventHandler DataEvent;
}
/// <summary>
/// 扫描一次,推送
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
public delegate void RenZiJiaDataEventHandler(object sender, RenZiJiaDataEventArgs e);
/// <summary>
/// 扫描一次,推送的数据
/// </summary>
public class RenZiJiaDataEventArgs : EventArgs
{
/// <summary>
/// 测量数据开始时间
/// </summary>
public DateTime Time;
/// <summary>
/// 测量数据结束时间
/// </summary>
public DateTime EndTime;
/// <summary>
/// 旋转方向
/// </summary>
public Misc.DIRECTION Direction;
/// <summary>
/// 旋转1周的时间
/// </summary>
public TimeSpan RotatePeriod;
/// <summary>
/// 旋转次数
/// </summary>
public int RotationCnt;
/// <summary>
/// 1幅数据
/// </summary>
public int[] Frame;
#region IPack 成员
public byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(Time.Ticks));
buf.AddRange(BitConverter.GetBytes(EndTime.Ticks));
buf.AddRange(BitConverter.GetBytes((int)Direction));
buf.AddRange(BitConverter.GetBytes(RotatePeriod.Ticks));
buf.AddRange(BitConverter.GetBytes(RotationCnt));
buf.AddRange(BitConverter.GetBytes(Frame.Length));
for (int i = 0; i < Frame.Count(); i++)
{
buf.AddRange(BitConverter.GetBytes(Frame[i]));
}
return buf.ToArray();
}
public bool TryParse(byte[] value)
{
int cnt;
return TryParse(value, 0, out cnt);
}
public bool TryParse(byte[] value, int index, out int cnt)
{
cnt = 8 + 8 + 4 + 8 + 4 * 2;
if (value.Length < (index + cnt))
return false;
int idx = index;
try
{
Time = new DateTime(BitConverter.ToInt64(value, idx));
idx += 8;
}
catch
{
return false;
}
try
{
EndTime = new DateTime(BitConverter.ToInt64(value, idx));
idx += 8;
}
catch
{
return false;
}
Direction = (Misc.DIRECTION)BitConverter.ToInt32(value, idx);
idx += 4;
try
{
RotatePeriod = new TimeSpan(BitConverter.ToInt64(value, idx));
idx += 8;
}
catch
{
return false;
}
RotationCnt = BitConverter.ToInt32(value, idx);
idx += 4;
int len = BitConverter.ToInt32(value, idx);
idx += 4;
cnt += len * 4;
if (value.Length < (index + cnt))
return false;
if (len == 0)
Frame = null;
else
{
Frame = new int[len];
for (int i = 0; i < len; i++)
{
Frame[i] = BitConverter.ToInt32(value, idx);
idx += 4;
}
}
return true;
}
#endregion
}
public class BoltMapCell
{
/// <summary>
/// 旧位置
/// </summary>
public int OldNo { get; set; }
/// <summary>
/// 新位置
/// </summary>
public int NewNo { get; set; }
/// <summary>
/// 全复制
/// </summary>
/// <returns></returns>
public BoltMapCell Clone()
{
return new BoltMapCell() { NewNo = NewNo, OldNo = OldNo };
}
public byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(OldNo));//4
buf.AddRange(BitConverter.GetBytes(NewNo));//4
return buf.ToArray();
}
/// <summary>
/// 8个byte
/// </summary>
/// <param name="value"></param>
/// <returns></returns>
public bool TryParse(byte[] value)
{
return TryParse(value, 0);
}
/// <summary>
/// 8个byte
/// </summary>
/// <param name="value"></param>
/// <param name="index"></param>
/// <returns></returns>
public bool TryParse(byte[] value, int index)
{
int cnt = 4 + 4;
if (value.Length < (index + cnt))
return false;
int idx = index;
OldNo = BitConverter.ToInt32(value, idx);
idx += 4;
NewNo = BitConverter.ToInt32(value, idx);
idx += 4;
return true;
}
}
}