Base_Point.cs
10.1 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
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
using RCS.Model.Comm;
using RCS.Model.Entity.PrimaryKey;
using System.ComponentModel.DataAnnotations.Schema;
namespace RCS.Model.Entity
{
[Table("t_base_map_point")]
public class Base_Point : IdEntity, IComparable, ICloneable
{
#region Point实体类
#region 数据库操作数据
/// <summary>
/// 点区域类型
/// </summary>
public string AreaType { get; set; }
public string GetArea()
{
//if (IntX <= 20 && IntY >= 977)
//{
// return "林德区域";
//}
//else if (IntY <= 975 && IntY >= 959
// && IntX <= 42 && IntX >= 7)
//{
// return "AGV仓库";
//}
//else if (IntX > 42)
//{
// return "地牛区域";
//}
//throw new Exception("区域不存在");
return "马钢";
}
/// <summary>
/// 地标值
/// </summary>
public string Barcode { get; set; }
/// 地标条码
/// </summary>
public string BarcodeValue { get; set; }
/// <summary>
/// 前置地标
/// </summary>
public string PreBarcode { get; set; }
/// <summary>
/// 地图X坐标
/// </summary>
public int IntX { get; set; }
/// <summary>
/// 地图Y坐标
/// </summary>
public int IntY { get; set; }
/// <summary>
/// 点是否可用
/// </summary>
public bool IsEnable
{
get => isEnable; set
{
isEnable = value;
NotifyPropertyChanged();
}
}
/// <summary>
/// 点是否被占用
/// </summary>
public bool IsOccupy
{
get => isOccupy; set
{
isOccupy = value;
NotifyPropertyChanged();
}
}
/// <summary>
/// 点被占用的小车号(行走不置)
/// </summary>
public string OccupyAgvNo
{
get => occupyAgvNo; set
{
occupyAgvNo = value;
NotifyPropertyChanged();
}
}
/// <summary>
/// 点属性
/// </summary>
public EnumMsg.PointType PointType { get; set; }
/// <summary>
/// 地标X坐标/地标X间距
/// </summary>
public int XLength { get; set; }
/// <summary>
/// 地标Y坐标/地标Y间距
/// </summary>
public int YLength { get; set; }
/// <summary>
/// 车头角度
/// </summary>
public int AgvAngle { get; set; }
/// <summary>
/// 所属限制区域代码
/// </summary>
public string RegionName { get; set; }
/// <summary>
/// 是否允许驻停
/// </summary>
public bool IsStop { get => isStop; set { isStop = value; NotifyPropertyChanged(); } }
/// <summary>
/// 驻停等级
/// </summary>
public int StopLevel { get; set; }
/// <summary>
/// 走弧等级
/// </summary>
public short ArcingLevel { get; set; }
/// <summary>
/// X正方向是否允许通行
/// </summary>
public bool IsXPos { get; set; }
/// <summary>
/// X负方向是否允许通行
/// </summary>
public bool IsXNeg { get; set; }
/// <summary>
/// Y正方向是否允许通行
/// </summary>
public bool IsYPos { get; set; }
/// <summary>
/// Y负方向是否允许通行
/// </summary>
public bool IsYNeg { get; set; }
/// <summary>
/// X正方向车头方向
/// </summary>
public short? AgvDirectionXPos { get; set; }
/// <summary>
/// X负方向车头方向
/// </summary>
public short? AgvDirectionXNeg { get; set; }
/// <summary>
/// Y正方向车头方向
/// </summary>
public short? AgvDirectionYPos { get; set; }
/// <summary>
/// Y负方向车头方向
/// </summary>
public short? AgvDirectionYNeg { get; set; }
/// <summary>
/// X正方向转盘方向
/// </summary>
public short? DialDirectionXPos { get; set; }
/// <summary>
/// X负方向转盘方向
/// </summary>
public short? DialDirectionXNeg { get; set; }
/// <summary>
/// Y正方向转盘方向
/// </summary>
public short? DialDirectionYPos { get; set; }
/// <summary>
/// Y负方向转盘方向
/// </summary>
public short? DialDirectionYNeg { get; set; }
/// <summary>
/// X正方向速度
/// </summary>
public byte SpeedXPos { get; set; }
/// <summary>
/// X负方向速度
/// </summary>
public byte SpeedXNeg { get; set; }
/// <summary>
/// Y正方向速度
/// </summary>
public byte SpeedYPos { get; set; }
/// <summary>
/// Y负方向速度
/// </summary>
public byte SpeedYNeg { get; set; }
/// <summary>
/// X正方向雷达
/// </summary>
public byte RadarXPos { get; set; }
/// <summary>
/// X负方向雷达
/// </summary>
public byte RadarXNeg { get; set; }
/// <summary>
/// Y正方向雷达
/// </summary>
public byte RadarYPos { get; set; }
/// <summary>
/// Y负方向雷达
/// </summary>
public byte RadarYNeg { get; set; }
/// <summary>
/// 进入地标的调节属性
/// </summary>
public EnumMsg.Adjust AdjustIn { get; set; }
/// <summary>
/// 离开地标调节属性
/// </summary>
public EnumMsg.Adjust AdjustOut { get; set; }
/// <summary>
/// X正G值,用于点位的权重计算
/// </summary>
public int XPosGValue { get; set; }
/// <summary>
/// X负G值,用于点位的权重计算
/// </summary>
public int XNegGValue { get; set; }
/// <summary>
/// Y正G值,用于点位的权重计算
/// </summary>
public int YPosGValue { get; set; }
/// <summary>
/// Y负G值,用于点位的权重计算
/// </summary>
public int YNegGValue { get; set; }
#endregion
#region 缓存数据
/// <summary>
/// X正方向临近点
/// </summary>
public Base_Point? XPosPoint;
/// <summary>
/// X负方向临近点
/// </summary>
public Base_Point? XNegPoint;
/// <summary>
/// Y正方向临近点
/// </summary>
public Base_Point? YPosPoint;
/// <summary>
/// Y负方向临近点
/// </summary>
public Base_Point? YNegPoint;
/// <summary>
/// 临时方向集合
/// </summary>
[NotMapped]
public List<TmpDirection> TmpDirectionList { get; set; }
/// <summary>
/// 点被申请的小车
/// </summary>
[NotMapped]
public Base_Agv? LockedAgv
{
get => lockedAgv; set
{
lockedAgv = value;
NotifyPropertyChanged();
}
}
/// <summary>
/// 增删改
/// </summary>
[NotMapped]
public string Type;
#endregion
#region 为了1个点位2个坐标新增
/// <summary>
/// X位置信息
/// </summary>
public int GetXLength(string agvNo)
{
switch (agvNo)
{
default:
return XLength;
}
}
/// <summary>
/// Y位置信息
/// </summary>
public int GetYLength(string agvNo)
{
switch (agvNo)
{
default:
return YLength;
}
}
/// <summary>
/// Y位置信息
/// </summary>
public ushort GetAgvAngle(string? agvNo)
{
switch (agvNo)
{
default:
return 0;
}
}
/// <summary>
/// 获取距离
/// </summary>
public int GetDistance(string agvNo, int XLength, int YLength)
{
var distanceX = Math.Abs(GetXLength(agvNo) - XLength);
var distanceY = Math.Abs(GetYLength(agvNo) - YLength);
return distanceX >= distanceY ? distanceX : distanceY;
}
#endregion
public Object Clone()
{
return this.MemberwiseClone();
}
#endregion
#region A*算法
public Base_Point? ParentPoint;
//F=G+H
public double Value_F;
public double Value_G;
public double Value_H;
private bool isEnable;
private bool isOccupy;
private string? occupyAgvNo;
private Base_Agv? lockedAgv;
private bool isStop;
public int CompareTo(object? obj)
{
var p = obj as Base_Point;
if (p == null)
{
throw new NotImplementedException();
}
if (Value_F == p.Value_F)
{
return Value_H.CompareTo(p.Value_H);
}
else
{
return Value_F.CompareTo(p.Value_F);
}
}
#endregion
}
public class TmpDirection
{
/// <summary>
/// 临时锁的方向:1、x+;2、x-;3、y+;4、y-;
/// </summary>
public EnumMsg.Direction PathDirection { get; set; } = EnumMsg.Direction.无方向;
public string AgvNo { get; set; }
}
}