Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-10 05:20:04 +01:00
Added negated block type support.
Dieser Commit ist enthalten in:
Ursprung
8680a9e6bd
Commit
498f3d9ef1
@ -41,6 +41,7 @@ import com.sk89q.worldedit.tools.Tool;
|
|||||||
import com.sk89q.worldedit.tools.TraceTool;
|
import com.sk89q.worldedit.tools.TraceTool;
|
||||||
import com.sk89q.worldedit.masks.BlockTypeMask;
|
import com.sk89q.worldedit.masks.BlockTypeMask;
|
||||||
import com.sk89q.worldedit.masks.ExistingBlockMask;
|
import com.sk89q.worldedit.masks.ExistingBlockMask;
|
||||||
|
import com.sk89q.worldedit.masks.InvertedBlockTypeMask;
|
||||||
import com.sk89q.worldedit.masks.Mask;
|
import com.sk89q.worldedit.masks.Mask;
|
||||||
import com.sk89q.worldedit.patterns.*;
|
import com.sk89q.worldedit.patterns.*;
|
||||||
|
|
||||||
@ -374,10 +375,15 @@ public class WorldEdit {
|
|||||||
} else {
|
} else {
|
||||||
throw new UnknownItemException(list);
|
throw new UnknownItemException(list);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
if (list.charAt(0) == '!' && list.length() > 1) {
|
||||||
|
return new InvertedBlockTypeMask(
|
||||||
|
getBlockIDs(player, list.substring(1), true));
|
||||||
} else {
|
} else {
|
||||||
return new BlockTypeMask(getBlockIDs(player, list, true));
|
return new BlockTypeMask(getBlockIDs(player, list, true));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a list of blocks as a set.
|
* Get a list of blocks as a set.
|
||||||
|
54
src/com/sk89q/worldedit/masks/InvertedBlockTypeMask.java
Normale Datei
54
src/com/sk89q/worldedit/masks/InvertedBlockTypeMask.java
Normale Datei
@ -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));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren