Adjust table info generation

This commit is contained in:
Christoph Hagen
2021-12-09 11:17:11 +01:00
parent 3e85c01809
commit 445363307b
3 changed files with 11 additions and 5 deletions

View File

@ -27,15 +27,16 @@ struct TableInfo: Codable {
init(id: String, name: String,
own: PlayerInfo, left: PlayerInfo?,
across: PlayerInfo?, right: PlayerInfo?,
games: [GameId] = [], actions: [PlayerAction],
cards: [PlayableCard], selectGame: Bool = false) {
games: [GameType] = [], actions: [PlayerAction],
cards: [PlayableCard],
selectGame: Bool = false) {
self.id = id
self.name = name
self.player = own
self.playerLeft = left
self.playerAcross = across
self.playerRight = right
self.playableGames = games
self.playableGames = games.map { $0.id }
self.actions = actions.map { $0.path }
self.cards = cards.map { $0.cardInfo }
self.playerSelectsGame = selectGame