mirror of
https://github.com/Minestom/Minestom.git
synced 2024-11-15 07:05:52 +01:00
87 lines
2.3 KiB
Java
87 lines
2.3 KiB
Java
package net.minestom.server.command;
|
|
|
|
import net.minestom.server.chat.JsonMessage;
|
|
import net.minestom.server.entity.Player;
|
|
import net.minestom.server.permission.PermissionHandler;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
/**
|
|
* Represents something which can send commands to the server.
|
|
* <p>
|
|
* Main implementations are {@link Player} and {@link ConsoleSender}.
|
|
*/
|
|
public interface CommandSender extends PermissionHandler {
|
|
|
|
/**
|
|
* Sends a raw string message.
|
|
*
|
|
* @param message the message to send
|
|
*/
|
|
void sendMessage(@NotNull String message);
|
|
|
|
/**
|
|
* Sends multiple raw string messages.
|
|
*
|
|
* @param messages the messages to send
|
|
*/
|
|
default void sendMessage(@NotNull String[] messages) {
|
|
for (String message : messages) {
|
|
sendMessage(message);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Sends a {@link JsonMessage} message.
|
|
* If this is not a {@link Player}, only the content of the message will be sent as a string.
|
|
*
|
|
* @param text The {@link JsonMessage} to send.
|
|
* */
|
|
default void sendMessage(@NotNull JsonMessage text) {
|
|
if (this instanceof Player) {
|
|
this.sendMessage(text);
|
|
} else {
|
|
sendMessage(text.getRawMessage());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Gets if the sender is a {@link Player}.
|
|
*
|
|
* @return true if 'this' is a player, false otherwise
|
|
*/
|
|
default boolean isPlayer() {
|
|
return this instanceof Player;
|
|
}
|
|
|
|
/**
|
|
* Gets if the sender is a {@link ConsoleSender}.
|
|
*
|
|
* @return true if 'this' is the console, false otherwise
|
|
*/
|
|
default boolean isConsole() {
|
|
return this instanceof ConsoleSender;
|
|
}
|
|
|
|
/**
|
|
* Casts this object to a {@link Player}.
|
|
* No checks are performed, {@link ClassCastException} can very much happen.
|
|
*
|
|
* @throws ClassCastException if 'this' is not a player
|
|
* @see #isPlayer()
|
|
*/
|
|
default Player asPlayer() {
|
|
return (Player) this;
|
|
}
|
|
|
|
/**
|
|
* Casts this object to a {@link ConsoleSender}.
|
|
* No checks are performed, {@link ClassCastException} can very much happen.
|
|
*
|
|
* @throws ClassCastException if 'this' is not a console sender
|
|
* @see #isConsole()
|
|
*/
|
|
default ConsoleSender asConsole() {
|
|
return (ConsoleSender) this;
|
|
}
|
|
}
|