集中区分割线
This commit is contained in:
parent
38d06fc13c
commit
7bed616b44
@ -16,7 +16,7 @@ message RtssGraphicStorage {
|
||||
repeated Signal signals = 8;
|
||||
repeated Turnout turnouts = 9;
|
||||
repeated Section section = 10;
|
||||
// repeated Polygon polygons = 11;
|
||||
repeated Polygon polygons = 11;
|
||||
repeated TrainWindow trainWindows = 12;
|
||||
repeated AxleCounting axleCountings = 13;
|
||||
repeated Separator separators = 14;
|
||||
@ -46,7 +46,7 @@ message RtssGraphicStorage {
|
||||
GenerateAxleCountingConfig generateAxleCountingConfig = 38;//一键生成计轴的配置
|
||||
repeated DepartureTimer departureTimers = 39; // 发车计时器
|
||||
repeated AutoReturnBox autoReturnBoxs = 40; // 自动折返按钮箱
|
||||
repeated Polygon polygons = 41; // 多边形——集中区分割线
|
||||
repeated ConcentrationDividingLine concentrationDividingLines = 41; // 集中区分割线
|
||||
}
|
||||
|
||||
message Canvas {
|
||||
@ -115,17 +115,9 @@ message CommonInfo {
|
||||
// Point point = 8; // 画第一个点的坐标
|
||||
// }
|
||||
|
||||
// message Polygon {
|
||||
// CommonInfo common = 1;
|
||||
// string code = 2;
|
||||
// int32 lineWidth = 3; // 线宽
|
||||
// string lineColor = 4; // 线色
|
||||
// repeated Point points = 5; // 点坐标列表
|
||||
// }
|
||||
|
||||
message Polygon {
|
||||
enum PolygonType {
|
||||
ConcentrationDividingLine = 0;//集中区分割线
|
||||
ConcentrationDividingLine = 0;
|
||||
}
|
||||
CommonInfo common = 1;
|
||||
string code = 2; // 编号
|
||||
@ -133,6 +125,20 @@ message Polygon {
|
||||
repeated Point points = 4; // 点列表
|
||||
}
|
||||
|
||||
message ConcentrationDividingLine {
|
||||
CommonInfo common = 1;
|
||||
string code = 2; // 编号
|
||||
repeated Point points = 3; // 点列表
|
||||
string refLeftStationId = 4;//左边关联的集中站id
|
||||
string refRightStationId = 5;//右边关联的集中站id
|
||||
repeated NodeConWithSec nodeConWithSecs = 6;// 集中区分割线与区段的交点
|
||||
}
|
||||
|
||||
message NodeConWithSec {
|
||||
string leftSectionId = 1;
|
||||
string rightSectionId = 2;
|
||||
}
|
||||
|
||||
message Platform {
|
||||
CommonInfo common = 1;
|
||||
string code = 2;
|
||||
|
Loading…
Reference in New Issue
Block a user