HyCodeYourTale
classpublicPriority 3

PrefabPatternGeneratorJsonLoader

com.hypixel.hytale.server.worldgen.loader.prefab.PrefabPatternGeneratorJsonLoader

extends JsonLoader

2

Methods

2

Public Methods

1

Fields

1

Constructors

Constructors

public
PrefabPatternGeneratorJsonLoader(SeedString<SeedStringResource> seed, Path dataFolder, JsonElement json, FileLoadingContext context)

Methods

Public Methods (2)

public
PrefabPatternGenerator load()
@Nonnull
publicstatic
PrefabRotation[] loadRotations(JsonElement element)
@Nullable

Fields

Private/Package Fields (1)

privateFileLoadingContext context

Inheritance

Parent
Current
Interface
Child

Use mouse wheel to zoom, drag to pan. Click nodes to navigate.

Related Classes

Source Code

package com.hypixel.hytale.server.worldgen.loader.prefab;

import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.hypixel.hytale.procedurallib.condition.ConstantBlockFluidCondition;
import com.hypixel.hytale.procedurallib.condition.DefaultCoordinateRndCondition;
import com.hypixel.hytale.procedurallib.condition.HeightCondition;
import com.hypixel.hytale.procedurallib.condition.IBlockFluidCondition;
import com.hypixel.hytale.procedurallib.condition.ICoordinateCondition;
import com.hypixel.hytale.procedurallib.condition.ICoordinateRndCondition;
import com.hypixel.hytale.procedurallib.condition.IHeightThresholdInterpreter;
import com.hypixel.hytale.procedurallib.json.DoubleRangeJsonLoader;
import com.hypixel.hytale.procedurallib.json.HeightThresholdInterpreterJsonLoader;
import com.hypixel.hytale.procedurallib.json.JsonLoader;
import com.hypixel.hytale.procedurallib.json.NoiseMaskConditionJsonLoader;
import com.hypixel.hytale.procedurallib.json.PointGeneratorJsonLoader;
import com.hypixel.hytale.procedurallib.json.SeedString;
import com.hypixel.hytale.procedurallib.logic.point.IPointGenerator;
import com.hypixel.hytale.server.core.prefab.PrefabRotation;
import com.hypixel.hytale.server.worldgen.SeedStringResource;
import com.hypixel.hytale.server.worldgen.loader.context.FileLoadingContext;
import com.hypixel.hytale.server.worldgen.loader.util.ResolvedBlockArrayJsonLoader;
import com.hypixel.hytale.server.worldgen.prefab.PrefabCategory;
import com.hypixel.hytale.server.worldgen.prefab.PrefabPatternGenerator;
import com.hypixel.hytale.server.worldgen.util.LogUtil;
import com.hypixel.hytale.server.worldgen.util.ResolvedBlockArray;
import com.hypixel.hytale.server.worldgen.util.condition.BlockMaskCondition;
import com.hypixel.hytale.server.worldgen.util.condition.HashSetBlockFluidCondition;
import com.hypixel.hytale.server.worldgen.util.function.ConstantCoordinateDoubleSupplier;
import com.hypixel.hytale.server.worldgen.util.function.ICoordinateDoubleSupplier;
import com.hypixel.hytale.server.worldgen.util.function.RandomCoordinateDoubleSupplier;
import it.unimi.dsi.fastutil.longs.LongSet;
import java.nio.file.Path;
import java.util.Arrays;
import java.util.logging.Level;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;

public class PrefabPatternGeneratorJsonLoader extends JsonLoader<SeedStringResource, PrefabPatternGenerator> {
   private final FileLoadingContext context;

   public PrefabPatternGeneratorJsonLoader(@Nonnull SeedString<SeedStringResource> seed, Path dataFolder, JsonElement json, FileLoadingContext context) {
      super(seed.append(".PrefabPatternGenerator"), dataFolder, json);
      this.context = context;
   }

