package common_sys import ( "github.com/yohamta/donburi/filter" "joylink.club/ecs" "joylink.club/rtsssimulation/component" ) type CounterSys struct { query *ecs.Query } func NewCounterSys() *CounterDownSys { return &CounterDownSys{ query: ecs.NewQuery(filter.Contains(component.CounterType)), } } // 更新 func (c *CounterSys) Update(w ecs.World) { c.query.Each(w, func(entry *ecs.Entry) { counter := component.CounterType.Get(entry) if counter.Step > 0 { counter.Val = counter.Val + counter.Step } }) }