From dc62219e281641543cad6ece532f47c79fd19b3f Mon Sep 17 00:00:00 2001 From: joffrey-bion Date: Wed, 10 Feb 2021 02:02:46 +0100 Subject: Clean games when all humans have left Resolves: https://github.com/joffrey-bion/seven-wonders/issues/113 --- .../kotlin/org/luxons/sevenwonders/model/api/actions/Actions.kt | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'sw-common-model/src') 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 8d352402..48b26aa4 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 @@ -4,6 +4,8 @@ import kotlinx.serialization.Serializable import org.luxons.sevenwonders.model.PlayerMove import org.luxons.sevenwonders.model.Settings import org.luxons.sevenwonders.model.wonders.AssignedWonder +import kotlin.time.ExperimentalTime +import kotlin.time.hours /** * The action to choose the player's name. This is the first action that should be called. @@ -101,11 +103,16 @@ class UpdateSettingsAction( * The action to add a bot to the game. Can only be called in the lobby by the owner of the game. */ @Serializable +@OptIn(ExperimentalTime::class) class AddBotAction( /** * The display name for the bot to add. */ val botDisplayName: String, + /** + * The global timeout for the bot, after which it disconnects (whether the game is over or not). + */ + val globalBotTimeoutMillis: Long = 6.hours.toLongMilliseconds(), /** * The configuration of the bot to add. */ -- cgit