From f1baf048c5e33fed98e32ff0aa35b8abba82d7a8 Mon Sep 17 00:00:00 2001 From: xzb <223@qq.com> Date: Thu, 16 Nov 2023 11:02:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=A1=E5=8F=B7=E6=9C=BA=E6=A8=A1=E5=9E=8B?= =?UTF-8?q?=E6=9E=9A=E4=B8=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/stationLayoutGraphics.proto | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/protos/stationLayoutGraphics.proto b/protos/stationLayoutGraphics.proto index 7cff870..0f85a26 100644 --- a/protos/stationLayoutGraphics.proto +++ b/protos/stationLayoutGraphics.proto @@ -238,13 +238,18 @@ message Signal { repeated string centralizedStations = 9; // 集中站列表 // 信号机模型类型枚举 // 从左向右,最左边为靠近灯座的灯 + // 如果没有说明,默认不封灯,无引导 + // F-封 D-单 Y-有、带 + // H-红 L-绿 U-黄 A-蓝 B-白 enum Model{ - HLU = 0;//红绿黄 - HL = 1;//红绿, - HLU_FU = 2;//红绿黄,封黄灯 - HLU_FL = 3;//红绿黄,封绿 - AB = 4;//蓝白 - HBU = 5;//红白黄 + HL = 0; //2XH-1 红绿 + HLU_FU = 1; //2XH-1 红绿黄,封黄灯,无引导 + HLU_DU_YY = 2; //3XH-1 红绿黄,不封灯,有单黄,带引导 + HLU_YY = 3; //3XH-2或JDXH 红绿黄,不封灯,无单黄,带引导 + HLU_FL_DU_YY = 4;//3XH-3 红绿黄,封绿灯,有单黄,带引导 + HLU_DU = 5; //3XH-4 红绿黄,不封灯,有单黄,无引导 + AB = 6; //DXCH 蓝白 + HBU_DU = 7; //JCKXH 红白黄,不封灯,有单黄,无引导 } // 信号机模型类型 Model mt = 10;