36 lines
1.3 KiB
Go
36 lines
1.3 KiB
Go
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.SignalDCXHFilamentType)
|
||
//
|
||
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.SignalDCXHFilamentType.Set(signalEntry, &component.SignalDCXHFilament{Bf: true, Af: true, B: false, A: false})
|
||
} else {
|
||
return fmt.Errorf("id=[%s]的信号机dcxh,电子元器件数量须为2", signal.Id())
|
||
}
|
||
return nil
|
||
}
|