Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-16 04:50:07 +01:00
Fix toggleable block opening sounds (doors, trapdoors, fence gates) (#4815)
* Initial Commit * Fix minor copy and paste comment mistake * Remove debug log Co-authored-by: chris <github@onechris.mozmail.com> * Remove iron check on fence gate sound translator iron fence gates dont exist lol * Remove iron check from fence gate sound translator. Iron fence gates dont exist (yet) * Remove unnecessary curly braces * Rewrite the code, now functioning correctly with the runtime id * Update mappings * Better formatting Co-authored-by: chris <github@onechris.mozmail.com> * fix comment because it is referring to code that has been changed * Hopefully fix double closing * Seems like the double closing issue isnt from my code and from somewhere else * Fix issue where doors would update twice when opening/closing them using the upper half * change weird variable name --------- Co-authored-by: chris <github@onechris.mozmail.com>
Dieser Commit ist enthalten in:
Ursprung
9f19c0a9f6
Commit
3c35fd303f
@ -37,9 +37,22 @@ public class DoorBlock extends Block {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void updateBlock(GeyserSession session, BlockState state, Vector3i position) {
|
public void updateBlock(GeyserSession session, BlockState state, Vector3i position) {
|
||||||
|
// Needed to check whether we must force the client to update the door state.
|
||||||
|
String doubleBlockHalf = state.getValue(Properties.DOUBLE_BLOCK_HALF);
|
||||||
|
|
||||||
|
if (doubleBlockHalf.equals("lower")) {
|
||||||
|
BlockState oldBlockState = session.getGeyser().getWorldManager().blockAt(session, position);
|
||||||
|
// If these are the same, it means that we already updated the lower door block (manually in the workaround below),
|
||||||
|
// and we do not need to update the block in the cache/on the client side using the super.updateBlock() method again.
|
||||||
|
// Otherwise, we send the door updates twice which will cause visual glitches on the client side
|
||||||
|
if (oldBlockState == state) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
super.updateBlock(session, state, position);
|
super.updateBlock(session, state, position);
|
||||||
|
|
||||||
if (state.getValue(Properties.DOUBLE_BLOCK_HALF).equals("upper")) {
|
if (doubleBlockHalf.equals("upper")) {
|
||||||
// Update the lower door block as Bedrock client doesn't like door to be closed from the top
|
// Update the lower door block as Bedrock client doesn't like door to be closed from the top
|
||||||
// See https://github.com/GeyserMC/Geyser/issues/4358
|
// See https://github.com/GeyserMC/Geyser/issues/4358
|
||||||
Vector3i belowDoorPosition = position.sub(0, 1, 0);
|
Vector3i belowDoorPosition = position.sub(0, 1, 0);
|
||||||
|
@ -100,8 +100,8 @@ public class JavaBlockUpdateTranslator extends PacketTranslator<ClientboundBlock
|
|||||||
|| lastInteractPos.getZ() != packet.getEntry().getPosition().getZ())) {
|
|| lastInteractPos.getZ() != packet.getEntry().getPosition().getZ())) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
String identifier = BlockState.of(packet.getEntry().getBlock()).toString(); // This will be yeeted soon. Thanks Chris.
|
BlockState state = BlockState.of(packet.getEntry().getBlock());
|
||||||
session.setInteracting(false);
|
session.setInteracting(false);
|
||||||
BlockSoundInteractionTranslator.handleBlockInteraction(session, lastInteractPos.toFloat(), identifier);
|
BlockSoundInteractionTranslator.handleBlockInteraction(session, lastInteractPos.toFloat(), state);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -27,6 +27,7 @@ package org.geysermc.geyser.translator.sound;
|
|||||||
|
|
||||||
import org.cloudburstmc.math.vector.Vector3f;
|
import org.cloudburstmc.math.vector.Vector3f;
|
||||||
import org.geysermc.geyser.inventory.GeyserItemStack;
|
import org.geysermc.geyser.inventory.GeyserItemStack;
|
||||||
|
import org.geysermc.geyser.level.block.type.BlockState;
|
||||||
import org.geysermc.geyser.registry.Registries;
|
import org.geysermc.geyser.registry.Registries;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
import org.geysermc.mcprotocollib.protocol.data.game.entity.player.GameMode;
|
import org.geysermc.mcprotocollib.protocol.data.game.entity.player.GameMode;
|
||||||
@ -37,17 +38,16 @@ import java.util.Map;
|
|||||||
/**
|
/**
|
||||||
* Sound interaction handler for when a block is right-clicked.
|
* Sound interaction handler for when a block is right-clicked.
|
||||||
*/
|
*/
|
||||||
public interface BlockSoundInteractionTranslator extends SoundInteractionTranslator<String> {
|
public interface BlockSoundInteractionTranslator extends SoundInteractionTranslator<BlockState> {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handles the block interaction when a player
|
* Handles the block interaction when a player
|
||||||
* right-clicks a block.
|
* right-clicks a block.
|
||||||
*
|
*
|
||||||
* @param session the session interacting with the block
|
* @param session the session interacting with the block
|
||||||
* @param position the position of the block
|
* @param position the position of the block
|
||||||
* @param identifier the identifier of the block
|
* @param state the state of the block
|
||||||
*/
|
*/
|
||||||
static void handleBlockInteraction(GeyserSession session, Vector3f position, String identifier) {
|
static void handleBlockInteraction(GeyserSession session, Vector3f position, BlockState state) {
|
||||||
// If we need to get the hand identifier, only get it once and save it to a variable
|
// If we need to get the hand identifier, only get it once and save it to a variable
|
||||||
String handIdentifier = null;
|
String handIdentifier = null;
|
||||||
|
|
||||||
@ -58,7 +58,7 @@ public interface BlockSoundInteractionTranslator extends SoundInteractionTransla
|
|||||||
if (interactionEntry.getKey().blocks().length != 0) {
|
if (interactionEntry.getKey().blocks().length != 0) {
|
||||||
boolean contains = false;
|
boolean contains = false;
|
||||||
for (String blockIdentifier : interactionEntry.getKey().blocks()) {
|
for (String blockIdentifier : interactionEntry.getKey().blocks()) {
|
||||||
if (identifier.contains(blockIdentifier)) {
|
if (state.toString().contains(blockIdentifier)) {
|
||||||
contains = true;
|
contains = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -87,7 +87,7 @@ public interface BlockSoundInteractionTranslator extends SoundInteractionTransla
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
((BlockSoundInteractionTranslator) interactionEntry.getValue()).translate(session, position, identifier);
|
((BlockSoundInteractionTranslator) interactionEntry.getValue()).translate(session, position, state);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,6 +29,7 @@ import org.cloudburstmc.math.vector.Vector3f;
|
|||||||
import org.cloudburstmc.protocol.bedrock.data.SoundEvent;
|
import org.cloudburstmc.protocol.bedrock.data.SoundEvent;
|
||||||
import org.cloudburstmc.protocol.bedrock.packet.LevelSoundEventPacket;
|
import org.cloudburstmc.protocol.bedrock.packet.LevelSoundEventPacket;
|
||||||
import org.geysermc.geyser.inventory.GeyserItemStack;
|
import org.geysermc.geyser.inventory.GeyserItemStack;
|
||||||
|
import org.geysermc.geyser.level.block.type.BlockState;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
||||||
import org.geysermc.geyser.translator.sound.SoundTranslator;
|
import org.geysermc.geyser.translator.sound.SoundTranslator;
|
||||||
@ -37,7 +38,8 @@ import org.geysermc.geyser.translator.sound.SoundTranslator;
|
|||||||
public class BucketSoundInteractionTranslator implements BlockSoundInteractionTranslator {
|
public class BucketSoundInteractionTranslator implements BlockSoundInteractionTranslator {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void translate(GeyserSession session, Vector3f position, String identifier) {
|
public void translate(GeyserSession session, Vector3f position, BlockState state) {
|
||||||
|
String identifier = state.toString();
|
||||||
if (!session.isPlacedBucket()) {
|
if (!session.isPlacedBucket()) {
|
||||||
return; // No bucket was really interacted with
|
return; // No bucket was really interacted with
|
||||||
}
|
}
|
||||||
|
@ -28,6 +28,7 @@ package org.geysermc.geyser.translator.sound.block;
|
|||||||
import org.cloudburstmc.math.vector.Vector3f;
|
import org.cloudburstmc.math.vector.Vector3f;
|
||||||
import org.cloudburstmc.protocol.bedrock.data.LevelEvent;
|
import org.cloudburstmc.protocol.bedrock.data.LevelEvent;
|
||||||
import org.cloudburstmc.protocol.bedrock.packet.LevelEventPacket;
|
import org.cloudburstmc.protocol.bedrock.packet.LevelEventPacket;
|
||||||
|
import org.geysermc.geyser.level.block.type.BlockState;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
||||||
import org.geysermc.geyser.translator.sound.SoundTranslator;
|
import org.geysermc.geyser.translator.sound.SoundTranslator;
|
||||||
@ -36,7 +37,8 @@ import org.geysermc.geyser.translator.sound.SoundTranslator;
|
|||||||
public class ComparatorSoundInteractionTranslator implements BlockSoundInteractionTranslator {
|
public class ComparatorSoundInteractionTranslator implements BlockSoundInteractionTranslator {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void translate(GeyserSession session, Vector3f position, String identifier) {
|
public void translate(GeyserSession session, Vector3f position, BlockState state) {
|
||||||
|
String identifier = state.toString();
|
||||||
boolean powered = identifier.contains("mode=compare");
|
boolean powered = identifier.contains("mode=compare");
|
||||||
LevelEventPacket levelEventPacket = new LevelEventPacket();
|
LevelEventPacket levelEventPacket = new LevelEventPacket();
|
||||||
levelEventPacket.setPosition(position);
|
levelEventPacket.setPosition(position);
|
||||||
|
@ -28,6 +28,7 @@ package org.geysermc.geyser.translator.sound.block;
|
|||||||
import org.cloudburstmc.math.vector.Vector3f;
|
import org.cloudburstmc.math.vector.Vector3f;
|
||||||
import org.cloudburstmc.protocol.bedrock.data.SoundEvent;
|
import org.cloudburstmc.protocol.bedrock.data.SoundEvent;
|
||||||
import org.cloudburstmc.protocol.bedrock.packet.LevelSoundEventPacket;
|
import org.cloudburstmc.protocol.bedrock.packet.LevelSoundEventPacket;
|
||||||
|
import org.geysermc.geyser.level.block.type.BlockState;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
||||||
import org.geysermc.geyser.translator.sound.SoundTranslator;
|
import org.geysermc.geyser.translator.sound.SoundTranslator;
|
||||||
@ -36,7 +37,7 @@ import org.geysermc.geyser.translator.sound.SoundTranslator;
|
|||||||
public class FlintAndSteelInteractionTranslator implements BlockSoundInteractionTranslator {
|
public class FlintAndSteelInteractionTranslator implements BlockSoundInteractionTranslator {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void translate(GeyserSession session, Vector3f position, String identifier) {
|
public void translate(GeyserSession session, Vector3f position, BlockState state) {
|
||||||
LevelSoundEventPacket levelSoundEventPacket = new LevelSoundEventPacket();
|
LevelSoundEventPacket levelSoundEventPacket = new LevelSoundEventPacket();
|
||||||
levelSoundEventPacket.setPosition(position);
|
levelSoundEventPacket.setPosition(position);
|
||||||
levelSoundEventPacket.setBabySound(false);
|
levelSoundEventPacket.setBabySound(false);
|
||||||
|
@ -28,6 +28,7 @@ package org.geysermc.geyser.translator.sound.block;
|
|||||||
import org.cloudburstmc.math.vector.Vector3f;
|
import org.cloudburstmc.math.vector.Vector3f;
|
||||||
import org.cloudburstmc.protocol.bedrock.data.SoundEvent;
|
import org.cloudburstmc.protocol.bedrock.data.SoundEvent;
|
||||||
import org.cloudburstmc.protocol.bedrock.packet.LevelSoundEventPacket;
|
import org.cloudburstmc.protocol.bedrock.packet.LevelSoundEventPacket;
|
||||||
|
import org.geysermc.geyser.level.block.type.BlockState;
|
||||||
import org.geysermc.geyser.registry.BlockRegistries;
|
import org.geysermc.geyser.registry.BlockRegistries;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
||||||
@ -37,7 +38,8 @@ import org.geysermc.geyser.translator.sound.SoundTranslator;
|
|||||||
public class GrassPathInteractionTranslator implements BlockSoundInteractionTranslator {
|
public class GrassPathInteractionTranslator implements BlockSoundInteractionTranslator {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void translate(GeyserSession session, Vector3f position, String identifier) {
|
public void translate(GeyserSession session, Vector3f position, BlockState state) {
|
||||||
|
String identifier = state.toString();
|
||||||
LevelSoundEventPacket levelSoundEventPacket = new LevelSoundEventPacket();
|
LevelSoundEventPacket levelSoundEventPacket = new LevelSoundEventPacket();
|
||||||
levelSoundEventPacket.setPosition(position);
|
levelSoundEventPacket.setPosition(position);
|
||||||
levelSoundEventPacket.setBabySound(false);
|
levelSoundEventPacket.setBabySound(false);
|
||||||
|
@ -28,6 +28,7 @@ package org.geysermc.geyser.translator.sound.block;
|
|||||||
import org.cloudburstmc.math.vector.Vector3f;
|
import org.cloudburstmc.math.vector.Vector3f;
|
||||||
import org.cloudburstmc.protocol.bedrock.data.SoundEvent;
|
import org.cloudburstmc.protocol.bedrock.data.SoundEvent;
|
||||||
import org.cloudburstmc.protocol.bedrock.packet.LevelSoundEventPacket;
|
import org.cloudburstmc.protocol.bedrock.packet.LevelSoundEventPacket;
|
||||||
|
import org.geysermc.geyser.level.block.type.BlockState;
|
||||||
import org.geysermc.geyser.registry.BlockRegistries;
|
import org.geysermc.geyser.registry.BlockRegistries;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
||||||
@ -37,7 +38,8 @@ import org.geysermc.geyser.translator.sound.SoundTranslator;
|
|||||||
public class HoeInteractionTranslator implements BlockSoundInteractionTranslator {
|
public class HoeInteractionTranslator implements BlockSoundInteractionTranslator {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void translate(GeyserSession session, Vector3f position, String identifier) {
|
public void translate(GeyserSession session, Vector3f position, BlockState state) {
|
||||||
|
String identifier = state.toString();
|
||||||
LevelSoundEventPacket levelSoundEventPacket = new LevelSoundEventPacket();
|
LevelSoundEventPacket levelSoundEventPacket = new LevelSoundEventPacket();
|
||||||
levelSoundEventPacket.setPosition(position);
|
levelSoundEventPacket.setPosition(position);
|
||||||
levelSoundEventPacket.setBabySound(false);
|
levelSoundEventPacket.setBabySound(false);
|
||||||
|
@ -28,6 +28,7 @@ package org.geysermc.geyser.translator.sound.block;
|
|||||||
import org.cloudburstmc.math.vector.Vector3f;
|
import org.cloudburstmc.math.vector.Vector3f;
|
||||||
import org.cloudburstmc.protocol.bedrock.data.LevelEvent;
|
import org.cloudburstmc.protocol.bedrock.data.LevelEvent;
|
||||||
import org.cloudburstmc.protocol.bedrock.packet.LevelEventPacket;
|
import org.cloudburstmc.protocol.bedrock.packet.LevelEventPacket;
|
||||||
|
import org.geysermc.geyser.level.block.type.BlockState;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
||||||
import org.geysermc.geyser.translator.sound.SoundTranslator;
|
import org.geysermc.geyser.translator.sound.SoundTranslator;
|
||||||
@ -36,7 +37,8 @@ import org.geysermc.geyser.translator.sound.SoundTranslator;
|
|||||||
public class LeverSoundInteractionTranslator implements BlockSoundInteractionTranslator {
|
public class LeverSoundInteractionTranslator implements BlockSoundInteractionTranslator {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void translate(GeyserSession session, Vector3f position, String identifier) {
|
public void translate(GeyserSession session, Vector3f position, BlockState state) {
|
||||||
|
String identifier = state.toString();
|
||||||
boolean powered = identifier.contains("powered=true");
|
boolean powered = identifier.contains("powered=true");
|
||||||
LevelEventPacket levelEventPacket = new LevelEventPacket();
|
LevelEventPacket levelEventPacket = new LevelEventPacket();
|
||||||
levelEventPacket.setPosition(position);
|
levelEventPacket.setPosition(position);
|
||||||
|
@ -27,21 +27,42 @@ package org.geysermc.geyser.translator.sound.block;
|
|||||||
|
|
||||||
import org.cloudburstmc.math.vector.Vector3f;
|
import org.cloudburstmc.math.vector.Vector3f;
|
||||||
import org.cloudburstmc.protocol.bedrock.data.LevelEvent;
|
import org.cloudburstmc.protocol.bedrock.data.LevelEvent;
|
||||||
|
import org.cloudburstmc.protocol.bedrock.data.SoundEvent;
|
||||||
import org.cloudburstmc.protocol.bedrock.packet.LevelEventPacket;
|
import org.cloudburstmc.protocol.bedrock.packet.LevelEventPacket;
|
||||||
|
import org.cloudburstmc.protocol.bedrock.packet.LevelSoundEventPacket;
|
||||||
|
import org.geysermc.geyser.level.block.type.BlockState;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
||||||
import org.geysermc.geyser.translator.sound.SoundTranslator;
|
import org.geysermc.geyser.translator.sound.SoundTranslator;
|
||||||
|
|
||||||
@SoundTranslator(blocks = {"door", "fence_gate"})
|
@SoundTranslator(blocks = {"door", "fence_gate"})
|
||||||
public class DoorSoundInteractionTranslator implements BlockSoundInteractionTranslator {
|
public class OpenableSoundInteractionTranslator implements BlockSoundInteractionTranslator {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void translate(GeyserSession session, Vector3f position, String identifier) {
|
public void translate(GeyserSession session, Vector3f position, BlockState state) {
|
||||||
|
String identifier = state.toString();
|
||||||
if (identifier.contains("iron")) return;
|
if (identifier.contains("iron")) return;
|
||||||
LevelEventPacket levelEventPacket = new LevelEventPacket();
|
SoundEvent event = getSound(identifier.contains("open=true"), identifier);
|
||||||
levelEventPacket.setType(LevelEvent.SOUND_DOOR_OPEN);
|
LevelSoundEventPacket levelSoundEventPacket = new LevelSoundEventPacket();
|
||||||
levelEventPacket.setPosition(position);
|
levelSoundEventPacket.setPosition(position.add(0.5, 0.5, 0.5));
|
||||||
levelEventPacket.setData(0);
|
levelSoundEventPacket.setBabySound(false);
|
||||||
session.sendUpstreamPacket(levelEventPacket);
|
levelSoundEventPacket.setRelativeVolumeDisabled(false);
|
||||||
|
levelSoundEventPacket.setIdentifier(":");
|
||||||
|
levelSoundEventPacket.setSound(event);
|
||||||
|
levelSoundEventPacket.setExtraData(session.getBlockMappings().getBedrockBlock(state).getRuntimeId());
|
||||||
|
session.sendUpstreamPacket(levelSoundEventPacket);
|
||||||
|
}
|
||||||
|
|
||||||
|
private SoundEvent getSound(boolean open, String identifier) {
|
||||||
|
if (identifier.contains("_door")) {
|
||||||
|
return open ? SoundEvent.DOOR_OPEN : SoundEvent.DOOR_CLOSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (identifier.contains("_trapdoor")) {
|
||||||
|
return open ? SoundEvent.TRAPDOOR_OPEN : SoundEvent.TRAPDOOR_CLOSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fence Gate
|
||||||
|
return open ? SoundEvent.FENCE_GATE_OPEN : SoundEvent.FENCE_GATE_CLOSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -133,7 +133,7 @@ public final class SoundUtils {
|
|||||||
}
|
}
|
||||||
if (sound == null) {
|
if (sound == null) {
|
||||||
session.getGeyser().getLogger().debug("[Builtin] Sound for original '" + soundIdentifier + "' to mappings '" + soundMapping.getBedrock()
|
session.getGeyser().getLogger().debug("[Builtin] Sound for original '" + soundIdentifier + "' to mappings '" + soundMapping.getBedrock()
|
||||||
+ "' was not a playable level sound, or has yet to be mapped to an enum in SoundEvent.");
|
+ "' was not a playable level sound, or has yet to be mapped to an enum in SoundEvent.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -144,7 +144,7 @@ public final class SoundUtils {
|
|||||||
// Minecraft Wiki: 2^(x/12) = Java pitch where x is -12 to 12
|
// Minecraft Wiki: 2^(x/12) = Java pitch where x is -12 to 12
|
||||||
// Java sends the note value as above starting with -12 and ending at 12
|
// Java sends the note value as above starting with -12 and ending at 12
|
||||||
// Bedrock has a number for each type of note, then proceeds up the scale by adding to that number
|
// Bedrock has a number for each type of note, then proceeds up the scale by adding to that number
|
||||||
soundPacket.setExtraData(soundMapping.getExtraData() + (int)(Math.round((Math.log10(pitch) / Math.log10(2)) * 12)) + 12);
|
soundPacket.setExtraData(soundMapping.getExtraData() + (int) (Math.round((Math.log10(pitch) / Math.log10(2)) * 12)) + 12);
|
||||||
} else if (sound == SoundEvent.PLACE && soundMapping.getExtraData() == -1) {
|
} else if (sound == SoundEvent.PLACE && soundMapping.getExtraData() == -1) {
|
||||||
if (!soundMapping.getIdentifier().equals(":")) {
|
if (!soundMapping.getIdentifier().equals(":")) {
|
||||||
int javaId = BlockRegistries.JAVA_IDENTIFIER_TO_ID.get().getOrDefault(soundMapping.getIdentifier(), Block.JAVA_AIR_ID);
|
int javaId = BlockRegistries.JAVA_IDENTIFIER_TO_ID.get().getOrDefault(soundMapping.getIdentifier(), Block.JAVA_AIR_ID);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren