diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index d8be8892..d6d81dc0 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -75,7 +75,7 @@ val generateOpcodes = tasks.register("generateOpcodes") { group = "code generation" val packageName = "world.phantasmal.lib.asm" - val opcodesFile = file("assetsGeneration/asm/opcodes.yml") + val opcodesFile = file("srcGeneration/asm/opcodes.yml") val outputFile = file( "build/generated-src/commonMain/kotlin/${packageName.replace('.', '/')}/Opcodes.kt" ) @@ -138,6 +138,7 @@ fun opcodeToCode(writer: PrintWriter, opcode: Map) { writer.println( """ + | |val $valName = Opcode( | 0x$codeStr, | "$mnemonic", diff --git a/lib/assetsGeneration/asm/opcodes.schema.json b/lib/srcGeneration/asm/opcodes.schema.json similarity index 100% rename from lib/assetsGeneration/asm/opcodes.schema.json rename to lib/srcGeneration/asm/opcodes.schema.json diff --git a/lib/assetsGeneration/asm/opcodes.yml b/lib/srcGeneration/asm/opcodes.yml similarity index 100% rename from lib/assetsGeneration/asm/opcodes.yml rename to lib/srcGeneration/asm/opcodes.yml diff --git a/web/build.gradle.kts b/web/build.gradle.kts index 9981f852..363b52f5 100644 --- a/web/build.gradle.kts +++ b/web/build.gradle.kts @@ -7,7 +7,7 @@ plugins { kotlin { js { browser { - webpackTask { + commonWebpackConfig { cssSupport.enabled = true } runTask { @@ -15,12 +15,10 @@ kotlin { open = false, port = 1623 ) - cssSupport.enabled = true } testTask { useKarma { useChromeHeadless() - webpackConfig.cssSupport.enabled = true } } } @@ -62,3 +60,7 @@ val copyAssemblyWorkerJsTask = tasks.register("copyAssemblyWorkerJs") { // TODO: Figure out how to make this work with --continuous. tasks.getByName("processResources").dependsOn(copyAssemblyWorkerJsTask) + +tasks.register("generateEphineaItems") { +// val unitxt = +} diff --git a/web/src/main/kotlin/world/phantasmal/web/core/rendering/InputManager.kt b/web/src/main/kotlin/world/phantasmal/web/core/rendering/InputManager.kt index 04616efb..fbcf30e2 100644 --- a/web/src/main/kotlin/world/phantasmal/web/core/rendering/InputManager.kt +++ b/web/src/main/kotlin/world/phantasmal/web/core/rendering/InputManager.kt @@ -4,7 +4,7 @@ package world.phantasmal.web.core.rendering * Manages user input such as pointer and keyboard events. */ interface InputManager { - fun setSize(width: Double, height: Double) + fun setSize(width: Int, height: Int) fun resetCamera() diff --git a/web/src/main/kotlin/world/phantasmal/web/core/rendering/OrbitalCameraInputManager.kt b/web/src/main/kotlin/world/phantasmal/web/core/rendering/OrbitalCameraInputManager.kt index f0eba36f..de94f2c4 100644 --- a/web/src/main/kotlin/world/phantasmal/web/core/rendering/OrbitalCameraInputManager.kt +++ b/web/src/main/kotlin/world/phantasmal/web/core/rendering/OrbitalCameraInputManager.kt @@ -58,17 +58,17 @@ class OrbitalCameraInputManager( controls.reset() } - override fun setSize(width: Double, height: Double) { - if (width == 0.0 || height == 0.0) return + override fun setSize(width: Int, height: Int) { + if (width == 0 || height == 0) return if (camera is PerspectiveCamera) { - camera.aspect = width / height + camera.aspect = width.toDouble() / height camera.updateProjectionMatrix() } else if (camera is OrthographicCamera) { - camera.left = -floor(width / 2) - camera.right = ceil(width / 2) - camera.top = floor(height / 2) - camera.bottom = -ceil(height / 2) + camera.left = -floor(width / 2.0) + camera.right = ceil(width / 2.0) + camera.top = floor(height / 2.0) + camera.bottom = -ceil(height / 2.0) camera.updateProjectionMatrix() } diff --git a/web/src/main/kotlin/world/phantasmal/web/core/rendering/RenderContext.kt b/web/src/main/kotlin/world/phantasmal/web/core/rendering/RenderContext.kt index 0253ae19..87e2f678 100644 --- a/web/src/main/kotlin/world/phantasmal/web/core/rendering/RenderContext.kt +++ b/web/src/main/kotlin/world/phantasmal/web/core/rendering/RenderContext.kt @@ -15,8 +15,8 @@ open class RenderContext( ) private val lightHolder = Group().add(light) - var width = 0.0 - var height = 0.0 + var width: Int = 0 + var height: Int = 0 val scene: Scene = Scene().apply { diff --git a/web/src/main/kotlin/world/phantasmal/web/core/rendering/Renderer.kt b/web/src/main/kotlin/world/phantasmal/web/core/rendering/Renderer.kt index c4a2e837..b8c6564a 100644 --- a/web/src/main/kotlin/world/phantasmal/web/core/rendering/Renderer.kt +++ b/web/src/main/kotlin/world/phantasmal/web/core/rendering/Renderer.kt @@ -5,7 +5,6 @@ import kotlinx.browser.window import mu.KotlinLogging import org.w3c.dom.HTMLCanvasElement import world.phantasmal.webui.DisposableContainer -import kotlin.math.floor import world.phantasmal.web.externals.three.Renderer as ThreeRenderer private val logger = KotlinLogging.logger {} @@ -36,15 +35,15 @@ abstract class Renderer : DisposableContainer() { window.cancelAnimationFrame(animationFrameHandle) } - open fun setSize(width: Double, height: Double) { - if (width == 0.0 || height == 0.0) return + open fun setSize(width: Int, height: Int) { + if (width == 0 || height == 0) return context.width = width context.height = height - context.canvas.width = floor(width).toInt() - context.canvas.height = floor(height).toInt() + context.canvas.width = width + context.canvas.height = height - threeRenderer.setSize(width, height) + threeRenderer.setSize(width.toDouble(), height.toDouble()) inputManager.setSize(width, height) } diff --git a/web/src/main/kotlin/world/phantasmal/web/core/stores/ItemTypeStore.kt b/web/src/main/kotlin/world/phantasmal/web/core/stores/ItemTypeStore.kt index 5abb5f2f..afba38f4 100644 --- a/web/src/main/kotlin/world/phantasmal/web/core/stores/ItemTypeStore.kt +++ b/web/src/main/kotlin/world/phantasmal/web/core/stores/ItemTypeStore.kt @@ -14,7 +14,9 @@ class ItemTypeStore( private val uiStore: UiStore, private val assetLoader: AssetLoader, ) : Store() { - private val cache: LoadingCache = LoadingCache(::loadItemTypes) {} + private val cache: LoadingCache = addDisposable( + LoadingCache(::loadItemTypes) {} + ) private val _itemTypes = mutableListVal() val itemTypes: ListVal by lazy { diff --git a/web/src/main/kotlin/world/phantasmal/web/core/widgets/RendererWidget.kt b/web/src/main/kotlin/world/phantasmal/web/core/widgets/RendererWidget.kt index e39153b1..3bb75265 100644 --- a/web/src/main/kotlin/world/phantasmal/web/core/widgets/RendererWidget.kt +++ b/web/src/main/kotlin/world/phantasmal/web/core/widgets/RendererWidget.kt @@ -21,7 +21,7 @@ class RendererWidget( } addDisposable(size.observe { (size) -> - renderer.setSize(size.width, size.height) + renderer.setSize(size.width.toInt(), size.height.toInt()) }) append(renderer.canvas) diff --git a/web/src/main/kotlin/world/phantasmal/web/questEditor/rendering/input/QuestInputManager.kt b/web/src/main/kotlin/world/phantasmal/web/questEditor/rendering/input/QuestInputManager.kt index e3c5a397..b2646706 100644 --- a/web/src/main/kotlin/world/phantasmal/web/questEditor/rendering/input/QuestInputManager.kt +++ b/web/src/main/kotlin/world/phantasmal/web/questEditor/rendering/input/QuestInputManager.kt @@ -84,7 +84,7 @@ class QuestInputManager( super.dispose() } - override fun setSize(width: Double, height: Double) { + override fun setSize(width: Int, height: Int) { cameraInputManager.setSize(width, height) }