package com.hypixel.hytale.builtin.hytalegenerator.props;
import com.hypixel.hytale.builtin.hytalegenerator.bounds.Bounds3i;
import com.hypixel.hytale.builtin.hytalegenerator.conveyor.stagedconveyor.ContextDependency;
import com.hypixel.hytale.builtin.hytalegenerator.datastructures.voxelspace.VoxelSpace;
import com.hypixel.hytale.builtin.hytalegenerator.material.Material;
import com.hypixel.hytale.builtin.hytalegenerator.threadindexer.WorkerIndexer;
import com.hypixel.hytale.math.vector.Vector3i;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.Nonnull;
public class UnionProp extends Prop {
@Nonnull
private final List<Prop> props;
@Nonnull
private final ContextDependency contextDependency;
@Nonnull
private final Bounds3i writeBounds_voxelGrid;
public UnionProp(@Nonnull List<Prop> propChain) {
this.props = new ArrayList(propChain);
Vector3i writeRange = new Vector3i();
Vector3i readRange = new Vector3i();
for(Prop prop : propChain) {
writeRange = Vector3i.max(writeRange, prop.getContextDependency().getWriteRange());
readRange = Vector3i.max(readRange, prop.getContextDependency().getReadRange());
}
this.contextDependency = new ContextDependency(readRange, writeRange);
this.writeBounds_voxelGrid = this.contextDependency.getTotalPropBounds_voxelGrid();
}
@Nonnull
public ScanResult scan(@Nonnull Vector3i position, @Nonnull VoxelSpace<Material> materialSpace, @Nonnull WorkerIndexer.Id id) {
ChainedScanResult scanResult = new ChainedScanResult();
scanResult.scanResults = new ArrayList(this.props.size());
for(Prop prop : this.props) {
scanResult.scanResults.add(prop.scan(position, materialSpace, id));
}
return scanResult;
}
public void place(@Nonnull Prop.Context context) {
List<ScanResult> scanResults = UnionProp.ChainedScanResult.cast(context.scanResult).scanResults;
for(int i = 0; i < this.props.size(); ++i) {
Prop prop = (Prop)this.props.get(i);
Prop.Context childContext = new Prop.Context(context);
childContext.scanResult = (ScanResult)scanResults.get(i);
prop.place(childContext);
}
}
@Nonnull
public ContextDependency getContextDependency() {
return this.contextDependency.clone();
}
@Nonnull
public Bounds3i getWriteBounds() {
return this.writeBounds_voxelGrid;
}
private static class ChainedScanResult implements ScanResult {
List<ScanResult> scanResults;
private ChainedScanResult() {
}
@Nonnull
public static ChainedScanResult cast(ScanResult scanResult) {
if (!(scanResult instanceof ChainedScanResult)) {
throw new IllegalArgumentException("The provided ScanResult isn't compatible with this prop.");
} else {
return (ChainedScanResult)scanResult;
}
}
public boolean isNegative() {
return this.scanResults == null || this.scanResults.isEmpty();
}
}
}