30 lines
506 B
Go
30 lines
506 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("quote 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
|
|
}
|