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.Signal2XH1LsqType) signalEntry.AddComponent(component.Signal2XH1LscType) signalEntry.AddComponent(component.SignalLightsType) // elecState := &component.Signal2XH1Electronic{} 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.Signal2XH1LsqType.Set(signalEntry, &component.Signal2XH1Lsq{}) component.Signal2XH1LscType.Set(signalEntry, &component.Signal2XH1Lsc{}) component.SignalLightsType.Set(signalEntry, newSignalLights(w, component.HdTag, component.LdTag)) //校验 if elecState.Z2XH1_DDJ == nil { return fmt.Errorf("id=[%s]的信号机2xh1,缺少元件DDJ", signal.Id()) } if elecState.Z2XH1_DJ == nil { return fmt.Errorf("id=[%s]的信号机2xh1,缺少元件DJ", signal.Id()) } if elecState.Z2XH1_LXJ == nil { return fmt.Errorf("id=[%s]的信号机2xh1,缺少元件LXJ", signal.Id()) } } else { return fmt.Errorf("id=[%s]的信号机2xh1,电子元器件数量须为3", signal.Id()) } return nil }