geforkt von Mirrors/FastAsyncWorldEdit
Improved the speed (slightly?) of replaceNear and removeNear methods in EditSession.
Dieser Commit ist enthalten in:
Ursprung
6979704661
Commit
88d7128135
@ -312,6 +312,27 @@ public class EditSession {
|
|||||||
return rawGetBlock(pt);
|
return rawGetBlock(pt);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the block type at a position x, y, z.
|
||||||
|
*
|
||||||
|
* @param pt
|
||||||
|
* @return Block type
|
||||||
|
*/
|
||||||
|
public int getBlockType(Vector pt) {
|
||||||
|
// In the case of the queue, the block may have not actually been
|
||||||
|
// changed yet
|
||||||
|
if (queued) {
|
||||||
|
/*
|
||||||
|
* BlockVector blockPt = pt.toBlockVector();
|
||||||
|
*
|
||||||
|
* if (current.containsKey(blockPt)) { return current.get(blockPt);
|
||||||
|
* }
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
|
||||||
|
return world.getBlockType(pt);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the block type at a position x, y, z.
|
* Gets the block type at a position x, y, z.
|
||||||
*
|
*
|
||||||
@ -693,7 +714,7 @@ public class EditSession {
|
|||||||
for (int y = oY; y <= maxY; y++) {
|
for (int y = oY; y <= maxY; y++) {
|
||||||
Vector pt = new Vector(x, y, z);
|
Vector pt = new Vector(x, y, z);
|
||||||
|
|
||||||
if (!getBlock(pt).isAir()) {
|
if (getBlockType(pt) != 0) {
|
||||||
setBlock(pt, new BaseBlock(0));
|
setBlock(pt, new BaseBlock(0));
|
||||||
affected++;
|
affected++;
|
||||||
}
|
}
|
||||||
@ -727,7 +748,7 @@ public class EditSession {
|
|||||||
for (int y = oY; y >= minY; y--) {
|
for (int y = oY; y >= minY; y--) {
|
||||||
Vector pt = new Vector(x, y, z);
|
Vector pt = new Vector(x, y, z);
|
||||||
|
|
||||||
if (!getBlock(pt).isAir()) {
|
if (getBlockType(pt) != 0) {
|
||||||
setBlock(pt, new BaseBlock(0));
|
setBlock(pt, new BaseBlock(0));
|
||||||
affected++;
|
affected++;
|
||||||
}
|
}
|
||||||
@ -756,7 +777,7 @@ public class EditSession {
|
|||||||
for (int z = -size; z <= size; z++) {
|
for (int z = -size; z <= size; z++) {
|
||||||
Vector p = pos.add(x, y, z);
|
Vector p = pos.add(x, y, z);
|
||||||
|
|
||||||
if (getBlock(p).getType() == blockType) {
|
if (getBlockType(p) == blockType) {
|
||||||
if (setBlock(p, air)) {
|
if (setBlock(p, air)) {
|
||||||
affected++;
|
affected++;
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren