summaryrefslogtreecommitdiff
path: root/sw-common-model/src/commonMain/kotlin
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2020-01-23 01:40:57 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2020-01-23 01:41:51 +0100
commit4bb8e2043f2f7a79eafd78d3626c9807b44e62cf (patch)
tree2f8f00f72197a27dded49d9d57e17c7b8e24352d /sw-common-model/src/commonMain/kotlin
parentFix server URL in react frontend (diff)
downloadseven-wonders-4bb8e2043f2f7a79eafd78d3626c9807b44e62cf.tar.gz
seven-wonders-4bb8e2043f2f7a79eafd78d3626c9807b44e62cf.tar.bz2
seven-wonders-4bb8e2043f2f7a79eafd78d3626c9807b44e62cf.zip
Add kotlinx.serialization support to common model
Diffstat (limited to 'sw-common-model/src/commonMain/kotlin')
-rw-r--r--sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/CustomizableSettings.kt2
-rw-r--r--sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/GameState.kt2
-rw-r--r--sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt4
-rw-r--r--sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/Api.kt4
-rw-r--r--sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/actions/Actions.kt7
-rw-r--r--sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/errors/Errors.kt6
-rw-r--r--sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/boards/Boards.kt6
-rw-r--r--sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/cards/Cards.kt8
-rw-r--r--sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/resources/Resources.kt4
-rw-r--r--sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/wonders/Wonders.kt4
10 files changed, 45 insertions, 2 deletions
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/CustomizableSettings.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/CustomizableSettings.kt
index e23a05a1..86a11bc1 100644
--- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/CustomizableSettings.kt
+++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/CustomizableSettings.kt
@@ -1,7 +1,9 @@
package org.luxons.sevenwonders.model
+import kotlinx.serialization.Serializable
import kotlin.random.Random
+@Serializable
data class CustomizableSettings(
val randomSeedForTests: Long? = null,
val timeLimitInSeconds: Int = 45,
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/GameState.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/GameState.kt
index 3de605b2..29423cd7 100644
--- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/GameState.kt
+++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/GameState.kt
@@ -1,10 +1,12 @@
package org.luxons.sevenwonders.model
+import kotlinx.serialization.Serializable
import org.luxons.sevenwonders.model.boards.Board
import org.luxons.sevenwonders.model.cards.HandRotationDirection
typealias Age = Int
+@Serializable
data class GameState(
val boards: List<Board>,
val currentAge: Age,
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt
index 8206ec8d..05b95b17 100644
--- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt
+++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt
@@ -1,5 +1,6 @@
package org.luxons.sevenwonders.model
+import kotlinx.serialization.Serializable
import org.luxons.sevenwonders.model.cards.HandCard
import org.luxons.sevenwonders.model.cards.TableCard
import org.luxons.sevenwonders.model.resources.ResourceTransactions
@@ -14,6 +15,7 @@ enum class Action(val message: String) {
WAIT("Please wait for other players to perform extra actions.")
}
+@Serializable
data class PlayerTurnInfo(
val playerIndex: Int,
val table: GameState,
@@ -27,6 +29,7 @@ data class PlayerTurnInfo(
val wonderBuildability: WonderBuildability = table.boards[playerIndex].wonder.buildability
}
+@Serializable
data class PlayedMove(
val playerIndex: Int,
val type: MoveType,
@@ -34,6 +37,7 @@ data class PlayedMove(
val transactions: ResourceTransactions
)
+@Serializable
data class PlayerMove(
val type: MoveType,
val cardName: String,
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/Api.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/Api.kt
index 04c7ef2f..c691a89d 100644
--- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/Api.kt
+++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/Api.kt
@@ -1,11 +1,14 @@
package org.luxons.sevenwonders.model.api
+import kotlinx.serialization.Serializable
+
const val SEVEN_WONDERS_WS_ENDPOINT = "/seven-wonders-websocket"
enum class State {
LOBBY, PLAYING
}
+@Serializable
data class LobbyDTO(
val id: Long,
val name: String,
@@ -14,6 +17,7 @@ data class LobbyDTO(
val state: State
)
+@Serializable
data class PlayerDTO(
val username: String,
val displayName: String,
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/actions/Actions.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/actions/Actions.kt
index 59bc2e5b..773e703f 100644
--- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/actions/Actions.kt
+++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/actions/Actions.kt
@@ -1,11 +1,13 @@
package org.luxons.sevenwonders.model.api.actions
+import kotlinx.serialization.Serializable
import org.luxons.sevenwonders.model.CustomizableSettings
import org.luxons.sevenwonders.model.PlayerMove
/**
* The action to choose the player's name. This is the first action that should be called.
*/
+@Serializable
class ChooseNameAction(
/**
* The display name of the player. May contain spaces and special characters.
@@ -16,6 +18,7 @@ class ChooseNameAction(
/**
* The action to create a game.
*/
+@Serializable
class CreateGameAction(
/**
* The name of the game to create.
@@ -26,6 +29,7 @@ class CreateGameAction(
/**
* The action to join a game.
*/
+@Serializable
class JoinGameAction(
/**
* The ID of the game to join.
@@ -36,6 +40,7 @@ class JoinGameAction(
/**
* The action to prepare the next move during a game.
*/
+@Serializable
class PrepareMoveAction(
/**
* The move to prepare.
@@ -47,6 +52,7 @@ class PrepareMoveAction(
* The action to update the order of the players around the table. Can only be called in the lobby by the owner of the
* game.
*/
+@Serializable
class ReorderPlayersAction(
/**
* The list of usernames of the players, in the new order.
@@ -57,6 +63,7 @@ class ReorderPlayersAction(
/**
* The action to update the settings of the game. Can only be called in the lobby by the owner of the game.
*/
+@Serializable
class UpdateSettingsAction(
/**
* The new values for the settings.
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/errors/Errors.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/errors/Errors.kt
index f668f020..dea6ce5b 100644
--- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/errors/Errors.kt
+++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/errors/Errors.kt
@@ -1,9 +1,12 @@
package org.luxons.sevenwonders.model.api.errors
+import kotlinx.serialization.Serializable
+
enum class ErrorType {
VALIDATION, CLIENT, SERVER
}
+@Serializable
data class ErrorDTO(
val code: String,
val message: String,
@@ -11,8 +14,9 @@ data class ErrorDTO(
val details: List<ValidationErrorDTO> = emptyList()
)
+@Serializable
data class ValidationErrorDTO(
val path: String,
val message: String,
- val rejectedValue: Any? = null
+ val rejectedValue: String? = null
)
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/boards/Boards.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/boards/Boards.kt
index d06e203d..cdf5b65c 100644
--- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/boards/Boards.kt
+++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/boards/Boards.kt
@@ -1,10 +1,12 @@
package org.luxons.sevenwonders.model.boards
+import kotlinx.serialization.Serializable
import org.luxons.sevenwonders.model.cards.TableCard
import org.luxons.sevenwonders.model.resources.CountedResource
import org.luxons.sevenwonders.model.resources.ResourceType
import org.luxons.sevenwonders.model.wonders.ApiWonder
+@Serializable
data class Board(
val playerIndex: Int,
val wonder: ApiWonder,
@@ -16,22 +18,26 @@ data class Board(
val gold: Int
)
+@Serializable
data class Requirements(
val gold: Int = 0,
val resources: List<CountedResource> = emptyList()
)
+@Serializable
data class Production(
val fixedResources: List<CountedResource>,
val alternativeResources: Set<Set<ResourceType>>
)
+@Serializable
data class Military(
val nbShields: Int,
val totalPoints: Int,
val nbDefeatTokens: Int
)
+@Serializable
data class Science(
val jokers: Int,
val nbWheels: Int,
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/cards/Cards.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/cards/Cards.kt
index 11a3e8d8..c538b3bf 100644
--- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/cards/Cards.kt
+++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/cards/Cards.kt
@@ -1,9 +1,11 @@
package org.luxons.sevenwonders.model.cards
+import kotlinx.serialization.Serializable
import org.luxons.sevenwonders.model.api.PlayerDTO
import org.luxons.sevenwonders.model.boards.Requirements
import org.luxons.sevenwonders.model.resources.ResourceTransactions
+@Serializable
data class TableCard(
val name: String,
val color: Color,
@@ -19,6 +21,7 @@ data class TableCard(
* A card with contextual information relative to the hand it is sitting in. The extra information is especially useful
* because it frees the client from a painful business logic implementation.
*/
+@Serializable
data class HandCard(
val name: String,
val color: Color,
@@ -30,11 +33,13 @@ data class HandCard(
val playability: CardPlayability
)
-class PreparedCard(
+@Serializable
+data class PreparedCard(
val player: PlayerDTO,
val cardBack: CardBack
)
+@Serializable
data class CardBack(val image: String)
enum class PlayabilityLevel {
@@ -60,6 +65,7 @@ enum class Color(val isResource: Boolean) {
PURPLE(false)
}
+@Serializable
data class CardPlayability(
val isPlayable: Boolean,
val isChainable: Boolean = false,
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/resources/Resources.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/resources/Resources.kt
index 905f8abf..7368fbd1 100644
--- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/resources/Resources.kt
+++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/resources/Resources.kt
@@ -1,5 +1,6 @@
package org.luxons.sevenwonders.model.resources
+import kotlinx.serialization.Serializable
import org.luxons.sevenwonders.model.boards.RelativeBoardPosition
enum class ResourceType(val symbol: Char) {
@@ -27,16 +28,19 @@ enum class ResourceType(val symbol: Char) {
}
}
+@Serializable
data class CountedResource(
val count: Int,
val type: ResourceType
)
+@Serializable
enum class Provider(val boardPosition: RelativeBoardPosition) {
LEFT_PLAYER(RelativeBoardPosition.LEFT),
RIGHT_PLAYER(RelativeBoardPosition.RIGHT)
}
+@Serializable
data class ResourceTransaction(val provider: Provider, val resources: List<CountedResource>)
typealias ResourceTransactions = Collection<ResourceTransaction>
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/wonders/Wonders.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/wonders/Wonders.kt
index a6273c5a..e48a37d0 100644
--- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/wonders/Wonders.kt
+++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/wonders/Wonders.kt
@@ -1,11 +1,13 @@
package org.luxons.sevenwonders.model.wonders
+import kotlinx.serialization.Serializable
import org.luxons.sevenwonders.model.boards.Requirements
import org.luxons.sevenwonders.model.cards.CardBack
import org.luxons.sevenwonders.model.cards.PlayabilityLevel
import org.luxons.sevenwonders.model.resources.ResourceTransactions
import org.luxons.sevenwonders.model.resources.ResourceType
+@Serializable
data class ApiWonder(
val name: String,
val initialResource: ResourceType,
@@ -15,6 +17,7 @@ data class ApiWonder(
val buildability: WonderBuildability
)
+@Serializable
data class ApiWonderStage(
val cardBack: CardBack?,
val isBuilt: Boolean,
@@ -22,6 +25,7 @@ data class ApiWonderStage(
val builtDuringLastMove: Boolean
)
+@Serializable
data class WonderBuildability(
val isBuildable: Boolean,
val minPrice: Int = Int.MAX_VALUE,
bgstack15