Added negated block type support.

This commit is contained in:
sk89q 2011-02-18 23:33:55 -08:00
parent 8680a9e6bd
commit 498f3d9ef1
2 changed files with 61 additions and 1 deletions

View File

@ -41,6 +41,7 @@ import com.sk89q.worldedit.tools.Tool;
import com.sk89q.worldedit.tools.TraceTool;
import com.sk89q.worldedit.masks.BlockTypeMask;
import com.sk89q.worldedit.masks.ExistingBlockMask;
import com.sk89q.worldedit.masks.InvertedBlockTypeMask;
import com.sk89q.worldedit.masks.Mask;
import com.sk89q.worldedit.patterns.*;
@ -375,7 +376,12 @@ public class WorldEdit {
throw new UnknownItemException(list);
}
} else {
return new BlockTypeMask(getBlockIDs(player, list, true));
if (list.charAt(0) == '!' && list.length() > 1) {
return new InvertedBlockTypeMask(
getBlockIDs(player, list.substring(1), true));
} else {
return new BlockTypeMask(getBlockIDs(player, list, true));
}
}
}

View File

@ -0,0 +1,54 @@
// $Id$
/*
* WorldEdit
* Copyright (C) 2010, 2011 sk89q <http://www.sk89q.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.sk89q.worldedit.masks;
import java.util.Set;
import com.sk89q.worldedit.EditSession;
import com.sk89q.worldedit.Vector;
/**
* A block type mask that only matches blocks that are not in the list.
*
* @author sk89q
*/
public class InvertedBlockTypeMask extends BlockTypeMask {
public InvertedBlockTypeMask() {
}
/**
* @param types
*/
public InvertedBlockTypeMask(Set<Integer> types) {
super(types);
}
/**
* @param type
*/
public InvertedBlockTypeMask(int type) {
super(type);
}
@Override
public boolean matches(EditSession editSession, Vector pos) {
return !types.contains(editSession.getBlockType(pos));
}
}