diff --git a/web/src/main/kotlin/world/phantasmal/web/core/rendering/conversion/MeshBuilder.kt b/web/src/main/kotlin/world/phantasmal/web/core/rendering/conversion/MeshBuilder.kt index c8d95b90..5153c527 100644 --- a/web/src/main/kotlin/world/phantasmal/web/core/rendering/conversion/MeshBuilder.kt +++ b/web/src/main/kotlin/world/phantasmal/web/core/rendering/conversion/MeshBuilder.kt @@ -3,7 +3,9 @@ package world.phantasmal.web.core.rendering.conversion import org.khronos.webgl.Float32Array import org.khronos.webgl.Uint16Array import org.khronos.webgl.set +import world.phantasmal.core.JsMap import world.phantasmal.core.asArray +import world.phantasmal.core.emptyJsMap import world.phantasmal.core.jsArrayOf import world.phantasmal.lib.fileFormats.ninja.XvrTexture import world.phantasmal.web.externals.three.* @@ -11,7 +13,7 @@ import world.phantasmal.webui.obj class MeshBuilder( private val textures: List = emptyList(), - private val textureCache: MutableMap = mutableMapOf(), + private val textureCache: JsMap = emptyJsMap(), ) { private val positions = mutableListOf() private val normals = mutableListOf() @@ -189,11 +191,16 @@ class MeshBuilder( indices.set(group.indices.asArray(), offset) geom.addGroup(offset, group.indices.length, materials.size) - val tex = group.textureIndex?.let { texIndex -> - textureCache.getOrPut(texIndex) { - textures.getOrNull(texIndex)?.let { xvm -> + var tex: Texture? = null + + if (group.textureIndex != null) { + textureCache.get(group.textureIndex) + + if (tex == null) { + tex = textures.getOrNull(group.textureIndex)?.let { xvm -> xvrTextureToThree(xvm) } + textureCache.set(group.textureIndex, tex) } } diff --git a/web/src/main/kotlin/world/phantasmal/web/core/rendering/conversion/NinjaGeometryConversion.kt b/web/src/main/kotlin/world/phantasmal/web/core/rendering/conversion/NinjaGeometryConversion.kt index c97bbfab..08d740f2 100644 --- a/web/src/main/kotlin/world/phantasmal/web/core/rendering/conversion/NinjaGeometryConversion.kt +++ b/web/src/main/kotlin/world/phantasmal/web/core/rendering/conversion/NinjaGeometryConversion.kt @@ -3,10 +3,7 @@ package world.phantasmal.web.core.rendering.conversion import mu.KotlinLogging import org.khronos.webgl.Float32Array import org.khronos.webgl.Uint16Array -import world.phantasmal.core.JsArray -import world.phantasmal.core.asArray -import world.phantasmal.core.isBitSet -import world.phantasmal.core.jsArrayOf +import world.phantasmal.core.* import world.phantasmal.lib.fileFormats.CollisionGeometry import world.phantasmal.lib.fileFormats.CollisionTriangle import world.phantasmal.lib.fileFormats.RenderGeometry @@ -129,8 +126,8 @@ fun renderGeometryToGroup( processMesh: (RenderSection, XjObject, Mesh) -> Unit = { _, _, _ -> }, ): Group { val group = Group() - val textureCache = mutableMapOf() - val meshCache = mutableMapOf() + val textureCache = emptyJsMap() + val meshCache = emptyJsMap() for ((i, section) in renderGeometry.sections.withIndex()) { for (xjObj in section.objects) { @@ -151,14 +148,14 @@ fun renderGeometryToGroup( private fun xjObjectToMesh( textures: List, - textureCache: MutableMap, - meshCache: MutableMap, + textureCache: JsMap, + meshCache: JsMap, xjObj: XjObject, index: Int, section: RenderSection, processMesh: (RenderSection, XjObject, Mesh) -> Unit, ): Mesh { - var mesh = meshCache[xjObj] + var mesh = meshCache.get(xjObj) if (mesh == null) { val builder = MeshBuilder(textures, textureCache) @@ -172,6 +169,7 @@ private fun xjObjectToMesh( })) mesh = builder.buildMesh(boundingVolumes = true) + meshCache.set(xjObj, mesh) } else { // If we already have a mesh for this XjObject, make a copy and reuse the existing buffer // geometry and materials. diff --git a/web/src/main/kotlin/world/phantasmal/web/externals/three/three.kt b/web/src/main/kotlin/world/phantasmal/web/externals/three/three.kt index 501884cc..86891e1f 100644 --- a/web/src/main/kotlin/world/phantasmal/web/externals/three/three.kt +++ b/web/src/main/kotlin/world/phantasmal/web/externals/three/three.kt @@ -494,7 +494,13 @@ external class Color() { constructor(color: String) constructor(color: Int) + fun set(color: Color): Color + fun set(color: String): Color + fun set(color: Int): Color + fun setHSL(h: Double, s: Double, l: Double): Color + + fun clone(): Color } open external class BufferGeometry : EventDispatcher { @@ -602,6 +608,7 @@ external interface MeshBasicMaterialParameters : MaterialParameters { external class MeshBasicMaterial( parameters: MeshBasicMaterialParameters = definedExternally, ) : Material { + var color: Color var map: Texture? }