minecraft-src/net/minecraft/world/item/EitherHolder.java
2025-07-04 03:45:38 +03:00

49 lines
1.8 KiB
Java

package net.minecraft.world.item;
import com.mojang.datafixers.util.Either;
import com.mojang.serialization.Codec;
import com.mojang.serialization.DataResult;
import java.util.Optional;
import java.util.function.Function;
import net.minecraft.core.Holder;
import net.minecraft.core.HolderLookup;
import net.minecraft.core.Registry;
import net.minecraft.network.RegistryFriendlyByteBuf;
import net.minecraft.network.codec.ByteBufCodecs;
import net.minecraft.network.codec.StreamCodec;
import net.minecraft.resources.ResourceKey;
public record EitherHolder<T>(Either<Holder<T>, ResourceKey<T>> contents) {
public EitherHolder(Holder<T> holder) {
this(Either.left(holder));
}
public EitherHolder(ResourceKey<T> key) {
this(Either.right(key));
}
public static <T> Codec<EitherHolder<T>> codec(ResourceKey<Registry<T>> registryKey, Codec<Holder<T>> codec) {
return Codec.either(
codec, ResourceKey.codec(registryKey).comapFlatMap(resourceKey -> DataResult.error(() -> "Cannot parse as key without registry"), Function.identity())
)
.xmap(EitherHolder::new, EitherHolder::contents);
}
public static <T> StreamCodec<RegistryFriendlyByteBuf, EitherHolder<T>> streamCodec(
ResourceKey<Registry<T>> registryKey, StreamCodec<RegistryFriendlyByteBuf, Holder<T>> streamCodec
) {
return StreamCodec.composite(ByteBufCodecs.either(streamCodec, ResourceKey.streamCodec(registryKey)), EitherHolder::contents, EitherHolder::new);
}
public Optional<T> unwrap(Registry<T> registry) {
return this.contents.map(holder -> Optional.of(holder.value()), registry::getOptional);
}
public Optional<Holder<T>> unwrap(HolderLookup.Provider registries) {
return this.contents.map(Optional::of, resourceKey -> registries.get(resourceKey).map(reference -> reference));
}
public Optional<ResourceKey<T>> key() {
return this.contents.map(Holder::unwrapKey, Optional::of);
}
}