添加common.proto,将通用的Message定义在这里面
This commit is contained in:
parent
9dee9892e8
commit
1a527b7708
|
@ -1,88 +0,0 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package basic_signal_data;
|
||||
|
||||
message Storage {
|
||||
Canvas canvas = 1;
|
||||
repeated Station stations = 2;
|
||||
}
|
||||
|
||||
// 画布数据
|
||||
message Canvas {
|
||||
// 画布宽
|
||||
int32 width = 1;
|
||||
// 画布高
|
||||
int32 height = 2;
|
||||
// 背景色
|
||||
string backgroundColor = 3;
|
||||
// 视口变换
|
||||
Transform viewportTransform = 4;
|
||||
//画布格子背景
|
||||
Grid gridBackground = 5;
|
||||
}
|
||||
|
||||
//格子背景
|
||||
message Grid {
|
||||
bool hasGrid = 1;
|
||||
string lineColor = 2; // 线色
|
||||
int32 space = 3; //间隔
|
||||
}
|
||||
|
||||
// 坐标点
|
||||
message Point {
|
||||
// x坐标
|
||||
float x = 1;
|
||||
// y坐标
|
||||
float y = 2;
|
||||
}
|
||||
|
||||
//变换
|
||||
message Transform {
|
||||
// 位移
|
||||
Point position = 1;
|
||||
// 缩放
|
||||
Point scale = 2;
|
||||
// 旋转弧度
|
||||
float rotation = 3;
|
||||
// 歪斜
|
||||
Point skew = 4;
|
||||
}
|
||||
|
||||
//子元素变换
|
||||
message ChildTransform {
|
||||
// 子元素名称
|
||||
string name = 1;
|
||||
// 子元素变换
|
||||
Transform transform = 2;
|
||||
}
|
||||
// 公共属性
|
||||
message CommonInfo {
|
||||
// 数据id
|
||||
uint32 id = 1;
|
||||
// 数据类型
|
||||
string graphicType = 2;
|
||||
// 变换
|
||||
Transform transform = 3;
|
||||
// 子元素变换
|
||||
repeated ChildTransform childrenTransform = 4;
|
||||
}
|
||||
|
||||
// 公里标
|
||||
message KilometerMark {
|
||||
// 公里标坐标系
|
||||
string coordinate = 1;
|
||||
// 公里标数值
|
||||
int64 value = 2;
|
||||
}
|
||||
|
||||
// 车站数据
|
||||
message Station {
|
||||
CommonInfo common = 1;
|
||||
string name = 2; //车站名
|
||||
string zhanName = 3; //车站站名
|
||||
string namePinyin = 4; // 车站名拼音简写
|
||||
KilometerMark km = 6; // 公里标
|
||||
bool concentration = 10; // 是否集中站
|
||||
bool depots = 11; // 是否车辆段
|
||||
repeated uint32 manageStationIds = 13; // 集中站管理的车站-id
|
||||
}
|
|
@ -0,0 +1,87 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package common;
|
||||
|
||||
// 画布数据
|
||||
message Canvas {
|
||||
// 画布宽
|
||||
int32 width = 1;
|
||||
// 画布高
|
||||
int32 height = 2;
|
||||
// 背景色
|
||||
string background_color = 3;
|
||||
// 视口变换
|
||||
Transform viewport_transform = 4;
|
||||
//画布格子背景
|
||||
Grid grid_background = 5;
|
||||
}
|
||||
|
||||
//格子背景
|
||||
message Grid {
|
||||
bool has_grid = 1;
|
||||
string line_color = 2; // 线色
|
||||
int32 space = 3; //间隔
|
||||
}
|
||||
|
||||
// 坐标点
|
||||
message Point {
|
||||
// x坐标
|
||||
float x = 1;
|
||||
// y坐标
|
||||
float y = 2;
|
||||
}
|
||||
|
||||
//变换
|
||||
message Transform {
|
||||
// 位移
|
||||
Point position = 1;
|
||||
// 缩放
|
||||
Point scale = 2;
|
||||
// 旋转弧度
|
||||
float rotation = 3;
|
||||
// 歪斜
|
||||
Point skew = 4;
|
||||
}
|
||||
|
||||
//子元素变换
|
||||
message ChildTransform {
|
||||
// 子元素名称
|
||||
string name = 1;
|
||||
// 子元素变换
|
||||
Transform transform = 2;
|
||||
}
|
||||
// 公共属性
|
||||
message CommonInfo {
|
||||
// 数据id
|
||||
uint32 id = 1;
|
||||
// 数据类型
|
||||
string graphic_type = 2;
|
||||
// 变换
|
||||
Transform transform = 3;
|
||||
// 子元素变换
|
||||
repeated ChildTransform children_transform = 4;
|
||||
}
|
||||
|
||||
// 数据类型
|
||||
enum DataType {
|
||||
// 数据类型未知
|
||||
DataType_Unknown = 0;
|
||||
// 电子地图数据
|
||||
DataType_Em = 1;
|
||||
// IBP数据
|
||||
DataType_Ibp = 2;
|
||||
// PSL数据
|
||||
DataType_Psl = 3;
|
||||
// ISCS数据
|
||||
DataType_Iscs = 4;
|
||||
}
|
||||
|
||||
// 功能特性类型
|
||||
enum FeatureType {
|
||||
// 未知
|
||||
FeatureType_Unknown = 0;
|
||||
// 仿真
|
||||
FeatureType_Simulation = 1;
|
||||
// 运行图编制
|
||||
FeatureType_RunPlan = 2;
|
||||
}
|
|
@ -0,0 +1,30 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package em_data;
|
||||
import "common.proto";
|
||||
|
||||
// 电子地图数据
|
||||
message Em {
|
||||
common.Canvas canvas = 1;
|
||||
repeated Station stations = 2;
|
||||
}
|
||||
|
||||
// 公里标
|
||||
message KilometerMark {
|
||||
// 公里标坐标系
|
||||
string coordinate = 1;
|
||||
// 公里标数值
|
||||
int64 value = 2;
|
||||
}
|
||||
|
||||
// 车站数据
|
||||
message Station {
|
||||
common.CommonInfo common = 1;
|
||||
string name = 2; //车站名
|
||||
string zhanName = 3; //车站站名
|
||||
string namePinyin = 4; // 车站名拼音简写
|
||||
KilometerMark km = 6; // 公里标
|
||||
bool concentration = 10; // 是否集中站
|
||||
bool depots = 11; // 是否车辆段
|
||||
repeated uint32 manageStationIds = 13; // 集中站管理的车站-id
|
||||
}
|
Loading…
Reference in New Issue