001package net.tnemc.item.paper.platform.impl.modern; 002/* 003 * The New Item Library 004 * Copyright (C) 2022 - 2025 Daniel "creatorfromhell" Vidmar 005 * 006 * This program is free software; you can redistribute it and/or 007 * modify it under the terms of the GNU Lesser General Public 008 * License as published by the Free Software Foundation; either 009 * version 3 of the License, or (at your option) any later version. 010 * 011 * This program is distributed in the hope that it will be useful, 012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 014 * Lesser General Public License for more details. 015 * 016 * You should have received a copy of the GNU Lesser General Public License 017 * along with this program; if not, write to the Free Software Foundation, 018 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 019 */ 020 021import io.papermc.paper.datacomponent.DataComponentTypes; 022import net.kyori.adventure.key.Key; 023import net.tnemc.item.component.impl.ItemModelComponent; 024import net.tnemc.item.paper.PaperItemStack; 025import net.tnemc.item.providers.VersionUtil; 026import org.bukkit.inventory.ItemStack; 027 028import java.util.Optional; 029 030/** 031 * PaperOldItemModelComponent 032 * 033 * @author creatorfromhell 034 * @since 0.2.0.0 035 */ 036public class PaperItemModelComponent extends ItemModelComponent<PaperItemStack, ItemStack> { 037 038 public PaperItemModelComponent() { 039 040 } 041 042 public PaperItemModelComponent(final String model) { 043 044 super(model); 045 } 046 047 /** 048 * @param version the version being used when this check is called. 049 * 050 * @return true if this check is enabled for the version, otherwise false 051 * @since 0.2.0.0 052 */ 053 @Override 054 public boolean enabled(final String version) { 055 056 return VersionUtil.isOneTwentyOneTwo(version); 057 } 058 059 /** 060 * @param serialized the serialized item stack to use 061 * @param item the item that we should use to apply this applicator to. 062 * 063 * @return the updated item. 064 * @since 0.2.0.0 065 */ 066 @Override 067 public ItemStack apply(final PaperItemStack serialized, final ItemStack item) { 068 069 final Optional<PaperItemModelComponent> componentOptional = serialized.component(identifier()); 070 if(componentOptional.isEmpty()) { 071 return item; 072 } 073 074 item.setData(DataComponentTypes.ITEM_MODEL, Key.key(this.model)); 075 return item; 076 } 077 078 /** 079 * @param item the item that we should use to deserialize. 080 * @param serialized the serialized item stack we should use to apply this deserializer to 081 * 082 * @return the updated serialized item. 083 * @since 0.2.0.0 084 */ 085 @Override 086 public PaperItemStack serialize(final ItemStack item, final PaperItemStack serialized) { 087 088 final Key key = item.getData(DataComponentTypes.ITEM_MODEL); 089 if(key == null) { 090 return serialized; 091 } 092 093 this.model = key.asString(); 094 095 serialized.applyComponent(this); 096 return serialized; 097 } 098 099 /** 100 * Checks if this component applies to the specified item. 101 * 102 * @param item The item to check against. 103 * 104 * @return True if this component applies to the item, false otherwise. 105 * @since 0.2.0.0 106 */ 107 @Override 108 public boolean appliesTo(final ItemStack item) { 109 110 return true; 111 } 112}