HyCodeYourTale
classpublicPriority 3

ZoneColorMappingJsonLoader

com.hypixel.hytale.server.worldgen.loader.zone.ZoneColorMappingJsonLoader

extends JsonLoader

2

Methods

2

Public Methods

1

Fields

1

Constructors

Constructors

public
ZoneColorMappingJsonLoader(SeedString<SeedStringResource> seed, Path dataFolder, JsonElement json, Map<String, Zone> zoneLookup)

Methods

Public Methods (2)

publicstatic
void collectZones(Set<String> zoneSet, JsonElement json)
public
ZoneColorMapping load()
@Nonnull

Fields

Protected Fields (1)

protectedMap<String, Zone> zoneLookup

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.zone;

import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.hypixel.hytale.procedurallib.json.JsonLoader;
import com.hypixel.hytale.procedurallib.json.SeedString;
import com.hypixel.hytale.server.worldgen.SeedStringResource;
import com.hypixel.hytale.server.worldgen.loader.util.ColorUtil;
import com.hypixel.hytale.server.worldgen.zone.Zone;
import com.hypixel.hytale.server.worldgen.zone.ZoneColorMapping;
import java.nio.file.Path;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.Map.Entry;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;

public class ZoneColorMappingJsonLoader extends JsonLoader<SeedStringResource, ZoneColorMapping> {
   protected final Map<String, Zone> zoneLookup;

   public ZoneColorMappingJsonLoader(SeedString<SeedStringResource> seed, Path dataFolder, JsonElement json, Map<String, Zone> zoneLookup) {
      super(seed, dataFolder, json);
      this.zoneLookup = zoneLookup;
   }

   @Nonnull
   public ZoneColorMapping load() {
      ZoneColorMapping colorMapping = new ZoneColorMapping();
      JsonObject mappingObj = this.json.getAsJsonObject();

      for (Entry<String, JsonElement> entry : mappingObj.entrySet()) {
         int rgb = ColorUtil.hexString(entry.getKey());
         if (entry.getValue().isJsonArray()) {
            JsonArray arr = entry.getValue().getAsJsonArray();
            Zone[] zoneArr = new Zone[arr.size()];

            for (int i = 0; i < zoneArr.length; i++) {
               String zoneName = arr.get(i).getAsString();
               Zone zone = this.zoneLookup.get(zoneName);
               if (zone == null) {
                  throw new IllegalArgumentException(String.format("Zone with name %s was not found for color %s!", zoneName, entry.getKey()));
               }

               Objects.requireNonNull(zone);
               zoneArr[i] = zone;
            }

            colorMapping.add(rgb, zoneArr);
         } else {
            String zoneName = entry.getValue().getAsString();
            Zone zone = this.zoneLookup.get(zoneName);
            if (zone == null) {
               throw new IllegalArgumentException(String.format("Zone with name %s was not found for color %s!", zoneName, entry.getKey()));
            }

            colorMapping.add(rgb, zone);
         }
      }

      return colorMapping;
   }

   public static void collectZones(Set<String> zoneSet, @Nullable JsonElement json) {
      if (json != null && json.isJsonObject()) {
         JsonObject mappingObj = json.getAsJsonObject();

         for (Entry<String, JsonElement> entry : mappingObj.entrySet()) {
            if (entry.getValue().isJsonArray()) {
               for (JsonElement zoneName : entry.getValue().getAsJsonArray()) {
                  zoneSet.add(zoneName.getAsString());
               }
            } else {
               zoneSet.add(entry.getValue().getAsString());
            }
         }
      }
   }
}