ViaVersion/common/src/main/java/com/viaversion/viaversion/protocols/protocol1_13to1_12_2/blockconnections/AbstractStempConnectionHand...

70 lines
2.9 KiB
Java
Raw Normal View History

/*
* This file is part of ViaVersion - https://github.com/ViaVersion/ViaVersion
2024-01-01 12:39:45 +01:00
* 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 <http://www.gnu.org/licenses/>.
*/
package com.viaversion.viaversion.protocols.protocol1_13to1_12_2.blockconnections;
2018-11-17 15:45:37 +01:00
2021-04-26 21:35:29 +02:00
import com.viaversion.viaversion.api.connection.UserConnection;
import com.viaversion.viaversion.api.minecraft.BlockFace;
import com.viaversion.viaversion.api.minecraft.Position;
import it.unimi.dsi.fastutil.ints.IntOpenHashSet;
import it.unimi.dsi.fastutil.ints.IntSet;
import java.util.EnumMap;
import java.util.Locale;
import java.util.Map;
2018-11-17 15:45:37 +01:00
public abstract class AbstractStempConnectionHandler extends ConnectionHandler {
2018-11-17 15:45:37 +01:00
private static final BlockFace[] BLOCK_FACES = {BlockFace.EAST, BlockFace.NORTH, BlockFace.SOUTH, BlockFace.WEST};
private final IntSet blockId = new IntOpenHashSet();
private final int baseStateId;
2018-11-17 15:45:37 +01:00
private final Map<BlockFace, Integer> stemps = new EnumMap<>(BlockFace.class);
2018-11-17 15:45:37 +01:00
protected AbstractStempConnectionHandler(String baseStateId) {
2018-11-17 15:45:37 +01:00
this.baseStateId = ConnectionData.getId(baseStateId);
}
2018-11-17 15:45:37 +01:00
2024-02-10 17:58:54 +01:00
ConnectionData.ConnectorInitAction getInitAction(final String blockId, final String toKey) {
final AbstractStempConnectionHandler handler = this;
return blockData -> {
if (blockData.getSavedBlockStateId() == baseStateId || blockId.equals(blockData.getMinecraftKey())) {
if (blockData.getSavedBlockStateId() != baseStateId) {
handler.blockId.add(blockData.getSavedBlockStateId());
2018-11-17 15:45:37 +01:00
}
ConnectionData.connectionHandlerMap.put(blockData.getSavedBlockStateId(), handler);
}
if (blockData.getMinecraftKey().equals(toKey)) {
String facing = blockData.getValue("facing").toUpperCase(Locale.ROOT);
stemps.put(BlockFace.valueOf(facing), blockData.getSavedBlockStateId());
2018-11-17 15:45:37 +01:00
}
};
2018-11-17 15:45:37 +01:00
}
@Override
public int connect(UserConnection user, Position position, int blockState) {
if (blockState != baseStateId) {
return blockState;
}
for (BlockFace blockFace : BLOCK_FACES) {
if (blockId.contains(getBlockData(user, position.getRelative(blockFace)))) {
return stemps.get(blockFace);
}
}
return baseStateId;
}
}