2023-12-08 17:44:25 +08:00
|
|
|
package fi
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"joylink.club/ecs"
|
|
|
|
"joylink.club/rtsssimulation/component"
|
|
|
|
"joylink.club/rtsssimulation/entity"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TransBusbarBackupOperate 母线备自投投入操作
|
|
|
|
func TransBusbarBackupOperate(w ecs.World, deviceId string, input bool) error {
|
|
|
|
r := <-ecs.Request[ecs.EmptyType](w, func() ecs.Result[ecs.EmptyType] {
|
|
|
|
wd := entity.GetWorldData(w)
|
|
|
|
deviceEntry, ok := wd.EntityMap[deviceId]
|
|
|
|
if !ok {
|
|
|
|
return ecs.NewErrResult(fmt.Errorf("备自投母线[%s]实体不存在", deviceId))
|
|
|
|
}
|
|
|
|
if input {
|
|
|
|
if !deviceEntry.HasComponent(component.BackupZiTouInputTag) {
|
|
|
|
deviceEntry.AddComponent(component.BackupZiTouInputTag)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if deviceEntry.HasComponent(component.BackupZiTouInputTag) {
|
|
|
|
deviceEntry.RemoveComponent(component.BackupZiTouInputTag)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//
|
|
|
|
return ecs.NewOkEmptyResult()
|
|
|
|
})
|
|
|
|
return r.Err
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////
|
2023-12-22 13:28:39 +08:00
|
|
|
|
|
|
|
// CircuitBreakerOperate 断路器操作
|
|
|
|
func CircuitBreakerOperate(w ecs.World, deviceId string, close bool) error {
|
|
|
|
r := <-ecs.Request[ecs.EmptyType](w, func() ecs.Result[ecs.EmptyType] {
|
|
|
|
wd := entity.GetWorldData(w)
|
|
|
|
deviceEntry, ok := wd.EntityMap[deviceId]
|
|
|
|
if !ok {
|
|
|
|
return ecs.NewErrResult(fmt.Errorf("设备[%s]实体不存在", deviceId))
|
|
|
|
}
|
|
|
|
//
|
|
|
|
if !deviceEntry.HasComponent(component.CircuitBreakerType) {
|
|
|
|
return ecs.NewErrResult(fmt.Errorf("设备[%s]不是断路器", deviceId))
|
|
|
|
}
|
|
|
|
component.CircuitBreakerType.Get(deviceEntry).Closed = close
|
|
|
|
return ecs.NewOkEmptyResult()
|
|
|
|
})
|
|
|
|
return r.Err
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// DisconnectorOperate 隔离开关操作
|
|
|
|
func DisconnectorOperate(w ecs.World, deviceId string, close bool) error {
|
|
|
|
r := <-ecs.Request[ecs.EmptyType](w, func() ecs.Result[ecs.EmptyType] {
|
|
|
|
wd := entity.GetWorldData(w)
|
|
|
|
deviceEntry, ok := wd.EntityMap[deviceId]
|
|
|
|
if !ok {
|
|
|
|
return ecs.NewErrResult(fmt.Errorf("设备[%s]实体不存在", deviceId))
|
|
|
|
}
|
|
|
|
//
|
|
|
|
if !deviceEntry.HasComponent(component.DisconnectorType) {
|
|
|
|
return ecs.NewErrResult(fmt.Errorf("设备[%s]不是隔离开关", deviceId))
|
|
|
|
}
|
|
|
|
component.DisconnectorType.Get(deviceEntry).Closed = close
|
|
|
|
return ecs.NewOkEmptyResult()
|
|
|
|
})
|
|
|
|
return r.Err
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////
|
2023-12-08 17:44:25 +08:00
|
|
|
|
|
|
|
// SwitchThreePositionOptEnum 三工位开关操作枚举定义
|
|
|
|
type SwitchThreePositionOptEnum = uint8
|
|
|
|
|
|
|
|
const (
|
2023-12-19 11:21:00 +08:00
|
|
|
StpOpened SwitchThreePositionOptEnum = iota //开关分闸,线路断开,未与任何位置接通
|
|
|
|
StpClosedWorking //隔离开关合闸
|
|
|
|
StpClosedLanding //接地开关合闸
|
2023-12-08 17:44:25 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// ThreePositionSwitchOperate 三工位开关操作
|
|
|
|
func ThreePositionSwitchOperate(w ecs.World, deviceId string, opt SwitchThreePositionOptEnum) error {
|
|
|
|
r := <-ecs.Request[ecs.EmptyType](w, func() ecs.Result[ecs.EmptyType] {
|
|
|
|
wd := entity.GetWorldData(w)
|
|
|
|
deviceEntry, ok := wd.EntityMap[deviceId]
|
|
|
|
if !ok {
|
|
|
|
return ecs.NewErrResult(fmt.Errorf("设备[%s]实体不存在", deviceId))
|
|
|
|
}
|
|
|
|
//
|
2023-12-11 11:09:07 +08:00
|
|
|
optConvert := func(opt SwitchThreePositionOptEnum) (component.SwitchThreePosition, error) {
|
2023-12-08 17:44:25 +08:00
|
|
|
switch opt {
|
|
|
|
case StpOpened:
|
2023-12-11 11:09:07 +08:00
|
|
|
return component.StpOpened, nil
|
2023-12-19 11:21:00 +08:00
|
|
|
case StpClosedWorking:
|
|
|
|
return component.StpClosedWorking, nil
|
|
|
|
case StpClosedLanding:
|
|
|
|
return component.StpClosedLanding, nil
|
2023-12-08 17:44:25 +08:00
|
|
|
default:
|
2023-12-11 11:09:07 +08:00
|
|
|
return component.StpOpened, fmt.Errorf("三工位开关操作[%d]不存在", opt)
|
2023-12-08 17:44:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//
|
|
|
|
if deviceEntry.HasComponent(component.ThreePositionSwitchType) {
|
|
|
|
position, e := optConvert(opt)
|
|
|
|
if e == nil {
|
|
|
|
component.ThreePositionSwitchType.Get(deviceEntry).Position = position
|
|
|
|
} else {
|
|
|
|
return ecs.NewErrResult(e)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return ecs.NewErrResult(fmt.Errorf("设备[%s]不是三工位开关", deviceId))
|
|
|
|
}
|
|
|
|
//
|
|
|
|
return ecs.NewOkEmptyResult()
|
|
|
|
})
|
|
|
|
return r.Err
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// HandcartSwitchOptEnum 手车式开关操作枚举定义
|
|
|
|
type HandcartSwitchOptEnum = uint8
|
|
|
|
|
|
|
|
const (
|
|
|
|
HpOpened HandcartSwitchOptEnum = iota //工作位分闸
|
|
|
|
HpClosed //工作位合闸
|
|
|
|
HpTest //实验位
|
|
|
|
)
|
|
|
|
|
|
|
|
// HandcartSwitchOperate 手车式开关操作
|
|
|
|
func HandcartSwitchOperate(w ecs.World, deviceId string, opt HandcartSwitchOptEnum) error {
|
|
|
|
r := <-ecs.Request[ecs.EmptyType](w, func() ecs.Result[ecs.EmptyType] {
|
|
|
|
wd := entity.GetWorldData(w)
|
|
|
|
deviceEntry, ok := wd.EntityMap[deviceId]
|
|
|
|
if !ok {
|
|
|
|
return ecs.NewErrResult(fmt.Errorf("设备[%s]实体不存在", deviceId))
|
|
|
|
}
|
|
|
|
//
|
2023-12-11 11:09:07 +08:00
|
|
|
optConvert := func(opt HandcartSwitchOptEnum) (component.HandcarPosition, error) {
|
2023-12-08 17:44:25 +08:00
|
|
|
switch opt {
|
|
|
|
case HpOpened:
|
2023-12-11 11:09:07 +08:00
|
|
|
return component.HpOpened, nil
|
2023-12-08 17:44:25 +08:00
|
|
|
case HpClosed:
|
2023-12-11 11:09:07 +08:00
|
|
|
return component.HpClosed, nil
|
2023-12-08 17:44:25 +08:00
|
|
|
case HpTest:
|
2023-12-11 11:09:07 +08:00
|
|
|
return component.HpTest, nil
|
2023-12-08 17:44:25 +08:00
|
|
|
default:
|
2023-12-22 15:04:33 +08:00
|
|
|
return component.HpOpened, fmt.Errorf("手车式开关操作[%d]不存在", opt)
|
2023-12-08 17:44:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//
|
|
|
|
if deviceEntry.HasComponent(component.HandcartSwitchType) {
|
|
|
|
position, e := optConvert(opt)
|
|
|
|
if e == nil {
|
|
|
|
component.HandcartSwitchType.Get(deviceEntry).Position = position
|
|
|
|
} else {
|
|
|
|
return ecs.NewErrResult(e)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return ecs.NewErrResult(fmt.Errorf("设备[%s]不是手车式开关", deviceId))
|
|
|
|
}
|
|
|
|
//
|
|
|
|
return ecs.NewOkEmptyResult()
|
|
|
|
})
|
|
|
|
return r.Err
|
|
|
|
}
|