rt-sim-training-client/src/jmapNew/shape/StationStand/index.js

554 lines
21 KiB
JavaScript
Raw Normal View History

2019-11-29 12:51:58 +08:00
/**/
import Group from 'zrender/src/container/Group';
import ETime from './ETime';
import ELevel from './ELevel';
import EReentry from './EReentry';
import EDetain from './EDetain';
import ESafeStand from './ESafeStand';
import ESafeEmergent from './ESafeEmergent';
import EMouse from './EMouse';
import EJump from './EJump';
import EHighlight from '../element/EHighlight';
import ETrainStop from './ETrainStop';
import ETrainDepart from './ETrainDepart';
2020-03-05 18:17:47 +08:00
import EControl from '../element/EControl';
2020-03-11 15:10:08 +08:00
import {isShowThePrdType} from '../../utils/handlePath';
2019-11-29 12:51:58 +08:00
class StationStand extends Group {
constructor(model, style) {
super();
this._code = model.code;
this._type = model._type;
this.model = model;
this.style = style;
this.zlevel = model.zlevel;
this.z = 1;
2020-03-13 13:01:58 +08:00
this.isShowShape = true;
2019-11-29 12:51:58 +08:00
this.doors = new Group();
this.create();
this.createMouseEvent();
2020-03-11 15:10:08 +08:00
if (isShowThePrdType(model.prdType, style.StationStand.common.functionButtonShow) || model.previewOrMapDraw) {
2020-03-06 11:26:52 +08:00
this.createFunctionButton();
}
2020-03-11 15:10:08 +08:00
if (model.previewOrMapDraw) {
this.setShowMode();
}
2019-11-29 12:51:58 +08:00
this.setVisible(model.visible);
this.setState(model);
this.checkIsDrawMap();
2019-11-29 12:51:58 +08:00
}
create() {
const model = this.model;
const style = this.style;
const drict = 1;
2019-11-29 12:51:58 +08:00
/** 列车站台*/
const standX = model.position.x - model.width / 2;
const standY = model.position.y - model.height / 2;
2019-11-29 12:51:58 +08:00
this.safeStand = new ESafeStand({
zlevel: this.zlevel,
z: this.z,
style: style,
x: standX,
y: standY,
name: model.name,
inside: model.inside,
2020-02-04 11:25:21 +08:00
right: model.right,
2019-11-29 12:51:58 +08:00
width: model.width,
height: model.height
});
this.add(this.safeStand);
/** 站台紧急关闭*/
2020-03-27 17:26:17 +08:00
const emergentOffset = model.inside ? style.StationStand.standEmergent.insideOffset : style.StationStand.standEmergent.outsideOffset;
const emergentH = model.right ? 1 : -1;
const emergentX = model.position.x + emergentH * emergentOffset.x;
const emergentY = model.position.y + emergentH * emergentOffset.y;
this.emergent = new ESafeEmergent({
zlevel: this.zlevel,
z: this.z + 1,
style: style,
inside: model.inside,
2020-02-04 11:25:21 +08:00
right: model.right,
width: model.width,
x: emergentX,
y: emergentY,
r: style.StationStand.standEmergent.mergentR,
n: 4
});
this.add(this.emergent);
2019-11-29 12:51:58 +08:00
// 列车停站
2020-03-30 09:47:26 +08:00
if (style.StationStand.trainStop.insideOffset) {
2020-03-30 15:27:13 +08:00
const stopTrainOffset = model.inside ? style.StationStand.trainStop.insideOffset : style.StationStand.trainStop.outsideOffset;
const stopTrainH = model.right ? 1 : -1;
const stopX = model.position.x + stopTrainH * stopTrainOffset.x;
const stopY = model.position.y + stopTrainH * stopTrainOffset.y;
if (style.StationStand.trainStop.insideOffset) {
this.trainStop = new ETrainStop({
zlevel: this.zlevel,
z: this.z + 1,
style: style,
x: stopX,
y: stopY
});
this.add(this.trainStop);
}
}
// 列车出发
if (style.StationStand.trainDepart.insideOffset) {
const trainDepartOffset = model.inside ? style.StationStand.trainDepart.insideOffset : style.StationStand.trainDepart.outsideOffset;
const trainDepartH = model.right ? 1 : -1;
const departX = model.position.x + trainDepartH * trainDepartOffset.x;
const departY = model.position.y + trainDepartH * trainDepartOffset.y;
this.trainDepart = new ETrainDepart({
2020-03-30 09:47:26 +08:00
zlevel: this.zlevel,
z: this.z + 1,
style: style,
2020-03-30 15:27:13 +08:00
width: model.width,
x: departX,
y: departY
2020-03-30 09:47:26 +08:00
});
2020-03-30 15:27:13 +08:00
this.add(this.trainDepart);
2020-03-30 09:47:26 +08:00
}
/** 站台折返策略*/
2020-03-27 11:35:46 +08:00
if (style.StationStand.reentry.offset) {
const reentryH = style.StationStand.standEmergent.mergentR;
const reentryX = model.position.x - (style.StationStand.reentry.position || drict) * (style.StationStand.reentry.offset.x - model.width / 2);
const reentryY = model.position.y + (style.StationStand.reentry.position || drict) * (style.StationStand.reentry.offset.y) + drict * reentryH;
this.reentry = new EReentry({
zlevel: this.zlevel,
z: this.z + 1,
style: style,
drict: drict,
x: reentryX,
y: reentryY,
lineWidth: 0,
fill: style.StationStand.reentry.noHumanColor
});
this.add(this.reentry);
}
2019-11-29 12:51:58 +08:00
/** 站台扣车*/
const detainD = model.right ? 1 : -1;
2020-04-02 09:48:55 +08:00
const detainX = model.position.x - style.StationStand.detainCar.position * detainD * (style.StationStand.detainCar.offset.x - model.width / 2);
const detainY = model.position.y + detainD * (style.StationStand.detainCar.offset.y - model.height / 2);
this.detain = new EDetain({
zlevel: this.zlevel,
z: this.z,
style: style,
x: detainX,
y: detainY,
width: model.width,
inside: model.inside,
2020-03-26 15:04:52 +08:00
right: model.right
});
this.add(this.detain);
2019-11-29 12:51:58 +08:00
/** 停站时间*/
2020-03-27 10:17:24 +08:00
if (style.StationStand.stopTime.offset) {
const timeDrict = model.right ? 1 : -1;
2020-04-02 09:48:55 +08:00
const timeX = model.position.x + style.StationStand.stopTime.position * timeDrict * (style.StationStand.stopTime.offset.x - model.width / 2);
const timeY = model.position.y + timeDrict * (style.StationStand.stopTime.offset.y - model.height / 2);
2020-03-27 10:17:24 +08:00
this.time = new ETime({
zlevel: this.zlevel,
z: this.z + 1,
style: style,
x: timeX,
y: timeY,
name: model.parkingTime || '30'
});
this.add(this.time);
}
/** 运行等级*/
2020-02-17 17:50:15 +08:00
const levelDrict = model.right ? 1 : -1;
const levelX = model.position.x - levelDrict * (style.StationStand.level.offset.x - model.width / 2);
const levelY = model.position.y + levelDrict * (style.StationStand.level.offset.y);
this.level = new ELevel({
zlevel: this.zlevel,
z: this.z + 1,
style: style,
x: levelX,
y: levelY,
name: model.runLevelTime || '5'
});
this.add(this.level);
2019-11-29 12:51:58 +08:00
/** 列车停跳 */
if (style.StationStand.common.haveJumpShow) {
2020-02-17 17:50:15 +08:00
const jumpDirct = model.right ? -1 : 1;
2020-04-02 09:48:55 +08:00
const jumpX = model.position.x - jumpDirct * style.StationStand.jump.position * (style.StationStand.jump.offset.x - model.width / 2);
2020-03-26 15:04:52 +08:00
const jumpY = model.position.y + jumpDirct * style.StationStand.jump.offset.y;
2020-04-02 09:48:55 +08:00
const jumpCX = model.position.x - jumpDirct * style.StationStand.jump.position * (style.StationStand.jump.offset.x - model.width / 2);
2020-02-17 17:50:15 +08:00
const jumpCY = model.position.y + jumpDirct * style.StationStand.jump.offset.y;
this.jump = new EJump({
2019-11-29 12:51:58 +08:00
zlevel: this.zlevel,
z: this.z + 1,
style: style,
x: jumpX,
y: jumpY,
cx: jumpCX,
cy: jumpCY,
2020-03-07 19:12:19 +08:00
width: model.width,
inside: model.inside,
2020-03-26 15:04:52 +08:00
right: model.right
2019-11-29 12:51:58 +08:00
});
this.add(this.jump);
2019-11-29 12:51:58 +08:00
}
}
createMouseEvent() {
if (this.style.StationStand.mouseOverStyle) {
this.mouseEvent = new EMouse(this);
this.add(this.mouseEvent);
this.on('mouseout', (e) => { this.mouseEvent.mouseout(e); });
this.on('mouseover', (e) => { this.mouseEvent.mouseover(e); });
}
}
2020-03-26 15:04:52 +08:00
createFunctionButton() {
2020-03-06 10:05:21 +08:00
const model = this.model;
const style = this.style;
if (model.stopJumpLamp) {
this.stopJumpLampButton = new EControl({
zlevel: this.zlevel,
z: this.z,
arc: {
shape: {
cx: model.stopJumpLampPoint.x,
cy: model.stopJumpLampPoint.y,
r: style.Station.lamp.radiusR
},
subType: 'StopJumpLamp',
2020-03-06 10:05:21 +08:00
lineWidth: 0,
fill: style.StationStand.lamp.lampColor
},
text: {
position: [0, 0],
x: model.stopJumpLampPoint.x,
y: model.stopJumpLampPoint.y + style.StationStand.lamp.radiusR + style.StationStand.text.distance,
fontWeight: style.StationStand.text.fontWeight,
fontSize: style.StationStand.text.fontSize,
fontFamily: style.fontFamily,
text: '跳停',
textFill: '#fff',
textAlign: 'middle',
textVerticalAlign: 'top'
},
style: this.style
});
this.add(this.stopJumpLampButton);
}
if (model.cancelStopJumpLamp) {
this.cancelStopJumpLampButton = new EControl({
zlevel: this.zlevel,
z: this.z,
arc: {
shape: {
cx: model.cancelStopJumpLampPoint.x,
cy: model.cancelStopJumpLampPoint.y,
r: style.Station.lamp.radiusR
},
subType: 'CancelStopJumpLamp',
2020-03-06 10:05:21 +08:00
lineWidth: 0,
fill: style.StationStand.lamp.lampColor
},
text: {
position: [0, 0],
x: model.cancelStopJumpLampPoint.x,
y: model.cancelStopJumpLampPoint.y + style.StationStand.lamp.radiusR + style.StationStand.text.distance,
fontWeight: style.StationStand.text.fontWeight,
fontSize: style.StationStand.text.fontSize,
fontFamily: style.fontFamily,
text: '取消跳停',
textFill: '#fff',
textAlign: 'middle',
textVerticalAlign: 'top'
},
style: this.style
});
this.add(this.cancelStopJumpLampButton);
}
if (model.upDetainLamp) {
this.upDetainLampButton = new EControl({
zlevel: this.zlevel,
z: this.z,
arc: {
shape: {
cx: model.upDetainLampPoint.x,
cy: model.upDetainLampPoint.y,
r: style.Station.lamp.radiusR
},
subType: 'UpDetainLamp',
2020-03-06 10:05:21 +08:00
lineWidth: 0,
fill: style.StationStand.lamp.lampColor
},
text: {
position: [0, 0],
x: model.upDetainLampPoint.x,
y: model.upDetainLampPoint.y + style.StationStand.lamp.radiusR + style.StationStand.text.distance,
fontWeight: style.StationStand.text.fontWeight,
fontSize: style.StationStand.text.fontSize,
fontFamily: style.fontFamily,
text: '上行扣车',
textFill: '#fff',
textAlign: 'middle',
textVerticalAlign: 'top'
},
style: this.style
});
this.add(this.upDetainLampButton);
}
if (model.downDetainLamp) {
this.downDetainLampButton = new EControl({
zlevel: this.zlevel,
z: this.z,
arc: {
shape: {
cx: model.downDetainLampPoint.x,
cy: model.downDetainLampPoint.y,
r: style.Station.lamp.radiusR
},
subType: 'DownDetainLamp',
2020-03-06 10:05:21 +08:00
lineWidth: 0,
fill: style.StationStand.lamp.lampColor
},
text: {
position: [0, 0],
x: model.downDetainLampPoint.x,
y: model.downDetainLampPoint.y + style.StationStand.lamp.radiusR + style.StationStand.text.distance,
fontWeight: style.StationStand.text.fontWeight,
fontSize: style.StationStand.text.fontSize,
fontFamily: style.fontFamily,
2020-03-10 11:16:53 +08:00
text: '下行扣车',
2020-03-06 10:05:21 +08:00
textFill: '#fff',
textAlign: 'middle',
textVerticalAlign: 'top'
},
style: this.style
});
this.add(this.downDetainLampButton);
}
2020-03-05 18:17:47 +08:00
}
2019-11-29 12:51:58 +08:00
setVisible(visible) {
if (visible) {
this.eachChild(elem => { elem.show(); });
} else {
this.eachChild(elem => { elem.hide(); });
}
}
/** 恢复初始状态*/
recover() {
2020-03-27 17:26:17 +08:00
this.time && this.time.hideMode();
this.level && this.level.hideMode();
this.detain && this.detain.hideMode();
this.emergent && this.emergent.hideMode();
2020-03-30 09:47:26 +08:00
this.trainStop && this.trainStop.hideMode(); // 列车停站
2020-03-30 14:22:57 +08:00
this.trainDepart && this.trainDepart.hideMode();
2020-03-27 17:26:17 +08:00
this.reentry && this.reentry.hideMode();
this.jump && this.jump.hideMode();
2019-11-29 12:51:58 +08:00
}
/** 空闲*/
spare() {
if (!this.style.StationStand.common.special) {
this.safeStand && this.safeStand.setColor(this.style.StationStand.stand.spareColor);
}
2019-11-29 12:51:58 +08:00
}
/** 列车停站*/
stop() {
if (!this.style.StationStand.common.special) {
this.safeStand && this.safeStand.setColor(this.style.StationStand.stand.stopColor);
2020-02-17 17:50:15 +08:00
} else {
2020-03-30 09:47:26 +08:00
this.trainStop && this.trainStop.showMode();
2020-03-30 14:22:57 +08:00
this.trainDepart && this.trainDepart.showMode();
2020-02-19 16:19:37 +08:00
}
2019-11-29 12:51:58 +08:00
}
/** 站台紧急关闭*/
emergentClose() {
if (!this.style.StationStand.common.special) {
this.safeStand && this.safeStand.setColor(this.style.StationStand.stand.spareColor);
}
2020-03-27 17:26:17 +08:00
this.emergent && this.emergent.showMode();
2020-02-17 17:50:15 +08:00
if (this.style.StationStand.standEmergent.flicker) {
this.emergent.getElement().animateStyle(true)
.when(0, { fill: this.style.backgroundColor })
.when(1000, { fill: this.style.StationStand.standEmergent.closeColor })
.when(2000, { fill: this.style.backgroundColor })
.start();
}
2019-11-29 12:51:58 +08:00
}
/** 指定列车跳站*/
designatedJumpStop() {
this.safeStand && this.safeStand.setColor(this.style.StationStand.stand.designatedJumpStopColor);
2020-03-27 17:26:17 +08:00
this.jump && this.jump.showMode(0);
2019-11-29 12:51:58 +08:00
}
/** 站台跳停*/
jumpStop() {
2019-11-29 12:51:58 +08:00
this.safeStand && this.safeStand.setColor(this.style.StationStand.stand.jumpStopColor);
2020-03-27 17:26:17 +08:00
this.jump && this.jump.showMode(1);
2019-11-29 12:51:58 +08:00
}
/** 车站扣车*/
standDetainTrain() {
2020-03-27 17:26:17 +08:00
this.detain && this.detain.showMode();
2019-11-29 12:51:58 +08:00
this.detain && this.detain.setColor(this.style.StationStand.detainCar.detainTrainTextColor);
}
/** 中心扣车*/
centerDetainTrain() {
2020-03-27 17:26:17 +08:00
this.detain && this.detain.showMode();
2019-11-29 12:51:58 +08:00
this.detain && this.detain.setColor(this.style.StationStand.detainCar.centerTrainColor);
}
/** 中心+车站扣车*/
standAndCenterDetainTrain() {
2020-03-27 17:26:17 +08:00
this.detain && this.detain.showMode();
2019-11-29 12:51:58 +08:00
this.detain && this.detain.setColor(this.style.StationStand.detainCar.andCenterTrainColor);
}
/** 人工设置停战时间*/
setManuallyArmisticeTime(val) {
2020-03-27 17:26:17 +08:00
this.time && this.time.showMode();
2019-11-29 12:51:58 +08:00
this.time && this.time.setName(val);
}
/** 人工设置运行等级*/
setManuallyOperationLevel(val) {
2020-03-27 17:26:17 +08:00
this.level && this.level.showMode();
2019-11-29 12:51:58 +08:00
this.level && this.level.setName(val);
}
/** 无折返(默认)*/
noReentry() {
2020-03-27 17:26:17 +08:00
this.reentry && this.reentry.hideMode();
2019-11-29 12:51:58 +08:00
}
/** 无人折返*/
noHumanReentry() {
2020-03-27 17:26:17 +08:00
this.reentry && this.reentry.showMode();
2019-11-29 12:51:58 +08:00
this.reentry && this.reentry.setColor(this.style.StationStand.reentry.noHumanColor);
}
/** 自动换端*/
autoChangeEnds() {
2020-03-27 17:26:17 +08:00
this.reentry && this.reentry.showMode();
2019-11-29 12:51:58 +08:00
this.reentry && this.reentry.setColor(this.style.StationStand.reentry.autoChangeEndsColor);
}
setState(model) {
2020-03-13 13:01:58 +08:00
if (!this.isShowShape) return;
// 新版地图使用新版状态变更方式
2019-11-29 12:51:58 +08:00
this.recover();
model.free && this.spare(); /** 空闲*/
model.trainParking && this.stop(); /** 列车停站*/
model.emergencyClosed && this.emergentClose(); /** 站台紧急关闭*/
2019-11-29 12:51:58 +08:00
if (Number(model.parkingTime) > 0) {
this.setManuallyArmisticeTime(model.parkingTime); // 设置站台停车时间
2019-11-29 12:51:58 +08:00
}
if (Number(model.runLevelTime) > 0) {
this.setManuallyOperationLevel(model.runLevelTime); // 设置站台间运行等级
2019-11-29 12:51:58 +08:00
}
/** 设置跳停*/
2020-03-07 19:12:19 +08:00
model.assignSkip && this.designatedJumpStop(); // 指定列车跳停
model.allSkip && this.jumpStop(); // 站台全部跳停
2019-11-29 12:51:58 +08:00
/** 设置扣车*/
if (model.stationHoldTrain && model.centerHoldTrain) {
this.standAndCenterDetainTrain(); // 中心+车站扣车
} else if (model.stationHoldTrain) {
this.standDetainTrain(); // 车站扣车
} else if (model.centerHoldTrain) {
this.centerDetainTrain(); // 中心扣车
2019-11-29 12:51:58 +08:00
}
/** 设置折返策略*/
switch (model.reentryStrategy) {
2020-02-04 15:43:58 +08:00
case '04': /** 默认*/
case '01':
this.noReentry(); /** 无折返策略*/
break;
case '02':
this.noHumanReentry(); /** 无人折返*/
break;
case '03':
this.autoChangeEnds(); /** 自动换端*/
break;
2019-11-29 12:51:58 +08:00
}
}
getBoundingRect() {
const rect = this.safeStand.getBoundingRect().clone();
2019-11-29 12:51:58 +08:00
return rect;
}
getShapeTipPoint() {
const rect = this.getBoundingRect();
if (rect) {
return {
x: rect.x + rect.width / 2,
y: rect.y
};
}
return null;
}
drawSelected(selected) {
this.highlight && this.highlight.drawSelected(selected);
}
checkIsDrawMap() {
const path = window.location.href;
if (path.includes('/map/draw')) {
this.highlight = new EHighlight(this);
this.add(this.highlight);
this.on('mouseout', () => { this.highlight.mouseout(); });
this.on('mouseover', () => { this.highlight.mouseover(); });
}
}
2020-03-11 15:10:08 +08:00
// 设置显示模式
setShowMode() {
const showMode = this.model.showMode;
const showConditions = this.style.StationStand.common.functionButtonShow;
if (!showConditions || showConditions === '01' || showMode === showConditions) {
this.stopJumpLampButton && this.stopJumpLampButton.show();
this.cancelStopJumpLampButton && this.cancelStopJumpLampButton.show();
this.upDetainLampButton && this.upDetainLampButton.show();
this.downDetainLampButton && this.downDetainLampButton.show();
2020-03-11 15:10:08 +08:00
this.upDetainLamp && this.upDetainLamp.show();
this.downDetainLamp && this.downDetainLamp.show();
} else {
this.stopJumpLampButton && this.stopJumpLampButton.hide();
this.cancelStopJumpLampButton && this.cancelStopJumpLampButton.hide();
this.upDetainLampButton && this.upDetainLampButton.hide();
this.downDetainLampButton && this.downDetainLampButton.hide();
2020-03-11 15:10:08 +08:00
this.upDetainLamp && this.upDetainLamp.hide();
this.downDetainLamp && this.downDetainLamp.hide();
}
}
2020-03-13 13:01:58 +08:00
setShowStation(stationCode) {
if (!stationCode || this.model.deviceStationCode === stationCode) {
this.eachChild(item => {
item.show();
});
this.isShowShape = true;
this.setState(this.model);
} else {
this.eachChild(item => {
item.hide();
});
this.isShowShape = false;
}
}
2019-11-29 12:51:58 +08:00
}
export default StationStand;