Bump kvector and kbox2d

This commit is contained in:
DBotThePony 2023-09-02 22:04:26 +07:00
parent 02ec8454ca
commit 4e4875b5d7
Signed by: DBot
GPG Key ID: DCC23B5715498507
4 changed files with 10 additions and 12 deletions

View File

@ -80,8 +80,8 @@ dependencies {
implementation("net.java.dev.jna:jna:5.13.0")
implementation("com.github.jnr:jnr-ffi:2.2.13")
implementation("ru.dbotthepony:kbox2d:2.4.1.2")
implementation("ru.dbotthepony:kvector:2.2.4")
implementation("ru.dbotthepony:kbox2d:2.4.1.6")
implementation("ru.dbotthepony:kvector:2.2.8")
implementation("com.github.ben-manes.caffeine:caffeine:3.1.5")
}

View File

@ -196,7 +196,7 @@ open class GLShaderProgram(val state: GLStateTracker, shaders: Iterable<GLStateT
state.ensureSameThread()
buff4x4.position(0)
value.storeColumnRow(buff4x4)
value.storeRowColumn(buff4x4)
buff4x4.position(0)
_value.position(0)

View File

@ -14,6 +14,7 @@ class Box2DRenderer(val state: GLStateTracker) : IDebugDraw {
override var drawShapes: Boolean = false
override var drawJoints: Boolean = false
override var drawAABB: Boolean = false
override var drawTreeAABB: Boolean = false
override var drawPairs: Boolean = false
override var drawCenterOfMess: Boolean = false

View File

@ -205,6 +205,7 @@ abstract class Chunk<WorldType : World<WorldType, This>, This : Chunk<WorldType,
changeset++
collisionChangeset++
this@Chunk.changeset++
markPhysicsDirty()
}
override fun randomLongFor(x: Int, y: Int): Long {
@ -215,20 +216,16 @@ abstract class Chunk<WorldType : World<WorldType, This>, This : Chunk<WorldType,
val foreground = TileLayer()
val background = TileLayer()
protected val liquidStates: TwoDimensionalArray<LiquidState> = TwoDimensionalArray(CHUNK_SIZE, CHUNK_SIZE)
protected val liquidStates: Object2DArray<LiquidState?> = Object2DArray.nulls(CHUNK_SIZE, CHUNK_SIZE)
fun getLiquid(x: Int, y: Int) = liquidStates[x, y]
fun setLiquid(x: Int, y: Int, value: LiquidDefinition?): LiquidState? {
if (value == null) {
val old = liquidStates.set(x, y, null)
if (old != null) {
changeset++
liquidChangeset++
}
return old
liquidStates.set(x, y, null)
changeset++
liquidChangeset++
return null
}
val state = LiquidState(value)