diff --git a/buildSrc/src/main/resources/karmaConfig.js b/buildSrc/src/main/resources/karmaConfig.js index e2a7e31a..d274f41c 100644 --- a/buildSrc/src/main/resources/karmaConfig.js +++ b/buildSrc/src/main/resources/karmaConfig.js @@ -6,12 +6,12 @@ function ResourceLoaderMiddleware() { return function (request, response, next) { try { - const content = fs.readFileSync(PROJECT_PATH + '/build/processedResources/js/test' + request.originalUrl); + const content = fs.readFileSync(PROJECT_PATH + '/build/processedResources/js/test' + decodeURI(request.originalUrl)); response.writeHead(200); response.end(content); } catch (ignored) { try { - const content = fs.readFileSync(PROJECT_PATH + '/build/processedResources/js/main' + request.originalUrl); + const content = fs.readFileSync(PROJECT_PATH + '/build/processedResources/js/main' + decodeURI(request.originalUrl)); response.writeHead(200); response.end(content); } catch (ignored) { diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/Assembly.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/Assembly.kt index b0a60280..c191e05f 100644 --- a/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/Assembly.kt +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/Assembly.kt @@ -198,6 +198,7 @@ private class Assembler(private val asm: List, private val inlineStackAr segment = StringSegment( labels = mutableListOf(), value = str, + bytecodeSize = null, srcLoc = SegmentSrcLoc() ) @@ -313,6 +314,7 @@ private class Assembler(private val asm: List, private val inlineStackAr segment = StringSegment( labels = mutableListOf(label), value = "", + bytecodeSize = null, srcLoc = SegmentSrcLoc(labels = mutableListOf(srcLoc)), ) ir.add(segment!!) diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/BytecodeIr.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/BytecodeIr.kt index 4985e718..39c486dd 100644 --- a/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/BytecodeIr.kt +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/BytecodeIr.kt @@ -1,6 +1,7 @@ package world.phantasmal.lib.asm import world.phantasmal.lib.buffer.Buffer +import kotlin.math.ceil /** * Intermediate representation of PSO bytecode. Used by most ASM/bytecode analysis code. @@ -31,6 +32,7 @@ sealed class Segment( val labels: MutableList, val srcLoc: SegmentSrcLoc, ) { + abstract fun size(dcGcFormat: Boolean): Int abstract fun copy(): Segment } @@ -39,6 +41,9 @@ class InstructionSegment( val instructions: MutableList, srcLoc: SegmentSrcLoc = SegmentSrcLoc(mutableListOf()), ) : Segment(SegmentType.Instructions, labels, srcLoc) { + override fun size(dcGcFormat: Boolean): Int = + instructions.sumBy { it.getSize(dcGcFormat) } + override fun copy(): InstructionSegment = InstructionSegment( ArrayList(labels), @@ -52,17 +57,40 @@ class DataSegment( val data: Buffer, srcLoc: SegmentSrcLoc = SegmentSrcLoc(mutableListOf()), ) : Segment(SegmentType.Data, labels, srcLoc) { + override fun size(dcGcFormat: Boolean): Int = + data.size + override fun copy(): DataSegment = DataSegment(ArrayList(labels), data.copy(), srcLoc.copy()) } class StringSegment( labels: MutableList, - var value: String, + value: String, + /** + * Normally string segments have a byte length that is a multiple of 4, but some bytecode is + * malformed so we store the initial size in the bytecode. + */ + private var bytecodeSize: Int?, srcLoc: SegmentSrcLoc = SegmentSrcLoc(mutableListOf()), ) : Segment(SegmentType.String, labels, srcLoc) { + var value: String = value + set(value) { + bytecodeSize = null + field = value + } + + override fun size(dcGcFormat: Boolean): Int = + // String segments should be multiples of 4 bytes. + bytecodeSize + ?: if (dcGcFormat) { + 4 * ceil((value.length + 1) / 4.0).toInt() + } else { + 4 * ceil((value.length + 1) / 2.0).toInt() + } + override fun copy(): StringSegment = - StringSegment(ArrayList(labels), value, srcLoc.copy()) + StringSegment(ArrayList(labels), value, bytecodeSize, srcLoc.copy()) } /** diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetRegisterValue.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetRegisterValue.kt index 7bf82660..b7f1a5b7 100644 --- a/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetRegisterValue.kt +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetRegisterValue.kt @@ -9,6 +9,7 @@ private val logger = KotlinLogging.logger {} /** * Computes the possible values of a register right before a specific instruction. + * TODO: Deal with function calls. */ fun getRegisterValue(cfg: ControlFlowGraph, instruction: Instruction, register: Int): ValueSet { require(register in 0..255) { @@ -51,6 +52,11 @@ private class RegisterValueFinder { return ValueSet.all() } + OP_VA_CALL.code -> { + val value = vaCall(path, block, i, register) + if (value.isNotEmpty()) return value + } + OP_LET.code -> { if (args[0].value == register) { return find(LinkedHashSet(path), block, i, args[1].value as Int) @@ -224,4 +230,67 @@ private class RegisterValueFinder { return values } + + /** + * After a va_start instruction, 0 or more arg_push instructions can be used. When va_call is + * executed the values on the stack will become the values of registers r1..r7 (inclusive) in + * the order that they were pushed. + * + * E.g.: + * + * va_start + * arg_pushl 10 + * arg_pushl 20 + * va_call 777 + * va_end + * + * This means call 777 with r1 = 10 and r2 = 20. + */ + private fun vaCall( + path: MutableSet, + block: BasicBlock, + vaCallIdx: Int, + register: Int, + ): ValueSet { + if (register !in 1..7) return ValueSet.empty() + + var vaStartIdx = -1 + // Pairs of type and value. + val stack = mutableListOf>() + + for (i in block.start until vaCallIdx) { + val instruction = block.segment.instructions[i] + val opcode = instruction.opcode + + if (opcode.code == OP_VA_START.code) { + vaStartIdx = i + } else if (vaStartIdx != -1) { + val type = when (opcode.code) { + OP_ARG_PUSHR.code -> RegRefType + OP_ARG_PUSHL.code -> IntType + OP_ARG_PUSHB.code -> ByteType + OP_ARG_PUSHW.code -> ShortType + OP_ARG_PUSHA.code -> PointerType + OP_ARG_PUSHO.code -> PointerType + OP_ARG_PUSHS.code -> StringType + else -> continue + } + + stack.add(Pair(type, instruction.args[0].value)) + } + } + + return if (register in 1..stack.size) { + val (type, value) = stack[register - 1] + + when (type) { + RegRefType -> find(LinkedHashSet(path), block, vaStartIdx, value as Int) + IntType, ByteType, ShortType -> ValueSet.of(value as Int) + // TODO: Deal with strings. + else -> ValueSet.all() // String or pointer + } + } else { + ValueSet.of(0) + } + } } diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetStackValue.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetStackValue.kt index 5348bb43..949676fc 100644 --- a/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetStackValue.kt +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetStackValue.kt @@ -8,6 +8,7 @@ private val logger = KotlinLogging.logger {} /** * Computes the possible values of a stack element at the nth position from the top, right before a * specific instruction. + * TODO: Deal with va_call. */ fun getStackValue(cfg: ControlFlowGraph, instruction: Instruction, position: Int): ValueSet { val block = cfg.getBlockForInstruction(instruction) diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/ValueSet.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/ValueSet.kt index 4538ab4a..bda0ad67 100644 --- a/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/ValueSet.kt +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/ValueSet.kt @@ -29,6 +29,9 @@ class ValueSet private constructor(private val intervals: MutableList) fun isEmpty(): Boolean = intervals.isEmpty() + fun isNotEmpty(): Boolean = + intervals.isNotEmpty() + fun minOrNull(): Int? = intervals.firstOrNull()?.start diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Bytecode.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Bytecode.kt index 0a28507c..4757883e 100644 --- a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Bytecode.kt +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Bytecode.kt @@ -12,7 +12,6 @@ import world.phantasmal.lib.buffer.Buffer import world.phantasmal.lib.cursor.BufferCursor import world.phantasmal.lib.cursor.Cursor import world.phantasmal.lib.cursor.cursor -import kotlin.math.ceil import kotlin.math.min private val logger = KotlinLogging.logger {} @@ -24,7 +23,8 @@ val SEGMENT_PRIORITY = mapOf( ) /** - * These functions are built into the client and can optionally be overridden on BB. + * These functions are built into the client and can optionally be overridden on BB. Other versions + * require you to always specify them in the script. */ val BUILTIN_FUNCTIONS = setOf( 60, @@ -43,6 +43,13 @@ val BUILTIN_FUNCTIONS = setOf( 840, 850, 860, + 900, + 910, + 920, + 930, + 940, + 950, + 960, ) /** @@ -114,20 +121,7 @@ fun parseBytecode( segments.add(segment) - offset += when (segment) { - is InstructionSegment -> segment.instructions.sumBy { it.getSize(dcGcFormat) } - - is DataSegment -> segment.data.size - - // String segments should be multiples of 4 bytes. - is StringSegment -> { - if (dcGcFormat) { - 4 * ceil((segment.value.length + 1) / 4.0).toInt() - } else { - 4 * ceil((segment.value.length + 1) / 2.0).toInt() - } - } - } + offset += segment.size(dcGcFormat) } // Add unreferenced labels to their segment. @@ -174,11 +168,14 @@ private fun findAndParseSegments( ) { var newLabels = labels var startSegmentCount: Int + // Instruction segments which we've been able to fully analyze for label references so far. + val analyzedSegments = mutableSetOf() // Iteratively parse segments from label references. do { startSegmentCount = offsetToSegment.size + // Parse segments of which the type is known. for ((label, type) in newLabels) { parseSegment(offsetToSegment, labelHolder, cursor, label, type, lenient, dcGcFormat) } @@ -194,21 +191,31 @@ private fun findAndParseSegments( newLabels = mutableMapOf() for (segment in sortedSegments) { - for (instruction in segment.instructions) { + if (segment in analyzedSegments) continue + + var foundAllLabels = true + + for (instructionIdx in segment.instructions.indices) { + val instruction = segment.instructions[instructionIdx] var i = 0 while (i < instruction.opcode.params.size) { val param = instruction.opcode.params[i] when (param.type) { - is ILabelType -> - getArgLabelValues( - cfg, - newLabels, - instruction, - i, - SegmentType.Instructions, - ) + is ILabelType -> { + if (!getArgLabelValues( + cfg, + newLabels, + segment, + instructionIdx, + i, + SegmentType.Instructions, + ) + ) { + foundAllLabels = false + } + } is ILabelVarType -> { // Never on the stack. @@ -220,11 +227,33 @@ private fun findAndParseSegments( } } - is DLabelType -> - getArgLabelValues(cfg, newLabels, instruction, i, SegmentType.Data) + is DLabelType -> { + if (!getArgLabelValues( + cfg, + newLabels, + segment, + instructionIdx, + i, + SegmentType.Data + ) + ) { + foundAllLabels = false + } + } - is SLabelType -> - getArgLabelValues(cfg, newLabels, instruction, i, SegmentType.String) + is SLabelType -> { + if (!getArgLabelValues( + cfg, + newLabels, + segment, + instructionIdx, + i, + SegmentType.String + ) + ) { + foundAllLabels = false + } + } is RegTupRefType -> { for (j in param.type.registerTuple.indices) { @@ -239,10 +268,12 @@ private fun findAndParseSegments( firstRegister + j, ) - if (labelValues.size <= 10) { + if (labelValues.size <= 20) { for (label in labelValues) { newLabels[label] = SegmentType.Instructions } + } else { + foundAllLabels = false } } } @@ -252,6 +283,10 @@ private fun findAndParseSegments( i++ } } + + if (foundAllLabels) { + analyzedSegments.add(segment) + } } } while (offsetToSegment.size > startSegmentCount) } @@ -262,10 +297,13 @@ private fun findAndParseSegments( private fun getArgLabelValues( cfg: ControlFlowGraph, labels: MutableMap, - instruction: Instruction, + instructionSegment: InstructionSegment, + instructionIdx: Int, paramIdx: Int, segmentType: SegmentType, -) { +): Boolean { + val instruction = instructionSegment.instructions[instructionIdx] + if (instruction.opcode.stack === StackInteraction.Pop) { val stackValues = getStackValue( cfg, @@ -273,7 +311,7 @@ private fun getArgLabelValues( instruction.opcode.params.size - paramIdx - 1, ) - if (stackValues.size <= 10) { + if (stackValues.size <= 20) { for (value in stackValues) { val oldType = labels[value] @@ -284,6 +322,8 @@ private fun getArgLabelValues( labels[value] = segmentType } } + + return true } } else { val value = instruction.args[paramIdx].value as Int @@ -293,9 +333,14 @@ private fun getArgLabelValues( oldType == null || SEGMENT_PRIORITY.getValue(segmentType) > SEGMENT_PRIORITY.getValue(oldType) ) { +// println("Type of label $value inferred as $segmentType because of parameter ${paramIdx + 1} of instruction ${instructionIdx + 1} ${instruction.opcode.mnemonic} at label ${instructionSegment.labels.firstOrNull()}.") labels[value] = segmentType } + + return true } + + return false } private fun parseSegment( @@ -416,10 +461,10 @@ private fun parseInstructionsSegment( // Recurse on label drop-through. if (nextLabel != null) { - // Find the first ret or jmp. + // Find the last ret or jmp. var dropThrough = true - for (i in instructions.size - 1 downTo 0) { + for (i in instructions.lastIndex downTo 0) { val opcode = instructions[i].opcode.code if (opcode == OP_RET.code || opcode == OP_JMP.code) { @@ -465,21 +510,23 @@ private fun parseStringSegment( dcGcFormat: Boolean, ) { val startOffset = cursor.position + val byteLength = endOffset - startOffset val segment = StringSegment( labels, if (dcGcFormat) { cursor.stringAscii( - endOffset - startOffset, + byteLength, nullTerminated = true, dropRemaining = true ) } else { cursor.stringUtf16( - endOffset - startOffset, + byteLength, nullTerminated = true, dropRemaining = true ) }, + byteLength, SegmentSrcLoc() ) offsetToSegment[startOffset] = segment @@ -593,7 +640,14 @@ fun writeBytecode(bytecodeIr: BytecodeIr, dcGcFormat: Boolean): BytecodeAndLabel for (i in opcode.params.indices) { val param = opcode.params[i] val args = instruction.getArgs(i) - val arg = args.first() + val arg = args.firstOrNull() + + if (arg == null) { + logger.warn { + "No argument passed to ${opcode.mnemonic} for parameter ${i + 1}." + } + continue + } when (param.type) { ByteType -> cursor.writeByte((arg.value as Int).toByte()) @@ -638,11 +692,9 @@ fun writeBytecode(bytecodeIr: BytecodeIr, dcGcFormat: Boolean): BytecodeAndLabel is StringSegment -> { // String segments should be multiples of 4 bytes. if (dcGcFormat) { - val byteLength = 4 * ceil((segment.value.length + 1) / 4.0).toInt() - cursor.writeStringAscii(segment.value, byteLength) + cursor.writeStringAscii(segment.value, segment.size(dcGcFormat)) } else { - val byteLength = 4 * ceil((segment.value.length + 1) / 2.0).toInt() - cursor.writeStringUtf16(segment.value, byteLength) + cursor.writeStringUtf16(segment.value, segment.size(dcGcFormat)) } } 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 7391f2c8..01d84e57 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 @@ -280,7 +280,7 @@ private fun writeEntities( ) { val groupedEntities = entities.groupBy { it.areaId } - for ((areaId, areaEntities) in groupedEntities.entries.sortedBy { it.key }) { + for ((areaId, areaEntities) in groupedEntities.entries) { val entitiesSize = areaEntities.size * entitySize cursor.writeInt(entityType) cursor.writeInt(16 + entitiesSize) @@ -309,7 +309,7 @@ private fun writeEntities( private fun writeEvents(cursor: WritableCursor, events: List) { val groupedEvents = events.groupBy { it.areaId } - for ((areaId, areaEvents) in groupedEvents.entries.sortedBy { it.key }) { + for ((areaId, areaEvents) in groupedEvents.entries) { // Standard header. cursor.writeInt(3) // Entity type val totalSizeOffset = cursor.position 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 e625b114..8502347f 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 @@ -265,6 +265,7 @@ fun writeQuestToQst(quest: Quest, filename: String, version: Version, online: Bo )) val baseFilename = (filenameBase(filename) ?: filename).take(11) + val questName = quest.name.take(if (version == Version.BB) 23 else 31) return writeQst(QstContent( version, @@ -273,13 +274,13 @@ fun writeQuestToQst(quest: Quest, filename: String, version: Version, online: Bo QstContainedFile( id = quest.id, filename = "$baseFilename.dat", - questName = quest.name, + questName = questName, data = prsCompress(dat.cursor()).buffer(), ), QstContainedFile( id = quest.id, filename = "$baseFilename.bin", - questName = quest.name, + questName = questName, data = prsCompress(bin.cursor()).buffer(), ), ), diff --git a/lib/src/commonTest/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetRegisterValueTests.kt b/lib/src/commonTest/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetRegisterValueTests.kt index 8f369484..673bcc83 100644 --- a/lib/src/commonTest/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetRegisterValueTests.kt +++ b/lib/src/commonTest/kotlin/world/phantasmal/lib/asm/dataFlowAnalysis/GetRegisterValueTests.kt @@ -200,4 +200,52 @@ class GetRegisterValueTests : LibTestSuite() { assertEquals(23, v2[3]) assertEquals(24, v2[4]) } + + @Test + fun va_call() { + val im = toInstructions(""" + 0: + va_start + arg_pushl 42 + va_call 100 + va_end + ret + 100: + ret + """.trimIndent()) + val cfg = ControlFlowGraph.create(im) + val value = getRegisterValue(cfg, im[1].instructions[0], 1) + + assertEquals(1, value.size) + assertEquals(42, value[0]) + } + + @Test + fun multiple_va_call() { + val im = toInstructions(""" + 0: + va_start + arg_pushl 1 + va_call 100 + va_end + va_start + arg_pushl 2 + va_call 100 + va_end + va_start + arg_pushl 3 + va_call 100 + va_end + ret + 100: + ret + """.trimIndent()) + val cfg = ControlFlowGraph.create(im) + val value = getRegisterValue(cfg, im[1].instructions[0], 1) + + assertEquals(3, value.size) + assertEquals(1, value[0]) + assertEquals(2, value[1]) + assertEquals(3, value[2]) + } } diff --git a/lib/src/commonTest/kotlin/world/phantasmal/lib/fileFormats/quest/QstTests.kt b/lib/src/commonTest/kotlin/world/phantasmal/lib/fileFormats/quest/QstTests.kt index bf56f091..6276fb93 100644 --- a/lib/src/commonTest/kotlin/world/phantasmal/lib/fileFormats/quest/QstTests.kt +++ b/lib/src/commonTest/kotlin/world/phantasmal/lib/fileFormats/quest/QstTests.kt @@ -1,7 +1,10 @@ package world.phantasmal.lib.fileFormats.quest +import world.phantasmal.lib.cursor.cursor import world.phantasmal.lib.test.LibTestSuite +import world.phantasmal.lib.test.assertDeepEquals import world.phantasmal.lib.test.readFile +import world.phantasmal.lib.test.testWithTetheallaQuests import kotlin.test.Test import kotlin.test.assertEquals import kotlin.test.assertTrue @@ -22,4 +25,40 @@ class QstTests : LibTestSuite() { assertEquals("quest58.dat", qst.files[1].filename) assertEquals("PSO/Lost HEAT SWORD", qst.files[1].questName) } + + /** + * Parse a file, convert the resulting structure to QST again and check whether the end result + * is byte-for-byte equal to the original. + */ + @Test + fun parseQst_and_writeQst_with_all_tethealla_quests() = asyncTest { + testWithTetheallaQuests { path, _ -> + if (EXCLUDED.any { it in path }) return@testWithTetheallaQuests + + try { + val origQst = readFile(path) + val parsedQst = parseQst(origQst).unwrap() + val newQst = writeQst(parsedQst) + origQst.seekStart(0) + + assertDeepEquals(origQst, newQst.cursor()) + } catch (e: Throwable) { + throw Exception("""Failed for "$path": ${e.message}""", e) + } + } + } + + companion object { + // TODO: Figure out why we can't round-trip these quests. + private val EXCLUDED = listOf( + "/ep2/shop/gallon.qst", + "/princ/ep1/", + "/princ/ep4/", + "/solo/ep1/04.qst", // Skip because it contains every chuck twice. + "/fragmentofmemoryen.qst", + "/lost havoc vulcan.qst", + "/goodluck.qst", + ".raw", + ) + } } diff --git a/lib/src/commonTest/kotlin/world/phantasmal/lib/fileFormats/quest/QuestTests.kt b/lib/src/commonTest/kotlin/world/phantasmal/lib/fileFormats/quest/QuestTests.kt index fe1c8ae3..d5feffd6 100644 --- a/lib/src/commonTest/kotlin/world/phantasmal/lib/fileFormats/quest/QuestTests.kt +++ b/lib/src/commonTest/kotlin/world/phantasmal/lib/fileFormats/quest/QuestTests.kt @@ -8,6 +8,7 @@ import world.phantasmal.lib.cursor.cursor import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.lib.test.assertDeepEquals import world.phantasmal.lib.test.readFile +import world.phantasmal.lib.test.testWithTetheallaQuests import kotlin.test.Test import kotlin.test.assertEquals import kotlin.test.assertTrue @@ -107,8 +108,21 @@ class QuestTests : LibTestSuite() { roundTripTest(filename, readFile("/$filename")) } + // TODO: Figure out why this test is so slow in JS/Karma. + @Test + fun round_trip_test_with_all_tethealla_quests() = asyncTest(slow = true) { + testWithTetheallaQuests { path, filename -> + if (EXCLUDED.any { it in path }) return@testWithTetheallaQuests + + try { + roundTripTest(filename, readFile(path)) + } catch (e: Throwable) { + throw Exception("""Failed for "$path": ${e.message}""", e) + } + } + } + /** - * Round-trip tests. * Parse a QST file, write the resulting Quest object to QST again, then parse that again. * Then check whether the two Quest objects are deeply equal. */ @@ -155,6 +169,20 @@ class QuestTests : LibTestSuite() { } assertDeepEquals(origQuest.mapDesignations, newQuest.mapDesignations, ::assertEquals) - assertDeepEquals(origQuest.bytecodeIr, newQuest.bytecodeIr) + assertDeepEquals(origQuest.bytecodeIr, newQuest.bytecodeIr, ignoreSrcLocs = true) + } + + companion object { + private val EXCLUDED = listOf( + ".raw", + // TODO: Test challenge mode quests when they're supported. + "/chl/", + // Central Dome Fire Swirl seems to be corrupt for two reasons: + // - It's ID is 33554458, according to the .bin, which is too big for the .qst format. + // - It has an NPC with script label 100, but the code at that label is invalid. + "/solo/ep1/side/26.qst", + // PRS-compressed file seems corrupt in Gallon's Plan, but qedit has no issues with it. + "/solo/ep1/side/quest035.qst", + ) } } diff --git a/lib/src/commonTest/kotlin/world/phantasmal/lib/test/TestWithTetheallaQuests.kt b/lib/src/commonTest/kotlin/world/phantasmal/lib/test/TestWithTetheallaQuests.kt new file mode 100644 index 00000000..cfbc82a2 --- /dev/null +++ b/lib/src/commonTest/kotlin/world/phantasmal/lib/test/TestWithTetheallaQuests.kt @@ -0,0 +1,181 @@ +package world.phantasmal.lib.test + +/** + * Applies [process] to all quest files provided with Tethealla version 0.143. + * [process] is called with the path to the file and the file name. + */ +inline fun testWithTetheallaQuests(process: (path: String, filename: String) -> Unit) { + for (file in TETHEALLA_QUESTS) { + val lastSlashIdx = file.lastIndexOf('/') + process(TETHEALLA_QUEST_PATH_PREFIX + file, file.drop(lastSlashIdx + 1)) + } +} + +const val TETHEALLA_QUEST_PATH_PREFIX = "/tethealla_v0.143_quests" + +val TETHEALLA_QUESTS = listOf( + "/battle/1.qst", + "/battle/2.qst", + "/battle/3.qst", + "/battle/4.qst", + "/battle/5.qst", + "/battle/6.qst", + "/battle/7.qst", + "/battle/8.qst", + "/chl/ep1/1.qst", + "/chl/ep1/2.qst", + "/chl/ep1/3.qst", + "/chl/ep1/4.qst", + "/chl/ep1/5.qst", + "/chl/ep1/6.qst", + "/chl/ep1/7.qst", + "/chl/ep1/8.qst", + "/chl/ep1/9.qst", + "/chl/ep2/21.qst", + "/chl/ep2/22.qst", + "/chl/ep2/23.qst", + "/chl/ep2/24.qst", + "/chl/ep2/25.qst", + "/ep1/event/ma1.qst", + "/ep1/event/ma4-a.qst", + "/ep1/event/ma4-b.qst", + "/ep1/event/ma4-c.qst", + "/ep1/event/princgift.qst", + "/ep1/event/sunset base.qst", + "/ep1/event/whiteday.qst", + "/ep1/ext/en1.qst", + "/ep1/ext/en2.qst", + "/ep1/ext/en3.qst", + "/ep1/ext/en4.qst", + "/ep1/ext/mop-up1.qst", + "/ep1/ext/mop-up2.qst", + "/ep1/ext/mop-up3.qst", + "/ep1/ext/mop-up4.qst", + "/ep1/ext/todays rate.qst", + "/ep1/recovery/fragmentofmemoryen.qst", + "/ep1/recovery/gallon.qst", + "/ep1/recovery/lost havoc vulcan.qst", + "/ep1/recovery/lost heat sword.qst", + "/ep1/recovery/lost ice spinner.qst", + "/ep1/recovery/lost soul blade.qst", + "/ep1/recovery/rappy holiday.qst", + "/ep1/vr/labyrinthe trial.qst", + "/ep1/vr/ttf.qst", + "/ep2/event/beach laughter.qst", + "/ep2/event/christmas.qst", + "/ep2/event/dream messenger.qst", + "/ep2/event/halloween.qst", + "/ep2/event/ma2.qst", + // ma4-a.qst seems corrupt, doesn't work in qedit either. +// "/ep2/event/ma4-a.qst", + "/ep2/event/ma4-b.qst", + "/ep2/event/ma4-c.qst", + "/ep2/event/quest239.qst", + "/ep2/event/singing by the beach.qst", + "/ep2/ext/pw1.qst", + "/ep2/ext/pw2.qst", + "/ep2/ext/pw3.qst", + "/ep2/ext/pw4.qst", + "/ep2/shop/gallon.qst", + "/ep2/tower/east.qst", + "/ep2/tower/west.qst", + "/ep2/vr/reach for the dream.qst", + "/ep2/vr/respectivetomorrow.qst", + "/ep4/event/clarie's deal.qst", + "/ep4/event/login.qst", + "/ep4/event/ma4-a.qst", + "/ep4/event/ma4-b.qst", + "/ep4/event/ma4-c.qst", + "/ep4/event/wildhouse.qst", + "/ep4/ext/newwipe1.qst", + "/ep4/ext/newwipe2.qst", + "/ep4/ext/newwipe3.qst", + "/ep4/ext/newwipe4.qst", + "/ep4/ext/newwipe5.qst", + "/ep4/ext/waroflimit1.qst", + "/ep4/ext/waroflimit2.qst", + "/ep4/ext/waroflimit3.qst", + "/ep4/ext/waroflimit4.qst", + "/ep4/ext/waroflimit5.qst", + "/ep4/shop/itempresent.qst", + "/ep4/shop/quest205.qst", + "/ep4/vr/max3.qst", + "/princ/ep1/1-1.qst", + "/princ/ep1/1-2.qst", + "/princ/ep1/1-3.qst", + "/princ/ep1/2-1.qst", + "/princ/ep1/2-2.qst", + "/princ/ep1/2-3.qst", + "/princ/ep1/2-4.qst", + "/princ/ep1/3-1.qst", + "/princ/ep1/3-2.qst", + "/princ/ep1/3-3.qst", + "/princ/ep1/4-1.qst", + "/princ/ep1/4-2.qst", + "/princ/ep1/4-3.qst", + "/princ/ep1/4-4.qst", + "/princ/ep1/4-5.qst", + "/princ/ep2/quest451.raw", + "/princ/ep2/quest452.raw", + "/princ/ep2/quest453.raw", + "/princ/ep2/quest454.raw", + "/princ/ep2/quest455.raw", + "/princ/ep2/quest456.raw", + "/princ/ep2/quest457.raw", + "/princ/ep2/quest458.raw", + "/princ/ep2/quest459.raw", + "/princ/ep2/quest460.raw", + "/princ/ep2/quest461.raw", + "/princ/ep2/quest462.raw", + "/princ/ep2/quest463.raw", + "/princ/ep2/quest464.raw", + "/princ/ep2/quest465.raw", + "/princ/ep2/quest466.raw", + "/princ/ep2/quest467.raw", + "/princ/ep2/quest468.raw", + "/princ/ep4/9-1.qst", + "/princ/ep4/9-2.qst", + "/princ/ep4/9-3.qst", + "/princ/ep4/9-4.qst", + "/princ/ep4/9-5.qst", + "/princ/ep4/9-6.qst", + "/princ/ep4/9-7.qst", + "/princ/ep4/9-8.qst", + "/princ/ep4/pod.qst", + "/solo/ep1/01.qst", + "/solo/ep1/02.qst", + "/solo/ep1/03.qst", + "/solo/ep1/04.qst", + "/solo/ep1/05.qst", + "/solo/ep1/06.qst", + "/solo/ep1/07.qst", + "/solo/ep1/08.qst", + "/solo/ep1/09.qst", + "/solo/ep1/10.qst", + "/solo/ep1/11.qst", + "/solo/ep1/12.qst", + "/solo/ep1/13.qst", + "/solo/ep1/14.qst", + "/solo/ep1/15.qst", + "/solo/ep1/16.qst", + "/solo/ep1/17.qst", + "/solo/ep1/18.qst", + "/solo/ep1/19.qst", + "/solo/ep1/20.qst", + "/solo/ep1/21.qst", + "/solo/ep1/22.qst", + "/solo/ep1/23.qst", + "/solo/ep1/24.qst", + "/solo/ep1/25.qst", + "/solo/ep1/side/26.qst", + "/solo/ep1/side/goodluck.qst", + "/solo/ep1/side/quest035.qst", + "/solo/ep1/side/quest073.qst", + "/solo/ep2/01.qst", + "/solo/ep4/01-blackpaper.qst", + "/solo/ep4/02-pioneer spirit.qst", + "/solo/ep4/03-Warrior Pride.qst", + "/solo/ep4/04-Restless Lion.qst", + "/solo/ep4/blackpaper2.qst", + "/solo/ep4/wilderending.qst", +) diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/battle.ini b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle.ini new file mode 100644 index 00000000..d9621d67 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle.ini @@ -0,0 +1,3 @@ +battle\ +Battle +Two or more$players fight$it out...$ $Who is the$best hunter? diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/1.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/1.qst new file mode 100644 index 00000000..c1bd752b Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/1.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/2.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/2.qst new file mode 100644 index 00000000..1ac875d4 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/2.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/3.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/3.qst new file mode 100644 index 00000000..d200ad82 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/3.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/4.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/4.qst new file mode 100644 index 00000000..74361390 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/4.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/5.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/5.qst new file mode 100644 index 00000000..e5702595 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/5.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/6.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/6.qst new file mode 100644 index 00000000..846b4774 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/6.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/7.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/7.qst new file mode 100644 index 00000000..c7eeb194 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/7.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/8.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/8.qst new file mode 100644 index 00000000..250d401d Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/8.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/quest.lst new file mode 100644 index 00000000..2c890894 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/battle/quest.lst @@ -0,0 +1,8 @@ +1.qst +2.qst +3.qst +4.qst +5.qst +6.qst +7.qst +8.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/1.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/1.qst new file mode 100644 index 00000000..debf561e Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/1.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/2.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/2.qst new file mode 100644 index 00000000..17583c43 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/2.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/3.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/3.qst new file mode 100644 index 00000000..320d59c5 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/3.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/4.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/4.qst new file mode 100644 index 00000000..4da2ca0e Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/4.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/5.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/5.qst new file mode 100644 index 00000000..947c64ec Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/5.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/6.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/6.qst new file mode 100644 index 00000000..cd76e532 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/6.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/7.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/7.qst new file mode 100644 index 00000000..6b351f48 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/7.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/8.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/8.qst new file mode 100644 index 00000000..453efcc9 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/8.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/9.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/9.qst new file mode 100644 index 00000000..5585fe8f Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep1/9.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/21.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/21.qst new file mode 100644 index 00000000..5f81ca7f Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/21.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/22.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/22.qst new file mode 100644 index 00000000..fc7a48e0 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/22.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/23.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/23.qst new file mode 100644 index 00000000..8d359aaf Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/23.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/24.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/24.qst new file mode 100644 index 00000000..7593a17d Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/24.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/25.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/25.qst new file mode 100644 index 00000000..f1a899e4 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/chl/ep2/25.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/ma1.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/ma1.qst new file mode 100644 index 00000000..9fe6e093 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/ma1.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/ma4-a.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/ma4-a.qst new file mode 100644 index 00000000..3acb6d87 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/ma4-a.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/ma4-b.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/ma4-b.qst new file mode 100644 index 00000000..f83c05a7 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/ma4-b.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/ma4-c.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/ma4-c.qst new file mode 100644 index 00000000..6f53703f Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/ma4-c.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/princgift.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/princgift.qst new file mode 100644 index 00000000..52d6e38d Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/princgift.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/quest.lst new file mode 100644 index 00000000..72c76d2a --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/quest.lst @@ -0,0 +1,7 @@ +ma1.qst +ma4-a.qst +ma4-b.qst +ma4-c.qst +princgift.qst +sunset base.qst +whiteday.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/sunset base.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/sunset base.qst new file mode 100644 index 00000000..b8c15abe Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/sunset base.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/whiteday.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/whiteday.qst new file mode 100644 index 00000000..044305a5 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/event/whiteday.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/en1.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/en1.qst new file mode 100644 index 00000000..7f4706de Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/en1.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/en2.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/en2.qst new file mode 100644 index 00000000..be005b11 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/en2.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/en3.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/en3.qst new file mode 100644 index 00000000..17984982 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/en3.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/en4.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/en4.qst new file mode 100644 index 00000000..e451ef5c Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/en4.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/mop-up1.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/mop-up1.qst new file mode 100644 index 00000000..7949a841 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/mop-up1.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/mop-up2.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/mop-up2.qst new file mode 100644 index 00000000..672e74f2 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/mop-up2.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/mop-up3.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/mop-up3.qst new file mode 100644 index 00000000..581ba855 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/mop-up3.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/mop-up4.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/mop-up4.qst new file mode 100644 index 00000000..19e06f49 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/mop-up4.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/quest.lst new file mode 100644 index 00000000..62abf0c0 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/quest.lst @@ -0,0 +1,9 @@ +en1.qst +en2.qst +en3.qst +en4.qst +mop-up1.qst +mop-up2.qst +mop-up3.qst +mop-up4.qst +todays rate.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/todays rate.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/todays rate.qst new file mode 100644 index 00000000..379efb1e Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/ext/todays rate.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/fragmentofmemoryen.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/fragmentofmemoryen.qst new file mode 100644 index 00000000..1b0a68cc Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/fragmentofmemoryen.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/gallon.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/gallon.qst new file mode 100644 index 00000000..425a1d4a Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/gallon.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/lost havoc vulcan.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/lost havoc vulcan.qst new file mode 100644 index 00000000..f3db2099 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/lost havoc vulcan.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/lost heat sword.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/lost heat sword.qst new file mode 100644 index 00000000..e509903b Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/lost heat sword.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/lost ice spinner.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/lost ice spinner.qst new file mode 100644 index 00000000..587c4aa1 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/lost ice spinner.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/lost soul blade.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/lost soul blade.qst new file mode 100644 index 00000000..4e677b79 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/lost soul blade.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/quest.lst new file mode 100644 index 00000000..0303788c --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/quest.lst @@ -0,0 +1,7 @@ +fragmentofmemoryen.qst +gallon.qst +lost heat sword.qst +lost ice spinner.qst +lost soul blade.qst +lost havoc vulcan.qst +rappy holiday.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/rappy holiday.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/rappy holiday.qst new file mode 100644 index 00000000..057c648a Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/recovery/rappy holiday.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/vr/labyrinthe trial.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/vr/labyrinthe trial.qst new file mode 100644 index 00000000..6e948f39 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/vr/labyrinthe trial.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/vr/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/vr/quest.lst new file mode 100644 index 00000000..b7c077b6 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/vr/quest.lst @@ -0,0 +1,2 @@ +labyrinthe trial.qst +ttf.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/vr/ttf.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/vr/ttf.qst new file mode 100644 index 00000000..23854015 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1/vr/ttf.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1gov.ini b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1gov.ini new file mode 100644 index 00000000..f69bd8fc --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1gov.ini @@ -0,0 +1,3 @@ +princ\ep1\ +Government +Urgent missions$from the$Principal! diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1solo.ini b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1solo.ini new file mode 100644 index 00000000..07afb913 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1solo.ini @@ -0,0 +1,6 @@ +solo\ep1\ +Main Story +Experience the$main story of$Phantasy Star$Online! +solo\ep1\side\ +Side Story +Uncover a$little more$about what's$going on... diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1team.ini b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1team.ini new file mode 100644 index 00000000..f56bbcd3 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep1team.ini @@ -0,0 +1,12 @@ +ep1\event\ +Event +Quests made$for special$events. +ep1\ext\ +Extermination +Quests where$you need to$kill monsters. +ep1\recovery\ +Retrieval +Quests where$you need to$retrieve an$item. +ep1\vr\ +VR +Battle enemies$in a virtual$room! diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/beach laughter.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/beach laughter.qst new file mode 100644 index 00000000..bde2302c Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/beach laughter.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/christmas.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/christmas.qst new file mode 100644 index 00000000..17d4887f Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/christmas.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/dream messenger.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/dream messenger.qst new file mode 100644 index 00000000..4714f96b Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/dream messenger.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/festival on the beach.qst.old b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/festival on the beach.qst.old new file mode 100644 index 00000000..4db0f8cb Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/festival on the beach.qst.old differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/halloween.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/halloween.qst new file mode 100644 index 00000000..ed92547d Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/halloween.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/ma2.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/ma2.qst new file mode 100644 index 00000000..c2fefce7 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/ma2.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/ma4-a.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/ma4-a.qst new file mode 100644 index 00000000..3e4335d4 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/ma4-a.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/ma4-b.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/ma4-b.qst new file mode 100644 index 00000000..65b57bc7 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/ma4-b.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/ma4-c.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/ma4-c.qst new file mode 100644 index 00000000..a492cf5b Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/ma4-c.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/quest.lst new file mode 100644 index 00000000..fce96afd --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/quest.lst @@ -0,0 +1,9 @@ +christmas.qst +dream messenger.qst +quest239.qst +halloween.qst +ma2.qst +ma4-a.qst +ma4-b.qst +ma4-c.qst +singing by the beach.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/quest239.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/quest239.qst new file mode 100644 index 00000000..7e1f3d5b Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/quest239.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/singing by the beach.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/singing by the beach.qst new file mode 100644 index 00000000..be92760b Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/event/singing by the beach.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/pw1.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/pw1.qst new file mode 100644 index 00000000..2ae55410 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/pw1.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/pw2.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/pw2.qst new file mode 100644 index 00000000..733a49cd Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/pw2.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/pw3.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/pw3.qst new file mode 100644 index 00000000..ad72d100 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/pw3.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/pw4.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/pw4.qst new file mode 100644 index 00000000..e964d939 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/pw4.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/quest.lst new file mode 100644 index 00000000..313871c4 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/ext/quest.lst @@ -0,0 +1,4 @@ +pw1.qst +pw2.qst +pw3.qst +pw4.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/shop/gallon.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/shop/gallon.qst new file mode 100644 index 00000000..eaa04e0d Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/shop/gallon.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/shop/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/shop/quest.lst new file mode 100644 index 00000000..d8c85e26 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/shop/quest.lst @@ -0,0 +1 @@ +gallon.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/tower/east.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/tower/east.qst new file mode 100644 index 00000000..88c86204 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/tower/east.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/tower/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/tower/quest.lst new file mode 100644 index 00000000..e842db05 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/tower/quest.lst @@ -0,0 +1,2 @@ +east.qst +west.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/tower/west.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/tower/west.qst new file mode 100644 index 00000000..eac27870 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/tower/west.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/vr/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/vr/quest.lst new file mode 100644 index 00000000..7a9a7a77 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/vr/quest.lst @@ -0,0 +1,2 @@ +reach for the dream.qst +respectivetomorrow.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/vr/reach for the dream.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/vr/reach for the dream.qst new file mode 100644 index 00000000..b72b88dc Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/vr/reach for the dream.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/vr/respectivetomorrow.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/vr/respectivetomorrow.qst new file mode 100644 index 00000000..e99b279e Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2/vr/respectivetomorrow.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2gov.ini b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2gov.ini new file mode 100644 index 00000000..c6f87a91 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2gov.ini @@ -0,0 +1,3 @@ +princ\ep2\ +Lab +Urgent missions$from the Lab! diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2solo.ini b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2solo.ini new file mode 100644 index 00000000..01fdaa0e --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2solo.ini @@ -0,0 +1,3 @@ +solo\ep2\ +Side Story +Uncover a$little more$about what's$going on... diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2team.ini b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2team.ini new file mode 100644 index 00000000..b40205f7 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep2team.ini @@ -0,0 +1,15 @@ +ep2\event\ +Event +Quests made$for special$events. +ep2\ext\ +Extermination +Quests where$you need to$kill monsters. +ep2\shop\ +Shop +Time for$shopping! +ep2\tower\ +Tower +Run through$the tower of$the dome. +ep2\vr\ +VR +Battle enemies$in a virtual$room! diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/clarie's deal.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/clarie's deal.qst new file mode 100644 index 00000000..ba54e5e6 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/clarie's deal.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/login.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/login.qst new file mode 100644 index 00000000..301bfe51 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/login.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/ma4-a.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/ma4-a.qst new file mode 100644 index 00000000..0a37a23c Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/ma4-a.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/ma4-b.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/ma4-b.qst new file mode 100644 index 00000000..b3f680eb Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/ma4-b.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/ma4-c.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/ma4-c.qst new file mode 100644 index 00000000..329dcd8f Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/ma4-c.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/quest.lst new file mode 100644 index 00000000..6d196e22 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/quest.lst @@ -0,0 +1,6 @@ +clarie's deal.qst +login.qst +ma4-a.qst +ma4-b.qst +ma4-c.qst +wildhouse.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/wildhouse.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/wildhouse.qst new file mode 100644 index 00000000..8ae83b67 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/event/wildhouse.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe1.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe1.qst new file mode 100644 index 00000000..89ac110a Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe1.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe2.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe2.qst new file mode 100644 index 00000000..a4b4d436 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe2.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe3.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe3.qst new file mode 100644 index 00000000..506d649c Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe3.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe4.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe4.qst new file mode 100644 index 00000000..f65639de Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe4.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe5.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe5.qst new file mode 100644 index 00000000..9d7123d4 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/newwipe5.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/quest.lst new file mode 100644 index 00000000..a3511378 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/quest.lst @@ -0,0 +1,10 @@ +newwipe1.qst +newwipe2.qst +newwipe3.qst +newwipe4.qst +newwipe5.qst +waroflimit1.qst +waroflimit2.qst +waroflimit3.qst +waroflimit4.qst +waroflimit5.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit1.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit1.qst new file mode 100644 index 00000000..ea1dcc40 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit1.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit2.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit2.qst new file mode 100644 index 00000000..d13438a4 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit2.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit3.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit3.qst new file mode 100644 index 00000000..1b9db535 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit3.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit4.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit4.qst new file mode 100644 index 00000000..bb89f6c7 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit4.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit5.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit5.qst new file mode 100644 index 00000000..b0261cc4 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/ext/waroflimit5.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/shop/itempresent.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/shop/itempresent.qst new file mode 100644 index 00000000..62cc78c3 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/shop/itempresent.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/shop/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/shop/quest.lst new file mode 100644 index 00000000..aa6ba9ce --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/shop/quest.lst @@ -0,0 +1 @@ +quest205.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/shop/quest205.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/shop/quest205.qst new file mode 100644 index 00000000..23e6457f Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/shop/quest205.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/vr/max3.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/vr/max3.qst new file mode 100644 index 00000000..8fccd860 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/vr/max3.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/vr/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/vr/quest.lst new file mode 100644 index 00000000..0de9ac36 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4/vr/quest.lst @@ -0,0 +1 @@ +max3.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4gov.ini b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4gov.ini new file mode 100644 index 00000000..960df4dd --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4gov.ini @@ -0,0 +1,3 @@ +princ\ep4\ +Government +Urgent missions$from the$Principal! diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4solo.ini b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4solo.ini new file mode 100644 index 00000000..111bcb68 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4solo.ini @@ -0,0 +1,3 @@ +solo\ep4\ +Side Story +Uncover more$about what's$going on... diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4team.ini b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4team.ini new file mode 100644 index 00000000..eedffa2d --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/ep4team.ini @@ -0,0 +1,12 @@ +ep4\event\ +Event +Quests made$for special$events. +ep4\ext\ +Extermination +Quests where$you have to$kill monsters. +ep4\vr\ +VR +Battle enemies$in a virtual$room! +ep4\shop\ +Shop +Time for$shopping! diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/1-1.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/1-1.qst new file mode 100644 index 00000000..0cb594fa Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/1-1.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/1-2.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/1-2.qst new file mode 100644 index 00000000..87d20123 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/1-2.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/1-3.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/1-3.qst new file mode 100644 index 00000000..c4847b44 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/1-3.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/2-1.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/2-1.qst new file mode 100644 index 00000000..e27bf4d7 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/2-1.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/2-2.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/2-2.qst new file mode 100644 index 00000000..216179b1 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/2-2.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/2-3.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/2-3.qst new file mode 100644 index 00000000..8ce344d3 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/2-3.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/2-4.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/2-4.qst new file mode 100644 index 00000000..6c1edc28 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/2-4.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/3-1.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/3-1.qst new file mode 100644 index 00000000..5cd45891 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/3-1.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/3-2.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/3-2.qst new file mode 100644 index 00000000..db9014a0 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/3-2.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/3-3.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/3-3.qst new file mode 100644 index 00000000..ff651e3a Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/3-3.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-1.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-1.qst new file mode 100644 index 00000000..0fd9ca76 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-1.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-2.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-2.qst new file mode 100644 index 00000000..bf0bee91 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-2.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-3.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-3.qst new file mode 100644 index 00000000..3338d6b2 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-3.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-4.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-4.qst new file mode 100644 index 00000000..9072e644 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-4.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-5.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-5.qst new file mode 100644 index 00000000..61d61844 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/4-5.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/quest.lst new file mode 100644 index 00000000..aec15b4a --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep1/quest.lst @@ -0,0 +1,15 @@ +1-1.qst +1-2.qst +1-3.qst +2-1.qst +2-2.qst +2-3.qst +2-4.qst +3-1.qst +3-2.qst +3-3.qst +4-1.qst +4-2.qst +4-3.qst +4-4.qst +4-5.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest.lst new file mode 100644 index 00000000..acaacac8 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest.lst @@ -0,0 +1,18 @@ +quest451.raw +quest452.raw +quest453.raw +quest454.raw +quest455.raw +quest456.raw +quest457.raw +quest458.raw +quest459.raw +quest460.raw +quest461.raw +quest462.raw +quest463.raw +quest464.raw +quest465.raw +quest466.raw +quest467.raw +quest468.raw diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest451.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest451.raw new file mode 100644 index 00000000..4a1c9a3d Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest451.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest452.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest452.raw new file mode 100644 index 00000000..0061c0cd Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest452.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest453.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest453.raw new file mode 100644 index 00000000..da263130 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest453.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest454.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest454.raw new file mode 100644 index 00000000..cf66af40 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest454.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest455.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest455.raw new file mode 100644 index 00000000..3e953e35 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest455.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest456.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest456.raw new file mode 100644 index 00000000..6d361845 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest456.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest457.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest457.raw new file mode 100644 index 00000000..2fd3b986 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest457.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest458.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest458.raw new file mode 100644 index 00000000..355ab443 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest458.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest459.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest459.raw new file mode 100644 index 00000000..aece6a47 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest459.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest460.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest460.raw new file mode 100644 index 00000000..3272211c Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest460.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest461.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest461.raw new file mode 100644 index 00000000..a62b9d69 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest461.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest462.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest462.raw new file mode 100644 index 00000000..3c815710 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest462.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest463.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest463.raw new file mode 100644 index 00000000..ee48e92d Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest463.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest464.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest464.raw new file mode 100644 index 00000000..67ed9739 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest464.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest465.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest465.raw new file mode 100644 index 00000000..e98f770f Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest465.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest466.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest466.raw new file mode 100644 index 00000000..c233988c Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest466.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest467.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest467.raw new file mode 100644 index 00000000..8a6615b8 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest467.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest468.raw b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest468.raw new file mode 100644 index 00000000..44f74b31 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep2/quest468.raw differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-1.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-1.qst new file mode 100644 index 00000000..112e2e3f Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-1.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-2.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-2.qst new file mode 100644 index 00000000..fdd86073 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-2.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-3.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-3.qst new file mode 100644 index 00000000..23072ba2 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-3.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-4.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-4.qst new file mode 100644 index 00000000..8176c5a2 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-4.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-5.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-5.qst new file mode 100644 index 00000000..89d820a4 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-5.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-6.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-6.qst new file mode 100644 index 00000000..10462611 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-6.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-7.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-7.qst new file mode 100644 index 00000000..04ebfd9b Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-7.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-8.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-8.qst new file mode 100644 index 00000000..bc2ddadf Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/9-8.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/pod.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/pod.qst new file mode 100644 index 00000000..8547af52 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/pod.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/quest.lst new file mode 100644 index 00000000..7590b1b2 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/princ/ep4/quest.lst @@ -0,0 +1,9 @@ +9-1.qst +9-2.qst +9-3.qst +9-4.qst +9-5.qst +9-6.qst +9-7.qst +9-8.qst +pod.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/01.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/01.qst new file mode 100644 index 00000000..7cd39222 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/01.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/02.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/02.qst new file mode 100644 index 00000000..f27cf020 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/02.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/03.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/03.qst new file mode 100644 index 00000000..48a83d27 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/03.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/04.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/04.qst new file mode 100644 index 00000000..5f049232 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/04.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/05.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/05.qst new file mode 100644 index 00000000..aaa5c0ec Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/05.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/06.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/06.qst new file mode 100644 index 00000000..a8d93dde Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/06.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/07.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/07.qst new file mode 100644 index 00000000..7f39b9e8 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/07.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/08.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/08.qst new file mode 100644 index 00000000..78339c50 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/08.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/09.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/09.qst new file mode 100644 index 00000000..18261848 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/09.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/10.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/10.qst new file mode 100644 index 00000000..2a2ea561 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/10.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/11.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/11.qst new file mode 100644 index 00000000..271be323 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/11.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/12.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/12.qst new file mode 100644 index 00000000..8ee28fb6 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/12.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/13.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/13.qst new file mode 100644 index 00000000..d20c63df Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/13.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/14.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/14.qst new file mode 100644 index 00000000..f842245e Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/14.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/15.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/15.qst new file mode 100644 index 00000000..b8bd1ba4 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/15.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/16.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/16.qst new file mode 100644 index 00000000..676b4dfe Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/16.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/17.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/17.qst new file mode 100644 index 00000000..6c145c1f Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/17.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/18.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/18.qst new file mode 100644 index 00000000..23830bb7 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/18.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/19.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/19.qst new file mode 100644 index 00000000..e991d8d1 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/19.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/20.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/20.qst new file mode 100644 index 00000000..35575a8f Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/20.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/21.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/21.qst new file mode 100644 index 00000000..0a5d8ecb Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/21.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/22.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/22.qst new file mode 100644 index 00000000..d6c5c749 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/22.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/23.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/23.qst new file mode 100644 index 00000000..5781da5b Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/23.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/24.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/24.qst new file mode 100644 index 00000000..1c6038ba Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/24.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/25.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/25.qst new file mode 100644 index 00000000..1891eea9 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/25.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/quest.lst new file mode 100644 index 00000000..fca1baf7 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/quest.lst @@ -0,0 +1,25 @@ +01.qst +02.qst +03.qst +04.qst +05.qst +06.qst +07.qst +08.qst +09.qst +10.qst +11.qst +12.qst +13.qst +14.qst +15.qst +16.qst +17.qst +18.qst +19.qst +20.qst +21.qst +22.qst +23.qst +24.qst +25.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/26.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/26.qst new file mode 100644 index 00000000..6baf3654 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/26.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/goodluck.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/goodluck.qst new file mode 100644 index 00000000..6dc08552 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/goodluck.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/quest.lst new file mode 100644 index 00000000..37d9a3ed --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/quest.lst @@ -0,0 +1,4 @@ +quest035.qst +26.qst +quest073.qst +goodluck.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/quest035.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/quest035.qst new file mode 100644 index 00000000..a2500498 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/quest035.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/quest073.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/quest073.qst new file mode 100644 index 00000000..5ebca2e4 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep1/side/quest073.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep2/01.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep2/01.qst new file mode 100644 index 00000000..4fc972b9 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep2/01.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep2/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep2/quest.lst new file mode 100644 index 00000000..18787cb5 --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep2/quest.lst @@ -0,0 +1 @@ +01.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/01-blackpaper.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/01-blackpaper.qst new file mode 100644 index 00000000..8810ce30 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/01-blackpaper.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/02-pioneer spirit.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/02-pioneer spirit.qst new file mode 100644 index 00000000..d90c5229 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/02-pioneer spirit.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/03-Warrior Pride.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/03-Warrior Pride.qst new file mode 100644 index 00000000..ce6a4eb6 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/03-Warrior Pride.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/04-Restless Lion.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/04-Restless Lion.qst new file mode 100644 index 00000000..0496bd92 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/04-Restless Lion.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/blackpaper2.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/blackpaper2.qst new file mode 100644 index 00000000..88e99618 Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/blackpaper2.qst differ diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/quest.lst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/quest.lst new file mode 100644 index 00000000..d900064f --- /dev/null +++ b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/quest.lst @@ -0,0 +1,6 @@ +01-blackpaper.qst +blackpaper2.qst +02-pioneer spirit.qst +03-Warrior Pride.qst +04-Restless Lion.qst +wilderending.qst diff --git a/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/wilderending.qst b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/wilderending.qst new file mode 100644 index 00000000..b51d427a Binary files /dev/null and b/lib/src/commonTest/resources/tethealla_v0.143_quests/solo/ep4/wilderending.qst differ diff --git a/test-utils/src/commonMain/kotlin/world/phantasmal/testUtils/AbstractTestSuite.kt b/test-utils/src/commonMain/kotlin/world/phantasmal/testUtils/AbstractTestSuite.kt index 2f415dc9..bec453f1 100644 --- a/test-utils/src/commonMain/kotlin/world/phantasmal/testUtils/AbstractTestSuite.kt +++ b/test-utils/src/commonMain/kotlin/world/phantasmal/testUtils/AbstractTestSuite.kt @@ -4,7 +4,9 @@ import world.phantasmal.core.disposable.Disposer import world.phantasmal.core.disposable.TrackedDisposable abstract class AbstractTestSuite { - fun test(testBlock: Ctx.() -> Unit) { + fun test(slowTest: Boolean = false, testBlock: Ctx.() -> Unit) { + if (slowTest && !canExecuteSlowTests()) return + TrackedDisposable.checkNoLeaks(trackPrecise = true) { val disposer = Disposer() @@ -14,15 +16,18 @@ abstract class AbstractTestSuite { } } - fun asyncTest(testBlock: suspend Ctx.() -> Unit) = world.phantasmal.testUtils.asyncTest { - TrackedDisposable.checkNoLeaks(trackPrecise = true) { - val disposer = Disposer() + fun asyncTest(slow: Boolean = false, testBlock: suspend Ctx.() -> Unit) = + world.phantasmal.testUtils.asyncTest lambda@{ + if (slow && !canExecuteSlowTests()) return@lambda - testBlock(createContext(disposer)) + TrackedDisposable.checkNoLeaks(trackPrecise = true) { + val disposer = Disposer() - disposer.dispose() + testBlock(createContext(disposer)) + + disposer.dispose() + } } - } protected abstract fun createContext(disposer: Disposer): Ctx } diff --git a/test-utils/src/commonMain/kotlin/world/phantasmal/testUtils/AsyncTest.kt b/test-utils/src/commonMain/kotlin/world/phantasmal/testUtils/TestUtils.kt similarity index 77% rename from test-utils/src/commonMain/kotlin/world/phantasmal/testUtils/AsyncTest.kt rename to test-utils/src/commonMain/kotlin/world/phantasmal/testUtils/TestUtils.kt index 8f43f8bb..37ee8e95 100644 --- a/test-utils/src/commonMain/kotlin/world/phantasmal/testUtils/AsyncTest.kt +++ b/test-utils/src/commonMain/kotlin/world/phantasmal/testUtils/TestUtils.kt @@ -6,4 +6,6 @@ package world.phantasmal.testUtils * framework won't wait for its completion. This is a workaround for issue * [https://youtrack.jetbrains.com/issue/KT-22228]. */ -expect fun asyncTest(block: suspend () -> Unit) +internal expect fun asyncTest(block: suspend () -> Unit) + +internal expect fun canExecuteSlowTests(): Boolean diff --git a/test-utils/src/jsMain/kotlin/world/phantasmal/testUtils/AsyncTest.kt b/test-utils/src/jsMain/kotlin/world/phantasmal/testUtils/AsyncTest.kt deleted file mode 100644 index 6c88177e..00000000 --- a/test-utils/src/jsMain/kotlin/world/phantasmal/testUtils/AsyncTest.kt +++ /dev/null @@ -1,6 +0,0 @@ -package world.phantasmal.testUtils - -import kotlinx.coroutines.GlobalScope -import kotlinx.coroutines.promise - -actual fun asyncTest(block: suspend () -> Unit): dynamic = GlobalScope.promise { block() } diff --git a/test-utils/src/jsMain/kotlin/world/phantasmal/testUtils/TestUtils.kt b/test-utils/src/jsMain/kotlin/world/phantasmal/testUtils/TestUtils.kt new file mode 100644 index 00000000..cb32b872 --- /dev/null +++ b/test-utils/src/jsMain/kotlin/world/phantasmal/testUtils/TestUtils.kt @@ -0,0 +1,9 @@ +package world.phantasmal.testUtils + +import kotlinx.coroutines.GlobalScope +import kotlinx.coroutines.promise + +internal actual fun asyncTest(block: suspend () -> Unit): dynamic = + GlobalScope.promise { block() } + +internal actual fun canExecuteSlowTests(): Boolean = false diff --git a/test-utils/src/jvmMain/kotlin/world/phantasmal/testUtils/AsyncTest.kt b/test-utils/src/jvmMain/kotlin/world/phantasmal/testUtils/TestUtils.kt similarity index 53% rename from test-utils/src/jvmMain/kotlin/world/phantasmal/testUtils/AsyncTest.kt rename to test-utils/src/jvmMain/kotlin/world/phantasmal/testUtils/TestUtils.kt index 31a077f1..f24b3ce4 100644 --- a/test-utils/src/jvmMain/kotlin/world/phantasmal/testUtils/AsyncTest.kt +++ b/test-utils/src/jvmMain/kotlin/world/phantasmal/testUtils/TestUtils.kt @@ -4,6 +4,8 @@ package world.phantasmal.testUtils import kotlinx.coroutines.runBlocking -actual fun asyncTest(block: suspend () -> Unit) { +internal actual fun asyncTest(block: suspend () -> Unit) { runBlocking { block() } } + +internal actual fun canExecuteSlowTests(): Boolean = true