knowyt/server/src/game/struct.go
2021-09-20 10:41:34 +02:00

75 lines
1.2 KiB
Go

package game
import (
"sirlab.de/go/knyt/engine"
"sirlab.de/go/knyt/quote"
"sync"
)
const (
STATE_ANY = "*"
STATE_IDLE = "idle"
STATE_READY_SET = "ready-set"
STATE_PLAY = "play"
)
const (
PHASE_NONE = ""
PHASE_SELECT_QUOTE = "select-quote"
PHASE_REVEAL_START = "reveal-start"
PHASE_REVEAL_SHOW_COUNT = "reveal-show-count"
PHASE_REVEAL_SOURCE = "reveal-source"
PHASE_ROUND_END = "round-end"
)
const (
PLAYER_SELECTION_EMPTY = ""
PLAYER_SELECTION_NONE = "-"
)
type playerInfo struct {
id string
name string
isPlaying bool
isIdle bool
score int
}
type Source struct {
id string
name string
}
type Revelation struct {
votes map[string][]string
sources map[string]bool
}
type Round struct {
quoteId string
selections map[string]string
sources []Source
revelation Revelation
}
type Game struct {
mu sync.Mutex
id string
name string
players map[string]playerInfo
eng *engine.Engine
state string
phase string
quotes map[string]*quote.Quote
round Round
}
type GameJson struct {
Name string `json:"name"`
}
type GameStateJson struct {
Scores map[string]int `json:"scores"`
QuotesPlayed []string `json:"quotesPlayed"`
}