2019-07-15 10:06:07 +08:00
|
|
|
/*
|
|
|
|
* 信号机
|
|
|
|
*/
|
|
|
|
|
2019-07-18 10:05:16 +08:00
|
|
|
import ESigPost from './ESigPost';
|
2019-07-23 18:30:08 +08:00
|
|
|
import ESigLamp from './ESigLamp';
|
2019-07-23 18:21:49 +08:00
|
|
|
import ESigAuto from './ESigAuto';
|
2019-07-18 17:01:21 +08:00
|
|
|
import ESigRoute from './ESigRoute';
|
2019-07-18 10:05:16 +08:00
|
|
|
import ESigButton from './ESigButton';
|
2019-07-23 18:49:54 +08:00
|
|
|
import ESigDelay from './ESigDelay';
|
2019-07-23 18:30:08 +08:00
|
|
|
import ESigName from './ESigName';
|
2019-07-16 16:29:31 +08:00
|
|
|
import Group from 'zrender/src/container/Group';
|
2019-07-15 10:06:07 +08:00
|
|
|
|
2019-07-16 16:29:31 +08:00
|
|
|
class Signal extends Group {
|
2019-07-30 09:18:24 +08:00
|
|
|
constructor(model, style) {
|
2019-07-16 12:01:43 +08:00
|
|
|
super();
|
2019-07-30 09:18:24 +08:00
|
|
|
this._code = model._code;
|
|
|
|
this._type = model._type;
|
2019-07-15 10:06:07 +08:00
|
|
|
this.model = model;
|
2019-07-16 16:29:31 +08:00
|
|
|
this.style = style;
|
|
|
|
this.count = parseInt(model.lampPositionType);
|
|
|
|
this.lamps = new Array(this.count);
|
2019-07-30 09:18:24 +08:00
|
|
|
this.zlevel = model.zlevel;
|
2019-07-29 11:18:50 +08:00
|
|
|
this.z = 7;
|
2019-07-16 16:29:31 +08:00
|
|
|
this.create();
|
2019-07-22 15:43:42 +08:00
|
|
|
this.transformRotation(this);
|
2019-07-30 09:18:24 +08:00
|
|
|
this.setState(model);
|
2019-07-15 10:06:07 +08:00
|
|
|
}
|
|
|
|
|
2019-07-16 16:29:31 +08:00
|
|
|
create() {
|
2019-07-18 17:01:21 +08:00
|
|
|
const model = this.model;
|
|
|
|
const style = this.style;
|
2019-07-16 16:29:31 +08:00
|
|
|
const drict = this.model.directionType == '01' ? -1 : 1; // 朝向 左:右
|
2019-07-18 18:24:40 +08:00
|
|
|
const posit = this.model.positionType == '01' ? -1 : 1; // 位置 上:下
|
2019-07-15 10:06:07 +08:00
|
|
|
|
2019-07-16 16:29:31 +08:00
|
|
|
// 信号机高柱矮柱
|
2019-07-23 18:30:08 +08:00
|
|
|
this.sigPost = new ESigPost({
|
2019-07-15 10:06:07 +08:00
|
|
|
zlevel: this.zlevel,
|
2019-07-22 13:39:03 +08:00
|
|
|
z: this.z,
|
2019-07-18 17:01:21 +08:00
|
|
|
style: style,
|
2019-07-16 16:29:31 +08:00
|
|
|
drict: drict,
|
2019-07-18 17:01:21 +08:00
|
|
|
type: model.lampPostType,
|
|
|
|
x: model.position.x,
|
2019-07-24 09:10:45 +08:00
|
|
|
y: model.position.y + posit * (style.Signal.signalDistance + style.Section.line.width + style.Signal.lamp.signalR)
|
2019-07-15 10:06:07 +08:00
|
|
|
});
|
|
|
|
|
2019-07-16 16:29:31 +08:00
|
|
|
// 信号灯
|
2019-07-23 18:49:54 +08:00
|
|
|
const endPoint = this.sigPost.getLampPosition(model.lampPostType);
|
2019-07-16 16:29:31 +08:00
|
|
|
this.lamps = [];
|
|
|
|
for (let i = 0; i < this.count; i++) {
|
2019-07-23 18:30:08 +08:00
|
|
|
const lamp = new ESigLamp({
|
2019-07-15 10:06:07 +08:00
|
|
|
zlevel: this.zlevel,
|
2019-07-22 13:39:03 +08:00
|
|
|
z: this.z,
|
2019-07-18 17:01:21 +08:00
|
|
|
style: style,
|
2019-07-16 16:29:31 +08:00
|
|
|
index: i + 1,
|
|
|
|
drict: drict,
|
2019-07-23 18:21:49 +08:00
|
|
|
x: endPoint.x + i * drict * style.Signal.lamp.signalR * 2,
|
2019-07-18 18:24:40 +08:00
|
|
|
y: endPoint.y,
|
2019-07-18 17:01:21 +08:00
|
|
|
originX: model.position.x,
|
|
|
|
originY: model.position.y
|
2019-07-15 10:06:07 +08:00
|
|
|
});
|
|
|
|
|
2019-07-16 16:29:31 +08:00
|
|
|
this.lamps.push(lamp);
|
2019-07-15 10:06:07 +08:00
|
|
|
}
|
|
|
|
|
2019-07-16 18:37:49 +08:00
|
|
|
// 信号机名称
|
2019-07-19 09:23:56 +08:00
|
|
|
const sigNameX = model.position.x + model.namePosition.x;
|
2019-07-24 09:10:45 +08:00
|
|
|
const sigNameY = model.position.y + posit * (style.Signal.signalDistance + style.Section.line.width + style.Signal.lamp.signalR * 2 + model.namePosition.y);
|
2019-07-19 09:23:56 +08:00
|
|
|
this.sigName = new ESigName({
|
2019-07-16 18:37:49 +08:00
|
|
|
zlevel: this.zlevel,
|
2019-07-22 13:39:03 +08:00
|
|
|
z: this.z,
|
2019-07-22 15:43:42 +08:00
|
|
|
silent: false,
|
2019-07-24 13:50:37 +08:00
|
|
|
isNoRotation: style.Signal.text.isNoRotation,
|
2019-07-18 17:01:21 +08:00
|
|
|
style: style,
|
2019-07-19 09:23:56 +08:00
|
|
|
x: sigNameX,
|
|
|
|
y: sigNameY,
|
2019-07-18 17:01:21 +08:00
|
|
|
text: model.name,
|
2019-07-25 15:44:23 +08:00
|
|
|
fontWeight: 'normal',
|
2019-07-24 11:24:13 +08:00
|
|
|
fontSize: style.Signal.text.signalTextFontSize,
|
|
|
|
fontFamily: style.textFontFormat,
|
2019-07-24 10:02:07 +08:00
|
|
|
textFill: style.Signal.text.signalDefaultTextColor,
|
2019-07-16 18:37:49 +08:00
|
|
|
textAlign: 'middle',
|
|
|
|
textVerticalAlign: posit == 1 ? 'top' : 'bottom'
|
|
|
|
});
|
|
|
|
|
2019-07-18 17:01:21 +08:00
|
|
|
// 自动进路
|
2019-07-23 18:21:49 +08:00
|
|
|
const sigRouteH = style.Signal.route.signalRouteDirection ? this.count * style.Signal.lamp.signalR * 2 : -style.Signal.lamp.signalR * 2;
|
|
|
|
const sigRouteX = endPoint.x + (style.Signal.route.signalRouteOffset.x + sigRouteH) * drict;
|
|
|
|
const sigRouteY = endPoint.y + (style.Signal.route.signalRouteOffset.y);
|
2019-07-18 17:01:21 +08:00
|
|
|
this.sigRoute = new ESigRoute({
|
2019-07-16 18:37:49 +08:00
|
|
|
zlevel: this.zlevel,
|
2019-07-22 13:39:03 +08:00
|
|
|
z: this.z,
|
2019-07-23 18:49:54 +08:00
|
|
|
style: style,
|
|
|
|
x: sigRouteX,
|
|
|
|
y: sigRouteY,
|
|
|
|
drict: drict
|
2019-07-16 18:37:49 +08:00
|
|
|
});
|
|
|
|
|
2019-07-18 17:01:21 +08:00
|
|
|
// 自动通过
|
2019-07-23 18:21:49 +08:00
|
|
|
const sigAutoH = style.Signal.auto.signalAutoDirection ? this.count * style.Signal.lamp.signalR * 2 : -style.Signal.lamp.signalR * 2;
|
|
|
|
const sigAutoX = endPoint.x + (style.Signal.auto.signalAutoOffset.x + sigAutoH) * drict;
|
|
|
|
const sigAutoY = endPoint.y + (style.Signal.auto.signalAutoOffset.y);
|
|
|
|
this.sigAuto = new ESigAuto({
|
2019-07-16 18:37:49 +08:00
|
|
|
zlevel: this.zlevel,
|
2019-07-22 13:39:03 +08:00
|
|
|
z: this.z,
|
2019-07-18 17:01:21 +08:00
|
|
|
style: style,
|
2019-07-16 18:37:49 +08:00
|
|
|
count: this.count,
|
|
|
|
drict: drict,
|
2019-07-23 18:21:49 +08:00
|
|
|
x: sigAutoX,
|
|
|
|
y: sigAutoY,
|
2019-07-24 09:10:45 +08:00
|
|
|
width: style.Signal.signalAutoWidth,
|
|
|
|
fill: style.Signal.lamp.signalAutoRoute,
|
2019-07-17 18:18:28 +08:00
|
|
|
lineWidth: 0.6,
|
2019-07-18 17:01:21 +08:00
|
|
|
stroke: style.sidelineColor
|
2019-07-16 18:37:49 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
// 延迟解锁
|
2019-07-23 18:21:49 +08:00
|
|
|
const sigDelayH = style.Signal.delay.signalDelayDirection ? this.count * style.Signal.lamp.signalR * 2 : -style.Signal.lamp.signalR * 2;
|
|
|
|
const sigDelayX = endPoint.x + (style.Signal.delay.signalDelayOffset.x + sigDelayH) * drict;
|
|
|
|
const sigDelayY = endPoint.y - (style.Signal.delay.signalDelayOffset.y) * posit;
|
2019-07-19 09:23:56 +08:00
|
|
|
this.sigDelay = new ESigDelay({
|
2019-07-16 18:37:49 +08:00
|
|
|
zlevel: this.zlevel,
|
2019-07-22 13:39:03 +08:00
|
|
|
z: this.z,
|
2019-07-18 17:01:21 +08:00
|
|
|
style: style,
|
2019-07-18 18:24:40 +08:00
|
|
|
x: sigDelayX,
|
|
|
|
y: sigDelayY,
|
2019-07-24 13:50:37 +08:00
|
|
|
fontWeight: 'bold',
|
|
|
|
fontSize: style.Signal.delay.signalDelayTextFontSize,
|
|
|
|
fontFamily: style.textFontFormat,
|
2019-07-30 09:18:24 +08:00
|
|
|
text: this.model.delayCount || '0',
|
2019-07-23 18:21:49 +08:00
|
|
|
textFill: style.Signal.delay.signalDelayTextColor,
|
2019-07-16 18:37:49 +08:00
|
|
|
textAlign: drict > 0 ? 'right' : 'left',
|
|
|
|
textVerticalAlign: 'middle'
|
|
|
|
});
|
|
|
|
|
2019-07-15 10:06:07 +08:00
|
|
|
// 信号灯按钮
|
2019-07-16 16:29:31 +08:00
|
|
|
this.sigButton = new ESigButton({
|
2019-07-15 10:06:07 +08:00
|
|
|
zlevel: this.zlevel,
|
2019-07-22 13:39:03 +08:00
|
|
|
z: this.z,
|
2019-07-18 17:01:21 +08:00
|
|
|
style: style,
|
2019-07-16 16:29:31 +08:00
|
|
|
posit: posit,
|
2019-07-18 17:01:21 +08:00
|
|
|
show: model.buttonShow,
|
|
|
|
x: model.buttonPosition.x,
|
2019-07-23 18:21:49 +08:00
|
|
|
y: model.buttonPosition.y - posit * (style.Signal.button.signalButtonDistance + style.Signal.lamp.signalR * 2)
|
2019-07-16 16:29:31 +08:00
|
|
|
});
|
2019-07-15 10:06:07 +08:00
|
|
|
|
2019-07-16 18:37:49 +08:00
|
|
|
this.add(this.sigPost);
|
2019-07-16 16:29:31 +08:00
|
|
|
this.lamps.forEach(lamp => { this.add(lamp); });
|
2019-07-16 18:37:49 +08:00
|
|
|
this.add(this.sigName);
|
2019-07-23 18:21:49 +08:00
|
|
|
this.add(this.sigAuto);
|
2019-07-18 17:01:21 +08:00
|
|
|
this.add(this.sigRoute);
|
2019-07-16 18:37:49 +08:00
|
|
|
this.add(this.sigDelay);
|
2019-07-23 18:49:54 +08:00
|
|
|
// this.add(this.sigButton);
|
2019-07-15 10:06:07 +08:00
|
|
|
}
|
|
|
|
|
2019-07-22 15:43:42 +08:00
|
|
|
// 整体旋转信号灯
|
|
|
|
transformRotation(device) {
|
|
|
|
if (this.model.rotate) {
|
|
|
|
device.eachChild(item => {
|
|
|
|
if (item instanceof Group) {
|
|
|
|
this.transformRotation(item);
|
2019-07-24 13:50:37 +08:00
|
|
|
} else if (item && item.model && item.model.isNoRotation) {
|
2019-07-22 15:43:42 +08:00
|
|
|
item.origin = [this.model.position.x, this.model.position.y];
|
|
|
|
item.rotation = -Math.PI / 180 * Number(this.model.rotate);
|
|
|
|
item.dirty();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-16 18:37:49 +08:00
|
|
|
// 关闭
|
|
|
|
close() {
|
2019-07-30 09:18:24 +08:00
|
|
|
if (this.count == 2 && this.model.lightType == '01') { // 双灯 物理点灯
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.lamps[0]) {
|
|
|
|
this.lamps[0].setStop(false);
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampRedColor);
|
|
|
|
}
|
|
|
|
if (this.lamps[1]) {
|
|
|
|
this.lamps[1].setStop(false);
|
|
|
|
this.lamps[1].setColor(this.style.backgroundColor);
|
|
|
|
}
|
2019-07-30 09:18:24 +08:00
|
|
|
} else if (this.count == 2 && this.model.lightType == '02') { // 双灯 逻辑点灯
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.lamps[0]) {
|
|
|
|
this.lamps[0].setStop(true);
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampRedColor);
|
|
|
|
}
|
|
|
|
if (this.lamps[1]) {
|
|
|
|
this.lamps[1].setStop(true);
|
|
|
|
this.lamps[1].setColor(this.style.backgroundColor);
|
|
|
|
}
|
2019-07-30 09:18:24 +08:00
|
|
|
} else if (this.count == 1 && this.model.lightType == '01') { // 单灯 物理点灯
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.lamps[0]) {
|
|
|
|
this.lamps[0].setStop(false);
|
|
|
|
if (this.model.useType == '05') {
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampBlueColor);
|
|
|
|
} else {
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampRedColor);
|
|
|
|
}
|
|
|
|
}
|
2019-07-30 09:18:24 +08:00
|
|
|
} else if (this.count == 1 && this.model.lightType == '02') { // 单灯 逻辑点灯
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.lamps[0]) {
|
|
|
|
this.lamps[0].setStop(true);
|
|
|
|
if (this.model.useType == '05') {
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampBlueColor);
|
|
|
|
} else {
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampRedColor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (this.count == 1) {
|
|
|
|
if (this.lamps[0]) {
|
|
|
|
if (this.model.useType == '05') {
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampBlueColor);
|
|
|
|
} else {
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampRedColor);
|
|
|
|
}
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 开放
|
|
|
|
open() {
|
2019-07-30 09:18:24 +08:00
|
|
|
if (this.count == 2 && this.model.lightType == '01' && this.model.switchLocateType == '01') { // 双灯 物理点灯 道岔定位
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.lamps[0]) {
|
|
|
|
this.lamps[0].setStop(false);
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampGreenColor);
|
|
|
|
}
|
|
|
|
if (this.lamps[1]) {
|
|
|
|
this.lamps[1].setStop(false);
|
|
|
|
this.lamps[1].setColor(this.style.backgroundColor);
|
|
|
|
}
|
2019-07-30 09:18:24 +08:00
|
|
|
} else if (this.count == 2 && this.model.lightType == '02' && this.model.switchLocateType == '01') { // 双灯 逻辑点灯 道岔定位
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.lamps[0]) {
|
|
|
|
this.lamps[0].setStop(true);
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampGreenColor);
|
|
|
|
}
|
|
|
|
if (this.lamps[1]) {
|
|
|
|
this.lamps[1].setStop(true);
|
|
|
|
this.lamps[1].setColor(this.style.backgroundColor);
|
|
|
|
}
|
2019-07-30 09:18:24 +08:00
|
|
|
} else if (this.count == 2 && this.model.lightType == '01' && this.model.switchLocateType == '02') { // 双灯 物理点灯 道岔反位
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.lamps[0]) {
|
|
|
|
this.lamps[0].setStop(false);
|
|
|
|
this.lamps[0].setColor(this.style.backgroundColor);
|
|
|
|
}
|
|
|
|
if (this.lamps[1]) {
|
|
|
|
this.lamps[1].setStop(false);
|
|
|
|
this.lamps[1].setColor(this.style.Signal.lamp.signalLampYellowColor);
|
|
|
|
}
|
2019-07-30 09:18:24 +08:00
|
|
|
} else if (this.count == 2 && this.model.lightType == '02' && this.model.switchLocateType == '02') { // 双灯 逻辑点灯 道岔反位
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.lamps[0]) {
|
|
|
|
this.lamps[0].setStop(true);
|
|
|
|
this.lamps[0].setColor(this.style.backgroundColor);
|
|
|
|
}
|
|
|
|
if (this.lamps[1]) {
|
|
|
|
this.lamps[1].setStop(true);
|
|
|
|
this.lamps[1].setColor(this.style.Signal.lamp.signalLampYellowColor);
|
|
|
|
}
|
2019-07-30 09:18:24 +08:00
|
|
|
} else if (this.count == 1 && this.model.lightType == '01' && this.model.switchLocateType == '02') { // 单灯 物理点灯 允许调车
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.lamps[0]) {
|
|
|
|
this.lamps[0].setStop(false);
|
|
|
|
// 出站信号机/阻隔信号机
|
|
|
|
if (['02', '06'].includes(this.model.useType)) {
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampGreenColor);
|
|
|
|
} else {
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampWhiteColor);
|
|
|
|
}
|
|
|
|
}
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 列车进路
|
|
|
|
trainRoute() {
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.count == 1) {
|
2019-07-16 18:37:49 +08:00
|
|
|
/** 单灯 列兼调信号*/
|
2019-07-23 18:21:49 +08:00
|
|
|
this.lamps[0] && this.lamps[0].setColor(this.style.Signal.lamp.signalLampYellowColor);
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 调车进路
|
|
|
|
shuntRoute() {
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.count == 1) {
|
2019-07-16 18:37:49 +08:00
|
|
|
/** 单灯 列兼调信号*/
|
|
|
|
/** 单灯 阻挡兼调车信号*/
|
2019-07-23 18:21:49 +08:00
|
|
|
this.lamps[0] && this.lamps[0].setColor(this.style.Signal.lamp.signalLampWhiteColor);
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 引导
|
|
|
|
guid() {
|
2019-07-30 09:18:24 +08:00
|
|
|
if (this.count == 2 && this.model.lightType == '01') { // 双灯 物理点灯 允许引导信号
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.lamps[0]) {
|
|
|
|
this.lamps[0].setStop(false);
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampRedColor);
|
|
|
|
}
|
|
|
|
if (this.lamps[1]) {
|
|
|
|
this.lamps[1].setStop(false);
|
|
|
|
this.lamps[1].setColor(this.style.Signal.lamp.signalLampYellowColor);
|
|
|
|
}
|
|
|
|
}
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 封锁
|
|
|
|
block() {
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.count == 1) {
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampRedColor);
|
|
|
|
// this.siglamp.setNameBorder(1)
|
|
|
|
}
|
2019-07-24 10:02:07 +08:00
|
|
|
this.sigName.setColor(this.style.Signal.signalTextBlockColor);
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 功能封锁
|
|
|
|
functionBlock() {
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.count == 1) {
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampRedColor);
|
|
|
|
// this.siglamp.setRectBlockByIndex(1, true);
|
|
|
|
}
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 信号保护区段监视状态显示
|
|
|
|
signalblock() {
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.count == 1) {
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampRedColor);
|
|
|
|
this.sigName.setColor(this.style.Signal.lamp.signalLampGreenColor);
|
|
|
|
}
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 故障
|
|
|
|
fault() {
|
2019-07-30 09:18:24 +08:00
|
|
|
if (this.count == 2 && this.model.lightType == '01') { // 双灯 物理点灯
|
2019-07-26 15:52:50 +08:00
|
|
|
if (this.lamps[0]) {
|
|
|
|
this.lamps[0].setStop(false);
|
|
|
|
this.lamps[0].setColor(this.style.Signal.lamp.signalLampBlueColor);
|
|
|
|
}
|
|
|
|
if (this.lamps[1]) {
|
|
|
|
this.lamps[1].setStop(false);
|
|
|
|
this.lamps[1].setColor(this.style.Signal.lamp.signalLampBlueColor);
|
|
|
|
}
|
|
|
|
}
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 物理点灯
|
|
|
|
logicalLight() {
|
2019-07-23 18:49:54 +08:00
|
|
|
this.lamps.forEach(lamp => { lamp.setStop(false); });
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 逻辑点灯
|
|
|
|
physicsLight() {
|
2019-07-23 18:49:54 +08:00
|
|
|
this.lamps.forEach(lamp => { lamp.setStop(true); });
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 设置自动进路模式状态类型
|
|
|
|
setAutoRouteOpen() {
|
|
|
|
if (this.model.linkageAutoRouteShow) {
|
2019-07-23 18:21:49 +08:00
|
|
|
this.sigAuto.show();
|
2019-07-16 18:37:49 +08:00
|
|
|
} else {
|
2019-07-23 18:21:49 +08:00
|
|
|
this.sigAuto.hide();
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
2019-07-23 18:21:49 +08:00
|
|
|
this.sigAuto.setColor(this.style.Signal.auto.signalAutoRoute);
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 信号机进路自动触发模式状态类型
|
|
|
|
setAutoAccessOpen() {
|
|
|
|
if (this.model.atsAutoTriggerShow) {
|
2019-07-23 18:21:49 +08:00
|
|
|
this.sigAuto.show();
|
2019-07-16 18:37:49 +08:00
|
|
|
} else {
|
2019-07-23 18:21:49 +08:00
|
|
|
this.sigAuto.hide();
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
2019-07-23 18:21:49 +08:00
|
|
|
this.sigAuto.setColor(this.style.Signal.auto.signalAutoTrigger);
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 设置自动信号模式状态类型
|
2019-07-23 18:49:54 +08:00
|
|
|
setAutoSignalOpen() {
|
2019-07-18 17:01:21 +08:00
|
|
|
this.sigRoute.show();
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 隐藏自动信号和自动进路
|
|
|
|
setAutoClose() {
|
2019-07-23 18:21:49 +08:00
|
|
|
this.sigAuto.hide();
|
|
|
|
this.sigAuto.setColor(this.style.backgroundColor);
|
2019-07-18 17:01:21 +08:00
|
|
|
this.sigRoute.hide();
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 自动信号和自动进路开始动画
|
|
|
|
setAutoFlicker() {
|
2019-07-23 18:21:49 +08:00
|
|
|
this.sigAuto.arrowsAnimation();
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 设置延时解锁
|
|
|
|
setDelayUnlock() {
|
|
|
|
this.sigDelay.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
// 恢复状态
|
|
|
|
recover() {
|
|
|
|
this.sigDelay.hide();
|
2019-07-23 18:21:49 +08:00
|
|
|
this.sigAuto.animationRecover();
|
2019-07-24 10:02:07 +08:00
|
|
|
this.sigName.setColor(this.style.Signal.text.signalDefaultTextColor);
|
2019-07-16 18:37:49 +08:00
|
|
|
}
|
|
|
|
|
2019-07-30 09:18:24 +08:00
|
|
|
setState(model) {
|
2019-07-16 18:37:49 +08:00
|
|
|
this.recover();
|
|
|
|
/** 设置状态 (点灯类型)*/
|
2019-07-30 09:18:24 +08:00
|
|
|
switch (model.status) {
|
2019-07-16 18:37:49 +08:00
|
|
|
case '01': this.close(); break; // 关闭
|
|
|
|
case '02': this.open(); break; // 开放
|
|
|
|
case '03': this.guid(); break; // 引导
|
|
|
|
case '04': this.block(); break; // 封锁
|
|
|
|
case '05': this.fault(); break; // 故障
|
|
|
|
case '06': this.block(); break; // 功能封锁
|
|
|
|
case '07': this.signalblock(); break; // 信号保护区段检测
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 进路性质类型*/
|
2019-07-30 09:18:24 +08:00
|
|
|
switch (model.natureType) {
|
2019-07-16 18:37:49 +08:00
|
|
|
case '01': this.trainRoute(); break; // 列车进路
|
|
|
|
case '02': this.shuntRoute(); break; // 调车进路
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 设置点灯类型*/
|
2019-07-30 09:18:24 +08:00
|
|
|
switch (model.lightType) {
|
2019-07-16 18:37:49 +08:00
|
|
|
case '01': this.logicalLight(); break; // 设置逻辑点灯
|
|
|
|
case '02': this.physicsLight(); break; // 设置物理点灯
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 设置自动类型*/
|
2019-07-30 09:18:24 +08:00
|
|
|
switch (model.autoType) {
|
2019-07-16 18:37:49 +08:00
|
|
|
case '01': this.setAutoClose(); break; // 隐藏 隐藏自动信号和自动进路
|
2019-07-23 18:49:54 +08:00
|
|
|
case '02': this.setAutoSignalOpen(); break; // 显示 设置自动信号模式状态类型
|
2019-07-16 18:37:49 +08:00
|
|
|
case '03': this.setAutoRouteOpen(); break; // 显示 设置自动进路模式状态类型
|
|
|
|
case '04': this.setAutoAccessOpen(); break; // 显示 信号机进路自动触发模式状态类型
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 延时解锁*/
|
2019-07-30 09:18:24 +08:00
|
|
|
model.delayType = '02';
|
|
|
|
switch (model.delayType) {
|
2019-07-16 18:37:49 +08:00
|
|
|
case '01': break; // 未延时解锁
|
|
|
|
case '02': break; // 人工闭塞延时解锁
|
|
|
|
case '03': break; // 自动闭塞延时解锁
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 信号机进路办理,先停止动画,再判断当前颜色是否闪烁*/
|
2019-07-30 09:18:24 +08:00
|
|
|
if (model.routeSetting && (model.autoType == '03' || model.autoType == '04')) {
|
2019-07-16 18:37:49 +08:00
|
|
|
this.setAutoFlicker();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
getShapeTipPoint(val) {
|
2019-07-26 15:52:50 +08:00
|
|
|
if (val == '1' || val == '2') {
|
2019-07-16 18:37:49 +08:00
|
|
|
// return this.sigButton.getShapeTipPoint(val);
|
|
|
|
} else {
|
|
|
|
// return this.siglamp.getShapeTipPoint(val);
|
|
|
|
}
|
2019-07-15 10:06:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-16 16:29:31 +08:00
|
|
|
export default Signal;
|