diff --git a/buildSrc/src/main/kotlin/world/phantasmal/karma-resources.gradle.kts b/buildSrc/src/main/kotlin/world/phantasmal/karma-resources.gradle.kts index e97b8c42..a2a39000 100644 --- a/buildSrc/src/main/kotlin/world/phantasmal/karma-resources.gradle.kts +++ b/buildSrc/src/main/kotlin/world/phantasmal/karma-resources.gradle.kts @@ -3,7 +3,7 @@ package world.phantasmal // This task generates a Karma configuration in karma.config.d that ensures Karma serves files from // the resources directories. // This is a workaround for https://youtrack.jetbrains.com/issue/KT-42923. -val karmaResourcesTask = tasks.register("karmaResources") { +val karmaResourcesTask: TaskProvider = tasks.register("karmaResources") { doLast { val karmaConfigDir = file("karma.config.d") karmaConfigDir.mkdir() diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Qst.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Qst.kt index f9173e7c..104e819e 100644 --- a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Qst.kt +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/Qst.kt @@ -105,7 +105,7 @@ fun parseQst(cursor: Cursor): PwResult { val parseFilesResult: PwResult> = parseFiles( cursor, version, - headers.map { it.filename to it }.toMap() + headers.associateBy { it.filename }, ) result.addResult(parseFilesResult) @@ -113,11 +113,13 @@ fun parseQst(cursor: Cursor): PwResult { return result.failure() } - return result.success(QstContent( - version, - online, - parseFilesResult.value - )) + return result.success( + QstContent( + version, + online, + parseFilesResult.value, + ) + ) } private class QstHeader( @@ -238,14 +240,16 @@ private fun parseHeaders(cursor: Cursor): List { prevQuestId = questId prevFilename = filename - headers.add(QstHeader( - version, - online, - questId, - name, - filename, - size, - )) + headers.add( + QstHeader( + version, + online, + questId, + name, + filename, + size, + ) + ) } return headers diff --git a/web/src/main/kotlin/world/phantasmal/web/core/ThreeExtensions.kt b/web/src/main/kotlin/world/phantasmal/web/core/ThreeExtensions.kt index f0b42e5b..98e944cb 100644 --- a/web/src/main/kotlin/world/phantasmal/web/core/ThreeExtensions.kt +++ b/web/src/main/kotlin/world/phantasmal/web/core/ThreeExtensions.kt @@ -30,9 +30,6 @@ operator fun Vector3.timesAssign(scalar: Double) { infix fun Vector3.dot(other: Vector3): Double = dot(other) -infix fun Vector3.cross(other: Vector3): Vector3 = - cross(other) - operator fun Quaternion.timesAssign(other: Quaternion) { multiply(other) } diff --git a/web/src/main/kotlin/world/phantasmal/web/huntOptimizer/models/OptimalMethodModel.kt b/web/src/main/kotlin/world/phantasmal/web/huntOptimizer/models/OptimalMethodModel.kt index fd66a69c..bc51bb3b 100644 --- a/web/src/main/kotlin/world/phantasmal/web/huntOptimizer/models/OptimalMethodModel.kt +++ b/web/src/main/kotlin/world/phantasmal/web/huntOptimizer/models/OptimalMethodModel.kt @@ -2,7 +2,6 @@ package world.phantasmal.web.huntOptimizer.models import world.phantasmal.lib.Episode import world.phantasmal.web.shared.dto.Difficulty -import world.phantasmal.web.shared.dto.ItemType import world.phantasmal.web.shared.dto.SectionId import kotlin.time.Duration diff --git a/web/src/main/kotlin/world/phantasmal/web/huntOptimizer/widgets/HelpWidget.kt b/web/src/main/kotlin/world/phantasmal/web/huntOptimizer/widgets/HelpWidget.kt index 574e9365..c2de9e3b 100644 --- a/web/src/main/kotlin/world/phantasmal/web/huntOptimizer/widgets/HelpWidget.kt +++ b/web/src/main/kotlin/world/phantasmal/web/huntOptimizer/widgets/HelpWidget.kt @@ -5,7 +5,7 @@ import world.phantasmal.webui.dom.div import world.phantasmal.webui.dom.p import world.phantasmal.webui.widgets.Widget -class HelpWidget() : Widget() { +class HelpWidget : Widget() { override fun Node.createElement() = div { className = "pw-hunt-optimizer-help" @@ -31,7 +31,8 @@ class HelpWidget() : Widget() { init { @Suppress("CssUnusedSymbol") // language=css - style(""" + style( + """ .pw-hunt-optimizer-help { cursor: initial; user-select: text; @@ -41,7 +42,8 @@ class HelpWidget() : Widget() { margin: 1em; max-width: 600px; } - """.trimIndent()) + """.trimIndent() + ) } } }