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.audience.MessageType;
import net.kyori.adventure.identity.Identity;
import net.kyori.adventure.platform.facet.Facet;
import net.kyori.adventure.platform.facet.FacetBase;
import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.serializer.bungeecord.BungeeComponentSerializer;
import net.md_5.bungee.api.ChatMessageType;
import net.md_5.bungee.api.chat.BaseComponent;
import org.bukkit.Material;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.BookMeta;
import org.bukkit.inventory.meta.ItemMeta;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import static net.kyori.adventure.platform.facet.Knob.isEnabled;
import static net.kyori.adventure.platform.facet.Knob.logUnsupported;
import static net.kyori.adventure.text.serializer.bungeecord.BungeeComponentSerializer.isNative;
import static net.kyori.adventure.text.serializer.craftbukkit.BukkitComponentSerializer.gson;
import static net.kyori.adventure.text.serializer.craftbukkit.BukkitComponentSerializer.legacy;
import static net.kyori.adventure.text.serializer.craftbukkit.MinecraftReflection.findClass;
import static net.kyori.adventure.text.serializer.craftbukkit.MinecraftReflection.hasClass;
import static net.kyori.adventure.text.serializer.craftbukkit.MinecraftReflection.hasMethod;
class SpigotFacet extends FacetBase {
private static final boolean SUPPORTED = isEnabled("spigot", true) && isNative();
protected SpigotFacet(final @Nullable Class extends V> viewerClass) {
super(viewerClass);
}
@Override
public boolean isSupported() {
return super.isSupported() && SUPPORTED;
}
private static final Class> BUNGEE_CHAT_MESSAGE_TYPE = findClass("net.md_5.bungee.api.ChatMessageType");
static final Class> BUNGEE_COMPONENT_TYPE = findClass("net.md_5.bungee.api.chat.BaseComponent");
static class Message extends SpigotFacet implements Facet.Message {
private static final BungeeComponentSerializer SERIALIZER = BungeeComponentSerializer.of(gson(), legacy());
protected Message(final @Nullable Class extends V> viewerClass) {
super(viewerClass);
}
@NotNull
@Override
public BaseComponent @NotNull[] createMessage(final @NotNull V viewer, final @NotNull Component message) {
return SERIALIZER.serialize(message);
}
}
static final class Chat extends Message implements Facet.Chat {
private static final boolean SUPPORTED = hasClass("org.bukkit.command.CommandSender$Spigot");
protected Chat() {
super(CommandSender.class);
}
@Override
public boolean isSupported() {
return super.isSupported() && SUPPORTED;
}
@Override
public void sendMessage(final @NotNull CommandSender viewer, final @NotNull Identity source, final BaseComponent @NotNull[] message, final @NotNull MessageType type) {
viewer.spigot().sendMessage(message);
}
}
static class ChatWithType extends Message implements Facet.Chat {
private static final Class> PLAYER_CLASS = findClass("org.bukkit.entity.Player$Spigot");
private static final boolean SUPPORTED = hasMethod(PLAYER_CLASS, "sendMessage", BUNGEE_CHAT_MESSAGE_TYPE, BUNGEE_COMPONENT_TYPE);
protected ChatWithType() {
super(Player.class);
}
@Override
public boolean isSupported() {
return super.isSupported() && SUPPORTED;
}
private @Nullable ChatMessageType createType(final @NotNull MessageType type) {
if(type == MessageType.CHAT) {
return ChatMessageType.CHAT;
} else if(type == MessageType.SYSTEM) {
return ChatMessageType.SYSTEM;
}
logUnsupported(this, type);
return null;
}
@Override
@SuppressWarnings("deprecation")
public void sendMessage(final @NotNull Player viewer, final @NotNull Identity source, final BaseComponent @NotNull[] message, final @NotNull MessageType type) {
final ChatMessageType chat = this.createType(type);
if(chat != null) {
viewer.spigot().sendMessage(chat, message);
}
}
}
static final class ActionBar extends ChatWithType implements Facet.ActionBar {
@Override
@SuppressWarnings("deprecation")
public void sendMessage(final @NotNull Player viewer, final BaseComponent @NotNull[] message) {
viewer.spigot().sendMessage(ChatMessageType.ACTION_BAR, message);
}
}
static final class Book extends Message implements Facet.Book {
private static final boolean SUPPORTED = hasMethod(Player.class, "openBook", ItemStack.class); // Added June 2019
protected Book() {
super(Player.class);
}
@Override
public boolean isSupported() {
return super.isSupported() && SUPPORTED;
}
@NotNull
@Override
public ItemStack createBook(final @NotNull String title, final @NotNull String author, final @NotNull Iterable pages) {
final ItemStack book = new ItemStack(Material.WRITTEN_BOOK);
final ItemMeta meta = book.getItemMeta();
if(meta instanceof BookMeta) {
final BookMeta spigot = (BookMeta) meta;
for(final BaseComponent[] page : pages) {
spigot.spigot().addPage(page);
}
spigot.setTitle(title);
spigot.setAuthor(author);
book.setItemMeta(spigot);
}
return book;
}
@Override
public void openBook(final @NotNull Player viewer, final @NotNull ItemStack book) {
viewer.openBook(book);
}
}
}