diff options
author | Linnea Gräf <nea@nea.moe> | 2025-01-07 15:57:48 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-01-07 15:57:48 +0100 |
commit | dc19995f2b11ba595775b7224df200e365e7c4bf (patch) | |
tree | 0baee487f75db329c73e9125b030f0b6d5dd741b /src/main/kotlin/moe/nea/ledger/MCUUIDUtil.kt | |
parent | 0ee8a4fdfedf20d543f42ab52a2f24af089271ac (diff) | |
download | LocalTransactionLedger-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.kt | 22 |
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 |