You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
1.9 KiB
Go

package sim
4 years ago
import (
"time"
"github.com/jordanorelli/astro-domu/internal/wire"
4 years ago
"github.com/jordanorelli/blammo"
)
// World is the entire simulated world. A world consists of many rooms.
type World struct {
4 years ago
*blammo.Log
Inbox chan Request
rooms []room
done chan bool
lastEntityID int
players map[string]*player
4 years ago
}
func NewWorld(log *blammo.Log) *World {
foyer := room{
Log: log.Child("foyer"),
name: "foyer",
origin: point{0, 0},
width: 10,
height: 10,
tiles: make([]tile, 100),
players: make(map[string]*player),
}
4 years ago
return &World{
Log: log,
rooms: []room{foyer},
done: make(chan bool),
Inbox: make(chan Request),
players: make(map[string]*player),
4 years ago
}
}
func (w *World) Run(hz int) {
defer w.Info("simulation has exited run loop")
4 years ago
period := time.Second / time.Duration(hz)
w.Info("starting world with a tick rate of %dhz, frame duration of %v", hz, period)
ticker := time.NewTicker(period)
lastTick := time.Now()
4 years ago
for {
select {
case req := <-w.Inbox:
w.Info("read from inbox: %v", req)
if req.From == "" {
w.Error("request has no from: %v", req)
break
}
if spawn, ok := req.Wants.(*SpawnPlayer); ok {
if _, ok := w.players[req.From]; ok {
spawn.Outbox <- wire.ErrorResponse(req.Seq, "a player is already logged in as %q", req.From)
break
}
4 years ago
spawn.exec(&w.rooms[0], nil, req.Seq)
p := w.rooms[0].players[req.From]
w.players[req.From] = p
break
}
p, ok := w.players[req.From]
if !ok {
w.Error("received non login request of type %T from unknown player %q", req.Wants, req.From)
}
p.pending = append(p.pending, req)
4 years ago
case <-ticker.C:
w.tick(time.Since(lastTick))
lastTick = time.Now()
case <-w.done:
return
4 years ago
}
}
}
func (w *World) Stop() error {
w.Info("stopping simulation")
w.done <- true
return nil
}
4 years ago
func (w *World) tick(d time.Duration) {
for _, r := range w.rooms {
r.update(d)
}
}