jl-ecs/world.go

245 lines
4.7 KiB
Go
Raw Normal View History

2023-08-04 11:02:08 +08:00
package ecs
import (
"fmt"
"log"
"math"
2023-08-04 11:02:08 +08:00
"time"
"github.com/yohamta/donburi"
"github.com/yohamta/donburi/features/events"
)
type WorldState int
type WorldId int
const (
Init WorldState = iota
Running
Pause
Error
Closed
)
type (
World interface {
// Id returns the unique identifier for the world.
Id() WorldId
// Create creates a new entity with the specified components.
Create(components ...donburi.IComponentType) *Entry
// CreateMany creates a new entity with the specified components.
CreateMany(n int, components ...donburi.IComponentType) []*Entry
// Entry returns an entry for the specified entity.
Entry(entity Entity) *Entry
// Remove removes the specified entity.
Remove(entity Entity)
// Valid returns true if the specified entity is valid.
Valid(e Entity) bool
// Len returns the number of entities in the world.
Len() int
StartUp()
Pause()
Resume()
SetSpeed(speed float64) error
AddSystem(sys ...ISystem)
// 在世界线程执行
Execute(fn ExecuteFunc)
Close()
// 世界时间间隔
Tick() int
Running() bool
}
// 世界执行函数
ExecuteFunc func()
)
2023-08-04 11:02:08 +08:00
type world struct {
world donburi.World
systems []ISystem
state WorldState
tick int
ticker *time.Ticker
speed float64
// 下一帧需要执行的次数
times float64
2023-08-04 11:02:08 +08:00
// 退出信号
quit chan struct{}
// 待执行函数
toBeExecuteds chan ExecuteFunc
2023-08-04 11:02:08 +08:00
}
func NewComponentType[T any](opts ...interface{}) *ComponentType[T] {
ct := donburi.NewComponentType[T](opts...)
return &ComponentType[T]{ct}
}
// 初始化一个新World
// tick 单位为ms且必须大于0
2023-08-04 11:02:08 +08:00
func NewWorld(tick int) World {
return &world{
world: donburi.NewWorld(),
systems: make([]ISystem, 0),
state: Init,
tick: tick,
ticker: time.NewTicker(time.Duration(tick) * time.Millisecond),
speed: 1,
times: 1,
quit: make(chan struct{}),
toBeExecuteds: make(chan ExecuteFunc, 1024),
2023-08-04 11:02:08 +08:00
}
}
2023-08-15 16:48:55 +08:00
func (w *world) Running() bool {
return w.state == Running
}
2023-08-15 09:17:22 +08:00
func (w *world) Tick() int {
return w.tick
}
2023-08-04 11:02:08 +08:00
func (w *world) Id() WorldId {
return WorldId(w.world.Id())
}
2023-08-04 16:56:36 +08:00
func (w *world) Create(components ...donburi.IComponentType) *Entry {
2023-08-04 13:19:59 +08:00
entity := w.world.Create(components...)
2023-08-04 16:56:36 +08:00
return &Entry{w.world.Entry(entity)}
2023-08-04 11:02:08 +08:00
}
2023-08-04 16:56:36 +08:00
func (w *world) CreateMany(n int, components ...donburi.IComponentType) []*Entry {
2023-08-04 11:02:08 +08:00
entitys := w.world.CreateMany(n, components...)
2023-08-04 16:56:36 +08:00
ets := make([]*Entry, len(entitys))
2023-08-04 11:02:08 +08:00
for i, e := range entitys {
2023-08-04 16:56:36 +08:00
ets[i] = &Entry{w.world.Entry(e)}
2023-08-04 11:02:08 +08:00
}
return ets
}
func (w *world) Entry(entity Entity) *Entry {
return &Entry{w.world.Entry(entity.Entity)}
}
func (w *world) Remove(entity Entity) {
w.world.Remove(entity.Entity)
}
func (w *world) Valid(e Entity) bool {
return w.world.Valid(e.Entity)
}
func (w *world) Len() int {
return w.world.Len()
}
// 添加系统
func (w *world) AddSystem(sys ...ISystem) {
w.systems = append(w.systems, sys...)
}
// 执行所有事件处理
func (w *world) ProcessAllEvents() {
events.ProcessAllEvents(w.world)
}
// 暂停世界
func (w *world) Pause() {
if w.state == Running {
w.state = Pause
}
}
// 恢复世界运行
func (w *world) Resume() {
if w.state == Pause {
w.state = Running
}
}
const (
SpeedMin = 0.1
SpeedMax = 10
)
// 设置世界运行速度
func (w *world) SetSpeed(speed float64) error {
if speed < SpeedMin || speed > SpeedMax {
return fmt.Errorf("速度必须在[%f, %d]之间", SpeedMin, SpeedMax)
}
w.speed = speed
return nil
}
// 启动世界,世界逻辑开始执行且世界为运行状态
func (w *world) StartUp() {
if w.state == Init { // 避免重复运行
w.state = Running
go w.run()
}
}
// 在世界线程执行逻辑
func (w *world) Execute(fn ExecuteFunc) {
w.toBeExecuteds <- fn
}
2023-08-04 11:02:08 +08:00
// 关闭世界
func (w *world) Close() {
w.quit <- struct{}{}
}
2023-08-31 16:19:41 +08:00
// 事件管理相关处理
func (w *world) processManageEventFuncs() {
manageEventChan := w.toBeExecuteds
2023-08-31 16:19:41 +08:00
for {
select {
case callBack := <-manageEventChan:
{
callBack()
}
default:
return
}
}
}
2023-08-04 11:02:08 +08:00
func (w *world) run() {
for {
select {
case <-w.quit: // 退出信号
// 仿真退出,更新状态
2023-08-04 11:02:08 +08:00
log.Println("仿真退出,id:", w.world.Id())
w.state = Closed
default:
}
if w.state == Error {
// 世界错误,关闭世界
2023-08-04 11:02:08 +08:00
return
}
if w.state == Closed {
// 世界正常关闭
2023-08-04 11:02:08 +08:00
return
}
<-w.ticker.C
2023-08-04 11:02:08 +08:00
if w.state == Pause { // 暂停不更新
continue
}
if w.times > 1 {
times := int(math.Floor(w.times))
for i := 0; i < times; i++ {
for _, sys := range w.systems {
sys.Update(w)
}
// 处理事件管理相关
w.processManageEventFuncs()
// 处理所有事件
processAllEvents(w)
}
w.times = w.times - float64(times) + w.speed
} else {
w.times += w.speed
2023-08-04 11:02:08 +08:00
}
}
}