/* * This file is part of ViaVersion - https://github.com/ViaVersion/ViaVersion * Copyright (C) 2016-2024 ViaVersion and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ package com.viaversion.viaversion.rewriter; import com.viaversion.viaversion.api.protocol.Protocol; import com.viaversion.viaversion.api.protocol.packet.ClientboundPacketType; import com.viaversion.viaversion.api.protocol.remapper.PacketHandler; import com.viaversion.viaversion.api.protocol.remapper.PacketHandlers; import com.viaversion.viaversion.api.type.Type; public class SoundRewriter { protected final Protocol protocol; protected final IdRewriteFunction idRewriter; public SoundRewriter(Protocol protocol) { this.protocol = protocol; this.idRewriter = id -> protocol.getMappingData().getSoundMappings().getNewId(id); } public SoundRewriter(Protocol protocol, IdRewriteFunction idRewriter) { this.protocol = protocol; this.idRewriter = idRewriter; } public void registerSound(C packetType) { protocol.registerClientbound(packetType, new PacketHandlers() { @Override public void register() { map(Type.VAR_INT); // Sound id handler(getSoundHandler()); } }); } public void registerEntitySound(C packetType) { this.registerSound(packetType); } // Also for entity sounds starting with 1.20.5 public void register1_19_3Sound(C packetType) { protocol.registerClientbound(packetType, soundHolderHandler()); } public PacketHandler soundHolderHandler() { return wrapper -> { final int soundId = wrapper.read(Type.VAR_INT); if (soundId == 0) { // Is followed by the resource loation wrapper.write(Type.VAR_INT, 0); return; } final int mappedId = idRewriter.rewrite(soundId - 1); // Normalize sound id if (mappedId == -1) { wrapper.cancel(); return; } wrapper.write(Type.VAR_INT, mappedId + 1); }; } public PacketHandler getSoundHandler() { return wrapper -> { int soundId = wrapper.get(Type.VAR_INT, 0); int mappedId = idRewriter.rewrite(soundId); if (mappedId == -1) { wrapper.cancel(); } else if (soundId != mappedId) { wrapper.set(Type.VAR_INT, 0, mappedId); } }; } }