2023-07-31 08:41:42 +08:00
|
|
|
package simulation
|
|
|
|
|
|
|
|
import (
|
2023-08-23 15:33:07 +08:00
|
|
|
"encoding/binary"
|
2023-08-03 10:41:43 +08:00
|
|
|
"net"
|
|
|
|
"strings"
|
|
|
|
|
2023-08-07 14:08:02 +08:00
|
|
|
"fmt"
|
2023-08-10 14:18:55 +08:00
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
"sync"
|
|
|
|
|
2023-08-02 15:47:48 +08:00
|
|
|
"go.uber.org/zap"
|
|
|
|
"joylink.club/bj-rtsts-server/ats/verify/protos/state"
|
2023-08-03 10:41:43 +08:00
|
|
|
"joylink.club/bj-rtsts-server/config"
|
2023-08-02 15:47:48 +08:00
|
|
|
"joylink.club/bj-rtsts-server/dynamics"
|
2023-08-18 16:20:40 +08:00
|
|
|
"joylink.club/bj-rtsts-server/vobc"
|
2023-07-31 08:41:42 +08:00
|
|
|
|
2023-08-01 14:54:11 +08:00
|
|
|
"joylink.club/bj-rtsts-server/ats/verify/simulation/wayside/memory"
|
|
|
|
"joylink.club/bj-rtsts-server/dto"
|
2023-07-31 08:41:42 +08:00
|
|
|
)
|
|
|
|
|
2023-08-03 10:41:43 +08:00
|
|
|
var simulationId_prefix = (func() string {
|
|
|
|
ip := "127.0.0.1"
|
|
|
|
addrList, err := net.InterfaceAddrs()
|
|
|
|
if err != nil {
|
2023-08-30 18:05:11 +08:00
|
|
|
panic(dto.ErrorDto{Code: dto.DataOperationError, Message: err.Error()})
|
2023-08-03 10:41:43 +08:00
|
|
|
}
|
|
|
|
for _, address := range addrList {
|
|
|
|
if ipNet, ok := address.(*net.IPNet); ok && !ipNet.IP.IsLoopback() {
|
|
|
|
if ipNet.IP.To4() != nil {
|
|
|
|
ip = ipNet.IP.String()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ipArr := strings.Split(ip, ".")
|
|
|
|
return ipArr[2] + "_" + ipArr[3]
|
|
|
|
})()
|
|
|
|
|
2023-08-02 15:47:48 +08:00
|
|
|
func init() {
|
2023-08-23 15:33:07 +08:00
|
|
|
// vobc 发来的列车信息
|
|
|
|
vobc.RegisterTrainInfoHandler(func(info []byte) {
|
2023-08-18 16:20:40 +08:00
|
|
|
zap.S().Debug("接到列车信息", info)
|
2023-08-23 15:33:07 +08:00
|
|
|
for _, simulation := range GetSimulationArr() {
|
2023-08-25 15:35:00 +08:00
|
|
|
simulation.Memory.Status.TrainStateMap.Range(func(_, value any) bool {
|
2023-08-23 15:33:07 +08:00
|
|
|
train := value.(*state.TrainState)
|
|
|
|
if train.Show { // 上线列车
|
|
|
|
// 拼接列车ID
|
|
|
|
trainId, err := strconv.Atoi(train.Id)
|
|
|
|
if err != nil {
|
2023-08-30 18:05:11 +08:00
|
|
|
panic(dto.ErrorDto{Code: dto.ArgumentParseError, Message: err.Error()})
|
2023-08-23 15:33:07 +08:00
|
|
|
}
|
2023-08-24 14:08:21 +08:00
|
|
|
trainInfo := decoderVobcTrainState(info)
|
|
|
|
zap.S().Info("接收到vobc发送的列车消息", trainInfo)
|
2023-08-23 15:33:07 +08:00
|
|
|
// 发送给动力学
|
|
|
|
dynamics.SendDynamicsTrainMsg(append(info, uint8(trainId)))
|
2023-08-25 16:09:04 +08:00
|
|
|
// 存放至列车中
|
|
|
|
train.VobcState = trainInfo
|
2023-08-23 15:33:07 +08:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-08-18 16:20:40 +08:00
|
|
|
})
|
2023-08-02 15:47:48 +08:00
|
|
|
dynamics.RegisterTrainInfoHandler(func(info *dynamics.TrainInfo) {
|
|
|
|
for _, simulation := range GetSimulationArr() {
|
|
|
|
sta, ok := simulation.Memory.Status.TrainStateMap.Load(strconv.Itoa(int(info.Number)))
|
|
|
|
if ok {
|
2023-08-23 15:33:07 +08:00
|
|
|
trainState := sta.(*state.TrainState)
|
|
|
|
// 给半实物仿真发送速度
|
2023-08-24 14:08:21 +08:00
|
|
|
zap.S().Info("发送到vobc发送的速度", info.Speed*36)
|
2023-08-23 15:33:07 +08:00
|
|
|
vobc.SendTrainSpeedTask(info.Speed * 36)
|
|
|
|
// 更新列车状态
|
2023-08-24 18:22:25 +08:00
|
|
|
memory.UpdateTrainState(simulation, convert(info, trainState, simulation))
|
2023-08-02 15:47:48 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-07-31 08:41:42 +08:00
|
|
|
// 仿真存储集合
|
2023-08-01 14:54:11 +08:00
|
|
|
var simulationMap sync.Map
|
2023-07-31 08:41:42 +08:00
|
|
|
|
2023-08-30 18:05:11 +08:00
|
|
|
// 创建前检查
|
|
|
|
func IsExistSimulation() bool {
|
|
|
|
i := 0
|
|
|
|
simulationMap.Range(func(_, _ any) bool {
|
|
|
|
i++
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
return i > 0
|
|
|
|
}
|
|
|
|
|
2023-07-31 08:41:42 +08:00
|
|
|
// 创建仿真对象
|
2023-08-30 13:25:57 +08:00
|
|
|
func CreateSimulation(mapId, projectId int32) string {
|
2023-07-31 08:41:42 +08:00
|
|
|
simulationId := createSimulationId(mapId)
|
2023-08-01 14:54:11 +08:00
|
|
|
_, e := simulationMap.Load(simulationId)
|
|
|
|
if !e {
|
2023-08-30 13:25:57 +08:00
|
|
|
verifySimulation := memory.CreateSimulation(mapId, projectId, simulationId)
|
2023-08-09 15:34:19 +08:00
|
|
|
//通知动力学
|
|
|
|
httpCode, _, err := dynamics.SendSimulationStartReq(buildLineBaseInfo(memory.QueryMapVerifyStructure(verifySimulation.MapId)))
|
|
|
|
if httpCode != http.StatusOK || err != nil {
|
|
|
|
panic(dto.ErrorDto{Code: dto.LogicError, Message: fmt.Sprintf("动力学接口调用失败:[%d][%s]", httpCode, err)})
|
|
|
|
}
|
2023-08-01 14:54:11 +08:00
|
|
|
simulationMap.Store(simulationId, verifySimulation)
|
2023-08-09 15:34:19 +08:00
|
|
|
dynamicsRun(verifySimulation)
|
2023-07-31 08:41:42 +08:00
|
|
|
}
|
|
|
|
return simulationId
|
|
|
|
}
|
|
|
|
|
|
|
|
// 删除仿真对象
|
|
|
|
func DestroySimulation(simulationId string) {
|
2023-08-25 17:49:09 +08:00
|
|
|
simulationMap.Delete(simulationId)
|
2023-08-02 15:47:48 +08:00
|
|
|
//移除道岔状态发送
|
2023-08-09 15:34:19 +08:00
|
|
|
dynamics.Stop()
|
2023-08-07 14:08:02 +08:00
|
|
|
//通知动力学
|
|
|
|
httpCode, _, err := dynamics.SendSimulationEndReq()
|
|
|
|
if httpCode != http.StatusOK || err != nil {
|
|
|
|
panic(dto.ErrorDto{Code: dto.LogicError, Message: fmt.Sprintf("动力学接口调用失败:[%d][%s]", httpCode, err)})
|
|
|
|
}
|
2023-07-31 08:41:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 创建时生成仿真Id
|
2023-08-01 14:54:11 +08:00
|
|
|
func createSimulationId(mapId int32) string {
|
2023-08-03 10:41:43 +08:00
|
|
|
// 当前服务器IP + 端口 + 地图
|
|
|
|
return simulationId_prefix + "_" + strconv.Itoa(config.Config.Server.Port) + "_" + strconv.Itoa(int(mapId))
|
2023-07-31 08:41:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 获取仿真列表
|
2023-08-30 13:25:57 +08:00
|
|
|
func ListAllSimulations() []*dto.SimulationInfoRspDto {
|
|
|
|
simArr := []*dto.SimulationInfoRspDto{}
|
2023-08-25 15:35:00 +08:00
|
|
|
simulationMap.Range(func(_, v any) bool {
|
2023-08-01 14:54:11 +08:00
|
|
|
s := v.(*memory.VerifySimulation)
|
2023-08-30 13:25:57 +08:00
|
|
|
simArr = append(simArr, &dto.SimulationInfoRspDto{
|
2023-08-01 14:54:11 +08:00
|
|
|
SimulationId: s.SimulationId,
|
2023-08-30 13:25:57 +08:00
|
|
|
MapId: s.MapId,
|
|
|
|
ProjectId: s.ProjectId,
|
2023-08-01 14:54:11 +08:00
|
|
|
})
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
return simArr
|
2023-07-31 08:41:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 根据仿真id查找仿真实例
|
2023-08-01 14:54:11 +08:00
|
|
|
func FindSimulation(simulationId string) *memory.VerifySimulation {
|
|
|
|
m, e := simulationMap.Load(simulationId)
|
|
|
|
if e {
|
|
|
|
return m.(*memory.VerifySimulation)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 获取普通仿真数组
|
|
|
|
func GetSimulationArr() []*memory.VerifySimulation {
|
|
|
|
result := []*memory.VerifySimulation{}
|
2023-08-25 15:35:00 +08:00
|
|
|
simulationMap.Range(func(_, v any) bool {
|
2023-08-01 14:54:11 +08:00
|
|
|
result = append(result, v.(*memory.VerifySimulation))
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
return result
|
2023-07-31 08:41:42 +08:00
|
|
|
}
|
2023-08-07 14:08:02 +08:00
|
|
|
|
2023-08-24 18:22:25 +08:00
|
|
|
func convert(info *dynamics.TrainInfo, sta *state.TrainState, simulation *memory.VerifySimulation) *state.TrainState {
|
|
|
|
vs := memory.QueryMapVerifyStructure(simulation.MapId)
|
2023-08-09 15:34:19 +08:00
|
|
|
zap.S().Debugf("原始消息:[%d-%d-%d]", info.Number, info.Link, info.LinkOffset)
|
2023-08-25 16:09:04 +08:00
|
|
|
id, port, offset, runDirection, pointTo := memory.QueryDeviceByCalcLink(vs, int32(info.Link), int64(info.LinkOffset), info.Up, sta.RunDirection)
|
2023-08-15 10:18:39 +08:00
|
|
|
zap.S().Debugf("转换后的消息:[%d-车头:%s-偏移:%d-上行:%v-是否ab:%v]", info.Number, id, offset, runDirection, pointTo)
|
2023-08-10 14:18:55 +08:00
|
|
|
sta.HeadDeviceId = id
|
|
|
|
sta.DevicePort = port
|
|
|
|
sta.HeadOffset = offset
|
2023-08-15 10:18:39 +08:00
|
|
|
sta.PointTo = pointTo
|
2023-08-14 16:27:03 +08:00
|
|
|
sta.RunDirection = runDirection
|
2023-08-24 18:22:25 +08:00
|
|
|
//判定车头方向
|
2023-08-25 16:09:04 +08:00
|
|
|
if sta.VobcState != nil {
|
|
|
|
if sta.VobcState.DirectionForward {
|
2023-08-24 18:22:25 +08:00
|
|
|
sta.HeadDirection = info.Up
|
2023-08-25 16:09:04 +08:00
|
|
|
} else if sta.VobcState.DirectionBackward {
|
2023-08-24 18:22:25 +08:00
|
|
|
sta.HeadDirection = !info.Up
|
|
|
|
}
|
2023-08-28 14:25:00 +08:00
|
|
|
} else {
|
|
|
|
sta.HeadDirection = runDirection
|
2023-08-24 18:22:25 +08:00
|
|
|
}
|
2023-08-25 16:09:04 +08:00
|
|
|
// 赋值动力学信息
|
|
|
|
sta.DynamicState.Heartbeat = int32(info.LifeSignal)
|
|
|
|
sta.DynamicState.HeadLinkId = strconv.Itoa(int(info.Link))
|
|
|
|
sta.DynamicState.HeadLinkOffset = int64(info.LinkOffset)
|
|
|
|
sta.DynamicState.Slope = int32(info.Slope)
|
|
|
|
sta.DynamicState.Upslope = info.UpSlope
|
|
|
|
sta.DynamicState.RunningUp = info.Up
|
|
|
|
sta.DynamicState.RunningResistanceSum = float32(info.TotalResistance) / 1000
|
|
|
|
sta.DynamicState.AirResistance = float32(info.AirResistance) / 1000
|
|
|
|
sta.DynamicState.RampResistance = float32(info.SlopeResistance) / 1000
|
|
|
|
sta.DynamicState.CurveResistance = float32(info.CurveResistance) / 1000
|
|
|
|
sta.DynamicState.Speed = info.Speed * 3.6
|
|
|
|
sta.DynamicState.HeadSensorSpeed1 = info.HeadSpeed1 * 3.6
|
|
|
|
sta.DynamicState.HeadSensorSpeed2 = info.HeadSpeed2 * 3.6
|
|
|
|
sta.DynamicState.TailSensorSpeed1 = info.TailSpeed1 * 3.6
|
|
|
|
sta.DynamicState.TailSensorSpeed2 = info.TailSpeed2 * 3.6
|
|
|
|
sta.DynamicState.HeadRadarSpeed = info.HeadRadarSpeed * 3.6
|
|
|
|
sta.DynamicState.TailRadarSpeed = info.TailRadarSpeed * 3.6
|
2023-08-10 14:18:55 +08:00
|
|
|
return sta
|
2023-08-07 14:08:02 +08:00
|
|
|
}
|
|
|
|
|
2023-08-09 15:34:19 +08:00
|
|
|
func dynamicsRun(verifySimulation *memory.VerifySimulation) {
|
|
|
|
_ = dynamics.Run(func() []*dynamics.TurnoutInfo {
|
2023-08-07 14:08:02 +08:00
|
|
|
stateSlice := memory.GetAllTurnoutState(verifySimulation)
|
|
|
|
var turnoutInfoSlice []*dynamics.TurnoutInfo
|
|
|
|
for _, sta := range stateSlice {
|
|
|
|
code64, err := strconv.ParseUint(sta.Id, 10, 16)
|
|
|
|
if err != nil {
|
|
|
|
zap.S().Error("id转uint16报错", err)
|
|
|
|
}
|
|
|
|
info := dynamics.TurnoutInfo{
|
|
|
|
Code: uint16(code64),
|
|
|
|
NPosition: sta.Normal,
|
|
|
|
RPosition: sta.Reverse,
|
|
|
|
}
|
|
|
|
turnoutInfoSlice = append(turnoutInfoSlice, &info)
|
|
|
|
}
|
|
|
|
return turnoutInfoSlice
|
|
|
|
})
|
|
|
|
}
|
2023-08-09 15:34:19 +08:00
|
|
|
|
|
|
|
func buildLineBaseInfo(vs *memory.VerifyStructure) *dynamics.LineBaseInfo {
|
|
|
|
var links []*dynamics.Link
|
2023-08-11 17:24:30 +08:00
|
|
|
var slopes []*dynamics.Slope
|
|
|
|
var curves []*dynamics.Curve
|
|
|
|
for _, link := range vs.LinkModelMap {
|
2023-08-09 15:34:19 +08:00
|
|
|
id, _ := strconv.Atoi(link.Index)
|
|
|
|
var aTurnoutId int
|
2023-08-25 17:49:09 +08:00
|
|
|
var aPort string
|
|
|
|
if link.ARelatedSwitchRef != nil && link.ARelatedSwitchRef.SwitchDevice != nil {
|
2023-08-09 15:34:19 +08:00
|
|
|
aTurnoutId, _ = strconv.Atoi(link.ARelatedSwitchRef.SwitchDevice.GetIndex())
|
2023-08-25 17:49:09 +08:00
|
|
|
aPort = link.ARelatedSwitchRef.Port.Name()
|
2023-08-09 15:34:19 +08:00
|
|
|
}
|
|
|
|
var bTurnoutId int
|
2023-08-25 17:49:09 +08:00
|
|
|
var bPort string
|
|
|
|
if link.BRelatedSwitchRef != nil && link.BRelatedSwitchRef.SwitchDevice != nil {
|
2023-08-09 15:34:19 +08:00
|
|
|
bTurnoutId, _ = strconv.Atoi(link.BRelatedSwitchRef.SwitchDevice.GetIndex())
|
2023-08-25 17:49:09 +08:00
|
|
|
bPort = link.BRelatedSwitchRef.Port.Name()
|
2023-08-09 15:34:19 +08:00
|
|
|
}
|
|
|
|
links = append(links, &dynamics.Link{
|
|
|
|
ID: int32(id),
|
|
|
|
Len: link.Length,
|
|
|
|
ARelTurnoutId: int32(aTurnoutId),
|
2023-08-25 17:49:09 +08:00
|
|
|
ARelTurnoutPoint: aPort,
|
2023-08-09 15:34:19 +08:00
|
|
|
BRelTurnoutId: int32(bTurnoutId),
|
2023-08-25 17:49:09 +08:00
|
|
|
BRelTurnoutPoint: bPort,
|
2023-08-09 15:34:19 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
return &dynamics.LineBaseInfo{
|
|
|
|
LinkList: links,
|
2023-08-11 17:24:30 +08:00
|
|
|
SlopeList: slopes,
|
|
|
|
CurveList: curves,
|
2023-08-09 15:34:19 +08:00
|
|
|
}
|
|
|
|
}
|
2023-08-23 15:33:07 +08:00
|
|
|
|
|
|
|
// 解析VOBC列车信息
|
|
|
|
func decoderVobcTrainState(buf []byte) *state.TrainVobcState {
|
|
|
|
trainVobcInfo := &state.TrainVobcState{}
|
|
|
|
trainVobcInfo.LifeSignal = int32(binary.BigEndian.Uint16(buf[0:2]))
|
|
|
|
b2 := buf[2]
|
2023-08-25 10:41:13 +08:00
|
|
|
trainVobcInfo.Tc1Active = (b2 & 1) != 0
|
|
|
|
trainVobcInfo.Tc2Active = (b2 & (1 << 1)) != 0
|
|
|
|
trainVobcInfo.DirectionForward = (b2 & (1 << 2)) != 0
|
|
|
|
trainVobcInfo.DirectionBackward = (b2 & (1 << 3)) != 0
|
|
|
|
trainVobcInfo.TractionStatus = (b2 & (1 << 4)) != 0
|
|
|
|
trainVobcInfo.BrakingStatus = (b2 & (1 << 5)) != 0
|
|
|
|
trainVobcInfo.EmergencyBrakingStatus = (b2 & (1 << 6)) != 0
|
|
|
|
trainVobcInfo.TurnbackStatus = (b2 & 7) != 0
|
2023-08-23 15:33:07 +08:00
|
|
|
b3 := buf[3]
|
2023-08-25 10:41:13 +08:00
|
|
|
trainVobcInfo.JumpStatus = (b3 & 1) != 0
|
|
|
|
trainVobcInfo.Ato = (b3 & (1 << 1)) != 0
|
|
|
|
trainVobcInfo.Fam = (b3 & (1 << 2)) != 0
|
|
|
|
trainVobcInfo.Cam = (b3 & (1 << 3)) != 0
|
|
|
|
trainVobcInfo.TractionSafetyCircuit = (b3 & (1 << 4)) != 0
|
|
|
|
trainVobcInfo.ParkingBrakeStatus = (b3 & (1 << 5)) != 0
|
|
|
|
trainVobcInfo.MaintainBrakeStatus = (b3 & (1 << 6)) != 0
|
2023-08-25 15:14:37 +08:00
|
|
|
trainVobcInfo.TractionForce = int64(binary.BigEndian.Uint16(buf[4:6]) / 100)
|
|
|
|
trainVobcInfo.BrakeForce = int64(binary.BigEndian.Uint16(buf[6:8]) / 100)
|
|
|
|
trainVobcInfo.TrainLoad = int64(binary.BigEndian.Uint16(buf[8:10]) / 100)
|
2023-08-23 15:33:07 +08:00
|
|
|
b4 := buf[15]
|
2023-08-25 10:41:13 +08:00
|
|
|
trainVobcInfo.LeftDoorOpenCommand = (b4 & 1) != 0
|
|
|
|
trainVobcInfo.RightDoorOpenCommand = (b4 & (1 << 1)) != 0
|
|
|
|
trainVobcInfo.LeftDoorCloseCommand = (b4 & (1 << 2)) != 0
|
|
|
|
trainVobcInfo.RightDoorCloseCommand = (b4 & (1 << 3)) != 0
|
|
|
|
trainVobcInfo.AllDoorClose = (b4 & (1 << 4)) != 0
|
2023-08-23 15:33:07 +08:00
|
|
|
return trainVobcInfo
|
|
|
|
}
|