diff --git a/src/main/kotlin/Comparator.kt b/src/main/kotlin/Comparator.kt new file mode 100644 index 0000000..aa4d825 --- /dev/null +++ b/src/main/kotlin/Comparator.kt @@ -0,0 +1,62 @@ +import org.bukkit.Location +import org.bukkit.OfflinePlayer +import java.util.* +import kotlin.Comparator + +typealias Comparison = (V) -> Int + +val COMPARATOR_PLAYER = Comparator { a, b -> a.uniqueId.compareTo(b.uniqueId) } +val COMPARATOR_LOCATION = Comparator { a, b -> a.compareByOrder(b, { world!!.uid }, Location::getBlockX, Location::getBlockY, Location::getBlockZ) } + +val COMPARATOR_UUID = Comparator { a, b -> + val aUnlinked = a == null + val bUnlinked = a == null + + if (aUnlinked || bUnlinked) { + return@Comparator if (aUnlinked == bUnlinked) 0 else if (aUnlinked) -1 else 1 + } + + a!!.compareTo(b!!) +} + +// An owner cannot place two portals on the same block, implying that this comparator defines a partial order +val COMPARATOR_PORTAL_LOCATION_OWNER = Comparator { a, b -> a.compareByOrder(b, { world.uid }, Portal::x, Portal::y, Portal::z, { owner.uniqueId }) } +val COMPARATOR_PORTAL_LOCATION = Comparator { a, b -> a.compareByOrder(b, { world.uid }, Portal::x, Portal::y, Portal::z) } +val COMPARATOR_PORTAL_OWNER_NAME = Comparator { a, b -> a.compareByOrder(b, { owner.uniqueId }, Portal::name) } +val COMPARATOR_PORTAL_LINKS = Comparator { a, b -> COMPARATOR_UUID.compare(a.link, b.link) } + +val Location.COMPARISON_PORTAL: Comparison + get() = { + compareValues( + world!!::getUID to it.world::getUID, + this::getBlockX to it::x, + this::getBlockY to it::y, + this::getBlockZ to it::z + ) + } + +val OfflinePlayer.COMPARISON_PORTAL: Comparison + get() = { uniqueId.compareTo(it.owner.uniqueId) } + +val UUID.COMPARISON_PORTAL_ID: Comparison + get() = { compareTo(it.id) } + +val Portal.COMPARISON_PORTAL_LINKEDTO: Comparison + get() = { COMPARATOR_UUID.compare(id, it.link) } + +// IDs are unique, so this comparator inherently defines a partial order +val COMPARATOR_PORTAL_UID = Comparator { a, b -> a.id.compareTo(b.id) } + +val COMPARATOR_INVITE_RECIPIENT = Comparator { a, b -> + a.compareByOrder(b, { recipient.uniqueId }, Invite::portalID) +} + +val COMPARATOR_INVITE_PORTAL = Comparator { a, b -> + a.compareByOrder(b, Invite::portalID, { recipient.uniqueId }) +} + +val OfflinePlayer.COMPARISON_INVITE: Comparison + get() = { uniqueId.compareTo(it.recipient.uniqueId) } + +val Portal.COMPARISON_INVITE: Comparison + get() = { id.compareTo(it.portalID) } \ No newline at end of file diff --git a/src/main/kotlin/Portal.kt b/src/main/kotlin/Portal.kt index 7feb024..8621033 100644 --- a/src/main/kotlin/Portal.kt +++ b/src/main/kotlin/Portal.kt @@ -4,19 +4,11 @@ import org.bukkit.World import org.bukkit.entity.Player import java.nio.ByteBuffer import java.util.* +import kotlin.Comparator import kotlin.experimental.and import kotlin.experimental.inv import kotlin.experimental.or -private val PLAYER_COMPARATOR = Comparator { a, b -> a.uniqueId.compareTo(b.uniqueId) } -val LOCATION_COMPARATOR = Comparator { a, b -> a.compareByOrder(b, { world!!.uid }, Location::getBlockX, Location::getBlockY, Location::getBlockZ) } - -// An owner cannot place two portals on the same block, implying that this comparator defines a partial order -val PORTAL_LOCATION_COMPARATOR = Comparator { a, b -> a.compareByOrder(b, { world.uid }, Portal::x, Portal::y, Portal::z, { owner.uniqueId }) } - -// IDs are unique, so this comparator inherently defines a partial order -val PORTAL_UID_COMPARATOR = Comparator { a, b -> a.id.compareTo(b.id) } - private val threadLocalInputBuffer = ThreadLocal.withInitial { ReallocatingBuffer(ByteBuffer.allocate(96)) } private val threadLocalOutputBuffer = ThreadLocal.withInitial { ReallocatingBuffer(ByteBuffer.allocate(96)) }