From 23716615bf0c1304d60e759002c161bf713fecbb Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Thu, 25 Mar 2021 21:21:08 +0100 Subject: [PATCH] Fixed bug that prevented a random model from being loaded when navigating to the viewer without /models or /textures or parameters. --- .../web/viewer/stores/ViewerStore.kt | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/web/src/main/kotlin/world/phantasmal/web/viewer/stores/ViewerStore.kt b/web/src/main/kotlin/world/phantasmal/web/viewer/stores/ViewerStore.kt index 29a9ebb2..78d53b14 100644 --- a/web/src/main/kotlin/world/phantasmal/web/viewer/stores/ViewerStore.kt +++ b/web/src/main/kotlin/world/phantasmal/web/viewer/stores/ViewerStore.kt @@ -28,9 +28,10 @@ class ViewerStore( ) : Store() { private val _currentNinjaObject = mutableVal?>(null) private val _currentTextures = mutableListVal() - private val _currentCharacterClass = mutableVal(null) - private val _currentSectionId = mutableVal(SectionId.Viridia) - private val _currentBody = mutableVal(0) + private val _currentCharacterClass = mutableVal(CharacterClass.VALUES.random()) + private val _currentSectionId = mutableVal(SectionId.VALUES.random()) + private val _currentBody = + mutableVal((1.._currentCharacterClass.value!!.bodyStyleCount).random()) private val _currentNinjaMotion = mutableVal(null) // Settings @@ -55,9 +56,9 @@ class ViewerStore( MODEL_PARAM, setInitialValue = { initialValue -> if (uiStore.path.value.startsWith(path)) { - _currentCharacterClass.value = - CharacterClass.VALUES.find { it.slug == initialValue } - ?: CharacterClass.VALUES.random() + CharacterClass.VALUES.find { it.slug == initialValue }?.let { + _currentCharacterClass.value = it + } } }, value = currentCharacterClass.map { it?.slug }, @@ -76,9 +77,9 @@ class ViewerStore( SECTION_ID_PARAM, setInitialValue = { initialValue -> if (uiStore.path.value.startsWith(path)) { - _currentSectionId.value = - initialValue?.let { enumValueOfOrNull(it) } - ?: SectionId.VALUES.random() + initialValue?.let { enumValueOfOrNull(it) }?.let { + _currentSectionId.value = it + } } }, value = currentSectionId.map { it.name }, @@ -99,11 +100,10 @@ class ViewerStore( setInitialValue = { initialValue -> if (uiStore.path.value.startsWith(path)) { val maxBody = _currentCharacterClass.value?.bodyStyleCount ?: 1 - _currentBody.value = ( - initialValue?.toIntOrNull() - ?.takeIf { it <= maxBody } - ?: (1..maxBody).random() - ) - 1 + + initialValue?.toIntOrNull()?.takeIf { it <= maxBody }?.let { + _currentBody.value = it - 1 + } } }, value = currentBody.map { (it + 1).toString() },