/* * Minecraft Forge * Copyright (c) 2016-2018. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation version 2.1 * of the License. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ package net.minecraftforge.registries; import com.google.common.reflect.TypeToken; import net.minecraft.util.ResourceLocation; import javax.annotation.Nullable; public interface IForgeRegistryEntry { /** * Sets a unique name for this Item. This should be used for uniquely identify the instance of the Item. * This is the valid replacement for the atrocious 'getUnlocalizedName().substring(6)' stuff that everyone does. * Unlocalized names have NOTHING to do with unique identifiers. As demonstrated by vanilla blocks and items. * * The supplied name will be prefixed with the currently active mod's modId. * If the supplied name already has a prefix that is different, it will be used and a warning will be logged. * * If a name already exists, or this Item is already registered in a registry, then an IllegalStateException is thrown. * * Returns 'this' to allow for chaining. * * @param name Unique registry name * @return This instance * / V setRegistryName(ResourceLocation name); /** * A unique identifier for this entry, if this entry is registered already it will return it's official registry name. * Otherwise it will return the name set in setRegistryName(). * If neither are valid null is returned. * * @return Unique identifier or null. * / @Nullable ResourceLocation getRegistryName(); Class getRegistryType(); // Default implementation, modders who make extra items SHOULD extend this instead of Object. // So, all fields in interfaces are forced static, so even with Java8 people must still extend this. @SuppressWarnings({ "serial", "unchecked" }) public static class Impl> implements IForgeRegistryEntry { private TypeToken token = new TypeToken(getClass()){}; public final IRegistryDelegate delegate = new RegistryDelegate((T)this, (Class)token.getRawType()); private ResourceLocation registryName = null; public final T setRegistryName(String name) { if (getRegistryName() != null) throw new IllegalStateException("Attempted to set registry name with existing registry name! New: " + name + " Old: " + getRegistryName()); this.registryName = GameData.checkPrefix(name); return (T)this; } //Helper functions @Override public final T setRegistryName(ResourceLocation name){ return setRegistryName(name.toString()); } public final T setRegistryName(String modID, String name){ return setRegistryName(modID + ":" + name); } @Override @Nullable public final ResourceLocation getRegistryName() { if (delegate.name() != null) return delegate.name(); return registryName != null ? registryName : null; } @Override public final Class getRegistryType() { return (Class) token.getRawType(); }; } */ }