rts-sim-module/entity/signal_dcxh.go
2023-10-20 10:55:03 +08:00

45 lines
1.6 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package entity
import (
"fmt"
"joylink.club/ecs"
"joylink.club/rtsssimulation/component"
"joylink.club/rtsssimulation/consts"
"joylink.club/rtsssimulation/repository"
)
func loadSignalDcxh(w ecs.World, signal *repository.Signal, signalEntry *ecs.Entry, elecs []repository.IGroupedElectronicComponent, entityMap map[string]*ecs.Entry) error {
if len(elecs) == 2 { //dcxh组合类型包含2个继电器
signalEntry.AddComponent(component.SignalDCXHElectronicType)
signalEntry.AddComponent(component.SignalDCXHLsqType)
signalEntry.AddComponent(component.SignalDCXHLscType)
//
elecState := &component.SignalDCXHElectronic{}
for _, elec := range elecs {
switch elec.Code() {
case consts.SIGNAL_DJ:
elecState.DCXH_DJ = NewRelayEntity(w, elec.(*repository.Relay), entityMap)
case consts.SIGNAL_DXJ:
elecState.DCXH_DXJ = NewRelayEntity(w, elec.(*repository.Relay), entityMap)
default:
return fmt.Errorf("id=[%s]的信号机dcxh无效电子元器件名称[%s]", signal.Id(), elec.Code())
}
}
//
component.SignalDCXHElectronicType.Set(signalEntry, elecState)
component.SignalDCXHLsqType.Set(signalEntry, &component.SignalDCXHLsq{})
component.SignalDCXHLscType.Set(signalEntry, &component.SignalDCXHLsc{})
//校验
if elecState.DCXH_DJ == nil {
return fmt.Errorf("id=[%s]的信号机DCXH缺少元件DJ", signal.Id())
}
if elecState.DCXH_DXJ == nil {
return fmt.Errorf("id=[%s]的信号机DCXH缺少元件DXJ", signal.Id())
}
} else {
return fmt.Errorf("id=[%s]的信号机dcxh电子元器件数量须为2", signal.Id())
}
return nil
}