mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Added world position to the entity info widget.
This commit is contained in:
parent
62a49b067c
commit
22d01776d0
@ -12,14 +12,23 @@ class TranslateEntityCommand(
|
|||||||
private val oldSection: Int?,
|
private val oldSection: Int?,
|
||||||
private val newPosition: Vector3,
|
private val newPosition: Vector3,
|
||||||
private val oldPosition: Vector3,
|
private val oldPosition: Vector3,
|
||||||
|
private val world: Boolean,
|
||||||
) : Command {
|
) : Command {
|
||||||
override val description: String = "Move ${entity.type.simpleName}"
|
override val description: String = "Move ${entity.type.simpleName}"
|
||||||
|
|
||||||
override fun execute() {
|
override fun execute() {
|
||||||
|
if (world) {
|
||||||
|
questEditorStore.setEntityWorldPosition(entity, newSection, newPosition)
|
||||||
|
} else {
|
||||||
questEditorStore.setEntityPosition(entity, newSection, newPosition)
|
questEditorStore.setEntityPosition(entity, newSection, newPosition)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
override fun undo() {
|
override fun undo() {
|
||||||
|
if (world) {
|
||||||
|
questEditorStore.setEntityWorldPosition(entity, oldSection, oldPosition)
|
||||||
|
} else {
|
||||||
questEditorStore.setEntityPosition(entity, oldSection, oldPosition)
|
questEditorStore.setEntityPosition(entity, oldSection, oldPosition)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -117,6 +117,12 @@ class EntityInfoController(
|
|||||||
val posY: Cell<Double> = pos.map { it.y }
|
val posY: Cell<Double> = pos.map { it.y }
|
||||||
val posZ: Cell<Double> = pos.map { it.z }
|
val posZ: Cell<Double> = pos.map { it.z }
|
||||||
|
|
||||||
|
private val worldPos: Cell<Vector3> =
|
||||||
|
questEditorStore.selectedEntity.flatMap { it?.worldPosition ?: DEFAULT_POSITION }
|
||||||
|
val worldPosX: Cell<Double> = worldPos.map { it.x }
|
||||||
|
val worldPosY: Cell<Double> = worldPos.map { it.y }
|
||||||
|
val worldPosZ: Cell<Double> = worldPos.map { it.z }
|
||||||
|
|
||||||
private val rot: Cell<Euler> =
|
private val rot: Cell<Euler> =
|
||||||
questEditorStore.selectedEntity.flatMap { it?.rotation ?: DEFAULT_ROTATION }
|
questEditorStore.selectedEntity.flatMap { it?.rotation ?: DEFAULT_ROTATION }
|
||||||
val rotX: Cell<Double> = rot.map { radToDeg(it.x) }
|
val rotX: Cell<Double> = rot.map { radToDeg(it.x) }
|
||||||
@ -207,6 +213,44 @@ class EntityInfoController(
|
|||||||
oldSection = null,
|
oldSection = null,
|
||||||
newPosition = Vector3(x, y, z),
|
newPosition = Vector3(x, y, z),
|
||||||
oldPosition = entity.position.value,
|
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,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -135,6 +135,7 @@ class StateContext(
|
|||||||
oldSection?.id,
|
oldSection?.id,
|
||||||
newPosition,
|
newPosition,
|
||||||
oldPosition,
|
oldPosition,
|
||||||
|
world = false,
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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) {
|
fun setEntityRotation(entity: QuestEntityModel<*, *>, rotation: Euler) {
|
||||||
mutate {
|
mutate {
|
||||||
setSelectedEntity(entity)
|
setSelectedEntity(entity)
|
||||||
@ -359,7 +367,7 @@ class QuestEditorStore(
|
|||||||
* Sets [QuestEntityModel.sectionId] and [QuestEntityModel.section] if there's a section with
|
* Sets [QuestEntityModel.sectionId] and [QuestEntityModel.section] if there's a section with
|
||||||
* [sectionId] as ID.
|
* [sectionId] as ID.
|
||||||
*/
|
*/
|
||||||
fun setEntitySection(entity: QuestEntityModel<*, *>, sectionId: Int) {
|
private fun setEntitySection(entity: QuestEntityModel<*, *>, sectionId: Int) {
|
||||||
currentQuest.value?.let { quest ->
|
currentQuest.value?.let { quest ->
|
||||||
val variant = quest.areaVariants.value.find { it.area.id == entity.areaId }
|
val variant = quest.areaVariants.value.find { it.area.id == entity.areaId }
|
||||||
|
|
||||||
|
@ -68,6 +68,12 @@ class EntityInfoWidget(private val ctrl: EntityInfoController) : Widget(enabled
|
|||||||
createCoordRow("X:", ctrl.posX, ctrl::setPosX)
|
createCoordRow("X:", ctrl.posX, ctrl::setPosX)
|
||||||
createCoordRow("Y:", ctrl.posY, ctrl::setPosY)
|
createCoordRow("Y:", ctrl.posY, ctrl::setPosY)
|
||||||
createCoordRow("Z:", ctrl.posZ, ctrl::setPosZ)
|
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 {
|
tr {
|
||||||
th { colSpan = 2; textContent = "Rotation:" }
|
th { colSpan = 2; textContent = "Rotation:" }
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user