Update favs
This commit is contained in:
328
favs/src/main/java/com/thevoxelbox/voxelsniper/SnipeData.java
Normal file
328
favs/src/main/java/com/thevoxelbox/voxelsniper/SnipeData.java
Normal file
@@ -0,0 +1,328 @@
|
||||
/**
|
||||
This file is part of VoxelSniper, licensed under the MIT License (MIT).
|
||||
|
||||
Copyright (c) The VoxelBox <http://thevoxelbox.com>
|
||||
Copyright (c) contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
*/
|
||||
package com.thevoxelbox.voxelsniper;
|
||||
|
||||
import com.sk89q.worldedit.WorldEdit;
|
||||
import com.sk89q.worldedit.extent.Extent;
|
||||
import com.sk89q.worldedit.function.pattern.Pattern;
|
||||
import com.sk89q.worldedit.world.block.BlockTypes;
|
||||
import com.thevoxelbox.voxelsniper.util.VoxelList;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.World;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
/**
|
||||
* @author Piotr
|
||||
*/
|
||||
public class SnipeData {
|
||||
|
||||
public static final int DEFAULT_REPLACE_DATA_VALUE = 0;
|
||||
public static final int DEFAULT_CYLINDER_CENTER = 0;
|
||||
public static final int DEFAULT_VOXEL_HEIGHT = 1;
|
||||
public static final int DEFAULT_BRUSH_SIZE = 3;
|
||||
public static final int DEFAULT_DATA_VALUE = 0;
|
||||
public static final int DEFAULT_REPLACE_ID = BlockTypes.AIR.getInternalId();
|
||||
public static final int DEFAULT_VOXEL_ID = BlockTypes.AIR.getInternalId();
|
||||
|
||||
private final Sniper owner;
|
||||
private Message voxelMessage;
|
||||
/**
|
||||
* Brush size -- set blockPositionY /b #.
|
||||
*/
|
||||
private int brushSize = SnipeData.DEFAULT_BRUSH_SIZE;
|
||||
/**
|
||||
* Voxel Id -- set blockPositionY /v (#,name).
|
||||
*/
|
||||
private int voxelId = SnipeData.DEFAULT_VOXEL_ID;
|
||||
/**
|
||||
* Voxel Replace Id -- set blockPositionY /vr #.
|
||||
*/
|
||||
private int replaceId = SnipeData.DEFAULT_REPLACE_ID;
|
||||
/**
|
||||
* Voxel 'ink' -- set blockPositionY /vi #.
|
||||
*/
|
||||
private int data = SnipeData.DEFAULT_DATA_VALUE;
|
||||
/**
|
||||
* Voxel 'ink' Replace -- set blockPositionY /vir #.
|
||||
*/
|
||||
private int replaceData = SnipeData.DEFAULT_REPLACE_DATA_VALUE;
|
||||
/**
|
||||
* Voxel List of ID's -- set blockPositionY /vl # # # -#.
|
||||
*/
|
||||
private VoxelList voxelList = new VoxelList();
|
||||
/**
|
||||
* Voxel 'heigth' -- set blockPositionY /vh #.
|
||||
*/
|
||||
private int voxelHeight = SnipeData.DEFAULT_VOXEL_HEIGHT;
|
||||
/**
|
||||
* Voxel centroid -- set Cylynder center /vc #.
|
||||
*/
|
||||
private int cCen = SnipeData.DEFAULT_CYLINDER_CENTER;
|
||||
private int range = 0;
|
||||
private boolean ranged = false;
|
||||
private boolean lightning = false;
|
||||
private Extent extent;
|
||||
private Pattern pattern;
|
||||
private String patternInfo;
|
||||
|
||||
/**
|
||||
* @param vs
|
||||
*/
|
||||
public SnipeData(final Sniper vs) {
|
||||
this.owner = vs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the extent currently being used to set blocks
|
||||
* @return
|
||||
*/
|
||||
public Extent getExtent() {
|
||||
return extent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the extent currently being used to set blocks
|
||||
* @param extent
|
||||
*/
|
||||
public void setExtent(Extent extent) {
|
||||
this.extent = extent;
|
||||
}
|
||||
|
||||
public void setPattern(Pattern pattern, String info) {
|
||||
if (pattern != null) {
|
||||
if (info == null) info = "";
|
||||
} else {
|
||||
info = null;
|
||||
}
|
||||
this.pattern = pattern;
|
||||
this.patternInfo = info;
|
||||
}
|
||||
|
||||
public Pattern getPattern() {
|
||||
return pattern;
|
||||
}
|
||||
|
||||
public String getPatternInfo() {
|
||||
return patternInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the brushSize
|
||||
*/
|
||||
public final int getBrushSize() {
|
||||
return this.brushSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the cCen
|
||||
*/
|
||||
public final int getcCen() {
|
||||
return this.cCen;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the data
|
||||
*/
|
||||
public final int getPropertyId() {
|
||||
return this.data;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the replaceData
|
||||
*/
|
||||
public final int getReplaceData() {
|
||||
return this.replaceData;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the replaceId
|
||||
*/
|
||||
public final int getReplaceId() {
|
||||
return this.replaceId;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the voxelHeight
|
||||
*/
|
||||
public final int getVoxelHeight() {
|
||||
return this.voxelHeight;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the voxelId
|
||||
*/
|
||||
public final int getVoxelId() {
|
||||
return this.voxelId;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the voxelList
|
||||
*/
|
||||
public final VoxelList getVoxelList() {
|
||||
return this.voxelList;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the voxelMessage
|
||||
*/
|
||||
public final Message getVoxelMessage() {
|
||||
return this.voxelMessage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return World
|
||||
*/
|
||||
public final World getWorld() {
|
||||
return this.owner.getWorld(); // Changed
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Sniper
|
||||
*/
|
||||
public final Sniper owner() {
|
||||
return this.owner;
|
||||
}
|
||||
|
||||
/**
|
||||
* Reset to default values.
|
||||
*/
|
||||
public final void reset() {
|
||||
this.voxelId = SnipeData.DEFAULT_VOXEL_ID;
|
||||
this.replaceId = SnipeData.DEFAULT_REPLACE_ID;
|
||||
this.data = SnipeData.DEFAULT_DATA_VALUE;
|
||||
this.brushSize = SnipeData.DEFAULT_BRUSH_SIZE;
|
||||
this.voxelHeight = SnipeData.DEFAULT_VOXEL_HEIGHT;
|
||||
this.cCen = SnipeData.DEFAULT_CYLINDER_CENTER;
|
||||
this.replaceData = SnipeData.DEFAULT_REPLACE_DATA_VALUE;
|
||||
this.voxelList = new VoxelList();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param message
|
||||
*/
|
||||
public final void sendMessage(final String message) {
|
||||
this.owner.getPlayer().sendMessage(message);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param brushSize the brushSize to set
|
||||
*/
|
||||
public final void setBrushSize(final int brushSize) {
|
||||
this.brushSize = brushSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param cCen the cCen to set
|
||||
*/
|
||||
public final void setcCen(final int cCen) {
|
||||
this.cCen = cCen;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param data the data to set
|
||||
*/
|
||||
public final void setData(final int data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param replaceData the replaceData to set
|
||||
*/
|
||||
public final void setReplaceData(final int replaceData) {
|
||||
this.replaceData = replaceData;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param replaceId the replaceId to set
|
||||
*/
|
||||
public final void setReplaceId(final int replaceId) {
|
||||
this.replaceId = replaceId;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param voxelHeight the voxelHeight to set
|
||||
*/
|
||||
public final void setVoxelHeight(final int voxelHeight) {
|
||||
this.voxelHeight = voxelHeight;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param voxelId the voxelId to set
|
||||
*/
|
||||
public final void setVoxelId(final int voxelId) {
|
||||
if (WorldEdit.getInstance().getConfiguration().disallowedBlocks.contains(voxelId)) {
|
||||
if (owner != null) {
|
||||
Player plr = owner.getPlayer();
|
||||
if (plr != null) {
|
||||
plr.sendMessage(ChatColor.RED + "You are not allowed to use '" + voxelId + "'");
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
this.voxelId = voxelId;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param voxelList the voxelList to set
|
||||
*/
|
||||
public final void setVoxelList(final VoxelList voxelList) {
|
||||
this.voxelList = voxelList;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param voxelMessage the voxelMessage to set
|
||||
*/
|
||||
public final void setVoxelMessage(final Message voxelMessage) {
|
||||
this.voxelMessage = voxelMessage;
|
||||
}
|
||||
|
||||
public int getRange() {
|
||||
return range;
|
||||
}
|
||||
|
||||
public void setRange(int range) {
|
||||
this.range = range;
|
||||
}
|
||||
|
||||
public boolean isRanged() {
|
||||
return ranged;
|
||||
}
|
||||
|
||||
public void setRanged(boolean ranged) {
|
||||
this.ranged = ranged;
|
||||
}
|
||||
|
||||
public boolean isLightningEnabled() {
|
||||
return lightning;
|
||||
}
|
||||
|
||||
public void setLightningEnabled(boolean lightning) {
|
||||
this.lightning = lightning;
|
||||
}
|
||||
|
||||
public static Class<?> inject() {
|
||||
return SnipeData.class;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user