Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-08 04:20:06 +01:00
Remove all raw usages of BSH, improve API generics
Dieser Commit ist enthalten in:
Ursprung
1d87642b52
Commit
590b7e23a9
@ -29,7 +29,6 @@ import com.sk89q.worldedit.bukkit.BukkitAdapter;
|
|||||||
import com.sk89q.worldedit.bukkit.adapter.BukkitImplAdapter;
|
import com.sk89q.worldedit.bukkit.adapter.BukkitImplAdapter;
|
||||||
import com.sk89q.worldedit.bukkit.adapter.CachedBukkitAdapter;
|
import com.sk89q.worldedit.bukkit.adapter.CachedBukkitAdapter;
|
||||||
import com.sk89q.worldedit.entity.BaseEntity;
|
import com.sk89q.worldedit.entity.BaseEntity;
|
||||||
import com.sk89q.worldedit.entity.Player;
|
|
||||||
import com.sk89q.worldedit.internal.Constants;
|
import com.sk89q.worldedit.internal.Constants;
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.registry.state.*;
|
import com.sk89q.worldedit.registry.state.*;
|
||||||
@ -53,6 +52,7 @@ import org.bukkit.craftbukkit.v1_13_R2.block.CraftBlock;
|
|||||||
import org.bukkit.craftbukkit.v1_13_R2.block.data.CraftBlockData;
|
import org.bukkit.craftbukkit.v1_13_R2.block.data.CraftBlockData;
|
||||||
import org.bukkit.craftbukkit.v1_13_R2.entity.CraftEntity;
|
import org.bukkit.craftbukkit.v1_13_R2.entity.CraftEntity;
|
||||||
import org.bukkit.entity.EntityType;
|
import org.bukkit.entity.EntityType;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason;
|
import org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
@ -357,7 +357,7 @@ public final class Spigot_v1_13_R2 extends CachedBukkitAdapter implements Bukkit
|
|||||||
|
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
@Override
|
@Override
|
||||||
public Map<String, ? extends Property> getProperties(BlockType blockType) {
|
public Map<String, ? extends Property<?>> getProperties(BlockType blockType) {
|
||||||
Block block;
|
Block block;
|
||||||
try {
|
try {
|
||||||
block = IRegistry.BLOCK.getOrDefault(new MinecraftKey(blockType.getNamespace(), blockType.getResource()));
|
block = IRegistry.BLOCK.getOrDefault(new MinecraftKey(blockType.getNamespace(), blockType.getResource()));
|
||||||
@ -369,7 +369,7 @@ public final class Spigot_v1_13_R2 extends CachedBukkitAdapter implements Bukkit
|
|||||||
logger.warning("Failed to find properties for " + blockType.getId());
|
logger.warning("Failed to find properties for " + blockType.getId());
|
||||||
return Collections.emptyMap();
|
return Collections.emptyMap();
|
||||||
}
|
}
|
||||||
Map<String, Property> properties = Maps.newLinkedHashMap();
|
Map<String, Property<?>> properties = Maps.newLinkedHashMap();
|
||||||
BlockStateList<Block, IBlockData> blockStateList = block.getStates();
|
BlockStateList<Block, IBlockData> blockStateList = block.getStates();
|
||||||
for (IBlockState state : blockStateList.d()) {
|
for (IBlockState state : blockStateList.d()) {
|
||||||
Property property;
|
Property property;
|
||||||
@ -552,6 +552,16 @@ public final class Spigot_v1_13_R2 extends CachedBukkitAdapter implements Bukkit
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notifyAndLightBlock(Location position, BlockState previousType) {
|
public void notifyAndLightBlock(Location position, BlockState previousType) {
|
||||||
|
this.setBlock(position.getChunk(), position.getBlockX(), position.getBlockY(), position.getBlockZ(), previousType, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean setBlock(Location location, BlockStateHolder<?> state, boolean notifyAndLight) {
|
||||||
|
return this.setBlock(location.getChunk(), location.getBlockX(), location.getBlockY(), location.getBlockZ(), state, notifyAndLight);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void sendFakeOP(Player player) {
|
||||||
// TODO Auto-generated method stub
|
// TODO Auto-generated method stub
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -146,8 +146,8 @@ public enum BukkitAdapter {
|
|||||||
return getAdapter().adapt(material);
|
return getAdapter().adapt(material);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static BlockData adapt(BlockStateHolder block) {
|
public static <B extends BlockStateHolder<B>> BlockData adapt(B block) {
|
||||||
return getAdapter().adapt(block);
|
return getAdapter().adapt(block);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static BlockData getBlockData(int combinedId) {
|
public static BlockData getBlockData(int combinedId) {
|
||||||
|
@ -290,4 +290,22 @@ public class BukkitPlayer extends AbstractPlayerActor {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public <B extends BlockStateHolder<B>> void sendFakeBlock(BlockVector3 pos, B block) {
|
||||||
|
Location loc = new Location(player.getWorld(), pos.getX(), pos.getY(), pos.getZ());
|
||||||
|
if (block == null) {
|
||||||
|
player.sendBlockChange(loc, player.getWorld().getBlockAt(loc).getBlockData());
|
||||||
|
} else {
|
||||||
|
player.sendBlockChange(loc, BukkitAdapter.adapt(block));
|
||||||
|
if (block instanceof BaseBlock && ((BaseBlock) block).hasNbtData()) {
|
||||||
|
BukkitImplAdapter adapter = WorldEditPlugin.getInstance().getBukkitImplAdapter();
|
||||||
|
if (adapter != null) {
|
||||||
|
adapter.sendFakeNBT(player, pos, ((BaseBlock) block).getNbtData());
|
||||||
|
if (block.getBlockType() == BlockTypes.STRUCTURE_BLOCK) {
|
||||||
|
adapter.sendFakeOP(player);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -452,7 +452,7 @@ public class BukkitWorld extends AbstractWorld {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 position, BlockStateHolder block, boolean notifyAndLight) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 position, B block, boolean notifyAndLight) throws WorldEditException {
|
||||||
BukkitImplAdapter adapter = WorldEditPlugin.getInstance().getBukkitImplAdapter();
|
BukkitImplAdapter adapter = WorldEditPlugin.getInstance().getBukkitImplAdapter();
|
||||||
if (adapter != null) {
|
if (adapter != null) {
|
||||||
try {
|
try {
|
||||||
|
@ -22,15 +22,10 @@ package com.sk89q.worldedit.bukkit.adapter;
|
|||||||
import com.sk89q.jnbt.Tag;
|
import com.sk89q.jnbt.Tag;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.jnbt.CompoundTag;
|
import com.sk89q.jnbt.CompoundTag;
|
||||||
import com.sk89q.worldedit.world.block.BaseBlock;
|
|
||||||
import com.sk89q.worldedit.entity.BaseEntity;
|
import com.sk89q.worldedit.entity.BaseEntity;
|
||||||
import com.sk89q.worldedit.entity.Player;
|
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.registry.state.Property;
|
import com.sk89q.worldedit.registry.state.Property;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
|
||||||
import com.sk89q.worldedit.entity.BaseEntity;
|
|
||||||
import com.sk89q.worldedit.world.block.BlockType;
|
import com.sk89q.worldedit.world.block.BlockType;
|
||||||
import com.sk89q.worldedit.world.registry.BlockMaterial;
|
import com.sk89q.worldedit.world.registry.BlockMaterial;
|
||||||
|
|
||||||
@ -38,6 +33,7 @@ import org.bukkit.Chunk;
|
|||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.block.Biome;
|
import org.bukkit.block.Biome;
|
||||||
import org.bukkit.entity.Entity;
|
import org.bukkit.entity.Entity;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
@ -76,9 +72,18 @@ public interface BukkitImplAdapter<T> extends IBukkitAdapter {
|
|||||||
*/
|
*/
|
||||||
BlockState getBlock(Location location);
|
BlockState getBlock(Location location);
|
||||||
|
|
||||||
boolean setBlock(Chunk chunk, int x, int y, int z, BlockStateHolder state, boolean update);
|
boolean setBlock(Chunk chunk, int x, int y, int z, BlockStateHolder<?> state, boolean update);
|
||||||
|
|
||||||
boolean isChunkInUse(Chunk chunk);
|
boolean isChunkInUse(Chunk chunk);
|
||||||
|
/**
|
||||||
|
* Set the block at the given location.
|
||||||
|
*
|
||||||
|
* @param location the location
|
||||||
|
* @param state the block
|
||||||
|
* @param notifyAndLight notify and light if set
|
||||||
|
* @return true if a block was likely changed
|
||||||
|
*/
|
||||||
|
boolean setBlock(Location location, BlockStateHolder<?> state, boolean notifyAndLight);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Notifies the simulation that the block at the given location has
|
* Notifies the simulation that the block at the given location has
|
||||||
@ -114,19 +119,11 @@ public interface BukkitImplAdapter<T> extends IBukkitAdapter {
|
|||||||
* @param blockType The block type
|
* @param blockType The block type
|
||||||
* @return The properties map
|
* @return The properties map
|
||||||
*/
|
*/
|
||||||
Map<String, ? extends Property> getProperties(BlockType blockType);
|
Map<String, ? extends Property<?>> getProperties(BlockType blockType);
|
||||||
|
|
||||||
default BlockMaterial getMaterial(BlockType blockType) {
|
default BlockMaterial getMaterial(BlockType blockType) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
* Send the given NBT data to the player.
|
|
||||||
*
|
|
||||||
* @param player The player
|
|
||||||
* @param pos The position
|
|
||||||
* @param nbtData The NBT Data
|
|
||||||
*/
|
|
||||||
void sendFakeNBT(Player player, BlockVector3 pos, CompoundTag nbtData);
|
|
||||||
|
|
||||||
default BlockMaterial getMaterial(BlockState blockState) {
|
default BlockMaterial getMaterial(BlockState blockState) {
|
||||||
return null;
|
return null;
|
||||||
@ -139,4 +136,21 @@ public interface BukkitImplAdapter<T> extends IBukkitAdapter {
|
|||||||
default T fromNative(Tag foreign) {
|
default T fromNative(Tag foreign) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Send the given NBT data to the player.
|
||||||
|
*
|
||||||
|
* @param player The player
|
||||||
|
* @param pos The position
|
||||||
|
* @param nbtData The NBT Data
|
||||||
|
*/
|
||||||
|
void sendFakeNBT(Player player, BlockVector3 pos, CompoundTag nbtData);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Make the client think it has operator status.
|
||||||
|
* This does not give them any operator capabilities.
|
||||||
|
*
|
||||||
|
* @param player The player
|
||||||
|
*/
|
||||||
|
void sendFakeOP(Player player);
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package com.boydti.fawe.object;
|
|||||||
import com.boydti.fawe.FaweCache;
|
import com.boydti.fawe.FaweCache;
|
||||||
import com.boydti.fawe.object.extent.ExtentHeightCacher;
|
import com.boydti.fawe.object.extent.ExtentHeightCacher;
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
@ -40,12 +41,12 @@ public class DataAnglePattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
BlockStateHolder block = extent.getBlock(position);
|
BlockStateHolder block = extent.getBlock(position);
|
||||||
int slope = getSlope(block, position);
|
int slope = getSlope(block, position);
|
||||||
if (slope == -1) return block;
|
if (slope == -1) return block.toBaseBlock();
|
||||||
int data = (Math.min(slope, 255)) >> 4;
|
int data = (Math.min(slope, 255)) >> 4;
|
||||||
return block.withPropertyId(data);
|
return block.withPropertyId(data).toBaseBlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -5,7 +5,7 @@ import com.boydti.fawe.FaweCache;
|
|||||||
import com.boydti.fawe.object.DataAnglePattern;
|
import com.boydti.fawe.object.DataAnglePattern;
|
||||||
import com.boydti.fawe.util.TextureHolder;
|
import com.boydti.fawe.util.TextureHolder;
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
@ -32,14 +32,14 @@ public class AngleColorPattern extends DataAnglePattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
BlockStateHolder block = extent.getBlock(position);
|
BaseBlock block = extent.getFullBlock(position);
|
||||||
int slope = getSlope(block, position);
|
int slope = getSlope(block, position);
|
||||||
if (slope == -1) return block;
|
if (slope == -1) return block;
|
||||||
int color = util.getTextureUtil().getColor(block.getBlockType());
|
int color = util.getTextureUtil().getColor(block.getBlockType());
|
||||||
if (color == 0) return block;
|
if (color == 0) return block;
|
||||||
int newColor = getColor(color, slope);
|
int newColor = getColor(color, slope);
|
||||||
return util.getTextureUtil().getNearestBlock(newColor).getDefaultState();
|
return util.getTextureUtil().getNearestBlock(newColor).getDefaultState().toBaseBlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -4,7 +4,7 @@ import com.boydti.fawe.Fawe;
|
|||||||
import com.boydti.fawe.util.TextureHolder;
|
import com.boydti.fawe.util.TextureHolder;
|
||||||
import com.boydti.fawe.util.TextureUtil;
|
import com.boydti.fawe.util.TextureUtil;
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
@ -26,12 +26,12 @@ public class AverageColorPattern extends AbstractExtentPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
BlockStateHolder block = getExtent().getBlock(position);
|
BaseBlock block = getExtent().getFullBlock(position);
|
||||||
TextureUtil util = holder.getTextureUtil();
|
TextureUtil util = holder.getTextureUtil();
|
||||||
int currentColor = util.getColor(block.getBlockType());
|
int currentColor = util.getColor(block.getBlockType());
|
||||||
int newColor = util.averageColor(currentColor, color);
|
int newColor = util.averageColor(currentColor, color);
|
||||||
return util.getNearestBlock(newColor).getDefaultState();
|
return util.getNearestBlock(newColor).getDefaultState().toBaseBlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -5,7 +5,7 @@ import com.boydti.fawe.object.FawePlayer;
|
|||||||
import com.boydti.fawe.object.collection.LocalBlockVectorSet;
|
import com.boydti.fawe.object.collection.LocalBlockVectorSet;
|
||||||
import com.boydti.fawe.util.FaweTimer;
|
import com.boydti.fawe.util.FaweTimer;
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
@ -33,7 +33,7 @@ public class BufferedPattern extends AbstractPattern implements ResettablePatter
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
return pattern.apply(position);
|
return pattern.apply(position);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.boydti.fawe.object.pattern;
|
package com.boydti.fawe.object.pattern;
|
||||||
|
|
||||||
import com.boydti.fawe.FaweCache;
|
import com.boydti.fawe.FaweCache;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.Pattern;
|
import com.sk89q.worldedit.function.pattern.Pattern;
|
||||||
@ -22,9 +22,9 @@ public class DataPattern extends AbstractExtentPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
BlockStateHolder oldBlock = getExtent().getBlock(position);
|
BaseBlock oldBlock = getExtent().getFullBlock(position);
|
||||||
BlockStateHolder newBlock = pattern.apply(position);
|
BaseBlock newBlock = pattern.apply(position);
|
||||||
return oldBlock.withPropertyId(newBlock.getInternalPropertiesId());
|
return oldBlock.withPropertyId(newBlock.getInternalPropertiesId()).toBaseBlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@ import com.boydti.fawe.Fawe;
|
|||||||
import com.boydti.fawe.util.TextureHolder;
|
import com.boydti.fawe.util.TextureHolder;
|
||||||
import com.boydti.fawe.util.TextureUtil;
|
import com.boydti.fawe.util.TextureUtil;
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
@ -26,7 +26,7 @@ public class DesaturatePattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
BlockType block = extent.getBlockType(position);
|
BlockType block = extent.getBlockType(position);
|
||||||
TextureUtil util = holder.getTextureUtil();
|
TextureUtil util = holder.getTextureUtil();
|
||||||
int color = util.getColor(block);
|
int color = util.getColor(block);
|
||||||
@ -39,7 +39,7 @@ public class DesaturatePattern extends AbstractPattern {
|
|||||||
int green = (int) (g + value * (l - g));
|
int green = (int) (g + value * (l - g));
|
||||||
int blue = (int) (b + value * (l - b));
|
int blue = (int) (b + value * (l - b));
|
||||||
int newColor = (alpha << 24) + (red << 16) + (green << 8) + (blue << 0);
|
int newColor = (alpha << 24) + (red << 16) + (green << 8) + (blue << 0);
|
||||||
return util.getNearestBlock(newColor).getDefaultState();
|
return util.getNearestBlock(newColor).getDefaultState().toBaseBlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.boydti.fawe.object.pattern;
|
package com.boydti.fawe.object.pattern;
|
||||||
|
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
@ -14,8 +14,8 @@ public class ExistingPattern extends AbstractExtentPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
return getExtent().getBlock(position);
|
return getExtent().getFullBlock(position);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package com.boydti.fawe.object.pattern;
|
package com.boydti.fawe.object.pattern;
|
||||||
|
|
||||||
import com.sk89q.worldedit.EditSession;
|
import com.sk89q.worldedit.EditSession;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
import com.sk89q.worldedit.internal.expression.Expression;
|
import com.sk89q.worldedit.internal.expression.Expression;
|
||||||
@ -49,16 +50,16 @@ public class ExpressionPattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 vector) {
|
public BaseBlock apply(BlockVector3 vector) {
|
||||||
try {
|
try {
|
||||||
if (expression.getEnvironment() instanceof WorldEditExpressionEnvironment) {
|
if (expression.getEnvironment() instanceof WorldEditExpressionEnvironment) {
|
||||||
((WorldEditExpressionEnvironment) expression.getEnvironment()).setCurrentBlock(vector.toVector3());
|
((WorldEditExpressionEnvironment) expression.getEnvironment()).setCurrentBlock(vector.toVector3());
|
||||||
}
|
}
|
||||||
double combined = expression.evaluate(vector.getX(), vector.getY(), vector.getZ());
|
double combined = expression.evaluate(vector.getX(), vector.getY(), vector.getZ());
|
||||||
return BlockState.getFromInternalId((int) combined);
|
return BlockState.getFromInternalId((int) combined).toBaseBlock();
|
||||||
} catch (EvaluationException e) {
|
} catch (EvaluationException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
return EditSession.nullBlock;
|
return EditSession.nullBlock.toBaseBlock();
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
throw e;
|
throw e;
|
||||||
|
@ -21,11 +21,11 @@ public class IdDataMaskPattern extends AbstractExtentPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
BlockStateHolder oldBlock = getExtent().getBlock(position);
|
BaseBlock oldBlock = getExtent().getFullBlock(position);
|
||||||
BlockStateHolder newBlock = pattern.apply(position);
|
BaseBlock newBlock = pattern.apply(position);
|
||||||
int oldData = oldBlock.getInternalPropertiesId();
|
int oldData = oldBlock.getInternalPropertiesId();
|
||||||
int newData = newBlock.getInternalPropertiesId() + oldData - (oldData & bitMask);
|
int newData = newBlock.getInternalPropertiesId() + oldData - (oldData & bitMask);
|
||||||
return newBlock.withPropertyId(newData);
|
return newBlock.withPropertyId(newData).toBaseBlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -3,6 +3,7 @@ package com.boydti.fawe.object.pattern;
|
|||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.Pattern;
|
import com.sk89q.worldedit.function.pattern.Pattern;
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
@ -17,9 +18,9 @@ public class IdPattern extends AbstractExtentPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
BlockStateHolder oldBlock = getExtent().getBlock(position);
|
BaseBlock oldBlock = getExtent().getFullBlock(position);
|
||||||
BlockStateHolder newBlock = pattern.apply(position);
|
BaseBlock newBlock = pattern.apply(position);
|
||||||
return newBlock.withPropertyId(oldBlock.getInternalPropertiesId());
|
return newBlock.withPropertyId(oldBlock.getInternalPropertiesId()).toBaseBlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
package com.boydti.fawe.object.pattern;
|
package com.boydti.fawe.object.pattern;
|
||||||
|
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
@ -18,7 +18,7 @@ public class Linear2DBlockPattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
int index = (position.getBlockX() + position.getBlockZ()) % patternsArray.length;
|
int index = (position.getBlockX() + position.getBlockZ()) % patternsArray.length;
|
||||||
if (index < 0) {
|
if (index < 0) {
|
||||||
index += patternsArray.length;
|
index += patternsArray.length;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.boydti.fawe.object.pattern;
|
package com.boydti.fawe.object.pattern;
|
||||||
|
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
@ -18,7 +18,7 @@ public class Linear3DBlockPattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
int index = (position.getBlockX() + position.getBlockY() + position.getBlockZ()) % patternsArray.length;
|
int index = (position.getBlockX() + position.getBlockY() + position.getBlockZ()) % patternsArray.length;
|
||||||
if (index < 0) {
|
if (index < 0) {
|
||||||
index += patternsArray.length;
|
index += patternsArray.length;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.boydti.fawe.object.pattern;
|
package com.boydti.fawe.object.pattern;
|
||||||
|
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
@ -19,7 +19,7 @@ public class LinearBlockPattern extends AbstractPattern implements ResettablePat
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
if (index == patternsArray.length) {
|
if (index == patternsArray.length) {
|
||||||
index = 0;
|
index = 0;
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.boydti.fawe.object.pattern;
|
package com.boydti.fawe.object.pattern;
|
||||||
|
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.mask.Mask;
|
import com.sk89q.worldedit.function.mask.Mask;
|
||||||
@ -24,10 +24,10 @@ public class MaskedPattern extends AbstractPattern {
|
|||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
patternExtent.setTarget(position);
|
patternExtent.setTarget(position);
|
||||||
if (mask.test(position)) {
|
if (mask.test(position)) {
|
||||||
return patternExtent.getAndResetTarget();
|
return patternExtent.getAndResetTarget().toBaseBlock();
|
||||||
}
|
}
|
||||||
return secondaryPattern.apply(position);
|
return secondaryPattern.apply(position);
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.boydti.fawe.object.pattern;
|
package com.boydti.fawe.object.pattern;
|
||||||
|
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
@ -22,7 +22,7 @@ public class NoXPattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 pos) {
|
public BaseBlock apply(BlockVector3 pos) {
|
||||||
// mutable.mutY((pos.getY()));
|
// mutable.mutY((pos.getY()));
|
||||||
// mutable.mutZ((pos.getZ()));
|
// mutable.mutZ((pos.getZ()));
|
||||||
// return pattern.apply(mutable.toBlockVector3());
|
// return pattern.apply(mutable.toBlockVector3());
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.boydti.fawe.object.pattern;
|
package com.boydti.fawe.object.pattern;
|
||||||
|
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
@ -23,7 +23,7 @@ public class NoYPattern extends AbstractPattern {
|
|||||||
// private transient MutableBlockVector mutable = new MutableBlockVector();
|
// private transient MutableBlockVector mutable = new MutableBlockVector();
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 pos) {
|
public BaseBlock apply(BlockVector3 pos) {
|
||||||
// mutable.mutX((pos.getX()));
|
// mutable.mutX((pos.getX()));
|
||||||
// mutable.mutZ((pos.getZ()));
|
// mutable.mutZ((pos.getZ()));
|
||||||
return pattern.apply(pos);
|
return pattern.apply(pos);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.boydti.fawe.object.pattern;
|
package com.boydti.fawe.object.pattern;
|
||||||
|
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
@ -23,7 +23,7 @@ public class NoZPattern extends AbstractPattern {
|
|||||||
// private transient MutableBlockVector mutable = new MutableBlockVector();
|
// private transient MutableBlockVector mutable = new MutableBlockVector();
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 pos) {
|
public BaseBlock apply(BlockVector3 pos) {
|
||||||
// mutable.mutX((pos.getX()));
|
// mutable.mutX((pos.getX()));
|
||||||
// mutable.mutY((pos.getY()));
|
// mutable.mutY((pos.getY()));
|
||||||
return pattern.apply(pos);
|
return pattern.apply(pos);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.boydti.fawe.object.pattern;
|
package com.boydti.fawe.object.pattern;
|
||||||
|
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
@ -26,7 +26,7 @@ public class OffsetPattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
// mutable.mutX((position.getX() + dx));
|
// mutable.mutX((position.getX() + dx));
|
||||||
// mutable.mutY((position.getY() + dy));
|
// mutable.mutY((position.getY() + dy));
|
||||||
// mutable.mutZ((position.getZ() + dz));
|
// mutable.mutZ((position.getZ() + dz));
|
||||||
|
@ -123,7 +123,7 @@ public class PatternExtent extends AbstractPattern implements Extent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
return pattern.apply(position);
|
return pattern.apply(position);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -192,25 +192,25 @@ public class PropertyPattern extends AbstractExtentPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
BlockState block = getExtent().getBlock(position);
|
BaseBlock block = getExtent().getFullBlock(position);
|
||||||
return apply(block, block);
|
return apply(block, block);
|
||||||
}
|
}
|
||||||
|
|
||||||
public BlockState apply(BlockState block, BlockState orDefault) {
|
public BaseBlock apply(BaseBlock block, BaseBlock orDefault) {
|
||||||
int ordinal = block.getOrdinal();
|
int ordinal = block.getOrdinal();
|
||||||
int newOrdinal = transformed[ordinal];
|
int newOrdinal = transformed[ordinal];
|
||||||
if (newOrdinal != ordinal) {
|
if (newOrdinal != ordinal) {
|
||||||
CompoundTag nbt = block.getNbtData();
|
CompoundTag nbt = block.getNbtData();
|
||||||
BlockState newState = BlockState.getFromOrdinal(newOrdinal);
|
BlockState newState = BlockState.getFromOrdinal(newOrdinal);
|
||||||
return nbt != null ? new BaseBlock(newState, nbt).toImmutableState() : newState;
|
return nbt != null ? new BaseBlock(newState, nbt) : newState.toBaseBlock();
|
||||||
}
|
}
|
||||||
return orDefault;
|
return orDefault;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(Extent extent, BlockVector3 set, BlockVector3 get) throws WorldEditException {
|
public boolean apply(Extent extent, BlockVector3 set, BlockVector3 get) throws WorldEditException {
|
||||||
BlockState block = getExtent().getBlock(get);
|
BaseBlock block = getExtent().getFullBlock(get);
|
||||||
block = apply(block, null);
|
block = apply(block, null);
|
||||||
if (block != null) {
|
if (block != null) {
|
||||||
return extent.setBlock(set, block);
|
return extent.setBlock(set, block);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.boydti.fawe.object.pattern;
|
package com.boydti.fawe.object.pattern;
|
||||||
|
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
@ -34,7 +34,7 @@ public class RandomOffsetPattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
mutable.mutX((position.getX() + r.nextInt(dx2) - dx));
|
mutable.mutX((position.getX() + r.nextInt(dx2) - dx));
|
||||||
mutable.mutY((position.getY() + r.nextInt(dy2) - dy));
|
mutable.mutY((position.getY() + r.nextInt(dy2) - dy));
|
||||||
mutable.mutZ((position.getZ() + r.nextInt(dz2) - dz));
|
mutable.mutZ((position.getZ() + r.nextInt(dz2) - dz));
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.boydti.fawe.object.pattern;
|
package com.boydti.fawe.object.pattern;
|
||||||
|
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
@ -23,7 +23,7 @@ public class RelativePattern extends AbstractPattern implements ResettablePatter
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 pos) {
|
public BaseBlock apply(BlockVector3 pos) {
|
||||||
if (origin == null) {
|
if (origin == null) {
|
||||||
origin = pos;
|
origin = pos;
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@ import com.boydti.fawe.Fawe;
|
|||||||
import com.boydti.fawe.util.TextureHolder;
|
import com.boydti.fawe.util.TextureHolder;
|
||||||
import com.boydti.fawe.util.TextureUtil;
|
import com.boydti.fawe.util.TextureUtil;
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
@ -28,12 +28,12 @@ public class SaturatePattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
BlockType block = extent.getBlockType(position);
|
BlockType block = extent.getBlockType(position);
|
||||||
TextureUtil util = holder.getTextureUtil();
|
TextureUtil util = holder.getTextureUtil();
|
||||||
int currentColor = util.getColor(block);
|
int currentColor = util.getColor(block);
|
||||||
int newColor = util.multiplyColor(currentColor, color);
|
int newColor = util.multiplyColor(currentColor, color);
|
||||||
return util.getNearestBlock(newColor).getDefaultState();
|
return util.getNearestBlock(newColor).getDefaultState().toBaseBlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -2,7 +2,7 @@ package com.boydti.fawe.object.pattern;
|
|||||||
|
|
||||||
import com.boydti.fawe.Fawe;
|
import com.boydti.fawe.Fawe;
|
||||||
import com.boydti.fawe.util.TextureUtil;
|
import com.boydti.fawe.util.TextureUtil;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
@ -28,9 +28,9 @@ public class ShadePattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
BlockType block = extent.getBlockType(position);
|
BlockType block = extent.getBlockType(position);
|
||||||
return (darken ? util.getDarkerBlock(block) : util.getLighterBlock(block)).getDefaultState();
|
return (darken ? util.getDarkerBlock(block) : util.getLighterBlock(block)).getDefaultState().toBaseBlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void readObject(java.io.ObjectInputStream stream) throws IOException, ClassNotFoundException {
|
private void readObject(java.io.ObjectInputStream stream) throws IOException, ClassNotFoundException {
|
||||||
|
@ -2,7 +2,7 @@ package com.boydti.fawe.object.pattern;
|
|||||||
|
|
||||||
import com.boydti.fawe.FaweCache;
|
import com.boydti.fawe.FaweCache;
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.function.mask.SolidBlockMask;
|
import com.sk89q.worldedit.function.mask.SolidBlockMask;
|
||||||
@ -43,11 +43,11 @@ public class SolidRandomOffsetPattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
mutable.mutX((position.getX() + r.nextInt(dx2) - dx));
|
mutable.mutX((position.getX() + r.nextInt(dx2) - dx));
|
||||||
mutable.mutY((position.getY() + r.nextInt(dy2) - dy));
|
mutable.mutY((position.getY() + r.nextInt(dy2) - dy));
|
||||||
mutable.mutZ((position.getZ() + r.nextInt(dz2) - dz));
|
mutable.mutZ((position.getZ() + r.nextInt(dz2) - dz));
|
||||||
BlockStateHolder block = pattern.apply(mutable.toBlockVector3());
|
BaseBlock block = pattern.apply(mutable.toBlockVector3());
|
||||||
if (solid[block.getInternalBlockTypeId()]) {
|
if (solid[block.getInternalBlockTypeId()]) {
|
||||||
return block;
|
return block;
|
||||||
} else {
|
} else {
|
||||||
|
@ -2,7 +2,7 @@ package com.boydti.fawe.object.pattern;
|
|||||||
|
|
||||||
import com.boydti.fawe.FaweCache;
|
import com.boydti.fawe.FaweCache;
|
||||||
import com.boydti.fawe.object.PseudoRandom;
|
import com.boydti.fawe.object.PseudoRandom;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
import com.sk89q.worldedit.function.pattern.AbstractPattern;
|
||||||
import com.sk89q.worldedit.function.pattern.Pattern;
|
import com.sk89q.worldedit.function.pattern.Pattern;
|
||||||
@ -38,7 +38,7 @@ public class SurfaceRandomOffsetPattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
return pattern.apply(travel(position));
|
return pattern.apply(travel(position));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1027,7 +1027,7 @@ public class EditSession extends AbstractDelegateExtent implements HasFaweQueue,
|
|||||||
* @return whether the block changed
|
* @return whether the block changed
|
||||||
* @throws WorldEditException thrown on a set error
|
* @throws WorldEditException thrown on a set error
|
||||||
*/
|
*/
|
||||||
public boolean setBlock(BlockVector3 position, BlockStateHolder block, Stage stage) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 position, B block, Stage stage) throws WorldEditException {
|
||||||
this.changes++;
|
this.changes++;
|
||||||
switch (stage) {
|
switch (stage) {
|
||||||
case BEFORE_HISTORY:
|
case BEFORE_HISTORY:
|
||||||
@ -1041,7 +1041,7 @@ public class EditSession extends AbstractDelegateExtent implements HasFaweQueue,
|
|||||||
throw new RuntimeException("New enum entry added that is unhandled here");
|
throw new RuntimeException("New enum entry added that is unhandled here");
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean rawSetBlock(BlockVector3 position, BlockStateHolder block) {
|
public <B extends BlockStateHolder<B>> boolean rawSetBlock(BlockVector3 position, B block) {
|
||||||
try {
|
try {
|
||||||
return this.bypassAll.setBlock(position, block);
|
return this.bypassAll.setBlock(position, block);
|
||||||
} catch (final WorldEditException e) {
|
} catch (final WorldEditException e) {
|
||||||
@ -1056,7 +1056,7 @@ public class EditSession extends AbstractDelegateExtent implements HasFaweQueue,
|
|||||||
* @param block the block
|
* @param block the block
|
||||||
* @return whether the block changed
|
* @return whether the block changed
|
||||||
*/
|
*/
|
||||||
public boolean smartSetBlock(BlockVector3 position, BlockStateHolder block) {
|
public <B extends BlockStateHolder<B>> boolean smartSetBlock(BlockVector3 position, B block) {
|
||||||
try {
|
try {
|
||||||
return setBlock(position, block, Stage.BEFORE_REORDER);
|
return setBlock(position, block, Stage.BEFORE_REORDER);
|
||||||
} catch (WorldEditException e) {
|
} catch (WorldEditException e) {
|
||||||
@ -1065,7 +1065,7 @@ public class EditSession extends AbstractDelegateExtent implements HasFaweQueue,
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 position, BlockStateHolder block) throws MaxChangedBlocksException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 position, B block) throws MaxChangedBlocksException {
|
||||||
this.changes++;
|
this.changes++;
|
||||||
try {
|
try {
|
||||||
return this.extent.setBlock(position, block);
|
return this.extent.setBlock(position, block);
|
||||||
@ -1611,7 +1611,7 @@ public class EditSession extends AbstractDelegateExtent implements HasFaweQueue,
|
|||||||
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
public int setBlocks(final Region region, final BlockStateHolder block) {
|
public <B extends BlockStateHolder<B>> int setBlocks(final Region region, final B block) {
|
||||||
checkNotNull(region);
|
checkNotNull(region);
|
||||||
checkNotNull(block);
|
checkNotNull(block);
|
||||||
if (canBypassAll(region, false, true) && !block.hasNbtData()) {
|
if (canBypassAll(region, false, true) && !block.hasNbtData()) {
|
||||||
@ -1670,7 +1670,7 @@ public class EditSession extends AbstractDelegateExtent implements HasFaweQueue,
|
|||||||
* @return number of blocks affected
|
* @return number of blocks affected
|
||||||
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
||||||
*/
|
*/
|
||||||
public int replaceBlocks(Region region, Set<BlockStateHolder> filter, BlockStateHolder replacement) throws MaxChangedBlocksException {
|
public <B extends BlockStateHolder<B>> int replaceBlocks(Region region, Set<BlockStateHolder> filter, B replacement) throws MaxChangedBlocksException {
|
||||||
return replaceBlocks(region, filter, new BlockPattern(replacement));
|
return replaceBlocks(region, filter, new BlockPattern(replacement));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1748,7 +1748,7 @@ public class EditSession extends AbstractDelegateExtent implements HasFaweQueue,
|
|||||||
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
public int makeCuboidFaces(final Region region, final BlockStateHolder block) {
|
public <B extends BlockStateHolder<B>> int makeCuboidFaces(final Region region, final B block) {
|
||||||
return this.makeCuboidFaces(region, (Pattern) (block));
|
return this.makeCuboidFaces(region, (Pattern) (block));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1803,7 +1803,7 @@ public class EditSession extends AbstractDelegateExtent implements HasFaweQueue,
|
|||||||
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
public int makeCuboidWalls(final Region region, final BlockStateHolder block) {
|
public <B extends BlockStateHolder<B>> int makeCuboidWalls(final Region region, final B block) {
|
||||||
return this.makeCuboidWalls(region, (Pattern) (block));
|
return this.makeCuboidWalls(region, (Pattern) (block));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1865,7 +1865,7 @@ public class EditSession extends AbstractDelegateExtent implements HasFaweQueue,
|
|||||||
* @return number of blocks affected
|
* @return number of blocks affected
|
||||||
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
||||||
*/
|
*/
|
||||||
public int overlayCuboidBlocks(Region region, BlockStateHolder block) throws MaxChangedBlocksException {
|
public <B extends BlockStateHolder<B>> int overlayCuboidBlocks(Region region, B block) throws MaxChangedBlocksException {
|
||||||
checkNotNull(block);
|
checkNotNull(block);
|
||||||
return this.overlayCuboidBlocks(region, (Pattern) (block));
|
return this.overlayCuboidBlocks(region, (Pattern) (block));
|
||||||
}
|
}
|
||||||
@ -2947,7 +2947,7 @@ public class EditSession extends AbstractDelegateExtent implements HasFaweQueue,
|
|||||||
|
|
||||||
final ArbitraryShape shape = new ArbitraryShape(region) {
|
final ArbitraryShape shape = new ArbitraryShape(region) {
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder getMaterial(final int x, final int y, final int z, final BlockStateHolder defaultMaterial) {
|
public BaseBlock getMaterial(final int x, final int y, final int z, final BaseBlock defaultMaterial) {
|
||||||
//TODO Optimize - avoid vector creation (math)
|
//TODO Optimize - avoid vector creation (math)
|
||||||
// final Vector3 current = mutablev.setComponents(x, y, z);
|
// final Vector3 current = mutablev.setComponents(x, y, z);
|
||||||
// protected BlockStateHolder getMaterial(int x, int y, int z, BlockStateHolder defaultMaterial) {
|
// protected BlockStateHolder getMaterial(int x, int y, int z, BlockStateHolder defaultMaterial) {
|
||||||
@ -2961,7 +2961,7 @@ public class EditSession extends AbstractDelegateExtent implements HasFaweQueue,
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return BlockTypes.get((int) typeVariable.getValue()).withPropertyId((int) dataVariable.getValue());
|
return BlockTypes.get((int) typeVariable.getValue()).withPropertyId((int) dataVariable.getValue()).toBaseBlock();
|
||||||
} catch (final Exception e) {
|
} catch (final Exception e) {
|
||||||
Fawe.debug("Failed to create shape: " + e);
|
Fawe.debug("Failed to create shape: " + e);
|
||||||
return null;
|
return null;
|
||||||
|
@ -180,9 +180,9 @@ public final class Blocks {
|
|||||||
* @param o the block
|
* @param o the block
|
||||||
* @return true if the collection contains the given block
|
* @return true if the collection contains the given block
|
||||||
*/
|
*/
|
||||||
public static boolean containsFuzzy(Collection<? extends BlockStateHolder> collection, BlockStateHolder o) {
|
public static <B extends BlockStateHolder<B>> boolean containsFuzzy(Collection<? extends BlockStateHolder<?>> collection, B o) {
|
||||||
// Allow masked data in the searchBlocks to match various types
|
// Allow masked data in the searchBlocks to match various types
|
||||||
for (BlockStateHolder b : collection) {
|
for (BlockStateHolder<?> b : collection) {
|
||||||
if (b.equalsFuzzy(o)) {
|
if (b.equalsFuzzy(o)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,6 @@ import static com.sk89q.minecraft.util.commands.Logging.LogMode.POSITION;
|
|||||||
@Command(aliases = {}, desc = "Commands for moving the player around: [More Info](https://goo.gl/uQTUiT)")
|
@Command(aliases = {}, desc = "Commands for moving the player around: [More Info](https://goo.gl/uQTUiT)")
|
||||||
public class NavigationCommands {
|
public class NavigationCommands {
|
||||||
|
|
||||||
@SuppressWarnings("unused")
|
|
||||||
private final WorldEdit worldEdit;
|
private final WorldEdit worldEdit;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -74,6 +74,7 @@ import com.sk89q.worldedit.world.biome.BaseBiome;
|
|||||||
import com.sk89q.worldedit.world.biome.Biomes;
|
import com.sk89q.worldedit.world.biome.Biomes;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
||||||
import com.sk89q.worldedit.world.registry.BiomeRegistry;
|
import com.sk89q.worldedit.world.registry.BiomeRegistry;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -88,6 +88,7 @@ import com.sk89q.worldedit.util.command.binding.Text;
|
|||||||
import com.sk89q.worldedit.util.command.parametric.Optional;
|
import com.sk89q.worldedit.util.command.parametric.Optional;
|
||||||
import com.sk89q.worldedit.util.command.parametric.ParameterData;
|
import com.sk89q.worldedit.util.command.parametric.ParameterData;
|
||||||
import com.sk89q.worldedit.world.World;
|
import com.sk89q.worldedit.world.World;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockTypes;
|
import com.sk89q.worldedit.world.block.BlockTypes;
|
||||||
|
|
||||||
import javax.imageio.ImageIO;
|
import javax.imageio.ImageIO;
|
||||||
|
@ -36,7 +36,7 @@ import com.sk89q.worldedit.extent.inventory.BlockBag;
|
|||||||
import com.sk89q.worldedit.function.pattern.BlockPattern;
|
import com.sk89q.worldedit.function.pattern.BlockPattern;
|
||||||
import com.sk89q.worldedit.function.pattern.Pattern;
|
import com.sk89q.worldedit.function.pattern.Pattern;
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A mode that replaces one block.
|
* A mode that replaces one block.
|
||||||
|
@ -30,8 +30,7 @@ import com.sk89q.worldedit.extension.platform.Platform;
|
|||||||
import com.sk89q.worldedit.function.pattern.Pattern;
|
import com.sk89q.worldedit.function.pattern.Pattern;
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.util.Location;
|
import com.sk89q.worldedit.util.Location;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A tool that can place (or remove) blocks at a distance.
|
* A tool that can place (or remove) blocks at a distance.
|
||||||
@ -60,7 +59,7 @@ public class LongRangeBuildTool extends BrushTool implements DoubleActionTraceTo
|
|||||||
try {
|
try {
|
||||||
// eS.disableBuffering();
|
// eS.disableBuffering();
|
||||||
BlockVector3 blockPoint = pos.toVector().toBlockPoint();
|
BlockVector3 blockPoint = pos.toVector().toBlockPoint();
|
||||||
BlockStateHolder applied = secondary.apply(blockPoint);
|
BaseBlock applied = secondary.apply(blockPoint);
|
||||||
if (applied.getBlockType().getMaterial().isAir()) {
|
if (applied.getBlockType().getMaterial().isAir()) {
|
||||||
eS.setBlock(blockPoint, secondary);
|
eS.setBlock(blockPoint, secondary);
|
||||||
} else {
|
} else {
|
||||||
@ -82,7 +81,7 @@ public class LongRangeBuildTool extends BrushTool implements DoubleActionTraceTo
|
|||||||
try {
|
try {
|
||||||
// eS.disableBuffering();
|
// eS.disableBuffering();
|
||||||
BlockVector3 blockPoint = pos.toVector().toBlockPoint();
|
BlockVector3 blockPoint = pos.toVector().toBlockPoint();
|
||||||
BlockStateHolder applied = primary.apply(blockPoint);
|
BaseBlock applied = primary.apply(blockPoint);
|
||||||
if (applied.getBlockType().getMaterial().isAir()) {
|
if (applied.getBlockType().getMaterial().isAir()) {
|
||||||
eS.setBlock(blockPoint, primary);
|
eS.setBlock(blockPoint, primary);
|
||||||
} else {
|
} else {
|
||||||
|
@ -28,7 +28,7 @@ import com.sk89q.worldedit.extension.platform.Actor;
|
|||||||
import com.sk89q.worldedit.extension.platform.Platform;
|
import com.sk89q.worldedit.extension.platform.Platform;
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.world.World;
|
import com.sk89q.worldedit.world.World;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Looks up information about a block.
|
* Looks up information about a block.
|
||||||
@ -46,7 +46,7 @@ public class QueryTool implements BlockTool {
|
|||||||
World world = (World) clicked.getExtent();
|
World world = (World) clicked.getExtent();
|
||||||
EditSession editSession = session.createEditSession(player);
|
EditSession editSession = session.createEditSession(player);
|
||||||
BlockVector3 blockPoint = clicked.toVector().toBlockPoint();
|
BlockVector3 blockPoint = clicked.toVector().toBlockPoint();
|
||||||
BlockStateHolder block = editSession.getFullBlock(blockPoint);
|
BaseBlock block = editSession.getFullBlock(blockPoint);
|
||||||
|
|
||||||
player.print("\u00A79@" + clicked.toVector() + ": " + "\u00A7e"
|
player.print("\u00A79@" + clicked.toVector() + ": " + "\u00A7e"
|
||||||
+ block.getBlockType().getName() + "\u00A77" + " ("
|
+ block.getBlockType().getName() + "\u00A77" + " ("
|
||||||
|
@ -22,7 +22,6 @@ package com.sk89q.worldedit.command.tool.brush;
|
|||||||
import com.sk89q.worldedit.EditSession;
|
import com.sk89q.worldedit.EditSession;
|
||||||
import com.sk89q.worldedit.MaxChangedBlocksException;
|
import com.sk89q.worldedit.MaxChangedBlocksException;
|
||||||
|
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
|
||||||
import com.sk89q.worldedit.function.mask.Mask;
|
import com.sk89q.worldedit.function.mask.Mask;
|
||||||
import com.sk89q.worldedit.function.mask.Masks;
|
import com.sk89q.worldedit.function.mask.Masks;
|
||||||
import com.sk89q.worldedit.function.pattern.Pattern;
|
import com.sk89q.worldedit.function.pattern.Pattern;
|
||||||
@ -47,23 +46,11 @@ public class GravityBrush implements Brush {
|
|||||||
int endY = position.getBlockY() + size;
|
int endY = position.getBlockY() + size;
|
||||||
int startPerformY = Math.max(0, position.getBlockY() - size);
|
int startPerformY = Math.max(0, position.getBlockY() - size);
|
||||||
int startCheckY = fullHeight ? 0 : startPerformY;
|
int startCheckY = fullHeight ? 0 : startPerformY;
|
||||||
// Vector mutablePos = new Vector(0, 0, 0);
|
|
||||||
for (int x = position.getBlockX() + size; x > position.getBlockX() - size; --x) {
|
for (int x = position.getBlockX() + size; x > position.getBlockX() - size; --x) {
|
||||||
for (int z = position.getBlockZ() + size; z > position.getBlockZ() - size; --z) {
|
for (int z = position.getBlockZ() + size; z > position.getBlockZ() - size; --z) {
|
||||||
int freeSpot = startCheckY;
|
int freeSpot = startCheckY;
|
||||||
for (int y = startCheckY; y <= endY; y++) {
|
for (int y = startCheckY; y <= endY; y++) {
|
||||||
BlockStateHolder block = editSession.getLazyBlock(x, y, z);
|
BlockStateHolder block = editSession.getLazyBlock(x, y, z);
|
||||||
//=======
|
|
||||||
// public void build(EditSession editSession, BlockVector3 position, Pattern pattern, double size) throws MaxChangedBlocksException {
|
|
||||||
// final double startY = fullHeight ? editSession.getWorld().getMaxY() : position.getBlockY() + size;
|
|
||||||
// for (double x = position.getBlockX() + size; x > position.getBlockX() - size; --x) {
|
|
||||||
// for (double z = position.getBlockZ() + size; z > position.getBlockZ() - size; --z) {
|
|
||||||
// double y = startY;
|
|
||||||
// final List<BlockStateHolder> blockTypes = new ArrayList<>();
|
|
||||||
// for (; y > position.getBlockY() - size; --y) {
|
|
||||||
// final BlockVector3 pt = new BlockVector3(x, y, z);
|
|
||||||
// final BlockStateHolder block = editSession.getBlock(pt);
|
|
||||||
//>>>>>>> 399e0ad5... Refactor vector system to be cleaner
|
|
||||||
if (!block.getBlockType().getMaterial().isAir()) {
|
if (!block.getBlockType().getMaterial().isAir()) {
|
||||||
if (y != freeSpot) {
|
if (y != freeSpot) {
|
||||||
editSession.setBlock(x, y, z, EditSession.nullBlock);
|
editSession.setBlock(x, y, z, EditSession.nullBlock);
|
||||||
@ -72,17 +59,6 @@ public class GravityBrush implements Brush {
|
|||||||
freeSpot = y + 1;
|
freeSpot = y + 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//<<<<<<< HEAD
|
|
||||||
//=======
|
|
||||||
// BlockVector3 pt = new BlockVector3(x, y, z);
|
|
||||||
// Collections.reverse(blockTypes);
|
|
||||||
// for (int i = 0; i < blockTypes.size();) {
|
|
||||||
// if (editSession.getBlock(pt).getBlockType().getMaterial().isAir()) {
|
|
||||||
// editSession.setBlock(pt, blockTypes.get(i++));
|
|
||||||
// }
|
|
||||||
// pt = pt.add(0, 1, 0);
|
|
||||||
// }
|
|
||||||
//>>>>>>> 399e0ad5... Refactor vector system to be cleaner
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -276,5 +276,5 @@ public interface Player extends Entity, Actor {
|
|||||||
* @param pos The position of the block
|
* @param pos The position of the block
|
||||||
* @param block The block to send, null to reset
|
* @param block The block to send, null to reset
|
||||||
*/
|
*/
|
||||||
void sendFakeBlock(BlockVector3 pos, @Nullable BlockStateHolder block);
|
<B extends BlockStateHolder<B>> void sendFakeBlock(BlockVector3 pos, @Nullable B block);
|
||||||
}
|
}
|
||||||
|
@ -23,10 +23,11 @@ import com.sk89q.util.StringUtil;
|
|||||||
import com.sk89q.worldedit.WorldEdit;
|
import com.sk89q.worldedit.WorldEdit;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
||||||
import com.sk89q.worldedit.extension.factory.parser.DefaultBlockParser;
|
import com.sk89q.worldedit.extension.factory.parser.DefaultBlockParser;
|
||||||
import com.sk89q.worldedit.world.block.BaseBlock;
|
|
||||||
import com.sk89q.worldedit.extension.input.InputParseException;
|
import com.sk89q.worldedit.extension.input.InputParseException;
|
||||||
import com.sk89q.worldedit.extension.input.ParserContext;
|
import com.sk89q.worldedit.extension.input.ParserContext;
|
||||||
import com.sk89q.worldedit.internal.registry.AbstractFactory;
|
import com.sk89q.worldedit.internal.registry.AbstractFactory;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
|
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
@ -37,7 +38,7 @@ import java.util.Set;
|
|||||||
* <p>Instances of this class can be taken from
|
* <p>Instances of this class can be taken from
|
||||||
* {@link WorldEdit#getBlockFactory()}.</p>
|
* {@link WorldEdit#getBlockFactory()}.</p>
|
||||||
*/
|
*/
|
||||||
public class BlockFactory extends AbstractFactory<BlockStateHolder> {
|
public class BlockFactory extends AbstractFactory<BaseBlock> {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new instance.
|
* Create a new instance.
|
||||||
@ -58,8 +59,8 @@ public class BlockFactory extends AbstractFactory<BlockStateHolder> {
|
|||||||
* @return a set of blocks
|
* @return a set of blocks
|
||||||
* @throws InputParseException thrown in error with the input
|
* @throws InputParseException thrown in error with the input
|
||||||
*/
|
*/
|
||||||
public Set<BlockStateHolder> parseFromListInput(String input, ParserContext context) throws InputParseException {
|
public Set<BaseBlock> parseFromListInput(String input, ParserContext context) throws InputParseException {
|
||||||
Set<BlockStateHolder> blocks = new HashSet<>();
|
Set<BaseBlock> blocks = new HashSet<>();
|
||||||
String[] splits = input.split(",");
|
String[] splits = input.split(",");
|
||||||
for (String token : StringUtil.parseListInQuotes(splits, ',', '[', ']')) {
|
for (String token : StringUtil.parseListInQuotes(splits, ',', '[', ']')) {
|
||||||
blocks.add(parseFromInput(token, context));
|
blocks.add(parseFromInput(token, context));
|
||||||
|
@ -34,7 +34,6 @@ import com.sk89q.worldedit.IncompleteRegionException;
|
|||||||
import com.sk89q.worldedit.NotABlockException;
|
import com.sk89q.worldedit.NotABlockException;
|
||||||
import com.sk89q.worldedit.WorldEdit;
|
import com.sk89q.worldedit.WorldEdit;
|
||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
import com.sk89q.worldedit.world.block.BaseBlock;
|
|
||||||
import com.sk89q.worldedit.blocks.MobSpawnerBlock;
|
import com.sk89q.worldedit.blocks.MobSpawnerBlock;
|
||||||
import com.sk89q.worldedit.blocks.SignBlock;
|
import com.sk89q.worldedit.blocks.SignBlock;
|
||||||
import com.sk89q.worldedit.blocks.SkullBlock;
|
import com.sk89q.worldedit.blocks.SkullBlock;
|
||||||
@ -53,8 +52,8 @@ import com.sk89q.worldedit.math.BlockVector3;
|
|||||||
import com.sk89q.worldedit.registry.state.Property;
|
import com.sk89q.worldedit.registry.state.Property;
|
||||||
import com.sk89q.worldedit.util.HandSide;
|
import com.sk89q.worldedit.util.HandSide;
|
||||||
import com.sk89q.worldedit.world.World;
|
import com.sk89q.worldedit.world.World;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
|
||||||
import com.sk89q.worldedit.world.block.BlockType;
|
import com.sk89q.worldedit.world.block.BlockType;
|
||||||
import com.sk89q.worldedit.world.block.BlockTypes;
|
import com.sk89q.worldedit.world.block.BlockTypes;
|
||||||
import com.sk89q.worldedit.world.registry.LegacyMapper;
|
import com.sk89q.worldedit.world.registry.LegacyMapper;
|
||||||
@ -69,7 +68,7 @@ import java.util.stream.Stream;
|
|||||||
/**
|
/**
|
||||||
* Parses block input strings.
|
* Parses block input strings.
|
||||||
*/
|
*/
|
||||||
public class DefaultBlockParser extends InputParser<BlockStateHolder> {
|
public class DefaultBlockParser extends InputParser<BaseBlock> {
|
||||||
|
|
||||||
public DefaultBlockParser(WorldEdit worldEdit) {
|
public DefaultBlockParser(WorldEdit worldEdit) {
|
||||||
super(worldEdit);
|
super(worldEdit);
|
||||||
@ -89,13 +88,14 @@ public class DefaultBlockParser extends InputParser<BlockStateHolder> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public BlockStateHolder parseFromInput(String input, ParserContext context)
|
@Override
|
||||||
|
public BaseBlock parseFromInput(String input, ParserContext context)
|
||||||
throws InputParseException {
|
throws InputParseException {
|
||||||
String originalInput = input;
|
String originalInput = input;
|
||||||
input = input.replace(";", "|");
|
input = input.replace(";", "|");
|
||||||
Exception suppressed = null;
|
Exception suppressed = null;
|
||||||
try {
|
try {
|
||||||
BlockStateHolder modified = parseLogic(input, context);
|
BaseBlock modified = parseLogic(input, context);
|
||||||
if (modified != null) {
|
if (modified != null) {
|
||||||
return modified;
|
return modified;
|
||||||
}
|
}
|
||||||
@ -164,7 +164,7 @@ public class DefaultBlockParser extends InputParser<BlockStateHolder> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private BlockStateHolder parseLogic(String input, ParserContext context) throws InputParseException {
|
private BaseBlock parseLogic(String input, ParserContext context) throws InputParseException {
|
||||||
String[] blockAndExtraData = input.trim().split("\\|", 2);
|
String[] blockAndExtraData = input.trim().split("\\|", 2);
|
||||||
blockAndExtraData[0] = woolMapper(blockAndExtraData[0]);
|
blockAndExtraData[0] = woolMapper(blockAndExtraData[0]);
|
||||||
|
|
||||||
@ -320,7 +320,7 @@ public class DefaultBlockParser extends InputParser<BlockStateHolder> {
|
|||||||
|
|
||||||
return new SkullBlock(state, type.replace(" ", "_")); // valid MC usernames
|
return new SkullBlock(state, type.replace(" ", "_")); // valid MC usernames
|
||||||
} else {
|
} else {
|
||||||
return state;
|
return state.toBaseBlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -28,7 +28,7 @@ import com.sk89q.worldedit.function.pattern.BlockPattern;
|
|||||||
import com.sk89q.worldedit.function.pattern.Pattern;
|
import com.sk89q.worldedit.function.pattern.Pattern;
|
||||||
import com.sk89q.worldedit.function.pattern.RandomPattern;
|
import com.sk89q.worldedit.function.pattern.RandomPattern;
|
||||||
import com.sk89q.worldedit.internal.registry.InputParser;
|
import com.sk89q.worldedit.internal.registry.InputParser;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
|
|
||||||
public class RandomPatternParser extends InputParser<Pattern> {
|
public class RandomPatternParser extends InputParser<Pattern> {
|
||||||
|
|
||||||
@ -43,7 +43,7 @@ public class RandomPatternParser extends InputParser<Pattern> {
|
|||||||
|
|
||||||
String[] splits = input.split(",");
|
String[] splits = input.split(",");
|
||||||
for (String token : StringUtil.parseListInQuotes(splits, ',', '[', ']')) {
|
for (String token : StringUtil.parseListInQuotes(splits, ',', '[', ']')) {
|
||||||
BlockStateHolder block;
|
BaseBlock block;
|
||||||
|
|
||||||
double chance;
|
double chance;
|
||||||
|
|
||||||
|
@ -532,7 +532,7 @@ public abstract class AbstractPlayerActor implements Actor, Player, Cloneable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendFakeBlock(BlockVector3 pos, BlockStateHolder block) {
|
public <B extends BlockStateHolder<B>> void sendFakeBlock(BlockVector3 pos, B block) {
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -187,7 +187,7 @@ public class PlayerProxy extends AbstractPlayerActor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendFakeBlock(BlockVector3 pos, BlockStateHolder block) {
|
public <B extends BlockStateHolder<B>> void sendFakeBlock(BlockVector3 pos, B block) {
|
||||||
basePlayer.sendFakeBlock(pos, block);
|
basePlayer.sendFakeBlock(pos, block);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -64,7 +64,7 @@ public class ChangeSetExtent extends AbstractDelegateExtent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 location, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 location, B block) throws WorldEditException {
|
||||||
BlockStateHolder previous = getBlock(location);
|
BlockStateHolder previous = getBlock(location);
|
||||||
changeSet.add(new BlockChange(location, previous, block));
|
changeSet.add(new BlockChange(location, previous, block));
|
||||||
return super.setBlock(location, block);
|
return super.setBlock(location, block);
|
||||||
|
@ -73,7 +73,7 @@ public class MaskingExtent extends AbstractDelegateExtent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 location, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 location, B block) throws WorldEditException {
|
||||||
return mask.test(location) && super.setBlock(location, block);
|
return mask.test(location) && super.setBlock(location, block);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -105,7 +105,7 @@ public class NullExtent implements Extent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 position, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 position, B block) throws WorldEditException {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,6 +31,7 @@ import com.sk89q.worldedit.math.BlockVector3;
|
|||||||
import com.sk89q.worldedit.regions.AbstractRegion;
|
import com.sk89q.worldedit.regions.AbstractRegion;
|
||||||
import com.sk89q.worldedit.regions.Region;
|
import com.sk89q.worldedit.regions.Region;
|
||||||
import com.sk89q.worldedit.regions.RegionOperationException;
|
import com.sk89q.worldedit.regions.RegionOperationException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
||||||
import com.sk89q.worldedit.world.block.BlockTypes;
|
import com.sk89q.worldedit.world.block.BlockTypes;
|
||||||
|
|
||||||
@ -47,7 +48,7 @@ import java.util.Map;
|
|||||||
*/
|
*/
|
||||||
public class ForgetfulExtentBuffer extends AbstractDelegateExtent implements Pattern {
|
public class ForgetfulExtentBuffer extends AbstractDelegateExtent implements Pattern {
|
||||||
|
|
||||||
private final Map<BlockVector3, BlockStateHolder> buffer = new LinkedHashMap<>();
|
private final Map<BlockVector3, BaseBlock> buffer = new LinkedHashMap<>();
|
||||||
private final Mask mask;
|
private final Mask mask;
|
||||||
private BlockVector3 min = null;
|
private BlockVector3 min = null;
|
||||||
private BlockVector3 max = null;
|
private BlockVector3 max = null;
|
||||||
@ -76,7 +77,7 @@ public class ForgetfulExtentBuffer extends AbstractDelegateExtent implements Pat
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 location, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 location, B block) throws WorldEditException {
|
||||||
// Update minimum
|
// Update minimum
|
||||||
if (min == null) {
|
if (min == null) {
|
||||||
min = location;
|
min = location;
|
||||||
@ -93,7 +94,7 @@ public class ForgetfulExtentBuffer extends AbstractDelegateExtent implements Pat
|
|||||||
|
|
||||||
BlockVector3 blockVector = location;
|
BlockVector3 blockVector = location;
|
||||||
if (mask.test(blockVector)) {
|
if (mask.test(blockVector)) {
|
||||||
buffer.put(blockVector, block);
|
buffer.put(blockVector, block.toBaseBlock());
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
return getExtent().setBlock(location, block);
|
return getExtent().setBlock(location, block);
|
||||||
@ -101,12 +102,12 @@ public class ForgetfulExtentBuffer extends AbstractDelegateExtent implements Pat
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 pos) {
|
public BaseBlock apply(BlockVector3 pos) {
|
||||||
BlockStateHolder block = buffer.get(pos);
|
BaseBlock block = buffer.get(pos);
|
||||||
if (block != null) {
|
if (block != null) {
|
||||||
return block;
|
return block;
|
||||||
} else {
|
} else {
|
||||||
return BlockTypes.AIR.getDefaultState();
|
return BlockTypes.AIR.getDefaultState().toBaseBlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -135,6 +135,7 @@ public class BlockArrayClipboard implements Clipboard, LightingExtent, Closeable
|
|||||||
@Override
|
@Override
|
||||||
public void close() {
|
public void close() {
|
||||||
IMP.close();
|
IMP.close();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -197,18 +198,10 @@ public class BlockArrayClipboard implements Clipboard, LightingExtent, Closeable
|
|||||||
@Override
|
@Override
|
||||||
public BlockState getBlock(BlockVector3 position) {
|
public BlockState getBlock(BlockVector3 position) {
|
||||||
if (region.contains(position)) {
|
if (region.contains(position)) {
|
||||||
//<<<<<<< HEAD
|
|
||||||
int x = position.getBlockX() - mx;
|
int x = position.getBlockX() - mx;
|
||||||
int y = position.getBlockY() - my;
|
int y = position.getBlockY() - my;
|
||||||
int z = position.getBlockZ() - mz;
|
int z = position.getBlockZ() - mz;
|
||||||
return IMP.getBlock(x, y, z);
|
return IMP.getBlock(x, y, z);
|
||||||
//=======
|
|
||||||
// BlockVector3 v = position.subtract(region.getMinimumPoint());
|
|
||||||
// BlockStateHolder block = blocks[v.getBlockX()][v.getBlockY()][v.getBlockZ()];
|
|
||||||
// if (block != null) {
|
|
||||||
// return block.toImmutableState();
|
|
||||||
// }
|
|
||||||
//>>>>>>> 399e0ad5... Refactor vector system to be cleaner
|
|
||||||
}
|
}
|
||||||
return EditSession.nullBlock;
|
return EditSession.nullBlock;
|
||||||
}
|
}
|
||||||
@ -239,21 +232,12 @@ public class BlockArrayClipboard implements Clipboard, LightingExtent, Closeable
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 location, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 location, B block) throws WorldEditException {
|
||||||
if (region.contains(location)) {
|
if (region.contains(location)) {
|
||||||
final int x = location.getBlockX();
|
final int x = location.getBlockX();
|
||||||
final int y = location.getBlockY();
|
final int y = location.getBlockY();
|
||||||
final int z = location.getBlockZ();
|
final int z = location.getBlockZ();
|
||||||
return setBlock(x, y, z, block);
|
return setBlock(x, y, z, block);
|
||||||
//=======
|
|
||||||
// public boolean setBlock(BlockVector3 position, BlockStateHolder block) throws WorldEditException {
|
|
||||||
// if (region.contains(position)) {
|
|
||||||
// BlockVector3 v = position.subtract(region.getMinimumPoint());
|
|
||||||
// blocks[v.getBlockX()][v.getBlockY()][v.getBlockZ()] = block;
|
|
||||||
// return true;
|
|
||||||
// } else {
|
|
||||||
// return false;
|
|
||||||
//>>>>>>> 399e0ad5... Refactor vector system to be cleaner
|
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -266,7 +250,7 @@ public class BlockArrayClipboard implements Clipboard, LightingExtent, Closeable
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(int x, int y, int z, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(int x, int y, int z, B block) throws WorldEditException {
|
||||||
x -= mx;
|
x -= mx;
|
||||||
y -= my;
|
y -= my;
|
||||||
z -= mz;
|
z -= mz;
|
||||||
|
@ -26,6 +26,6 @@ import com.sk89q.worldedit.world.block.BlockStateHolder;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
public interface NBTCompatibilityHandler {
|
public interface NBTCompatibilityHandler {
|
||||||
boolean isAffectedBlock(BlockStateHolder block);
|
<B extends BlockStateHolder<B>> boolean isAffectedBlock(B block);
|
||||||
void updateNBT(BlockStateHolder block, Map<String, Tag> values);
|
<B extends BlockStateHolder<B>> void updateNBT(B block, Map<String, Tag> values);
|
||||||
}
|
}
|
||||||
|
@ -33,13 +33,14 @@ import com.sk89q.worldedit.world.block.BlockTypes;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
public class SignCompatibilityHandler implements NBTCompatibilityHandler {
|
public class SignCompatibilityHandler implements NBTCompatibilityHandler {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isAffectedBlock(BlockStateHolder block) {
|
public <B extends BlockStateHolder<B>> boolean isAffectedBlock(B block) {
|
||||||
return block.getBlockType() == BlockTypes.SIGN || block.getBlockType() == BlockTypes.WALL_SIGN;
|
return block.getBlockType() == BlockTypes.SIGN || block.getBlockType() == BlockTypes.WALL_SIGN;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void updateNBT(BlockStateHolder block, Map<String, Tag> values) {
|
public <B extends BlockStateHolder<B>> void updateNBT(B block, Map<String, Tag> values) {
|
||||||
for (int i = 0; i < 4; ++i) {
|
for (int i = 0; i < 4; ++i) {
|
||||||
String key = "Text" + (i + 1);
|
String key = "Text" + (i + 1);
|
||||||
Tag value = values.get(key);
|
Tag value = values.get(key);
|
||||||
|
@ -86,12 +86,12 @@ public class BlockBagExtent extends AbstractDelegateExtent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 pos, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 pos, B block) throws WorldEditException {
|
||||||
return setBlock(pos.getBlockX(), pos.getBlockY(), pos.getBlockZ(), block);
|
return setBlock(pos.getBlockX(), pos.getBlockY(), pos.getBlockZ(), block);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(int x, int y, int z, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(int x, int y, int z, B block) throws WorldEditException {
|
||||||
if(blockBag != null) {
|
if(blockBag != null) {
|
||||||
BlockStateHolder lazyBlock = getExtent().getLazyBlock(x, y, z);
|
BlockStateHolder lazyBlock = getExtent().getLazyBlock(x, y, z);
|
||||||
BlockType fromType = lazyBlock.getBlockType();
|
BlockType fromType = lazyBlock.getBlockType();
|
||||||
|
@ -73,7 +73,7 @@ public class ChunkBatchingExtent extends AbstractDelegateExtent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 location, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 location, B block) throws WorldEditException {
|
||||||
if (!enabled) {
|
if (!enabled) {
|
||||||
return getExtent().setBlock(location, block);
|
return getExtent().setBlock(location, block);
|
||||||
}
|
}
|
||||||
|
@ -31,6 +31,7 @@ import com.sk89q.worldedit.math.BlockVector3;
|
|||||||
import com.sk89q.worldedit.registry.state.Property;
|
import com.sk89q.worldedit.registry.state.Property;
|
||||||
import com.sk89q.worldedit.util.LocatedBlock;
|
import com.sk89q.worldedit.util.LocatedBlock;
|
||||||
import com.sk89q.worldedit.util.collection.LocatedBlockList;
|
import com.sk89q.worldedit.util.collection.LocatedBlockList;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockCategories;
|
import com.sk89q.worldedit.world.block.BlockCategories;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
||||||
@ -108,7 +109,7 @@ public class MultiStageReorder extends AbstractDelegateExtent implements Reorder
|
|||||||
* @param block The block
|
* @param block The block
|
||||||
* @return The priority
|
* @return The priority
|
||||||
*/
|
*/
|
||||||
public int getPlacementPriority(BlockStateHolder block) {
|
public <B extends BlockStateHolder<B>> int getPlacementPriority(B block) {
|
||||||
if (Blocks.shouldPlaceLate(block.getBlockType())) {
|
if (Blocks.shouldPlaceLate(block.getBlockType())) {
|
||||||
return 1;
|
return 1;
|
||||||
} else if (Blocks.shouldPlaceLast(block.getBlockType())) {
|
} else if (Blocks.shouldPlaceLast(block.getBlockType())) {
|
||||||
@ -123,7 +124,7 @@ public class MultiStageReorder extends AbstractDelegateExtent implements Reorder
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 location, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 location, B block) throws WorldEditException {
|
||||||
if (!enabled) {
|
if (!enabled) {
|
||||||
return super.setBlock(location, block);
|
return super.setBlock(location, block);
|
||||||
}
|
}
|
||||||
|
@ -77,7 +77,7 @@ public class BlockChangeLimiter extends AbstractDelegateExtent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 location, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 location, B block) throws WorldEditException {
|
||||||
if (limit >= 0) {
|
if (limit >= 0) {
|
||||||
if (count >= limit) {
|
if (count >= limit) {
|
||||||
throw new MaxChangedBlocksException(limit);
|
throw new MaxChangedBlocksException(limit);
|
||||||
|
@ -49,7 +49,7 @@ public class DataValidatorExtent extends AbstractDelegateExtent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 location, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 location, B block) throws WorldEditException {
|
||||||
final int y = location.getBlockY();
|
final int y = location.getBlockY();
|
||||||
final BlockType type = block.getBlockType();
|
final BlockType type = block.getBlockType();
|
||||||
if (y < 0 || y > world.getMaxY()) {
|
if (y < 0 || y > world.getMaxY()) {
|
||||||
|
@ -51,7 +51,7 @@ public class BlockQuirkExtent extends AbstractDelegateExtent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 position, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 position, B block) throws WorldEditException {
|
||||||
BlockType existing = getExtent().getBlock(position).getBlockType();
|
BlockType existing = getExtent().getBlock(position).getBlockType();
|
||||||
|
|
||||||
if (existing.getMaterial().hasContainer()) {
|
if (existing.getMaterial().hasContainer()) {
|
||||||
|
@ -61,7 +61,7 @@ public class ChunkLoadingExtent extends AbstractDelegateExtent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 location, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 location, B block) throws WorldEditException {
|
||||||
world.checkLoadedChunk(location);
|
world.checkLoadedChunk(location);
|
||||||
return super.setBlock(location, block);
|
return super.setBlock(location, block);
|
||||||
}
|
}
|
||||||
|
@ -99,8 +99,8 @@ public class FastModeExtent extends AbstractDelegateExtent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 location, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 location, B block) throws WorldEditException {
|
||||||
if (enabled) {
|
if (enabled || postEditSimulation) {
|
||||||
dirtyChunks.add(BlockVector2.at(location.getBlockX() >> 4, location.getBlockZ() >> 4));
|
dirtyChunks.add(BlockVector2.at(location.getBlockX() >> 4, location.getBlockZ() >> 4));
|
||||||
|
|
||||||
if (world.setBlock(location, block, false)) {
|
if (world.setBlock(location, block, false)) {
|
||||||
|
@ -81,7 +81,7 @@ public class SurvivalModeExtent extends AbstractDelegateExtent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 location, BlockStateHolder block) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 location, B block) throws WorldEditException {
|
||||||
if (toolUse && block.getBlockType().getMaterial().isAir()) {
|
if (toolUse && block.getBlockType().getMaterial().isAir()) {
|
||||||
world.simulateBlockMine(location);
|
world.simulateBlockMine(location);
|
||||||
return true;
|
return true;
|
||||||
|
@ -25,7 +25,6 @@ import com.sk89q.worldedit.function.RegionFunction;
|
|||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.util.Countable;
|
import com.sk89q.worldedit.util.Countable;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
@ -36,27 +35,27 @@ import java.util.Map;
|
|||||||
public class BlockDistributionCounter implements RegionFunction {
|
public class BlockDistributionCounter implements RegionFunction {
|
||||||
|
|
||||||
private Extent extent;
|
private Extent extent;
|
||||||
private boolean fuzzy;
|
private boolean separateStates;
|
||||||
|
|
||||||
private List<Countable<BlockStateHolder>> distribution = new ArrayList<>();
|
private List<Countable<BlockState>> distribution = new ArrayList<>();
|
||||||
private Map<BlockStateHolder, Countable<BlockStateHolder>> map = new HashMap<>();
|
private Map<BlockState, Countable<BlockState>> map = new HashMap<>();
|
||||||
|
|
||||||
public BlockDistributionCounter(Extent extent, boolean fuzzy) {
|
public BlockDistributionCounter(Extent extent, boolean separateStates) {
|
||||||
this.extent = extent;
|
this.extent = extent;
|
||||||
this.fuzzy = fuzzy;
|
this.separateStates = separateStates;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(BlockVector3 position) throws WorldEditException {
|
public boolean apply(BlockVector3 position) throws WorldEditException {
|
||||||
BlockStateHolder blk = extent.getBlock(position);
|
BlockState blk = extent.getBlock(position);
|
||||||
if (fuzzy) {
|
if (!separateStates) {
|
||||||
blk = ((BlockState) blk).toFuzzy();
|
blk = blk.getBlockType().getDefaultState();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (map.containsKey(blk)) {
|
if (map.containsKey(blk)) {
|
||||||
map.get(blk).increment();
|
map.get(blk).increment();
|
||||||
} else {
|
} else {
|
||||||
Countable<BlockStateHolder> c = new Countable<>(blk, 1);
|
Countable<BlockState> c = new Countable<>(blk, 1);
|
||||||
map.put(blk, c);
|
map.put(blk, c);
|
||||||
distribution.add(c);
|
distribution.add(c);
|
||||||
}
|
}
|
||||||
@ -69,7 +68,7 @@ public class BlockDistributionCounter implements RegionFunction {
|
|||||||
*
|
*
|
||||||
* @return The distribution
|
* @return The distribution
|
||||||
*/
|
*/
|
||||||
public List<Countable<BlockStateHolder>> getDistribution() {
|
public List<Countable<BlockState>> getDistribution() {
|
||||||
Collections.sort(distribution);
|
Collections.sort(distribution);
|
||||||
Collections.reverse(distribution);
|
Collections.reverse(distribution);
|
||||||
return this.distribution;
|
return this.distribution;
|
||||||
|
@ -27,6 +27,8 @@ import com.sk89q.worldedit.function.pattern.BlockPattern;
|
|||||||
import com.sk89q.worldedit.function.pattern.Pattern;
|
import com.sk89q.worldedit.function.pattern.Pattern;
|
||||||
import com.sk89q.worldedit.function.pattern.RandomPattern;
|
import com.sk89q.worldedit.function.pattern.RandomPattern;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
||||||
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.world.block.BlockTypes;
|
import com.sk89q.worldedit.world.block.BlockTypes;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -104,7 +106,7 @@ public class FloraGenerator implements RegionFunction {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(BlockVector3 position) throws WorldEditException {
|
public boolean apply(BlockVector3 position) throws WorldEditException {
|
||||||
BlockStateHolder block = editSession.getBlock(position);
|
BlockState block = editSession.getBlock(position);
|
||||||
|
|
||||||
if (block.getBlockType() == BlockTypes.GRASS_BLOCK) {
|
if (block.getBlockType() == BlockTypes.GRASS_BLOCK) {
|
||||||
editSession.setBlock(position.add(0, 1, 0), temperatePattern.apply(position));
|
editSession.setBlock(position.add(0, 1, 0), temperatePattern.apply(position));
|
||||||
|
@ -24,7 +24,7 @@ import com.sk89q.worldedit.math.BlockVector3;
|
|||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
import com.sk89q.worldedit.function.RegionFunction;
|
import com.sk89q.worldedit.function.RegionFunction;
|
||||||
import com.sk89q.worldedit.util.TreeGenerator;
|
import com.sk89q.worldedit.util.TreeGenerator;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.world.block.BlockType;
|
import com.sk89q.worldedit.world.block.BlockType;
|
||||||
import com.sk89q.worldedit.world.block.BlockTypes;
|
import com.sk89q.worldedit.world.block.BlockTypes;
|
||||||
|
|
||||||
@ -50,7 +50,7 @@ public class ForestGenerator implements RegionFunction {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(BlockVector3 position) throws WorldEditException {
|
public boolean apply(BlockVector3 position) throws WorldEditException {
|
||||||
BlockStateHolder block = editSession.getBlock(position);
|
BlockState block = editSession.getBlock(position);
|
||||||
BlockType t = block.getBlockType();
|
BlockType t = block.getBlockType();
|
||||||
|
|
||||||
if (t == BlockTypes.GRASS_BLOCK || t == BlockTypes.DIRT) {
|
if (t == BlockTypes.GRASS_BLOCK || t == BlockTypes.DIRT) {
|
||||||
|
@ -198,7 +198,7 @@ public class GardenPatchGenerator implements RegionFunction {
|
|||||||
* @return if block was changed
|
* @return if block was changed
|
||||||
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
||||||
*/
|
*/
|
||||||
private static boolean setBlockIfAir(EditSession session, BlockVector3 position, BlockStateHolder block) throws MaxChangedBlocksException {
|
private static <B extends BlockStateHolder<B>> boolean setBlockIfAir(EditSession session, BlockVector3 position, B block) throws MaxChangedBlocksException {
|
||||||
return session.getBlock(position).getBlockType().getMaterial().isAir() && session.setBlock(position, block);
|
return session.getBlock(position).getBlockType().getMaterial().isAir() && session.setBlock(position, block);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,11 +11,14 @@ import com.sk89q.worldedit.registry.state.AbstractProperty;
|
|||||||
import com.sk89q.worldedit.registry.state.Property;
|
import com.sk89q.worldedit.registry.state.Property;
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
|
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
||||||
import com.sk89q.worldedit.world.block.BlockType;
|
import com.sk89q.worldedit.world.block.BlockType;
|
||||||
import com.sk89q.worldedit.world.block.BlockTypes;
|
import com.sk89q.worldedit.world.block.BlockTypes;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
@ -12,10 +12,15 @@ import com.sk89q.worldedit.world.block.BlockStateHolder;
|
|||||||
@Deprecated
|
@Deprecated
|
||||||
public class BlockPattern implements Pattern {
|
public class BlockPattern implements Pattern {
|
||||||
|
|
||||||
private BlockStateHolder block;
|
private BaseBlock block;
|
||||||
|
|
||||||
public BlockPattern(BlockStateHolder block) {
|
/**
|
||||||
this.block = block;
|
* Create a new pattern with the given block.
|
||||||
|
*
|
||||||
|
* @param block the block
|
||||||
|
*/
|
||||||
|
public BlockPattern(BlockStateHolder<?> block) {
|
||||||
|
setBlock(block);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -23,7 +28,7 @@ public class BlockPattern implements Pattern {
|
|||||||
*
|
*
|
||||||
* @return the block that is always returned
|
* @return the block that is always returned
|
||||||
*/
|
*/
|
||||||
public BlockStateHolder getBlock() {
|
public BaseBlock getBlock() {
|
||||||
return block;
|
return block;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -32,13 +37,13 @@ public class BlockPattern implements Pattern {
|
|||||||
*
|
*
|
||||||
* @param block the block
|
* @param block the block
|
||||||
*/
|
*/
|
||||||
public void setBlock(BlockStateHolder block) {
|
public void setBlock(BlockStateHolder<?> block) {
|
||||||
checkNotNull(block);
|
checkNotNull(block);
|
||||||
this.block = block;
|
this.block = block.toBaseBlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
return block;
|
return block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ import static com.google.common.base.Preconditions.checkNotNull;
|
|||||||
|
|
||||||
import com.sk89q.worldedit.extent.clipboard.Clipboard;
|
import com.sk89q.worldedit.extent.clipboard.Clipboard;
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
|
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
@ -37,23 +37,14 @@ public class ClipboardPattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
//<<<<<<< HEAD
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
|
||||||
int xp = position.getBlockX() % sx;
|
int xp = position.getBlockX() % sx;
|
||||||
int yp = position.getBlockY() % sy;
|
int yp = position.getBlockY() % sy;
|
||||||
int zp = position.getBlockZ() % sz;
|
int zp = position.getBlockZ() % sz;
|
||||||
if (xp < 0) xp += sx;
|
if (xp < 0) xp += sx;
|
||||||
if (yp < 0) yp += sy;
|
if (yp < 0) yp += sy;
|
||||||
if (zp < 0) zp += sz;
|
if (zp < 0) zp += sz;
|
||||||
return clipboard.getBlock(BlockVector3.at(min.getX() + xp, min.getY() + yp, min.getZ() + zp));
|
return clipboard.getFullBlock(BlockVector3.at(min.getX() + xp, min.getY() + yp, min.getZ() + zp));
|
||||||
//=======
|
|
||||||
// public BlockStateHolder apply(BlockVector3 position) {
|
|
||||||
// int xp = Math.abs(position.getBlockX()) % size.getBlockX();
|
|
||||||
// int yp = Math.abs(position.getBlockY()) % size.getBlockY();
|
|
||||||
// int zp = Math.abs(position.getBlockZ()) % size.getBlockZ();
|
|
||||||
//
|
|
||||||
// return clipboard.getFullBlock(clipboard.getMinimumPoint().add(xp, yp, zp));
|
|
||||||
//>>>>>>> 399e0ad5... Refactor vector system to be cleaner
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@ import com.sk89q.worldedit.extent.Extent;
|
|||||||
import com.sk89q.worldedit.extent.NullExtent;
|
import com.sk89q.worldedit.extent.NullExtent;
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -17,7 +18,7 @@ import com.sk89q.worldedit.world.block.BlockState;
|
|||||||
public interface FawePattern extends Pattern {
|
public interface FawePattern extends Pattern {
|
||||||
|
|
||||||
@Deprecated
|
@Deprecated
|
||||||
default BlockStateHolder apply(BlockVector3 position) {
|
default BaseBlock apply(BlockVector3 position) {
|
||||||
throw new UnsupportedOperationException("Please use apply(extent, get, set)");
|
throw new UnsupportedOperationException("Please use apply(extent, get, set)");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -28,6 +28,7 @@ import com.sk89q.worldedit.extent.Extent;
|
|||||||
import com.sk89q.worldedit.extent.NullExtent;
|
import com.sk89q.worldedit.extent.NullExtent;
|
||||||
import com.sk89q.worldedit.internal.expression.runtime.Return;
|
import com.sk89q.worldedit.internal.expression.runtime.Return;
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
|
|
||||||
@ -55,7 +56,7 @@ public interface Pattern{
|
|||||||
* @param position the position
|
* @param position the position
|
||||||
* @return a block
|
* @return a block
|
||||||
*/
|
*/
|
||||||
BlockStateHolder apply(BlockVector3 position);
|
BaseBlock apply(BlockVector3 position);
|
||||||
|
|
||||||
default boolean apply(Extent extent, BlockVector3 get, BlockVector3 set) throws WorldEditException {
|
default boolean apply(Extent extent, BlockVector3 get, BlockVector3 set) throws WorldEditException {
|
||||||
return extent.setBlock(set, apply(get));
|
return extent.setBlock(set, apply(get));
|
||||||
|
@ -10,7 +10,7 @@ import com.sk89q.worldedit.extent.Extent;
|
|||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
|
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.LinkedHashSet;
|
import java.util.LinkedHashSet;
|
||||||
@ -56,24 +56,8 @@ public class RandomPattern extends AbstractPattern {
|
|||||||
this.patterns.add(pattern);
|
this.patterns.add(pattern);
|
||||||
}
|
}
|
||||||
|
|
||||||
//<<<<<<< HEAD
|
|
||||||
public Set<Pattern> getPatterns() {
|
public Set<Pattern> getPatterns() {
|
||||||
return patterns;
|
return patterns;
|
||||||
//=======
|
|
||||||
// @Override
|
|
||||||
// public BlockStateHolder apply(BlockVector3 position) {
|
|
||||||
// double r = random.nextDouble();
|
|
||||||
// double offset = 0;
|
|
||||||
//
|
|
||||||
// for (Chance chance : patterns) {
|
|
||||||
// if (r <= (offset + chance.getChance()) / max) {
|
|
||||||
// return chance.getPattern().apply(position);
|
|
||||||
// }
|
|
||||||
// offset += chance.getChance();
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// throw new RuntimeException("ProportionalFillPattern");
|
|
||||||
//>>>>>>> 399e0ad5... Refactor vector system to be cleaner
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public RandomCollection<Pattern> getCollection() {
|
public RandomCollection<Pattern> getCollection() {
|
||||||
@ -81,7 +65,7 @@ public class RandomPattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 get) {
|
public BaseBlock apply(BlockVector3 get) {
|
||||||
return collection.next(get.getBlockX(), get.getBlockY(), get.getBlockZ()).apply(get);
|
return collection.next(get.getBlockX(), get.getBlockY(), get.getBlockZ()).apply(get);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,11 +23,7 @@ import static com.google.common.base.Preconditions.checkNotNull;
|
|||||||
|
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the blocks from {@link Extent}, repeating when out of bounds.
|
* Returns the blocks from {@link Extent}, repeating when out of bounds.
|
||||||
@ -87,7 +83,7 @@ public class RepeatingExtentPattern extends AbstractPattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
BlockVector3 base = position.add(offset);
|
BlockVector3 base = position.add(offset);
|
||||||
BlockVector3 size = extent.getMaximumPoint().subtract(extent.getMinimumPoint()).add(1, 1, 1);
|
BlockVector3 size = extent.getMaximumPoint().subtract(extent.getMinimumPoint()).add(1, 1, 1);
|
||||||
int x = base.getBlockX() % size.getBlockX();
|
int x = base.getBlockX() % size.getBlockX();
|
||||||
|
@ -25,6 +25,7 @@ import com.sk89q.worldedit.math.BlockVector3;
|
|||||||
import com.sk89q.worldedit.WorldEditException;
|
import com.sk89q.worldedit.WorldEditException;
|
||||||
import com.sk89q.worldedit.extent.Extent;
|
import com.sk89q.worldedit.extent.Extent;
|
||||||
import com.sk89q.worldedit.history.UndoContext;
|
import com.sk89q.worldedit.history.UndoContext;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -37,8 +38,8 @@ import com.sk89q.worldedit.world.block.BlockStateHolder;
|
|||||||
public class BlockChange implements Change {
|
public class BlockChange implements Change {
|
||||||
|
|
||||||
private final BlockVector3 position;
|
private final BlockVector3 position;
|
||||||
private final BlockStateHolder previous;
|
private final BaseBlock previous;
|
||||||
private final BlockStateHolder current;
|
private final BaseBlock current;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new block change.
|
* Create a new block change.
|
||||||
@ -47,13 +48,13 @@ public class BlockChange implements Change {
|
|||||||
* @param previous the previous block
|
* @param previous the previous block
|
||||||
* @param current the current block
|
* @param current the current block
|
||||||
*/
|
*/
|
||||||
public BlockChange(BlockVector3 position, BlockStateHolder previous, BlockStateHolder current) {
|
public <BP extends BlockStateHolder<BP>, BC extends BlockStateHolder<BC>> BlockChange(BlockVector3 position, BP previous, BC current) {
|
||||||
checkNotNull(position);
|
checkNotNull(position);
|
||||||
checkNotNull(previous);
|
checkNotNull(previous);
|
||||||
checkNotNull(current);
|
checkNotNull(current);
|
||||||
this.position = position;
|
this.position = position;
|
||||||
this.previous = previous;
|
this.previous = previous.toBaseBlock();
|
||||||
this.current = current;
|
this.current = current.toBaseBlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -70,7 +71,7 @@ public class BlockChange implements Change {
|
|||||||
*
|
*
|
||||||
* @return the previous block
|
* @return the previous block
|
||||||
*/
|
*/
|
||||||
public BlockStateHolder getPrevious() {
|
public BaseBlock getPrevious() {
|
||||||
return previous;
|
return previous;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -79,7 +80,7 @@ public class BlockChange implements Change {
|
|||||||
*
|
*
|
||||||
* @return the current block
|
* @return the current block
|
||||||
*/
|
*/
|
||||||
public BlockStateHolder getCurrent() {
|
public BaseBlock getCurrent() {
|
||||||
return current;
|
return current;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -202,10 +202,10 @@ public class WorldEditBinding extends BindingHelper {
|
|||||||
return result instanceof BlockState ? (BlockState) result : result.toImmutableState();
|
return result instanceof BlockState ? (BlockState) result : result.toImmutableState();
|
||||||
}
|
}
|
||||||
|
|
||||||
@BindingMatch(type = BaseBlock.class,
|
@BindingMatch(type = {BaseBlock.class, BlockState.class, BlockStateHolder.class},
|
||||||
behavior = BindingBehavior.CONSUMES,
|
behavior = BindingBehavior.CONSUMES,
|
||||||
consumedCount = 1)
|
consumedCount = 1)
|
||||||
public BaseBlock getBaseBlock(ArgumentStack context) throws ParameterException, WorldEditException {
|
public BaseBlock getBaseBlock(ArgumentStack context) throws ParameterException, WorldEditException {
|
||||||
return new BaseBlock(getBlockState(context));
|
return new BaseBlock(getBlockState(context));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -360,7 +360,6 @@ public class WorldEditBinding extends BindingHelper {
|
|||||||
String input = context.next();
|
String input = context.next();
|
||||||
if (input != null) {
|
if (input != null) {
|
||||||
if (MathMan.isInteger(input)) return new BaseBiome(Integer.parseInt(input));
|
if (MathMan.isInteger(input)) return new BaseBiome(Integer.parseInt(input));
|
||||||
|
|
||||||
BiomeRegistry biomeRegistry = WorldEdit.getInstance().getPlatformManager()
|
BiomeRegistry biomeRegistry = WorldEdit.getInstance().getPlatformManager()
|
||||||
.queryCapability(Capability.GAME_HOOKS).getRegistries().getBiomeRegistry();
|
.queryCapability(Capability.GAME_HOOKS).getRegistries().getBiomeRegistry();
|
||||||
List<BaseBiome> knownBiomes = biomeRegistry.getBiomes();
|
List<BaseBiome> knownBiomes = biomeRegistry.getBiomes();
|
||||||
|
@ -21,7 +21,6 @@ package com.sk89q.worldedit.internal.registry;
|
|||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
|
|
||||||
import com.google.common.collect.Lists;
|
|
||||||
import com.sk89q.worldedit.WorldEdit;
|
import com.sk89q.worldedit.WorldEdit;
|
||||||
import com.sk89q.worldedit.extension.input.InputParseException;
|
import com.sk89q.worldedit.extension.input.InputParseException;
|
||||||
import com.sk89q.worldedit.extension.input.NoMatchException;
|
import com.sk89q.worldedit.extension.input.NoMatchException;
|
||||||
|
@ -131,7 +131,7 @@ public class RegionIntersection extends AbstractRegion {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"unchecked", "rawtypes"})
|
@SuppressWarnings({"unchecked"})
|
||||||
@Override
|
@Override
|
||||||
public Iterator<BlockVector3> iterator() {
|
public Iterator<BlockVector3> iterator() {
|
||||||
Iterator<BlockVector3>[] iterators = (Iterator<BlockVector3>[]) new Iterator[regions.size()];
|
Iterator<BlockVector3>[] iterators = (Iterator<BlockVector3>[]) new Iterator[regions.size()];
|
||||||
|
@ -121,7 +121,7 @@ public class EllipsoidRegionSelector implements RegionSelector, CUIRegion {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean selectPrimary(BlockVector3 position, SelectorLimits limits) {
|
public boolean selectPrimary(BlockVector3 position, SelectorLimits limits) {
|
||||||
if (position.equals(region.getCenter()) && region.getRadius().lengthSq() == 0) {
|
if (position.equals(region.getCenter().toBlockPoint()) && region.getRadius().lengthSq() == 0) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ import com.sk89q.worldedit.MaxChangedBlocksException;
|
|||||||
import com.sk89q.worldedit.function.pattern.Pattern;
|
import com.sk89q.worldedit.function.pattern.Pattern;
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.regions.Region;
|
import com.sk89q.worldedit.regions.Region;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates solid and hollow shapes according to materials returned by the
|
* Generates solid and hollow shapes according to materials returned by the
|
||||||
@ -51,7 +51,7 @@ public abstract class ArbitraryShape {
|
|||||||
* @param defaultMaterial The material returned by the pattern for the current block.
|
* @param defaultMaterial The material returned by the pattern for the current block.
|
||||||
* @return material to place or null to not place anything.
|
* @return material to place or null to not place anything.
|
||||||
*/
|
*/
|
||||||
protected abstract BlockStateHolder getMaterial(int x, int y, int z, BlockStateHolder defaultMaterial);
|
protected abstract BaseBlock getMaterial(int x, int y, int z, BaseBlock defaultMaterial);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates the shape.
|
* Generates the shape.
|
||||||
@ -71,7 +71,7 @@ public abstract class ArbitraryShape {
|
|||||||
int z = position.getBlockZ();
|
int z = position.getBlockZ();
|
||||||
|
|
||||||
if (!hollow) {
|
if (!hollow) {
|
||||||
final BlockStateHolder material = getMaterial(x, y, z, pattern.apply(position));
|
BaseBlock material = getMaterial(x, y, z, pattern.apply(position));
|
||||||
if (material != null && editSession.setBlock(position, material)) {
|
if (material != null && editSession.setBlock(position, material)) {
|
||||||
++affected;
|
++affected;
|
||||||
}
|
}
|
||||||
@ -79,7 +79,7 @@ public abstract class ArbitraryShape {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
final BlockStateHolder material = getMaterial(x, y, z, pattern.apply(position));
|
BaseBlock material = getMaterial(x, y, z, pattern.apply(position));
|
||||||
if (material == null) {
|
if (material == null) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,7 @@ package com.sk89q.worldedit.regions.shape;
|
|||||||
|
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.regions.Region;
|
import com.sk89q.worldedit.regions.Region;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates solid and hollow shapes according to materials returned by the
|
* Generates solid and hollow shapes according to materials returned by the
|
||||||
@ -34,7 +34,7 @@ public class RegionShape extends ArbitraryShape {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected BlockStateHolder getMaterial(int x, int y, int z, BlockStateHolder defaultMaterial) {
|
protected BaseBlock getMaterial(int x, int y, int z, BaseBlock defaultMaterial) {
|
||||||
if (!this.extent.contains(BlockVector3.at(x, y, z))) {
|
if (!this.extent.contains(BlockVector3.at(x, y, z))) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -131,6 +131,6 @@ public class AbstractProperty<T> implements Property<T> {
|
|||||||
if (!(obj instanceof Property)) {
|
if (!(obj instanceof Property)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return getName().equals(((Property) obj).getName());
|
return getName().equals(((Property<?>) obj).getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,6 +29,7 @@ import com.sk89q.worldedit.extension.input.ParserContext;
|
|||||||
import com.sk89q.worldedit.extension.platform.Platform;
|
import com.sk89q.worldedit.extension.platform.Platform;
|
||||||
import com.sk89q.worldedit.function.pattern.Pattern;
|
import com.sk89q.worldedit.function.pattern.Pattern;
|
||||||
import com.sk89q.worldedit.util.io.file.FilenameException;
|
import com.sk89q.worldedit.util.io.file.FilenameException;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@ -153,7 +154,7 @@ public class CraftScriptContext extends CraftScriptEnvironment {
|
|||||||
* @throws UnknownItemException
|
* @throws UnknownItemException
|
||||||
* @throws DisallowedItemException
|
* @throws DisallowedItemException
|
||||||
*/
|
*/
|
||||||
public BlockStateHolder getBlock(String input, boolean allAllowed) throws WorldEditException {
|
public BaseBlock getBlock(String input, boolean allAllowed) throws WorldEditException {
|
||||||
ParserContext context = new ParserContext();
|
ParserContext context = new ParserContext();
|
||||||
context.setActor(player);
|
context.setActor(player);
|
||||||
context.setWorld(player.getWorld());
|
context.setWorld(player.getWorld());
|
||||||
@ -172,7 +173,7 @@ public class CraftScriptContext extends CraftScriptEnvironment {
|
|||||||
* @throws UnknownItemException
|
* @throws UnknownItemException
|
||||||
* @throws DisallowedItemException
|
* @throws DisallowedItemException
|
||||||
*/
|
*/
|
||||||
public BlockStateHolder getBlock(String id) throws WorldEditException {
|
public BaseBlock getBlock(String id) throws WorldEditException {
|
||||||
return getBlock(id, false);
|
return getBlock(id, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -201,7 +202,7 @@ public class CraftScriptContext extends CraftScriptEnvironment {
|
|||||||
* @throws UnknownItemException
|
* @throws UnknownItemException
|
||||||
* @throws DisallowedItemException
|
* @throws DisallowedItemException
|
||||||
*/
|
*/
|
||||||
public Set<BlockStateHolder> getBlocks(String list, boolean allBlocksAllowed) throws WorldEditException {
|
public Set<BaseBlock> getBlocks(String list, boolean allBlocksAllowed) throws WorldEditException {
|
||||||
ParserContext context = new ParserContext();
|
ParserContext context = new ParserContext();
|
||||||
context.setActor(player);
|
context.setActor(player);
|
||||||
context.setWorld(player.getWorld());
|
context.setWorld(player.getWorld());
|
||||||
|
@ -22,7 +22,7 @@ package com.sk89q.worldedit.util;
|
|||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
|
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
|
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
@ -32,9 +32,9 @@ import java.util.Objects;
|
|||||||
public final class LocatedBlock {
|
public final class LocatedBlock {
|
||||||
|
|
||||||
private final BlockVector3 location;
|
private final BlockVector3 location;
|
||||||
private final BlockStateHolder block;
|
private final BaseBlock block;
|
||||||
|
|
||||||
public LocatedBlock(BlockVector3 location, BlockStateHolder block) {
|
public LocatedBlock(BlockVector3 location, BaseBlock block) {
|
||||||
this.location = checkNotNull(location);
|
this.location = checkNotNull(location);
|
||||||
this.block = checkNotNull(block);
|
this.block = checkNotNull(block);
|
||||||
}
|
}
|
||||||
@ -43,7 +43,7 @@ public final class LocatedBlock {
|
|||||||
return location;
|
return location;
|
||||||
}
|
}
|
||||||
|
|
||||||
public BlockStateHolder getBlock() {
|
public BaseBlock getBlock() {
|
||||||
return block;
|
return block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -250,7 +250,7 @@ public class TreeGenerator {
|
|||||||
* @return whether a block was changed
|
* @return whether a block was changed
|
||||||
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
||||||
*/
|
*/
|
||||||
private static boolean setChanceBlockIfAir(EditSession session, BlockVector3 position, BlockStateHolder block, double probability)
|
private static <B extends BlockStateHolder<B>> boolean setChanceBlockIfAir(EditSession session, BlockVector3 position, B block, double probability)
|
||||||
throws MaxChangedBlocksException {
|
throws MaxChangedBlocksException {
|
||||||
return Math.random() <= probability && setBlockIfAir(session, position, block);
|
return Math.random() <= probability && setBlockIfAir(session, position, block);
|
||||||
}
|
}
|
||||||
@ -263,7 +263,7 @@ public class TreeGenerator {
|
|||||||
* @return if block was changed
|
* @return if block was changed
|
||||||
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
* @throws MaxChangedBlocksException thrown if too many blocks are changed
|
||||||
*/
|
*/
|
||||||
private static boolean setBlockIfAir(EditSession session, BlockVector3 position, BlockStateHolder block) throws MaxChangedBlocksException {
|
private static <B extends BlockStateHolder<B>> boolean setBlockIfAir(EditSession session, BlockVector3 position, B block) throws MaxChangedBlocksException {
|
||||||
return session.getBlock(position).getBlockType().getMaterial().isAir() && session.setBlock(position, block);
|
return session.getBlock(position).getBlockType().getMaterial().isAir() && session.setBlock(position, block);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -51,8 +51,8 @@ public class LocatedBlockList implements Iterable<LocatedBlock> {
|
|||||||
list.add(setBlockCall);
|
list.add(setBlockCall);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void add(BlockVector3 location, BlockStateHolder block) {
|
public <B extends BlockStateHolder<B>> void add(BlockVector3 location, B block) {
|
||||||
add(new LocatedBlock(location, block));
|
add(new LocatedBlock(location, block.toBaseBlock()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public int size() {
|
public int size() {
|
||||||
|
@ -53,7 +53,7 @@ public abstract class AbstractWorld implements World {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public final boolean setBlock(BlockVector3 pt, BlockStateHolder block) throws WorldEditException {
|
public final <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 pt, B block) throws WorldEditException {
|
||||||
return setBlock(pt, block, true);
|
return setBlock(pt, block, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -144,6 +144,7 @@ public abstract class AbstractWorld implements World {
|
|||||||
this.priority = priority;
|
this.priority = priority;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("deprecation")
|
||||||
public void play() {
|
public void play() {
|
||||||
playEffect(position, 2001, blockType.getLegacyCombinedId() >> 4);
|
playEffect(position, 2001, blockType.getLegacyCombinedId() >> 4);
|
||||||
}
|
}
|
||||||
|
@ -60,7 +60,7 @@ public class NullWorld extends AbstractWorld {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean setBlock(BlockVector3 position, BlockStateHolder block, boolean notifyAndLight) throws WorldEditException {
|
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 position, B block, boolean notifyAndLight) throws WorldEditException {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ public interface SimpleWorld extends World {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
default boolean setBlock(BlockVector3 position, BlockStateHolder block, boolean notifyAndLight) throws WorldEditException {
|
default <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 position, B block, boolean notifyAndLight) throws WorldEditException {
|
||||||
return setBlock(position, block);
|
return setBlock(position, block);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -64,7 +64,7 @@ public interface SimpleWorld extends World {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
boolean setBlock(BlockVector3 pt, BlockStateHolder block) throws WorldEditException;
|
<B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 pt, B block) throws WorldEditException;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
default int getMaxY() {
|
default int getMaxY() {
|
||||||
|
@ -38,8 +38,6 @@ import com.sk89q.worldedit.world.block.BlockStateHolder;
|
|||||||
import com.sk89q.worldedit.world.block.BlockType;
|
import com.sk89q.worldedit.world.block.BlockType;
|
||||||
import com.sk89q.worldedit.world.weather.WeatherType;
|
import com.sk89q.worldedit.world.weather.WeatherType;
|
||||||
|
|
||||||
import java.util.Vector;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a world (dimension).
|
* Represents a world (dimension).
|
||||||
*/
|
*/
|
||||||
@ -96,7 +94,7 @@ public interface World extends Extent {
|
|||||||
* @param notifyAndLight true to to notify and light
|
* @param notifyAndLight true to to notify and light
|
||||||
* @return true if the block was successfully set (return value may not be accurate)
|
* @return true if the block was successfully set (return value may not be accurate)
|
||||||
*/
|
*/
|
||||||
boolean setBlock(BlockVector3 position, BlockStateHolder block, boolean notifyAndLight) throws WorldEditException;
|
<B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 position, B block, boolean notifyAndLight) throws WorldEditException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Notifies the simulation that the block at the given location has
|
* Notifies the simulation that the block at the given location has
|
||||||
|
@ -52,7 +52,7 @@ public class BlockCategory extends Category<BlockType> {
|
|||||||
* @param blockStateHolder The blockstateholder
|
* @param blockStateHolder The blockstateholder
|
||||||
* @return If it's a part of this category
|
* @return If it's a part of this category
|
||||||
*/
|
*/
|
||||||
public boolean contains(BlockStateHolder blockStateHolder) {
|
public <B extends BlockStateHolder<B>> boolean contains(B blockStateHolder) {
|
||||||
return this.getAll().contains(blockStateHolder.getBlockType());
|
return this.getAll().contains(blockStateHolder.getBlockType());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -63,6 +63,18 @@ public class BlockState implements BlockStateHolder<BlockState> {
|
|||||||
this.emptyBaseBlock = baseBlock;
|
this.emptyBaseBlock = baseBlock;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a fuzzy BlockState. This can be used for partial matching.
|
||||||
|
*
|
||||||
|
* @param blockType The block type
|
||||||
|
* @param values The block state values
|
||||||
|
*/
|
||||||
|
private BlockState(BlockType blockType, Map<Property<?>, Object> values) {
|
||||||
|
this.blockType = blockType;
|
||||||
|
// this.values = values;
|
||||||
|
// this.fuzzy = true;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a temporary BlockState for a given internal id
|
* Returns a temporary BlockState for a given internal id
|
||||||
* @param combinedId
|
* @param combinedId
|
||||||
@ -224,8 +236,8 @@ public class BlockState implements BlockStateHolder<BlockState> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockState apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
return this;
|
return this.toBaseBlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -330,15 +342,6 @@ public class BlockState implements BlockStateHolder<BlockState> {
|
|||||||
return this.blockType;
|
return this.blockType;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Deprecated, use masks - not try to this fuzzy/non fuzzy state nonsense
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
public BlockState toFuzzy() {
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return getOrdinal();
|
return getOrdinal();
|
||||||
@ -349,10 +352,42 @@ public class BlockState implements BlockStateHolder<BlockState> {
|
|||||||
return this == obj;
|
return this == obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public BlockState toFuzzy() {
|
||||||
|
return new BlockState(this.getBlockType(), new HashMap<>());
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Deprecated
|
public boolean equalsFuzzy(BlockStateHolder<?> o) {
|
||||||
public boolean equalsFuzzy(BlockStateHolder o) {
|
if (this == o) {
|
||||||
return o.getOrdinal() == this.getOrdinal();
|
// Added a reference equality check for
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (!getBlockType().equals(o.getBlockType())) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Set<Property<?>> differingProperties = new HashSet<>();
|
||||||
|
for (Object state : o.getStates().keySet()) {
|
||||||
|
if (getState((Property<?>) state) == null) {
|
||||||
|
differingProperties.add((Property<?>) state);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (Property<?> property : getStates().keySet()) {
|
||||||
|
if (o.getState(property) == null) {
|
||||||
|
differingProperties.add(property);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (Property<?> property : getStates().keySet()) {
|
||||||
|
if (differingProperties.contains(property)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (!Objects.equals(getState(property), o.getState(property))) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -31,7 +31,7 @@ import com.sk89q.worldedit.world.registry.BlockMaterial;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
public interface BlockStateHolder<T extends BlockStateHolder> extends FawePattern, TileEntityBlock {
|
public interface BlockStateHolder<T extends BlockStateHolder<T>> extends FawePattern, TileEntityBlock {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the block type
|
* Get the block type
|
||||||
@ -121,8 +121,7 @@ public interface BlockStateHolder<T extends BlockStateHolder> extends FawePatter
|
|||||||
* @param o other block
|
* @param o other block
|
||||||
* @return true if equal
|
* @return true if equal
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
boolean equalsFuzzy(BlockStateHolder<?> o);
|
||||||
boolean equalsFuzzy(BlockStateHolder o);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an immutable {@link BlockState} from this BlockStateHolder.
|
* Returns an immutable {@link BlockState} from this BlockStateHolder.
|
||||||
|
@ -326,8 +326,8 @@ public class BlockType implements FawePattern {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder apply(BlockVector3 position) {
|
public BaseBlock apply(BlockVector3 position) {
|
||||||
return this.getDefaultState();
|
return this.getDefaultState().toBaseBlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
public Mask toMask(Extent extent) {
|
public Mask toMask(Extent extent) {
|
||||||
|
@ -32,8 +32,8 @@ import com.sk89q.worldedit.math.BlockVector3;
|
|||||||
import com.sk89q.worldedit.world.block.BaseBlock;
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.DataException;
|
import com.sk89q.worldedit.world.DataException;
|
||||||
import com.sk89q.worldedit.world.World;
|
import com.sk89q.worldedit.world.World;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
|
||||||
import com.sk89q.worldedit.world.block.BlockTypes;
|
import com.sk89q.worldedit.world.block.BlockTypes;
|
||||||
import com.sk89q.worldedit.world.registry.LegacyMapper;
|
import com.sk89q.worldedit.world.registry.LegacyMapper;
|
||||||
import com.sk89q.worldedit.world.storage.InvalidFormatException;
|
import com.sk89q.worldedit.world.storage.InvalidFormatException;
|
||||||
@ -254,14 +254,14 @@ public class AnvilChunk implements Chunk {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder getBlock(BlockVector3 position) throws DataException {
|
public BaseBlock getBlock(BlockVector3 position) throws DataException {
|
||||||
int id = getBlockID(position);
|
int id = getBlockID(position);
|
||||||
int data = getBlockData(position);
|
int data = getBlockData(position);
|
||||||
|
|
||||||
BlockState state = LegacyMapper.getInstance().getBlockFromLegacy(id, data);
|
BlockState state = LegacyMapper.getInstance().getBlockFromLegacy(id, data);
|
||||||
if (state == null) {
|
if (state == null) {
|
||||||
WorldEdit.logger.warning("Unknown legacy block " + id + ":" + data + " found when loading legacy anvil chunk.");
|
WorldEdit.logger.warning("Unknown legacy block " + id + ":" + data + " found when loading legacy anvil chunk.");
|
||||||
return BlockTypes.AIR.getDefaultState();
|
return BlockTypes.AIR.getDefaultState().toBaseBlock();
|
||||||
}
|
}
|
||||||
if (state.getMaterial().hasContainer()) {
|
if (state.getMaterial().hasContainer()) {
|
||||||
CompoundTag tileEntity = getBlockTileEntity(position);
|
CompoundTag tileEntity = getBlockTileEntity(position);
|
||||||
@ -269,6 +269,8 @@ public class AnvilChunk implements Chunk {
|
|||||||
return new BaseBlock(state, tileEntity);
|
return new BaseBlock(state, tileEntity);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return state; }
|
|
||||||
|
return state.toBaseBlock();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,6 @@ import com.sk89q.worldedit.registry.state.Property;
|
|||||||
import com.sk89q.worldedit.world.DataException;
|
import com.sk89q.worldedit.world.DataException;
|
||||||
import com.sk89q.worldedit.world.block.BaseBlock;
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
|
||||||
import com.sk89q.worldedit.world.block.BlockType;
|
import com.sk89q.worldedit.world.block.BlockType;
|
||||||
import com.sk89q.worldedit.world.block.BlockTypes;
|
import com.sk89q.worldedit.world.block.BlockTypes;
|
||||||
import com.sk89q.worldedit.world.storage.InvalidFormatException;
|
import com.sk89q.worldedit.world.storage.InvalidFormatException;
|
||||||
@ -231,7 +230,7 @@ public class AnvilChunk13 implements Chunk {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public BlockStateHolder getBlock(BlockVector3 position) throws DataException {
|
public BaseBlock getBlock(BlockVector3 position) throws DataException {
|
||||||
int x = position.getX() - rootX * 16;
|
int x = position.getX() - rootX * 16;
|
||||||
int y = position.getY();
|
int y = position.getY();
|
||||||
int z = position.getZ() - rootZ * 16;
|
int z = position.getZ() - rootZ * 16;
|
||||||
@ -249,7 +248,8 @@ public class AnvilChunk13 implements Chunk {
|
|||||||
CompoundTag tileEntity = getBlockTileEntity(position);
|
CompoundTag tileEntity = getBlockTileEntity(position);
|
||||||
if (tileEntity != null) return new BaseBlock(state, tileEntity);
|
if (tileEntity != null) return new BaseBlock(state, tileEntity);
|
||||||
}
|
}
|
||||||
return state;
|
|
||||||
|
return state.toBaseBlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,7 @@ package com.sk89q.worldedit.world.chunk;
|
|||||||
import com.sk89q.worldedit.math.BlockVector3;
|
import com.sk89q.worldedit.math.BlockVector3;
|
||||||
import com.sk89q.worldedit.world.block.BaseBlock;
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.DataException;
|
import com.sk89q.worldedit.world.DataException;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A 16 by 16 block chunk.
|
* A 16 by 16 block chunk.
|
||||||
@ -36,6 +36,6 @@ public interface Chunk {
|
|||||||
* @return block the block
|
* @return block the block
|
||||||
* @throws DataException thrown on data error
|
* @throws DataException thrown on data error
|
||||||
*/
|
*/
|
||||||
BlockStateHolder getBlock(BlockVector3 position) throws DataException;
|
BaseBlock getBlock(BlockVector3 position) throws DataException;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -30,8 +30,8 @@ import com.sk89q.worldedit.math.BlockVector3;
|
|||||||
import com.sk89q.worldedit.world.block.BaseBlock;
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.DataException;
|
import com.sk89q.worldedit.world.DataException;
|
||||||
import com.sk89q.worldedit.world.World;
|
import com.sk89q.worldedit.world.World;
|
||||||
|
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||||
import com.sk89q.worldedit.world.block.BlockState;
|
import com.sk89q.worldedit.world.block.BlockState;
|
||||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
|
||||||
import com.sk89q.worldedit.world.block.BlockTypes;
|
import com.sk89q.worldedit.world.block.BlockTypes;
|
||||||
import com.sk89q.worldedit.world.registry.LegacyMapper;
|
import com.sk89q.worldedit.world.registry.LegacyMapper;
|
||||||
import com.sk89q.worldedit.world.storage.InvalidFormatException;
|
import com.sk89q.worldedit.world.storage.InvalidFormatException;
|
||||||
@ -154,13 +154,9 @@ public class OldChunk implements Chunk {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
//<<<<<<< HEAD
|
|
||||||
public BlockStateHolder getBlock(BlockVector3 position) throws DataException {
|
public BaseBlock getBlock(BlockVector3 position) throws DataException {
|
||||||
if(position.getBlockY() >= 128) return BlockTypes.VOID_AIR.getDefaultState();
|
if(position.getY() >= 128) return BlockTypes.VOID_AIR.getDefaultState().toBaseBlock();
|
||||||
//=======
|
|
||||||
// public BlockStateHolder getBlock(BlockVector3 position) throws DataException {
|
|
||||||
// if(position.getY() >= 128) return BlockTypes.VOID_AIR.getDefaultState().toBaseBlock();
|
|
||||||
//>>>>>>> 399e0ad5... Refactor vector system to be cleaner
|
|
||||||
int id, dataVal;
|
int id, dataVal;
|
||||||
|
|
||||||
int x = position.getX() - rootX * 16;
|
int x = position.getX() - rootX * 16;
|
||||||
@ -189,13 +185,13 @@ public class OldChunk implements Chunk {
|
|||||||
BlockState state = LegacyMapper.getInstance().getBlockFromLegacy(id, dataVal);
|
BlockState state = LegacyMapper.getInstance().getBlockFromLegacy(id, dataVal);
|
||||||
if (state == null) {
|
if (state == null) {
|
||||||
WorldEdit.logger.warning("Unknown legacy block " + id + ":" + dataVal + " found when loading legacy anvil chunk.");
|
WorldEdit.logger.warning("Unknown legacy block " + id + ":" + dataVal + " found when loading legacy anvil chunk.");
|
||||||
return BlockTypes.AIR.getDefaultState();
|
return BlockTypes.AIR.getDefaultState().toBaseBlock();
|
||||||
}
|
}
|
||||||
if (state.getBlockType().getMaterial().hasContainer()) {
|
if (state.getBlockType().getMaterial().hasContainer()) {
|
||||||
CompoundTag tileEntity = getBlockTileEntity(position);
|
CompoundTag tileEntity = getBlockTileEntity(position);
|
||||||
if (tileEntity != null) return new BaseBlock(state, tileEntity);
|
if (tileEntity != null) return new BaseBlock(state, tileEntity);
|
||||||
}
|
}
|
||||||
return state;
|
return state.toBaseBlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -66,7 +66,6 @@ public interface BlockRegistry {
|
|||||||
*/
|
*/
|
||||||
Map<String, ? extends Property<?>> getProperties(BlockType blockType);
|
Map<String, ? extends Property<?>> getProperties(BlockType blockType);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register all blocks
|
* Register all blocks
|
||||||
*/
|
*/
|
||||||
|
@ -230,7 +230,7 @@ public class LegacyMapper {
|
|||||||
return INSTANCE;
|
return INSTANCE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"MismatchedQueryAndUpdateOfCollection", "unused"})
|
@SuppressWarnings({"MismatchedQueryAndUpdateOfCollection"})
|
||||||
private static class LegacyDataFile {
|
private static class LegacyDataFile {
|
||||||
private Map<String, String> blocks;
|
private Map<String, String> blocks;
|
||||||
private Map<String, String> items;
|
private Map<String, String> items;
|
||||||
|
@ -175,8 +175,12 @@ public class ForgePlayer extends AbstractPlayerActor {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
<<<<<<< HEAD
|
<<<<<<< HEAD
|
||||||
|
<<<<<<< HEAD
|
||||||
=======
|
=======
|
||||||
public void sendFakeBlock(BlockVector3 pos, BlockStateHolder block) {
|
public void sendFakeBlock(BlockVector3 pos, BlockStateHolder block) {
|
||||||
|
=======
|
||||||
|
public <B extends BlockStateHolder<B>> void sendFakeBlock(BlockVector3 pos, B block) {
|
||||||
|
>>>>>>> 3fefcbf9... Remove all raw usages of BSH, improve API generics
|
||||||
BlockPos loc = ForgeAdapter.toBlockPos(pos);
|
BlockPos loc = ForgeAdapter.toBlockPos(pos);
|
||||||
if (block == null) {
|
if (block == null) {
|
||||||
// TODO
|
// TODO
|
||||||
|
Einige Dateien werden nicht angezeigt, da zu viele Dateien in diesem Diff geändert wurden Mehr anzeigen
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren