rt-sim-training-client/src/jmapNew/config/skinCode/ningbo_03.js

885 lines
40 KiB
JavaScript
Raw Normal View History

2020-08-19 14:06:01 +08:00
import defaultStyle from '../defaultStyle';
import deviceType from '../../constant/deviceType';
class SkinCode extends defaultStyle {
constructor() {
super();
this.fontFamily = '宋体';
2020-08-19 15:50:33 +08:00
this.backgroundColor = '#808080';
2020-08-19 14:06:01 +08:00
this[deviceType.Section] = {
2020-09-15 17:40:57 +08:00
elemnetType:['name', 'standTrackText', 'reentryTrackText', 'transferTrackText', 'destinationText', 'line', 'stopRouteImg', 'separator', 'speedLimit'],
2020-08-19 14:06:01 +08:00
active: {
routeColor: false // 进路触发颜色
},
2020-09-15 17:40:57 +08:00
name: {
2020-09-24 13:40:09 +08:00
z: 10,
2020-08-19 14:06:01 +08:00
position: 0, // 区段名称位置 1 上面 -1 下面 0 对称
distance: 10, // 文字离区段距离
fontSize: 12, // 字体大小
fontWeight: '600', // 字体粗细
fontColor: '#000', // 字体颜色
2020-08-19 14:06:01 +08:00
textAlign: 'center', // 水平对齐方式
textPosition: 'inside', // 文字位置
2020-10-26 15:16:48 +08:00
textVerticalAlign: 'middle', // 文字垂直对齐方式
approachColor: '#FFFFFF'
2020-08-19 14:06:01 +08:00
},
logicText: { // 逻辑区段名称
2020-09-24 13:40:09 +08:00
z: 10,
2020-08-19 14:06:01 +08:00
position: 0, // 区段名称位置 1 上面 -1 下面 0 对称
distance: 12, // 文字离区段距离
fontSize: 11, // 字体大小
fontWeight: '600', // 字体粗细
2020-08-19 14:06:01 +08:00
fontColor: '#FFFFFF', // 字体颜色
textAlign: 'center', // 水平对齐方式
textPosition: 'inside', // 文字位置
textVerticalAlign: 'middle' // 文字垂直对齐方式
},
2020-09-15 17:40:57 +08:00
standTrackText: { // 站台
2020-09-24 13:40:09 +08:00
z: 10,
2020-08-19 14:06:01 +08:00
position: 0, // 区段名称位置 1 上面 -1 下面 0 对称
distance: 24, // 文字离区段距离
fontSize: 11, // 字体大小
fontWeight: '600', // 字体粗细
fontColor: '#000', // 字体颜色
2020-08-19 14:06:01 +08:00
textAlign: 'center', // 水平对齐方式
textPosition: 'inside', // 文字位置
textVerticalAlign: 'middle' // 文字垂直对齐方式
},
2020-09-15 17:40:57 +08:00
reentryTrackText: { // 折返
2020-09-24 13:40:09 +08:00
z: 10,
2020-08-19 14:06:01 +08:00
position: 0, // 区段名称位置 1 上面 -1 下面 0 对称
distance: 36, // 文字离区段距离
fontSize: 11, // 字体大小
fontWeight: '600', // 字体粗细
fontColor: '#000', // 字体颜色
2020-08-19 14:06:01 +08:00
textAlign: 'center', // 水平对齐方式
textPosition: 'inside', // 文字位置
textVerticalAlign: 'middle' // 文字垂直对齐方式
},
2020-09-15 17:40:57 +08:00
transferTrackText: { // 转换轨
2020-09-24 13:40:09 +08:00
z: 10,
2020-08-19 14:06:01 +08:00
position: 0, // 区段名称位置 1 上面 -1 下面 0 对称
distance: 36, // 文字离区段距离
fontSize: 11, // 字体大小
fontWeight: '600', // 字体粗细
fontColor: '#000', // 字体颜色
2020-08-19 14:06:01 +08:00
textAlign: 'center', // 水平对齐方式
textPosition: 'inside', // 文字位置
textVerticalAlign: 'middle' // 文字垂直对齐方式
},
destinationText: { // 目的地
2020-09-24 13:40:09 +08:00
z: 10,
2020-08-19 14:06:01 +08:00
position: 0, // 区段名称位置 1 上面 -1 下面 0 对称
distance: 12, // 文字离区段距离
fontSize: 11, // 字体大小
fontWeight: '600', // 字体粗细
fontColor: '#000', // 字体颜色
2020-08-19 14:06:01 +08:00
textAlign: 'center', // 水平对齐方式
textPosition: 'inside', // 文字位置
textVerticalAlign: 'middle' // 文字垂直对齐方式
},
line: {
2020-09-15 17:40:57 +08:00
z: 0,
2020-08-19 17:14:27 +08:00
width: 8, // 区段宽度
2020-08-19 14:06:01 +08:00
beyondWidth: 0, // 区段宽超出宽度
invadeColor: '#FFFFFF', // 区段侵入颜色
2020-08-19 16:39:09 +08:00
spareColor: '#C0C0C0', // 区段空闲颜色
communicationOccupiedColor: '#FE0000', // 区段通信车占用颜色 // 调整 未确定
unCommunicationOccupiedColor: '#EF72A7', // 区段非通讯车占用颜色
2020-08-21 14:14:26 +08:00
routeLockColor: '#C0C0C0', // 区段进路锁定颜色
2020-08-19 16:39:09 +08:00
faultLockColor: '#81007F', // 区段故障锁定颜色
2020-08-19 14:06:01 +08:00
undefinedColor: '#0071C1', // 区段未定义颜色
2020-12-10 10:01:51 +08:00
blockColor: '#FE0000', // 区段封锁颜色(淡紫色)
2020-08-19 14:06:01 +08:00
atcExcisionColor: '#A0522D', // 区段atc切除颜色
atsExcisionColor: '#A0522D', // 区段ats切除颜色
2020-08-19 16:39:09 +08:00
invalidColor: '#AC8F40', // 计轴故障颜色
2020-08-19 14:06:01 +08:00
timeReleaseColor: '#3F3F3F', // 区段延时释放颜色
2020-08-21 14:14:26 +08:00
protectiveLockColor: '#C0C0C0', // 区段保护锁闭 延续保护
2020-08-19 14:06:01 +08:00
protectiveTimeReleaseColor: '#0071C1', // 区段保护延时解锁
2020-08-21 14:14:26 +08:00
logicalColor: '#C0C0C0', // 逻辑区段颜色 (未用)
2020-08-19 16:39:09 +08:00
logicalTextColor: 'white', // 逻辑区段名称颜色 (未用)
speedLimitColor: '#008081' // 临时限速颜色
},
topWithLine: { // 上陪线
width: 1,
defaultColor: '#8BC4F9'
},
bottomWithLine: { // 下陪线
width: 2,
defaultColor: '#03FFF8'
2020-08-19 14:06:01 +08:00
},
runLineShow:{
lineWidth: 6,
lineStroke:'#F37117',
pathStroke: '#00f'
},
2020-08-21 14:14:26 +08:00
routeArrow: {
radius: 5,
lineWidth: 3,
arrowLineWidth: 1,
defaultArrowStroke: '#0F0',
defaultArrowFill: '#0F0',
defaultLineStroke: '#0F0',
autoArrowStroke: '#000',
manualArrowStroke: '#000',
manualArrowFill: '#0201F2',
atmArrowStroke: '#0201F2',
atmArrowFill: '#0201F2',
atmLineStroke: '#0201F2',
mauArrowStroke: '#FFFF00',
mauArrowFill: '#FFFF00',
mauLineStroke: '#FFFF00',
cancelMauArrowStroke: '#000',
cancelMauArrowFill: '#000',
cancelMauLineStroke: '#000'
},
stopRouteImg: {},
2020-08-19 14:06:01 +08:00
speedLimit: { // 限速元素
2020-09-15 17:40:57 +08:00
z: 2,
2020-08-19 14:06:01 +08:00
width: 1, // 限速线的宽度
distance: 5, // 限速线距离区段距离
lineColor: '#C0C000', // 限速线颜色 (黄色透明光)
2020-09-15 17:40:57 +08:00
nameShow: false // 名称显示
2020-08-19 14:06:01 +08:00
},
separator: {
z: -1, // 分割符层级
2020-12-18 16:12:39 +08:00
width: 1.5, // 物理区段分隔符宽度
logicWidth:1.5, // 逻辑区段分隔符宽度
2020-08-19 14:06:01 +08:00
endWidth: 1.5, // 尽头分隔符宽度
2020-08-19 16:39:09 +08:00
endColor: '#000000', // 尽头分隔符颜色
color: '#000000', // 区段边界符颜色
2020-08-19 17:14:27 +08:00
halfHeight: 8 // 区段分隔符高度的一半
2020-08-19 14:06:01 +08:00
},
block: {
2020-12-10 10:01:51 +08:00
blockGlint: false // 区段封锁闪烁显示
2020-08-19 14:06:01 +08:00
},
trainPosition:{
2020-08-20 16:02:21 +08:00
display: true, // 列车实时位置显示
specialShow: true, // 列车特殊显示
specialBackground: 'rgba(36, 219, 219, 0.8)',
specialRectWidth: 14,
stopTrainRectWidth: 7
2020-08-19 14:06:01 +08:00
}
};
this[deviceType.Signal] = {
distance: 8, // 设备距离区段的距离
post: {
standardLength: 6, // 高柱长度
standardHeight: 6, // 灯柱高度
standardColor: '#000000', // 灯柱颜色
physicColor:'#c0c0c0', // 物理点灯灯柱颜色
2020-12-18 13:10:55 +08:00
standardVerticalWidth: 2, // 灯柱竖杆宽度
standardRailWidth: 2 // 灯柱横杆宽度
2020-08-19 14:06:01 +08:00
},
text: {
show: true, // 信号机名称显示
distance: 3, // 文字和灯杆的距离
isAlignCenter: false, // 信号字体对其方式
fontSize: 11, // 信号机名称字体大小
fontWeight: 'bold', // 信号机名称字体粗细
defaultColor: '#000', // 信号灯字体默认色
blockColor: '#000', // 信号灯字体锁定颜色
checkColor: '#00FF00', // 信号保护区段检查颜色
nameBorderShow: true // 信号机名字边框显示
2020-08-19 14:06:01 +08:00
},
lamp: {
bgShow: false, // 是否被选中
2021-01-29 17:17:41 +08:00
logicDisplayNone: true,
guidName: 'half', // 默认引导类型
borderVariable: false, // 信号灯边框可变
2020-08-19 14:06:01 +08:00
stopWidth: 2, // 禁止线宽度
borderWidth: 2, // 信号灯边框线宽度
borderColor: '#000000', // 信号灯边框线颜色
2021-01-07 15:15:54 +08:00
physicColor:'#ffffff', // 物理点灯信号灯边框线颜色
2020-08-19 14:06:01 +08:00
radiusR: 5, // 信号灯半径
grayColor: '#C0C0C0', // 信号灯灰色
redColor: 'red', // 信号灯红色
greenColor: 'green', // 信号灯绿色
yellowColor: 'yellow', // 信号灯黄色
whiteColor: '#FFFFFF', // 信号灯白色
blueColor: '#0070C0', // 信号灯蓝色
2021-01-07 15:15:54 +08:00
faultType: 'cross' // 信号机故障类型 cross叉形狀
2020-08-19 14:06:01 +08:00
},
route: {
direction: false, // 自动通过方向
radiusR: 8, // 自动通过三角半径
offset: { x: 2, y: 0 }, // 自动通过偏移量
routeColor: '#00FF00' // 自动进路
},
auto: {
signalFrontTriangle: false, // 信号灯前三角展示
2020-08-19 14:06:01 +08:00
direction: true, // 自动通过方向
offset: { x: 4, y: 0 }, // 自动通过偏移量
width: 5, // 自动宽度
manualControl: '#FFFF00', // 人工控制
autoRoute: '#00FF00', // 自动进路 (绿色)
autoTrigger: '#FFFF00', // 自动触发
outConflict: '#C00808' // 出车冲突
},
delay: {
direction: false, // 延时解锁方向
offset: { x: -5, y: 0 }, // 延时解锁偏移量
fontSize: 11, // 延迟解锁字体大小
fontColor: '#C00808', // 延迟解锁颜色
fontWeight: 'bold' // 字体粗细
},
button: {
distance: 5, // 信号灯按钮距离区段的距离
borderDashColor: '#FFFFFF', // 信号灯按钮边线
buttonColor: 'darkgreen', // 信号灯按钮颜色
buttonLightenColor: 'yellow' // 信号灯按钮闪烁颜色
},
lowButton:{
display: false // 现地 信号机按钮
}
};
this[deviceType.Station] = {
2020-11-13 10:21:36 +08:00
// 宁波三号线 车站元素 车站名称
elemnetType:['stationText'],
stationText:{
z:0,
fontWeight:'normal', // 字体粗细
textPadding:[0, 0], // 字体边距
borderColor:'', // 字体边框颜色
textBorderWidth:0, // 字体边框宽度
isSpecialType:true, // 特雷兹特殊类型
noneModeColor:'#ff0', // 无模式时字体颜色
currentModeColor:'#0f0', // 当前被控制时字体颜色
dispatherColor:'#FFF', // 非当前控制 行调控制时字体颜色
centralizedColor:'#000', // 非当前控制 行值集中站控制时字体颜色
noCentralizedColor:'#1BFAEB', // 非当前控制 行值非集中站控制时字体颜色
defaultBackColor:'rgba(0,0,0,0)', // 默认背景颜色
emergencyBackColor:'#f00' // 紧急背景颜色
2020-11-13 10:21:36 +08:00
},
2020-08-19 14:06:01 +08:00
kmPostShow: false, // 公里标显示
syncCentralizeStation: true, // 集中站和下辖车站控制权状态同步
2020-08-19 14:06:01 +08:00
kilometerPosition: 'up', // 公里标朝向
text: {
fontSize: 11, // 字体大小
fontWeight: 'normal', // 字体粗细
2020-08-20 16:43:35 +08:00
distance: 5, // 灯跟文字距离
borderShow: true,
borderColor: '#000',
textPadding: [3, 20],
textBorderWidth: 2
2020-08-19 14:06:01 +08:00
},
lamp: {
radiusR: 6, // 控制灯大小
controlColor: '#FFFF00' // 控制灯颜色
},
turnBack: { // 按图折返
lamp: 1, // 灯数量
lampSpace: 60 // 灯间距
},
StationControl: {
disPlayNone: true, // 不显示
2020-08-19 14:06:01 +08:00
text: {
distance: 12, // 灯和文字之间的距离
fontSize: 12, // 字体大小
fontFormat: 'consolas', // 字体格式
fontColor: '#ffffff', // 字体颜色
fontWeight: 'normal', // 字体粗细
textAlign: 'middle', // 字体水平对齐
textVerticalAlign: 'top' // 字体垂直对齐
},
lamp: {
count: 4, // 控制模式的个数
offset: { x: 20, y: 0 }, // 偏移量
emergencyOffset: {x: 0, y: 0},
radiusR: 6, // 控制模式灯的半径
distance: 46, // 控制模式之间灯之间的距离
grayColor: '#C0C0C0', // 控制模式灰色
greenColor: 'green', // 控制模式绿色
redColor: 'red', // 控制模式红色
yellowColor: 'yellow', // 控制模式黄色
stroke: '#FFFFFF', // 框的颜色
fill: 'rgba(0,0,0,0)' // 填充色
},
emergencyControl: { // 紧急站控
show: true,
offset: { x: 0, y: 0 },
text: '紧急站控',
arrowShow: false,
grayColor: '#7F7F7F'
},
centerControl: { // 中控
show: true,
offset: { x: 0, y: 0 },
text: '遥控',
buttonText: '站遥控按钮',
buttonShow: true,
arrowShow: false,
grayColor: '#7F7F7F'
},
substationControl: { // 站控按钮
show: true,
offset: { x: 0, y: 0 },
text: '站控',
arrowShow: false,
grayColor: '#7F7F7F'
},
interconnectedControl: { // 联锁控
show: false,
offset: { x: 0, y: 0 },
text: '联锁控',
arrowShow: false,
grayColor: '#7F7F7F'
}
}
};
this[deviceType.Switch] = {
text: {
show: true, // 道岔名称显示
position: 0, // 区段名称位置 1 上面 -1 下面 0 对称
offset: { x: 5, y: -10 }, // 道岔名称与区段距离
2020-08-19 15:50:33 +08:00
fontSize: 12, // 字体大小
fontColor: '#333', // 道岔名称颜色
2020-08-19 15:50:33 +08:00
fontWeight: '600', // 字体粗细
2020-08-19 14:06:01 +08:00
borderColor: '#FE0000', // 道岔名称边框颜色
lossColor: 'lightgreen', // 道岔名称失去颜色
2020-08-19 15:50:33 +08:00
locateColor: '#34DB3E', // 道岔定位颜色
2020-08-19 14:06:01 +08:00
inversionColor: '#FFFF00', // 道岔反位颜色
monolockLocationColor: 'lightgreen', // 道岔单锁'定位'颜色 (浅绿色)
monolockInversionColor: '#FFFF00', // 道岔单锁'反位'颜色 (黄色)
2020-08-19 15:50:33 +08:00
blockText: '#FC5F08', // 道岔 封锁名称 颜色
2020-08-19 14:06:01 +08:00
block: true, // 封锁名称
faultFlashing: true, // 故障闪烁
lossRect: false // 道岔失表矩形
},
sectionAction: {
flag: false, // 道岔 关联区段显示
spareColor: '#5b5b5b' // 区段显示颜色
},
core: {
2020-09-17 16:33:22 +08:00
length: 8 // 道岔单边长度
2020-08-19 14:06:01 +08:00
},
jointImg: { // 道岔 A B C D四元素属性配置
trapezoidLength: 8, // 直角梯形元素默认长度
2020-08-19 15:50:33 +08:00
block: false, // 联合图形封锁状态
2020-08-19 14:06:01 +08:00
flashingColors: '#D600D5', // 联合图形封锁闪烁显示颜色
fork: true, // 挤岔专用(如有挤岔操作 变为true
faultStatus: true, // 宁波失表状态用 挤岔表示
forKColor: 'red' // 挤岔颜色 配合挤岔专用
},
arcBlcok: { // 圆形封锁图形
show: true, // 显示
arcBorderColor: 'green', // 默认边框颜色
locationColor: 'green', // 定位封锁颜色
inversionColor: '#FFFF00' // 反位封锁颜色
},
rectLock: { // 矩形封锁框图形
rectWidth: 22, // 矩形框 宽高
rectBorderColor: '#fff', // 矩形边框颜色
monolock: false, // 单锁显示
block: false // 封锁显示
2020-08-19 16:45:05 +08:00
},
interlocking: { // 圆形联锁预留道岔
fillColor: '#FF00FE', // 联锁预留道岔 颜色
strokeColor: '#784F20',
operateFillColor: '#FF9600' // 操作员预留道岔 颜色
2021-04-09 13:18:51 +08:00
},
artificialArc: {
fillColor: 'rgba(0, 0, 0, 0)',
strokeColor: '#0001FC',
shapeR: 10
2020-08-19 14:06:01 +08:00
}
};
2020-09-11 14:13:29 +08:00
// 屏蔽门
this[deviceType.Psd] = {
// 宁波一号线 屏蔽门
2020-12-30 11:15:05 +08:00
elemnetType:['rectDoor'],
rectDoor: { // 屏蔽门
2020-09-11 14:13:29 +08:00
z:0,
height: 3, // 站台屏蔽门高度
distance: 4, // 站台和屏蔽门之间的距离
2020-12-30 11:15:05 +08:00
defaultColor: '#000000', // 屏蔽门默认颜色
splitDoorColor: '#00FF00' // 屏蔽门切除颜色
2020-09-11 14:13:29 +08:00
}
};
2020-08-19 14:06:01 +08:00
this[deviceType.StationStand] = {
2020-09-09 13:55:42 +08:00
// 宁波三号线站台元素 站台 站台紧急关闭 扣车元素 停站时间 运行等级 跳停
2020-09-15 17:08:28 +08:00
elemnetType:['solidStand', 'emergentRhombus', 'detainRect', 'stopTime', 'level'],
2020-09-09 13:55:42 +08:00
// 站台
2020-09-15 17:08:28 +08:00
solidStand:{
2020-09-09 13:55:42 +08:00
// 层级
z:0,
spareColor: '#0000ff', // 站台空闲颜色
2020-08-19 17:14:27 +08:00
spareStrokeColor: '#000000', // 站台空闲描边颜色
2021-04-09 17:49:46 +08:00
jumpStopColor: '#0000ff', // 站台跳停颜色
2020-09-09 13:55:42 +08:00
designatedJumpStopColor: 'lightSkyBlue', // 站台指定列车跳停颜色
2021-04-09 17:49:46 +08:00
closeColor: '#C00000', // 站台关闭颜色
2020-09-09 13:55:42 +08:00
headFontSize: 10, // 站台首端字体大小
2020-08-19 18:27:36 +08:00
doorOpenColor:'#00FF00', // 车门开启状态颜色
2020-12-10 17:34:13 +08:00
stopColor: '#0080C0', // 站台列车停站颜色
2020-09-09 13:55:42 +08:00
virtualColor: '#585858', // 虚拟站台颜色
lineWidth: 6, // 站台线宽
systemHoldTrainColor:'#0f0', // 系统扣车颜色
stationHoldTrainColor:'#ff0' // 站台扣车颜色
2020-09-09 13:55:42 +08:00
},
// 站台紧急关闭
2020-09-15 17:08:28 +08:00
emergentRhombus:{
2020-09-09 13:55:42 +08:00
z:1,
mergentR: 4, // 站台紧急关闭半径
mergentN: 4, // 站台紧急关闭边数
2020-08-19 14:06:01 +08:00
insideOffset: { x: 0, y: 25 }, // 内站台紧急关闭偏移量
outsideOffset: { x: 0, y: -25 }, // 外站台紧急关闭偏移量
closeColor: 'red' // 站台紧急关闭颜色
},
2020-09-09 13:55:42 +08:00
// 扣车元素 矩形扣车 宁波三号线
detainRect:{
z:0,
2020-08-19 14:06:01 +08:00
position: 1, // 扣车标识在站台上显示方向
text: 'H', // 扣车显示内容
offset: { x: -8, y: 10 }, // 扣车偏移量
centerTrainColor: ['#FFFF00', '#0000FF'], // 中心扣车颜色
localTrainColor: ['#FFFF00', '#0000FF'], // 车站扣车颜色
andCenterTrainColor: ['#FFFF00', '#0000FF'], // 车站+中心扣车颜色
2020-08-19 18:27:36 +08:00
detainTrainTextColor: '#FFFF00', // 车站扣除文字颜色
2020-09-09 13:55:42 +08:00
spareStrokeColor: '#000000', // 扣车描边颜色
lineWidth: 3, // 扣车线宽
2020-08-19 14:06:01 +08:00
fontSize: 10,
2020-09-09 13:55:42 +08:00
fontWeight: 'normal'
},
// 停站时间
stopTime:{
z:1,
textFontSize: 10, // 停站时间字体大小
textColor: 'white', // 停站时间字体颜色
position: 1, // 停站时间方向
offset: { x: -8, y: 4 } // 停站时间偏移量
},
// 运行等级
level:{
z:1,
textFontSize: 10, // 运行等级字体大小
position: -1, // 运行等级方向
offset: { x: -8, y: 4 }, // 运行等级偏移量
textColor: '#FFF000' // 停站等级字体颜色
2020-08-19 14:06:01 +08:00
},
2020-09-09 13:55:42 +08:00
common: { // 通用属性
textFontSize: 10, // 站台默认字体大小
haveJumpShow: false, // 站台是否有列车停跳显示
functionButtonShow: '03' // 功能灯按钮显示条件01所有模式下显示 02 行调显示 03现地显示
},
2020-08-19 14:06:01 +08:00
lamp: {
radiusR: 6, // 控制灯大小
lampColor: '#5A5D5A' // 功能按钮颜色
2020-09-09 13:55:42 +08:00
},
text: {
fontSize: 11, // 字体大小
fontWeight: 'normal', // 字体粗细
distance: 5 // 灯跟文字距离
2020-08-19 14:06:01 +08:00
}
2020-09-09 13:55:42 +08:00
// reentry: {}, // 站台折返策略
// jump: {},
// trainStop: {}, // 停车标志
// trainDepart: {}, // 停车计时
2020-08-19 14:06:01 +08:00
};
this[deviceType.StationTurnBack] = { // 站后折返
displayCondition: '01', // 显示条件 01所有模式下显示 02 行调显示 03现地显示
lamp: {
fill: '#FFFF00', // 填充色
radiusR: 6 // 控制灯大小
},
text: {
titleTextShow: false,
fontWeight: 580,
fontSize: 12,
distance: 10
},
rect: {
fill: 'rgba(0,0,0,0)',
stroke: '#fff',
lineWidth: 2,
padding: 6
}
};
this[deviceType.AutoTurnBack] = {
// 是否显示
visibleConditions: '01',
text: {
fontSize: 11, // 字体大小
fontWeight: 'normal', // 字体粗细
distance: 5 // 灯跟文字距离
},
subtitleText: {
fontSize: 11, // 字体大小
fontWeight: 'normal', // 字体粗细
distance: 17 // 等于副标题距离
},
lamp: {
borderShow: true, // 是否显示边框
lineDash: null, // 灯的包围框
stroke: '#FFFFFF', // 框的颜色
fill: 'rgba(0,0,0,0)', // 填充色
radiusR: 6, // 控制灯大小
controlColor: '#b5b3b3', // 控制灯颜色 (灰色)
lightUpColor: '#ffff00' // 点亮灯颜色
},
OutFrame: {
}
};
/** 引导总锁 */
this[deviceType.GuideLock] = {
// 是否显示
displayCondition: '03', // 显示条件 prdType
text: {
fontSize: 11, // 字体大小
fontWeight: 'normal', // 字体粗细
distance: 5 // 灯跟文字距离
},
lamp: {
fill: 'rgba(0,0,0,0)', // 填充色
radiusR: 6, // 控制灯大小
controlColor: '#b5b3b3', // 控制灯颜色 (灰色)
lightUpColor: '#FF0000' // 点亮灯颜色
}
};
this[deviceType.StationCounter] = {
text: {
distance: 2, // 计数器名称和文字的距离
fontColor: '#FFFFFF', // 计数器字体颜色
borderColor: '#E4EF50' // 计数器边框颜色
}
};
// 供电线路
this[deviceType.Power] = {
2020-11-03 09:55:11 +08:00
noElectricStrokeColor:'#808080', // 无电颜色
defaultStrokeColor: '#F00', // 线条颜色
2020-08-19 14:06:01 +08:00
extendLength: 10 // 延伸长度
};
// 延续保护计时
this[deviceType.OverAp] = {
show: false
};
this[deviceType.StationDelayUnlock] = {
text: {
distance: 3, // 延迟解锁和设备之间的距离
fontColor: '#FFFFFF', // 延时解锁字体颜色
borderColor: '#FFFFFF' // 延迟解锁边框颜色
}
};
this[deviceType.LcControl] = {
text: {
fontSize: 11, // 字体大小
fontWeight: 'normal', // 字体粗细
distance: 5 // 灯跟文字距离
},
lamp: {
radiusR: 6, // 控制灯大小
controlColor: '#FFFF00' // 控制灯颜色
}
};
this[deviceType.ZcControl] = {
// 是否显示
visible: false,
2020-08-19 14:06:01 +08:00
text: {
fontSize: 11, // 字体大小
fontWeight: 'normal', // 字体粗细
distance: 5 // 灯跟文字距离
},
lamp: {
radiusR: 6, // 控制灯大小
controlColor: '#00FF00', // 控制灯颜色
activeColor:'#ff0000' // 控制灯激活颜色
}
};
this[deviceType.LimitControl] = {
text: {
fontSize: 11, // 字体大小
fontWeight: 'normal', // 字体粗细
distance: 5 // 灯跟文字距离
},
lamp: {
radiusR: 6, // 控制灯大小
controlColor: '#ECE9D8' // 控制灯颜色
}
};
this[deviceType.Line] = {
lineColor: '#FFFFFF' // 线条颜色
};
this[deviceType.AutomaticRoute] = {
// 是否显示
displayCondition: '03', // 显示条件 prdType
text: {
fontSize: 11, // 字体大小
fontWeight: 'normal', // 字体粗细
distance: 5 // 灯跟文字距离
},
lamp: {
fill: 'rgba(0,0,0,0)', // 填充色
radiusR: 6, // 控制灯大小
controlColor: '#b5b3b3' // 控制灯颜色 (灰色)
}
};
this[deviceType.AxleReset] = {
// 是否显示
displayCondition: '03', // 显示条件 prdType
text: {
fontSize: 11, // 字体大小
fontWeight: 'normal', // 字体粗细
distance: 5 // 灯跟文字距离
},
lamp: {
fill: 'rgba(0,0,0,0)', // 填充色
radiusR: 6, // 控制灯大小
controlColor: 'red' // 控制灯颜色 (灰色)
}
};
/** 引导总锁 */
this[deviceType.GuideLock] = {
// 是否显示
displayCondition: '03', // 显示条件 prdType
text: {
fontSize: 11, // 字体大小
fontWeight: 'normal', // 字体粗细
distance: 5 // 灯跟文字距离
},
lamp: {
fill: 'rgba(0,0,0,0)', // 填充色
radiusR: 6, // 控制灯大小
controlColor: '#b5b3b3' // 控制灯颜色 (灰色)
}
};
this[deviceType.TrainWindow] = {
lineColor: '#fff', // 车次窗颜色
lineDash: [3], // 车次窗虚线间隔
lineWidth: 0.5, // 车次窗线宽
trainWindowSmooth: 0, // 车次窗矩形圆滑程度
show: false // 车次窗是否显示
};
this[deviceType.SplitStation] = {
lineLength: 15, // 箭头线长度
lineWidth: 2, // 线宽
height: 35, // 分隔整体高度
strokeColor: '#00FF00', // 线颜色
triangleFillColor: '#00FF00', // 三角填充颜色
textFill: '#FFFFFF', // 文字颜色
verticalDistance: 10, // 箭头三角垂直高度
horizontalDistance: 7// 箭头三角水平高度
};
this[deviceType.Train] = {
trainBody: {
fontFamily: 'consolas',
trainBodyLineWidth: 1, // 车身line宽
changeTrainWidth: false, // 是否根据车身上车组号、服务号、车次号、目的地码显示情况改变列车长度
specialTrainType: [
{
type: 'MANUAL',
serviceNumber: '',
nameFormat: 'groupNumber:targetCode'
},
{
type: 'HEAD',
nameFormat: 'serviceNumber:tripNumber:targetCode'
}
], // 特殊列车类型需设置显示格式
lrPadding: 4, // 两边间隔
upPadding: 4, // 上边距离
2020-08-20 16:02:21 +08:00
trainSidelineColor: 'rgba(0,0,0,0)',
trainBodyFillColor: 'rgba(0,0,0,0)', // 列车车身填充颜色
2020-08-19 14:06:01 +08:00
trainNameFormat: 'serviceNumber:tripNumber:targetCode'// 列车显示格式
},
directionArrow: {
2020-08-20 16:02:21 +08:00
hasArrow: false,
2020-08-19 14:06:01 +08:00
width: 6,
radiusR: 4,
fillColor: '#00FF00',
distanceTop: 15,
distanceBottom: 35
},
hsda: {
lrPaddingHSDA: 3, // HSDA两边间隔
upPaddingHSDA: 4, // HSDA上边距离
trainHSDATextFontSize: 12, // 列车HDSA字号
textHContent: 'H', // textH文本
textSContent: 'S', // textS文本
textDContent: 'D', // textD文本
textAContent: 'A' // textA文本
},
trainNumber: {
targetCodePrefix: '00', // 目的地码前缀
defaultTargetCode: 'DD', // 默认目的地码
2020-08-20 16:02:21 +08:00
fontColor: '#000',
fontSize: 10,
2020-08-19 14:06:01 +08:00
trainTargetTextAlign: 'left', // 目的地码文字显示位置
trainNumberOffset: { x: 36, y: 4 }, // 目的地码偏移量
headTypeColor: '#1CBAFD', // 头码车目的地号显示颜色
manualTypeColor: '#1CBAFD' // 人工车目的地号显示颜色
},
trainServer: {
serviceNumberPrefix: '000', // 服务号(表号)前缀
2020-08-20 16:02:21 +08:00
fontColor: '#000',
fontSize: 10,
2020-08-19 14:06:01 +08:00
defaultServiceNumber: 'TTT', // 默认服务号(表号)
2020-08-20 16:02:21 +08:00
defaultServerNoColor: '#000', // 默认服务号状态显示颜色
2020-08-19 14:06:01 +08:00
trainServerOffset: { x: 4, y: 4 } // 列车服务号偏移
},
trainTarget: {
tripNumberPrefix: '00', // 车次号前缀
2020-08-20 16:02:21 +08:00
fontColor: '#000',
fontSize: 10,
2020-08-19 14:06:01 +08:00
defaultTripNumber: 'DD', // 默认车次号2
trainTargetOffset: { x: 24, y: 4 }, // 列车车次号偏移
trainTargetTextAlign: 'right' // 车次号文字显示位置
},
trainTargetNumber: {
groupNumberPrefix: '00000', // 车组号前缀
defaultGroupNumber: 'EEEEE', // 默认车组号
trainTargetNumberOffset: {x: -4, y: 4}, // 车组号偏移量
lineNumber: '01', // 线路号在人工车时车组号拼接线路号
manualTypeColor: '#FA7FD7', // 人工车车组号显示颜色
maskText: '0' // 车组号遮罩
},
trainHead: {
2020-08-20 16:02:21 +08:00
trainConntWidth: 0, // 列车竖杠的宽度
2020-08-19 14:06:01 +08:00
trainHeadFillColor: '#000000', // 列车车头矩形填充颜色
trainHeadRectHeight: 20, // 列车车头矩形高度
directionStopType:'normal', // special 西安二号线 停车 列车方向图标不消失 normal 正常
trainHeadHeight: 'trainBox', // 列车车头高度取决于trainBox高度
2020-08-20 16:02:21 +08:00
trainHeadArrowWidth: 0, // 列车车头三角宽度
trainHeadArrowOffsetX: 0 // 列车车头三角偏移
2020-08-19 14:06:01 +08:00
},
common: {
trainHeight: 20, // 列车高度
trainHeadDistance: 2, // 列车和车头之间的间距
trainWidth: 70, // 列车长度
trainTextFontSize: 16, // 列车字号
fontFamily: 'consolas', // 默认字体 族类
2020-08-20 16:02:21 +08:00
haveTextHSDA: false, // 是否需创建textHSDA对象
2020-08-19 14:06:01 +08:00
haveArrowText: true, // 是否需创建arrowText对象
textOffset: 4, // 字体偏移(用以控制字体据车头的距离)
trainWidthMoreText: 8, // 计算列车长度时--列车长比text多出尺寸
trainHeadColorChangeMode: 1, // 1:driveMode + runlevel
trainTip:false // 鼠标悬停列车状态信息框是否显示
},
mouseOverStyle:{
2020-08-20 16:02:21 +08:00
borderLineColor: 'rgba(0,0,0,0)',
2020-08-19 14:06:01 +08:00
borderLineDash: [3, 3],
leftOffset:30,
rightOffset:30
},
trainStatusStyle: {
defaultDestinationColor: '#FFFFFF', // 默认目的地状态显示颜色
destinationStatusSetText: 'trainTarget', // 目的地状态设置的对应哪个text的颜色
destinationStatus: [
{ status: '01', showColor: '#FFFFFF' },
{ status: '02', showColor: '#00FF00' },
{ status: '03', showColor: '#A0522D' },
{ status: '04', showColor: '#FFFF00' }
], // 目的地状态 01准点 02早点 03晚点 04头码车
serverNoType: [
{ type: '01', showColor: '#FFFFFF' },
{ type: '02', showColor: '#FFF000' }
], // 服务号状态类型 01显示服务号 计划车 02显示车组号: 头码车与人工车
directionType: [
{
type: 1,
lineLShow: false,
lineRShow: true,
arrowLShow: false,
arrowRShow: true
},
{
type: 0,
lineLShow: true,
lineRShow: false,
arrowLShow: true,
arrowRShow: false
}
], // 列车运行方向状态类型对应车头显示状态 1从左往右 0从右往左
directionStopType: [
{
type: 1,
lineLShow: false,
lineRShow: true
},
{
type: 0,
lineLShow: true,
lineRShow: false
}
], // 列车停止方向类型对应车头显示状态 1从左往右 0从右往左
driveModeStatus: [
{
status: 'AMCBTC',
trainLColor: '#FFCE4D',
trainRColor: '#FFCE4D'
},
{
status: 'CMCBTC',
trainLColor: '#FFFFCD',
trainRColor: '#FFFFCD'
},
{
status: 'AMITC',
trainLColor: '#B903E1',
trainRColor: '#B903E1'
},
{
status: 'CMITC',
trainLColor: '#9370DB',
trainRColor: '#9370DB'
},
{
status: 'RMIL',
trainLColor: '#808080',
trainRColor: '#808080'
},
{
status: 'RMITC',
trainLColor: '#808080',
trainRColor: '#808080'
},
{
status: 'RMCBTC',
trainLColor: '#808080',
trainRColor: '#808080'
},
{
status: 'NRMCBTC',
trainLColor: 'rgba(0, 0, 0, 0)',
trainRColor: 'rgba(0, 0, 0, 0)'
}
], // 列车运行模式对应车头颜色 ATO自动驾驶模式AM ATP监控下的人工驾驶模式CM 限制人工驾驶模式RM 非限制人工驾驶模式NRM
communicationStatus: [
] // 设置通信状态 cbtc级别CBTC 点式通信ITC 联锁级IL
}
};
2020-08-20 13:17:58 +08:00
this[deviceType.FloodGate] = {
displayCondition: '01', // 显示条件 01所有模式下显示 02 行调显示 03现地显示
lineWidth: 2, // 防淹门描边宽度
spareStrokeColor: '#000', // 打开并锁闭-非打开并锁闭描边颜色
spareFillColor: 'rgba(0, 0, 0, 0)', // 打开并锁闭填充颜色
closeFillColor: '#C10000', // 非打开并锁闭填充颜色
allowCloseFillColor: '#FF0000', // 允许关门填充颜色
allowCLoseStrokeColor: '#FFFF00' // 允许关门描边颜色
};
2020-10-10 17:58:14 +08:00
this[deviceType.DirectionRod] = {};
2020-08-19 14:06:01 +08:00
}
}
export default new SkinCode();