Temel Öğe Kullanımı
Öğeler bir :javadoc: ItemStack vasıtasıyla temsil edilir. `` ItemStack``, yığındaki öğenin miktarı, öğenin türü ve dayanıklılık gibi ilave veriler gibi bilgileri içeren bir envanterdir. Bir: javadoc: ‘Stack’in kendisi bir öğe olarak bir “Itemstack” ‘in grafik gösterimidir. Her zaman bir kopyasını alacağınıza ve `` Itemstack`` gerçek * olmadığına* dikkat edin ve eğer isterseniz tekrar bir envantere koyabilirsiniz.
Öğe Türünü Kontrol Etme
Checking the type of the item is very simple. You just need to call the ItemStack#type() method.
import org.spongepowered.api.item.ItemType;
import org.spongepowered.api.item.ItemTypes;
import org.spongepowered.api.item.inventory.ItemStack;
public boolean isStick(ItemStack stack) {
ItemType type = stack.type();
return type.equals(ItemTypes.STICK.get());
}
Ne kadar basit olduğunu görüyor musunuz? Çubuklar yığınlanabildiğinden kaç tane var olduğunu da öğrenebiliriz.
Getting the number of items in an ItemStack
is relatively easy. The ItemStack#quantity() method will
handle this for us.
ItemStack Verilerini Değiştirme
Dayanıklılık veya bir öğenin geçmişi gibi verileri düzenlemek, yalnızca tuşları kullanarak gerçekleştirilir. Sadece değiştirilmesi gereken anahtarı belirtmeniz yeterlidir:
import org.spongepowered.api.data.key.Keys;
public void setUnbreakable(ItemStack stack) {
stack.offer(Keys.UNBREAKABLE, true);
}
Burada şunu belirttik: javadoc: Keys # UNBREAKABLE anahtarı değiştirmek istediğimiz anahtardır. Daha sonra öğenin hiçbir zaman kopmayacağını ima etmek için değerini “true” olarak ayarlarız. Bunların tamamı, değişiklikleri “ItemStack” ‘e geri döndürmek için `` ItemStack`` yöntemiyle `` offer () `` paketinde bulunur.
Different keys will require different values based on their job. For example, to change the lore of an item, one would
need to specify a List
of Component rather than a boolean or other value. It is also important to perform
checks to see if the key can actually apply to the item. For example, some items might not have durability or may
already have lore applied to the item.
import net.kyori.adventure.text.Component;
import java.util.List;
public void setLore(ItemStack stack, List<Component> itemLore) {
if (stack.get(Keys.ITEM_LORE).isPresent()) {
stack.offer(Keys.ITEM_LORE, itemLore);
}
}
Not
Almost all API methods that return an ItemStack
only return a copy of it, so modifying it does not have any
impact on the real stack (e.g. in an inventory). You have to explicitly set it for your changes to persist.
Öğe özellikleri
Certain items may hold specific properties. For example, certain items can mine specific blocks, such as a diamond pickaxe to obsidian. Properties are used for determining if an item can cause an action without actually checking up the type of the item. We can check if an item can mine obsidian by using the Keys#CAN_HARVEST of that item.
import org.spongepowered.api.block.BlockTypes;
public boolean canMineObsidian(ItemStack stack) {
List<BlockType> canHarvest =
stack.get(Keys.CAN_HARVEST).orElse(Collections.emptyList());
return canHarvest.contains(BlockTypes.OBSIDIAN.get());
}
This code will check to see if the item has a assigned key of CAN_HARVEST
, such as a pickaxe,
if it doesn’t then it uses an empty array. It will then return if obsidian is contained within the list of blocks the
item can harvest. This is useful in the event that a mod or a Minecraft update adds a new tool with the capabilities of
mining obsidian.
ItemStacks’leri karşılaştırma
`` ItemStack`` sınıfı, iki `` ItemStack`` s karşılaştırması için düzgün bir yöntem içerir. Var olan bir `` ItemStack`` öğesinin: javadoc: ItemStack # equalTo (ItemStack) yöntemini kullanarak, iki `` ItemStack`` öğesinin ‘eşit’ olup olmadığını görebiliriz. Diğer bir deyişle, aynı yığın boyutunu paylaşır: javadoc: ‘Öğe Türü’ ve veri. Buna bir örnek aşağıda gösterilmiştir:
public boolean isEqual(ItemStack stack1, ItemStack stack2) {
return stack1.equalTo(stack2);
}