rt-sim-training-client/src/jmapNew/shape/Signal/ESigPost.js

118 lines
3.8 KiB
JavaScript
Raw Normal View History

2019-11-29 12:51:58 +08:00
import Polyline from 'zrender/src/graphic/shape/Polyline';
import Group from 'zrender/src/container/Group';
2020-04-08 18:38:08 +08:00
import Polygon from 'zrender/src/graphic/shape/Polygon';
2019-11-29 12:51:58 +08:00
class ESigPost extends Group {
constructor(model) {
super();
this.model = model;
this.create();
}
2019-11-29 12:51:58 +08:00
create() {
const model = this.model;
const style = this.model.style;
2020-03-19 18:39:20 +08:00
// 竖杆
this.ver = new Polyline({
_subType: 'SignalLamp',
_val: '3',
zlevel: model.zlevel,
z: model.z,
shape: {
points: [
[model.x, model.y + style.Signal.post.standardHeight * 1.2],
[model.x, model.y - style.Signal.post.standardHeight * 1.2]
]
},
style: {
lineWidth: style.Signal.post.standardWidth,
stroke: style.Signal.post.standardColor
}
});
2020-03-19 18:39:20 +08:00
// 横杆
this.hor = new Polyline({
zlevel: model.zlevel,
z: model.z,
shape: {
points: [
[model.x, model.y],
[model.x + model.drict * style.Signal.post.standardLength * 1.2, model.y]
]
},
style: {
lineWidth: style.Signal.post.standardWidth,
stroke: style.Signal.post.standardColor
}
});
2019-11-29 12:51:58 +08:00
this.add(this.ver);
this.add(this.hor);
2019-11-29 12:51:58 +08:00
model.type === '01' ? this.hor.hide() : this.hor.show();
if (style.Signal.post.standardShow) {
this.hor.show();
}
}
2019-11-29 12:51:58 +08:00
2020-03-19 18:39:20 +08:00
setColor(color) {
if (color) {
this.ver && this.ver.setStyle({ stroke: color });
this.hor && this.hor.setStyle({ stroke: color });
}
}
2020-04-08 18:38:08 +08:00
/* 灯柱变换为三角形并闪烁*/
2020-04-08 16:21:08 +08:00
setTerminalOptional() {
2020-04-08 18:38:08 +08:00
this.triangle = new Polygon({
zlevel: this.model.zlevel,
z: this.model.z,
shape: {
points: [
[this.model.x, this.model.y + this.model.style.Signal.post.standardHeight * 1.2],
[this.model.x, this.model.y - this.model.style.Signal.post.standardHeight * 1.2],
[this.model.x + this.model.drict * this.model.style.Signal.post.standardLength * 1.2, this.model.y]
]
},
style: {
fill: this.model.style.Signal.post.terminalOptional
}
});
this.add(this.triangle);
this.triangle.animateStyle(true)
.when(0, { fill: this.model.style.backgroundColor })
.when(1000, { fill: this.model.style.Signal.post.terminalOptional })
.when(2000, { fill: this.model.style.backgroundColor })
.start();
this.ver.hide();
this.hor.hide();
2020-04-29 11:36:16 +08:00
console.log('222222222222222', this.triangle);
2020-04-08 18:38:08 +08:00
}
/* 关闭闪烁三角形并还原灯柱 */
removeTerminalOptional() {
2020-04-29 11:36:16 +08:00
this.triangle && this.triangle.stopAnimation(false);
2020-04-08 18:38:08 +08:00
this.triangle && this.remove(this.triangle);
this.ver.show();
this.hor.show();
2020-04-08 16:21:08 +08:00
}
getLampPosition(type) {
const model = this.model;
const style = this.model.style;
if (style.Signal.post.standardShow) {
type = '01';
}
const length = style.Signal.post.standardShow ? 4 : 0;
if (type === '01') {
return {
x: model.x + model.drict * style.Signal.lamp.radiusR * 3 / 2 + model.drict * length,
y: model.y
};
} else {
return {
x: this.hor.shape.points[1][0] + model.drict * style.Signal.lamp.radiusR + model.drict * length,
y: this.hor.shape.points[1][1]
};
}
}
2019-11-29 12:51:58 +08:00
}
export default ESigPost;