2010-10-13 23:49:35 +00:00
|
|
|
// $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/>.
|
|
|
|
*/
|
|
|
|
|
2010-10-14 08:31:05 +00:00
|
|
|
package com.sk89q.worldedit.blocks;
|
2010-10-13 23:49:35 +00:00
|
|
|
|
2011-08-26 10:41:31 +00:00
|
|
|
import com.sk89q.worldedit.CuboidClipboard.FlipDirection;
|
2011-01-30 07:10:12 +00:00
|
|
|
import com.sk89q.worldedit.data.BlockData;
|
|
|
|
|
2010-10-13 23:49:35 +00:00
|
|
|
/**
|
|
|
|
* Represents a block.
|
|
|
|
*
|
|
|
|
* @author sk89q
|
|
|
|
*/
|
|
|
|
public class BaseBlock {
|
|
|
|
/**
|
|
|
|
* BaseBlock type.
|
|
|
|
*/
|
|
|
|
private short type = 0;
|
|
|
|
/**
|
|
|
|
* BaseBlock data.
|
|
|
|
*/
|
2011-08-29 12:43:56 +00:00
|
|
|
private byte data = 0;
|
2010-10-13 23:49:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct the block with its type.
|
|
|
|
*
|
|
|
|
* @param type
|
|
|
|
*/
|
|
|
|
public BaseBlock(int type) {
|
|
|
|
this.type = (short)type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct the block with its type and data.
|
|
|
|
*
|
|
|
|
* @param type
|
2011-02-18 23:49:50 +00:00
|
|
|
* @param data
|
2010-10-13 23:49:35 +00:00
|
|
|
*/
|
|
|
|
public BaseBlock(int type, int data) {
|
|
|
|
this.type = (short)type;
|
2011-08-29 12:43:56 +00:00
|
|
|
this.data = (byte)data;
|
2010-10-13 23:49:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the type
|
|
|
|
*/
|
2011-01-16 17:39:11 +00:00
|
|
|
public int getType() {
|
2010-10-13 23:49:35 +00:00
|
|
|
return (int)type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param type the type to set
|
|
|
|
*/
|
|
|
|
public void setType(int type) {
|
|
|
|
this.type = (short)type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the data
|
|
|
|
*/
|
|
|
|
public int getData() {
|
|
|
|
return (int)data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param data the data to set
|
|
|
|
*/
|
|
|
|
public void setData(int data) {
|
2011-08-29 12:43:56 +00:00
|
|
|
this.data = (byte)data;
|
2010-10-13 23:49:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if it's air.
|
|
|
|
*
|
|
|
|
* @return if air
|
|
|
|
*/
|
|
|
|
public boolean isAir() {
|
|
|
|
return type == 0;
|
|
|
|
}
|
2011-01-30 07:10:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Rotate this block 90 degrees.
|
|
|
|
*/
|
|
|
|
public void rotate90() {
|
2011-08-29 12:43:56 +00:00
|
|
|
data = (byte)BlockData.rotate90(type, data);
|
2011-01-30 07:10:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Rotate this block -90 degrees.
|
|
|
|
*/
|
|
|
|
public void rotate90Reverse() {
|
2011-08-29 12:43:56 +00:00
|
|
|
data = (byte)BlockData.rotate90Reverse(type, data);
|
2011-01-30 07:10:12 +00:00
|
|
|
}
|
|
|
|
|
2011-09-03 16:54:20 +00:00
|
|
|
/**
|
|
|
|
* Flip this block.
|
|
|
|
*/
|
|
|
|
public BaseBlock flip() {
|
|
|
|
data = (byte) BlockData.flip(type, data);
|
|
|
|
return this;
|
|
|
|
}
|
2011-01-30 07:10:12 +00:00
|
|
|
/**
|
|
|
|
* Flip this block.
|
2011-08-26 10:41:31 +00:00
|
|
|
* @param direction
|
2011-01-30 07:10:12 +00:00
|
|
|
*/
|
2011-09-03 16:54:20 +00:00
|
|
|
public BaseBlock flip(FlipDirection direction) {
|
|
|
|
data = (byte) BlockData.flip(type, data, direction);
|
|
|
|
return this;
|
2011-01-30 07:10:12 +00:00
|
|
|
}
|
2011-08-29 06:57:07 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean equals(Object o) {
|
|
|
|
if (!(o instanceof BaseBlock)) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-09-18 04:50:06 +00:00
|
|
|
return (type == ((BaseBlock)o).type)
|
|
|
|
&& (data == ((BaseBlock)o).data || data == -1 || ((BaseBlock)o).data == -1);
|
2011-08-29 06:57:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
return "BaseBlock id: " + getType() + " with damage: " + getData();
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean inIterable(Iterable<BaseBlock> iter) {
|
|
|
|
for (BaseBlock block : iter) {
|
|
|
|
if (block.equals(this)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2010-10-13 23:49:35 +00:00
|
|
|
}
|