Geyser/core/src/main/java/org/geysermc/geyser/registry/type/ItemMapping.java

106 lines
3.2 KiB
Java

/*
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
*
* 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.registry.type;
import it.unimi.dsi.fastutil.Pair;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Value;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.cloudburstmc.protocol.bedrock.data.definitions.BlockDefinition;
import org.cloudburstmc.protocol.bedrock.data.definitions.ItemDefinition;
import org.geysermc.geyser.api.item.custom.CustomItemOptions;
import org.geysermc.geyser.item.Items;
import org.geysermc.geyser.item.type.Item;
import java.util.Collections;
import java.util.List;
@Value
@Builder
@EqualsAndHashCode
public class ItemMapping {
public static final ItemMapping AIR = new ItemMapping(
"minecraft:air",
ItemDefinition.AIR,
0,
null, // Air is never sent in full over the network for this to serialize.
null,
null,
null,
Collections.emptyList(),
Items.AIR
);
String bedrockIdentifier;
ItemDefinition bedrockDefinition;
int bedrockData;
/**
* The Bedrock block runtime ID to render this item with. The specific state *does* matter in how this item is rendered and used as a crafting ingredient.
* Required since 1.16.220.
*/
BlockDefinition bedrockBlockDefinition;
String toolType;
String toolTier;
String translationString;
@NonNull
List<Pair<CustomItemOptions, ItemDefinition>> customItemOptions;
@NonNull
Item javaItem;
/**
* Gets if this item is a block.
*
* @return if this item is a block
*/
public boolean isBlock() {
return this.bedrockBlockDefinition != null;
}
/**
* Gets if this item has a translation string present.
*
* @return if this item has a translation string present
*/
public boolean hasTranslation() {
return this.translationString != null;
}
/**
* Gets if this item is a tool.
*
* @return if this item is a tool
*/
public boolean isTool() {
return this.toolType != null;
}
}