Task.c
17.3 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
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
#include "hardware.h"
#include "all_value.h"
/*********************************************************************************
函数名:
功能:
参数:
返回:无返回。
实现方法:
编程:pcy
日期:2021-12-16
*********************************************************************************/
u8 ManuConfirm;//单步执行允许
u8 ActionAutoEn=1;//系统连续运行条件
u8 RouteIndex;
u8 ChooseRote;
u8 PointIndex;
u8 PointAllNums;
u8 Tim7_TaskDelayNums;
# define KeyAutoEn 1
#define UDConfirmMiss 0
#define RouteNo 2
#define AutoEn 1
short Touch_EndX;
short Touch_EndY;
short Touch_EndAng;
short Touch_Dis;
u8 Touch_TY3;
u8 Touch_TY2;
u8 Touch_TY1;
void Task_Pro(void)//任务启动
{
u8 PoIndex;
if( ((AGV.TaskManu_Step==0)|(AGV.TaskManu_Step==100))&& (Status_SlamLaser==2) )
{
if( (RouteIndex==1)&&(AGV.TaskManu_Step==100))
{
RouteIndex=0;
if(VaIndexDW_R(&Touch_Contr,17))VaIndexDW_W(&Touch_Contr,7,1);
// else VaIndexDW_W(&Touch_Contr,7,0);
}
if( (RouteIndex==10)&&(AGV.TaskManu_Step==100))
{
ChooseRote=1; memset(&AGV,0,sizeof(AGV));
RouteIndex=11; AGV.TaskManu_Step=1;
}
if( (RouteIndex==11)&&(AGV.TaskManu_Step==100))
{
ChooseRote=1; memset(&AGV,0,sizeof(AGV));
RouteIndex=12; AGV.TaskManu_Step=1;
VaIndexB_W(&AGV.OtheSta,1,1);
}
if( (RouteIndex==12)&&(AGV.TaskManu_Step==100))
{
RouteIndex=0;
if(VaIndexDW_R(&Touch_Contr,17))VaIndexDW_W(&Touch_Contr,7,1);
}
/*触控直线单次往复1-1*/
if( (SysKey==3)&&(RouteIndex==0)&& VaIndexDW_R(&Touch_Contr,7) )
{
ChooseRote=1; memset(&AGV,0,sizeof(AGV));
RouteIndex=1; AGV.TaskManu_Step=1;
VaIndexB_W(&AGV.OtheSta,1,1);
VaIndexDW_W(&Touch_Contr,7,0);
VaIndexB_W(&AGV.OtheSta,2,0);
}
/*自建任务往复10-12*/
if( (SysKey==2)&&(RouteIndex==0)&& VaIndexDW_R(&Touch_Contr,7) )
{
ChooseRote=1; memset(&AGV,0,sizeof(AGV));
RouteIndex=10; AGV.TaskManu_Step=1;
VaIndexB_W(&AGV.OtheSta,1,0);
VaIndexDW_W(&Touch_Contr,7,0);
VaIndexB_W(&AGV.OtheSta,2,0);
}
}
if (IN_Stop)//遥控急停下清除主要信息
{ RouteIndex=0;VaIndexDW_W(&Touch_Contr,7,0);}
if(ChooseRote)
{
memset(&TaskP,0,sizeof(TaskP));
switch(RouteIndex)
{
case 1:// 走到B点再回当前点
PoIndex=0;
AGV.RouteP[PoIndex].SP.X_Slam=AgvSP.X_Slam;
AGV.RouteP[PoIndex].SP.Y_Slam=AgvSP.Y_Slam;
AGV.RouteP[PoIndex].SP.Ang=Touch_EndAng;
AGV.RouteP[PoIndex].P_Type1=1;
AGV.RouteP[PoIndex].P_AD_Type2=0;
AGV.RouteP[PoIndex].P_AC_Type3=0;
AGV.RouteP[PoIndex].Dis=0;
PoIndex+=1;
AGV.RouteP[PoIndex].SP.X_Slam=(float)Touch_EndX*10;
AGV.RouteP[PoIndex].SP.Y_Slam=(float)Touch_EndY*10;
AGV.RouteP[PoIndex].SP.Ang=Touch_EndAng;
AGV.RouteP[PoIndex].P_Type1=Touch_TY1;
AGV.RouteP[PoIndex].P_AD_Type2=Touch_TY2;
AGV.RouteP[PoIndex].P_AC_Type3=Touch_TY3;
AGV.RouteP[PoIndex].Dis=Touch_Dis;
//
PoIndex+=1;
AGV.RouteP[PoIndex].SP.X_Slam=AgvSP.X_Slam;
AGV.RouteP[PoIndex].SP.Y_Slam=AgvSP.Y_Slam;
AGV.RouteP[PoIndex].SP.Ang=0;
AGV.RouteP[PoIndex].P_Type1=1;
AGV.RouteP[PoIndex].P_AD_Type2=0;
AGV.RouteP[PoIndex].P_AC_Type3=0;
AGV.RouteP[PoIndex].Dis=0;
//
if(Touch_Dis<0)PointAllNums=2;
else PointAllNums=3;
break;
case 10://
PoIndex=0;
AGV.RouteP[PoIndex].SP.X_Slam=1;
AGV.RouteP[PoIndex].SP.Y_Slam=0;
AGV.RouteP[PoIndex].SP.Ang=0;
AGV.RouteP[PoIndex].P_Type1=1;
AGV.RouteP[PoIndex].P_AD_Type2=0;
AGV.RouteP[PoIndex].P_AC_Type3=2;
AGV.RouteP[PoIndex].Dis=0;
PoIndex+=1;
AGV.RouteP[PoIndex].SP.X_Slam=0;
AGV.RouteP[PoIndex].SP.Y_Slam=1200;
AGV.RouteP[PoIndex].SP.Ang=0;
AGV.RouteP[PoIndex].P_Type1=4;
AGV.RouteP[PoIndex].P_AD_Type2=0;
AGV.RouteP[PoIndex].P_AC_Type3=0;
AGV.RouteP[PoIndex].Dis=0;
PoIndex+=1;
AGV.RouteP[PoIndex].SP.X_Slam=-1200;
AGV.RouteP[PoIndex].SP.Y_Slam=1200;
AGV.RouteP[PoIndex].SP.Ang=0;
AGV.RouteP[PoIndex].P_Type1=2;
AGV.RouteP[PoIndex].P_AD_Type2=0;
AGV.RouteP[PoIndex].P_AC_Type3=0;
AGV.RouteP[PoIndex].Dis=0;
PointAllNums=3;
break;
case 11://
PoIndex=0;
AGV.RouteP[PoIndex].SP.X_Slam=-1200;
AGV.RouteP[PoIndex].SP.Y_Slam=1200;
AGV.RouteP[PoIndex].SP.Ang=0;
AGV.RouteP[PoIndex].P_Type1=1;
AGV.RouteP[PoIndex].P_AD_Type2=0;
AGV.RouteP[PoIndex].P_AC_Type3=0;
AGV.RouteP[PoIndex].Dis=0;
PoIndex+=1;
AGV.RouteP[PoIndex].SP.X_Slam=-1200;
AGV.RouteP[PoIndex].SP.Y_Slam=-3600;
AGV.RouteP[PoIndex].SP.Ang=0;
AGV.RouteP[PoIndex].P_Type1=1;
AGV.RouteP[PoIndex].P_AD_Type2=0;
AGV.RouteP[PoIndex].P_AC_Type3=0;
AGV.RouteP[PoIndex].Dis=0;
PoIndex+=1;
AGV.RouteP[PoIndex].SP.X_Slam=1200;
AGV.RouteP[PoIndex].SP.Y_Slam=-3600;
AGV.RouteP[PoIndex].SP.Ang=0;
AGV.RouteP[PoIndex].P_Type1=1;
AGV.RouteP[PoIndex].P_AD_Type2=0;
AGV.RouteP[PoIndex].P_AC_Type3=0;
AGV.RouteP[PoIndex].Dis=0;
PointAllNums=3;
break;
case 12:// 走到充电点
PoIndex=0;
AGV.RouteP[PoIndex].SP.X_Slam=1200;
AGV.RouteP[PoIndex].SP.Y_Slam=-3600;
AGV.RouteP[PoIndex].SP.Ang=0;
AGV.RouteP[PoIndex].P_Type1=1;
AGV.RouteP[PoIndex].P_AD_Type2=0;
AGV.RouteP[PoIndex].P_AC_Type3=0;
AGV.RouteP[PoIndex].Dis=0;
PoIndex+=1;
AGV.RouteP[PoIndex].SP.X_Slam=1;
AGV.RouteP[PoIndex].SP.Y_Slam=0;
AGV.RouteP[PoIndex].SP.Ang=2700;
AGV.RouteP[PoIndex].P_Type1=4;
AGV.RouteP[PoIndex].P_AD_Type2=0;
AGV.RouteP[PoIndex].P_AC_Type3=3;
AGV.RouteP[PoIndex].Dis=0;
PoIndex+=1;
AGV.RouteP[PoIndex].SP.X_Slam=0;
AGV.RouteP[PoIndex].SP.Y_Slam=0;
AGV.RouteP[PoIndex].SP.Ang=2700;
AGV.RouteP[PoIndex].P_Type1=1;
AGV.RouteP[PoIndex].P_AD_Type2=12;
AGV.RouteP[PoIndex].P_AC_Type3=0;
AGV.RouteP[PoIndex].Dis=0;
PointAllNums=2;
break;
}
ChooseRote=0;
}
switch(AGV.Task_Step)//PC任务执行步骤
{
case 1:// 任务开启执行
AGV.Task_Step++;
PointIndex=0;
break;
case 2://判断是否动作执行完
EndPoint=AGV.RouteP[0].SP;
if( (EndPoint.X_Slam==0) && (EndPoint.Y_Slam==0) )AGV.Task_Step=5;//当前点非行走动作
else
{
AGV.Task_Step++;
}
break;
case 3://行走
if( ActionAutoEn|(ManuConfirm==1) )
{
if (AGV.RouteP[0].P_AC_Type3==7)//7退出充电(不做其他动作)
AGV.Task_Step=12;
else
{
AGV.Line_Step=1;
AGV.Task_Step++;}
}
break;
case 4://判断行走是否完成
if (AGV.Line_Step==100)
{ ManuConfirm=0;
AGV.Task_Step++;
}
break;
case 5://判断是否要转向
if (EndPoint.Ang==0)AGV.Task_Step=8;
else
{ if( ActionAutoEn|(ManuConfirm==1))
{
F_Un.A_Slam_T=(float)EndPoint.Ang*0.1f;
// AGV.Ac_Lev=TaskP[PointIndex].P_Type1;
AGV.RotationSlam_Step=1;
Ang_MaxDelta=Da2_Per;
AGV.Task_Step++;
}
}
break;
case 6://判断转向是否完成
if(AGV.RotationSlam_Step==100)
{ AGV.Task_Step=8;
ManuConfirm=0;}
break;
case 8://判断是否整车调整
if (AGV.RouteP[0].P_AD_Type2==0)
{ AGV.Task_Step=12;}
else
{ if( ActionAutoEn|(ManuConfirm==1) )
{
AGV.Load_Step=1;
AGV.Type2_AdLev=AGV.RouteP[0].P_AD_Type2;
if(AGV.RouteP[0].P_AC_Type3==2)VaIndexB_W(&AGV.OtheSta1,4,1);else VaIndexB_W(&AGV.OtheSta1,4,0);//标记有上升意向,对中时可能需要参考上码(具体再对中里判断其他条件)
AGV.Task_Step=11;
ManuConfirm=0;
}
}
break;
case 11://调整完成
if (AGV.Load_Step==100)AGV.Task_Step=12;
break;
case 12://判断其他动作
if (AGV.RouteP[0].P_AC_Type3<2)AGV.Task_Step=80;//行走
else if (AGV.RouteP[0].P_AC_Type3>5 && AGV.RouteP[0].P_AC_Type3<8)AGV.Task_Step=20;//6->充电;7->取消充电;
else if (AGV.RouteP[0].P_AC_Type3>1 && AGV.RouteP[0].P_AC_Type3<6)AGV.Task_Step=13;//2->上升到最高位置;3->下降到底;4->升降到指定高度,且高度明确;5->升降到特定高度,但高度不明确,需要到指定位置后才可明确;
else if (AGV.RouteP[0].P_AC_Type3>9 && AGV.RouteP[0].P_AC_Type3<18)AGV.Task_Step=30;//输送移栽。
else Set_ErrID(2,1); //ErrID=2;任务不合理(动作类型无法识别
AGV.Type3_Ac=AGV.RouteP[0].P_AC_Type3;
F_Un.Dis_Char_T=(float)AGV.RouteP[0].Dis;
Union16_1.Weight=Tcp_Weight;
break;
case 13://升降
if ( ActionAutoEn|(ManuConfirm==1))
{
AGV.UpDown_Step=1;
AGV.Task_Step++;
ManuConfirm=0;
}
break;
case 14://升降完成
if (AGV.UpDown_Step==100)AGV.Task_Step=80;
break;
case 20://充电+取消充电
if( ActionAutoEn|(ManuConfirm==1) )
{
AGV.Charge_Step=1;
AGV.Task_Step++;
ManuConfirm=0;}
break;
case 21://充电+取消充电完成
if (AGV.Charge_Step==100)AGV.Task_Step=80;
break;
case 30://输送移栽
if( ActionAutoEn|(ManuConfirm==1) )
{ AGV.Conveyor_Dir=AGV.RouteP[0].P_ConveyDir;
AGV.Conveyor_Step=1;
AGV.Task_Step++;
ManuConfirm=0;}
break;
case 31://输送移栽完成
if (AGV.Conveyor_Step==100)AGV.Task_Step=80;
break;
case 80://动作执行完后判断是否有后续点动作
VaIndexB_W(&AGV.OtheSta,3,1);//给出动作完成信号)
if (AGV.RouteP[1].Code)//有点1
{ RouteGoAcPMiss_fc();
AGV.Task_Step=1;
}
else AGV.Task_Step=90;//结束
break;
case 90://
Tim7_TaskDelayNums=0;
AGV.Task_Step=100;
break;
case 100://舵轮组都已使能
break;
}
if(AGV.TaskManu_Step>1&&AGV.TaskManu_Step<100&&PointIndex<4)AGV.EndP_Type1=AGV.RouteP[PointIndex].P_Type1;
else AGV.EndP_Type1=AGV.RouteP[0].P_Type1;
/*人工自建任务测试使用*/
switch(AGV.TaskManu_Step)
{
case 1:// 任务开启执行
Tim7_TaskDelayNums=0;
PointIndex=0;
AGV.TaskManu_Step=3;
break;
case 2:// 任务开启执行
// if (Tim7_TaskDelayNums>=1)
// { AGV.TaskManu_Step++;
// PointIndex=0;}
break;
case 3://判断是否动作执行完
if (PointAllNums==0)AGV.TaskManu_Step=6;//当前点非行走动作
else if (PointIndex<PointAllNums)
{
AGV.TaskManu_Step++;
// ActionEn=1;
}
else AGV.TaskManu_Step=90;
break;
case 4://行走
if( ActionAutoEn|(ManuConfirm==1) )
{ EndPoint=AGV.RouteP[PointIndex].SP;
if( (EndPoint.X_Slam==0) && (EndPoint.Y_Slam==0) )//此目标点不行走
AGV.TaskManu_Step=6;
else
{ AGV.Line_Step=1;
AGV.TaskManu_Step++;
}
ManuConfirm=0;
}
break;
case 5://判断行走是否完成
if (AGV.Line_Step==100)
{
AGV.TaskManu_Step++;
}
break;
case 6://判断是否要转向
if (AGV.RouteP[PointIndex].SP.Ang==0)AGV.TaskManu_Step=8;
else
{ if( ActionAutoEn|(ManuConfirm==1) )
{
F_Un.A_Slam_T=(float)EndPoint.Ang*0.1f;
// AGV.Ac_Lev=TaskP[PointIndex].P_Type1;//此属性取决于任务分解?????
AGV.RotationSlam_Step=1;
Ang_MaxDelta=Da2_Per;
AGV.TaskManu_Step++;
}
}
break;
case 7://判断转向是否完成
if(AGV.RotationSlam_Step==100)
{ AGV.TaskManu_Step=8;
ManuConfirm=0;}
break;
case 8://判断是否整车调整
if (AGV.RouteP[PointIndex].P_AD_Type2==0)//点调节属性:0->不调整;1-3->Slam调整;11-13->CCD调整
{ AGV.TaskManu_Step=12;}
else
{ if( ActionAutoEn|(ManuConfirm==1) )
{
AGV.Load_Step=1;
AGV.Type2_AdLev=AGV.RouteP[PointIndex].P_AD_Type2;
if(AGV.RouteP[PointIndex].P_AC_Type3==2)VaIndexB_W(&AGV.OtheSta1,4,1);else VaIndexB_W(&AGV.OtheSta1,4,0);
AGV.TaskManu_Step=9;
ManuConfirm=0;
}
}
break;
case 9://调整完成
if (AGV.Load_Step==100)
{ AGV.TaskManu_Step=12;
ManuConfirm=0;}
break;
case 12://判断是否升降
if( (AGV.RouteP[PointIndex].P_AC_Type3<2)|VaIndexDW_R(&Touch_Contr,10))//:0->无升降;1->上升到最高位;2->下降到最低位;3->升降到特定高度,且高度值明确;4->升降到特定高度,但高度值在建立任务时无法确定
{ AGV.TaskManu_Step=50;}
else
{ if( ActionAutoEn|(ManuConfirm==1) )
{ if (AGV.RouteP[PointIndex].P_AC_Type3>1&&AGV.RouteP[PointIndex].P_AC_Type3<6)
{ AGV.UpDown_Step=1;
AGV.Type3_Ac=AGV.RouteP[PointIndex].P_AC_Type3;
F_Un.Dis_Height_T=(float)AGV.RouteP[PointIndex].Dis; //此数值作为参考安全用。
AGV.TaskManu_Step++;
}
}
}
break;
case 13://升降完成
if (AGV.UpDown_Step==100)
{ AGV.TaskManu_Step=50;
ManuConfirm=0;}
break;
case 50://
if (PointAllNums==0)AGV.TaskManu_Step=90;
else
{ PointIndex++;
AGV.TaskManu_Step=3;}
break;
case 90://
Tim7_TaskDelayNums=0;
AGV.TaskManu_Step=91;
break;
case 91://舵轮组都已使能
if( (VaIndexDW_R(&Touch_Contr,17))&&VaIndexB_R(&AGV.OtheSta,1) )//连续执行,且是任务的最后一组的最后一点
{ if (Tim7_TaskDelayNums>2) AGV.TaskManu_Step=100;
}
else AGV.TaskManu_Step=100;
break;
case 100://舵轮组都已使能
break;
}
}
//AngDelta_Calculate
//void RouteGoAcPMiss_fc(void)//执行行走过程点消除
//{ float DirAn0_1,DirAn1_2,DirAn2_3,An_Delta;
// if (AGV.RouteP[1].Code)//有点1
// { DirAn0_1=Ang_CalculateLine(AGV.RouteP[0].SP,AGV.RouteP[1].SP);
// if (AGV.RouteP[2].Code)//有点2
// { DirAn1_2=Ang_CalculateLine(AGV.RouteP[1].SP,AGV.RouteP[2].SP);
// if (AGV.RouteP[3].Code)//有点3
// { DirAn2_3=Ang_CalculateLine(AGV.RouteP[2].SP,AGV.RouteP[3].SP);}
// }
// }
//
// if (AGV.RouteP[1].Code)//有点1
// { if( (AGV.RouteP[1].SP.Ang|AGV.RouteP[1].P_AD_Type2|(AGV.RouteP[1].P_AC_Type3>1)) |(AGV.RouteP[2].Code==0))
// { AGV.RouteP[0]=AGV.RouteP[1];
// AGV.RouteP[1]=AGV.RouteP[2];
// AGV.RouteP[2]=AGV.RouteP[3];
// memset(&AGV.RouteP[3].Code,0,LengTP);
// AGV.RouteAngDir=DirAn0_1;
// }
// else//点1只有行走动作
// { //有点2
// An_Delta=AngDelta_Calculate(DirAn0_1,DirAn1_2);
// if(fabs(An_Delta)>AngLineDeltaMax)
// { AGV.RouteP[0]=AGV.RouteP[1];
// AGV.RouteP[1]=AGV.RouteP[2];
// AGV.RouteP[2]=AGV.RouteP[3];
// memset(&AGV.RouteP[3].Code,0,LengTP);
// AGV.RouteAngDir=DirAn0_1;
// }
// else
// { if( (AGV.RouteP[2].SP.Ang|AGV.RouteP[2].P_AD_Type2|(AGV.RouteP[2].P_AC_Type3>1)) |(AGV.RouteP[3].Code==0))
// { AGV.RouteP[0]=AGV.RouteP[2];
// AGV.RouteP[1]=AGV.RouteP[3];
// memset(&AGV.RouteP[2].Code,0,LengTP*2);//清空点2-3
// AGV.RouteAngDir=DirAn1_2;
// }
// else
// {
// An_Delta=AngDelta_Calculate(DirAn1_2,DirAn2_3);
// if(fabs(An_Delta)>AngLineDeltaMax)
// { AGV.RouteP[0]=AGV.RouteP[2];
// AGV.RouteP[1]=AGV.RouteP[3];
// memset(&AGV.RouteP[2].Code,0,LengTP*2);//清空点2-3
// AGV.RouteAngDir=DirAn1_2;
// }
// else
// {
// AGV.RouteP[0]=AGV.RouteP[3];
// memset(&AGV.RouteP[1].Code,0,LengTP*3);//清空点1-2-3
// AGV.RouteAngDir=DirAn2_3;
// }
//
// }
// }
//
// }
// }
//}
void RouteGoAcPMiss_fc(void)//执行行走过程点消除
{ float DirAn0_1,DirAn1_2,DirAn2_3,An_Delta;
u8 EndP_index=0;
if (AGV.RouteP[1].Code)//有点1
{ DirAn0_1=Ang_CalculateLine(AGV.RouteP[0].SP,AGV.RouteP[1].SP);
if( (AGV.RouteP[1].SP.Ang|AGV.RouteP[1].P_AD_Type2|(AGV.RouteP[1].P_AC_Type3>1)) | //点1有其他动作
(AGV.RouteP[2].Code==0)//点1后无后续点
)
{ EndP_index=1;}//终点为点1
else//有点2
{
DirAn1_2=Ang_CalculateLine(AGV.RouteP[1].SP,AGV.RouteP[2].SP);
An_Delta=AngDelta_Calculate(DirAn0_1,DirAn1_2);
if( (fabs(An_Delta)>AngLineDuanDeltaMax)| //点0-1-2角度变化太大
((fabs(An_Delta)>AngLineDeltaMax)&&Dis_CalculateLine(AGV.RouteP[1].SP,AGV.RouteP[2].SP)>DisLineDuan)//角度变化大且点1-2距离长
){ EndP_index=1;}//终点为点1
else
{ if( (AGV.RouteP[2].SP.Ang|AGV.RouteP[2].P_AD_Type2|(AGV.RouteP[2].P_AC_Type3>1)) | //点2有其他动作
(AGV.RouteP[3].Code==0)//点2后无后续点
)
{ EndP_index=2;}//终点为点2
else//有点3
{ DirAn2_3=Ang_CalculateLine(AGV.RouteP[2].SP,AGV.RouteP[3].SP);
DirAn1_2=Ang_CalculateLine(AGV.RouteP[0].SP,AGV.RouteP[2].SP);
An_Delta=AngDelta_Calculate(DirAn1_2,DirAn2_3);
if( (fabs(An_Delta)>AngLineDuanDeltaMax)| //点1-2-3角度变化太大
((fabs(An_Delta)>AngLineDeltaMax)&&Dis_CalculateLine(AGV.RouteP[2].SP,AGV.RouteP[3].SP)>DisLineDuan)//角度变化大且点2-3距离长
){ EndP_index=2;}//终点为点2
else
{ EndP_index=3;}//终点为点3
}
}
}
}
if(EndP_index==1)
{ AGV.RouteP[0]=AGV.RouteP[1];
AGV.RouteP[1]=AGV.RouteP[2];
AGV.RouteP[2]=AGV.RouteP[3];
memset(&AGV.RouteP[3].Code,0,LengTP);
// AGV.RouteAngDir=DirAn0_1;
}
else if(EndP_index==2)
{
// AGV.RouteAngDir=Ang_CalculateLine(AGV.RouteP[0].SP,AGV.RouteP[2].SP);
AGV.RouteP[0]=AGV.RouteP[2];
AGV.RouteP[1]=AGV.RouteP[3];
memset(&AGV.RouteP[2].Code,0,LengTP*2);//清空点2-3
}
else if(EndP_index==3)
{
// AGV.RouteAngDir=Ang_CalculateLine(AGV.RouteP[0].SP,AGV.RouteP[3].SP);
AGV.RouteP[0]=AGV.RouteP[3];
memset(&AGV.RouteP[1].Code,0,LengTP*3);//清空点1-2-3
}
}