   @Nonnull
   public PrefabPatternGenerator load() {
      IHeightThresholdInterpreter heightThresholds = this.loadHeightThresholds();
      return new PrefabPatternGenerator(
         this.seed.hashCode(),
         this.loadCategory(),
         this.loadPattern(),
         this.loadHeightCondition(heightThresholds),
         heightThresholds,
         this.loadMask(),
         this.loadMapCondition(),
         this.loadParent(),
         this.loadRotations(),
         this.loadDisplacement(),
         this.loadFitHeightmap(),
         this.loadOnWater(),
         this.loadDeepSearch(heightThresholds),
         this.loadSubmerge(),
         this.loadMaxSize(),
         this.loadExclusionRadius()
      );
   }

   @Nullable
   protected IPointGenerator loadPattern() {
      if (!this.has("GridGenerator")) {
         throw new IllegalArgumentException("Could not find point generator to place prefabs at! Keyword: GridGenerator");
      } else {
         return new PointGeneratorJsonLoader<>(this.seed, this.dataFolder, this.get("GridGenerator")).load();
      }
   }

   protected PrefabCategory loadCategory() {
      String category = this.mustGetString("Category", "");
      if (category.isEmpty()) {
         return PrefabCategory.NONE;
      } else if (!this.context.getPrefabCategories().contains(category)) {
         LogUtil.getLogger().at(Level.WARNING).log("Could not find prefab category: %s, defaulting to None", category);
         return PrefabCategory.NONE;
      } else {
         return this.context.getPrefabCategories().get(category);
      }
   }

   @Nonnull
   protected IBlockFluidCondition loadParent() {
      IBlockFluidCondition parentMask = ConstantBlockFluidCondition.DEFAULT_TRUE;
      if (this.has("Parent")) {
         ResolvedBlockArray blockArray = new ResolvedBlockArrayJsonLoader(this.seed, this.dataFolder, this.get("Parent")).load();
         LongSet biomeSet = blockArray.getEntrySet();
         parentMask = new HashSetBlockFluidCondition(biomeSet);
      }

      return parentMask;
   }

   @Nullable
   protected IHeightThresholdInterpreter loadHeightThresholds() {
      IHeightThresholdInterpreter heightThreshold = null;
      if (this.has("HeightThreshold")) {
         heightThreshold = new HeightThresholdInterpreterJsonLoader<>(this.seed, this.dataFolder, this.get("HeightThreshold"), 320).load();
      }

      return heightThreshold;
   }

   @Nonnull
   protected ICoordinateRndCondition loadHeightCondition(@Nullable IHeightThresholdInterpreter thresholdInterpreter) {
      ICoordinateRndCondition heightCondition = DefaultCoordinateRndCondition.DEFAULT_TRUE;
      if (thresholdInterpreter != null) {
         heightCondition = new HeightCondition(thresholdInterpreter);
      }

      return heightCondition;
   }

   @Nonnull
   protected ICoordinateCondition loadMapCondition() {
      return new NoiseMaskConditionJsonLoader<>(this.seed, this.dataFolder, this.get("NoiseMask")).load();
   }

   @Nullable
   protected BlockMaskCondition loadMask() {
      BlockMaskCondition configuration = BlockMaskCondition.DEFAULT_TRUE;
      if (this.has("Mask")) {
         configuration = new BlockPlacementMaskJsonLoader(this.seed, this.dataFolder, this.getRaw("Mask")).load();
      }

      return configuration;
   }

   @Nullable
   protected PrefabRotation[] loadRotations() {
      PrefabRotation[] prefabRotations = null;
      if (this.has("Rotations")) {
         prefabRotations = loadRotations(this.get("Rotations"));
      }

      return prefabRotations;
   }

   @Nonnull
   protected ICoordinateDoubleSupplier loadDisplacement() {
      ICoordinateDoubleSupplier supplier = ConstantCoordinateDoubleSupplier.DEFAULT_ZERO;
      if (this.has("Displacement")) {
         supplier = new RandomCoordinateDoubleSupplier(new DoubleRangeJsonLoader<>(this.seed, this.dataFolder, this.get("Displacement"), 0.0).load());
      }

      return supplier;
   }

