Fixed a bug that would result in blurry canvas.

This commit is contained in:
Daan Vanden Bosch 2021-02-13 20:30:56 +01:00
parent 871a61aa42
commit 93e57012e7
11 changed files with 27 additions and 23 deletions

View File

@ -75,7 +75,7 @@ val generateOpcodes = tasks.register("generateOpcodes") {
group = "code generation" group = "code generation"
val packageName = "world.phantasmal.lib.asm" val packageName = "world.phantasmal.lib.asm"
val opcodesFile = file("assetsGeneration/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"
) )
@ -138,6 +138,7 @@ fun opcodeToCode(writer: PrintWriter, opcode: Map<String, Any>) {
writer.println( writer.println(
""" """
|
|val $valName = Opcode( |val $valName = Opcode(
| 0x$codeStr, | 0x$codeStr,
| "$mnemonic", | "$mnemonic",

View File

@ -7,7 +7,7 @@ plugins {
kotlin { kotlin {
js { js {
browser { browser {
webpackTask { commonWebpackConfig {
cssSupport.enabled = true cssSupport.enabled = true
} }
runTask { runTask {
@ -15,12 +15,10 @@ kotlin {
open = false, open = false,
port = 1623 port = 1623
) )
cssSupport.enabled = true
} }
testTask { testTask {
useKarma { useKarma {
useChromeHeadless() useChromeHeadless()
webpackConfig.cssSupport.enabled = true
} }
} }
} }
@ -62,3 +60,7 @@ val copyAssemblyWorkerJsTask = tasks.register<Copy>("copyAssemblyWorkerJs") {
// TODO: Figure out how to make this work with --continuous. // TODO: Figure out how to make this work with --continuous.
tasks.getByName("processResources").dependsOn(copyAssemblyWorkerJsTask) tasks.getByName("processResources").dependsOn(copyAssemblyWorkerJsTask)
tasks.register("generateEphineaItems") {
// val unitxt =
}

View File

@ -4,7 +4,7 @@ package world.phantasmal.web.core.rendering
* Manages user input such as pointer and keyboard events. * Manages user input such as pointer and keyboard events.
*/ */
interface InputManager { interface InputManager {
fun setSize(width: Double, height: Double) fun setSize(width: Int, height: Int)
fun resetCamera() fun resetCamera()

View File

@ -58,17 +58,17 @@ class OrbitalCameraInputManager(
controls.reset() controls.reset()
} }
override fun setSize(width: Double, height: Double) { override fun setSize(width: Int, height: Int) {
if (width == 0.0 || height == 0.0) return if (width == 0 || height == 0) return
if (camera is PerspectiveCamera) { if (camera is PerspectiveCamera) {
camera.aspect = width / height camera.aspect = width.toDouble() / height
camera.updateProjectionMatrix() camera.updateProjectionMatrix()
} else if (camera is OrthographicCamera) { } else if (camera is OrthographicCamera) {
camera.left = -floor(width / 2) camera.left = -floor(width / 2.0)
camera.right = ceil(width / 2) camera.right = ceil(width / 2.0)
camera.top = floor(height / 2) camera.top = floor(height / 2.0)
camera.bottom = -ceil(height / 2) camera.bottom = -ceil(height / 2.0)
camera.updateProjectionMatrix() camera.updateProjectionMatrix()
} }

View File

@ -15,8 +15,8 @@ open class RenderContext(
) )
private val lightHolder = Group().add(light) private val lightHolder = Group().add(light)
var width = 0.0 var width: Int = 0
var height = 0.0 var height: Int = 0
val scene: Scene = val scene: Scene =
Scene().apply { Scene().apply {

View File

@ -5,7 +5,6 @@ import kotlinx.browser.window
import mu.KotlinLogging import mu.KotlinLogging
import org.w3c.dom.HTMLCanvasElement import org.w3c.dom.HTMLCanvasElement
import world.phantasmal.webui.DisposableContainer import world.phantasmal.webui.DisposableContainer
import kotlin.math.floor
import world.phantasmal.web.externals.three.Renderer as ThreeRenderer import world.phantasmal.web.externals.three.Renderer as ThreeRenderer
private val logger = KotlinLogging.logger {} private val logger = KotlinLogging.logger {}
@ -36,15 +35,15 @@ abstract class Renderer : DisposableContainer() {
window.cancelAnimationFrame(animationFrameHandle) window.cancelAnimationFrame(animationFrameHandle)
} }
open fun setSize(width: Double, height: Double) { open fun setSize(width: Int, height: Int) {
if (width == 0.0 || height == 0.0) return if (width == 0 || height == 0) return
context.width = width context.width = width
context.height = height context.height = height
context.canvas.width = floor(width).toInt() context.canvas.width = width
context.canvas.height = floor(height).toInt() context.canvas.height = height
threeRenderer.setSize(width, height) threeRenderer.setSize(width.toDouble(), height.toDouble())
inputManager.setSize(width, height) inputManager.setSize(width, height)
} }

View File

@ -14,7 +14,9 @@ class ItemTypeStore(
private val uiStore: UiStore, private val uiStore: UiStore,
private val assetLoader: AssetLoader, private val assetLoader: AssetLoader,
) : Store() { ) : Store() {
private val cache: LoadingCache<Server, ServerData> = LoadingCache(::loadItemTypes) {} private val cache: LoadingCache<Server, ServerData> = addDisposable(
LoadingCache(::loadItemTypes) {}
)
private val _itemTypes = mutableListVal<ItemType>() private val _itemTypes = mutableListVal<ItemType>()
val itemTypes: ListVal<ItemType> by lazy { val itemTypes: ListVal<ItemType> by lazy {

View File

@ -21,7 +21,7 @@ class RendererWidget(
} }
addDisposable(size.observe { (size) -> addDisposable(size.observe { (size) ->
renderer.setSize(size.width, size.height) renderer.setSize(size.width.toInt(), size.height.toInt())
}) })
append(renderer.canvas) append(renderer.canvas)

View File

@ -84,7 +84,7 @@ class QuestInputManager(
super.dispose() super.dispose()
} }
override fun setSize(width: Double, height: Double) { override fun setSize(width: Int, height: Int) {
cameraInputManager.setSize(width, height) cameraInputManager.setSize(width, height)
} }