Add names to portals
This commit is contained in:
parent
88ef59de6b
commit
a1dc7c6f42
@ -72,6 +72,7 @@ class Portal(
|
|||||||
var pitch: Float,
|
var pitch: Float,
|
||||||
private var flags: Byte,
|
private var flags: Byte,
|
||||||
link: UUID?,
|
link: UUID?,
|
||||||
|
var name: String,
|
||||||
val accessExclusions: SortedList<OfflinePlayer>
|
val accessExclusions: SortedList<OfflinePlayer>
|
||||||
) {
|
) {
|
||||||
init {
|
init {
|
||||||
@ -120,6 +121,16 @@ class Portal(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun unlink() {
|
||||||
|
link = null
|
||||||
|
}
|
||||||
|
|
||||||
|
fun link(portal: Portal): Boolean {
|
||||||
|
if (this == portal) return false
|
||||||
|
link = portal.id
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
fun toCompressedString(worldMapper: MapFunction<World, UInt>, playerMapper: MapFunction<OfflinePlayer, UInt>): String {
|
fun toCompressedString(worldMapper: MapFunction<World, UInt>, playerMapper: MapFunction<OfflinePlayer, UInt>): String {
|
||||||
val buffer = threadLocalInputBuffer.get()
|
val buffer = threadLocalInputBuffer.get()
|
||||||
buffer.position = 0
|
buffer.position = 0
|
||||||
@ -139,6 +150,9 @@ class Portal(
|
|||||||
buffer.long = link.mostSignificantBits
|
buffer.long = link.mostSignificantBits
|
||||||
buffer.long = link.leastSignificantBits
|
buffer.long = link.leastSignificantBits
|
||||||
}
|
}
|
||||||
|
|
||||||
|
buffer.putString(name)
|
||||||
|
|
||||||
if (accessExclusions.size > 0) {
|
if (accessExclusions.size > 0) {
|
||||||
for (player in accessExclusions)
|
for (player in accessExclusions)
|
||||||
buffer.packedUInt = playerMapper(player)
|
buffer.packedUInt = playerMapper(player)
|
||||||
@ -185,9 +199,10 @@ fun readCompressedPortal(
|
|||||||
},
|
},
|
||||||
if (PortalFlag.LINKED.isFlagSet(flags)) UUID(inputBuffer.long, inputBuffer.long)
|
if (PortalFlag.LINKED.isFlagSet(flags)) UUID(inputBuffer.long, inputBuffer.long)
|
||||||
else null,
|
else null,
|
||||||
if (PortalFlag.NO_EXCLUSIONS.isFlagSet(flags)) SortedList(comparator = PLAYER_COMPARATOR)
|
inputBuffer.getString(),
|
||||||
|
if (PortalFlag.NO_EXCLUSIONS.isFlagSet(flags)) SortedList(comparator = COMPARATOR_PLAYER)
|
||||||
else run {
|
else run {
|
||||||
val collect = SortedList(comparator = PLAYER_COMPARATOR)
|
val collect = SortedList(comparator = COMPARATOR_PLAYER)
|
||||||
while (inputBuffer.position < dataLen)
|
while (inputBuffer.position < dataLen)
|
||||||
collect += playerMapper(inputBuffer.packedUInt) ?: continue
|
collect += playerMapper(inputBuffer.packedUInt) ?: continue
|
||||||
return@run collect
|
return@run collect
|
||||||
|
Loading…
x
Reference in New Issue
Block a user