rts-sim-testing-message/protos/device_state.proto

217 lines
5.6 KiB
Protocol Buffer
Raw Normal View History

2023-07-07 10:37:29 +08:00
syntax = "proto3";
package state;
option java_package = "club.joylink.bjrtss.ats.verify.protos";
option java_outer_classname = "DeviceStateProto";
2023-07-28 16:02:32 +08:00
option go_package = "./ats/verify/protos/state";
2023-07-07 10:37:29 +08:00
//状态定义面向物理层即只定义物理状态,不定义逻辑层状态
//区段类型
enum SectionType{
Any=0;
//计轴区段
Axle=1;
//逻辑区段
Logic=2;
//物理区段
Physic=3;
}
2023-07-07 17:20:29 +08:00
//相邻端点定义的link的状态
message LinkState{
//link索引
string id = 1;
//link上的列车id列表
repeated string trainId = 2;
}
2023-07-07 10:37:29 +08:00
//区段状态
message SectionState{
//区段索引
string id = 1;
//区段类型
SectionType type = 2;
//区段占用
//true-占用false-出清
bool occupied = 3;
}
//道岔状态
message SwitchState{
//道岔索引
string id = 1;
//道岔处于定位
bool normal = 2;
//道岔处于反位
bool reverse = 3;
}
2023-07-18 10:57:07 +08:00
//信号机状态
message SignalState{
//信号机索引
string id = 1;
}
2023-07-20 17:19:58 +08:00
//站台状态
message PlatformState{
//站台索引
string id = 1;
}
//车站状态
message StationState{
//车站索引
string id = 1;
}
2023-07-07 10:37:29 +08:00
//列车状态
message TrainState{
//列车索引
2023-07-20 16:05:40 +08:00
string id = 1;
2023-07-25 13:07:58 +08:00
//列车初始运行方向,即添加列车时
2023-07-18 09:40:15 +08:00
//true - 上行方向运行
//false - 下行方向运行
2023-07-20 16:05:40 +08:00
bool up = 2;
2023-07-07 10:37:29 +08:00
//车头所在link的索引
2023-07-20 16:05:40 +08:00
string headLinkId = 3;
2023-07-14 13:09:45 +08:00
//车头所在link内的偏移量单位为mm
2023-07-20 16:05:40 +08:00
int64 headLinkOffset = 4;
2023-07-07 10:37:29 +08:00
//车尾所在link的索引
2023-07-20 16:05:40 +08:00
string tailLinkId = 5;
2023-07-14 13:09:45 +08:00
//车尾所在link内的偏移量单位为mm
2023-07-20 16:05:40 +08:00
int64 tailLinkOffset = 6;
2023-07-07 10:37:29 +08:00
//列车所占用的link的索引的列表
//顺序为从车头到车尾
2023-07-18 09:40:15 +08:00
repeated string occupiedLinkIndex = 7;
2023-07-20 16:05:40 +08:00
//生命信号
int32 heartbeat = 8;
//列车所在位置坡度值,1=1‰
int32 slope = 9;
//列车所在位置坡度走势,1=上坡true0=下坡false
bool upslope = 10;
//列车当前运行方向,1 =上行true 0 =下行false
bool runningUp = 11;
//实际运行阻力(总),1=1KN
float runningResistanceSum = 12;
2023-07-20 16:05:40 +08:00
//阻力1空气阻力,1=1KN
float airResistance = 13;
2023-07-20 16:05:40 +08:00
//阻力2坡道阻力,1=1KN
float rampResistance = 14;
2023-07-20 16:05:40 +08:00
//阻力3曲线阻力,1=1KN
float curveResistance = 15;
2023-07-20 16:05:40 +08:00
//列车运行速度,1=1km/h
float speed = 16;
2023-07-20 16:05:40 +08:00
//头车速传1速度值,1=1km/h
float headSensorSpeed1 = 17;
2023-07-20 16:05:40 +08:00
//头车速传2速度值,1=1km/h
float headSensorSpeed2 = 18;
2023-07-20 16:05:40 +08:00
//尾车速传1速度值,1=1km/h
float tailSensorSpeed1 = 19;
2023-07-20 16:05:40 +08:00
//尾车速度2速度值,1=1km/h
float tailSensorSpeed2 = 20;
2023-07-20 16:05:40 +08:00
//头车雷达速度值,1=1km/h
float headRadarSpeed = 21;
2023-07-20 16:05:40 +08:00
//尾车雷达速度值,1=1km/h
float tailRadarSpeed = 22;
2023-07-25 11:02:51 +08:00
//列车长度,1=1mm
int64 trainLength = 23;
2023-08-02 09:06:55 +08:00
//列车是否显示
bool show = 24;
// 列车车头所在设备ID
string headDeviceId = 25;
// 列车车头所在设备偏移量
int64 headOffset = 26;
2023-08-09 17:30:44 +08:00
// 设备端口
string devicePort = 27;
2023-08-14 10:39:18 +08:00
// 运行方向指向(区段A-B,道岔:-> 岔心)
bool pointTo = 28;
// 运行上下行(公里标 上行:小 -> 大,下行:大 -> 小)
bool runDirection = 29;
// 列车车头方向
bool headDirection = 30;
}
// vobc发过来的列车信息
message TrainVobcState {
// 生命信号 每个周期+1
int32 lifeSignal = 1;
// TC1激活状态 1=激活
bool tc1Active = 2;
// TC2激活状态 1=激活
bool tc2Active = 3;
// 列车方向向前 1=方向向前
bool directionForward = 4;
// 列车方向向后 1=方向向后
bool directionBackward = 5;
// 列车牵引状态 1=牵引
bool tractionStatus = 6;
// 列车制动状态 1=制动
bool brakingStatus = 7;
// 列车紧急制动状态 1=紧急制动
bool emergencyBrakingStatus = 8;
// 列车折返状态AR 1=折返
bool turnbackStatus = 9;
// 跳跃状态 1=跳跃
bool jumpStatus = 10;
// ATO模式 1=ATO模式
bool ato = 11;
// FAM模式 1=FAM模式
bool fam = 12;
// CAM模式 1=CAM模式
bool cam = 13;
// 牵引安全回路 1=牵引安全切除
bool tractionSafetyCircuit = 14;
// 停放制动状态 1=停放施加
bool parkingBrakeStatus = 15;
// 保持制动状态 1=保持制动施加
bool maintainBrakeStatus = 16;
// 列车牵引力 100=1KN
int64 tractionForce = 17;
// 列车制动力 100=1KN
int64 brakeForce = 18;
//【列车载荷 100=1ton
int64 trainLoad = 19;
// 列车开左门指令 1=开门
bool leftDoorOpenCommand = 20;
// 列车开右门指令 1=开门
bool rightDoorOpenCommand = 21;
// 列车关左门指令 1=关门
bool leftDoorCloseCommand = 22;
// 列车关右门指令 1=关门
bool rightDoorCloseCommand = 23;
// 整列车门关好 1=门关好
bool allDoorClose = 24;
2023-07-07 10:37:29 +08:00
}
2023-07-11 16:06:34 +08:00
2023-07-11 16:11:49 +08:00
////////////////////////////////////////////////////////////////////////////
2023-07-11 16:06:34 +08:00
//仿真运行时状态变化量,当前时刻与上一时刻比较得到
message VariationStatus{
//新增或变化的列车的状态
repeated TrainState updatedTrain = 1;
//移除的列车的索引
repeated string removedTrainId = 2;
//状态发生变化的道岔
repeated SwitchState updatedSwitch = 3;
//状态发生变化的区段
repeated SectionState updatedSection = 4;
}
2023-07-11 16:11:49 +08:00
//仿真运行时的所有设备的状态
message AllDevicesStatus{
//所有列车状态
repeated TrainState trainState = 1;
//所有道岔状态
repeated SwitchState switchState = 2;
//所有类型区段状态
repeated SectionState sectionState = 3;
}
2023-07-13 18:13:43 +08:00
//服务器端向前端推送的设备状态信息
message PushedDevicesStatus{
//true-全量设备状态信息此时allStatus有效
//false - 增量设备状态消息此时varStatus有效
bool all = 1;
//增量设备状态消息
VariationStatus varStatus = 2;
//全量设备状态信息
AllDevicesStatus allStatus = 3;
}