Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-08 04:20:06 +01:00
Changed /fix[water|lava] to use visitors.
Dieser Commit ist enthalten in:
Ursprung
7d03d9db90
Commit
a9797ed30b
@ -42,10 +42,7 @@ import com.sk89q.worldedit.function.operation.OperationQueue;
|
|||||||
import com.sk89q.worldedit.function.pattern.BlockPattern;
|
import com.sk89q.worldedit.function.pattern.BlockPattern;
|
||||||
import com.sk89q.worldedit.function.pattern.Patterns;
|
import com.sk89q.worldedit.function.pattern.Patterns;
|
||||||
import com.sk89q.worldedit.function.util.RegionOffset;
|
import com.sk89q.worldedit.function.util.RegionOffset;
|
||||||
import com.sk89q.worldedit.function.visitor.DownwardVisitor;
|
import com.sk89q.worldedit.function.visitor.*;
|
||||||
import com.sk89q.worldedit.function.visitor.LayerVisitor;
|
|
||||||
import com.sk89q.worldedit.function.visitor.RecursiveVisitor;
|
|
||||||
import com.sk89q.worldedit.function.visitor.RegionVisitor;
|
|
||||||
import com.sk89q.worldedit.masks.Mask;
|
import com.sk89q.worldedit.masks.Mask;
|
||||||
import com.sk89q.worldedit.math.interpolation.Interpolation;
|
import com.sk89q.worldedit.math.interpolation.Interpolation;
|
||||||
import com.sk89q.worldedit.math.interpolation.KochanekBartelsInterpolation;
|
import com.sk89q.worldedit.math.interpolation.KochanekBartelsInterpolation;
|
||||||
@ -1340,61 +1337,42 @@ public class EditSession implements Extent {
|
|||||||
* @return number of blocks affected
|
* @return number of blocks affected
|
||||||
* @throws MaxChangedBlocksException
|
* @throws MaxChangedBlocksException
|
||||||
*/
|
*/
|
||||||
public int fixLiquid(Vector pos, double radius, int moving, int stationary)
|
public int fixLiquid(Vector origin, double radius, int moving, int stationary) throws MaxChangedBlocksException {
|
||||||
throws MaxChangedBlocksException {
|
checkNotNull(origin);
|
||||||
int affected = 0;
|
checkArgument(radius >= 0, "radius >= 0 required");
|
||||||
|
|
||||||
HashSet<BlockVector> visited = new HashSet<BlockVector>();
|
// Our origins can only be liquids
|
||||||
Stack<BlockVector> queue = new Stack<BlockVector>();
|
BlockMask liquidMask = new BlockMask(
|
||||||
|
this,
|
||||||
|
new BaseBlock(moving, -1),
|
||||||
|
new BaseBlock(stationary, -1));
|
||||||
|
|
||||||
for (int x = pos.getBlockX() - 1; x <= pos.getBlockX() + 1; ++x) {
|
// But we will also visit air blocks
|
||||||
for (int z = pos.getBlockZ() - 1; z <= pos.getBlockZ() + 1; ++z) {
|
MaskIntersection blockMask =
|
||||||
for (int y = pos.getBlockY() - 1; y <= pos.getBlockY() + 1; ++y) {
|
new MaskUnion(liquidMask,
|
||||||
int type = getBlock(new Vector(x, y, z)).getType();
|
new BlockMask(
|
||||||
|
this,
|
||||||
|
new BaseBlock(BlockID.AIR)));
|
||||||
|
|
||||||
// Check block type
|
// There are boundaries that the routine needs to stay in
|
||||||
if (type == moving || type == stationary) {
|
MaskIntersection mask = new MaskIntersection(
|
||||||
queue.push(new BlockVector(x, y, z));
|
new BoundedHeightMask(0, Math.min(origin.getBlockY(), getWorld().getMaxY())),
|
||||||
}
|
new RegionMask(new EllipsoidRegion(null, origin, new Vector(radius, radius, radius))),
|
||||||
}
|
blockMask);
|
||||||
|
|
||||||
|
BlockReplace replace = new BlockReplace(this, new BlockPattern(new BaseBlock(stationary)));
|
||||||
|
NonRisingVisitor visitor = new NonRisingVisitor(mask, replace);
|
||||||
|
|
||||||
|
// Around the origin in a 3x3 block
|
||||||
|
for (BlockVector position : CuboidRegion.fromCenter(origin, 1)) {
|
||||||
|
if (liquidMask.test(position)) {
|
||||||
|
visitor.visit(position);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
BaseBlock stationaryBlock = new BaseBlock(stationary);
|
OperationHelper.completeLegacy(visitor);
|
||||||
|
|
||||||
while (!queue.empty()) {
|
return visitor.getAffected();
|
||||||
BlockVector cur = queue.pop();
|
|
||||||
|
|
||||||
int type = getBlockType(cur);
|
|
||||||
|
|
||||||
// Check block type
|
|
||||||
if (type != moving && type != stationary && type != BlockID.AIR) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Don't want to revisit
|
|
||||||
if (visited.contains(cur)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
visited.add(cur);
|
|
||||||
|
|
||||||
if (setBlock(cur, stationaryBlock)) {
|
|
||||||
++affected;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check radius
|
|
||||||
if (pos.distance(cur) > radius) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
queue.push(cur.add(1, 0, 0).toBlockVector());
|
|
||||||
queue.push(cur.add(-1, 0, 0).toBlockVector());
|
|
||||||
queue.push(cur.add(0, 0, 1).toBlockVector());
|
|
||||||
queue.push(cur.add(0, 0, -1).toBlockVector());
|
|
||||||
}
|
|
||||||
|
|
||||||
return affected;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren