From a30536dd2f6b123ce0f36419d6628bc973d54727 Mon Sep 17 00:00:00 2001 From: minecraft-simon Date: Wed, 21 Dec 2022 22:17:34 +0100 Subject: [PATCH 1/4] added option to ignore player position --- .../module/modules/player/PacketLogger.kt | 46 +++++++++++-------- 1 file changed, 27 insertions(+), 19 deletions(-) diff --git a/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt b/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt index 29b484993..8bc49d392 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt @@ -8,7 +8,6 @@ import com.lambda.client.event.listener.listener import com.lambda.client.mixin.extension.* import com.lambda.client.module.Category import com.lambda.client.module.Module -import com.lambda.client.module.modules.misc.MapDownloader.setting import com.lambda.client.util.FolderUtils import com.lambda.client.util.TickTimer import com.lambda.client.util.TimeUnit @@ -43,6 +42,7 @@ object PacketLogger : Module( private val ignoreUnknown by setting("Ignore Unknown Packets", false, description = "Ignore packets that aren't explicitly handled.") private val ignoreChat by setting("Ignore Chat", true, description = "Ignore chat packets.") private val ignoreCancelled by setting("Ignore Cancelled", true, description = "Ignore cancelled packets.") + private val ignorePlayerPosition by setting("Ignore Player Position", false, description = "Ignore sent position & rotation packets.") private val openLogFolder by setting("Open Log Folder...", false, consumer = { _, _ -> FolderUtils.openFolder(FolderUtils.packetLogFolder) true @@ -652,33 +652,41 @@ object PacketLogger : Module( } } is CPacketPlayer.Rotation -> { - logClient(packet) { - "yaw" to packet.playerYaw - "pitch" to packet.playerPitch - "onGround" to packet.isOnGround + if (!ignorePlayerPosition) { + logClient(packet) { + "yaw" to packet.playerYaw + "pitch" to packet.playerPitch + "onGround" to packet.isOnGround + } } } is CPacketPlayer.Position -> { - logClient(packet) { - "x" to packet.playerX - "y" to packet.playerY - "z" to packet.playerZ - "onGround" to packet.isOnGround + if (!ignorePlayerPosition) { + logClient(packet) { + "x" to packet.playerX + "y" to packet.playerY + "z" to packet.playerZ + "onGround" to packet.isOnGround + } } } is CPacketPlayer.PositionRotation -> { - logClient(packet) { - "x" to packet.playerX - "y" to packet.playerY - "z" to packet.playerZ - "yaw" to packet.playerYaw - "pitch" to packet.playerPitch - "onGround" to packet.isOnGround + if (!ignorePlayerPosition) { + logClient(packet) { + "x" to packet.playerX + "y" to packet.playerY + "z" to packet.playerZ + "yaw" to packet.playerYaw + "pitch" to packet.playerPitch + "onGround" to packet.isOnGround + } } } is CPacketPlayer -> { - logClient(packet) { - "onGround" to packet.isOnGround + if (!ignorePlayerPosition) { + logClient(packet) { + "onGround" to packet.isOnGround + } } } is CPacketPlayerDigging -> { From b7170870a4169c920e6490c63b87eac3f908798f Mon Sep 17 00:00:00 2001 From: minecraft-simon Date: Wed, 21 Dec 2022 23:15:39 +0100 Subject: [PATCH 2/4] added logging of entityID for entity moving packets --- .../network/AccessorSPacketEntity.java | 17 ++++++ .../AccessorSPacketEntityHeadLook.java | 16 ++++++ .../lambda/client/mixin/extension/Network.kt | 17 ++++-- .../module/modules/player/PacketLogger.kt | 54 +++++++++++++------ src/main/resources/mixins.lambda.json | 2 + 5 files changed, 87 insertions(+), 19 deletions(-) create mode 100644 src/main/java/com/lambda/mixin/accessor/network/AccessorSPacketEntity.java create mode 100644 src/main/java/com/lambda/mixin/accessor/network/AccessorSPacketEntityHeadLook.java diff --git a/src/main/java/com/lambda/mixin/accessor/network/AccessorSPacketEntity.java b/src/main/java/com/lambda/mixin/accessor/network/AccessorSPacketEntity.java new file mode 100644 index 000000000..890f5a951 --- /dev/null +++ b/src/main/java/com/lambda/mixin/accessor/network/AccessorSPacketEntity.java @@ -0,0 +1,17 @@ +package com.lambda.mixin.accessor.network; + +import net.minecraft.network.play.server.SPacketEntity; +import net.minecraft.network.play.server.SPacketEntityVelocity; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.gen.Accessor; + +@Mixin(SPacketEntity.class) +public interface AccessorSPacketEntity { + + @Accessor("entityId") + int getEntityId(); + + @Accessor("entityId") + void setEntityId(int value); + +} diff --git a/src/main/java/com/lambda/mixin/accessor/network/AccessorSPacketEntityHeadLook.java b/src/main/java/com/lambda/mixin/accessor/network/AccessorSPacketEntityHeadLook.java new file mode 100644 index 000000000..109341907 --- /dev/null +++ b/src/main/java/com/lambda/mixin/accessor/network/AccessorSPacketEntityHeadLook.java @@ -0,0 +1,16 @@ +package com.lambda.mixin.accessor.network; + +import net.minecraft.network.play.server.SPacketEntityHeadLook; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.gen.Accessor; + +@Mixin(SPacketEntityHeadLook.class) +public interface AccessorSPacketEntityHeadLook { + + @Accessor("entityId") + int getEntityId(); + + @Accessor("entityId") + void setEntityId(int value); + +} diff --git a/src/main/kotlin/com/lambda/client/mixin/extension/Network.kt b/src/main/kotlin/com/lambda/client/mixin/extension/Network.kt index ac73b536d..b03bccdc3 100644 --- a/src/main/kotlin/com/lambda/client/mixin/extension/Network.kt +++ b/src/main/kotlin/com/lambda/client/mixin/extension/Network.kt @@ -5,10 +5,7 @@ import net.minecraft.network.play.client.CPacketChatMessage import net.minecraft.network.play.client.CPacketCloseWindow import net.minecraft.network.play.client.CPacketPlayer import net.minecraft.network.play.client.CPacketUseEntity -import net.minecraft.network.play.server.SPacketChat -import net.minecraft.network.play.server.SPacketEntityVelocity -import net.minecraft.network.play.server.SPacketExplosion -import net.minecraft.network.play.server.SPacketPlayerPosLook +import net.minecraft.network.play.server.* import net.minecraft.util.text.ITextComponent var CPacketChatMessage.chatMessage: String @@ -113,4 +110,16 @@ var SPacketPlayerPosLook.playerPosLookPitch: Float get() = this.pitch set(value) { (this as AccessorSPacketPosLook).setPitch(value) + } + +var SPacketEntity.entityId: Int + get() = (this as AccessorSPacketEntity).entityId + set(value) { + (this as AccessorSPacketEntity).entityId = value + } + +var SPacketEntityHeadLook.entityHeadLookEntityId: Int + get() = (this as AccessorSPacketEntityHeadLook).entityId + set(value) { + (this as AccessorSPacketEntityHeadLook).entityId = value } \ No newline at end of file diff --git a/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt b/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt index 8bc49d392..cd81ac146 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt @@ -43,6 +43,7 @@ object PacketLogger : Module( private val ignoreChat by setting("Ignore Chat", true, description = "Ignore chat packets.") private val ignoreCancelled by setting("Ignore Cancelled", true, description = "Ignore cancelled packets.") private val ignorePlayerPosition by setting("Ignore Player Position", false, description = "Ignore sent position & rotation packets.") + private val ignoreTimeUpdates by setting("Ignore Time Updates", false, description = "Ignore time update packets.") private val openLogFolder by setting("Open Log Folder...", false, consumer = { _, _ -> FolderUtils.openFolder(FolderUtils.packetLogFolder) true @@ -308,8 +309,39 @@ object PacketLogger : Module( "isSoundServerwide" to packet.isSoundServerwide } } + is SPacketEntity.S15PacketEntityRelMove -> { + logServer(packet) { + "entityId" to packet.entityId + "x" to packet.x + "y" to packet.y + "z" to packet.z + "onGround" to packet.onGround + } + } + is SPacketEntity.S16PacketEntityLook -> { + logServer(packet) { + "entityId" to packet.entityId + "yaw" to packet.yaw + "pitch" to packet.pitch + "isRotating" to packet.isRotating + "onGround" to packet.onGround + } + } + is SPacketEntity.S17PacketEntityLookMove -> { + logServer(packet) { + "entityId" to packet.entityId + "x" to packet.x + "y" to packet.y + "z" to packet.z + "yaw" to packet.yaw + "pitch" to packet.pitch + "isRotating" to packet.isRotating + "onGround" to packet.onGround + } + } is SPacketEntity -> { logServer(packet) { + "entityId" to packet.entityId "x" to packet.x "y" to packet.y "z" to packet.z @@ -344,6 +376,7 @@ object PacketLogger : Module( } is SPacketEntityHeadLook -> { logServer(packet) { + "entityId" to packet.entityHeadLookEntityId "yaw" to packet.yaw } } @@ -378,12 +411,12 @@ object PacketLogger : Module( } is SPacketEntityTeleport -> { logServer(packet) { + "entityID" to packet.entityId "x" to packet.x "y" to packet.y "z" to packet.z "yaw" to packet.yaw "pitch" to packet.pitch - "entityID" to packet.entityId } } is SPacketEntityVelocity -> { @@ -542,9 +575,11 @@ object PacketLogger : Module( } } is SPacketTimeUpdate -> { - logServer(packet) { - "totalWorldTime" to packet.totalWorldTime - "worldTime" to packet.worldTime + if (!ignoreTimeUpdates) { + logServer(packet) { + "totalWorldTime" to packet.totalWorldTime + "worldTime" to packet.worldTime + } } } is SPacketUnloadChunk -> { @@ -581,17 +616,6 @@ object PacketLogger : Module( "windowId" to packet.windowId } } - is SPacketEntity.S15PacketEntityRelMove -> { - logServer(packet) { - "x" to packet.x - "y" to packet.y - "z" to packet.z - "yaw" to packet.yaw - "pitch" to packet.pitch - "isRotating" to packet.isRotating - "onGround" to packet.onGround - } - } else -> { if (!ignoreUnknown) { logServer(packet) { diff --git a/src/main/resources/mixins.lambda.json b/src/main/resources/mixins.lambda.json index a5b0880b3..2ea5d021b 100644 --- a/src/main/resources/mixins.lambda.json +++ b/src/main/resources/mixins.lambda.json @@ -27,6 +27,8 @@ "accessor.network.AccessorSPacketEntityVelocity", "accessor.network.AccessorSPacketExplosion", "accessor.network.AccessorSPacketPosLook", + "accessor.network.AccessorSPacketEntity", + "accessor.network.AccessorSPacketEntityHeadLook", "accessor.player.AccessorEntityPlayerSP", "accessor.player.AccessorPlayerControllerMP", "accessor.render.AccessorRenderGlobal", From 7b2720ff3b145033a05b8b05c5d952e59636c42a Mon Sep 17 00:00:00 2001 From: minecraft-simon Date: Wed, 21 Dec 2022 23:50:13 +0100 Subject: [PATCH 3/4] added SPacketPlayerListItem to packet logger --- .../module/modules/player/PacketLogger.kt | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt b/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt index cd81ac146..b77dc7030 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt @@ -550,6 +550,28 @@ object PacketLogger : Module( } } } + is SPacketPlayerListItem -> { + logServer(packet) { + "action" to packet.action.name + "entries" to buildString { + for (entry in packet.entries) { + append("> displayName: ") + append(entry.displayName) + append(" gameMode: ") + append(entry.gameMode?.name) + append(" ping: ") + append(entry.ping) + append(" profile.id: ") + append(entry.profile?.id) + append(" profile.name: ") + append(entry.profile?.name) + append(" profile.properties: ") + append(entry.profile?.properties) + append(' ') + } + } + } + } is SPacketSoundEffect -> { logServer(packet) { "sound" to packet.sound.soundName From 70761532a0c9598da0c28f1d155e7464ad4ef0ce Mon Sep 17 00:00:00 2001 From: minecraft-simon Date: Thu, 22 Dec 2022 00:00:03 +0100 Subject: [PATCH 4/4] added SPacketSpawnPlayer to packet logger --- .../client/module/modules/player/PacketLogger.kt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt b/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt index b77dc7030..cbe6f3f9b 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/player/PacketLogger.kt @@ -589,6 +589,17 @@ object PacketLogger : Module( "data" to packet.data } } + is SPacketSpawnPlayer -> { + logServer(packet) { + "entityID" to packet.entityID + "uniqueID" to packet.uniqueId + "x" to packet.x + "y" to packet.y + "z" to packet.z + "yaw" to packet.yaw + "pitch" to packet.pitch + } + } is SPacketTeams -> { logServer(packet) { "action" to packet.action