Made most classes in lib mutable.

This commit is contained in:
Daan Vanden Bosch 2020-12-22 23:21:15 +01:00
parent 71669642ae
commit 87ab6506cf
6 changed files with 47 additions and 45 deletions

View File

@ -11,7 +11,7 @@ private val logger = KotlinLogging.logger {}
fun getMapDesignations( fun getMapDesignations(
func0Segment: InstructionSegment, func0Segment: InstructionSegment,
createCfg: () -> ControlFlowGraph, createCfg: () -> ControlFlowGraph,
): Map<Int, Int> { ): MutableMap<Int, Int> {
val mapDesignations = mutableMapOf<Int, Int>() val mapDesignations = mutableMapOf<Int, Int>()
var cfg: ControlFlowGraph? = null var cfg: ControlFlowGraph? = null

View File

@ -12,12 +12,12 @@ private const val PC_OBJECT_CODE_OFFSET = 920
private const val BB_OBJECT_CODE_OFFSET = 4652 private const val BB_OBJECT_CODE_OFFSET = 4652
class BinFile( class BinFile(
val format: BinFormat, var format: BinFormat,
val questId: Int, var questId: Int,
val language: Int, var language: Int,
val questName: String, var questName: String,
val shortDescription: String, var shortDescription: String,
val longDescription: String, var longDescription: String,
val bytecode: Buffer, val bytecode: Buffer,
val labelOffsets: IntArray, val labelOffsets: IntArray,
val shopItems: UIntArray, val shopItems: UIntArray,

View File

@ -19,10 +19,10 @@ const val OBJECT_BYTE_SIZE = 68
const val NPC_BYTE_SIZE = 72 const val NPC_BYTE_SIZE = 72
class DatFile( class DatFile(
val objs: List<DatEntity>, val objs: MutableList<DatEntity>,
val npcs: List<DatEntity>, val npcs: MutableList<DatEntity>,
val events: List<DatEvent>, val events: MutableList<DatEvent>,
val unknowns: List<DatUnknown>, val unknowns: MutableList<DatUnknown>,
) )
class DatEntity( class DatEntity(
@ -35,35 +35,35 @@ class DatEvent(
var sectionId: Short, var sectionId: Short,
var wave: Short, var wave: Short,
var delay: Short, var delay: Short,
val actions: List<DatEventAction>, val actions: MutableList<DatEventAction>,
val areaId: Int, var areaId: Int,
val unknown: Short, var unknown: Short,
) )
sealed class DatEventAction { sealed class DatEventAction {
class SpawnNpcs( class SpawnNpcs(
val sectionId: Short, var sectionId: Short,
val appearFlag: Short, var appearFlag: Short,
) : DatEventAction() ) : DatEventAction()
class Unlock( class Unlock(
val doorId: Short, var doorId: Short,
) : DatEventAction() ) : DatEventAction()
class Lock( class Lock(
val doorId: Short, var doorId: Short,
) : DatEventAction() ) : DatEventAction()
class TriggerEvent( class TriggerEvent(
val eventId: Int, var eventId: Int,
) : DatEventAction() ) : DatEventAction()
} }
class DatUnknown( class DatUnknown(
val entityType: Int, var entityType: Int,
val totalSize: Int, var totalSize: Int,
val areaId: Int, var areaId: Int,
val entitiesSize: Int, var entitiesSize: Int,
val data: ByteArray, val data: ByteArray,
) )
@ -160,13 +160,13 @@ private fun parseEvents(cursor: Cursor, areaId: Int, events: MutableList<DatEven
val unknown = cursor.short() // "wavesetting"? val unknown = cursor.short() // "wavesetting"?
val eventActionsOffset = cursor.int() val eventActionsOffset = cursor.int()
val actions: List<DatEventAction> = val actions: MutableList<DatEventAction> =
if (eventActionsOffset < actionsCursor.size) { if (eventActionsOffset < actionsCursor.size) {
actionsCursor.seekStart(eventActionsOffset) actionsCursor.seekStart(eventActionsOffset)
parseEventActions(actionsCursor) parseEventActions(actionsCursor)
} else { } else {
logger.warn { "Invalid event actions offset $eventActionsOffset for event ${id}." } logger.warn { "Invalid event actions offset $eventActionsOffset for event ${id}." }
emptyList() mutableListOf()
} }
events.add(DatEvent( events.add(DatEvent(
@ -204,7 +204,7 @@ private fun parseEvents(cursor: Cursor, areaId: Int, events: MutableList<DatEven
cursor.seekStart(actionsOffset + actionsCursor.position) cursor.seekStart(actionsOffset + actionsCursor.position)
} }
private fun parseEventActions(cursor: Cursor): List<DatEventAction> { private fun parseEventActions(cursor: Cursor): MutableList<DatEventAction> {
val actions = mutableListOf<DatEventAction>() val actions = mutableListOf<DatEventAction>()
outer@ while (cursor.hasBytesLeft()) { outer@ while (cursor.hasBytesLeft()) {

View File

@ -23,16 +23,16 @@ class Quest(
var shortDescription: String, var shortDescription: String,
var longDescription: String, var longDescription: String,
var episode: Episode, var episode: Episode,
val objects: List<QuestObject>, val objects: MutableList<QuestObject>,
val npcs: List<QuestNpc>, val npcs: MutableList<QuestNpc>,
val events: List<DatEvent>, val events: MutableList<DatEvent>,
/** /**
* (Partial) raw DAT data that can't be parsed yet by Phantasmal. * (Partial) raw DAT data that can't be parsed yet by Phantasmal.
*/ */
val datUnknowns: List<DatUnknown>, val datUnknowns: MutableList<DatUnknown>,
val bytecodeIr: BytecodeIr, var bytecodeIr: BytecodeIr,
val shopItems: UIntArray, val shopItems: UIntArray,
val mapDesignations: Map<Int, Int>, val mapDesignations: MutableMap<Int, Int>,
) )
fun parseBinDatToQuest( fun parseBinDatToQuest(
@ -60,13 +60,13 @@ fun parseBinDatToQuest(
} }
val dat = parseDat(datDecompressed.value) 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. // 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. // Extract episode and map designations from byte code.
var episode = Episode.I var episode = Episode.I
var mapDesignations = emptyMap<Int, Int>() var mapDesignations = mutableMapOf<Int, Int>()
val parseBytecodeResult = parseBytecode( val parseBytecodeResult = parseBytecode(
bin.bytecode, bin.bytecode,
@ -238,8 +238,8 @@ private fun extractScriptEntryPoints(
*/ */
fun writeQuestToQst(quest: Quest, filename: String, version: Version, online: Boolean): Buffer { fun writeQuestToQst(quest: Quest, filename: String, version: Version, online: Boolean): Buffer {
val dat = writeDat(DatFile( val dat = writeDat(DatFile(
objs = quest.objects.map { DatEntity(it.areaId, it.data) }, objs = quest.objects.mapTo(mutableListOf()) { DatEntity(it.areaId, it.data) },
npcs = quest.npcs.map { DatEntity(it.areaId, it.data) }, npcs = quest.npcs.mapTo(mutableListOf()) { DatEntity(it.areaId, it.data) },
events = quest.events, events = quest.events,
unknowns = quest.datUnknowns, unknowns = quest.datUnknowns,
)) ))

View File

@ -209,15 +209,17 @@ class QuestEditorToolbarController(
obj { type = "application/octet-stream" }, obj { type = "application/octet-stream" },
) )
) )
try { try {
a.href = url a.href = url
a.download = filename a.download = filename
document.body?.appendChild(a) document.body?.appendChild(a)
a.click() a.click()
} catch (e: Exception) { } catch (e: Exception) {
logger.error(e) { """Couldn't save file "$filename".""" }
} finally {
URL.revokeObjectURL(url) URL.revokeObjectURL(url)
document.body?.removeChild(a) document.body?.removeChild(a)
throw e
} }
dismissSaveAsDialog() dismissSaveAsDialog()

View File

@ -56,7 +56,7 @@ fun convertQuestToModel(
/** /**
* The returned [Quest] object will reference parts of [quest], so some changes to [quest] will be * 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 = fun convertQuestFromModel(quest: QuestModel): Quest =
Quest( Quest(
@ -66,15 +66,15 @@ fun convertQuestFromModel(quest: QuestModel): Quest =
quest.shortDescription.value, quest.shortDescription.value,
quest.longDescription.value, quest.longDescription.value,
quest.episode, quest.episode,
quest.objects.value.map { it.entity }, quest.objects.value.mapTo(mutableListOf()) { it.entity },
quest.npcs.value.map { it.entity }, quest.npcs.value.mapTo(mutableListOf()) { it.entity },
quest.events.value.map { event -> quest.events.value.mapTo(mutableListOf()) { event ->
DatEvent( DatEvent(
event.id.value, event.id.value,
event.sectionId.value.toShort(), event.sectionId.value.toShort(),
event.wave.value.id.toShort(), event.wave.value.id.toShort(),
event.delay.value.toShort(), event.delay.value.toShort(),
event.actions.value.map { action -> event.actions.value.mapTo(mutableListOf()) { action ->
when (action) { when (action) {
is QuestEventActionModel.SpawnNpcs -> is QuestEventActionModel.SpawnNpcs ->
DatEventAction.SpawnNpcs( DatEventAction.SpawnNpcs(
@ -96,8 +96,8 @@ fun convertQuestFromModel(quest: QuestModel): Quest =
event.unknown.toShort(), event.unknown.toShort(),
) )
}, },
quest.datUnknowns, quest.datUnknowns.toMutableList(),
quest.bytecodeIr, quest.bytecodeIr,
quest.shopItems, quest.shopItems,
quest.mapDesignations.value, quest.mapDesignations.value.toMutableMap(),
) )