From 2ab0baa3b5c79ad5716d39b869a1861a3b4b3235 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Fri, 26 Mar 2021 18:35:09 +0100 Subject: [PATCH] Added animation play/pause toggle to the viewer again. --- .../world/phantasmal/web/externals/three/three.kt | 2 +- .../viewer/controllers/ViewerToolbarController.kt | 5 +++++ .../phantasmal/web/viewer/rendering/MeshRenderer.kt | 13 +++++++++++++ .../phantasmal/web/viewer/stores/ViewerStore.kt | 8 ++++++++ .../phantasmal/web/viewer/widgets/ViewerToolbar.kt | 5 +++++ 5 files changed, 32 insertions(+), 1 deletion(-) diff --git a/web/src/main/kotlin/world/phantasmal/web/externals/three/three.kt b/web/src/main/kotlin/world/phantasmal/web/externals/three/three.kt index f3b34e43..7a3722ae 100644 --- a/web/src/main/kotlin/world/phantasmal/web/externals/three/three.kt +++ b/web/src/main/kotlin/world/phantasmal/web/externals/three/three.kt @@ -784,7 +784,7 @@ external class AnimationAction( ) { var time: Double var timeScale: Double - val paused: Boolean + var paused: Boolean fun play(): AnimationAction fun stop(): AnimationAction diff --git a/web/src/main/kotlin/world/phantasmal/web/viewer/controllers/ViewerToolbarController.kt b/web/src/main/kotlin/world/phantasmal/web/viewer/controllers/ViewerToolbarController.kt index c5b845c8..18aef405 100644 --- a/web/src/main/kotlin/world/phantasmal/web/viewer/controllers/ViewerToolbarController.kt +++ b/web/src/main/kotlin/world/phantasmal/web/viewer/controllers/ViewerToolbarController.kt @@ -23,6 +23,7 @@ class ViewerToolbarController(private val store: ViewerStore) : Controller() { private val _result = mutableVal?>(null) val showSkeleton: Val = store.showSkeleton + val playAnimation: Val = store.animationPlaying val clearCurrentAnimationButtonEnabled = store.currentNinjaMotion.isNotNull() val resultDialogVisible: Val = _resultDialogVisible val result: Val?> = _result @@ -37,6 +38,10 @@ class ViewerToolbarController(private val store: ViewerStore) : Controller() { store.setShowSkeleton(show) } + fun setPlayAnimation(play: Boolean) { + store.setAnimationPlaying(play) + } + suspend fun clearCurrentAnimation() { store.setCurrentAnimation(null) } diff --git a/web/src/main/kotlin/world/phantasmal/web/viewer/rendering/MeshRenderer.kt b/web/src/main/kotlin/world/phantasmal/web/viewer/rendering/MeshRenderer.kt index a87fb588..39316f8b 100644 --- a/web/src/main/kotlin/world/phantasmal/web/viewer/rendering/MeshRenderer.kt +++ b/web/src/main/kotlin/world/phantasmal/web/viewer/rendering/MeshRenderer.kt @@ -47,6 +47,7 @@ class MeshRenderer( observe(viewerStore.currentTextures) { ninjaObjectOrXvmChanged() } observe(viewerStore.currentNinjaMotion, ::ninjaMotionChanged) observe(viewerStore.showSkeleton) { skeletonHelper?.visible = it } + observe(viewerStore.animationPlaying, ::animationPlayingChanged) } override fun render() { @@ -168,6 +169,18 @@ class MeshRenderer( mixer!!.clipAction(clip).play() } + private fun animationPlayingChanged(playing: Boolean) { + animation?.let { animation -> + animation.mixer.clipAction(animation.clip).paused = !playing + + if (playing) { + clock.start() + } else { + clock.stop() + } + } + } + private class Animation(val mixer: AnimationMixer, val clip: AnimationClip) companion object { 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 226cfeee..c14d5393 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 @@ -41,6 +41,7 @@ class ViewerStore( // Settings. private val _showSkeleton = mutableVal(false) + private val _animationPlaying = mutableVal(true) // Ninja concepts. val currentNinjaObject: Val?> = _currentNinjaObject @@ -61,6 +62,7 @@ class ViewerStore( // Settings. val showSkeleton: Val = _showSkeleton + val animationPlaying: Val = _animationPlaying init { for (path in listOf(ViewerUrls.mesh, ViewerUrls.texture)) { @@ -175,6 +177,7 @@ class ViewerStore( fun setCurrentNinjaMotion(njm: NjMotion) { _currentNinjaMotion.value = njm + _animationPlaying.value = true } suspend fun setCurrentAnimation(animation: AnimationModel?) { @@ -191,6 +194,10 @@ class ViewerStore( _showSkeleton.value = show } + fun setAnimationPlaying(playing: Boolean) { + _animationPlaying.value = playing + } + private suspend fun loadCharacterClassNinjaObject(clearAnimation: Boolean) { val char = currentCharacterClass.value ?: return @@ -222,6 +229,7 @@ class ViewerStore( private suspend fun loadAnimation(animation: AnimationModel) { try { _currentNinjaMotion.value = animationAssetLoader.loadAnimation(animation.filePath) + _animationPlaying.value = true } catch (e: Exception) { logger.error(e) { "Couldn't load Ninja motion for ${animation.name} (path: ${animation.filePath})." diff --git a/web/src/main/kotlin/world/phantasmal/web/viewer/widgets/ViewerToolbar.kt b/web/src/main/kotlin/world/phantasmal/web/viewer/widgets/ViewerToolbar.kt index f6b4eb3d..f8508df4 100644 --- a/web/src/main/kotlin/world/phantasmal/web/viewer/widgets/ViewerToolbar.kt +++ b/web/src/main/kotlin/world/phantasmal/web/viewer/widgets/ViewerToolbar.kt @@ -26,6 +26,11 @@ class ViewerToolbar(private val ctrl: ViewerToolbarController) : Widget() { checked = ctrl.showSkeleton, onChange = ctrl::setShowSkeleton, ), + Checkbox( + label = "Play animation", + checked = ctrl.playAnimation, + onChange = ctrl::setPlayAnimation, + ), Button( text = "Clear animation", enabled = ctrl.clearCurrentAnimationButtonEnabled,