73 lines
1.7 KiB
Go
73 lines
1.7 KiB
Go
package game
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/google/uuid"
|
|
e "github.com/iliadenisov/galaxy/pkg/error"
|
|
)
|
|
|
|
type Game struct {
|
|
ID uuid.UUID `json:"id"`
|
|
Age uint `json:"turn"` // Game's turn number
|
|
Map Map `json:"map"`
|
|
Race []Race `json:"races"`
|
|
}
|
|
|
|
func (g Game) Votes(raceID uuid.UUID) float64 {
|
|
// XXX: calculate [Race]Population once when loading Game from Storage?
|
|
var pop float64
|
|
for i := range g.Map.Planet {
|
|
if g.Map.Planet[i].Owner == raceID {
|
|
pop += g.Map.Planet[i].Population
|
|
}
|
|
}
|
|
return pop / 1000.
|
|
}
|
|
|
|
func (g Game) HostRaceID(name string) (uuid.UUID, error) {
|
|
if v, ok := g.raceID(name); ok {
|
|
return v, nil
|
|
}
|
|
return uuid.Nil, e.NewHostRaceUnknownError(name)
|
|
}
|
|
|
|
func (g Game) OpponentRaceID(name string) (uuid.UUID, error) {
|
|
if v, ok := g.raceID(name); ok {
|
|
return v, nil
|
|
}
|
|
return uuid.Nil, e.NewOpponentRaceUnknownError(name)
|
|
}
|
|
|
|
func (g Game) raceID(raceName string) (uuid.UUID, bool) {
|
|
for i := range g.Race {
|
|
if g.Race[i].Name == raceName {
|
|
return g.Race[i].ID, true
|
|
}
|
|
}
|
|
return uuid.Nil, false
|
|
}
|
|
|
|
func (g Game) UpdateRelation(hostID, opponentID uuid.UUID, rel Relation) error {
|
|
for r := range g.Race {
|
|
if g.Race[r].ID == hostID {
|
|
for o := range g.Race[r].Relations {
|
|
if g.Race[r].Relations[o].RaceID == opponentID {
|
|
g.Race[r].Relations[o].Relation = rel
|
|
return nil
|
|
}
|
|
}
|
|
return e.NewGameStateError("UpdateRelation: opponent not found")
|
|
}
|
|
}
|
|
return e.NewGameStateError("UpdateRelation: host %v not found", hostID)
|
|
}
|
|
|
|
func (g Game) MarshalBinary() (data []byte, err error) {
|
|
return json.Marshal(&g)
|
|
}
|
|
|
|
func (g *Game) UnmarshalBinary(data []byte) error {
|
|
return json.Unmarshal(data, g)
|
|
}
|