HyCodeYourTale
classpublicPriority 3

WeightedThicknessLayerAsset

com.hypixel.hytale.builtin.hytalegenerator.assets.materialproviders.spaceanddepth.layerassets.WeightedThicknessLayerAsset

extends LayerAsset

3

Methods

3

Public Methods

2

Fields

1

Constructors

Constants

BuilderCodec<WeightedThicknessLayerAsset>CODEC= BuilderCodec.builder( WeightedThicknessLayerAsset.class, WeightedThicknessLayerAsset::ne...
AssetBuilderCodec<String, WeightedThicknessLayerAsset.WeightedThicknessAsset>CODEC= AssetBuilderCodec.builder( WeightedThicknessLayerAsset.WeightedThicknessAsset.class, ...

Constructors

public
WeightedThicknessLayerAsset()

Methods

Public Methods (3)

public
SpaceAndDepthMaterialProvider.Layer<Material> build(MaterialProviderAsset.Argument argument)
@Nonnull@Override
public
void cleanUp()
@Override
public
String getId()

Fields

Private/Package Fields (2)

privateWeightedThicknessLayerAsset.WeightedThicknessAsset[] possibleThicknessAssets
privateString seed

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.builtin.hytalegenerator.assets.materialproviders.spaceanddepth.layerassets;

import com.hypixel.hytale.assetstore.AssetExtraInfo;
import com.hypixel.hytale.assetstore.codec.AssetBuilderCodec;
import com.hypixel.hytale.assetstore.map.DefaultAssetMap;
import com.hypixel.hytale.assetstore.map.JsonAssetWithMap;
import com.hypixel.hytale.builtin.hytalegenerator.assets.materialproviders.ConstantMaterialProviderAsset;
import com.hypixel.hytale.builtin.hytalegenerator.assets.materialproviders.MaterialProviderAsset;
import com.hypixel.hytale.builtin.hytalegenerator.datastructures.WeightedMap;
import com.hypixel.hytale.builtin.hytalegenerator.material.Material;
import com.hypixel.hytale.builtin.hytalegenerator.materialproviders.spaceanddepth.SpaceAndDepthMaterialProvider;
import com.hypixel.hytale.builtin.hytalegenerator.materialproviders.spaceanddepth.layers.WeightedThicknessLayer;
import com.hypixel.hytale.codec.Codec;
import com.hypixel.hytale.codec.KeyedCodec;
import com.hypixel.hytale.codec.builder.BuilderCodec;
import com.hypixel.hytale.codec.codecs.array.ArrayCodec;
import com.hypixel.hytale.codec.validation.Validators;
import javax.annotation.Nonnull;

public class WeightedThicknessLayerAsset extends LayerAsset {
   public static final BuilderCodec<WeightedThicknessLayerAsset> CODEC = BuilderCodec.builder(
         WeightedThicknessLayerAsset.class, WeightedThicknessLayerAsset::new, LayerAsset.ABSTRACT_CODEC
      )
      .append(
         new KeyedCodec<>(
            "PossibleThicknesses",
            new ArrayCodec<>(WeightedThicknessLayerAsset.WeightedThicknessAsset.CODEC, WeightedThicknessLayerAsset.WeightedThicknessAsset[]::new),
            true
         ),
         (t, k) -> t.possibleThicknessAssets = k,
         k -> k.possibleThicknessAssets
      )
      .addValidator(Validators.nonNullArrayElements())
      .add()
      .append(new KeyedCodec<>("Material", MaterialProviderAsset.CODEC, true), (t, k) -> t.materialProviderAsset = k, k -> k.materialProviderAsset)
      .add()
      .append(new KeyedCodec<>("Seed", Codec.STRING, true), (t, k) -> t.seed = k, k -> k.seed)
      .add()
      .build();
   private MaterialProviderAsset materialProviderAsset = new ConstantMaterialProviderAsset();
   private String seed = "";
   private WeightedThicknessLayerAsset.WeightedThicknessAsset[] possibleThicknessAssets = new WeightedThicknessLayerAsset.WeightedThicknessAsset[0];

   public WeightedThicknessLayerAsset() {
   }

   @Nonnull
   @Override
   public SpaceAndDepthMaterialProvider.Layer<Material> build(@Nonnull MaterialProviderAsset.Argument argument) {
      WeightedMap<Integer> pool = new WeightedMap<>();

      for (WeightedThicknessLayerAsset.WeightedThicknessAsset asset : this.possibleThicknessAssets) {
         pool.add(asset.thickness, asset.weight);
      }

      return new WeightedThicknessLayer<>(pool, this.materialProviderAsset.build(argument), argument.parentSeed);
   }

   @Override
   public void cleanUp() {
      this.materialProviderAsset.cleanUp();
   }

   public static class WeightedThicknessAsset implements JsonAssetWithMap<String, DefaultAssetMap<String, WeightedThicknessLayerAsset.WeightedThicknessAsset>> {
      public static final AssetBuilderCodec<String, WeightedThicknessLayerAsset.WeightedThicknessAsset> CODEC = AssetBuilderCodec.builder(
            WeightedThicknessLayerAsset.WeightedThicknessAsset.class,
            WeightedThicknessLayerAsset.WeightedThicknessAsset::new,
            Codec.STRING,
            (asset, id) -> asset.id = id,
            config -> config.id,
            (config, data) -> config.data = data,
            config -> config.data
         )
         .append(new KeyedCodec<>("Weight", Codec.DOUBLE, true), (t, y) -> t.weight = y, t -> t.weight)
         .add()
         .append(new KeyedCodec<>("Thickness", Codec.INTEGER, true), (t, out) -> t.thickness = out, t -> t.thickness)
         .add()
         .build();
      private String id;
      private AssetExtraInfo.Data data;
      private double weight;
      private int thickness;

      public WeightedThicknessAsset() {
      }

      public String getId() {
         return this.id;
      }
   }
}