Feat: card counter

This commit is contained in:
Grail Finder
2025-05-10 14:35:24 +03:00
parent 35e215e26f
commit 321b79b258
6 changed files with 51 additions and 0 deletions

View File

@ -65,6 +65,17 @@ func HandleShowColor(w http.ResponseWriter, r *http.Request) {
Revealed: true,
}
fi.Room.RevealSpecificWord(word)
fi.Room.UpdateCounter()
// if opened card is of color of opp team, change turn
switch color {
case "black":
// game over
fi.Room.IsRunning = false
fi.Room.IsOver = true
case "white", fi.Room.GetOppositeTeamColor():
// end turn
fi.Room.TeamTurn = fi.Room.GetOppositeTeamColor()
}
if err := saveFullInfo(fi); err != nil {
abortWithError(w, err.Error())
return

View File

@ -196,6 +196,7 @@ func HandleStartGame(w http.ResponseWriter, r *http.Request) {
abortWithError(w, err.Error())
return
}
fi.Room.UpdateCounter()
// reveal all cards
if fi.State.Role == "mime" {
fi.Room.RevealAllCards()

View File

@ -70,6 +70,8 @@ func HandleHome(w http.ResponseWriter, r *http.Request) {
if fi != nil && fi.Room != nil && fi.State != nil {
if fi.State.Role == "mime" {
fi.Room.RevealAllCards()
} else {
fi.Room.UpdateCounter()
}
}
if fi != nil && fi.Room == nil {