96 lines
3.3 KiB
Java
96 lines
3.3 KiB
Java
package org.bukkit.craftbukkit.packs;
|
|
|
|
import java.util.Set;
|
|
import java.util.stream.Collectors;
|
|
import net.minecraft.server.packs.repository.PackSource;
|
|
import net.minecraft.server.packs.repository.ResourcePackLoader;
|
|
import org.bukkit.Bukkit;
|
|
import org.bukkit.FeatureFlag;
|
|
import org.bukkit.NamespacedKey;
|
|
import org.bukkit.craftbukkit.CraftFeatureFlag;
|
|
import org.bukkit.craftbukkit.CraftServer;
|
|
import org.bukkit.craftbukkit.util.CraftChatMessage;
|
|
import org.bukkit.packs.DataPack;
|
|
|
|
public class CraftDataPack implements DataPack {
|
|
|
|
private final ResourcePackLoader handle;
|
|
|
|
public CraftDataPack(ResourcePackLoader handler) {
|
|
this.handle = handler;
|
|
}
|
|
|
|
public ResourcePackLoader getHandle() {
|
|
return this.handle;
|
|
}
|
|
|
|
public String getRawId() {
|
|
return getHandle().getId();
|
|
}
|
|
|
|
@Override
|
|
public String getTitle() {
|
|
return CraftChatMessage.fromComponent(this.getHandle().getTitle());
|
|
}
|
|
|
|
@Override
|
|
public String getDescription() {
|
|
return CraftChatMessage.fromComponent(this.getHandle().getDescription());
|
|
}
|
|
|
|
@Override
|
|
public int getPackFormat() {
|
|
ResourcePackLoader.a info = ResourcePackLoader.readPackInfo(this.getRawId(), this.getHandle().resources);
|
|
return (info == null) ? 0 : info.format();
|
|
}
|
|
|
|
@Override
|
|
public boolean isRequired() {
|
|
return getHandle().isRequired();
|
|
}
|
|
|
|
@Override
|
|
public Compatibility getCompatibility() {
|
|
return switch (this.getHandle().getCompatibility()) {
|
|
case COMPATIBLE -> Compatibility.COMPATIBLE;
|
|
case TOO_NEW -> Compatibility.NEW;
|
|
case TOO_OLD -> Compatibility.OLD;
|
|
};
|
|
}
|
|
|
|
@Override
|
|
public boolean isEnabled() {
|
|
return ((CraftServer) Bukkit.getServer()).getServer().getPackRepository().getSelectedIds().contains(getRawId());
|
|
}
|
|
|
|
@Override
|
|
public DataPack.Source getSource() {
|
|
if (this.getHandle().getPackSource() == PackSource.BUILT_IN) {
|
|
return Source.BUILT_IN;
|
|
} else if (this.getHandle().getPackSource() == PackSource.FEATURE) {
|
|
return Source.FEATURE;
|
|
} else if (this.getHandle().getPackSource() == PackSource.WORLD) {
|
|
return Source.WORLD;
|
|
} else if (this.getHandle().getPackSource() == PackSource.SERVER) {
|
|
return Source.SERVER;
|
|
}
|
|
return Source.DEFAULT;
|
|
}
|
|
|
|
@Override
|
|
public Set<FeatureFlag> getRequestedFeatures() {
|
|
return CraftFeatureFlag.getFromNMS(this.getHandle().getRequestedFeatures()).stream().map(FeatureFlag.class::cast).collect(Collectors.toUnmodifiableSet());
|
|
}
|
|
|
|
@Override
|
|
public NamespacedKey getKey() {
|
|
return NamespacedKey.fromString(getRawId());
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
String requestedFeatures = getRequestedFeatures().stream().map(featureFlag -> featureFlag.getKey().toString()).collect(Collectors.joining(","));
|
|
return "CraftDataPack{rawId=" + this.getRawId() + ",id=" + this.getKey() + ",title=" + this.getTitle() + ",description=" + this.getDescription() + ",packformat=" + this.getPackFormat() + ",compatibility=" + this.getCompatibility() + ",source=" + this.getSource() + ",enabled=" + this.isEnabled() + ",requestedFeatures=[" + requestedFeatures + "]}";
|
|
}
|
|
}
|