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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FObjBase;
using System.IO;
using System.Xml.Serialization;
using FLY.FeedbackRenZiJia.Common;
using FLY.FeedbackRenZiJia.IService;
namespace FLY.FeedbackRenZiJia.OBJ_INTERFACE
{
public class FEEDBACK_OBJ_INTERFACE
{
#region pack
public class Pack_Params : IPack
{
public int step;
public int delay;
public bool hasCheck;
public bool HasCheckFilmVelocity;
#region IPack 成员
public byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(step));
buf.AddRange(BitConverter.GetBytes(delay));
buf.AddRange(BitConverter.GetBytes(hasCheck));
buf.AddRange(BitConverter.GetBytes(HasCheckFilmVelocity));
return buf.ToArray();
}
public bool TryParse(byte[] value)
{
if (value.Length < (4+4+1))
return false;
int idx = 0;
step = BitConverter.ToInt32(value, idx);
idx += 4;
delay = BitConverter.ToInt32(value, idx);
idx += 4;
hasCheck = BitConverter.ToBoolean(value, idx);
idx += 1;
HasCheckFilmVelocity = BitConverter.ToBoolean(value, idx);
idx += 1;
return true;
}
#endregion
}
public class Pack_CallSmoothRequest:IPack
{
public double thresholdHeatSigma;
#region IPack 成员
public byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(thresholdHeatSigma));
return buf.ToArray();
}
public bool TryParse(byte[] value)
{
if (value.Length < ( 8 ))
return false;
int idx = 0;
thresholdHeatSigma = BitConverter.ToDouble(value, idx);
idx += 8;
return true;
}
#endregion
}
public class Pack_Status : IPack
{
public int channelcnt;
public int nbolts;
public bool isConnected;
public DateTime lastChangedTime;
#region IPack 成员
public byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(channelcnt));
buf.AddRange(BitConverter.GetBytes(nbolts));
buf.AddRange(BitConverter.GetBytes(isConnected));
buf.AddRange(BitConverter.GetBytes(lastChangedTime.Ticks));
return buf.ToArray();
}
public bool TryParse(byte[] value)
{
if (value.Length < (4+4+1+8))
return false;
int idx = 0;
channelcnt = BitConverter.ToInt32(value, idx);
idx += 4;
nbolts = BitConverter.ToInt32(value, idx);
idx += 4;
isConnected = BitConverter.ToBoolean(value, idx);
idx += 1;
lastChangedTime = new DateTime(BitConverter.ToInt64(value, idx));
idx += 8;
return true;
}
#endregion
}
public class Pack_Enable : IPack
{
public bool enable;
#region IPack 成员
public byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(enable));
return buf.ToArray();
}
public bool TryParse(byte[] value)
{
if (value.Length < 1)
return false;
int idx = 0;
enable = BitConverter.ToBoolean(value, idx);
idx += 1;
return true;
}
#endregion
}
public class Pack_Error : IPack
{
public bool hasFan;
public bool hasEletric;
public int checkno;
public bool[] bads = null;
#region IPack 成员
public byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(hasFan));
buf.AddRange(BitConverter.GetBytes(hasEletric));
buf.AddRange(BitConverter.GetBytes(checkno));
if (bads != null)
{
buf.AddRange(BitConverter.GetBytes(bads.Length));
for (int i = 0; i < bads.Length; i++)
{
buf.AddRange(BitConverter.GetBytes(bads[i]));
}
}
else
{
int len = 0;
buf.AddRange(BitConverter.GetBytes(len));
}
return buf.ToArray();
}
public bool TryParse(byte[] value)
{
int cnt = 1*2+4*2;
if (value.Length < cnt)
return false;
int idx = 0;
hasFan = BitConverter.ToBoolean(value, idx);
idx += 1;
hasEletric = BitConverter.ToBoolean(value, idx);
idx += 1;
checkno = BitConverter.ToInt32(value, idx);
idx += 4;
int len = BitConverter.ToInt32(value, idx);
idx += 4;
cnt+=len;
if (value.Length < cnt)
return false;
if (len == 0)
{
bads = null;
}
else
{
bads = new bool[len];
for (int i = 0; i < len; i++)
{
bads[i] = BitConverter.ToBoolean(value, idx);
idx++;
}
}
return true;
}
#endregion
}
public class Pack_StringList : IPack
{
public List<string> list;
#region IPack 成员
public byte[] ToBytes()
{
List<byte> buf = new List<byte>();
byte[] bs;
buf.AddRange(BitConverter.GetBytes(list.Count()));
for (int i = 0; i < list.Count(); i++)
{
bs = Misc.Converter.StringToBytes(list[i]);
buf.AddRange(BitConverter.GetBytes(bs.Count()));
buf.AddRange(bs);
}
return buf.ToArray();
}
/// <summary>
/// 返回由字节数组中指定位置的9个字节转换来的数据。
/// </summary>
/// <param name="value"></param>
/// <returns></returns>
public bool TryParse(byte[] value)
{
int cnt = 4;
if (value.Length < cnt)
return false;
int idx = 0;
int len = BitConverter.ToInt32(value, idx);
idx += 4;
cnt += len * 4;
if (value.Length < cnt)
return false;
if (list == null)
list = new List<string>();
list.Clear();
for (int i = 0; i < len; i++)
{
int l = BitConverter.ToInt32(value, idx);
idx += 4;
cnt += l;
if (value.Length < cnt)
return false;
string s = Misc.Converter.BytesToString(value, idx, l);
idx += l;
list.Add(s);
}
return true;
}
#endregion
}
public class Pack_String
{
public string data;
#region IPack 成员
public byte[] ToBytes()
{
List<byte> buf = new List<byte>();
if (data != null)
{
byte[] bs = Misc.Converter.StringToBytes(data);
buf.AddRange(BitConverter.GetBytes(bs.Length));
buf.AddRange(bs);
}
else
{
buf.AddRange(BitConverter.GetBytes(0));
}
return buf.ToArray();
}
/// <summary>
/// 返回由字节数组中指定位置的9个字节转换来的数据。
/// </summary>
/// <param name="value"></param>
/// <returns></returns>
public bool TryParse(byte[] value, int index, int count)
{
int cnt = 4;
if (value.Length < cnt)
return false;
int idx = 0;
int len = BitConverter.ToInt32(value, idx);
idx += 4;
cnt += len;
if (value.Length < cnt)
return false;
if (len <= 0)
data = null;
else
{
data = Misc.Converter.BytesToString(value, idx, len);
idx += len;
}
return true;
}
public bool TryParse(byte[] value)
{
return TryParse(value, 0, value.Length);
}
#endregion
}
public class Pack_Undo : IPack
{
public int undo_idx;
#region IPack 成员
public byte[] ToBytes()
{
List<byte> buf = new List<byte>();
buf.AddRange(BitConverter.GetBytes(undo_idx));
return buf.ToArray();
}
public bool TryParse(byte[] value)
{
if (value.Length < 4)
return false;
int idx = 0;
undo_idx = BitConverter.ToInt32(value, idx);
idx += 4;
return true;
}
#endregion
}
#endregion
#region Get
/// <summary>
/// Pack_Params
/// </summary>
public const UInt16 GET_PARAMS = 1;//参数
/// <summary>
/// Pack_Status
/// </summary>
public const UInt16 GET_STATE = 2;
/// <summary>
/// Pack_Error
/// </summary>
public const UInt16 GET_ERROR = 8;
/// <summary>
/// Pack_Enable
/// </summary>
public const UInt16 GET_CHECKENABLE = 9;
/// <summary>
/// Pack_Enable
/// </summary>
public const UInt16 GET_ENABLE = 10;
/// <summary>
/// Pack_String
/// </summary>
public const UInt16 GET_PRODUCTNAME = 11;
/// <summary>
/// Pack_undo
/// </summary>
public const UInt16 GET_UNDOIDX = 13;
#endregion
#region Set
/// <summary>
/// Pack_Params
/// </summary>
public const UInt16 SET_PARAMS = 1;//参数
/// <summary>
/// Pack_Enable
/// </summary>
public const UInt16 SET_CHECKENABLE = 9;
/// <summary>
/// Pack_Enable
/// </summary>
public const UInt16 SET_ENABLE = 10;
#endregion
#region Call
/// <summary>
/// request:Pack_String
/// reponse:null
/// </summary>
public const UInt16 CALL_SAVEHEATS = 7;
/// <summary>
/// request:Pack_String
/// reponse:null
/// </summary>
public const UInt16 CALL_LOADHEATS = 8;
/// <summary>
/// request:null ;
/// reponse:Pack_StringList
/// </summary>
public const UInt16 CALL_GETLIST = 10;
/// <summary>
/// request:Pack_String ;
/// reponse:null
/// </summary>
public const UInt16 CALL_DEL = 11;
/// <summary>
/// request:null
/// reponse:null
/// </summary>
public const UInt16 CALL_UNDO = 13;
#endregion
#region Push
/// <summary>
/// Pack_Params
/// </summary>
public const UInt16 PUSH_PARAMS = 1;//参数
/// <summary>
/// Pack_Status
/// </summary>
public const UInt16 PUSH_STATE = 2;
/// <summary>
/// Pack_Error
/// </summary>
public const UInt16 PUSH_ERROR = 8;
/// <summary>
/// Pack_Enable
/// </summary>
public const UInt16 PUSH_CHECKENABLE = 9;
/// <summary>
/// Pack_Enable
/// </summary>
public const UInt16 PUSH_ENABLE = 10;
/// <summary>
/// Pack_String
/// </summary>
public const UInt16 PUSH_PRODUCTNAME = 11;
/// <summary>
/// Pack_undo
/// </summary>
public const UInt16 PUSH_UNDOIDX = 13;
#endregion
}
}