rts-sim-module/fi/signal_3xh3.go

77 lines
2.1 KiB
Go
Raw Normal View History

2023-10-09 16:22:29 +08:00
package fi
import (
"joylink.club/ecs"
"joylink.club/rtsssimulation/component"
"joylink.club/rtsssimulation/entity"
)
// signal 3xh3 接口:点灯操作、开通列车信号、开通引导信号、开通禁止信号
2023-10-09 17:58:29 +08:00
// DriveSignal3XH3Dd 点灯操作
2023-10-09 16:22:29 +08:00
// dd : true-物理点灯false-物理灭灯
2023-10-09 17:58:29 +08:00
func DriveSignal3XH3Dd(w ecs.World, signalId string, dd bool) {
2023-10-09 16:22:29 +08:00
w.Execute(func() {
wd := entity.GetWorldData(w)
signalEntry, ok := wd.EntityMap[signalId]
if ok {
state := component.Signal3XH3ElectronicType.Get(signalEntry)
driveDd := component.RelayDriveType.Get(state.Z3XH3_DDJ)
//点灯继电器落下时才点灯
driveDd.Td = !dd
driveDd.Xq = !dd
}
})
}
2023-10-09 17:58:29 +08:00
// DriveSignal3XH3Lx 开通列车信号(黄灯亮)
func DriveSignal3XH3Lx(w ecs.World, signalId string) {
2023-10-09 16:22:29 +08:00
w.Execute(func() {
wd := entity.GetWorldData(w)
signalEntry, ok := wd.EntityMap[signalId]
if ok {
state := component.Signal3XH3ElectronicType.Get(signalEntry)
driveLx := component.RelayDriveType.Get(state.Z3XH3_LXJ)
driveLx.Td = true
driveLx.Xq = true
driveYx := component.RelayDriveType.Get(state.Z3XH3_YXJ)
driveYx.Td = false
driveYx.Xq = false
}
})
}
2023-10-09 17:58:29 +08:00
// DriveSignal3XH3Yx 开通引导信号(黄灯亮且红灯亮)
func DriveSignal3XH3Yx(w ecs.World, signalId string) {
2023-10-09 16:22:29 +08:00
w.Execute(func() {
wd := entity.GetWorldData(w)
signalEntry, ok := wd.EntityMap[signalId]
if ok {
state := component.Signal3XH3ElectronicType.Get(signalEntry)
driveLx := component.RelayDriveType.Get(state.Z3XH3_LXJ)
driveLx.Td = false
driveLx.Xq = false
driveYx := component.RelayDriveType.Get(state.Z3XH3_YXJ)
driveYx.Td = true
driveYx.Xq = true
}
})
}
2023-10-09 17:58:29 +08:00
// DriveSignal3XH3Non 开通禁止信号(红灯亮)
func DriveSignal3XH3Non(w ecs.World, signalId string) {
2023-10-09 16:22:29 +08:00
w.Execute(func() {
wd := entity.GetWorldData(w)
signalEntry, ok := wd.EntityMap[signalId]
if ok {
state := component.Signal3XH3ElectronicType.Get(signalEntry)
driveLx := component.RelayDriveType.Get(state.Z3XH3_LXJ)
driveLx.Td = false
driveLx.Xq = false
driveYx := component.RelayDriveType.Get(state.Z3XH3_YXJ)
driveYx.Td = false
driveYx.Xq = false
}
})
}