Теперь тайлы соединяются!

This commit is contained in:
DBotThePony 2022-02-04 21:06:31 +07:00
parent d5b20c9bda
commit c045a699d4
Signed by: DBot
GPG Key ID: DCC23B5715498507
4 changed files with 14 additions and 7 deletions

View File

@ -46,8 +46,8 @@ fun main() {
var y = 0
for (tile in Starbound.tilesAccess.values) {
chunkA!!.background[x, y + 1] = tile
chunkA!!.background[x++, y] = tile
//chunkA!!.background[x, y + 1] = tile
//chunkA!!.background[x++, y] = tile
if (x >= 31) {
x = 0
@ -59,8 +59,8 @@ fun main() {
y = 0
for (tile in Starbound.tilesAccess.values) {
chunkB.foreground[x, y + 1] = tile
chunkB.foreground[x++, y] = tile
//chunkB.foreground[x, y + 1] = tile
//chunkB.foreground[x++, y] = tile
if (x > 31) {
x = 0
@ -76,6 +76,12 @@ fun main() {
}
}
for (x in 0 .. 31) {
for (y in 0 .. 31) {
chunkB.foreground[x, y] = tile
}
}
for (x in 4 .. 8) {
for (y in 4 .. 8) {
chunkA!!.foreground[x, y] = null as TileDefinition?

View File

@ -42,7 +42,7 @@ class ClientWorld(val client: StarboundClient, seed: Long = 0L) : World<ClientWo
right = right,
bottom = bottom,
renderer = ChunkRenderer(client.gl, chunk)
renderer = ChunkRenderer(client.gl, chunk, this)
)
}

View File

@ -16,6 +16,7 @@ import ru.dbotthepony.kstarbound.math.Vector2f
import ru.dbotthepony.kstarbound.util.Color
import ru.dbotthepony.kstarbound.util.formatBytesShort
import kotlin.math.cos
import kotlin.math.roundToInt
import kotlin.math.sin
class StarboundClient : AutoCloseable {
@ -211,7 +212,7 @@ class StarboundClient : AutoCloseable {
val runtime = Runtime.getRuntime()
gl.font.render("FPS: %.2f".format(averageFramesPerSecond), scale = 0.4f)
gl.font.render("FPS: ${(averageFramesPerSecond * 100f).toInt() / 100f}", scale = 0.4f)
gl.font.render("Mem: ${formatBytesShort(runtime.totalMemory() - runtime.freeMemory())}", x = viewportWidth.toFloat(), scale = 0.4f, alignX = TextAlignX.RIGHT)
GLFW.glfwSwapBuffers(window)

View File

@ -43,7 +43,7 @@ class TileLayerList {
}
list.sortBy {
// унарный минус для инвентирования порядка (сначала маленькие, потом большие)
// унарный минус для инвентирования порядка (сначала большие, потом маленькие)
return@sortBy -it.zPos
}