CTURobot.cs
1.4 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
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TheMachine
{
public class CTURobot
{
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 编号
/// </summary>
public uint Id { get; set; }
/// <summary>
/// 计划路径
/// </summary>
public List<CTUPointCode> PlanWay { get; set; }
/// <summary>
/// 当前路径
/// </summary>
public List<CTUPointCode> CurrentWay { get; set; }
/// <summary>
/// 当前占用点
/// </summary>
public CTUPointCode CurrentPoint { get; set; }
/// <summary>
/// 占用地标
/// </summary>
public List<CTUPointCode> OccupyPoint { get; set; }
/// <summary>
/// CTU小车颜色
/// </summary>
public Color CTUColor { get; set; }
/// <summary>
/// CTU计划路径颜色
/// </summary>
public Color CTUPlanWayColor { get; set; }
/// <summary>
/// CTU当前路径颜色
/// </summary>
public Color CTUCurrentWayColor { get; set; }
/// <summary>
/// CTU占用地标颜色
/// </summary>
public Color CTUOccupyPointColor { get; set; }
}
}