Geyser/core/src/main/java/org/geysermc/geyser/translator/level/block/entity/CampfireBlockEntityTranslat...

61 lines
2.7 KiB
Java
Raw Normal View History

2019-12-31 17:53:42 +00:00
/*
2022-01-01 19:03:05 +00:00
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
2019-12-31 17:53:42 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* @author GeyserMC
* @link https://github.com/GeyserMC/Geyser
*/
package org.geysermc.geyser.translator.level.block.entity;
2019-12-31 17:53:42 +00:00
2021-11-14 17:06:07 +00:00
import com.github.steveice10.mc.protocol.data.game.level.block.BlockEntityType;
2019-12-31 17:53:42 +00:00
import com.github.steveice10.opennbt.tag.builtin.CompoundTag;
import com.github.steveice10.opennbt.tag.builtin.ListTag;
import com.github.steveice10.opennbt.tag.builtin.Tag;
2020-07-05 20:58:43 +00:00
import com.nukkitx.nbt.NbtMap;
import com.nukkitx.nbt.NbtMapBuilder;
2022-03-20 02:55:29 +00:00
import org.geysermc.geyser.network.GameProtocol;
import org.geysermc.geyser.registry.Registries;
import org.geysermc.geyser.registry.type.ItemMapping;
2019-12-31 17:53:42 +00:00
2021-11-14 17:06:07 +00:00
@BlockEntity(type = BlockEntityType.CAMPFIRE)
2019-12-31 17:53:42 +00:00
public class CampfireBlockEntityTranslator extends BlockEntityTranslator {
@Override
public void translateTag(NbtMapBuilder builder, CompoundTag tag, int blockState) {
2019-12-31 17:53:42 +00:00
ListTag items = tag.get("Items");
int i = 1;
for (Tag itemTag : items.getValue()) {
builder.put("Item" + i, getItem((CompoundTag) itemTag));
2019-12-31 17:53:42 +00:00
i++;
}
}
2020-07-05 20:58:43 +00:00
protected NbtMap getItem(CompoundTag tag) {
// TODO: Version independent mappings
2022-03-20 02:55:29 +00:00
ItemMapping mapping = Registries.ITEMS.forVersion(GameProtocol.DEFAULT_BEDROCK_CODEC.getProtocolVersion()).getMapping((String) tag.get("id").getValue());
2020-07-05 20:58:43 +00:00
NbtMapBuilder tagBuilder = NbtMap.builder()
.putString("Name", mapping.getBedrockIdentifier())
2020-07-05 20:58:43 +00:00
.putByte("Count", (byte) tag.get("Count").getValue())
.putShort("Damage", (short) mapping.getBedrockData());
2020-07-05 20:58:43 +00:00
tagBuilder.put("tag", NbtMap.builder().build());
return tagBuilder.build();
2019-12-31 17:53:42 +00:00
}
}