Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-02 17:40:09 +01:00
Add Pattern#applyBlock in favor of Pattern#apply
As Fawe extends into its own Filter class, this will need a Fawe-suitable solution at some point when removing the deprecated method. This is a compatibility-layer workaround for plugins calling the WorldEdit method `Pattern#applyBlock`.
Dieser Commit ist enthalten in:
Ursprung
5dafa5f62b
Commit
22be7410fc
@ -23,21 +23,25 @@ import com.boydti.fawe.beta.Filter;
|
|||||||
import com.boydti.fawe.beta.implementation.filter.block.FilterBlock;
|
import com.boydti.fawe.beta.implementation.filter.block.FilterBlock;
|
||||||
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.internal.util.DeprecationUtil;
|
||||||
|
import com.sk89q.worldedit.internal.util.NonAbstractForCompatibility;
|
||||||
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.block.BlockStateHolder;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a {@link BlockStateHolder} for a given position.
|
* Returns a {@link BaseBlock} for a given position.
|
||||||
*/
|
*/
|
||||||
|
// FAWE Start
|
||||||
public interface Pattern extends Filter {
|
public interface Pattern extends Filter {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return a {@link BlockStateHolder} for the given position.
|
* Return a {@link BaseBlock} for the given position.
|
||||||
*
|
*
|
||||||
* @param position the position
|
* @param position the position
|
||||||
* @return a block
|
* @return a block
|
||||||
|
* @deprecated use {@link Pattern#applyBlock(BlockVector3)}
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
BaseBlock 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 {
|
||||||
@ -48,4 +52,24 @@ public interface Pattern extends Filter {
|
|||||||
default void applyBlock(final FilterBlock block) {
|
default void applyBlock(final FilterBlock block) {
|
||||||
apply(block, block, block);
|
apply(block, block, block);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// FAWE End
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return a {@link BaseBlock} for the given position.
|
||||||
|
*
|
||||||
|
* @param position the position
|
||||||
|
* @return a block
|
||||||
|
* @apiNote This must be overridden by new subclasses. See {@link NonAbstractForCompatibility}
|
||||||
|
* for details
|
||||||
|
*/
|
||||||
|
@NonAbstractForCompatibility(
|
||||||
|
delegateName = "apply",
|
||||||
|
delegateParams = { BlockVector3.class }
|
||||||
|
)
|
||||||
|
default BaseBlock applyBlock(BlockVector3 position) {
|
||||||
|
DeprecationUtil.checkDelegatingOverride(getClass());
|
||||||
|
|
||||||
|
return apply(position);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren