道岔、信号机操作消息调整

This commit is contained in:
walker 2024-01-18 11:26:58 +08:00
parent e35c9e5686
commit 4faeb5e2d5
2 changed files with 29 additions and 38 deletions

View File

@ -414,6 +414,8 @@ message ReplyState {
bool xh = 2; bool xh = 2;
// //
string code = 3; string code = 3;
//
bool force = 4;
} }
// //

View File

@ -24,22 +24,11 @@ message RelayOperationReq {
// //
message Points { message Points {
// // //
// enum Operation { enum Operation {
// Undefined = 0; // Undefined = 0; //
// DC = 1; // SetParams = 1; //
// CancelDC = 2; // }
// FC = 3; //
// CancelFC = 4; //
// // SetSB = 5; //
// // CancelSB = 6; //
// // SetJC = 7; //
// // CancelJC = 8; //
// // ForceDw = 9; //
// // ForceFw = 10; //
// // CancelForce = 11; //
// SetParams = 12; //
// }
// //
enum Force { enum Force {
FP_NONE = 0; // FP_NONE = 0; //
@ -54,7 +43,7 @@ message PointsOperationReq {
string simulationId = 1; // 仿id string simulationId = 1; // 仿id
int32 mapId = 2; // id int32 mapId = 2; // id
uint32 deviceId = 3; // id uint32 deviceId = 3; // id
// Points.Operation operation = 4; // Points.Operation operation = 4; //
PointsParam param = 5; // ,operation为SetParams时有效 PointsParam param = 5; // ,operation为SetParams时有效
} }
@ -66,27 +55,27 @@ message PointsParam {
// //
message Signal { message Signal {
// //
// enum Operation { enum Operation {
// Undefined = 0; // Undefined = 0; //
// Display = 1; //,绿 SetParams = 1; //
// LightHFaultDs = 2; // // Display = 1; //,绿
// LightUFaultDs = 3; // // LightHFaultDs = 2; //
// LightLFaultDs = 4; //绿 // LightUFaultDs = 3; //
// LightAFaultDs = 5; // // LightLFaultDs = 4; //绿
// LightBFaultDs = 6; // // LightAFaultDs = 5; //
// LightHCancelDs = 7; // // LightBFaultDs = 6; //
// LightUCancelDs = 8; // // LightHCancelDs = 7; //
// LightLCancelDs = 9; //绿 // LightUCancelDs = 8; //
// LightACancelDs = 10; // // LightLCancelDs = 9; //绿
// LightBCancelDs = 11; // // LightACancelDs = 10; //
// } // LightBCancelDs = 11; //
}
enum DS { enum DS {
DS_NONE = 0; // DS_H = 0; //
DS_H = 1; // DS_U = 1; //
DS_U = 2; // DS_L = 2; // 绿
DS_L = 3; // 绿 DS_A = 3; //
DS_A = 4; // DS_B = 4; //
DS_B = 5; //
} }
// //
enum Force { enum Force {
@ -105,7 +94,7 @@ message SignalOperationReq {
string simulationId = 1; // 仿id string simulationId = 1; // 仿id
int32 mapId = 2; // id int32 mapId = 2; // id
uint32 deviceId = 3; // id uint32 deviceId = 3; // id
// Signal.Operation operation = 4; // Signal.Operation operation = 4; //
SignalParam param = 5; // ,operation为SetParams时有效 SignalParam param = 5; // ,operation为SetParams时有效
} }