150 lines
5.2 KiB
Go
150 lines
5.2 KiB
Go
package message_server
|
|
|
|
import (
|
|
"fmt"
|
|
"joylink.club/bj-rtsts-server/dto/data_proto"
|
|
"time"
|
|
|
|
"joylink.club/bj-rtsts-server/dto/state_proto"
|
|
"joylink.club/bj-rtsts-server/message_server/ms_api"
|
|
"joylink.club/bj-rtsts-server/mqtt"
|
|
"joylink.club/bj-rtsts-server/ts/simulation/wayside/memory"
|
|
"joylink.club/ecs"
|
|
"joylink.club/rtsssimulation/component"
|
|
"joylink.club/rtsssimulation/entity"
|
|
)
|
|
|
|
// 综合后备盘IBP消息服务
|
|
func NewIBPMs(vs *memory.VerifySimulation, mapId int32) ms_api.MsgTask {
|
|
mapData := memory.QueryGiData[*data_proto.RtssGraphicStorage](mapId)
|
|
return ms_api.NewScheduleTask(fmt.Sprintf("地图[%d]综合后备盘IBP", mapId), func() error {
|
|
for _, station := range mapData.Stations {
|
|
sid := memory.GetMapElementId(station.Common)
|
|
stationIbpState, err := collectStationIbpState(mapId, vs.World, station)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
mqtt.GetMsgClient().PubIBPState(vs.SimulationId, mapId, sid, stationIbpState)
|
|
}
|
|
return nil
|
|
}, 200*time.Millisecond)
|
|
}
|
|
|
|
func collectStationIbpState(mapId int32, world ecs.World, station *data_proto.Station) (*state_proto.PushedDevicesStatus, error) {
|
|
if station.RefIbpMapCode == "" {
|
|
return nil, nil
|
|
}
|
|
sid := memory.GetMapElementId(station.Common)
|
|
stationUid := memory.QueryUidByMidAndComId(mapId, sid, &data_proto.Station{})
|
|
ibpMapId, ibpStorage := memory.QueryGiDataByName[*data_proto.IBPGraphicStorage](station.RefIbpMapCode)
|
|
ibpUidsMap := memory.QueryUidStructure[*memory.IBPUidStructure](ibpMapId)
|
|
buttonStates, err := collectIBPButtonState(world, stationUid, ibpUidsMap, ibpStorage.IbpButtons)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
alarmStates, err := collectIBPAlarmState(world, stationUid, ibpUidsMap, ibpStorage.IbpAlarms)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
lightStates, err := collectIBPLightState(world, stationUid, ibpUidsMap, ibpStorage.IbpLights)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
keyStates, err := collectIBPKeyState(world, stationUid, ibpUidsMap, ibpStorage.IbpKeys)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &state_proto.PushedDevicesStatus{
|
|
All: true,
|
|
AllStatus: &state_proto.AllDevicesStatus{
|
|
ButtonState: buttonStates,
|
|
AlarmState: alarmStates,
|
|
LightState: lightStates,
|
|
KeyState: keyStates,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
// 收集IBP按钮状态
|
|
func collectIBPButtonState(world ecs.World, stationUid string, uidsMap *memory.IBPUidStructure, ibpButtons []*data_proto.IBPButton) ([]*state_proto.ButtonState, error) {
|
|
var states []*state_proto.ButtonState
|
|
for _, data := range ibpButtons { // 按钮
|
|
did := memory.GetMapElementId(data.Common)
|
|
uid := stationUid + "_" + uidsMap.IbpButtonIds[did].Uid
|
|
entry, ok := entity.GetEntityByUid(world, uid)
|
|
if !ok {
|
|
continue
|
|
}
|
|
if entry.HasComponent(component.ButtonTag) {
|
|
states = append(states, getIBPButtonState(did, entry))
|
|
}
|
|
}
|
|
return states, nil
|
|
}
|
|
|
|
// 获取IBP盘按钮状态
|
|
func getIBPButtonState(id uint32, entry *ecs.Entry) *state_proto.ButtonState {
|
|
status := &state_proto.ButtonState{Id: id}
|
|
bit := component.BitStateType.Get(entry)
|
|
status.Down = bit.Val
|
|
//status.Bypass = bit.BypassEnable
|
|
// 如果按钮包含灯
|
|
if entry.HasComponent(component.SingleLightType) {
|
|
lightComponent := component.SingleLightType.Get(entry)
|
|
status.Active = component.BitStateType.Get(lightComponent.Light).Val
|
|
}
|
|
return status
|
|
}
|
|
|
|
// 收集报警器状态
|
|
func collectIBPAlarmState(world ecs.World, stationUid string, uidsMap *memory.IBPUidStructure, ibpAlarms []*data_proto.IbpAlarm) ([]*state_proto.AlarmState, error) {
|
|
var states []*state_proto.AlarmState
|
|
for _, data := range ibpAlarms { // 报警器
|
|
did := memory.GetMapElementId(data.Common)
|
|
uid := stationUid + "_" + uidsMap.IbpAlarmIds[did].Uid
|
|
entry, ok := entity.GetEntityByUid(world, uid)
|
|
if !ok {
|
|
continue
|
|
}
|
|
if entry.HasComponent(component.AlarmTag) {
|
|
states = append(states, &state_proto.AlarmState{Id: did, Active: component.BitStateType.Get(entry).Val})
|
|
}
|
|
}
|
|
return states, nil
|
|
}
|
|
|
|
// 收集灯状态信息
|
|
func collectIBPLightState(world ecs.World, stationUid string, uidsMap *memory.IBPUidStructure, ibpLights []*data_proto.IbpLight) ([]*state_proto.LightState, error) {
|
|
var states []*state_proto.LightState
|
|
for _, data := range ibpLights { // 指示灯
|
|
did := memory.GetMapElementId(data.Common)
|
|
uid := stationUid + "_" + uidsMap.IbpLightIds[did].Uid
|
|
entry, ok := entity.GetEntityByUid(world, uid)
|
|
if !ok {
|
|
continue
|
|
}
|
|
if entry.HasComponent(component.LightTag) {
|
|
states = append(states, &state_proto.LightState{Id: did, Active: component.BitStateType.Get(entry).Val})
|
|
}
|
|
}
|
|
return states, nil
|
|
}
|
|
|
|
// 收集钥匙状态
|
|
func collectIBPKeyState(world ecs.World, stationUid string, uidsMap *memory.IBPUidStructure, ibpKeys []*data_proto.IbpKey) ([]*state_proto.KeyState, error) {
|
|
var states []*state_proto.KeyState
|
|
for _, data := range ibpKeys { // 钥匙
|
|
did := memory.GetMapElementId(data.Common)
|
|
uid := stationUid + "_" + uidsMap.IbpKeyIds[did].Uid
|
|
entry, ok := entity.GetEntityByUid(world, uid)
|
|
if !ok {
|
|
continue
|
|
}
|
|
if entry.HasComponent(component.KeyTag) {
|
|
gearState := component.GearStateType.Get(entry)
|
|
states = append(states, &state_proto.KeyState{ /*Bypass: gearState.BypassEnable,*/ Id: did, Gear: gearState.Val})
|
|
}
|
|
}
|
|
return states, nil
|
|
}
|