package net.minecraft.commands.synchronization.brigadier; import com.google.gson.JsonObject; import com.mojang.brigadier.arguments.DoubleArgumentType; import java.util.Objects; import net.minecraft.commands.CommandBuildContext; import net.minecraft.commands.synchronization.ArgumentTypeInfo; import net.minecraft.commands.synchronization.ArgumentUtils; import net.minecraft.network.FriendlyByteBuf; public class DoubleArgumentInfo implements ArgumentTypeInfo { public void serializeToNetwork(final DoubleArgumentInfo.Template template, final FriendlyByteBuf out) { boolean hasMin = template.min != -Double.MAX_VALUE; boolean hasMax = template.max != Double.MAX_VALUE; out.writeByte(ArgumentUtils.createNumberFlags(hasMin, hasMax)); if (hasMin) { out.writeDouble(template.min); } if (hasMax) { out.writeDouble(template.max); } } public DoubleArgumentInfo.Template deserializeFromNetwork(final FriendlyByteBuf in) { byte flags = in.readByte(); double min = ArgumentUtils.numberHasMin(flags) ? in.readDouble() : -Double.MAX_VALUE; double max = ArgumentUtils.numberHasMax(flags) ? in.readDouble() : Double.MAX_VALUE; return new DoubleArgumentInfo.Template(min, max); } public void serializeToJson(final DoubleArgumentInfo.Template template, final JsonObject out) { if (template.min != -Double.MAX_VALUE) { out.addProperty("min", template.min); } if (template.max != Double.MAX_VALUE) { out.addProperty("max", template.max); } } public DoubleArgumentInfo.Template unpack(final DoubleArgumentType argument) { return new DoubleArgumentInfo.Template(argument.getMinimum(), argument.getMaximum()); } public final class Template implements ArgumentTypeInfo.Template { private final double min; private final double max; private Template(final double min, final double max) { Objects.requireNonNull(DoubleArgumentInfo.this); super(); this.min = min; this.max = max; } public DoubleArgumentType instantiate(final CommandBuildContext context) { return DoubleArgumentType.doubleArg(this.min, this.max); } @Override public ArgumentTypeInfo type() { return DoubleArgumentInfo.this; } } }