knowyt/server/src/game/getQuote.go
2021-09-11 14:03:44 +02:00

30 lines
507 B
Go

package game
import (
"fmt"
"sirlab.de/go/knyt/quote"
)
func (gm *Game) getQuoteById(id string) (*quote.Quote, error) {
gm.mu.Lock()
defer gm.mu.Unlock()
quote := gm.quotes[id]
if quote == nil {
return nil, fmt.Errorf("player id \"%s\" not found in game\n", id)
}
return quote, nil
}
func (gm *Game) getAllQuotes() []*quote.Quote {
gm.mu.Lock()
defer gm.mu.Unlock()
quotes := make([]*quote.Quote, 0)
for _, quote := range gm.quotes {
quotes = append(quotes, quote)
}
return quotes
}