Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* This file is part of adventure-platform, licensed under the MIT License.
*
* Copyright (c) 2018-2020 KyoriPowered
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package net.kyori.adventure.platform.bukkit;
import net.kyori.adventure.bossbar.BossBar;
import net.kyori.adventure.platform.facet.Facet;
import net.kyori.adventure.platform.facet.FacetAudience;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.plugin.Plugin;
import org.bukkit.util.Vector;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.Collection;
import java.util.Locale;
final class BukkitAudience extends FacetAudience {
static final ThreadLocal PLUGIN = new ThreadLocal<>();
// private static final Function VIA = new BukkitFacet.ViaHook();
private static final Collection> CHAT = Facet.of(
// () -> new ViaFacet.Chat<>(Player.class, VIA),
// () -> new SpigotFacet.ChatWithType(),
// () -> new SpigotFacet.Chat(),
() -> new CraftBukkitFacet.Chat(),
() -> new BukkitFacet.Chat());
private static final Collection> ACTION_BAR = Facet.of(
// () -> new ViaFacet.ActionBarTitle<>(Player.class, VIA),
// () -> new ViaFacet.ActionBar<>(Player.class, VIA),
// () -> new SpigotFacet.ActionBar(),
() -> new CraftBukkitFacet.ActionBar_1_17(),
() -> new CraftBukkitFacet.ActionBar(),
() -> new CraftBukkitFacet.ActionBarLegacy());
private static final Collection> TITLE = Facet.of(
// () -> new ViaFacet.Title<>(Player.class, VIA),
// () -> new PaperFacet.Title(),
() -> new CraftBukkitFacet.Title_1_17(),
() -> new CraftBukkitFacet.Title());
private static final Collection> SOUND = Facet.of(
() -> new BukkitFacet.SoundWithCategory(),
() -> new BukkitFacet.Sound());
private static final Collection> ENTITY_SOUND = Facet.of(
() -> new CraftBukkitFacet.EntitySound()
);
private static final Collection> BOOK = Facet.of(
// () -> new SpigotFacet.Book(),
() -> new CraftBukkitFacet.BookPost1_13(),
() -> new CraftBukkitFacet.Book1_13(),
() -> new CraftBukkitFacet.BookPre1_13());
private static final Collection> BOSS_BAR = Facet.of(
// () -> new ViaFacet.BossBar.Builder<>(Player.class, VIA),
// () -> new ViaFacet.BossBar.Builder1_9_To_1_15<>(Player.class, VIA),
() -> new CraftBukkitFacet.BossBar.Builder(),
() -> new BukkitFacet.BossBarBuilder(),
() -> new CraftBukkitFacet.BossBarWither.Builder());
private static final Collection> TAB_LIST = Facet.of(
// () -> new ViaFacet.TabList<>(Player.class, VIA),
() -> new PaperFacet.TabList(),
() -> new CraftBukkitFacet.TabList(),
() -> new BukkitFacet.TabList()
);
private final @NotNull Plugin plugin;
BukkitAudience(final @NotNull Plugin plugin, final @NotNull Collection viewers, final @Nullable Locale locale) {
super(viewers, locale, CHAT, ACTION_BAR, TITLE, SOUND, ENTITY_SOUND, BOOK, BOSS_BAR, TAB_LIST);
this.plugin = plugin;
}
@Override
public void showBossBar(final @NotNull BossBar bar) {
// Some boss bar listeners need access to a Plugin to register events.
// So keep track of the last plugin before each boss bar invocation.
PLUGIN.set(this.plugin);
super.showBossBar(bar);
// Unset plugin after boss bar is created.
PLUGIN.set(null);
}
}