   protected boolean loadFitHeightmap() {
      return this.has("FitHeightmap") && this.get("FitHeightmap").getAsBoolean();
   }

   protected boolean loadOnWater() {
      return this.has("OnWater") && this.get("OnWater").getAsBoolean();
   }

   protected boolean loadDeepSearch(@Nonnull IHeightThresholdInterpreter interpreter) {
      boolean deepSearch = this.has("DeepSearch") && this.get("DeepSearch").getAsBoolean();
      if (deepSearch && interpreter == null) {
         throw new IllegalArgumentException("DeepSearch is enabled but HeightThreshold is not set!");
      } else {
         return deepSearch;
      }
   }

   protected boolean loadSubmerge() {
      return this.mustGetBool("Submerge", PrefabPatternGeneratorJsonLoader.Constants.DEFAULT_SUBMERGE);
   }

   protected int loadMaxSize() {
      return this.mustGetNumber("MaxSize", PrefabPatternGeneratorJsonLoader.Constants.DEFAULT_MAX_SIZE).intValue();
   }

   protected int loadExclusionRadius() {
      return this.mustGetNumber("ExclusionRadius", PrefabPatternGeneratorJsonLoader.Constants.DEFAULT_EXCLUSION_RADIUS).intValue();
   }

   @Nullable
   public static PrefabRotation[] loadRotations(@Nullable JsonElement element) {
      if (element == null) {
         return null;
      } else {
         PrefabRotation[] prefabRotations = null;
         if (element.isJsonArray()) {
            JsonArray array = element.getAsJsonArray();
            if (array.size() <= 0) {
               throw new IllegalArgumentException("Array for rotations must be greater than 0 or left away to allow random rotation.");
            }

            prefabRotations = new PrefabRotation[array.size()];

            for (int i = 0; i < prefabRotations.length; i++) {
               String name = array.get(i).getAsString();

               try {
                  prefabRotations[i] = PrefabRotation.valueOf(name);
               } catch (Throwable var7) {
                  throw new Error("Could not find rotation \"" + name + "\". Allowed: " + Arrays.toString((Object[])PrefabRotation.VALUES));
               }
            }
         } else {
            if (!element.isJsonPrimitive()) {
               throw new IllegalArgumentException("rotations is not an array nor a string, other types are not supported! Given: " + element);
            }

            prefabRotations = new PrefabRotation[1];
            String name = element.getAsString();

            try {
               prefabRotations[0] = PrefabRotation.valueOf(name);
            } catch (Throwable var6) {
               throw new Error("Could not find rotation \"" + name + "\". Allowed: " + Arrays.toString((Object[])PrefabRotation.VALUES));
            }
         }

         return prefabRotations;
      }
   }

   public interface Constants {
      String KEY_GRID_GENERATOR = "GridGenerator";
      String KEY_PARENT = "Parent";
      String KEY_HEIGHT_THRESHOLD = "HeightThreshold";
      String KEY_NOISE_MASK = "NoiseMask";
      String KEY_MASK = "Mask";
      String KEY_ROTATIONS = "Rotations";
      String KEY_DISPLACEMENT = "Displacement";
      String KEY_FIT_HEIGHTMAP = "FitHeightmap";
      String KEY_ON_WATER = "OnWater";
      String KEY_DEEP_SEARCH = "DeepSearch";
      String KEY_SUBMERGE = "Submerge";
      String KEY_MAX_SIZE = "MaxSize";
      String KEY_EXCLUSION_RADIUS = "ExclusionRadius";
      String KEY_CATEGORY = "Category";
      String ERROR_NO_GRID_GENERATOR = "Could not find point generator to place prefabs at! Keyword: GridGenerator";
      String ERROR_DEEP_SEARCH = "DeepSearch is enabled but HeightThreshold is not set!";
      Boolean DEFAULT_SUBMERGE = Boolean.FALSE;
      Integer DEFAULT_MAX_SIZE = 5;
      Integer DEFAULT_EXCLUSION_RADIUS = 0;
   }
}