列车控制室相关
This commit is contained in:
parent
29c7ca5906
commit
6dff8221d5
@ -8,19 +8,15 @@ message TccGraphicStorage {
|
|||||||
graphicData.Canvas canvas = 1;
|
graphicData.Canvas canvas = 1;
|
||||||
repeated TccButton tccButtons = 2;
|
repeated TccButton tccButtons = 2;
|
||||||
repeated TccText tccTexts = 3;
|
repeated TccText tccTexts = 3;
|
||||||
}
|
repeated TccKey tccKeys = 4;
|
||||||
|
repeated TccHandle tccHandles = 5;
|
||||||
enum TccElementColor {
|
|
||||||
green = 0;
|
|
||||||
red = 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** TCC按钮 */
|
/** TCC按钮 */
|
||||||
message TccButton {
|
message TccButton {
|
||||||
graphicData.CommonInfo common = 1;
|
graphicData.CommonInfo common = 1;
|
||||||
string code = 2;
|
string code = 2;
|
||||||
TccElementColor buttonColor = 3;
|
bool isSelfReset = 3;
|
||||||
bool isSelfReset = 4;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** TCC文字 */
|
/** TCC文字 */
|
||||||
@ -31,3 +27,21 @@ message TccText {
|
|||||||
string color = 4;
|
string color = 4;
|
||||||
int32 fontSize = 5;
|
int32 fontSize = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** TCC钥匙 */
|
||||||
|
message TccKey {
|
||||||
|
enum TccKeyType {
|
||||||
|
driverControllerActivationClint = 0; //司控器激活端
|
||||||
|
frontAndRearDirectionalControl = 1;//前后方向控制
|
||||||
|
}
|
||||||
|
|
||||||
|
graphicData.CommonInfo common = 1;
|
||||||
|
string code = 2;
|
||||||
|
TccKeyType type = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** TCC手柄 */
|
||||||
|
message TccHandle {
|
||||||
|
graphicData.CommonInfo common = 1;
|
||||||
|
string code = 2;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user