Added animation play/pause toggle to the viewer again.

This commit is contained in:
Daan Vanden Bosch 2021-03-26 18:35:09 +01:00
parent 610a2bb64a
commit 2ab0baa3b5
5 changed files with 32 additions and 1 deletions

View File

@ -784,7 +784,7 @@ external class AnimationAction(
) { ) {
var time: Double var time: Double
var timeScale: Double var timeScale: Double
val paused: Boolean var paused: Boolean
fun play(): AnimationAction fun play(): AnimationAction
fun stop(): AnimationAction fun stop(): AnimationAction

View File

@ -23,6 +23,7 @@ class ViewerToolbarController(private val store: ViewerStore) : Controller() {
private val _result = mutableVal<PwResult<*>?>(null) private val _result = mutableVal<PwResult<*>?>(null)
val showSkeleton: Val<Boolean> = store.showSkeleton val showSkeleton: Val<Boolean> = store.showSkeleton
val playAnimation: Val<Boolean> = store.animationPlaying
val clearCurrentAnimationButtonEnabled = store.currentNinjaMotion.isNotNull() val clearCurrentAnimationButtonEnabled = store.currentNinjaMotion.isNotNull()
val resultDialogVisible: Val<Boolean> = _resultDialogVisible val resultDialogVisible: Val<Boolean> = _resultDialogVisible
val result: Val<PwResult<*>?> = _result val result: Val<PwResult<*>?> = _result
@ -37,6 +38,10 @@ class ViewerToolbarController(private val store: ViewerStore) : Controller() {
store.setShowSkeleton(show) store.setShowSkeleton(show)
} }
fun setPlayAnimation(play: Boolean) {
store.setAnimationPlaying(play)
}
suspend fun clearCurrentAnimation() { suspend fun clearCurrentAnimation() {
store.setCurrentAnimation(null) store.setCurrentAnimation(null)
} }

View File

@ -47,6 +47,7 @@ class MeshRenderer(
observe(viewerStore.currentTextures) { ninjaObjectOrXvmChanged() } observe(viewerStore.currentTextures) { ninjaObjectOrXvmChanged() }
observe(viewerStore.currentNinjaMotion, ::ninjaMotionChanged) observe(viewerStore.currentNinjaMotion, ::ninjaMotionChanged)
observe(viewerStore.showSkeleton) { skeletonHelper?.visible = it } observe(viewerStore.showSkeleton) { skeletonHelper?.visible = it }
observe(viewerStore.animationPlaying, ::animationPlayingChanged)
} }
override fun render() { override fun render() {
@ -168,6 +169,18 @@ class MeshRenderer(
mixer!!.clipAction(clip).play() 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) private class Animation(val mixer: AnimationMixer, val clip: AnimationClip)
companion object { companion object {

View File

@ -41,6 +41,7 @@ class ViewerStore(
// Settings. // Settings.
private val _showSkeleton = mutableVal(false) private val _showSkeleton = mutableVal(false)
private val _animationPlaying = mutableVal(true)
// Ninja concepts. // Ninja concepts.
val currentNinjaObject: Val<NinjaObject<*>?> = _currentNinjaObject val currentNinjaObject: Val<NinjaObject<*>?> = _currentNinjaObject
@ -61,6 +62,7 @@ class ViewerStore(
// Settings. // Settings.
val showSkeleton: Val<Boolean> = _showSkeleton val showSkeleton: Val<Boolean> = _showSkeleton
val animationPlaying: Val<Boolean> = _animationPlaying
init { init {
for (path in listOf(ViewerUrls.mesh, ViewerUrls.texture)) { for (path in listOf(ViewerUrls.mesh, ViewerUrls.texture)) {
@ -175,6 +177,7 @@ class ViewerStore(
fun setCurrentNinjaMotion(njm: NjMotion) { fun setCurrentNinjaMotion(njm: NjMotion) {
_currentNinjaMotion.value = njm _currentNinjaMotion.value = njm
_animationPlaying.value = true
} }
suspend fun setCurrentAnimation(animation: AnimationModel?) { suspend fun setCurrentAnimation(animation: AnimationModel?) {
@ -191,6 +194,10 @@ class ViewerStore(
_showSkeleton.value = show _showSkeleton.value = show
} }
fun setAnimationPlaying(playing: Boolean) {
_animationPlaying.value = playing
}
private suspend fun loadCharacterClassNinjaObject(clearAnimation: Boolean) { private suspend fun loadCharacterClassNinjaObject(clearAnimation: Boolean) {
val char = currentCharacterClass.value val char = currentCharacterClass.value
?: return ?: return
@ -222,6 +229,7 @@ class ViewerStore(
private suspend fun loadAnimation(animation: AnimationModel) { private suspend fun loadAnimation(animation: AnimationModel) {
try { try {
_currentNinjaMotion.value = animationAssetLoader.loadAnimation(animation.filePath) _currentNinjaMotion.value = animationAssetLoader.loadAnimation(animation.filePath)
_animationPlaying.value = true
} catch (e: Exception) { } catch (e: Exception) {
logger.error(e) { logger.error(e) {
"Couldn't load Ninja motion for ${animation.name} (path: ${animation.filePath})." "Couldn't load Ninja motion for ${animation.name} (path: ${animation.filePath})."

View File

@ -26,6 +26,11 @@ class ViewerToolbar(private val ctrl: ViewerToolbarController) : Widget() {
checked = ctrl.showSkeleton, checked = ctrl.showSkeleton,
onChange = ctrl::setShowSkeleton, onChange = ctrl::setShowSkeleton,
), ),
Checkbox(
label = "Play animation",
checked = ctrl.playAnimation,
onChange = ctrl::setPlayAnimation,
),
Button( Button(
text = "Clear animation", text = "Clear animation",
enabled = ctrl.clearCurrentAnimationButtonEnabled, enabled = ctrl.clearCurrentAnimationButtonEnabled,