ForgePatch/src/main/java/net/minecraftforge/common/extensions/IForgeTagBuilder.java

110 lines
3.7 KiB
Java
Raw Normal View History

/*
* Minecraft Forge
* Copyright (c) 2016-2019.
*
* 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.common.extensions;
2020-06-19 14:58:45 +00:00
import net.minecraft.data.TagsProvider;
import net.minecraft.tags.ITag;
public interface IForgeTagBuilder<T>
{
2020-06-19 14:58:45 +00:00
default TagsProvider.Builder<T> getBuilder() {
return (TagsProvider.Builder<T>) this;
}
default TagsProvider.Builder<T> addTags(ITag.INamedTag<T>... values) {
TagsProvider.Builder<T> builder = getBuilder();
for (ITag.INamedTag<T> value : values) {
builder.func_240531_a_(value);
}
return builder;
}
/*default Tag.Builder<T> addOptional(final TagCollection<T> collection, final ResourceLocation... locations)
{
2020-04-01 18:34:36 +00:00
return addOptional(collection, Arrays.asList(locations));
}
2020-04-01 18:34:36 +00:00
default Tag.Builder<T> addOptional(final TagCollection<T> collection, final Collection<ResourceLocation> locations)
{
2020-04-01 18:34:36 +00:00
return addOptional(collection.getEntryLookup(), locations);
}
2020-04-01 18:34:36 +00:00
@Deprecated //Use the TagCollection version
default Tag.Builder<T> addOptional(final Function<ResourceLocation, Optional<T>> entryLookup, final Collection<ResourceLocation> locations)
{
2020-04-01 18:34:36 +00:00
return ((Tag.Builder<T>)this).add(new IOptionalTagEntry<T>() {
@Override
public void populate(Collection<T> itemsIn)
{
locations.stream().map(entryLookup).forEach(e -> e.ifPresent(itemsIn::add));
}
2020-04-01 18:34:36 +00:00
@Override
public void serialize(JsonArray array, Function<T, ResourceLocation> getNameForObject)
{
locations.stream().map(ResourceLocation::toString).forEach(array::add);
}
});
}
2020-04-01 18:34:36 +00:00
default Tag.Builder<T> addOptionalTag(final TagCollection<T> collection, @SuppressWarnings("unchecked") final Tag<T>... tags)
{
2020-04-01 18:34:36 +00:00
for (Tag<T> tag : tags)
addOptionalTag(tag.getId());
return ((Tag.Builder<T>)this);
}
2020-04-01 18:34:36 +00:00
default Tag.Builder<T> addOptionalTag(final ResourceLocation... tags)
{
2020-04-01 18:34:36 +00:00
for (ResourceLocation rl : tags)
addOptionalTag(rl);
return ((Tag.Builder<T>)this);
}
2020-04-01 18:34:36 +00:00
default Tag.Builder<T> addOptionalTag(ResourceLocation tag)
{
2020-04-01 18:34:36 +00:00
class TagTarget<U> extends Tag.TagEntry<U> implements IOptionalTagEntry<U>
{
2020-04-01 18:34:36 +00:00
private Tag<U> resolvedTag = null;
protected TagTarget(ResourceLocation referent) {
super(referent);
}
@Override
public boolean resolve(@Nonnull Function<ResourceLocation, Tag<U>> resolver)
{
if (this.resolvedTag == null)
this.resolvedTag = resolver.apply(this.getSerializedId());
return true; // never fail if resolver returns null
}
@Override
public void populate(@Nonnull Collection<U> items)
{
if (this.resolvedTag != null)
items.addAll(this.resolvedTag.getAllElements());
}
};
return ((Tag.Builder<T>)this).add(new TagTarget<>(tag));
2020-06-19 14:58:45 +00:00
}*/
}