mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-03 13:58:28 +08:00
Fixed a bug that would result in blurry canvas.
This commit is contained in:
parent
871a61aa42
commit
93e57012e7
@ -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<String, Any>) {
|
||||
|
||||
writer.println(
|
||||
"""
|
||||
|
|
||||
|val $valName = Opcode(
|
||||
| 0x$codeStr,
|
||||
| "$mnemonic",
|
||||
|
@ -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<Copy>("copyAssemblyWorkerJs") {
|
||||
|
||||
// TODO: Figure out how to make this work with --continuous.
|
||||
tasks.getByName("processResources").dependsOn(copyAssemblyWorkerJsTask)
|
||||
|
||||
tasks.register("generateEphineaItems") {
|
||||
// val unitxt =
|
||||
}
|
||||
|
@ -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()
|
||||
|
||||
|
@ -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()
|
||||
}
|
||||
|
||||
|
@ -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 {
|
||||
|
@ -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)
|
||||
}
|
||||
|
@ -14,7 +14,9 @@ class ItemTypeStore(
|
||||
private val uiStore: UiStore,
|
||||
private val assetLoader: AssetLoader,
|
||||
) : Store() {
|
||||
private val cache: LoadingCache<Server, ServerData> = LoadingCache(::loadItemTypes) {}
|
||||
private val cache: LoadingCache<Server, ServerData> = addDisposable(
|
||||
LoadingCache(::loadItemTypes) {}
|
||||
)
|
||||
private val _itemTypes = mutableListVal<ItemType>()
|
||||
|
||||
val itemTypes: ListVal<ItemType> by lazy {
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user