43 lines
1.4 KiB
Java
43 lines
1.4 KiB
Java
package com.hypixel.hytale.builtin.hytalegenerator.assets.props;
|
|
|
|
import com.hypixel.hytale.builtin.hytalegenerator.props.Prop;
|
|
import com.hypixel.hytale.builtin.hytalegenerator.props.UnionProp;
|
|
import com.hypixel.hytale.codec.KeyedCodec;
|
|
import com.hypixel.hytale.codec.builder.BuilderCodec;
|
|
import com.hypixel.hytale.codec.codecs.array.ArrayCodec;
|
|
import java.util.ArrayList;
|
|
import javax.annotation.Nonnull;
|
|
|
|
public class UnionPropAsset extends PropAsset {
|
|
public static final BuilderCodec<UnionPropAsset> CODEC = BuilderCodec.builder(UnionPropAsset.class, UnionPropAsset::new, PropAsset.ABSTRACT_CODEC)
|
|
.append(
|
|
new KeyedCodec<>("Props", new ArrayCodec<>(PropAsset.CODEC, PropAsset[]::new), true), (asset, v) -> asset.propAssets = v, asset -> asset.propAssets
|
|
)
|
|
.add()
|
|
.build();
|
|
private PropAsset[] propAssets = new PropAsset[0];
|
|
|
|
@Nonnull
|
|
@Override
|
|
public Prop build(@Nonnull PropAsset.Argument argument) {
|
|
if (super.skip()) {
|
|
return Prop.noProp();
|
|
} else {
|
|
ArrayList<Prop> chainedProps = new ArrayList<>(this.propAssets.length);
|
|
|
|
for (PropAsset asset : this.propAssets) {
|
|
chainedProps.add(asset.build(argument));
|
|
}
|
|
|
|
return new UnionProp(chainedProps);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void cleanUp() {
|
|
for (PropAsset propAsset : this.propAssets) {
|
|
propAsset.cleanUp();
|
|
}
|
|
}
|
|
}
|