From 87ab6506cfe389bfb115478dbe6954efa68a24f1 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Tue, 22 Dec 2020 23:21:15 +0100 Subject: [PATCH] Made most classes in lib mutable. --- .../dataFlowAnalysis/GetMapDesignations.kt | 2 +- .../phantasmal/lib/fileFormats/quest/Bin.kt | 12 +++--- .../phantasmal/lib/fileFormats/quest/Dat.kt | 38 +++++++++---------- .../phantasmal/lib/fileFormats/quest/Quest.kt | 22 +++++------ .../QuestEditorToolbarController.kt | 4 +- .../web/questEditor/stores/ModelConversion.kt | 14 +++---- 6 files changed, 47 insertions(+), 45 deletions(-) diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetMapDesignations.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetMapDesignations.kt index 871e904b..5112ba45 100644 --- a/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetMapDesignations.kt +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetMapDesignations.kt @@ -11,7 +11,7 @@ private val logger = KotlinLogging.logger {} fun getMapDesignations( func0Segment: InstructionSegment, createCfg: () -> ControlFlowGraph, -): Map { +): MutableMap { val mapDesignations = mutableMapOf() var cfg: ControlFlowGraph? = null diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Bin.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Bin.kt index 0319e73f..e88820b8 100644 --- a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Bin.kt +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Bin.kt @@ -12,12 +12,12 @@ private const val PC_OBJECT_CODE_OFFSET = 920 private const val BB_OBJECT_CODE_OFFSET = 4652 class BinFile( - val format: BinFormat, - val questId: Int, - val language: Int, - val questName: String, - val shortDescription: String, - val longDescription: String, + var format: BinFormat, + var questId: Int, + var language: Int, + var questName: String, + var shortDescription: String, + var longDescription: String, val bytecode: Buffer, val labelOffsets: IntArray, val shopItems: UIntArray, diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Dat.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Dat.kt index 909e506f..7391f2c8 100644 --- a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Dat.kt +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Dat.kt @@ -19,10 +19,10 @@ const val OBJECT_BYTE_SIZE = 68 const val NPC_BYTE_SIZE = 72 class DatFile( - val objs: List, - val npcs: List, - val events: List, - val unknowns: List, + val objs: MutableList, + val npcs: MutableList, + val events: MutableList, + val unknowns: MutableList, ) class DatEntity( @@ -35,35 +35,35 @@ class DatEvent( var sectionId: Short, var wave: Short, var delay: Short, - val actions: List, - val areaId: Int, - val unknown: Short, + val actions: MutableList, + var areaId: Int, + var unknown: Short, ) sealed class DatEventAction { class SpawnNpcs( - val sectionId: Short, - val appearFlag: Short, + var sectionId: Short, + var appearFlag: Short, ) : DatEventAction() class Unlock( - val doorId: Short, + var doorId: Short, ) : DatEventAction() class Lock( - val doorId: Short, + var doorId: Short, ) : DatEventAction() class TriggerEvent( - val eventId: Int, + var eventId: Int, ) : DatEventAction() } class DatUnknown( - val entityType: Int, - val totalSize: Int, - val areaId: Int, - val entitiesSize: Int, + var entityType: Int, + var totalSize: Int, + var areaId: Int, + var entitiesSize: Int, val data: ByteArray, ) @@ -160,13 +160,13 @@ private fun parseEvents(cursor: Cursor, areaId: Int, events: MutableList = + val actions: MutableList = if (eventActionsOffset < actionsCursor.size) { actionsCursor.seekStart(eventActionsOffset) parseEventActions(actionsCursor) } else { logger.warn { "Invalid event actions offset $eventActionsOffset for event ${id}." } - emptyList() + mutableListOf() } events.add(DatEvent( @@ -204,7 +204,7 @@ private fun parseEvents(cursor: Cursor, areaId: Int, events: MutableList { +private fun parseEventActions(cursor: Cursor): MutableList { val actions = mutableListOf() outer@ while (cursor.hasBytesLeft()) { diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Quest.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Quest.kt index 7c028292..e625b114 100644 --- a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Quest.kt +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Quest.kt @@ -23,16 +23,16 @@ class Quest( var shortDescription: String, var longDescription: String, var episode: Episode, - val objects: List, - val npcs: List, - val events: List, + val objects: MutableList, + val npcs: MutableList, + val events: MutableList, /** * (Partial) raw DAT data that can't be parsed yet by Phantasmal. */ - val datUnknowns: List, - val bytecodeIr: BytecodeIr, + val datUnknowns: MutableList, + var bytecodeIr: BytecodeIr, val shopItems: UIntArray, - val mapDesignations: Map, + val mapDesignations: MutableMap, ) fun parseBinDatToQuest( @@ -60,13 +60,13 @@ fun parseBinDatToQuest( } val dat = parseDat(datDecompressed.value) - val objects = dat.objs.map { QuestObject(it.areaId, it.data) } + val objects = dat.objs.mapTo(mutableListOf()) { QuestObject(it.areaId, it.data) } // Initialize NPCs with random episode and correct it later. - val npcs = dat.npcs.map { QuestNpc(Episode.I, it.areaId, it.data) } + val npcs = dat.npcs.mapTo(mutableListOf()) { QuestNpc(Episode.I, it.areaId, it.data) } // Extract episode and map designations from byte code. var episode = Episode.I - var mapDesignations = emptyMap() + var mapDesignations = mutableMapOf() val parseBytecodeResult = parseBytecode( bin.bytecode, @@ -238,8 +238,8 @@ private fun extractScriptEntryPoints( */ fun writeQuestToQst(quest: Quest, filename: String, version: Version, online: Boolean): Buffer { val dat = writeDat(DatFile( - objs = quest.objects.map { DatEntity(it.areaId, it.data) }, - npcs = quest.npcs.map { DatEntity(it.areaId, it.data) }, + objs = quest.objects.mapTo(mutableListOf()) { DatEntity(it.areaId, it.data) }, + npcs = quest.npcs.mapTo(mutableListOf()) { DatEntity(it.areaId, it.data) }, events = quest.events, unknowns = quest.datUnknowns, )) diff --git a/web/src/main/kotlin/world/phantasmal/web/questEditor/controllers/QuestEditorToolbarController.kt b/web/src/main/kotlin/world/phantasmal/web/questEditor/controllers/QuestEditorToolbarController.kt index e1c5dd62..2c1b9669 100644 --- a/web/src/main/kotlin/world/phantasmal/web/questEditor/controllers/QuestEditorToolbarController.kt +++ b/web/src/main/kotlin/world/phantasmal/web/questEditor/controllers/QuestEditorToolbarController.kt @@ -209,15 +209,17 @@ class QuestEditorToolbarController( obj { type = "application/octet-stream" }, ) ) + try { a.href = url a.download = filename document.body?.appendChild(a) a.click() } catch (e: Exception) { + logger.error(e) { """Couldn't save file "$filename".""" } + } finally { URL.revokeObjectURL(url) document.body?.removeChild(a) - throw e } dismissSaveAsDialog() diff --git a/web/src/main/kotlin/world/phantasmal/web/questEditor/stores/ModelConversion.kt b/web/src/main/kotlin/world/phantasmal/web/questEditor/stores/ModelConversion.kt index c0dc5c0a..2122f1a6 100644 --- a/web/src/main/kotlin/world/phantasmal/web/questEditor/stores/ModelConversion.kt +++ b/web/src/main/kotlin/world/phantasmal/web/questEditor/stores/ModelConversion.kt @@ -56,7 +56,7 @@ fun convertQuestToModel( /** * The returned [Quest] object will reference parts of [quest], so some changes to [quest] will be - * reflected in the returned object. + * reflected in the returned object and vice-versa. */ fun convertQuestFromModel(quest: QuestModel): Quest = Quest( @@ -66,15 +66,15 @@ fun convertQuestFromModel(quest: QuestModel): Quest = quest.shortDescription.value, quest.longDescription.value, quest.episode, - quest.objects.value.map { it.entity }, - quest.npcs.value.map { it.entity }, - quest.events.value.map { event -> + quest.objects.value.mapTo(mutableListOf()) { it.entity }, + quest.npcs.value.mapTo(mutableListOf()) { it.entity }, + quest.events.value.mapTo(mutableListOf()) { event -> DatEvent( event.id.value, event.sectionId.value.toShort(), event.wave.value.id.toShort(), event.delay.value.toShort(), - event.actions.value.map { action -> + event.actions.value.mapTo(mutableListOf()) { action -> when (action) { is QuestEventActionModel.SpawnNpcs -> DatEventAction.SpawnNpcs( @@ -96,8 +96,8 @@ fun convertQuestFromModel(quest: QuestModel): Quest = event.unknown.toShort(), ) }, - quest.datUnknowns, + quest.datUnknowns.toMutableList(), quest.bytecodeIr, quest.shopItems, - quest.mapDesignations.value, + quest.mapDesignations.value.toMutableMap(), )