geforkt von Mirrors/FastAsyncWorldEdit
Make distr operation based
Dieser Commit ist enthalten in:
Ursprung
9f43963379
Commit
0a149a796f
@ -25,6 +25,8 @@ import static com.sk89q.worldedit.regions.Regions.asFlatRegion;
|
|||||||
import static com.sk89q.worldedit.regions.Regions.maximumBlockY;
|
import static com.sk89q.worldedit.regions.Regions.maximumBlockY;
|
||||||
import static com.sk89q.worldedit.regions.Regions.minimumBlockY;
|
import static com.sk89q.worldedit.regions.Regions.minimumBlockY;
|
||||||
|
|
||||||
|
import com.sk89q.worldedit.function.block.BlockDistributionCounter;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.entity.BaseEntity;
|
import com.sk89q.worldedit.entity.BaseEntity;
|
||||||
import com.sk89q.worldedit.entity.Entity;
|
import com.sk89q.worldedit.entity.Entity;
|
||||||
import com.sk89q.worldedit.event.extent.EditSessionEvent;
|
import com.sk89q.worldedit.event.extent.EditSessionEvent;
|
||||||
@ -1652,115 +1654,11 @@ public class EditSession implements Extent {
|
|||||||
* @param region a region
|
* @param region a region
|
||||||
* @return the results
|
* @return the results
|
||||||
*/
|
*/
|
||||||
public List<Countable<BlockType>> getBlockDistribution(Region region) {
|
public List<Countable<BlockStateHolder>> getBlockDistribution(Region region, boolean fuzzy) {
|
||||||
List<Countable<BlockType>> distribution = new ArrayList<>();
|
BlockDistributionCounter count = new BlockDistributionCounter(this, fuzzy);
|
||||||
Map<BlockType, Countable<BlockType>> map = new HashMap<>();
|
RegionVisitor visitor = new RegionVisitor(region, count);
|
||||||
|
Operations.completeBlindly(visitor);
|
||||||
if (region instanceof CuboidRegion) {
|
return count.getDistribution();
|
||||||
// Doing this for speed
|
|
||||||
Vector min = region.getMinimumPoint();
|
|
||||||
Vector max = region.getMaximumPoint();
|
|
||||||
|
|
||||||
int minX = min.getBlockX();
|
|
||||||
int minY = min.getBlockY();
|
|
||||||
int minZ = min.getBlockZ();
|
|
||||||
int maxX = max.getBlockX();
|
|
||||||
int maxY = max.getBlockY();
|
|
||||||
int maxZ = max.getBlockZ();
|
|
||||||
|
|
||||||
for (int x = minX; x <= maxX; ++x) {
|
|
||||||
for (int y = minY; y <= maxY; ++y) {
|
|
||||||
for (int z = minZ; z <= maxZ; ++z) {
|
|
||||||
Vector pt = new Vector(x, y, z);
|
|
||||||
|
|
||||||
BlockType type = getBlock(pt).getBlockType();
|
|
||||||
|
|
||||||
if (map.containsKey(type)) {
|
|
||||||
map.get(type).increment();
|
|
||||||
} else {
|
|
||||||
Countable<BlockType> c = new Countable<>(type, 1);
|
|
||||||
map.put(type, c);
|
|
||||||
distribution.add(c);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
for (Vector pt : region) {
|
|
||||||
BlockType type = getBlock(pt).getBlockType();
|
|
||||||
|
|
||||||
if (map.containsKey(type)) {
|
|
||||||
map.get(type).increment();
|
|
||||||
} else {
|
|
||||||
Countable<BlockType> c = new Countable<>(type, 1);
|
|
||||||
map.put(type, c);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Collections.sort(distribution);
|
|
||||||
// Collections.reverse(distribution);
|
|
||||||
|
|
||||||
return distribution;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the block distribution (with data values) inside a region.
|
|
||||||
*
|
|
||||||
* @param region a region
|
|
||||||
* @return the results
|
|
||||||
*/
|
|
||||||
// TODO reduce code duplication - probably during ops-redux
|
|
||||||
public List<Countable<BlockStateHolder>> getBlockDistributionWithData(Region region) {
|
|
||||||
List<Countable<BlockStateHolder>> distribution = new ArrayList<>();
|
|
||||||
Map<BlockStateHolder, Countable<BlockStateHolder>> map = new HashMap<>();
|
|
||||||
|
|
||||||
if (region instanceof CuboidRegion) {
|
|
||||||
// Doing this for speed
|
|
||||||
Vector min = region.getMinimumPoint();
|
|
||||||
Vector max = region.getMaximumPoint();
|
|
||||||
|
|
||||||
int minX = min.getBlockX();
|
|
||||||
int minY = min.getBlockY();
|
|
||||||
int minZ = min.getBlockZ();
|
|
||||||
int maxX = max.getBlockX();
|
|
||||||
int maxY = max.getBlockY();
|
|
||||||
int maxZ = max.getBlockZ();
|
|
||||||
|
|
||||||
for (int x = minX; x <= maxX; ++x) {
|
|
||||||
for (int y = minY; y <= maxY; ++y) {
|
|
||||||
for (int z = minZ; z <= maxZ; ++z) {
|
|
||||||
Vector pt = new Vector(x, y, z);
|
|
||||||
|
|
||||||
BlockStateHolder blk = getBlock(pt);
|
|
||||||
|
|
||||||
if (map.containsKey(blk)) {
|
|
||||||
map.get(blk).increment();
|
|
||||||
} else {
|
|
||||||
Countable<BlockStateHolder> c = new Countable<>(blk, 1);
|
|
||||||
map.put(blk, c);
|
|
||||||
distribution.add(c);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
for (Vector pt : region) {
|
|
||||||
BlockStateHolder blk = getBlock(pt);
|
|
||||||
|
|
||||||
if (map.containsKey(blk)) {
|
|
||||||
map.get(blk).increment();
|
|
||||||
} else {
|
|
||||||
Countable<BlockStateHolder> c = new Countable<>(blk, 1);
|
|
||||||
map.put(blk, c);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Collections.sort(distribution);
|
|
||||||
// Collections.reverse(distribution);
|
|
||||||
|
|
||||||
return distribution;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public int makeShape(final Region region, final Vector zero, final Vector unit, final Pattern pattern, final String expressionString, final boolean hollow) throws ExpressionException, MaxChangedBlocksException {
|
public int makeShape(final Region region, final Vector zero, final Vector unit, final Pattern pattern, final String expressionString, final boolean hollow) throws ExpressionException, MaxChangedBlocksException {
|
||||||
|
@ -662,49 +662,40 @@ public class SelectionCommands {
|
|||||||
|
|
||||||
int size;
|
int size;
|
||||||
boolean useData = args.hasFlag('d');
|
boolean useData = args.hasFlag('d');
|
||||||
List<Countable<BlockType>> distribution = null;
|
List<Countable<BlockStateHolder>> distribution;
|
||||||
List<Countable<BlockStateHolder>> distributionData = null;
|
|
||||||
|
|
||||||
if (args.hasFlag('c')) {
|
if (args.hasFlag('c')) {
|
||||||
// TODO: Update for new clipboard
|
// TODO: Update for new clipboard
|
||||||
throw new CommandException("Needs to be re-written again");
|
throw new CommandException("Needs to be re-written again");
|
||||||
} else {
|
} else {
|
||||||
if (useData) {
|
distribution = editSession.getBlockDistribution(session.getSelection(player.getWorld()), !useData);
|
||||||
distributionData = editSession.getBlockDistributionWithData(session.getSelection(player.getWorld()));
|
|
||||||
} else {
|
|
||||||
distribution = editSession.getBlockDistribution(session.getSelection(player.getWorld()));
|
|
||||||
}
|
|
||||||
size = session.getSelection(player.getWorld()).getArea();
|
size = session.getSelection(player.getWorld()).getArea();
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((useData && distributionData.size() <= 0) || (!useData && distribution.size() <= 0)) { // *Should* always be false
|
if (distribution.isEmpty()) { // *Should* always be false
|
||||||
player.printError("No blocks counted.");
|
player.printError("No blocks counted.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
player.print("# total blocks: " + size);
|
player.print("# total blocks: " + size);
|
||||||
|
|
||||||
if (useData) {
|
for (Countable<BlockStateHolder> c : distribution) {
|
||||||
for (Countable<BlockStateHolder> c : distributionData) {
|
String name = c.getID().getBlockType().getName();
|
||||||
String name = c.getID().getBlockType().getName();
|
String str;
|
||||||
String str = String.format("%-7s (%.3f%%) %s #%s%s",
|
if (useData) {
|
||||||
|
str = String.format("%-7s (%.3f%%) %s #%s",
|
||||||
String.valueOf(c.getAmount()),
|
String.valueOf(c.getAmount()),
|
||||||
c.getAmount() / (double) size * 100,
|
c.getAmount() / (double) size * 100,
|
||||||
name,
|
name,
|
||||||
c.getID().getBlockType().getId(),
|
c.getID().getAsString());
|
||||||
c.getID().getStates());
|
} else {
|
||||||
player.print(str);
|
str = String.format("%-7s (%.3f%%) %s #%s",
|
||||||
}
|
|
||||||
} else {
|
|
||||||
for (Countable<BlockType> c : distribution) {
|
|
||||||
String name = c.getID().getName();
|
|
||||||
String str = String.format("%-7s (%.3f%%) %s #%s",
|
|
||||||
String.valueOf(c.getAmount()),
|
String.valueOf(c.getAmount()),
|
||||||
c.getAmount() / (double) size * 100,
|
c.getAmount() / (double) size * 100,
|
||||||
name,
|
name,
|
||||||
c.getID().getId());
|
c.getID().getBlockType().getId());
|
||||||
player.print(str);
|
|
||||||
}
|
}
|
||||||
|
player.print(str);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -0,0 +1,77 @@
|
|||||||
|
/*
|
||||||
|
* WorldEdit, a Minecraft world manipulation toolkit
|
||||||
|
* Copyright (C) sk89q <http://www.sk89q.com>
|
||||||
|
* Copyright (C) WorldEdit team and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify it
|
||||||
|
* under the terms of the GNU Lesser General Public License as published by the
|
||||||
|
* Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
|
||||||
|
* for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.sk89q.worldedit.function.block;
|
||||||
|
|
||||||
|
import com.sk89q.worldedit.Vector;
|
||||||
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
|
import com.sk89q.worldedit.function.RegionFunction;
|
||||||
|
import com.sk89q.worldedit.util.Countable;
|
||||||
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
|
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public class BlockDistributionCounter implements RegionFunction {
|
||||||
|
|
||||||
|
private Extent extent;
|
||||||
|
private boolean fuzzy;
|
||||||
|
|
||||||
|
private List<Countable<BlockStateHolder>> distribution = new ArrayList<>();
|
||||||
|
private Map<BlockStateHolder, Countable<BlockStateHolder>> map = new HashMap<>();
|
||||||
|
|
||||||
|
public BlockDistributionCounter(Extent extent, boolean fuzzy) {
|
||||||
|
this.extent = extent;
|
||||||
|
this.fuzzy = fuzzy;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Vector position) throws WorldEditException {
|
||||||
|
BlockStateHolder blk = extent.getBlock(position);
|
||||||
|
if (fuzzy) {
|
||||||
|
blk = ((BlockState) blk).toFuzzy();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (map.containsKey(blk)) {
|
||||||
|
map.get(blk).increment();
|
||||||
|
} else {
|
||||||
|
Countable<BlockStateHolder> c = new Countable<>(blk, 1);
|
||||||
|
map.put(blk, c);
|
||||||
|
distribution.add(c);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the distribution list.
|
||||||
|
*
|
||||||
|
* @return The distribution
|
||||||
|
*/
|
||||||
|
public List<Countable<BlockStateHolder>> getDistribution() {
|
||||||
|
Collections.sort(distribution);
|
||||||
|
Collections.reverse(distribution);
|
||||||
|
return this.distribution;
|
||||||
|
}
|
||||||
|
}
|
@ -142,8 +142,7 @@ public class BaseBlock implements BlockStateHolder<BaseBlock>, TileEntityBlock {
|
|||||||
|
|
||||||
final BaseBlock otherBlock = (BaseBlock) o;
|
final BaseBlock otherBlock = (BaseBlock) o;
|
||||||
|
|
||||||
return Objects.equals(this.toImmutableState(), otherBlock.toImmutableState()) && Objects.equals(getNbtData(), otherBlock.getNbtData());
|
return this.toImmutableState().equalsFuzzy(otherBlock.toImmutableState()) && Objects.equals(getNbtData(), otherBlock.getNbtData());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -239,4 +239,18 @@ public class BlockState implements BlockStateHolder<BlockState> {
|
|||||||
public String toString() {
|
public String toString() {
|
||||||
return getAsString();
|
return getAsString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean equals(Object obj) {
|
||||||
|
if (!(obj instanceof BlockState)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return equalsFuzzy((BlockState) obj);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int hashCode() {
|
||||||
|
return Objects.hash(blockType, values, fuzzy);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren