64 lines
2.0 KiB
Java
64 lines
2.0 KiB
Java
package com.hypixel.hytale.server.npc.asset.builder.holder;
|
|
|
|
import com.google.gson.JsonElement;
|
|
import com.hypixel.hytale.server.npc.asset.builder.BuilderBase;
|
|
import com.hypixel.hytale.server.npc.asset.builder.BuilderParameters;
|
|
import com.hypixel.hytale.server.npc.asset.builder.validators.AssetValidator;
|
|
import com.hypixel.hytale.server.npc.util.expression.ExecutionContext;
|
|
import javax.annotation.Nonnull;
|
|
import javax.annotation.Nullable;
|
|
|
|
public class AssetArrayHolder extends StringArrayHolder {
|
|
protected AssetValidator assetValidator;
|
|
|
|
public void readJSON(
|
|
@Nonnull JsonElement requiredJsonElement,
|
|
int minLength,
|
|
int maxLength,
|
|
AssetValidator validator,
|
|
String name,
|
|
@Nonnull BuilderParameters builderParameters
|
|
) {
|
|
this.readJSON(requiredJsonElement, minLength, maxLength, name, builderParameters);
|
|
this.assetValidator = validator;
|
|
}
|
|
|
|
public void readJSON(
|
|
JsonElement optionalJsonElement,
|
|
int minLength,
|
|
int maxLength,
|
|
String[] defaultValue,
|
|
AssetValidator validator,
|
|
String name,
|
|
@Nonnull BuilderParameters builderParameters
|
|
) {
|
|
this.readJSON(optionalJsonElement, minLength, maxLength, defaultValue, name, builderParameters);
|
|
this.assetValidator = validator;
|
|
}
|
|
|
|
@Nullable
|
|
@Override
|
|
public String[] get(ExecutionContext executionContext) {
|
|
String[] value = this.rawGet(executionContext);
|
|
this.validateRelations(executionContext, value);
|
|
return value;
|
|
}
|
|
|
|
@Nullable
|
|
@Override
|
|
public String[] rawGet(ExecutionContext executionContext) {
|
|
String[] value = this.expression.getStringArray(executionContext);
|
|
if (this.assetValidator != null) {
|
|
BuilderBase.validateAssetList(value, this.assetValidator, this.name, true);
|
|
}
|
|
|
|
return value;
|
|
}
|
|
|
|
public void staticValidate() {
|
|
if (this.assetValidator != null && this.expression.isStatic()) {
|
|
BuilderBase.validateAssetList(this.expression.getStringArray(null), this.assetValidator, this.name, true);
|
|
}
|
|
}
|
|
}
|