mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-03 13:58:28 +08:00
Renamed lib subproject to psolib for clarity.
This commit is contained in:
parent
6cf0fdaf33
commit
1341dd76f5
@ -1,10 +0,0 @@
|
||||
@file:JvmName("TestUtilsJvm")
|
||||
|
||||
package world.phantasmal.lib.test
|
||||
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.lib.cursor.cursor
|
||||
|
||||
actual suspend fun readFile(path: String): Cursor =
|
||||
Buffer.fromResource(path).cursor()
|
@ -37,7 +37,7 @@ kotlin {
|
||||
val generateOpcodes = tasks.register("generateOpcodes") {
|
||||
group = "code generation"
|
||||
|
||||
val packageName = "world.phantasmal.lib.asm"
|
||||
val packageName = "world.phantasmal.psolib.asm"
|
||||
val opcodesFile = file("srcGeneration/asm/opcodes.yml")
|
||||
val outputFile = file(
|
||||
"build/generated-src/commonMain/kotlin/${packageName.replace('.', '/')}/Opcodes.kt"
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib
|
||||
package world.phantasmal.psolib
|
||||
|
||||
enum class Endianness {
|
||||
Little,
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib
|
||||
package world.phantasmal.psolib
|
||||
|
||||
enum class Episode {
|
||||
I,
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib.asm
|
||||
package world.phantasmal.psolib.asm
|
||||
|
||||
import world.phantasmal.core.fastIsWhitespace
|
||||
import world.phantasmal.core.fastReplace
|
@ -1,10 +1,10 @@
|
||||
package world.phantasmal.lib.asm
|
||||
package world.phantasmal.psolib.asm
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.core.Problem
|
||||
import world.phantasmal.core.PwResult
|
||||
import world.phantasmal.core.Severity
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import kotlin.time.measureTimedValue
|
||||
|
||||
private val logger = KotlinLogging.logger {}
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.asm
|
||||
package world.phantasmal.psolib.asm
|
||||
|
||||
import world.phantasmal.core.unsafe.unsafeAssertNotNull
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import kotlin.math.ceil
|
||||
|
||||
/**
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib.asm
|
||||
package world.phantasmal.psolib.asm
|
||||
|
||||
import mu.KotlinLogging
|
||||
import kotlin.math.min
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib.asm
|
||||
package world.phantasmal.psolib.asm
|
||||
|
||||
import world.phantasmal.core.unsafe.UnsafeMap
|
||||
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.asm.dataFlowAnalysis
|
||||
package world.phantasmal.psolib.asm.dataFlowAnalysis
|
||||
|
||||
import world.phantasmal.lib.asm.*
|
||||
import world.phantasmal.psolib.asm.*
|
||||
|
||||
// See https://en.wikipedia.org/wiki/Control-flow_graph.
|
||||
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.asm.dataFlowAnalysis
|
||||
package world.phantasmal.psolib.asm.dataFlowAnalysis
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.lib.asm.*
|
||||
import world.phantasmal.psolib.asm.*
|
||||
|
||||
private val logger = KotlinLogging.logger {}
|
||||
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.asm.dataFlowAnalysis
|
||||
package world.phantasmal.psolib.asm.dataFlowAnalysis
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.lib.asm.*
|
||||
import world.phantasmal.psolib.asm.*
|
||||
import kotlin.math.max
|
||||
import kotlin.math.min
|
||||
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.asm.dataFlowAnalysis
|
||||
package world.phantasmal.psolib.asm.dataFlowAnalysis
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.lib.asm.*
|
||||
import world.phantasmal.psolib.asm.*
|
||||
|
||||
private val logger = KotlinLogging.logger {}
|
||||
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib.asm.dataFlowAnalysis
|
||||
package world.phantasmal.psolib.asm.dataFlowAnalysis
|
||||
|
||||
import kotlin.math.max
|
||||
import kotlin.math.min
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.buffer
|
||||
package world.phantasmal.psolib.buffer
|
||||
|
||||
import world.phantasmal.lib.Endianness
|
||||
import world.phantasmal.psolib.Endianness
|
||||
|
||||
/**
|
||||
* Resizable, continuous block of bytes which is reallocated when necessary.
|
@ -1,9 +1,9 @@
|
||||
package world.phantasmal.lib.compression.prs
|
||||
package world.phantasmal.psolib.compression.prs
|
||||
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.lib.cursor.WritableCursor
|
||||
import world.phantasmal.lib.cursor.cursor
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.WritableCursor
|
||||
import world.phantasmal.psolib.cursor.cursor
|
||||
import kotlin.math.max
|
||||
import kotlin.math.min
|
||||
|
@ -1,13 +1,13 @@
|
||||
package world.phantasmal.lib.compression.prs
|
||||
package world.phantasmal.psolib.compression.prs
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.core.PwResult
|
||||
import world.phantasmal.core.Severity
|
||||
import world.phantasmal.core.Success
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.lib.cursor.WritableCursor
|
||||
import world.phantasmal.lib.cursor.cursor
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.WritableCursor
|
||||
import world.phantasmal.psolib.cursor.cursor
|
||||
import kotlin.math.min
|
||||
|
||||
private val logger = KotlinLogging.logger {}
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib.cursor
|
||||
package world.phantasmal.psolib.cursor
|
||||
|
||||
import kotlin.math.min
|
||||
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.cursor
|
||||
package world.phantasmal.psolib.cursor
|
||||
|
||||
import world.phantasmal.lib.Endianness
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.psolib.Endianness
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
|
||||
/**
|
||||
* @param buffer The Buffer to read from and write to.
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.cursor
|
||||
package world.phantasmal.psolib.cursor
|
||||
|
||||
import world.phantasmal.lib.Endianness
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.psolib.Endianness
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
|
||||
/**
|
||||
* A cursor for reading binary data.
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib.cursor
|
||||
package world.phantasmal.psolib.cursor
|
||||
|
||||
/**
|
||||
* A cursor for reading and writing binary data.
|
@ -1,10 +1,10 @@
|
||||
package world.phantasmal.lib.fileFormats
|
||||
package world.phantasmal.psolib.fileFormats
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.core.PwResult
|
||||
import world.phantasmal.core.Severity
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
|
||||
private val logger = KotlinLogging.logger {}
|
||||
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.fileFormats
|
||||
package world.phantasmal.psolib.fileFormats
|
||||
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
|
||||
class CollisionGeometry(
|
||||
val meshes: List<CollisionMesh>,
|
@ -1,9 +1,9 @@
|
||||
package world.phantasmal.lib.fileFormats
|
||||
package world.phantasmal.psolib.fileFormats
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.core.isBitSet
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.lib.fileFormats.ninja.*
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.fileFormats.ninja.*
|
||||
|
||||
private val logger = KotlinLogging.logger {}
|
||||
|
@ -1,9 +1,9 @@
|
||||
package world.phantasmal.lib.fileFormats
|
||||
package world.phantasmal.psolib.fileFormats
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.core.PwResult
|
||||
import world.phantasmal.core.Severity
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
|
||||
private val logger = KotlinLogging.logger {}
|
||||
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.fileFormats
|
||||
package world.phantasmal.psolib.fileFormats
|
||||
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
|
||||
class ItemPmt(
|
||||
val statBoosts: List<PmtStatBoost>,
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.fileFormats
|
||||
package world.phantasmal.psolib.fileFormats
|
||||
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
|
||||
class Rel(
|
||||
/**
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.fileFormats
|
||||
package world.phantasmal.psolib.fileFormats
|
||||
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import kotlin.math.min
|
||||
|
||||
class Unitxt(val categories: List<List<String>>)
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.fileFormats
|
||||
package world.phantasmal.psolib.fileFormats
|
||||
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
|
||||
data class Vec2(val x: Float, val y: Float)
|
||||
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib.fileFormats.ninja
|
||||
package world.phantasmal.psolib.fileFormats.ninja
|
||||
|
||||
import kotlin.math.PI
|
||||
import kotlin.math.round
|
@ -1,9 +1,9 @@
|
||||
package world.phantasmal.lib.fileFormats.ninja
|
||||
package world.phantasmal.psolib.fileFormats.ninja
|
||||
|
||||
import world.phantasmal.core.isBitSet
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.lib.fileFormats.Vec3
|
||||
import world.phantasmal.lib.fileFormats.vec3Float
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.fileFormats.Vec3
|
||||
import world.phantasmal.psolib.fileFormats.vec3Float
|
||||
|
||||
private const val NMDM = 0x4d444d4e
|
||||
|
@ -1,12 +1,12 @@
|
||||
package world.phantasmal.lib.fileFormats.ninja
|
||||
package world.phantasmal.psolib.fileFormats.ninja
|
||||
|
||||
import world.phantasmal.core.Failure
|
||||
import world.phantasmal.core.PwResult
|
||||
import world.phantasmal.core.Success
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.lib.fileFormats.Vec3
|
||||
import world.phantasmal.lib.fileFormats.parseIff
|
||||
import world.phantasmal.lib.fileFormats.vec3Float
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.fileFormats.Vec3
|
||||
import world.phantasmal.psolib.fileFormats.parseIff
|
||||
import world.phantasmal.psolib.fileFormats.vec3Float
|
||||
|
||||
private const val NJCM: Int = 0x4D434A4E
|
||||
|
@ -1,9 +1,9 @@
|
||||
package world.phantasmal.lib.fileFormats.ninja
|
||||
package world.phantasmal.psolib.fileFormats.ninja
|
||||
|
||||
import world.phantasmal.core.isBitSet
|
||||
import world.phantasmal.core.setBit
|
||||
import world.phantasmal.lib.fileFormats.Vec2
|
||||
import world.phantasmal.lib.fileFormats.Vec3
|
||||
import world.phantasmal.psolib.fileFormats.Vec2
|
||||
import world.phantasmal.psolib.fileFormats.Vec3
|
||||
|
||||
sealed class NinjaObject<Model : NinjaModel, Self : NinjaObject<Model, Self>>(
|
||||
val offset: Int,
|
@ -1,11 +1,11 @@
|
||||
package world.phantasmal.lib.fileFormats.ninja
|
||||
package world.phantasmal.psolib.fileFormats.ninja
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.core.isBitSet
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.lib.fileFormats.Vec2
|
||||
import world.phantasmal.lib.fileFormats.Vec3
|
||||
import world.phantasmal.lib.fileFormats.vec3Float
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.fileFormats.Vec2
|
||||
import world.phantasmal.psolib.fileFormats.Vec3
|
||||
import world.phantasmal.psolib.fileFormats.vec3Float
|
||||
import kotlin.math.abs
|
||||
|
||||
// TODO:
|
@ -1,14 +1,14 @@
|
||||
package world.phantasmal.lib.fileFormats.ninja
|
||||
package world.phantasmal.psolib.fileFormats.ninja
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.core.Failure
|
||||
import world.phantasmal.core.PwResult
|
||||
import world.phantasmal.core.Severity
|
||||
import world.phantasmal.core.Success
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.lib.fileFormats.parseIff
|
||||
import world.phantasmal.lib.fileFormats.parseIffHeaders
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.fileFormats.parseIff
|
||||
import world.phantasmal.psolib.fileFormats.parseIffHeaders
|
||||
|
||||
private val logger = KotlinLogging.logger {}
|
||||
|
@ -1,11 +1,11 @@
|
||||
package world.phantasmal.lib.fileFormats.ninja
|
||||
package world.phantasmal.psolib.fileFormats.ninja
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.lib.fileFormats.Vec2
|
||||
import world.phantasmal.lib.fileFormats.Vec3
|
||||
import world.phantasmal.lib.fileFormats.vec2Float
|
||||
import world.phantasmal.lib.fileFormats.vec3Float
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.fileFormats.Vec2
|
||||
import world.phantasmal.psolib.fileFormats.Vec3
|
||||
import world.phantasmal.psolib.fileFormats.vec2Float
|
||||
import world.phantasmal.psolib.fileFormats.vec3Float
|
||||
|
||||
private val logger = KotlinLogging.logger {}
|
||||
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import world.phantasmal.lib.Episode
|
||||
import world.phantasmal.psolib.Episode
|
||||
|
||||
class Area(
|
||||
val id: Int,
|
@ -1,9 +1,9 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.lib.cursor.cursor
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.cursor
|
||||
|
||||
private val logger = KotlinLogging.logger {}
|
||||
|
@ -1,17 +1,17 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.core.PwResult
|
||||
import world.phantasmal.core.Severity
|
||||
import world.phantasmal.lib.Endianness
|
||||
import world.phantasmal.lib.asm.*
|
||||
import world.phantasmal.lib.asm.dataFlowAnalysis.ControlFlowGraph
|
||||
import world.phantasmal.lib.asm.dataFlowAnalysis.getRegisterValue
|
||||
import world.phantasmal.lib.asm.dataFlowAnalysis.getStackValue
|
||||
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 world.phantasmal.psolib.Endianness
|
||||
import world.phantasmal.psolib.asm.*
|
||||
import world.phantasmal.psolib.asm.dataFlowAnalysis.ControlFlowGraph
|
||||
import world.phantasmal.psolib.asm.dataFlowAnalysis.getRegisterValue
|
||||
import world.phantasmal.psolib.asm.dataFlowAnalysis.getStackValue
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.cursor.BufferCursor
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.cursor
|
||||
import kotlin.math.min
|
||||
|
||||
private val logger = KotlinLogging.logger {}
|
@ -1,11 +1,11 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.lib.Endianness
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.lib.cursor.WritableCursor
|
||||
import world.phantasmal.lib.cursor.cursor
|
||||
import world.phantasmal.psolib.Endianness
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.WritableCursor
|
||||
import world.phantasmal.psolib.cursor.cursor
|
||||
import kotlin.math.max
|
||||
|
||||
private val logger = KotlinLogging.logger {}
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
/**
|
||||
* Represents an entity type-specific property for accessing ambiguous parts of the entity data.
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
interface EntityType {
|
||||
val name: String
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import world.phantasmal.lib.Episode
|
||||
import world.phantasmal.psolib.Episode
|
||||
|
||||
private val FRIENDLY_NPC_PROPERTIES = listOf(
|
||||
EntityProp(name = "Movement distance", offset = 44, type = EntityPropType.F32),
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import world.phantasmal.lib.Episode
|
||||
import world.phantasmal.psolib.Episode
|
||||
|
||||
private val EP_AND_NAME_TO_NPC_TYPE: Map<Pair<String, Episode>, NpcType> =
|
||||
mutableMapOf<Pair<String, Episode>, NpcType>().also { map ->
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import world.phantasmal.lib.Episode
|
||||
import world.phantasmal.psolib.Episode
|
||||
|
||||
// TODO: detect Mothmant, St. Rappy, Hallo Rappy, Egg Rappy, Death Gunner, Bulk and Recon.
|
||||
fun npcTypeFromQuestNpc(npc: QuestNpc): NpcType {
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import world.phantasmal.lib.Episode
|
||||
import world.phantasmal.lib.fileFormats.quest.NpcType.values
|
||||
import world.phantasmal.psolib.Episode
|
||||
import world.phantasmal.psolib.fileFormats.quest.NpcType.values
|
||||
|
||||
enum class ObjectType(
|
||||
override val uniqueName: String,
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
fun objectTypeFromId(id: Short): ObjectType =
|
||||
when (id.toInt()) {
|
@ -1,15 +1,15 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.core.PwResult
|
||||
import world.phantasmal.core.Severity
|
||||
import world.phantasmal.core.Success
|
||||
import world.phantasmal.core.filenameBase
|
||||
import world.phantasmal.lib.Endianness
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.lib.cursor.WritableCursor
|
||||
import world.phantasmal.lib.cursor.cursor
|
||||
import world.phantasmal.psolib.Endianness
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.WritableCursor
|
||||
import world.phantasmal.psolib.cursor.cursor
|
||||
import kotlin.math.ceil
|
||||
import kotlin.math.max
|
||||
import kotlin.math.min
|
@ -1,18 +1,18 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.core.*
|
||||
import world.phantasmal.lib.Episode
|
||||
import world.phantasmal.lib.asm.BytecodeIr
|
||||
import world.phantasmal.lib.asm.InstructionSegment
|
||||
import world.phantasmal.lib.asm.OP_SET_EPISODE
|
||||
import world.phantasmal.lib.asm.dataFlowAnalysis.ControlFlowGraph
|
||||
import world.phantasmal.lib.asm.dataFlowAnalysis.getMapDesignations
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.compression.prs.prsCompress
|
||||
import world.phantasmal.lib.compression.prs.prsDecompress
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.lib.cursor.cursor
|
||||
import world.phantasmal.psolib.Episode
|
||||
import world.phantasmal.psolib.asm.BytecodeIr
|
||||
import world.phantasmal.psolib.asm.InstructionSegment
|
||||
import world.phantasmal.psolib.asm.OP_SET_EPISODE
|
||||
import world.phantasmal.psolib.asm.dataFlowAnalysis.ControlFlowGraph
|
||||
import world.phantasmal.psolib.asm.dataFlowAnalysis.getMapDesignations
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.compression.prs.prsCompress
|
||||
import world.phantasmal.psolib.compression.prs.prsDecompress
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.cursor
|
||||
|
||||
private val logger = KotlinLogging.logger {}
|
||||
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.fileFormats.Vec3
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.fileFormats.Vec3
|
||||
|
||||
interface QuestEntity<Type : EntityType> {
|
||||
val type: Type
|
@ -1,10 +1,10 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import world.phantasmal.lib.Episode
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.fileFormats.Vec3
|
||||
import world.phantasmal.lib.fileFormats.ninja.angleToRad
|
||||
import world.phantasmal.lib.fileFormats.ninja.radToAngle
|
||||
import world.phantasmal.psolib.Episode
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.fileFormats.Vec3
|
||||
import world.phantasmal.psolib.fileFormats.ninja.angleToRad
|
||||
import world.phantasmal.psolib.fileFormats.ninja.radToAngle
|
||||
import kotlin.math.roundToInt
|
||||
|
||||
class QuestNpc(
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
|
||||
// TODO: set properties of friendly NPCs based on episode.
|
||||
internal fun setNpcDefaultData(type: NpcType, view: Buffer) {
|
@ -1,9 +1,9 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.fileFormats.Vec3
|
||||
import world.phantasmal.lib.fileFormats.ninja.angleToRad
|
||||
import world.phantasmal.lib.fileFormats.ninja.radToAngle
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.fileFormats.Vec3
|
||||
import world.phantasmal.psolib.fileFormats.ninja.angleToRad
|
||||
import world.phantasmal.psolib.fileFormats.ninja.radToAngle
|
||||
import kotlin.math.roundToInt
|
||||
|
||||
class QuestObject(override var areaId: Int, override val data: Buffer) : QuestEntity<ObjectType> {
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
|
||||
internal fun setObjectDefaultData(type: ObjectType, data: Buffer) {
|
||||
data.setFloat(40, 1f) // Scale x
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
enum class Version {
|
||||
/**
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib.vm
|
||||
package world.phantasmal.psolib.vm
|
||||
|
||||
/**
|
||||
* Attaches to [vm] as its [ExecutionInterceptor].
|
@ -1,8 +1,8 @@
|
||||
package world.phantasmal.lib.vm
|
||||
package world.phantasmal.psolib.vm
|
||||
|
||||
import world.phantasmal.lib.asm.BytecodeIr
|
||||
import world.phantasmal.lib.asm.Instruction
|
||||
import world.phantasmal.lib.asm.InstructionSegment
|
||||
import world.phantasmal.psolib.asm.BytecodeIr
|
||||
import world.phantasmal.psolib.asm.Instruction
|
||||
import world.phantasmal.psolib.asm.InstructionSegment
|
||||
|
||||
class InstructionReference(
|
||||
val segIdx: Int,
|
@ -1,8 +1,8 @@
|
||||
package world.phantasmal.lib.vm
|
||||
package world.phantasmal.psolib.vm
|
||||
|
||||
import world.phantasmal.lib.Endianness
|
||||
import world.phantasmal.lib.asm.AnyType
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.psolib.Endianness
|
||||
import world.phantasmal.psolib.asm.AnyType
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
|
||||
class StackFrame(
|
||||
val idx: Int,
|
@ -1,10 +1,10 @@
|
||||
package world.phantasmal.lib.vm
|
||||
package world.phantasmal.psolib.vm
|
||||
|
||||
import mu.KotlinLogging
|
||||
import world.phantasmal.lib.Endianness
|
||||
import world.phantasmal.lib.Episode
|
||||
import world.phantasmal.lib.asm.*
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.psolib.Endianness
|
||||
import world.phantasmal.psolib.Episode
|
||||
import world.phantasmal.psolib.asm.*
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
|
||||
private val logger = KotlinLogging.logger {}
|
||||
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.asm
|
||||
package world.phantasmal.psolib.asm
|
||||
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import world.phantasmal.testUtils.assertCloseTo
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
@ -1,8 +1,8 @@
|
||||
package world.phantasmal.lib.asm
|
||||
package world.phantasmal.psolib.asm
|
||||
|
||||
import world.phantasmal.core.Success
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.lib.test.assertDeepEquals
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.assertDeepEquals
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
import kotlin.test.assertTrue
|
@ -1,12 +1,12 @@
|
||||
package world.phantasmal.lib.asm
|
||||
package world.phantasmal.psolib.asm
|
||||
|
||||
import world.phantasmal.core.Success
|
||||
import world.phantasmal.lib.fileFormats.quest.parseBin
|
||||
import world.phantasmal.lib.fileFormats.quest.parseBytecode
|
||||
import world.phantasmal.lib.fileFormats.quest.writeBytecode
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.lib.test.assertDeepEquals
|
||||
import world.phantasmal.lib.test.readFile
|
||||
import world.phantasmal.psolib.fileFormats.quest.parseBin
|
||||
import world.phantasmal.psolib.fileFormats.quest.parseBytecode
|
||||
import world.phantasmal.psolib.fileFormats.quest.writeBytecode
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.assertDeepEquals
|
||||
import world.phantasmal.psolib.test.readFile
|
||||
import world.phantasmal.testUtils.assertDeepEquals
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.asm
|
||||
package world.phantasmal.psolib.asm
|
||||
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.asm
|
||||
package world.phantasmal.psolib.asm
|
||||
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
import kotlin.test.assertNotEquals
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.asm.dataFlowAnalysis
|
||||
package world.phantasmal.psolib.asm.dataFlowAnalysis
|
||||
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.lib.test.toInstructions
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.toInstructions
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
import kotlin.test.assertTrue
|
@ -1,8 +1,8 @@
|
||||
package world.phantasmal.lib.asm.dataFlowAnalysis
|
||||
package world.phantasmal.psolib.asm.dataFlowAnalysis
|
||||
|
||||
import world.phantasmal.lib.asm.*
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.lib.test.toInstructions
|
||||
import world.phantasmal.psolib.asm.*
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.toInstructions
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.asm.dataFlowAnalysis
|
||||
package world.phantasmal.psolib.asm.dataFlowAnalysis
|
||||
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
import kotlin.test.assertFalse
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.buffer
|
||||
package world.phantasmal.psolib.buffer
|
||||
|
||||
import world.phantasmal.lib.Endianness
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.Endianness
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
import kotlin.test.assertTrue
|
@ -1,8 +1,8 @@
|
||||
package world.phantasmal.lib.compression.prs
|
||||
package world.phantasmal.psolib.compression.prs
|
||||
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.cursor.cursor
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.cursor.cursor
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import kotlin.random.Random
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
@ -1,10 +1,10 @@
|
||||
package world.phantasmal.lib.compression.prs
|
||||
package world.phantasmal.psolib.compression.prs
|
||||
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.lib.cursor.cursor
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.lib.test.readFile
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.cursor
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.readFile
|
||||
import kotlin.random.Random
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.cursor
|
||||
package world.phantasmal.psolib.cursor
|
||||
|
||||
import world.phantasmal.lib.Endianness
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.psolib.Endianness
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.cursor
|
||||
package world.phantasmal.psolib.cursor
|
||||
|
||||
import world.phantasmal.lib.Endianness
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.Endianness
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.cursor
|
||||
package world.phantasmal.psolib.cursor
|
||||
|
||||
import world.phantasmal.lib.Endianness
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.psolib.Endianness
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.testUtils.assertCloseTo
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.fileFormats
|
||||
package world.phantasmal.psolib.fileFormats
|
||||
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.lib.test.readFile
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.readFile
|
||||
import world.phantasmal.testUtils.assertCloseTo
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
@ -1,7 +1,7 @@
|
||||
package world.phantasmal.lib.fileFormats
|
||||
package world.phantasmal.psolib.fileFormats
|
||||
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.lib.test.readFile
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.readFile
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
|
@ -1,8 +1,8 @@
|
||||
package world.phantasmal.lib.fileFormats.ninja
|
||||
package world.phantasmal.psolib.fileFormats.ninja
|
||||
|
||||
import world.phantasmal.core.Success
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.lib.test.readFile
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.readFile
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
import kotlin.test.assertTrue
|
@ -1,9 +1,9 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.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.psolib.cursor.cursor
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.assertDeepEquals
|
||||
import world.phantasmal.psolib.test.readFile
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
|
@ -1,11 +1,11 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import world.phantasmal.core.Success
|
||||
import world.phantasmal.lib.asm.InstructionSegment
|
||||
import world.phantasmal.lib.asm.OP_BB_MAP_DESIGNATE
|
||||
import world.phantasmal.lib.asm.OP_SET_EPISODE
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.asm.InstructionSegment
|
||||
import world.phantasmal.psolib.asm.OP_BB_MAP_DESIGNATE
|
||||
import world.phantasmal.psolib.asm.OP_SET_EPISODE
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
import kotlin.test.assertTrue
|
@ -1,9 +1,9 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.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.psolib.cursor.cursor
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.assertDeepEquals
|
||||
import world.phantasmal.psolib.test.readFile
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
|
@ -1,10 +1,10 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.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 world.phantasmal.psolib.cursor.cursor
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.assertDeepEquals
|
||||
import world.phantasmal.psolib.test.readFile
|
||||
import world.phantasmal.psolib.test.testWithTetheallaQuests
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
import kotlin.test.assertTrue
|
@ -1,14 +1,14 @@
|
||||
package world.phantasmal.lib.fileFormats.quest
|
||||
package world.phantasmal.psolib.fileFormats.quest
|
||||
|
||||
import world.phantasmal.core.Success
|
||||
import world.phantasmal.lib.Episode
|
||||
import world.phantasmal.lib.asm.*
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
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 world.phantasmal.psolib.Episode
|
||||
import world.phantasmal.psolib.asm.*
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import world.phantasmal.psolib.cursor.cursor
|
||||
import world.phantasmal.psolib.test.LibTestSuite
|
||||
import world.phantasmal.psolib.test.assertDeepEquals
|
||||
import world.phantasmal.psolib.test.readFile
|
||||
import world.phantasmal.psolib.test.testWithTetheallaQuests
|
||||
import world.phantasmal.testUtils.assertDeepEquals
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
@ -1,6 +1,6 @@
|
||||
package world.phantasmal.lib.test
|
||||
package world.phantasmal.psolib.test
|
||||
|
||||
import world.phantasmal.lib.asm.*
|
||||
import world.phantasmal.psolib.asm.*
|
||||
import world.phantasmal.testUtils.assertDeepEquals
|
||||
import kotlin.test.assertEquals
|
||||
import kotlin.test.assertNotNull
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib.test
|
||||
package world.phantasmal.psolib.test
|
||||
|
||||
import world.phantasmal.core.disposable.Disposer
|
||||
import world.phantasmal.testUtils.AbstractTestSuite
|
@ -1,10 +1,10 @@
|
||||
package world.phantasmal.lib.test
|
||||
package world.phantasmal.psolib.test
|
||||
|
||||
import world.phantasmal.core.Success
|
||||
import world.phantasmal.lib.asm.InstructionSegment
|
||||
import world.phantasmal.lib.asm.assemble
|
||||
import world.phantasmal.lib.buffer.Buffer
|
||||
import world.phantasmal.lib.cursor.Cursor
|
||||
import world.phantasmal.psolib.asm.InstructionSegment
|
||||
import world.phantasmal.psolib.asm.assemble
|
||||
import world.phantasmal.psolib.buffer.Buffer
|
||||
import world.phantasmal.psolib.cursor.Cursor
|
||||
import kotlin.test.assertEquals
|
||||
import kotlin.test.assertTrue
|
||||
|
@ -1,4 +1,4 @@
|
||||
package world.phantasmal.lib.test
|
||||
package world.phantasmal.psolib.test
|
||||
|
||||
/**
|
||||
* Applies [process] to all quest files provided with Tethealla version 0.143.
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user