package com.songoda.ultimatemoderation.gui; import com.songoda.core.compatibility.CompatibleMaterial; import com.songoda.core.gui.Gui; import com.songoda.core.gui.GuiUtils; import com.songoda.core.utils.TextUtils; import com.songoda.ultimatemoderation.UltimateModeration; import com.songoda.ultimatemoderation.punish.AppliedPunishment; import com.songoda.ultimatemoderation.punish.PunishmentType; import com.songoda.ultimatemoderation.punish.player.PlayerPunishData; import com.songoda.ultimatemoderation.settings.Settings; import com.songoda.ultimatemoderation.utils.Methods; import org.bukkit.Bukkit; import org.bukkit.OfflinePlayer; import org.bukkit.inventory.ItemStack; import java.util.ArrayList; import java.util.List; import java.util.stream.Collectors; public class PunishmentsGui extends Gui { private final UltimateModeration plugin; private final OfflinePlayer toModerate; private Activity currentActivity = Activity.BOTH; private PunishmentType punishmentType = PunishmentType.ALL; public PunishmentsGui(UltimateModeration plugin, OfflinePlayer toModerate) { super(6); setDefaultItem(null); this.plugin = plugin; this.toModerate = toModerate; setTitle(plugin.getLocale().getMessage("gui.punishments.title") .processPlaceholder("toModerate", toModerate.getName()).getMessage()); showPage(); } protected void showPage() { if (inventory != null) inventory.clear(); setActionForRange(0, 53, null); setNextPage(0, 5, GuiUtils.createButtonItem(CompatibleMaterial.ARROW, plugin.getLocale().getMessage("gui.general.next").getMessage())); setPrevPage(0, 1, GuiUtils.createButtonItem(CompatibleMaterial.ARROW, plugin.getLocale().getMessage("gui.general.back").getMessage())); setOnPage((event) -> showPage()); // decorate the edges ItemStack glass2 = GuiUtils.getBorderItem(Settings.GLASS_TYPE_2.getMaterial(CompatibleMaterial.BLUE_STAINED_GLASS_PANE)); ItemStack glass3 = GuiUtils.getBorderItem(Settings.GLASS_TYPE_3.getMaterial(CompatibleMaterial.LIGHT_BLUE_STAINED_GLASS_PANE)); // edges will be type 3 mirrorFill(0, 2, true, true, glass3); mirrorFill(1, 1, true, true, glass3); // decorate corners with type 2 mirrorFill(0, 0, true, true, glass2); mirrorFill(1, 0, true, true, glass2); mirrorFill(0, 1, true, true, glass2); PlayerPunishData playerPunishData = plugin.getPunishmentManager().getPlayer(toModerate); List punishments = new ArrayList<>(); if (currentActivity == Activity.ACTIVE || currentActivity == Activity.BOTH) { for (AppliedPunishment punishment : playerPunishData.getActivePunishments()) { if (punishmentType != PunishmentType.ALL) { if (punishment.getPunishmentType() != punishmentType) continue; } punishments.add(new PunishmentHolder(Activity.ACTIVE, punishment)); } } if (currentActivity == Activity.EXPIRED || currentActivity == Activity.BOTH) { for (AppliedPunishment punishment : playerPunishData.getExpiredPunishments()) { if (punishmentType != PunishmentType.ALL) { if (punishment.getPunishmentType() != punishmentType) continue; } punishments.add(new PunishmentHolder(Activity.EXPIRED, punishment)); } } int numNotes = punishments.size(); this.pages = (int) Math.floor(numNotes / 28.0); punishments = punishments.stream().skip((page - 1) * 28).limit(28) .collect(Collectors.toList()); setButton(5, 4, GuiUtils.createButtonItem(CompatibleMaterial.OAK_DOOR, plugin.getLocale().getMessage("gui.general.back").getMessage()), (event) -> guiManager.showGUI(event.player, new PlayerGui(plugin, toModerate, event.player))); setButton(5, 3, GuiUtils.createButtonItem(CompatibleMaterial.APPLE, Methods.formatText("&6" + currentActivity.getTranslation())), (event) -> { this.currentActivity = currentActivity.next(); this.page = 1; showPage(); }); setButton(5, 5, GuiUtils.createButtonItem(CompatibleMaterial.DIAMOND_SWORD, Methods.formatText("&6" + punishmentType.name())), (event) -> { this.punishmentType = punishmentType.nextFilter(); this.page = 1; showPage(); }); int num = 11; for (PunishmentHolder punishmentHolder : punishments) { if (num == 16 || num == 36) num = num + 2; AppliedPunishment appliedPunishment = punishmentHolder.getAppliedPunishment(); Activity activity = punishmentHolder.getActivity(); ArrayList lore = new ArrayList<>(); lore.add(""); lore.add(plugin.getLocale().getMessage("gui.punishments.reason").getMessage()); lore.add("&7" + appliedPunishment.getReason()); if (appliedPunishment.getPunishmentType() != PunishmentType.KICK) { lore.add(""); lore.add(plugin.getLocale().getMessage("gui.punishments.duration").getMessage()); lore.add("&7" + (appliedPunishment.getDuration() != -1 ? Methods.makeReadable(appliedPunishment.getDuration()) : plugin.getLocale().getMessage("gui.general.permanent").getMessage())); lore.add(""); lore.add(plugin.getLocale().getMessage("gui.punishments.punisher").getMessage()); lore.add("&7" + (appliedPunishment.getPunisher() == null ? "Console" : Bukkit.getOfflinePlayer(appliedPunishment.getPunisher()).getName())); if (activity == Activity.ACTIVE) { lore.add(""); if (appliedPunishment.getDuration() != -1) { lore.add(plugin.getLocale().getMessage("gui.punishments.remaining").getMessage()); lore.add("&7" + Methods.makeReadable(appliedPunishment.getTimeRemaining())); lore.add(""); } lore.add(plugin.getLocale().getMessage("gui.punishments.click").getMessage()); } } lore.add(""); setButton(num, GuiUtils.createButtonItem(CompatibleMaterial.MAP, TextUtils.formatText("&6&l" + appliedPunishment.getPunishmentType().getTranslation() + " - &7&l" + activity.getTranslation()), TextUtils.formatText(lore)), (event) -> { if (appliedPunishment.getPunishmentType() != PunishmentType.KICK && activity == Activity.ACTIVE) { appliedPunishment.expire(); plugin.getDataManager().updateAppliedPunishment(appliedPunishment); showPage(); } }); num++; } } private class PunishmentHolder { private final Activity activity; private final AppliedPunishment appliedPunishment; public PunishmentHolder(Activity activity, AppliedPunishment appliedPunishment) { this.activity = activity; this.appliedPunishment = appliedPunishment; } public Activity getActivity() { return activity; } public AppliedPunishment getAppliedPunishment() { return appliedPunishment; } } private enum Activity { BOTH, ACTIVE, EXPIRED; private static Activity[] vals = values(); public Activity next() { return vals[(this.ordinal() != vals.length - 1 ? this.ordinal() + 1 : 0)]; } public String getTranslation() { return UltimateModeration.getInstance().getLocale().getMessage("gui.punishments.activity." + this.name().toLowerCase()).getMessage(); } } }