model and component adjustment
This commit is contained in:
parent
2dba440168
commit
74d0141087
|
@ -1,6 +1,13 @@
|
|||
package component
|
||||
|
||||
// 道岔驱采组件
|
||||
import "joylink.club/ecs"
|
||||
|
||||
var (
|
||||
TurnoutQcType = ecs.NewComponentType[TurnoutQc]()
|
||||
LimitMotorType = ecs.NewComponentType[LimitMotor]()
|
||||
)
|
||||
|
||||
// 道岔驱采状态
|
||||
type TurnoutQc struct {
|
||||
CJ bool
|
||||
DCJ bool
|
||||
|
@ -9,7 +16,7 @@ type TurnoutQc struct {
|
|||
FBJ bool
|
||||
}
|
||||
|
||||
// 限位电机组件
|
||||
// 限位电机状态
|
||||
type LimitMotor struct {
|
||||
Min int
|
||||
Max int
|
||||
|
|
|
@ -4,3 +4,28 @@ type RtssModel interface {
|
|||
// RtssModel unique id
|
||||
Uid() string
|
||||
}
|
||||
|
||||
// 轨道端口
|
||||
type PipePort = string
|
||||
|
||||
var (
|
||||
// PipePortA 轨道端口A
|
||||
PipePortA PipePort = "A"
|
||||
// PipePortB 轨道端口B
|
||||
PipePortB PipePort = "B"
|
||||
// PipePortC 轨道端口C
|
||||
PipePortC PipePort = "C"
|
||||
)
|
||||
|
||||
type PipeLink struct {
|
||||
// 轨道
|
||||
Pipe Pipe
|
||||
// 端口
|
||||
Port PipePort
|
||||
}
|
||||
|
||||
// 轨道
|
||||
type Pipe interface {
|
||||
// 获取指定端口连接的下一个轨道及端口
|
||||
Next(port PipePort) PipeLink
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue