Fix rotation compression and accessing portals of offline players
This commit is contained in:
parent
610d796302
commit
68c6201d23
@ -6,7 +6,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group = "dev.w1zzrd"
|
group = "dev.w1zzrd"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0.1"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -29,6 +29,10 @@ tasks.getByName<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>("compileKotlin"
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.getByName<CopySpec>("prepareSpigot") {
|
||||||
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
||||||
|
}
|
||||||
|
|
||||||
tasks.getByName<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>("compileTestKotlin") {
|
tasks.getByName<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>("compileTestKotlin") {
|
||||||
kotlinOptions {
|
kotlinOptions {
|
||||||
jvmTarget = "16"
|
jvmTarget = "16"
|
||||||
|
@ -4,6 +4,8 @@ import java.math.MathContext
|
|||||||
import java.nio.ByteBuffer
|
import java.nio.ByteBuffer
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
|
private const val ROTATION_COMPRESS_COEFF = 11_930_464.7083
|
||||||
|
private const val PITCH_COMPRESS_COEFF = 23_860_929.4167
|
||||||
internal val ULONG_MAX_INTEGER = BigInteger(byteArrayOf(0, 0xFF.toByte(), 0xFF.toByte(), 0xFF.toByte(), 0xFF.toByte(), 0xFF.toByte(), 0xFF.toByte(), 0xFF.toByte(), 0xFF.toByte()))
|
internal val ULONG_MAX_INTEGER = BigInteger(byteArrayOf(0, 0xFF.toByte(), 0xFF.toByte(), 0xFF.toByte(), 0xFF.toByte(), 0xFF.toByte(), 0xFF.toByte(), 0xFF.toByte(), 0xFF.toByte()))
|
||||||
internal val ULONG_MAX_FLOAT = ULONG_MAX_INTEGER.toBigDecimal(mathContext = MathContext.UNLIMITED)
|
internal val ULONG_MAX_FLOAT = ULONG_MAX_INTEGER.toBigDecimal(mathContext = MathContext.UNLIMITED)
|
||||||
|
|
||||||
@ -109,6 +111,11 @@ val Int.varIntSize get() = toLong().interlace().varIntSize
|
|||||||
val Short.varIntSize get() = toLong().interlace().varIntSize
|
val Short.varIntSize get() = toLong().interlace().varIntSize
|
||||||
val Char.varIntSize get() = code.varIntSize
|
val Char.varIntSize get() = code.varIntSize
|
||||||
|
|
||||||
|
fun Float.toPackedRotationUInt() = (ROTATION_COMPRESS_COEFF * mod(360f)).toUInt()
|
||||||
|
fun UInt.fromPackedRotationFloat() = (toDouble() / ROTATION_COMPRESS_COEFF).toFloat()
|
||||||
|
fun Float.toPackedPitchUInt() = (PITCH_COMPRESS_COEFF * plus(90f).mod(180f)).toUInt()
|
||||||
|
fun UInt.fromPackedPitchFloat() = (toDouble() / PITCH_COMPRESS_COEFF).minus(90.0).toFloat()
|
||||||
|
|
||||||
fun Float.varIntSize(min: Float, max: Float) = toDouble().varIntSize(min.toDouble(), max.toDouble())
|
fun Float.varIntSize(min: Float, max: Float) = toDouble().varIntSize(min.toDouble(), max.toDouble())
|
||||||
fun Double.varIntSize(min: Double, max: Double) = BigDecimal(this).varIntSize(BigDecimal(min), BigDecimal(max))
|
fun Double.varIntSize(min: Double, max: Double) = BigDecimal(this).varIntSize(BigDecimal(min), BigDecimal(max))
|
||||||
fun BigDecimal.varIntSize(min: BigDecimal, max: BigDecimal) =
|
fun BigDecimal.varIntSize(min: BigDecimal, max: BigDecimal) =
|
||||||
|
@ -125,8 +125,14 @@ class Portal private constructor(
|
|||||||
|
|
||||||
fun getAccessExclusionsSize() = _accessExclusions.size
|
fun getAccessExclusionsSize() = _accessExclusions.size
|
||||||
fun getAccessExclusion(index: Int) = toPlayerMapper(_accessExclusions[index])
|
fun getAccessExclusion(index: Int) = toPlayerMapper(_accessExclusions[index])
|
||||||
fun addAccessExclusion(player: OfflinePlayer) = _accessExclusions.add(fromPlayerMapper(player))
|
fun addAccessExclusion(player: OfflinePlayer) {
|
||||||
fun removeAccessExclusion(player: OfflinePlayer) = _accessExclusions.remove(fromPlayerMapper(player))
|
_accessExclusions.add(fromPlayerMapper(player))
|
||||||
|
flags = PortalFlag.NO_EXCLUSIONS.unSetFlag(flags)
|
||||||
|
}
|
||||||
|
fun removeAccessExclusion(player: OfflinePlayer) {
|
||||||
|
_accessExclusions.remove(fromPlayerMapper(player))
|
||||||
|
flags = PortalFlag.NO_EXCLUSIONS.setFlag(flags)
|
||||||
|
}
|
||||||
fun containsAccessExclusion(player: OfflinePlayer) = fromPlayerMapper(player) in _accessExclusions
|
fun containsAccessExclusion(player: OfflinePlayer) = fromPlayerMapper(player) in _accessExclusions
|
||||||
|
|
||||||
val owner: OfflinePlayer
|
val owner: OfflinePlayer
|
||||||
@ -171,11 +177,13 @@ class Portal private constructor(
|
|||||||
|
|
||||||
fun unlink() {
|
fun unlink() {
|
||||||
link = null
|
link = null
|
||||||
|
flags = PortalFlag.LINKED.unSetFlag(flags)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun link(portal: Portal): Boolean {
|
fun link(portal: Portal): Boolean {
|
||||||
if (this == portal) return false
|
if (this == portal) return false
|
||||||
link = portal.id
|
link = portal.id
|
||||||
|
flags = PortalFlag.LINKED.setFlag(flags)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -199,8 +207,8 @@ class Portal private constructor(
|
|||||||
buffer.packedInt = x
|
buffer.packedInt = x
|
||||||
buffer.packedInt = y
|
buffer.packedInt = y
|
||||||
buffer.packedInt = z
|
buffer.packedInt = z
|
||||||
buffer.putPackedFloat(yaw.mod(360f), 0f, 360f)
|
buffer.packedUInt = yaw.toPackedRotationUInt()
|
||||||
buffer.putPackedFloat((pitch + 90f).mod(180f) - 90f, -90f, 90f)
|
buffer.packedUInt = pitch.toPackedPitchUInt()
|
||||||
buffer.byte = flags
|
buffer.byte = flags
|
||||||
if (PortalFlag.LINKED.isFlagSet(flags)) {
|
if (PortalFlag.LINKED.isFlagSet(flags)) {
|
||||||
val link = link!!
|
val link = link!!
|
||||||
@ -248,8 +256,8 @@ class Portal private constructor(
|
|||||||
inputBuffer.packedInt,
|
inputBuffer.packedInt,
|
||||||
inputBuffer.packedInt,
|
inputBuffer.packedInt,
|
||||||
inputBuffer.packedInt,
|
inputBuffer.packedInt,
|
||||||
inputBuffer.getPackedFloat(0f, 360f),
|
inputBuffer.packedUInt.fromPackedRotationFloat(),
|
||||||
inputBuffer.getPackedFloat(0f, 360f),
|
inputBuffer.packedUInt.fromPackedPitchFloat(),
|
||||||
run {
|
run {
|
||||||
flags = inputBuffer.byte
|
flags = inputBuffer.byte
|
||||||
return@run flags
|
return@run flags
|
||||||
|
@ -66,7 +66,7 @@ open class UUIDMapper<T>(
|
|||||||
}
|
}
|
||||||
|
|
||||||
class PlayerMapper(dataStore: ConfigurationSection, dataStorePath: String): UUIDMapper<OfflinePlayer>(
|
class PlayerMapper(dataStore: ConfigurationSection, dataStorePath: String): UUIDMapper<OfflinePlayer>(
|
||||||
{ Bukkit.getServer().getPlayer(this) },
|
{ Bukkit.getServer().getOfflinePlayer(this) },
|
||||||
OfflinePlayer::getUniqueId,
|
OfflinePlayer::getUniqueId,
|
||||||
dataStore,
|
dataStore,
|
||||||
dataStorePath
|
dataStorePath
|
||||||
|
Loading…
x
Reference in New Issue
Block a user