aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/ledger/MCUUIDUtil.kt
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2025-01-07 15:57:48 +0100
committerLinnea Gräf <nea@nea.moe>2025-01-07 15:57:48 +0100
commitdc19995f2b11ba595775b7224df200e365e7c4bf (patch)
tree0baee487f75db329c73e9125b030f0b6d5dd741b /src/main/kotlin/moe/nea/ledger/MCUUIDUtil.kt
parent0ee8a4fdfedf20d543f42ab52a2f24af089271ac (diff)
downloadLocalTransactionLedger-dc19995f2b11ba595775b7224df200e365e7c4bf.tar.gz
LocalTransactionLedger-dc19995f2b11ba595775b7224df200e365e7c4bf.tar.bz2
LocalTransactionLedger-dc19995f2b11ba595775b7224df200e365e7c4bf.zip
refactor: Extract database to its own module
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/MCUUIDUtil.kt')
-rw-r--r--src/main/kotlin/moe/nea/ledger/MCUUIDUtil.kt22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/ledger/MCUUIDUtil.kt b/src/main/kotlin/moe/nea/ledger/MCUUIDUtil.kt
new file mode 100644
index 0000000..79068cc
--- /dev/null
+++ b/src/main/kotlin/moe/nea/ledger/MCUUIDUtil.kt
@@ -0,0 +1,22 @@
+package moe.nea.ledger
+
+import com.mojang.util.UUIDTypeAdapter
+import net.minecraft.client.Minecraft
+import java.util.UUID
+
+object MCUUIDUtil {
+
+ fun parseDashlessUuid(string: String) = UUIDTypeAdapter.fromString(string)
+ val NIL_UUID = UUID(0L, 0L)
+ fun getPlayerUUID(): UUID {
+ val currentUUID = Minecraft.getMinecraft().thePlayer?.uniqueID
+ ?: Minecraft.getMinecraft().session?.playerID?.let(::parseDashlessUuid)
+ ?: lastKnownUUID
+ lastKnownUUID = currentUUID
+ return currentUUID
+ }
+
+
+ private var lastKnownUUID: UUID = NIL_UUID
+
+} \ No newline at end of file