diff --git a/web/src/main/kotlin/world/phantasmal/web/questEditor/commands/TranslateEntityCommand.kt b/web/src/main/kotlin/world/phantasmal/web/questEditor/commands/TranslateEntityCommand.kt index 4cb6d0a3..b0e75dd4 100644 --- a/web/src/main/kotlin/world/phantasmal/web/questEditor/commands/TranslateEntityCommand.kt +++ b/web/src/main/kotlin/world/phantasmal/web/questEditor/commands/TranslateEntityCommand.kt @@ -12,14 +12,23 @@ class TranslateEntityCommand( private val oldSection: Int?, private val newPosition: Vector3, private val oldPosition: Vector3, + private val world: Boolean, ) : Command { override val description: String = "Move ${entity.type.simpleName}" override fun execute() { - questEditorStore.setEntityPosition(entity, newSection, newPosition) + if (world) { + questEditorStore.setEntityWorldPosition(entity, newSection, newPosition) + } else { + questEditorStore.setEntityPosition(entity, newSection, newPosition) + } } override fun undo() { - questEditorStore.setEntityPosition(entity, oldSection, oldPosition) + if (world) { + questEditorStore.setEntityWorldPosition(entity, oldSection, oldPosition) + } else { + questEditorStore.setEntityPosition(entity, oldSection, oldPosition) + } } } diff --git a/web/src/main/kotlin/world/phantasmal/web/questEditor/controllers/EntityInfoController.kt b/web/src/main/kotlin/world/phantasmal/web/questEditor/controllers/EntityInfoController.kt index 3329e657..e6899fc6 100644 --- a/web/src/main/kotlin/world/phantasmal/web/questEditor/controllers/EntityInfoController.kt +++ b/web/src/main/kotlin/world/phantasmal/web/questEditor/controllers/EntityInfoController.kt @@ -117,6 +117,12 @@ class EntityInfoController( val posY: Cell = pos.map { it.y } val posZ: Cell = pos.map { it.z } + private val worldPos: Cell = + questEditorStore.selectedEntity.flatMap { it?.worldPosition ?: DEFAULT_POSITION } + val worldPosX: Cell = worldPos.map { it.x } + val worldPosY: Cell = worldPos.map { it.y } + val worldPosZ: Cell = worldPos.map { it.z } + private val rot: Cell = questEditorStore.selectedEntity.flatMap { it?.rotation ?: DEFAULT_ROTATION } val rotX: Cell = rot.map { radToDeg(it.x) } @@ -207,6 +213,44 @@ class EntityInfoController( oldSection = null, newPosition = Vector3(x, y, z), oldPosition = entity.position.value, + world = false, + ) + ) + } + + fun setWorldPosX(x: Double) { + questEditorStore.selectedEntity.value?.let { entity -> + val pos = entity.worldPosition.value + setWorldPos(entity, x, pos.y, pos.z) + } + } + + fun setWorldPosY(y: Double) { + questEditorStore.selectedEntity.value?.let { entity -> + val pos = entity.worldPosition.value + setWorldPos(entity, pos.x, y, pos.z) + } + } + + fun setWorldPosZ(z: Double) { + questEditorStore.selectedEntity.value?.let { entity -> + val pos = entity.worldPosition.value + setWorldPos(entity, pos.x, pos.y, z) + } + } + + private fun setWorldPos(entity: QuestEntityModel<*, *>, x: Double, y: Double, z: Double) { + if (!enabled.value) return + + questEditorStore.executeAction( + TranslateEntityCommand( + questEditorStore, + entity, + newSection = null, + oldSection = null, + newPosition = Vector3(x, y, z), + oldPosition = entity.worldPosition.value, + world = true, ) ) } diff --git a/web/src/main/kotlin/world/phantasmal/web/questEditor/rendering/input/state/StateContext.kt b/web/src/main/kotlin/world/phantasmal/web/questEditor/rendering/input/state/StateContext.kt index 28d461b7..12d49fe7 100644 --- a/web/src/main/kotlin/world/phantasmal/web/questEditor/rendering/input/state/StateContext.kt +++ b/web/src/main/kotlin/world/phantasmal/web/questEditor/rendering/input/state/StateContext.kt @@ -135,6 +135,7 @@ class StateContext( oldSection?.id, newPosition, oldPosition, + world = false, )) } diff --git a/web/src/main/kotlin/world/phantasmal/web/questEditor/stores/QuestEditorStore.kt b/web/src/main/kotlin/world/phantasmal/web/questEditor/stores/QuestEditorStore.kt index b2ce9891..0467f313 100644 --- a/web/src/main/kotlin/world/phantasmal/web/questEditor/stores/QuestEditorStore.kt +++ b/web/src/main/kotlin/world/phantasmal/web/questEditor/stores/QuestEditorStore.kt @@ -302,6 +302,14 @@ class QuestEditorStore( } } + fun setEntityWorldPosition(entity: QuestEntityModel<*, *>, sectionId: Int?, position: Vector3) { + mutate { + setSelectedEntity(entity) + sectionId?.let { setEntitySection(entity, it) } + entity.setWorldPosition(position) + } + } + fun setEntityRotation(entity: QuestEntityModel<*, *>, rotation: Euler) { mutate { setSelectedEntity(entity) @@ -359,7 +367,7 @@ class QuestEditorStore( * Sets [QuestEntityModel.sectionId] and [QuestEntityModel.section] if there's a section with * [sectionId] as ID. */ - fun setEntitySection(entity: QuestEntityModel<*, *>, sectionId: Int) { + private fun setEntitySection(entity: QuestEntityModel<*, *>, sectionId: Int) { currentQuest.value?.let { quest -> val variant = quest.areaVariants.value.find { it.area.id == entity.areaId } diff --git a/web/src/main/kotlin/world/phantasmal/web/questEditor/widgets/EntityInfoWidget.kt b/web/src/main/kotlin/world/phantasmal/web/questEditor/widgets/EntityInfoWidget.kt index df754d45..77dc36d8 100644 --- a/web/src/main/kotlin/world/phantasmal/web/questEditor/widgets/EntityInfoWidget.kt +++ b/web/src/main/kotlin/world/phantasmal/web/questEditor/widgets/EntityInfoWidget.kt @@ -68,6 +68,12 @@ class EntityInfoWidget(private val ctrl: EntityInfoController) : Widget(enabled createCoordRow("X:", ctrl.posX, ctrl::setPosX) createCoordRow("Y:", ctrl.posY, ctrl::setPosY) createCoordRow("Z:", ctrl.posZ, ctrl::setPosZ) + tr { + th { colSpan = 2; textContent = "World Position:" } + } + createCoordRow("X:", ctrl.worldPosX, ctrl::setWorldPosX) + createCoordRow("Y:", ctrl.worldPosY, ctrl::setWorldPosY) + createCoordRow("Z:", ctrl.worldPosZ, ctrl::setWorldPosZ) tr { th { colSpan = 2; textContent = "Rotation:" } }