From b12b050f5a6675698db1a2fec6319f672c57a61b Mon Sep 17 00:00:00 2001 From: xzb <223@qq.com> Date: Sun, 8 Oct 2023 13:11:34 +0800 Subject: [PATCH] signal 2xh1 --- component/signal_2xh1.go | 32 +++++++++++++++++++++++++ consts/constant.go | 22 ++++++++++++++++++ entity/signal.go | 50 ++++++++++++++++++++++++++++++++++++++++ entity/signal_2xh1.go | 37 +++++++++++++++++++++++++++++ jl-ecs-go | 2 +- repository/signal.go | 17 +++++++++----- 6 files changed, 153 insertions(+), 7 deletions(-) create mode 100644 component/signal_2xh1.go create mode 100644 entity/signal.go create mode 100644 entity/signal_2xh1.go diff --git a/component/signal_2xh1.go b/component/signal_2xh1.go new file mode 100644 index 0000000..674ded0 --- /dev/null +++ b/component/signal_2xh1.go @@ -0,0 +1,32 @@ +package component + +import "joylink.club/ecs" + +// Signal2XH1Electronic 电路状态:**信号机2XH-1(红-绿) 出段(场)信号机 或 **出站区间阻挡信号机 +type Signal2XH1Electronic struct { + // 物理绿灯,true-亮 + L bool + // 物理红灯,true-亮 + H bool + // 点灯继电器,true-吸合,常态落下表示逻辑点灯 + Z2XH1_DDJ *ecs.Entry + //灯丝继电器,true-吸合 + Z2XH1_DJ *ecs.Entry + //列车信号继电器,true-吸合 + Z2XH1_LXJ *ecs.Entry +} + +// Signal2XH1Filament 信号机2XH-1 灯丝状态 +type Signal2XH1Filament struct { + // 物理绿灯,true-灯丝正常 + Lf bool + // 物理红灯,true-灯丝正常 + Hf bool +} + +var ( + //Signal2XH1ElectronicType 2XH1信号机电路组件 + Signal2XH1ElectronicType = ecs.NewComponentType[Signal2XH1Electronic]() + //Signal2XH1FilamentType 2XH1信号机灯丝组件 + Signal2XH1FilamentType = ecs.NewComponentType[Signal2XH1Filament]() +) diff --git a/consts/constant.go b/consts/constant.go index 51b4a77..2b5fd0f 100644 --- a/consts/constant.go +++ b/consts/constant.go @@ -11,3 +11,25 @@ const ( // 继电器缓放时间,单位ms RelayHfTime = int(0.5 * 1000) ) + +// 信号机电路继电器组合类型和功能名称常量 +// 其他信号机的一并定义于此 +const ( + //继电器组合类型 + SIGNAL_3XH1 = "3XH-1" + SIGNAL_3XH2 = "3XH-2" + SIGNAL_3XH3 = "3XH-3" + SIGNAL_3XH4 = "3XH-4" + SIGNAL_2XH1 = "2XH-1" + SIGNAL_JDXH = "JDXH" + SIGNAL_DCXH = "DCXH" + SIGNAL_JCKXH = "JCKXH" + //继电器功能名称 + SIGNAL_DDJ = "DDJ" + SIGNAL_DJ = "DJ" + SIGNAL_2DJ = "2DJ" + SIGNAL_LXJ = "LXJ" + SIGNAL_YXJ = "YXJ" + SIGNAL_ZXJ = "ZXJ" + SIGNAL_DXJ = "DXJ" +) diff --git a/entity/signal.go b/entity/signal.go new file mode 100644 index 0000000..1667053 --- /dev/null +++ b/entity/signal.go @@ -0,0 +1,50 @@ +package entity + +import ( + "fmt" + "joylink.club/ecs" + "joylink.club/rtsssimulation/component" + "joylink.club/rtsssimulation/consts" +) + +// LoadSignals 加载信号机实体 +func LoadSignals(w ecs.World) error { + data := GetWorldData(w) + signals := data.Repo.SignalList() + for _, signal := range signals { + groups := signal.RelayGroups() + if len(groups) == 1 { + group := groups[0] + signalEntry := newSignalEntity(w, signal.Id(), data) + elecs := group.Components() + // + switch group.Code() { + case consts.SIGNAL_2XH1: + loadSignal2xh1(w, signal, signalEntry, elecs, data.EntityMap) + case consts.SIGNAL_3XH1: + case consts.SIGNAL_3XH2: + case consts.SIGNAL_3XH3: + case consts.SIGNAL_3XH4: + case consts.SIGNAL_JDXH: + case consts.SIGNAL_DCXH: + case consts.SIGNAL_JCKXH: + default: + return fmt.Errorf("id=[%s]的信号机,无效组合类型[%s]", signal.Id(), group.Code()) + } + } else { //信号机有且只有一个组合类型 + return fmt.Errorf("id=[%s]的信号机须有且只有一个组合类型", signal.Id()) + } + } + return nil +} + +// 新建信号机实体 +func newSignalEntity(w ecs.World, uid string, worldData *component.WorldData) *ecs.Entry { + entry, ok := worldData.EntityMap[uid] + if !ok { + entry = w.Create(component.UidType) + component.UidType.SetValue(entry, component.Uid{Id: uid}) + worldData.EntityMap[uid] = entry + } + return entry +} diff --git a/entity/signal_2xh1.go b/entity/signal_2xh1.go new file mode 100644 index 0000000..92d08df --- /dev/null +++ b/entity/signal_2xh1.go @@ -0,0 +1,37 @@ +package entity + +import ( + "fmt" + "joylink.club/ecs" + "joylink.club/rtsssimulation/component" + "joylink.club/rtsssimulation/consts" + "joylink.club/rtsssimulation/repository" +) + +func loadSignal2xh1(w ecs.World, signal *repository.Signal, signalEntry *ecs.Entry, elecs []repository.IGroupedElectronicComponent, entityMap map[string]*ecs.Entry) error { + + if len(elecs) == 3 { //2xh1组合类型包含3个继电器 + signalEntry.AddComponent(component.Signal2XH1ElectronicType) + signalEntry.AddComponent(component.Signal2XH1FilamentType) + // + elecState := &component.Signal2XH1Electronic{L: false, H: false} + for _, elec := range elecs { + switch elec.Code() { + case consts.SIGNAL_DDJ: + elecState.Z2XH1_DDJ = NewRelayEntity(w, elec.(*repository.Relay), entityMap) + case consts.SIGNAL_DJ: + elecState.Z2XH1_DJ = NewRelayEntity(w, elec.(*repository.Relay), entityMap) + case consts.SIGNAL_LXJ: + elecState.Z2XH1_LXJ = NewRelayEntity(w, elec.(*repository.Relay), entityMap) + default: + return fmt.Errorf("id=[%s]的信号机2xh1,无效电子元器件名称[%s]", signal.Id(), elec.Code()) + } + } + // + component.Signal2XH1ElectronicType.Set(signalEntry, elecState) + component.Signal2XH1FilamentType.Set(signalEntry, &component.Signal2XH1Filament{Lf: true, Hf: true}) + } else { + return fmt.Errorf("id=[%s]的信号机2xh1,电子元器件数量须为3", signal.Id()) + } + return nil +} diff --git a/jl-ecs-go b/jl-ecs-go index 7ce0d9a..200352e 160000 --- a/jl-ecs-go +++ b/jl-ecs-go @@ -1 +1 @@ -Subproject commit 7ce0d9aa7bf6cbbf045ef3aa57ec14d43a742906 +Subproject commit 200352eb58f1704a741d367e3c8afd02ae492b58 diff --git a/repository/signal.go b/repository/signal.go index 9dbb215..7da1020 100644 --- a/repository/signal.go +++ b/repository/signal.go @@ -9,6 +9,8 @@ type Signal struct { //section *PhysicalSection //turnoutPort TurnoutPort linkPosition *LinkPosition + //信号机电路系统电子元器件 + componentGroups []*ElectronicComponentGroup } func NewSignal(id string, km *proto.Kilometer) *Signal { @@ -22,10 +24,13 @@ func (s *Signal) bindLinkPosition(position *LinkPosition) { s.linkPosition = position } -//func (s *Signal) bindSection(section *PhysicalSection) { -// s.section = section -//} +// func (s *Signal) bindSection(section *PhysicalSection) { +// s.section = section +// } // -//func (s *Signal) bindTurnoutPort(tp TurnoutPort) { -// s.turnoutPort = tp -//} +// func (s *Signal) bindTurnoutPort(tp TurnoutPort) { +// s.turnoutPort = tp +// } +func (s *Signal) RelayGroups() []*ElectronicComponentGroup { + return s.componentGroups +}