Fix replace patterns

Fixes #445 #440 #372
This commit is contained in:
dordsor21 2020-05-06 15:50:57 +01:00
parent 3abf964620
commit 0c539b4e84
3 changed files with 46 additions and 21 deletions

View File

@ -237,6 +237,7 @@ public class DefaultBlockParser extends InputParser<BaseBlock> {
private BaseBlock parseLogic(String input, ParserContext context) throws InputParseException {
String[] blockAndExtraData = input.trim().split("\\|", 2);
blockAndExtraData[0] = woolMapper(blockAndExtraData[0]);
Map<Property<?>, Object> blockStates = new HashMap<>();
BlockState state = null;
@ -287,6 +288,10 @@ public class DefaultBlockParser extends InputParser<BaseBlock> {
}
stateString = blockAndExtraData[0].substring(stateStart + 1, blockAndExtraData[0].length() - 1);
}
String[] stateProperties = EMPTY_STRING_ARRAY;
if(stateString != null) {
stateProperties = stateString.split(",");
}
if (typeString.isEmpty()) {
throw new InputParseException("Invalid format");
}
@ -319,7 +324,7 @@ public class DefaultBlockParser extends InputParser<BaseBlock> {
}
Player player = (Player) actor;
BlockBag bag = player.getInventoryBlockBag();
if (bag == null || !(bag instanceof SlottableBlockBag)) {
if (!(bag instanceof SlottableBlockBag)) {
throw new InputParseException("Unsupported!");
}
SlottableBlockBag slottable = (SlottableBlockBag) bag;
@ -341,25 +346,21 @@ public class DefaultBlockParser extends InputParser<BaseBlock> {
"Does not match a valid block type: '" + input + "'");
}
}
if (nbt == null) nbt = state.getNbtData();
if (stateString != null) {
state = BlockState.get(state.getBlockType(), "[" + stateString + "]", state);
if (nbt == null) {
nbt = state.getNbtData();
}
blockStates.putAll(parseProperties(state.getBlockType(), stateProperties, context));
if (context.isPreferringWildcard()) {
if (stateString == null || stateString.isEmpty()) {
state = new FuzzyBlockState(state);
} else {
BlockType blockType = state.getBlockType();
FuzzyBlockState.Builder fuzzyBuilder = FuzzyBlockState.builder();
fuzzyBuilder.type(blockType);
String[] entries = stateString.split(",");
for (String entry : entries) {
String[] split = entry.split("=");
String key = split[0];
String val = split[1];
Property<Object> prop = blockType.getProperty(key);
fuzzyBuilder.withProperty(prop, prop.getValueFor(val));
fuzzyBuilder.type(state.getBlockType());
for (Map.Entry<Property<?>, Object> blockState : blockStates.entrySet()) {
@SuppressWarnings("unchecked")
Property<Object> objProp = (Property<Object>) blockState.getKey();
fuzzyBuilder.withProperty(objProp, blockState.getValue());
}
state = fuzzyBuilder.build();
}
@ -390,7 +391,9 @@ public class DefaultBlockParser extends InputParser<BaseBlock> {
}
}
if (nbt != null) return validate(context, state.toBaseBlock(nbt));
if (nbt != null) {
return validate(context, state.toBaseBlock(nbt));
}
if (blockType == BlockTypes.SIGN || blockType == BlockTypes.WALL_SIGN
|| BlockCategories.SIGNS.contains(blockType)) {

View File

@ -29,6 +29,7 @@ import com.sk89q.worldedit.world.block.BlockState;
import com.sk89q.worldedit.world.block.BlockType;
import com.sk89q.worldedit.world.block.BlockTypes;
import com.sk89q.worldedit.world.block.BlockTypesCache;
import com.sk89q.worldedit.world.block.ImmutableBaseBlock;
import java.util.Arrays;
import java.util.Collection;
@ -154,7 +155,13 @@ public class BlockMask extends ABlockMask {
public void add(Collection<BaseBlock> blocks) {
checkNotNull(blocks);
for (BaseBlock block : blocks) {
add(block.toBlockState());
if (block instanceof ImmutableBaseBlock) {
for (BlockState state : block.getBlockType().getAllStates()) {
ordinals[state.getOrdinal()] = true;
}
} else {
add(block.toBlockState());
}
}
}

View File

@ -19,8 +19,6 @@
package com.sk89q.worldedit.world.block;
import static com.google.common.base.Preconditions.checkNotNull;
import com.sk89q.worldedit.registry.state.Property;
import com.sk89q.worldedit.registry.state.PropertyKey;
@ -29,6 +27,8 @@ import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import static com.google.common.base.Preconditions.checkNotNull;
/**
* A Fuzzy BlockState. Used for partial matching.
*
@ -37,6 +37,7 @@ import java.util.Objects;
public class FuzzyBlockState extends BlockState {
private final Map<PropertyKey, Object> props;
private final Map<Property<?>, Object> values;
FuzzyBlockState(BlockType blockType) {
this(blockType.getDefaultState(), null);
@ -50,12 +51,15 @@ public class FuzzyBlockState extends BlockState {
super(state.getBlockType(), state.getInternalId(), state.getOrdinal());
if (values == null || values.isEmpty()) {
props = Collections.emptyMap();
this.values = Collections.emptyMap();
} else {
props = new HashMap<>(values.size());
for (Map.Entry<Property<?>, Object> entry : values.entrySet()) {
props.put(entry.getKey().getKey(), entry.getValue());
}
this.values = new HashMap<>(values);
}
}
/**
@ -89,9 +93,15 @@ public class FuzzyBlockState extends BlockState {
return true;
}
@Override
public BaseBlock toBaseBlock() {
return new BaseBlock(this);
@Override public BaseBlock toBaseBlock() {
if (props == null || props.isEmpty()) {
return super.toBaseBlock();
}
BlockState state = this;
for (Map.Entry<PropertyKey, Object> entry : props.entrySet()) {
state = state.with(entry.getKey(), entry.getValue());
}
return new BaseBlock(state);
}
@Override
@ -99,6 +109,11 @@ public class FuzzyBlockState extends BlockState {
return getFullState();
}
@Override
public Map<Property<?>, Object> getStates() {
return values;
}
/**
* Gets an instance of a builder.
*