This commit is contained in:
weizhihong 2023-06-16 16:34:07 +08:00
commit f0cdf851eb

View File

@ -20,6 +20,7 @@ message RtssGraphicStorage {
repeated TrainLine trainLines = 13; repeated TrainLine trainLines = 13;
repeated PathLine pathLines = 14; repeated PathLine pathLines = 14;
repeated Polygon polygons = 15; repeated Polygon polygons = 15;
repeated TrainWindow trainWindows = 16;
} }
message Canvas { message Canvas {
@ -107,6 +108,8 @@ message Station {
CommonInfo common = 1; CommonInfo common = 1;
string code = 2; string code = 2;
bool hasControl = 3; // bool hasControl = 3; //
bool concentrationStations=4; //
string kilometerCode=5; //
} }
message StationLine { message StationLine {
@ -115,6 +118,11 @@ message StationLine {
bool hasTransfer = 3; // bool hasTransfer = 3; //
} }
message TrainWindow {
CommonInfo common = 1;
string code = 2;
}
message Train { message Train {
CommonInfo common = 1; CommonInfo common = 1;
string code = 2; string code = 2;
@ -143,6 +151,7 @@ message Turnout {
message Signal { message Signal {
CommonInfo common = 1; CommonInfo common = 1;
string code = 2; string code = 2;
bool mirror = 3;
} }
message RunLine { message RunLine {