Renamed lib subproject to psolib for clarity.

This commit is contained in:
Daan Vanden Bosch 2021-07-25 17:24:42 +02:00
parent 6cf0fdaf33
commit 1341dd76f5
363 changed files with 448 additions and 448 deletions

View File

@ -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()

View File

@ -37,7 +37,7 @@ kotlin {
val generateOpcodes = tasks.register("generateOpcodes") { val generateOpcodes = tasks.register("generateOpcodes") {
group = "code generation" group = "code generation"
val packageName = "world.phantasmal.lib.asm" val packageName = "world.phantasmal.psolib.asm"
val opcodesFile = file("srcGeneration/asm/opcodes.yml") val opcodesFile = file("srcGeneration/asm/opcodes.yml")
val outputFile = file( val outputFile = file(
"build/generated-src/commonMain/kotlin/${packageName.replace('.', '/')}/Opcodes.kt" "build/generated-src/commonMain/kotlin/${packageName.replace('.', '/')}/Opcodes.kt"

View File

@ -1,4 +1,4 @@
package world.phantasmal.lib package world.phantasmal.psolib
enum class Endianness { enum class Endianness {
Little, Little,

View File

@ -1,4 +1,4 @@
package world.phantasmal.lib package world.phantasmal.psolib
enum class Episode { enum class Episode {
I, I,

View File

@ -1,4 +1,4 @@
package world.phantasmal.lib.asm package world.phantasmal.psolib.asm
import world.phantasmal.core.fastIsWhitespace import world.phantasmal.core.fastIsWhitespace
import world.phantasmal.core.fastReplace import world.phantasmal.core.fastReplace

View File

@ -1,10 +1,10 @@
package world.phantasmal.lib.asm package world.phantasmal.psolib.asm
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.core.Problem import world.phantasmal.core.Problem
import world.phantasmal.core.PwResult import world.phantasmal.core.PwResult
import world.phantasmal.core.Severity import world.phantasmal.core.Severity
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import kotlin.time.measureTimedValue import kotlin.time.measureTimedValue
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}

View File

@ -1,7 +1,7 @@
package world.phantasmal.lib.asm package world.phantasmal.psolib.asm
import world.phantasmal.core.unsafe.unsafeAssertNotNull import world.phantasmal.core.unsafe.unsafeAssertNotNull
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import kotlin.math.ceil import kotlin.math.ceil
/** /**

View File

@ -1,4 +1,4 @@
package world.phantasmal.lib.asm package world.phantasmal.psolib.asm
import mu.KotlinLogging import mu.KotlinLogging
import kotlin.math.min import kotlin.math.min

View File

@ -1,4 +1,4 @@
package world.phantasmal.lib.asm package world.phantasmal.psolib.asm
import world.phantasmal.core.unsafe.UnsafeMap import world.phantasmal.core.unsafe.UnsafeMap

View File

@ -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. // See https://en.wikipedia.org/wiki/Control-flow_graph.

View File

@ -1,7 +1,7 @@
package world.phantasmal.lib.asm.dataFlowAnalysis package world.phantasmal.psolib.asm.dataFlowAnalysis
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.lib.asm.* import world.phantasmal.psolib.asm.*
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}

View File

@ -1,7 +1,7 @@
package world.phantasmal.lib.asm.dataFlowAnalysis package world.phantasmal.psolib.asm.dataFlowAnalysis
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.lib.asm.* import world.phantasmal.psolib.asm.*
import kotlin.math.max import kotlin.math.max
import kotlin.math.min import kotlin.math.min

View File

@ -1,7 +1,7 @@
package world.phantasmal.lib.asm.dataFlowAnalysis package world.phantasmal.psolib.asm.dataFlowAnalysis
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.lib.asm.* import world.phantasmal.psolib.asm.*
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}

View File

@ -1,4 +1,4 @@
package world.phantasmal.lib.asm.dataFlowAnalysis package world.phantasmal.psolib.asm.dataFlowAnalysis
import kotlin.math.max import kotlin.math.max
import kotlin.math.min import kotlin.math.min

View File

@ -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. * Resizable, continuous block of bytes which is reallocated when necessary.

View File

@ -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.psolib.buffer.Buffer
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.cursor.WritableCursor import world.phantasmal.psolib.cursor.WritableCursor
import world.phantasmal.lib.cursor.cursor import world.phantasmal.psolib.cursor.cursor
import kotlin.math.max import kotlin.math.max
import kotlin.math.min import kotlin.math.min

View File

@ -1,13 +1,13 @@
package world.phantasmal.lib.compression.prs package world.phantasmal.psolib.compression.prs
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.core.PwResult import world.phantasmal.core.PwResult
import world.phantasmal.core.Severity import world.phantasmal.core.Severity
import world.phantasmal.core.Success import world.phantasmal.core.Success
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.cursor.WritableCursor import world.phantasmal.psolib.cursor.WritableCursor
import world.phantasmal.lib.cursor.cursor import world.phantasmal.psolib.cursor.cursor
import kotlin.math.min import kotlin.math.min
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}

View File

@ -1,4 +1,4 @@
package world.phantasmal.lib.cursor package world.phantasmal.psolib.cursor
import kotlin.math.min import kotlin.math.min

View File

@ -1,7 +1,7 @@
package world.phantasmal.lib.cursor package world.phantasmal.psolib.cursor
import world.phantasmal.lib.Endianness import world.phantasmal.psolib.Endianness
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
/** /**
* @param buffer The Buffer to read from and write to. * @param buffer The Buffer to read from and write to.

View File

@ -1,7 +1,7 @@
package world.phantasmal.lib.cursor package world.phantasmal.psolib.cursor
import world.phantasmal.lib.Endianness import world.phantasmal.psolib.Endianness
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
/** /**
* A cursor for reading binary data. * A cursor for reading binary data.

View File

@ -1,4 +1,4 @@
package world.phantasmal.lib.cursor package world.phantasmal.psolib.cursor
/** /**
* A cursor for reading and writing binary data. * A cursor for reading and writing binary data.

View File

@ -1,10 +1,10 @@
package world.phantasmal.lib.fileFormats package world.phantasmal.psolib.fileFormats
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.core.PwResult import world.phantasmal.core.PwResult
import world.phantasmal.core.Severity import world.phantasmal.core.Severity
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}

View File

@ -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( class CollisionGeometry(
val meshes: List<CollisionMesh>, val meshes: List<CollisionMesh>,

View File

@ -1,9 +1,9 @@
package world.phantasmal.lib.fileFormats package world.phantasmal.psolib.fileFormats
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.core.isBitSet import world.phantasmal.core.isBitSet
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.fileFormats.ninja.* import world.phantasmal.psolib.fileFormats.ninja.*
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}

View File

@ -1,9 +1,9 @@
package world.phantasmal.lib.fileFormats package world.phantasmal.psolib.fileFormats
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.core.PwResult import world.phantasmal.core.PwResult
import world.phantasmal.core.Severity import world.phantasmal.core.Severity
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}

View File

@ -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( class ItemPmt(
val statBoosts: List<PmtStatBoost>, val statBoosts: List<PmtStatBoost>,

View File

@ -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( class Rel(
/** /**

View File

@ -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 import kotlin.math.min
class Unitxt(val categories: List<List<String>>) class Unitxt(val categories: List<List<String>>)

View File

@ -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) data class Vec2(val x: Float, val y: Float)

View File

@ -1,4 +1,4 @@
package world.phantasmal.lib.fileFormats.ninja package world.phantasmal.psolib.fileFormats.ninja
import kotlin.math.PI import kotlin.math.PI
import kotlin.math.round import kotlin.math.round

View File

@ -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.isBitSet
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.fileFormats.Vec3 import world.phantasmal.psolib.fileFormats.Vec3
import world.phantasmal.lib.fileFormats.vec3Float import world.phantasmal.psolib.fileFormats.vec3Float
private const val NMDM = 0x4d444d4e private const val NMDM = 0x4d444d4e

View File

@ -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.Failure
import world.phantasmal.core.PwResult import world.phantasmal.core.PwResult
import world.phantasmal.core.Success import world.phantasmal.core.Success
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.fileFormats.Vec3 import world.phantasmal.psolib.fileFormats.Vec3
import world.phantasmal.lib.fileFormats.parseIff import world.phantasmal.psolib.fileFormats.parseIff
import world.phantasmal.lib.fileFormats.vec3Float import world.phantasmal.psolib.fileFormats.vec3Float
private const val NJCM: Int = 0x4D434A4E private const val NJCM: Int = 0x4D434A4E

View File

@ -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.isBitSet
import world.phantasmal.core.setBit import world.phantasmal.core.setBit
import world.phantasmal.lib.fileFormats.Vec2 import world.phantasmal.psolib.fileFormats.Vec2
import world.phantasmal.lib.fileFormats.Vec3 import world.phantasmal.psolib.fileFormats.Vec3
sealed class NinjaObject<Model : NinjaModel, Self : NinjaObject<Model, Self>>( sealed class NinjaObject<Model : NinjaModel, Self : NinjaObject<Model, Self>>(
val offset: Int, val offset: Int,

View File

@ -1,11 +1,11 @@
package world.phantasmal.lib.fileFormats.ninja package world.phantasmal.psolib.fileFormats.ninja
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.core.isBitSet import world.phantasmal.core.isBitSet
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.fileFormats.Vec2 import world.phantasmal.psolib.fileFormats.Vec2
import world.phantasmal.lib.fileFormats.Vec3 import world.phantasmal.psolib.fileFormats.Vec3
import world.phantasmal.lib.fileFormats.vec3Float import world.phantasmal.psolib.fileFormats.vec3Float
import kotlin.math.abs import kotlin.math.abs
// TODO: // TODO:

View File

@ -1,14 +1,14 @@
package world.phantasmal.lib.fileFormats.ninja package world.phantasmal.psolib.fileFormats.ninja
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.core.Failure import world.phantasmal.core.Failure
import world.phantasmal.core.PwResult import world.phantasmal.core.PwResult
import world.phantasmal.core.Severity import world.phantasmal.core.Severity
import world.phantasmal.core.Success import world.phantasmal.core.Success
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.fileFormats.parseIff import world.phantasmal.psolib.fileFormats.parseIff
import world.phantasmal.lib.fileFormats.parseIffHeaders import world.phantasmal.psolib.fileFormats.parseIffHeaders
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}

View File

@ -1,11 +1,11 @@
package world.phantasmal.lib.fileFormats.ninja package world.phantasmal.psolib.fileFormats.ninja
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.fileFormats.Vec2 import world.phantasmal.psolib.fileFormats.Vec2
import world.phantasmal.lib.fileFormats.Vec3 import world.phantasmal.psolib.fileFormats.Vec3
import world.phantasmal.lib.fileFormats.vec2Float import world.phantasmal.psolib.fileFormats.vec2Float
import world.phantasmal.lib.fileFormats.vec3Float import world.phantasmal.psolib.fileFormats.vec3Float
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}

View File

@ -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( class Area(
val id: Int, val id: Int,

View File

@ -1,9 +1,9 @@
package world.phantasmal.lib.fileFormats.quest package world.phantasmal.psolib.fileFormats.quest
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.cursor.cursor import world.phantasmal.psolib.cursor.cursor
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}

View File

@ -1,17 +1,17 @@
package world.phantasmal.lib.fileFormats.quest package world.phantasmal.psolib.fileFormats.quest
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.core.PwResult import world.phantasmal.core.PwResult
import world.phantasmal.core.Severity import world.phantasmal.core.Severity
import world.phantasmal.lib.Endianness import world.phantasmal.psolib.Endianness
import world.phantasmal.lib.asm.* import world.phantasmal.psolib.asm.*
import world.phantasmal.lib.asm.dataFlowAnalysis.ControlFlowGraph import world.phantasmal.psolib.asm.dataFlowAnalysis.ControlFlowGraph
import world.phantasmal.lib.asm.dataFlowAnalysis.getRegisterValue import world.phantasmal.psolib.asm.dataFlowAnalysis.getRegisterValue
import world.phantasmal.lib.asm.dataFlowAnalysis.getStackValue import world.phantasmal.psolib.asm.dataFlowAnalysis.getStackValue
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import world.phantasmal.lib.cursor.BufferCursor import world.phantasmal.psolib.cursor.BufferCursor
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.cursor.cursor import world.phantasmal.psolib.cursor.cursor
import kotlin.math.min import kotlin.math.min
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}

View File

@ -1,11 +1,11 @@
package world.phantasmal.lib.fileFormats.quest package world.phantasmal.psolib.fileFormats.quest
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.lib.Endianness import world.phantasmal.psolib.Endianness
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.cursor.WritableCursor import world.phantasmal.psolib.cursor.WritableCursor
import world.phantasmal.lib.cursor.cursor import world.phantasmal.psolib.cursor.cursor
import kotlin.math.max import kotlin.math.max
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}

View File

@ -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. * Represents an entity type-specific property for accessing ambiguous parts of the entity data.

View File

@ -1,4 +1,4 @@
package world.phantasmal.lib.fileFormats.quest package world.phantasmal.psolib.fileFormats.quest
interface EntityType { interface EntityType {
val name: String val name: String

View File

@ -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( private val FRIENDLY_NPC_PROPERTIES = listOf(
EntityProp(name = "Movement distance", offset = 44, type = EntityPropType.F32), EntityProp(name = "Movement distance", offset = 44, type = EntityPropType.F32),

View File

@ -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> = private val EP_AND_NAME_TO_NPC_TYPE: Map<Pair<String, Episode>, NpcType> =
mutableMapOf<Pair<String, Episode>, NpcType>().also { map -> mutableMapOf<Pair<String, Episode>, NpcType>().also { map ->

View File

@ -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. // TODO: detect Mothmant, St. Rappy, Hallo Rappy, Egg Rappy, Death Gunner, Bulk and Recon.
fun npcTypeFromQuestNpc(npc: QuestNpc): NpcType { fun npcTypeFromQuestNpc(npc: QuestNpc): NpcType {

View File

@ -1,7 +1,7 @@
package world.phantasmal.lib.fileFormats.quest package world.phantasmal.psolib.fileFormats.quest
import world.phantasmal.lib.Episode import world.phantasmal.psolib.Episode
import world.phantasmal.lib.fileFormats.quest.NpcType.values import world.phantasmal.psolib.fileFormats.quest.NpcType.values
enum class ObjectType( enum class ObjectType(
override val uniqueName: String, override val uniqueName: String,

View File

@ -1,4 +1,4 @@
package world.phantasmal.lib.fileFormats.quest package world.phantasmal.psolib.fileFormats.quest
fun objectTypeFromId(id: Short): ObjectType = fun objectTypeFromId(id: Short): ObjectType =
when (id.toInt()) { when (id.toInt()) {

View File

@ -1,15 +1,15 @@
package world.phantasmal.lib.fileFormats.quest package world.phantasmal.psolib.fileFormats.quest
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.core.PwResult import world.phantasmal.core.PwResult
import world.phantasmal.core.Severity import world.phantasmal.core.Severity
import world.phantasmal.core.Success import world.phantasmal.core.Success
import world.phantasmal.core.filenameBase import world.phantasmal.core.filenameBase
import world.phantasmal.lib.Endianness import world.phantasmal.psolib.Endianness
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.cursor.WritableCursor import world.phantasmal.psolib.cursor.WritableCursor
import world.phantasmal.lib.cursor.cursor import world.phantasmal.psolib.cursor.cursor
import kotlin.math.ceil import kotlin.math.ceil
import kotlin.math.max import kotlin.math.max
import kotlin.math.min import kotlin.math.min

View File

@ -1,18 +1,18 @@
package world.phantasmal.lib.fileFormats.quest package world.phantasmal.psolib.fileFormats.quest
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.core.* import world.phantasmal.core.*
import world.phantasmal.lib.Episode import world.phantasmal.psolib.Episode
import world.phantasmal.lib.asm.BytecodeIr import world.phantasmal.psolib.asm.BytecodeIr
import world.phantasmal.lib.asm.InstructionSegment import world.phantasmal.psolib.asm.InstructionSegment
import world.phantasmal.lib.asm.OP_SET_EPISODE import world.phantasmal.psolib.asm.OP_SET_EPISODE
import world.phantasmal.lib.asm.dataFlowAnalysis.ControlFlowGraph import world.phantasmal.psolib.asm.dataFlowAnalysis.ControlFlowGraph
import world.phantasmal.lib.asm.dataFlowAnalysis.getMapDesignations import world.phantasmal.psolib.asm.dataFlowAnalysis.getMapDesignations
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import world.phantasmal.lib.compression.prs.prsCompress import world.phantasmal.psolib.compression.prs.prsCompress
import world.phantasmal.lib.compression.prs.prsDecompress import world.phantasmal.psolib.compression.prs.prsDecompress
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.cursor.cursor import world.phantasmal.psolib.cursor.cursor
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}

View File

@ -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.psolib.buffer.Buffer
import world.phantasmal.lib.fileFormats.Vec3 import world.phantasmal.psolib.fileFormats.Vec3
interface QuestEntity<Type : EntityType> { interface QuestEntity<Type : EntityType> {
val type: Type val type: Type

View File

@ -1,10 +1,10 @@
package world.phantasmal.lib.fileFormats.quest package world.phantasmal.psolib.fileFormats.quest
import world.phantasmal.lib.Episode import world.phantasmal.psolib.Episode
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import world.phantasmal.lib.fileFormats.Vec3 import world.phantasmal.psolib.fileFormats.Vec3
import world.phantasmal.lib.fileFormats.ninja.angleToRad import world.phantasmal.psolib.fileFormats.ninja.angleToRad
import world.phantasmal.lib.fileFormats.ninja.radToAngle import world.phantasmal.psolib.fileFormats.ninja.radToAngle
import kotlin.math.roundToInt import kotlin.math.roundToInt
class QuestNpc( class QuestNpc(

View File

@ -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. // TODO: set properties of friendly NPCs based on episode.
internal fun setNpcDefaultData(type: NpcType, view: Buffer) { internal fun setNpcDefaultData(type: NpcType, view: Buffer) {

View File

@ -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.psolib.buffer.Buffer
import world.phantasmal.lib.fileFormats.Vec3 import world.phantasmal.psolib.fileFormats.Vec3
import world.phantasmal.lib.fileFormats.ninja.angleToRad import world.phantasmal.psolib.fileFormats.ninja.angleToRad
import world.phantasmal.lib.fileFormats.ninja.radToAngle import world.phantasmal.psolib.fileFormats.ninja.radToAngle
import kotlin.math.roundToInt import kotlin.math.roundToInt
class QuestObject(override var areaId: Int, override val data: Buffer) : QuestEntity<ObjectType> { class QuestObject(override var areaId: Int, override val data: Buffer) : QuestEntity<ObjectType> {

View File

@ -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) { internal fun setObjectDefaultData(type: ObjectType, data: Buffer) {
data.setFloat(40, 1f) // Scale x data.setFloat(40, 1f) // Scale x

View File

@ -1,4 +1,4 @@
package world.phantasmal.lib.fileFormats.quest package world.phantasmal.psolib.fileFormats.quest
enum class Version { enum class Version {
/** /**

View File

@ -1,4 +1,4 @@
package world.phantasmal.lib.vm package world.phantasmal.psolib.vm
/** /**
* Attaches to [vm] as its [ExecutionInterceptor]. * Attaches to [vm] as its [ExecutionInterceptor].

View File

@ -1,8 +1,8 @@
package world.phantasmal.lib.vm package world.phantasmal.psolib.vm
import world.phantasmal.lib.asm.BytecodeIr import world.phantasmal.psolib.asm.BytecodeIr
import world.phantasmal.lib.asm.Instruction import world.phantasmal.psolib.asm.Instruction
import world.phantasmal.lib.asm.InstructionSegment import world.phantasmal.psolib.asm.InstructionSegment
class InstructionReference( class InstructionReference(
val segIdx: Int, val segIdx: Int,

View File

@ -1,8 +1,8 @@
package world.phantasmal.lib.vm package world.phantasmal.psolib.vm
import world.phantasmal.lib.Endianness import world.phantasmal.psolib.Endianness
import world.phantasmal.lib.asm.AnyType import world.phantasmal.psolib.asm.AnyType
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
class StackFrame( class StackFrame(
val idx: Int, val idx: Int,

View File

@ -1,10 +1,10 @@
package world.phantasmal.lib.vm package world.phantasmal.psolib.vm
import mu.KotlinLogging import mu.KotlinLogging
import world.phantasmal.lib.Endianness import world.phantasmal.psolib.Endianness
import world.phantasmal.lib.Episode import world.phantasmal.psolib.Episode
import world.phantasmal.lib.asm.* import world.phantasmal.psolib.asm.*
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}

View File

@ -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 world.phantasmal.testUtils.assertCloseTo
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View File

@ -1,8 +1,8 @@
package world.phantasmal.lib.asm package world.phantasmal.psolib.asm
import world.phantasmal.core.Success import world.phantasmal.core.Success
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import world.phantasmal.lib.test.assertDeepEquals import world.phantasmal.psolib.test.assertDeepEquals
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals
import kotlin.test.assertTrue import kotlin.test.assertTrue

View File

@ -1,12 +1,12 @@
package world.phantasmal.lib.asm package world.phantasmal.psolib.asm
import world.phantasmal.core.Success import world.phantasmal.core.Success
import world.phantasmal.lib.fileFormats.quest.parseBin import world.phantasmal.psolib.fileFormats.quest.parseBin
import world.phantasmal.lib.fileFormats.quest.parseBytecode import world.phantasmal.psolib.fileFormats.quest.parseBytecode
import world.phantasmal.lib.fileFormats.quest.writeBytecode import world.phantasmal.psolib.fileFormats.quest.writeBytecode
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import world.phantasmal.lib.test.assertDeepEquals import world.phantasmal.psolib.test.assertDeepEquals
import world.phantasmal.lib.test.readFile import world.phantasmal.psolib.test.readFile
import world.phantasmal.testUtils.assertDeepEquals import world.phantasmal.testUtils.assertDeepEquals
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View File

@ -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.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View File

@ -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.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals
import kotlin.test.assertNotEquals import kotlin.test.assertNotEquals

View File

@ -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.psolib.test.LibTestSuite
import world.phantasmal.lib.test.toInstructions import world.phantasmal.psolib.test.toInstructions
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals
import kotlin.test.assertTrue import kotlin.test.assertTrue

View File

@ -1,8 +1,8 @@
package world.phantasmal.lib.asm.dataFlowAnalysis package world.phantasmal.psolib.asm.dataFlowAnalysis
import world.phantasmal.lib.asm.* import world.phantasmal.psolib.asm.*
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import world.phantasmal.lib.test.toInstructions import world.phantasmal.psolib.test.toInstructions
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View File

@ -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.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals
import kotlin.test.assertFalse import kotlin.test.assertFalse

View File

@ -1,7 +1,7 @@
package world.phantasmal.lib.buffer package world.phantasmal.psolib.buffer
import world.phantasmal.lib.Endianness import world.phantasmal.psolib.Endianness
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals
import kotlin.test.assertTrue import kotlin.test.assertTrue

View File

@ -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.psolib.buffer.Buffer
import world.phantasmal.lib.cursor.cursor import world.phantasmal.psolib.cursor.cursor
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import kotlin.random.Random import kotlin.random.Random
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View File

@ -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.psolib.buffer.Buffer
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.cursor.cursor import world.phantasmal.psolib.cursor.cursor
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import world.phantasmal.lib.test.readFile import world.phantasmal.psolib.test.readFile
import kotlin.random.Random import kotlin.random.Random
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View File

@ -1,7 +1,7 @@
package world.phantasmal.lib.cursor package world.phantasmal.psolib.cursor
import world.phantasmal.lib.Endianness import world.phantasmal.psolib.Endianness
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View File

@ -1,7 +1,7 @@
package world.phantasmal.lib.cursor package world.phantasmal.psolib.cursor
import world.phantasmal.lib.Endianness import world.phantasmal.psolib.Endianness
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View File

@ -1,7 +1,7 @@
package world.phantasmal.lib.cursor package world.phantasmal.psolib.cursor
import world.phantasmal.lib.Endianness import world.phantasmal.psolib.Endianness
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import world.phantasmal.testUtils.assertCloseTo import world.phantasmal.testUtils.assertCloseTo
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View File

@ -1,7 +1,7 @@
package world.phantasmal.lib.fileFormats package world.phantasmal.psolib.fileFormats
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import world.phantasmal.lib.test.readFile import world.phantasmal.psolib.test.readFile
import world.phantasmal.testUtils.assertCloseTo import world.phantasmal.testUtils.assertCloseTo
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View File

@ -1,7 +1,7 @@
package world.phantasmal.lib.fileFormats package world.phantasmal.psolib.fileFormats
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import world.phantasmal.lib.test.readFile import world.phantasmal.psolib.test.readFile
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View File

@ -1,8 +1,8 @@
package world.phantasmal.lib.fileFormats.ninja package world.phantasmal.psolib.fileFormats.ninja
import world.phantasmal.core.Success import world.phantasmal.core.Success
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import world.phantasmal.lib.test.readFile import world.phantasmal.psolib.test.readFile
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals
import kotlin.test.assertTrue import kotlin.test.assertTrue

View File

@ -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.psolib.cursor.cursor
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import world.phantasmal.lib.test.assertDeepEquals import world.phantasmal.psolib.test.assertDeepEquals
import world.phantasmal.lib.test.readFile import world.phantasmal.psolib.test.readFile
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View File

@ -1,11 +1,11 @@
package world.phantasmal.lib.fileFormats.quest package world.phantasmal.psolib.fileFormats.quest
import world.phantasmal.core.Success import world.phantasmal.core.Success
import world.phantasmal.lib.asm.InstructionSegment import world.phantasmal.psolib.asm.InstructionSegment
import world.phantasmal.lib.asm.OP_BB_MAP_DESIGNATE import world.phantasmal.psolib.asm.OP_BB_MAP_DESIGNATE
import world.phantasmal.lib.asm.OP_SET_EPISODE import world.phantasmal.psolib.asm.OP_SET_EPISODE
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals
import kotlin.test.assertTrue import kotlin.test.assertTrue

View File

@ -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.psolib.cursor.cursor
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import world.phantasmal.lib.test.assertDeepEquals import world.phantasmal.psolib.test.assertDeepEquals
import world.phantasmal.lib.test.readFile import world.phantasmal.psolib.test.readFile
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View File

@ -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.psolib.cursor.cursor
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import world.phantasmal.lib.test.assertDeepEquals import world.phantasmal.psolib.test.assertDeepEquals
import world.phantasmal.lib.test.readFile import world.phantasmal.psolib.test.readFile
import world.phantasmal.lib.test.testWithTetheallaQuests import world.phantasmal.psolib.test.testWithTetheallaQuests
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals
import kotlin.test.assertTrue import kotlin.test.assertTrue

View File

@ -1,14 +1,14 @@
package world.phantasmal.lib.fileFormats.quest package world.phantasmal.psolib.fileFormats.quest
import world.phantasmal.core.Success import world.phantasmal.core.Success
import world.phantasmal.lib.Episode import world.phantasmal.psolib.Episode
import world.phantasmal.lib.asm.* import world.phantasmal.psolib.asm.*
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import world.phantasmal.lib.cursor.cursor import world.phantasmal.psolib.cursor.cursor
import world.phantasmal.lib.test.LibTestSuite import world.phantasmal.psolib.test.LibTestSuite
import world.phantasmal.lib.test.assertDeepEquals import world.phantasmal.psolib.test.assertDeepEquals
import world.phantasmal.lib.test.readFile import world.phantasmal.psolib.test.readFile
import world.phantasmal.lib.test.testWithTetheallaQuests import world.phantasmal.psolib.test.testWithTetheallaQuests
import world.phantasmal.testUtils.assertDeepEquals import world.phantasmal.testUtils.assertDeepEquals
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View File

@ -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 world.phantasmal.testUtils.assertDeepEquals
import kotlin.test.assertEquals import kotlin.test.assertEquals
import kotlin.test.assertNotNull import kotlin.test.assertNotNull

View File

@ -1,4 +1,4 @@
package world.phantasmal.lib.test package world.phantasmal.psolib.test
import world.phantasmal.core.disposable.Disposer import world.phantasmal.core.disposable.Disposer
import world.phantasmal.testUtils.AbstractTestSuite import world.phantasmal.testUtils.AbstractTestSuite

View File

@ -1,10 +1,10 @@
package world.phantasmal.lib.test package world.phantasmal.psolib.test
import world.phantasmal.core.Success import world.phantasmal.core.Success
import world.phantasmal.lib.asm.InstructionSegment import world.phantasmal.psolib.asm.InstructionSegment
import world.phantasmal.lib.asm.assemble import world.phantasmal.psolib.asm.assemble
import world.phantasmal.lib.buffer.Buffer import world.phantasmal.psolib.buffer.Buffer
import world.phantasmal.lib.cursor.Cursor import world.phantasmal.psolib.cursor.Cursor
import kotlin.test.assertEquals import kotlin.test.assertEquals
import kotlin.test.assertTrue import kotlin.test.assertTrue

View File

@ -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. * 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