mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 09:47:38 +00:00
Added a clipboard pattern.
This commit is contained in:
parent
a7b457c35c
commit
f7fe72311b
@ -268,6 +268,18 @@ public class CuboidClipboard {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get one point in the copy. The point is relative to the origin
|
||||||
|
* of the copy (0, 0, 0) and not to the actual copy origin.
|
||||||
|
*
|
||||||
|
* @param pos
|
||||||
|
* @return null
|
||||||
|
* @throws ArrayIndexOutOfBoundsException
|
||||||
|
*/
|
||||||
|
public BaseBlock getPoint(Vector pos) throws ArrayIndexOutOfBoundsException {
|
||||||
|
return data[pos.getBlockX()][pos.getBlockY()][pos.getBlockZ()];
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the size of the copy.
|
* Get the size of the copy.
|
||||||
*
|
*
|
||||||
|
@ -287,6 +287,20 @@ public class WorldEdit {
|
|||||||
|
|
||||||
String[] items = list.split(",");
|
String[] items = list.split(",");
|
||||||
|
|
||||||
|
if (list.equals("#clipboard") || list.equals("#copy")) {
|
||||||
|
LocalSession session = getSession(player);
|
||||||
|
CuboidClipboard clipboard;
|
||||||
|
|
||||||
|
try {
|
||||||
|
clipboard = session.getClipboard();
|
||||||
|
} catch (EmptyClipboardException e) {
|
||||||
|
player.printError("Copy a selection first with //copy.");
|
||||||
|
throw new UnknownItemException("#clipboard");
|
||||||
|
}
|
||||||
|
|
||||||
|
return new ClipboardPattern(clipboard);
|
||||||
|
}
|
||||||
|
|
||||||
if (items.length == 1) {
|
if (items.length == 1) {
|
||||||
return new SingleBlockPattern(getBlock(player, items[0]));
|
return new SingleBlockPattern(getBlock(player, items[0]));
|
||||||
}
|
}
|
||||||
|
63
src/com/sk89q/worldedit/patterns/ClipboardPattern.java
Normal file
63
src/com/sk89q/worldedit/patterns/ClipboardPattern.java
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
// $Id$
|
||||||
|
/*
|
||||||
|
* WorldEdit
|
||||||
|
* Copyright (C) 2010 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.patterns;
|
||||||
|
|
||||||
|
import com.sk89q.worldedit.*;
|
||||||
|
import com.sk89q.worldedit.blocks.BaseBlock;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pattern that repeats the clipboard.
|
||||||
|
*
|
||||||
|
* @author sk89q
|
||||||
|
*/
|
||||||
|
public class ClipboardPattern implements Pattern {
|
||||||
|
/**
|
||||||
|
* Clipboard.
|
||||||
|
*/
|
||||||
|
private CuboidClipboard clipboard;
|
||||||
|
/**
|
||||||
|
* Size of the clipboard.
|
||||||
|
*/
|
||||||
|
private Vector size;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Construct the object.
|
||||||
|
*
|
||||||
|
* @param blockType
|
||||||
|
*/
|
||||||
|
public ClipboardPattern(CuboidClipboard clipboard) {
|
||||||
|
this.clipboard = clipboard;
|
||||||
|
this.size = clipboard.getSize();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get next block.
|
||||||
|
*
|
||||||
|
* @param pos
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public BaseBlock next(Vector pos) {
|
||||||
|
int x = Math.abs(pos.getBlockX()) % size.getBlockX();
|
||||||
|
int y = Math.abs(pos.getBlockY()) % size.getBlockY();
|
||||||
|
int z = Math.abs(pos.getBlockZ()) % size.getBlockZ();
|
||||||
|
|
||||||
|
return clipboard.getPoint(new Vector(x, y, z));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user