Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
Use given min/max y values in HeightmapProcessor
Dieser Commit ist enthalten in:
Ursprung
6cbd9631a0
Commit
f84c98e721
@ -11,7 +11,6 @@ import com.sk89q.worldedit.world.block.BlockState;
|
|||||||
import com.sk89q.worldedit.world.block.BlockTypesCache;
|
import com.sk89q.worldedit.world.block.BlockTypesCache;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
import java.lang.reflect.Array;
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.concurrent.CompletableFuture;
|
import java.util.concurrent.CompletableFuture;
|
||||||
import java.util.concurrent.Future;
|
import java.util.concurrent.Future;
|
||||||
@ -20,7 +19,7 @@ public class HeightmapProcessor implements IBatchProcessor {
|
|||||||
|
|
||||||
private static final HeightMapType[] TYPES = HeightMapType.values();
|
private static final HeightMapType[] TYPES = HeightMapType.values();
|
||||||
private static final int BLOCKS_PER_Y_SHIFT = 8; // log2(256)
|
private static final int BLOCKS_PER_Y_SHIFT = 8; // log2(256)
|
||||||
private static final int BLOCKS_PER_Y = 256;
|
private static final int BLOCKS_PER_Y = 256; // 16 x 16
|
||||||
private static final boolean[] COMPLETE = new boolean[BLOCKS_PER_Y];
|
private static final boolean[] COMPLETE = new boolean[BLOCKS_PER_Y];
|
||||||
private static final char[] AIR_LAYER = new char[4096];
|
private static final char[] AIR_LAYER = new char[4096];
|
||||||
|
|
||||||
@ -29,6 +28,25 @@ public class HeightmapProcessor implements IBatchProcessor {
|
|||||||
Arrays.fill(AIR_LAYER, (char) 1);
|
Arrays.fill(AIR_LAYER, (char) 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private final int minY;
|
||||||
|
private final int maxY;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* New HeightmapProcessor instance that will create heightmaps between the given heights (inclusive). If no applicable
|
||||||
|
* block is found before the minimum Y, 0 is used.
|
||||||
|
*
|
||||||
|
* @param minY minimum Y to consider
|
||||||
|
* @param maxY maximum Y to consider
|
||||||
|
*/
|
||||||
|
public HeightmapProcessor(int minY, int maxY) {
|
||||||
|
this.minY = minY;
|
||||||
|
this.maxY = maxY;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int index(int y, int offset) {
|
||||||
|
return (y << BLOCKS_PER_Y_SHIFT) + offset;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public IChunkSet processSet(IChunk chunk, IChunkGet get, IChunkSet set) {
|
public IChunkSet processSet(IChunk chunk, IChunkGet get, IChunkSet set) {
|
||||||
// each heightmap gets one 16*16 array
|
// each heightmap gets one 16*16 array
|
||||||
@ -37,6 +55,7 @@ public class HeightmapProcessor implements IBatchProcessor {
|
|||||||
int skip = 0;
|
int skip = 0;
|
||||||
int allSkipped = (1 << TYPES.length) - 1; // lowest types.length bits are set
|
int allSkipped = (1 << TYPES.length) - 1; // lowest types.length bits are set
|
||||||
layer:
|
layer:
|
||||||
|
//int layer = maxY >> 4; layer >= minY >> 4; layer--
|
||||||
for (int layer = set.getMaxSectionPosition(); layer >= set.getMinSectionPosition() >> 4; layer--) {
|
for (int layer = set.getMaxSectionPosition(); layer >= set.getMinSectionPosition() >> 4; layer--) {
|
||||||
boolean hasSectionSet = set.hasSection(layer);
|
boolean hasSectionSet = set.hasSection(layer);
|
||||||
boolean hasSectionGet = get.hasSection(layer);
|
boolean hasSectionGet = get.hasSection(layer);
|
||||||
@ -93,7 +112,7 @@ public class HeightmapProcessor implements IBatchProcessor {
|
|||||||
HeightMapType type = TYPES[i];
|
HeightMapType type = TYPES[i];
|
||||||
// ignore if that position was already set
|
// ignore if that position was already set
|
||||||
if (!updated[i][j] && type.includes(block)) {
|
if (!updated[i][j] && type.includes(block)) {
|
||||||
// mc requires + 1, heightmaps are normalized internally
|
// mc requires + 1, heightmaps are normalized internally, thus we need to "zero" them.
|
||||||
heightmaps[i][j] = ((layer - get.getMinSectionPosition()) << 4) + y + 1;
|
heightmaps[i][j] = ((layer - get.getMinSectionPosition()) << 4) + y + 1;
|
||||||
updated[i][j] = true; // mark as updated
|
updated[i][j] = true; // mark as updated
|
||||||
}
|
}
|
||||||
@ -117,10 +136,6 @@ public class HeightmapProcessor implements IBatchProcessor {
|
|||||||
return set;
|
return set;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static int index(int y, int offset) {
|
|
||||||
return (y << BLOCKS_PER_Y_SHIFT) + offset;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Future<IChunkSet> postProcessSet(IChunk chunk, IChunkGet get, IChunkSet set) {
|
public Future<IChunkSet> postProcessSet(IChunk chunk, IChunkGet get, IChunkSet set) {
|
||||||
return CompletableFuture.completedFuture(set);
|
return CompletableFuture.completedFuture(set);
|
||||||
|
@ -424,7 +424,7 @@ public class EditSessionBuilder {
|
|||||||
} else {
|
} else {
|
||||||
relighter = NullRelighter.INSTANCE;
|
relighter = NullRelighter.INSTANCE;
|
||||||
}
|
}
|
||||||
extent.addProcessor(new HeightmapProcessor());
|
extent.addProcessor(new HeightmapProcessor(world.getMinY(), world.getMaxY()));
|
||||||
if (limit != null && !limit.isUnlimited() && regionExtent != null) {
|
if (limit != null && !limit.isUnlimited() && regionExtent != null) {
|
||||||
this.extent = new LimitExtent(regionExtent, limit);
|
this.extent = new LimitExtent(regionExtent, limit);
|
||||||
} else if (limit != null && !limit.isUnlimited()) {
|
} else if (limit != null && !limit.isUnlimited()) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren