mirror of
https://github.com/Minestom/Minestom.git
synced 2024-12-31 21:48:08 +01:00
More comments for message related classes
This commit is contained in:
parent
ddc5da4415
commit
f72dce3a46
@ -12,6 +12,9 @@ import java.util.regex.Pattern;
|
|||||||
* Represents a text with one or multiple colors.
|
* Represents a text with one or multiple colors.
|
||||||
* <p>
|
* <p>
|
||||||
* Used when the message can contain colors but not events like in {@link RichMessage}.
|
* Used when the message can contain colors but not events like in {@link RichMessage}.
|
||||||
|
* <p>
|
||||||
|
* To create one, you simply call one of the static methods like {@link #of(ChatColor, String)},
|
||||||
|
* you can then continue to append text with {@link #append(ChatColor, String)}.
|
||||||
*/
|
*/
|
||||||
public class ColoredText extends JsonMessage {
|
public class ColoredText extends JsonMessage {
|
||||||
|
|
||||||
|
@ -14,12 +14,19 @@ import java.util.List;
|
|||||||
* click and hover events.
|
* click and hover events.
|
||||||
* <p>
|
* <p>
|
||||||
* Used when the message can contain both colored text and event (otherwise, use {@link ColoredText}).
|
* Used when the message can contain both colored text and event (otherwise, use {@link ColoredText}).
|
||||||
|
* <p>
|
||||||
|
* You will need to call the static method to initialize the message {@link #of(ColoredText)},
|
||||||
|
* events can be assigned with {@link #setClickEvent(ChatClickEvent)} and {@link #setHoverEvent(ChatHoverEvent)}
|
||||||
|
* and new text element can also be appended {@link #append(ColoredText)}.
|
||||||
*/
|
*/
|
||||||
public class RichMessage extends JsonMessage {
|
public class RichMessage extends JsonMessage {
|
||||||
|
|
||||||
private List<RichComponent> components = new ArrayList<>();
|
private List<RichComponent> components = new ArrayList<>();
|
||||||
private RichComponent currentComponent;
|
private RichComponent currentComponent;
|
||||||
|
|
||||||
|
private RichMessage() {
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a RichMessage by adding the first rich component
|
* Create a RichMessage by adding the first rich component
|
||||||
*
|
*
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
package net.minestom.server.entity;
|
package net.minestom.server.entity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents the game mode of a player.
|
||||||
|
* <p>
|
||||||
|
* Can be set with {@link Player#setGameMode(GameMode)}.
|
||||||
|
*/
|
||||||
public enum GameMode {
|
public enum GameMode {
|
||||||
|
|
||||||
SURVIVAL((byte) 0, true), CREATIVE((byte) 1, false), ADVENTURE((byte) 2, true), SPECTATOR((byte) 3, false);
|
SURVIVAL((byte) 0, true), CREATIVE((byte) 1, false), ADVENTURE((byte) 2, true), SPECTATOR((byte) 3, false);
|
||||||
|
@ -672,7 +672,7 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send a message to the player
|
* Sends a message to the player.
|
||||||
*
|
*
|
||||||
* @param message the message to send,
|
* @param message the message to send,
|
||||||
* you can use {@link ColoredText} and/or {@link RichMessage} to create it easily
|
* you can use {@link ColoredText} and/or {@link RichMessage} to create it easily
|
||||||
@ -682,10 +682,10 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send a legacy message with the specified color char
|
* Sends a legacy message with the specified color char.
|
||||||
*
|
*
|
||||||
* @param text the text with the legacy color formatting
|
* @param text the text with the legacy color formatting
|
||||||
* @param colorChar the color char
|
* @param colorChar the color charactero
|
||||||
*/
|
*/
|
||||||
public void sendLegacyMessage(String text, char colorChar) {
|
public void sendLegacyMessage(String text, char colorChar) {
|
||||||
ColoredText coloredText = ColoredText.ofLegacy(text, colorChar);
|
ColoredText coloredText = ColoredText.ofLegacy(text, colorChar);
|
||||||
@ -693,7 +693,7 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send a legacy message with the default color char {@link ChatParser#COLOR_CHAR}
|
* Sends a legacy message with the default color char {@link ChatParser#COLOR_CHAR}.
|
||||||
*
|
*
|
||||||
* @param text the text with the legacy color formatting
|
* @param text the text with the legacy color formatting
|
||||||
*/
|
*/
|
||||||
@ -732,7 +732,7 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Plays a given effect at the given position for this player
|
* Plays a given effect at the given position for this player.
|
||||||
*
|
*
|
||||||
* @param effect the effect to play
|
* @param effect the effect to play
|
||||||
* @param x x position of the effect
|
* @param x x position of the effect
|
||||||
@ -751,7 +751,7 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send a {@link StopSoundPacket} packet
|
* Sends a {@link StopSoundPacket} packet.
|
||||||
*/
|
*/
|
||||||
public void stopSound() {
|
public void stopSound() {
|
||||||
StopSoundPacket stopSoundPacket = new StopSoundPacket();
|
StopSoundPacket stopSoundPacket = new StopSoundPacket();
|
||||||
@ -759,6 +759,12 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
playerConnection.sendPacket(stopSoundPacket);
|
playerConnection.sendPacket(stopSoundPacket);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the header and footer of a player which will be displayed in his tab window.
|
||||||
|
*
|
||||||
|
* @param header the header text
|
||||||
|
* @param footer the footer text
|
||||||
|
*/
|
||||||
public void sendHeaderFooter(ColoredText header, ColoredText footer) {
|
public void sendHeaderFooter(ColoredText header, ColoredText footer) {
|
||||||
PlayerListHeaderAndFooterPacket playerListHeaderAndFooterPacket = new PlayerListHeaderAndFooterPacket();
|
PlayerListHeaderAndFooterPacket playerListHeaderAndFooterPacket = new PlayerListHeaderAndFooterPacket();
|
||||||
playerListHeaderAndFooterPacket.emptyHeader = header == null;
|
playerListHeaderAndFooterPacket.emptyHeader = header == null;
|
||||||
@ -798,7 +804,7 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send a title and subtitle message.
|
* Sends a title and subtitle message.
|
||||||
*
|
*
|
||||||
* @param title the title message
|
* @param title the title message
|
||||||
* @param subtitle the subtitle message
|
* @param subtitle the subtitle message
|
||||||
@ -810,7 +816,7 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send a title message.
|
* Sends a title message.
|
||||||
*
|
*
|
||||||
* @param title the title message
|
* @param title the title message
|
||||||
* @see #sendTitleTime(int, int, int) to specify the display time
|
* @see #sendTitleTime(int, int, int) to specify the display time
|
||||||
@ -820,7 +826,7 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send a subtitle message.
|
* Sends a subtitle message.
|
||||||
*
|
*
|
||||||
* @param subtitle the subtitle message
|
* @param subtitle the subtitle message
|
||||||
* @see #sendTitleTime(int, int, int) to specify the display time
|
* @see #sendTitleTime(int, int, int) to specify the display time
|
||||||
@ -830,7 +836,7 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send an action bar message.
|
* Sends an action bar message.
|
||||||
*
|
*
|
||||||
* @param actionBar the action bar message
|
* @param actionBar the action bar message
|
||||||
* @see #sendTitleTime(int, int, int) to specify the display time
|
* @see #sendTitleTime(int, int, int) to specify the display time
|
||||||
@ -1016,6 +1022,7 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
* This does remove the player for all viewers to spawn it again with the correct new skin.
|
* This does remove the player for all viewers to spawn it again with the correct new skin.
|
||||||
*
|
*
|
||||||
* @param skin the player skin, null to reset it to his {@link #getUuid()} default skin
|
* @param skin the player skin, null to reset it to his {@link #getUuid()} default skin
|
||||||
|
* @see PlayerSkinInitEvent if you want to apply the skin at connection
|
||||||
*/
|
*/
|
||||||
public synchronized void setSkin(PlayerSkin skin) {
|
public synchronized void setSkin(PlayerSkin skin) {
|
||||||
this.skin = skin;
|
this.skin = skin;
|
||||||
@ -1095,6 +1102,8 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Calls an {@link ItemDropEvent} with a specified item.
|
||||||
|
*
|
||||||
* @param item the item to drop
|
* @param item the item to drop
|
||||||
* @return true if player can drop the item (event not cancelled), false otherwise
|
* @return true if player can drop the item (event not cancelled), false otherwise
|
||||||
*/
|
*/
|
||||||
@ -1175,8 +1184,9 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used to retrieve the default spawn point
|
* Used to retrieve the default spawn point.
|
||||||
* can be altered by the {@link PlayerRespawnEvent#setRespawnPosition(Position)}.
|
* <p>
|
||||||
|
* Can be altered by the {@link PlayerRespawnEvent#setRespawnPosition(Position)}.
|
||||||
*
|
*
|
||||||
* @return the default respawn point
|
* @return the default respawn point
|
||||||
*/
|
*/
|
||||||
@ -1219,6 +1229,9 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the player food and health values to their maximum.
|
||||||
|
*/
|
||||||
protected void refreshHealth() {
|
protected void refreshHealth() {
|
||||||
this.food = 20;
|
this.food = 20;
|
||||||
this.foodSaturation = 5;
|
this.foodSaturation = 5;
|
||||||
@ -1226,6 +1239,9 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
heal();
|
heal();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sends an {@link UpdateHealthPacket} to refresh client-side information about health and food.
|
||||||
|
*/
|
||||||
protected void sendUpdateHealthPacket() {
|
protected void sendUpdateHealthPacket() {
|
||||||
UpdateHealthPacket updateHealthPacket = new UpdateHealthPacket();
|
UpdateHealthPacket updateHealthPacket = new UpdateHealthPacket();
|
||||||
updateHealthPacket.health = getHealth();
|
updateHealthPacket.health = getHealth();
|
||||||
@ -1276,6 +1292,9 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
sendExperienceUpdatePacket();
|
sendExperienceUpdatePacket();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sends a {@link SetExperiencePacket} to refresh client-side information about the experience bar.
|
||||||
|
*/
|
||||||
protected void sendExperienceUpdatePacket() {
|
protected void sendExperienceUpdatePacket() {
|
||||||
SetExperiencePacket setExperiencePacket = new SetExperiencePacket();
|
SetExperiencePacket setExperiencePacket = new SetExperiencePacket();
|
||||||
setExperiencePacket.percentage = exp;
|
setExperiencePacket.percentage = exp;
|
||||||
@ -1405,7 +1424,7 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the player GameMode.
|
* Gets the player {@link GameMode}.
|
||||||
*
|
*
|
||||||
* @return the player current gamemode
|
* @return the player current gamemode
|
||||||
*/
|
*/
|
||||||
@ -1456,7 +1475,7 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Kick the player with a reason.
|
* Kicks the player with a reason.
|
||||||
*
|
*
|
||||||
* @param text the kick reason
|
* @param text the kick reason
|
||||||
*/
|
*/
|
||||||
@ -1469,7 +1488,7 @@ public class Player extends LivingEntity implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Kick the player with a reason.
|
* Kicks the player with a reason.
|
||||||
*
|
*
|
||||||
* @param message the kick reason
|
* @param message the kick reason
|
||||||
*/
|
*/
|
||||||
|
@ -85,7 +85,7 @@ public final class ConnectionManager {
|
|||||||
/**
|
/**
|
||||||
* Sends a {@link JsonMessage} to all online players who validate the condition {@code condition}.
|
* Sends a {@link JsonMessage} to all online players who validate the condition {@code condition}.
|
||||||
*
|
*
|
||||||
* @param jsonMessage the message to send
|
* @param jsonMessage the message to send, probably a {@link net.minestom.server.chat.ColoredText} or {@link net.minestom.server.chat.RichMessage}
|
||||||
* @param condition the condition to receive the message
|
* @param condition the condition to receive the message
|
||||||
*/
|
*/
|
||||||
public void broadcastMessage(JsonMessage jsonMessage, Function<Player, Boolean> condition) {
|
public void broadcastMessage(JsonMessage jsonMessage, Function<Player, Boolean> condition) {
|
||||||
@ -100,7 +100,7 @@ public final class ConnectionManager {
|
|||||||
/**
|
/**
|
||||||
* Sends a {@link JsonMessage} to all online players.
|
* Sends a {@link JsonMessage} to all online players.
|
||||||
*
|
*
|
||||||
* @param jsonMessage the message to send
|
* @param jsonMessage the message to send, probably a {@link net.minestom.server.chat.ColoredText} or {@link net.minestom.server.chat.RichMessage}
|
||||||
*/
|
*/
|
||||||
public void broadcastMessage(JsonMessage jsonMessage) {
|
public void broadcastMessage(JsonMessage jsonMessage) {
|
||||||
broadcastMessage(jsonMessage, null);
|
broadcastMessage(jsonMessage, null);
|
||||||
|
Loading…
Reference in New Issue
Block a user