geforkt von Mirrors/FastAsyncWorldEdit
Added a /green command, which greens the surrounding landscape.
Dieser Commit ist enthalten in:
Ursprung
6c5d1236c7
Commit
151b4c0fa1
@ -2045,6 +2045,51 @@ public class EditSession {
|
|||||||
return affected;
|
return affected;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Green.
|
||||||
|
*
|
||||||
|
* @param pos
|
||||||
|
* @param radius
|
||||||
|
* @return number of blocks affected
|
||||||
|
* @throws MaxChangedBlocksException
|
||||||
|
*/
|
||||||
|
public int green(Vector pos, double radius)
|
||||||
|
throws MaxChangedBlocksException {
|
||||||
|
int affected = 0;
|
||||||
|
double radiusSq = radius*radius;
|
||||||
|
|
||||||
|
int ox = pos.getBlockX();
|
||||||
|
int oy = pos.getBlockY();
|
||||||
|
int oz = pos.getBlockZ();
|
||||||
|
|
||||||
|
BaseBlock grass = new BaseBlock(BlockID.GRASS);
|
||||||
|
|
||||||
|
int ceilRadius = (int) Math.ceil(radius);
|
||||||
|
for (int x = ox - ceilRadius; x <= ox + ceilRadius; ++x) {
|
||||||
|
for (int z = oz - ceilRadius; z <= oz + ceilRadius; ++z) {
|
||||||
|
if ((new Vector(x, oy, z)).distanceSq(pos) > radiusSq) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int y = 127; y >= 1; --y) {
|
||||||
|
Vector pt = new Vector(x, y, z);
|
||||||
|
int id = getBlockType(pt);
|
||||||
|
|
||||||
|
if (id == 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (id == BlockID.DIRT) {
|
||||||
|
if (setBlock(pt, grass)) {
|
||||||
|
++affected;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return affected;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set a block by chance.
|
* Set a block by chance.
|
||||||
*
|
*
|
||||||
|
@ -295,6 +295,25 @@ public class UtilityCommands {
|
|||||||
player.print(affected + " surfaces thawed.");
|
player.print(affected + " surfaces thawed.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Command(
|
||||||
|
aliases = {"green"},
|
||||||
|
usage = "[radius]",
|
||||||
|
desc = "Greens the area",
|
||||||
|
min = 0,
|
||||||
|
max = 1
|
||||||
|
)
|
||||||
|
@CommandPermissions({"worldedit.green"})
|
||||||
|
@Logging(PLACEMENT)
|
||||||
|
public static void green(CommandContext args, WorldEdit we,
|
||||||
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
||||||
|
throws WorldEditException {
|
||||||
|
|
||||||
|
double size = args.argsLength() > 0 ? Math.max(1, args.getDouble(0)) : 10;
|
||||||
|
|
||||||
|
int affected = editSession.green(session.getPlacementPosition(player), size);
|
||||||
|
player.print(affected + " surfaces greened.");
|
||||||
|
}
|
||||||
|
|
||||||
@Command(
|
@Command(
|
||||||
aliases = {"ex", "ext", "extinguish"},
|
aliases = {"ex", "ext", "extinguish"},
|
||||||
usage = "[radius]",
|
usage = "[radius]",
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren