diff options
author | nea <nea@nea.moe> | 2023-06-09 18:08:38 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-06-09 18:08:38 +0200 |
commit | 428056ff805839e04443dcff3badd021eb4abe01 (patch) | |
tree | 1dfb5b4dc84bc0884dc319be7f8ad4e949decb81 /src/main/kotlin/moe/nea/firmament/events | |
parent | e7a7b04d8cadbc08d12272e8c59bff711be4d463 (diff) | |
download | firmament-428056ff805839e04443dcff3badd021eb4abe01.tar.gz firmament-428056ff805839e04443dcff3badd021eb4abe01.tar.bz2 firmament-428056ff805839e04443dcff3badd021eb4abe01.zip |
Add support for other mods using /locraw
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/events')
3 files changed, 24 insertions, 3 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/events/ClientChatLineReceivedEvent.kt b/src/main/kotlin/moe/nea/firmament/events/ClientChatLineReceivedEvent.kt new file mode 100644 index 0000000..604422d --- /dev/null +++ b/src/main/kotlin/moe/nea/firmament/events/ClientChatLineReceivedEvent.kt @@ -0,0 +1,14 @@ +package moe.nea.firmament.events + +import net.minecraft.text.Text +import moe.nea.firmament.util.unformattedString + +/** + * Published just before a message is added to the chat gui. Cancelling only prevents rendering, not logging to the + * console. + */ +data class ClientChatLineReceivedEvent(val text: Text) : FirmamentEvent.Cancellable() { + val unformattedString = text.unformattedString + + companion object : FirmamentEventBus<ClientChatLineReceivedEvent>() +} diff --git a/src/main/kotlin/moe/nea/firmament/events/OutgoingPacketEvent.kt b/src/main/kotlin/moe/nea/firmament/events/OutgoingPacketEvent.kt new file mode 100644 index 0000000..4263d9d --- /dev/null +++ b/src/main/kotlin/moe/nea/firmament/events/OutgoingPacketEvent.kt @@ -0,0 +1,7 @@ +package moe.nea.firmament.events + +import net.minecraft.network.packet.Packet + +data class OutgoingPacketEvent(val packet: Packet<*>) : FirmamentEvent.Cancellable() { + companion object : FirmamentEventBus<OutgoingPacketEvent>() +} diff --git a/src/main/kotlin/moe/nea/firmament/events/ServerChatLineReceivedEvent.kt b/src/main/kotlin/moe/nea/firmament/events/ServerChatLineReceivedEvent.kt index c7e950f..57879a1 100644 --- a/src/main/kotlin/moe/nea/firmament/events/ServerChatLineReceivedEvent.kt +++ b/src/main/kotlin/moe/nea/firmament/events/ServerChatLineReceivedEvent.kt @@ -23,9 +23,9 @@ import moe.nea.firmament.util.unformattedString /** * This event gets published whenever the client receives a chat message from the server. - */ + * This event is cancellable, but should not get cancelled. Use [ClientChatLineReceivedEvent] for that instead. */ data class ServerChatLineReceivedEvent(val text: Text) : FirmamentEvent.Cancellable() { - companion object : FirmamentEventBus<ServerChatLineReceivedEvent>() - val unformattedString = text.unformattedString + + companion object : FirmamentEventBus<ServerChatLineReceivedEvent>() } |