mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-30 16:19:03 +01:00
parent
ac7207c25a
commit
027afe0c44
1 changed files with 89 additions and 0 deletions
|
@ -1,8 +1,97 @@
|
|||
package org.bukkit.entity;
|
||||
|
||||
import java.util.Collection;
|
||||
import org.bukkit.Location;
|
||||
import org.jetbrains.annotations.ApiStatus;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Represents a Sniffer.
|
||||
*
|
||||
* <b>Note: This entity is part of an experimental feature of Minecraft and
|
||||
* hence subject to change.</b>
|
||||
*/
|
||||
@ApiStatus.Experimental
|
||||
public interface Sniffer extends Animals {
|
||||
|
||||
/**
|
||||
* Gets the locations explored by the sniffer.
|
||||
*
|
||||
* <b>Note:</b> the returned locations use sniffer's current world.
|
||||
*
|
||||
* @return a collection of locations
|
||||
*/
|
||||
@NotNull
|
||||
public Collection<Location> getExploredLocations();
|
||||
|
||||
/**
|
||||
* Remove a location of the explored locations.
|
||||
*
|
||||
* <b>Note:</b> the location must be in the sniffer's current world for this
|
||||
* method to have any effect.
|
||||
*
|
||||
*
|
||||
* @param location the location to remove
|
||||
* @see #getExploredLocations()
|
||||
*/
|
||||
public void removeExploredLocation(@NotNull Location location);
|
||||
|
||||
/**
|
||||
* Add a location to the explored locations.
|
||||
*
|
||||
* <b>Note:</b> the location must be in the sniffer's current world for this
|
||||
* method to have any effect.
|
||||
*
|
||||
*
|
||||
* @param location the location to add
|
||||
* @see #getExploredLocations()
|
||||
*/
|
||||
public void addExploredLocation(@NotNull Location location);
|
||||
|
||||
/**
|
||||
* Get the current state of the sniffer.
|
||||
*
|
||||
* @return the state of the sniffer
|
||||
*/
|
||||
@NotNull
|
||||
public Sniffer.State getState();
|
||||
|
||||
/**
|
||||
* Set a new state for the sniffer.
|
||||
* <br>
|
||||
* This will also make the sniffer make the transition to the new state.
|
||||
*
|
||||
* @param state the new state
|
||||
*/
|
||||
public void setState(@NotNull Sniffer.State state);
|
||||
|
||||
/**
|
||||
* Try to get a possible location where the sniffer can dig.
|
||||
*
|
||||
* @return a {@link Location} if found or null
|
||||
*/
|
||||
@Nullable
|
||||
public Location findPossibleDigLocation();
|
||||
|
||||
/**
|
||||
* Gets whether the sniffer can dig in the current {@link Location} below
|
||||
* its head.
|
||||
*
|
||||
* @return {@code true} if can dig or {@code false} otherwise
|
||||
*/
|
||||
public boolean canDig();
|
||||
|
||||
/**
|
||||
* Represents the current state of the Sniffer.
|
||||
*/
|
||||
public enum State {
|
||||
IDLING,
|
||||
FEELING_HAPPY,
|
||||
SCENTING,
|
||||
SNIFFING,
|
||||
SEARCHING,
|
||||
DIGGING,
|
||||
RISING;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue