Adjust table info generation
This commit is contained in:
parent
3e85c01809
commit
445363307b
@ -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
|
||||
|
@ -1,7 +1,5 @@
|
||||
import Foundation
|
||||
|
||||
typealias GameId = String
|
||||
|
||||
extension GameType {
|
||||
|
||||
var gameClass: GameClass {
|
||||
|
@ -1,5 +1,8 @@
|
||||
import Foundation
|
||||
|
||||
/// The string id of a game
|
||||
typealias GameId = String
|
||||
|
||||
enum GameType: String, CaseIterable, Codable {
|
||||
|
||||
case rufEichel = "ruf-eichel"
|
||||
@ -14,6 +17,10 @@ enum GameType: String, CaseIterable, Codable {
|
||||
case soloHerz = "solo-herz"
|
||||
case soloSchelln = "solo-schelln"
|
||||
|
||||
init?(id: GameId) {
|
||||
self.init(rawValue: id)
|
||||
}
|
||||
|
||||
var isCall: Bool {
|
||||
switch self {
|
||||
case .rufEichel, .rufBlatt, .rufSchelln:
|
||||
|
Loading…
Reference in New Issue
Block a user