信号机显示枚举调整
添加第三方接口服务状态消息
This commit is contained in:
parent
d2d4e85e34
commit
3180214b10
@ -84,22 +84,20 @@ message SignalState{
|
|||||||
message Signal {
|
message Signal {
|
||||||
//信号机显示枚举
|
//信号机显示枚举
|
||||||
enum Aspect {
|
enum Aspect {
|
||||||
//无用值
|
//灭灯
|
||||||
Non = 0;
|
OFF = 0;
|
||||||
//物理灭灯
|
//红
|
||||||
OFF = 1;
|
H = 1;
|
||||||
//绿灯亮
|
//绿灯亮
|
||||||
L = 2;
|
L = 2;
|
||||||
//红
|
|
||||||
H = 3;
|
|
||||||
//黄
|
//黄
|
||||||
U = 4;
|
U = 3;
|
||||||
//红黄
|
//红黄
|
||||||
HU = 5;
|
HU = 4;
|
||||||
//白
|
//白
|
||||||
B = 6;
|
B = 5;
|
||||||
//蓝
|
//蓝
|
||||||
A = 7;
|
A = 6;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -580,4 +578,34 @@ message SimulationStatus {
|
|||||||
SimulationState state = 2;
|
SimulationState state = 2;
|
||||||
|
|
||||||
string description = 3;
|
string description = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 仿真在用的第三方接口状态列表
|
||||||
|
message SimulationThirdPartyApiService {
|
||||||
|
enum Type {
|
||||||
|
// 未定义
|
||||||
|
Undefined = 0;
|
||||||
|
// 与动力学接口服务
|
||||||
|
Dynamics = 1;
|
||||||
|
// 与半实物列车接口服务
|
||||||
|
SemiPhysicalTrain = 2;
|
||||||
|
}
|
||||||
|
// 服务状态
|
||||||
|
enum State {
|
||||||
|
// 服务正常
|
||||||
|
Normal = 0;
|
||||||
|
// 服务异常
|
||||||
|
Error = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 服务列表
|
||||||
|
repeated SimulationThirdPartyApiServiceState states = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 仿真第三方接口状态
|
||||||
|
message SimulationThirdPartyApiServiceState {
|
||||||
|
// 接口服务类型
|
||||||
|
SimulationThirdPartyApiService.Type type = 1;
|
||||||
|
// 服务状态
|
||||||
|
SimulationThirdPartyApiService.State state = 2;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user