2023-10-07 17:00:36 +08:00
|
|
|
package common_sys
|
|
|
|
|
|
|
|
import (
|
|
|
|
"joylink.club/ecs"
|
2023-10-09 11:17:25 +08:00
|
|
|
"joylink.club/ecs/filter"
|
2023-10-07 17:00:36 +08:00
|
|
|
"joylink.club/rtsssimulation/component"
|
|
|
|
)
|
|
|
|
|
|
|
|
type CounterSys struct {
|
|
|
|
query *ecs.Query
|
|
|
|
}
|
|
|
|
|
2023-10-16 15:40:03 +08:00
|
|
|
func NewCounterSys() *CounterSys {
|
|
|
|
return &CounterSys{
|
2023-10-07 17:00:36 +08:00
|
|
|
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
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|