2023-10-26 16:41:18 +08:00
|
|
|
package message_server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"joylink.club/bj-rtsts-server/message_server/ms_api"
|
2023-12-20 10:37:54 +08:00
|
|
|
"joylink.club/bj-rtsts-server/mqtt"
|
2023-10-26 17:16:07 +08:00
|
|
|
"joylink.club/bj-rtsts-server/ts/protos/graphicData"
|
|
|
|
"joylink.club/bj-rtsts-server/ts/protos/state"
|
|
|
|
"joylink.club/bj-rtsts-server/ts/simulation/wayside/memory"
|
2023-10-27 14:57:37 +08:00
|
|
|
"joylink.club/ecs"
|
|
|
|
"joylink.club/rtsssimulation/component"
|
|
|
|
"joylink.club/rtsssimulation/entity"
|
2023-10-26 16:41:18 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// 综合后备盘IBP消息服务
|
2023-12-20 10:37:54 +08:00
|
|
|
func NewIBPMs(vs *memory.VerifySimulation, mapId int32) ms_api.MsgTask {
|
|
|
|
mapData := memory.QueryGiData[*graphicData.RtssGraphicStorage](mapId)
|
|
|
|
return ms_api.NewScheduleTask("综合后备盘IBP", 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.PubIBPState(vs.SimulationId, mapId, sid, stationIbpState)
|
2023-10-26 16:41:18 +08:00
|
|
|
}
|
2023-12-20 10:37:54 +08:00
|
|
|
return nil
|
|
|
|
}, 200*time.Millisecond)
|
2023-10-26 16:41:18 +08:00
|
|
|
}
|
|
|
|
|
2023-12-20 10:37:54 +08:00
|
|
|
func collectStationIbpState(mapId int32, world ecs.World, station *graphicData.Station) (*state.PushedDevicesStatus, error) {
|
2023-10-27 14:57:37 +08:00
|
|
|
if station.RefIbpMapCode == "" {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2023-12-13 15:05:42 +08:00
|
|
|
sid := memory.GetMapElementId(station.Common)
|
2023-12-20 10:37:54 +08:00
|
|
|
stationUid := memory.QueryUidByMidAndComId(mapId, sid, &graphicData.Station{})
|
2023-12-15 17:02:42 +08:00
|
|
|
ibpMapId, ibpStorage := memory.QueryGiDataByName[*graphicData.IBPGraphicStorage](station.RefIbpMapCode)
|
2023-12-07 10:17:48 +08:00
|
|
|
ibpUidsMap := memory.QueryUidStructure[*memory.IBPUidStructure](ibpMapId)
|
2023-12-20 10:37:54 +08:00
|
|
|
buttonStates, err := collectIBPButtonState(world, stationUid, ibpUidsMap, ibpStorage.IbpButtons)
|
2023-10-27 14:57:37 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-12-20 10:37:54 +08:00
|
|
|
alarmStates, err := collectIBPAlarmState(world, stationUid, ibpUidsMap, ibpStorage.IbpAlarms)
|
2023-10-27 14:57:37 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-12-20 10:37:54 +08:00
|
|
|
lightStates, err := collectIBPLightState(world, stationUid, ibpUidsMap, ibpStorage.IbpLights)
|
2023-10-27 14:57:37 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-12-20 10:37:54 +08:00
|
|
|
keyStates, err := collectIBPKeyState(world, stationUid, ibpUidsMap, ibpStorage.IbpKeys)
|
2023-10-27 14:57:37 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &state.PushedDevicesStatus{
|
|
|
|
All: true,
|
|
|
|
AllStatus: &state.AllDevicesStatus{
|
|
|
|
ButtonState: buttonStates,
|
|
|
|
AlarmState: alarmStates,
|
|
|
|
LightState: lightStates,
|
|
|
|
KeyState: keyStates,
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 收集IBP按钮状态
|
2023-12-20 10:37:54 +08:00
|
|
|
func collectIBPButtonState(world ecs.World, stationUid string, uidsMap *memory.IBPUidStructure, ibpButtons []*graphicData.IBPButton) ([]*state.ButtonState, error) {
|
2023-10-27 14:57:37 +08:00
|
|
|
var states []*state.ButtonState
|
|
|
|
for _, data := range ibpButtons { // 按钮
|
2023-12-13 15:05:42 +08:00
|
|
|
did := memory.GetMapElementId(data.Common)
|
|
|
|
uid := stationUid + "_" + uidsMap.IbpButtonIds[did].Uid
|
2023-12-20 10:37:54 +08:00
|
|
|
entry, ok := entity.GetEntityByUid(world, uid)
|
2023-10-27 14:57:37 +08:00
|
|
|
if !ok {
|
2023-12-07 10:43:20 +08:00
|
|
|
continue
|
2023-10-27 14:57:37 +08:00
|
|
|
}
|
|
|
|
if entry.HasComponent(component.ButtonTag) {
|
2023-12-13 15:05:42 +08:00
|
|
|
states = append(states, getIBPButtonState(did, entry))
|
2023-10-27 14:57:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return states, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 获取IBP盘按钮状态
|
2023-12-14 13:04:48 +08:00
|
|
|
func getIBPButtonState(id uint32, entry *ecs.Entry) *state.ButtonState {
|
2023-10-27 14:57:37 +08:00
|
|
|
status := &state.ButtonState{Id: id}
|
|
|
|
bit := component.BitStateType.Get(entry)
|
|
|
|
status.Down = bit.Val
|
|
|
|
// 如果按钮包含灯
|
|
|
|
if entry.HasComponent(component.SingleLightType) {
|
|
|
|
lightComponent := component.SingleLightType.Get(entry)
|
|
|
|
status.Active = component.BitStateType.Get(lightComponent.Light).Val
|
|
|
|
}
|
|
|
|
return status
|
|
|
|
}
|
|
|
|
|
|
|
|
// 收集报警器状态
|
2023-12-20 10:37:54 +08:00
|
|
|
func collectIBPAlarmState(world ecs.World, stationUid string, uidsMap *memory.IBPUidStructure, ibpAlarms []*graphicData.IbpAlarm) ([]*state.AlarmState, error) {
|
2023-10-27 14:57:37 +08:00
|
|
|
var states []*state.AlarmState
|
|
|
|
for _, data := range ibpAlarms { // 报警器
|
2023-12-13 15:05:42 +08:00
|
|
|
did := memory.GetMapElementId(data.Common)
|
|
|
|
uid := stationUid + "_" + uidsMap.IbpAlarmIds[did].Uid
|
2023-12-20 10:37:54 +08:00
|
|
|
entry, ok := entity.GetEntityByUid(world, uid)
|
2023-10-27 14:57:37 +08:00
|
|
|
if !ok {
|
2023-12-07 10:43:20 +08:00
|
|
|
continue
|
2023-10-27 14:57:37 +08:00
|
|
|
}
|
|
|
|
if entry.HasComponent(component.AlarmTag) {
|
2023-12-13 15:05:42 +08:00
|
|
|
states = append(states, &state.AlarmState{Id: did, Active: component.BitStateType.Get(entry).Val})
|
2023-10-27 14:57:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return states, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 收集灯状态信息
|
2023-12-20 10:37:54 +08:00
|
|
|
func collectIBPLightState(world ecs.World, stationUid string, uidsMap *memory.IBPUidStructure, ibpLights []*graphicData.IbpLight) ([]*state.LightState, error) {
|
2023-10-27 14:57:37 +08:00
|
|
|
var states []*state.LightState
|
|
|
|
for _, data := range ibpLights { // 指示灯
|
2023-12-13 15:05:42 +08:00
|
|
|
did := memory.GetMapElementId(data.Common)
|
|
|
|
uid := stationUid + "_" + uidsMap.IbpLightIds[did].Uid
|
2023-12-20 10:37:54 +08:00
|
|
|
entry, ok := entity.GetEntityByUid(world, uid)
|
2023-10-27 14:57:37 +08:00
|
|
|
if !ok {
|
2023-12-07 10:43:20 +08:00
|
|
|
continue
|
2023-10-27 14:57:37 +08:00
|
|
|
}
|
|
|
|
if entry.HasComponent(component.LightTag) {
|
2023-12-13 15:05:42 +08:00
|
|
|
states = append(states, &state.LightState{Id: did, Active: component.BitStateType.Get(entry).Val})
|
2023-10-27 14:57:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return states, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 收集钥匙状态
|
2023-12-20 10:37:54 +08:00
|
|
|
func collectIBPKeyState(world ecs.World, stationUid string, uidsMap *memory.IBPUidStructure, ibpKeys []*graphicData.IbpKey) ([]*state.KeyState, error) {
|
2023-10-27 14:57:37 +08:00
|
|
|
var states []*state.KeyState
|
|
|
|
for _, data := range ibpKeys { // 钥匙
|
2023-12-13 15:05:42 +08:00
|
|
|
did := memory.GetMapElementId(data.Common)
|
|
|
|
uid := stationUid + "_" + uidsMap.IbpKeyIds[did].Uid
|
2023-12-20 10:37:54 +08:00
|
|
|
entry, ok := entity.GetEntityByUid(world, uid)
|
2023-10-27 14:57:37 +08:00
|
|
|
if !ok {
|
2023-12-07 10:43:20 +08:00
|
|
|
continue
|
2023-10-27 14:57:37 +08:00
|
|
|
}
|
|
|
|
if entry.HasComponent(component.KeyTag) {
|
2023-12-13 15:05:42 +08:00
|
|
|
states = append(states, &state.KeyState{Id: did, Gear: component.GearStateType.Get(entry).Val})
|
2023-10-27 14:57:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return states, nil
|
2023-10-26 16:41:18 +08:00
|
|
|
}
|