123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358 |
- package com.gmail.nossr50.util.player;
- import com.gmail.nossr50.datatypes.LevelUpBroadcastPredicate;
- import com.gmail.nossr50.datatypes.PowerLevelUpBroadcastPredicate;
- import com.gmail.nossr50.datatypes.interactions.NotificationType;
- import com.gmail.nossr50.datatypes.notifications.SensitiveCommandType;
- import com.gmail.nossr50.datatypes.player.McMMOPlayer;
- import com.gmail.nossr50.datatypes.skills.PrimarySkillType;
- import com.gmail.nossr50.datatypes.skills.SubSkillType;
- import com.gmail.nossr50.events.skills.McMMOPlayerNotificationEvent;
- import com.gmail.nossr50.locale.LocaleLoader;
- import com.gmail.nossr50.mcMMO;
- import com.gmail.nossr50.util.Permissions;
- import com.gmail.nossr50.util.sounds.SoundManager;
- import com.gmail.nossr50.util.sounds.SoundType;
- import com.gmail.nossr50.util.text.McMMOMessageType;
- import com.gmail.nossr50.util.text.TextComponentFactory;
- import net.kyori.adventure.audience.Audience;
- import net.kyori.adventure.identity.Identity;
- import net.kyori.adventure.text.Component;
- import net.kyori.adventure.text.event.HoverEvent;
- import net.kyori.adventure.text.format.TextColor;
- import net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer;
- import org.bukkit.Bukkit;
- import org.bukkit.ChatColor;
- import org.bukkit.Server;
- import org.bukkit.SoundCategory;
- import org.bukkit.command.CommandSender;
- import org.bukkit.entity.Player;
- import org.jetbrains.annotations.NotNull;
- import java.time.LocalDate;
- public class NotificationManager {
- public static final String HEX_BEIGE_COLOR = "#c2a66e";
- public static final String HEX_LIME_GREEN_COLOR = "#8ec26e";
- /**
- * Sends players notifications from mcMMO
- * Does so by sending out an event so other plugins can cancel it
- * @param player target player
- * @param notificationType notifications defined type
- * @param key the locale key for the notifications defined message
- */
- public static void sendPlayerInformation(Player player, NotificationType notificationType, String key) {
- if (UserManager.getPlayer(player) == null || !UserManager.getPlayer(player).useChatNotifications())
- return;
- McMMOMessageType destination
- = mcMMO.p.getAdvancedConfig().doesNotificationUseActionBar(notificationType)
- ? McMMOMessageType.ACTION_BAR : McMMOMessageType.SYSTEM;
- Component message = TextComponentFactory.getNotificationTextComponentFromLocale(key);
- McMMOPlayerNotificationEvent customEvent = checkNotificationEvent(player, notificationType, destination, message);
- sendNotification(player, customEvent);
- }
- public static boolean doesPlayerUseNotifications(Player player) {
- if (UserManager.getPlayer(player) == null)
- return false;
- else
- return UserManager.getPlayer(player).useChatNotifications();
- }
- /**
- * Sends players notifications from mcMMO
- * This does this by sending out an event so other plugins can cancel it
- * This event in particular is provided with a source player, and players near the source player are sent the information
- * @param targetPlayer the recipient player for this message
- * @param notificationType type of notification
- * @param key Locale Key for the string to use with this event
- * @param values values to be injected into the locale string
- */
- public static void sendNearbyPlayersInformation(Player targetPlayer, NotificationType notificationType, String key,
- String... values) {
- sendPlayerInformation(targetPlayer, notificationType, key, values);
- }
- public static void sendPlayerInformationChatOnly(Player player, String key, String... values) {
- if (UserManager.getPlayer(player) == null || !UserManager.getPlayer(player).useChatNotifications())
- return;
- String preColoredString = LocaleLoader.getString(key, (Object[]) values);
- player.sendMessage(preColoredString);
- }
- public static void sendPlayerInformationChatOnlyPrefixed(Player player, String key, String... values) {
- if (UserManager.getPlayer(player) == null || !UserManager.getPlayer(player).useChatNotifications())
- return;
- String preColoredString = LocaleLoader.getString(key, (Object[]) values);
- String prefixFormattedMessage = LocaleLoader.getString("mcMMO.Template.Prefix", preColoredString);
- player.sendMessage(prefixFormattedMessage);
- }
- public static void sendPlayerInformation(Player player, NotificationType notificationType, String key,
- String... values) {
- if (UserManager.getPlayer(player) == null || !UserManager.getPlayer(player).useChatNotifications())
- return;
- McMMOMessageType destination = mcMMO.p.getAdvancedConfig().doesNotificationUseActionBar(notificationType) ? McMMOMessageType.ACTION_BAR : McMMOMessageType.SYSTEM;
- Component message = TextComponentFactory.getNotificationMultipleValues(key, values);
- McMMOPlayerNotificationEvent customEvent = checkNotificationEvent(player, notificationType, destination, message);
- sendNotification(player, customEvent);
- }
- private static void sendNotification(Player player, McMMOPlayerNotificationEvent customEvent) {
- if (customEvent.isCancelled())
- return;
- final Audience audience = mcMMO.getAudiences().player(player);
- Component notificationTextComponent = customEvent.getNotificationTextComponent();
- if (customEvent.getChatMessageType() == McMMOMessageType.ACTION_BAR) {
- audience.sendActionBar(notificationTextComponent);
- // If the message is being sent to the action bar we need to check if a copy is also sent to the chat system
- if (customEvent.isMessageAlsoBeingSentToChat()) {
- //Send copy to chat system
- audience.sendMessage(notificationTextComponent);
- }
- } else {
- audience.sendMessage(notificationTextComponent);
- }
- }
- private static McMMOPlayerNotificationEvent checkNotificationEvent(Player player, NotificationType notificationType,
- McMMOMessageType destination,
- Component message) {
- //Init event
- McMMOPlayerNotificationEvent customEvent = new McMMOPlayerNotificationEvent(player,
- notificationType, message, destination,
- mcMMO.p.getAdvancedConfig().doesNotificationSendCopyToChat(notificationType));
- //Call event
- Bukkit.getServer().getPluginManager().callEvent(customEvent);
- return customEvent;
- }
- /**
- * Handles sending level up notifications to a mcMMOPlayer
- * @param mcMMOPlayer target mcMMOPlayer
- * @param skillName skill that leveled up
- * @param newLevel new level of that skill
- */
- public static void sendPlayerLevelUpNotification(McMMOPlayer mcMMOPlayer, PrimarySkillType skillName,
- int levelsGained, int newLevel) {
- if (!mcMMOPlayer.useChatNotifications())
- return;
- McMMOMessageType destination
- = mcMMO.p.getAdvancedConfig().doesNotificationUseActionBar(NotificationType.LEVEL_UP_MESSAGE)
- ? McMMOMessageType.ACTION_BAR : McMMOMessageType.SYSTEM;
- Component levelUpTextComponent = TextComponentFactory.getNotificationLevelUpTextComponent(
- skillName, levelsGained, newLevel);
- McMMOPlayerNotificationEvent customEvent = checkNotificationEvent(
- mcMMOPlayer.getPlayer(),
- NotificationType.LEVEL_UP_MESSAGE,
- destination,
- levelUpTextComponent);
- sendNotification(mcMMOPlayer.getPlayer(), customEvent);
- }
- public static void broadcastTitle(Server server, String title, String subtitle, int i1, int i2, int i3) {
- for(Player player : server.getOnlinePlayers()) {
- player.sendTitle(title, subtitle, i1, i2, i3);
- }
- }
- public static void sendPlayerUnlockNotification(McMMOPlayer mcMMOPlayer, SubSkillType subSkillType) {
- if (!mcMMOPlayer.useChatNotifications())
- return;
- //CHAT MESSAGE
- mcMMO.getAudiences().player(mcMMOPlayer.getPlayer()).sendMessage(Identity.nil(),
- TextComponentFactory.getSubSkillUnlockedNotificationComponents(mcMMOPlayer.getPlayer(), subSkillType));
- //Unlock Sound Effect
- SoundManager.sendCategorizedSound(mcMMOPlayer.getPlayer(), mcMMOPlayer.getPlayer().getLocation(),
- SoundType.SKILL_UNLOCKED, SoundCategory.MASTER);
- }
- /**
- * Sends a message to all admins with the admin notification formatting from the locale
- * Admins are currently players with either Operator status or Admin Chat permission
- * @param msg message fetched from locale
- */
- private static void sendAdminNotification(String msg) {
- //If its not enabled exit
- if (!mcMMO.p.getGeneralConfig().adminNotifications())
- return;
- for(Player player : Bukkit.getServer().getOnlinePlayers()) {
- if (player.isOp() || Permissions.adminChat(player)) {
- player.sendMessage(LocaleLoader.getString("Notifications.Admin.Format.Others", msg));
- }
- }
- //Copy it out to Console too
- mcMMO.p.getLogger().info(LocaleLoader.getString("Notifications.Admin.Format.Others", msg));
- }
- /**
- * Sends a confirmation message to the CommandSender who just executed an admin command
- * @param commandSender target command sender
- * @param msg message fetched from locale
- */
- private static void sendAdminCommandConfirmation(CommandSender commandSender, String msg) {
- commandSender.sendMessage(LocaleLoader.getString("Notifications.Admin.Format.Self", msg));
- }
- /**
- * Convenience method to report info about a command sender using a sensitive command
- * @param commandSender the command user
- * @param sensitiveCommandType type of command issued
- */
- public static void processSensitiveCommandNotification(CommandSender commandSender,
- SensitiveCommandType sensitiveCommandType, String... args) {
- /*
- * Determine the 'identity' of the one who executed the command to pass as a parameters
- */
- String senderName = LocaleLoader.getString("Server.ConsoleName");
- if (commandSender instanceof Player) {
- senderName = ((Player) commandSender).getDisplayName()
- + ChatColor.RESET + "-" + ((Player) commandSender).getUniqueId();
- }
- //Send the notification
- switch(sensitiveCommandType) {
- case XPRATE_MODIFY:
- sendAdminNotification(LocaleLoader.getString("Notifications.Admin.XPRate.Start.Others",
- addItemToFirstPositionOfArray(senderName, args)));
- sendAdminCommandConfirmation(
- commandSender, LocaleLoader.getString("Notifications.Admin.XPRate.Start.Self", args));
- break;
- case XPRATE_END:
- sendAdminNotification(
- LocaleLoader.getString(
- "Notifications.Admin.XPRate.End.Others",
- addItemToFirstPositionOfArray(senderName, args)));
- sendAdminCommandConfirmation(commandSender,
- LocaleLoader.getString("Notifications.Admin.XPRate.End.Self", args));
- break;
- }
- }
- /**
- * Takes an array and an object, makes a new array with object in the first position of the new array,
- * and the following elements in this new array being a copy of the existing array retaining their order
- * @param itemToAdd the string to put at the beginning of the new array
- * @param existingArray the existing array to be copied to the new array at position [0]+1 relative to their original index
- * @return the new array combining itemToAdd at the start and existing array elements following while retaining their order
- */
- public static String[] addItemToFirstPositionOfArray(String itemToAdd, String... existingArray) {
- String[] newArray = new String[existingArray.length + 1];
- newArray[0] = itemToAdd;
- System.arraycopy(existingArray, 0, newArray, 1, existingArray.length);
- return newArray;
- }
- public static void processLevelUpBroadcasting(@NotNull McMMOPlayer mmoPlayer, @NotNull PrimarySkillType primarySkillType, int level) {
- if (level <= 0)
- return;
- //Check if broadcasting is enabled
- if (mcMMO.p.getGeneralConfig().shouldLevelUpBroadcasts()) {
- //Permission check
- if (!Permissions.levelUpBroadcast(mmoPlayer.getPlayer())) {
- return;
- }
- int levelInterval = mcMMO.p.getGeneralConfig().getLevelUpBroadcastInterval();
- int remainder = level % levelInterval;
- if (remainder == 0) {
- //Grab appropriate audience
- Audience audience = mcMMO.getAudiences().filter(getLevelUpBroadcastPredicate(mmoPlayer.getPlayer()));
- //TODO: Make prettier
- HoverEvent<Component> levelMilestoneHover = Component.text(mmoPlayer.getPlayer().getName())
- .append(Component.newline())
- .append(Component.text(LocalDate.now().toString()))
- .append(Component.newline())
- .append(Component.text(
- mcMMO.p.getSkillTools().getLocalizedSkillName(primarySkillType)
- + " reached level "+level)).color(TextColor.fromHexString(HEX_BEIGE_COLOR))
- .asHoverEvent();
- String localeMessage = LocaleLoader.getString(
- "Broadcasts.LevelUpMilestone", mmoPlayer.getPlayer().getDisplayName(), level,
- mcMMO.p.getSkillTools().getLocalizedSkillName(primarySkillType));
- Component component = LegacyComponentSerializer
- .legacySection()
- .deserialize(localeMessage)
- .hoverEvent(levelMilestoneHover);
- // TODO: Update system msg API
- mcMMO.p.getFoliaLib().getScheduler().runNextTick(
- t -> audience.sendMessage(component));
- }
- }
- }
- //TODO: Remove the code duplication, am lazy atm
- //TODO: Fix broadcasts being skipped for situations where a player skips over the milestone like with the addlevels command
- public static void processPowerLevelUpBroadcasting(@NotNull McMMOPlayer mmoPlayer, int powerLevel) {
- if (powerLevel <= 0)
- return;
- //Check if broadcasting is enabled
- if (mcMMO.p.getGeneralConfig().shouldPowerLevelUpBroadcasts()) {
- //Permission check
- if (!Permissions.levelUpBroadcast(mmoPlayer.getPlayer())) {
- return;
- }
- int levelInterval = mcMMO.p.getGeneralConfig().getPowerLevelUpBroadcastInterval();
- int remainder = powerLevel % levelInterval;
- if (remainder == 0) {
- //Grab appropriate audience
- Audience audience = mcMMO.getAudiences().filter(getPowerLevelUpBroadcastPredicate(mmoPlayer.getPlayer()));
- //TODO: Make prettier
- HoverEvent<Component> levelMilestoneHover = Component.text(mmoPlayer.getPlayer().getName())
- .append(Component.newline())
- .append(Component.text(LocalDate.now().toString()))
- .append(Component.newline())
- .append(Component.text("Power level has reached "+powerLevel)).color(TextColor.fromHexString(HEX_BEIGE_COLOR))
- .asHoverEvent();
- String localeMessage = LocaleLoader.getString("Broadcasts.PowerLevelUpMilestone", mmoPlayer.getPlayer().getDisplayName(), powerLevel);
- Component message = LegacyComponentSerializer.legacySection().deserialize(localeMessage).hoverEvent(levelMilestoneHover);
- mcMMO.p.getFoliaLib().getScheduler().runNextTick(t -> audience.sendMessage(message));
- }
- }
- }
- //TODO: Could cache
- public static @NotNull LevelUpBroadcastPredicate<CommandSender> getLevelUpBroadcastPredicate(@NotNull CommandSender levelUpPlayer) {
- return new LevelUpBroadcastPredicate<>(levelUpPlayer);
- }
- public static @NotNull PowerLevelUpBroadcastPredicate<CommandSender> getPowerLevelUpBroadcastPredicate(@NotNull CommandSender levelUpPlayer) {
- return new PowerLevelUpBroadcastPredicate<>(levelUpPlayer);
- }
- }
|