2023-09-15 10:13:25 +08:00
|
|
|
package system
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"joylink.club/ecs"
|
|
|
|
"log"
|
|
|
|
)
|
|
|
|
|
|
|
|
type DebugSystem struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewDebugSystem() *DebugSystem {
|
|
|
|
return &DebugSystem{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update world 执行
|
|
|
|
func (debug *DebugSystem) Update(w ecs.World) {
|
|
|
|
zdj9Query.Each(w, func(entry *ecs.Entry) {
|
|
|
|
swId := EntityIdentityComponent.Get(entry).Id
|
|
|
|
swState := Switch2jZdj9StateComponent.Get(entry)
|
2023-09-15 13:07:31 +08:00
|
|
|
//log.Println(fmt.Sprintf("==>>2JZDJ9=%s QDJ=%t j1-2DQJ=%t j2-2DQJ=%t", swId, swState.J1_QDJ, swState.J1_2DQJ, swState.J2_2DQJ))
|
|
|
|
//log.Println(fmt.Sprintf("==>>2JZDJ9=%s j1-1DQJ=%t j2-1DQJ=%t", swId, swState.J1_1DQJ, swState.J2_1DQJ))
|
|
|
|
log.Println(fmt.Sprintf("==>>2JZDJ9=%s YCJ=%t DCJ=%t FCJ=%t ZDBJ=%t ZFBJ=%t", swId, swState.YCJ, swState.DCJ, swState.FCJ, swState.ZDBJ, swState.ZFBJ))
|
2023-09-15 10:13:25 +08:00
|
|
|
})
|
|
|
|
}
|