锁步(帧)同步实现
This commit is contained in:
parent
644c520454
commit
e6d2eabb65
|
@ -0,0 +1,5 @@
|
||||||
|
package lockstep
|
||||||
|
|
||||||
|
const (
|
||||||
|
tickerFrameName = "LOCKSTEP_FRAME"
|
||||||
|
)
|
|
@ -0,0 +1,10 @@
|
||||||
|
package lockstep
|
||||||
|
|
||||||
|
type Frame[Command any] interface {
|
||||||
|
// GetIndex 获取这一帧的索引
|
||||||
|
GetIndex() uint32
|
||||||
|
// GetCommands 获取这一帧的数据
|
||||||
|
GetCommands() []Command
|
||||||
|
// Marshal 序列化帧数据
|
||||||
|
Marshal() ([]byte, error)
|
||||||
|
}
|
|
@ -0,0 +1,97 @@
|
||||||
|
package lockstep
|
||||||
|
|
||||||
|
import (
|
||||||
|
"minotaur/utils/synchronization"
|
||||||
|
"minotaur/utils/timer"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
func New[WriterID comparable, FrameCommand any]() *Lockstep[WriterID, FrameCommand] {
|
||||||
|
lockstep := &Lockstep[WriterID, FrameCommand]{
|
||||||
|
ticker: timer.GetTicker(30),
|
||||||
|
writers: synchronization.NewMap[WriterID, Writer[WriterID, FrameCommand]](),
|
||||||
|
writerCurrentFrame: synchronization.NewMap[WriterID, uint32](),
|
||||||
|
frames: map[uint32]Frame[FrameCommand]{},
|
||||||
|
}
|
||||||
|
return lockstep
|
||||||
|
}
|
||||||
|
|
||||||
|
type Lockstep[WriterID comparable, FrameCommand any] struct {
|
||||||
|
FrameLimit uint32 // 帧数上限
|
||||||
|
FrameRate uint32 // 帧率(每秒的帧数)
|
||||||
|
FrameBroadcastInterval uint32 // 帧数广播间隔帧数
|
||||||
|
FrameOnceLimit uint32 // 每次消息最大容纳帧数
|
||||||
|
|
||||||
|
ticker *timer.Ticker // 定时器
|
||||||
|
writers *synchronization.Map[WriterID, Writer[WriterID, FrameCommand]] // 被广播的对象
|
||||||
|
writerCurrentFrame *synchronization.Map[WriterID, uint32] // 被广播的对象当前帧
|
||||||
|
currentFrame uint32 // 当前帧
|
||||||
|
currentClientFrame uint32 // 当前客户端帧数
|
||||||
|
frames map[uint32]Frame[FrameCommand] // 所有帧
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetWriter 设置需要被广播的 Writer
|
||||||
|
func (slf *Lockstep[WriterID, FrameCommand]) SetWriter(writer ...Writer[WriterID, FrameCommand]) {
|
||||||
|
for _, w := range writer {
|
||||||
|
slf.writers.Set(w.GetID(), w)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (slf *Lockstep[WriterID, FrameCommand]) Run() {
|
||||||
|
slf.Release()
|
||||||
|
slf.ticker.Loop(tickerFrameName, timer.Instantly, time.Second/time.Duration(slf.FrameRate), timer.Forever, slf.tick)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (slf *Lockstep[WriterID, FrameCommand]) Release() {
|
||||||
|
slf.ticker.StopTimer(tickerFrameName)
|
||||||
|
slf.writers.Clear()
|
||||||
|
slf.writerCurrentFrame.Clear()
|
||||||
|
slf.currentFrame = 0
|
||||||
|
slf.currentClientFrame = 0
|
||||||
|
for k := range slf.frames {
|
||||||
|
delete(slf.frames, k)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (slf *Lockstep[WriterID, FrameCommand]) tick() {
|
||||||
|
if slf.FrameLimit > 0 && slf.currentFrame >= slf.FrameLimit {
|
||||||
|
slf.ticker.StopTimer(tickerFrameName)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
slf.currentFrame++
|
||||||
|
|
||||||
|
if slf.currentFrame-slf.currentClientFrame < slf.FrameBroadcastInterval {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
slf.writers.RangeSkip(func(id WriterID, writer Writer[WriterID, FrameCommand]) bool {
|
||||||
|
|
||||||
|
if !writer.Healthy() {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
var frameCounter uint32
|
||||||
|
var frames = make(map[uint32]Frame[FrameCommand])
|
||||||
|
for i := slf.writerCurrentFrame.Get(id); i < slf.currentFrame; i++ {
|
||||||
|
var frame = slf.frames[i]
|
||||||
|
if frame == nil && i != (slf.currentFrame-1) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
frames[frame.GetIndex()] = frame
|
||||||
|
frameCounter++
|
||||||
|
if i == slf.currentFrame-1 || frameCounter >= slf.FrameOnceLimit {
|
||||||
|
data := writer.Marshal(frames)
|
||||||
|
writer.Write(data)
|
||||||
|
frameCounter = 0
|
||||||
|
for k := range frames {
|
||||||
|
delete(frames, k)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
slf.currentClientFrame = slf.currentFrame
|
||||||
|
|
||||||
|
return true
|
||||||
|
})
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
package lockstep
|
||||||
|
|
||||||
|
type Writer[ID comparable, FrameCommand any] interface {
|
||||||
|
GetID() ID
|
||||||
|
Healthy() bool
|
||||||
|
Marshal(frames map[uint32]Frame[FrameCommand]) []byte
|
||||||
|
Write(data []byte) error
|
||||||
|
}
|
4
main.go
4
main.go
|
@ -1,6 +1,8 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import "minotaur/server"
|
import (
|
||||||
|
"minotaur/server"
|
||||||
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
s := server.New(server.NetworkKcp)
|
s := server.New(server.NetworkKcp)
|
||||||
|
|
|
@ -8,6 +8,7 @@ func NewMap[Key comparable, value any]() *Map[Key, value] {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Map 并发安全的字典数据结构
|
||||||
type Map[Key comparable, Value any] struct {
|
type Map[Key comparable, Value any] struct {
|
||||||
lock sync.RWMutex
|
lock sync.RWMutex
|
||||||
data map[Key]Value
|
data map[Key]Value
|
||||||
|
@ -78,6 +79,14 @@ func (slf *Map[Key, Value]) DeleteExist(key Key) bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (slf *Map[Key, Value]) Clear() {
|
||||||
|
slf.lock.Lock()
|
||||||
|
defer slf.lock.Unlock()
|
||||||
|
for k := range slf.data {
|
||||||
|
delete(slf.data, k)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (slf *Map[Key, Value]) Range(handle func(key Key, value Value)) {
|
func (slf *Map[Key, Value]) Range(handle func(key Key, value Value)) {
|
||||||
slf.lock.RLock()
|
slf.lock.RLock()
|
||||||
defer slf.lock.RUnlock()
|
defer slf.lock.RUnlock()
|
||||||
|
|
Loading…
Reference in New Issue