Compare commits
30 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
874a9b4f32 | ||
|
|
5690221c27 | ||
|
|
f19b143804 | ||
|
|
10a313bef5 | ||
|
|
9ae40ae09e | ||
|
|
7b4e1d8d24 | ||
|
|
7035280731 | ||
|
|
a1e3d53cd2 | ||
|
|
d7885f05c3 | ||
|
|
415c425097 | ||
|
|
cb4d992e7d | ||
|
|
cb64d088d1 | ||
|
|
61ace5c8e5 | ||
|
|
94b73ef35c | ||
|
|
5cfc2068e7 | ||
|
|
0ce7d1dd6c | ||
|
|
19eefaf879 | ||
|
|
1ebf7fb875 | ||
|
|
e8afd15d80 | ||
|
|
d024c9238e | ||
|
|
1356bd1f26 | ||
|
|
407ccca5e0 | ||
|
|
82de602d47 | ||
|
|
b0873112af | ||
|
|
3a0b81b7de | ||
|
|
5142b9ce92 | ||
|
|
9403a1cbcb | ||
|
|
e4ebea354d | ||
|
|
d32b31f1e5 | ||
|
|
384657f1dc |
@@ -51,6 +51,9 @@ allprojects {
|
|||||||
|
|
||||||
// CombatLogX
|
// CombatLogX
|
||||||
maven { url 'https://nexus.sirblobman.xyz/repository/public/' }
|
maven { url 'https://nexus.sirblobman.xyz/repository/public/' }
|
||||||
|
|
||||||
|
// Head Database
|
||||||
|
maven { url 'https://mvn.intellectualsites.com/content/groups/public/' }
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|||||||
@@ -305,10 +305,27 @@ public abstract class EcoPlugin extends JavaPlugin {
|
|||||||
this.logger = Eco.getHandler().createLogger(this);
|
this.logger = Eco.getHandler().createLogger(this);
|
||||||
this.proxyFactory = this.proxyPackage.equalsIgnoreCase("") ? null : Eco.getHandler().createProxyFactory(this);
|
this.proxyFactory = this.proxyPackage.equalsIgnoreCase("") ? null : Eco.getHandler().createProxyFactory(this);
|
||||||
|
|
||||||
this.langYml = new LangYml(this);
|
this.langYml = this.createLangYml();
|
||||||
this.configYml = new ConfigYml(this);
|
this.configYml = this.createConfigYml();
|
||||||
|
|
||||||
Eco.getHandler().addNewPlugin(this);
|
Eco.getHandler().addNewPlugin(this);
|
||||||
|
|
||||||
|
/*
|
||||||
|
The minimum eco version check was moved here because it's very common
|
||||||
|
to add a lot of code in the constructor of plugins; meaning that the plugin
|
||||||
|
can throw errors without it being obvious to the user that the reason is
|
||||||
|
because they have an outdated version of eco installed.
|
||||||
|
*/
|
||||||
|
|
||||||
|
DefaultArtifactVersion runningVersion = new DefaultArtifactVersion(Eco.getHandler().getEcoPlugin().getDescription().getVersion());
|
||||||
|
DefaultArtifactVersion requiredVersion = new DefaultArtifactVersion(this.getMinimumEcoVersion());
|
||||||
|
if (!(runningVersion.compareTo(requiredVersion) > 0 || runningVersion.equals(requiredVersion))) {
|
||||||
|
this.getLogger().severe("You are running an outdated version of eco!");
|
||||||
|
this.getLogger().severe("You must be on at least" + this.getMinimumEcoVersion());
|
||||||
|
this.getLogger().severe("Download the newest version here:");
|
||||||
|
this.getLogger().severe("https://polymart.org/download/773/recent/JSpprMspkuyecf5y1wQ2Jn8OoLQSQ_IW");
|
||||||
|
Bukkit.getPluginManager().disablePlugin(this);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -336,16 +353,6 @@ public abstract class EcoPlugin extends JavaPlugin {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
DefaultArtifactVersion runningVersion = new DefaultArtifactVersion(Eco.getHandler().getEcoPlugin().getDescription().getVersion());
|
|
||||||
DefaultArtifactVersion requiredVersion = new DefaultArtifactVersion(this.getMinimumEcoVersion());
|
|
||||||
if (!(runningVersion.compareTo(requiredVersion) > 0 || runningVersion.equals(requiredVersion))) {
|
|
||||||
this.getLogger().severe("You are running an outdated version of eco!");
|
|
||||||
this.getLogger().severe("You must be on at least" + this.getMinimumEcoVersion());
|
|
||||||
this.getLogger().severe("Download the newest version here:");
|
|
||||||
this.getLogger().severe("https://polymart.org/download/773/recent/JSpprMspkuyecf5y1wQ2Jn8OoLQSQ_IW");
|
|
||||||
Bukkit.getPluginManager().disablePlugin(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.getBStatsId() != 0) {
|
if (this.getBStatsId() != 0) {
|
||||||
Eco.getHandler().registerBStats(this);
|
Eco.getHandler().registerBStats(this);
|
||||||
}
|
}
|
||||||
@@ -571,6 +578,28 @@ public abstract class EcoPlugin extends JavaPlugin {
|
|||||||
*/
|
*/
|
||||||
protected abstract List<Listener> loadListeners();
|
protected abstract List<Listener> loadListeners();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Useful for custom LangYml implementations.
|
||||||
|
* <p>
|
||||||
|
* Override if needed.
|
||||||
|
*
|
||||||
|
* @return lang.yml.
|
||||||
|
*/
|
||||||
|
protected LangYml createLangYml() {
|
||||||
|
return new LangYml(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Useful for custom ConfigYml implementations.
|
||||||
|
* <p>
|
||||||
|
* Override if needed.
|
||||||
|
*
|
||||||
|
* @return config.yml.
|
||||||
|
*/
|
||||||
|
protected ConfigYml createConfigYml() {
|
||||||
|
return new ConfigYml(this);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create the display module for the plugin.
|
* Create the display module for the plugin.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ import com.willfp.eco.core.proxy.ProxyFactory;
|
|||||||
import com.willfp.eco.core.scheduling.Scheduler;
|
import com.willfp.eco.core.scheduling.Scheduler;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
@@ -30,6 +31,7 @@ public interface Handler {
|
|||||||
* @param plugin The plugin.
|
* @param plugin The plugin.
|
||||||
* @return The scheduler.
|
* @return The scheduler.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
Scheduler createScheduler(@NotNull EcoPlugin plugin);
|
Scheduler createScheduler(@NotNull EcoPlugin plugin);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -38,6 +40,7 @@ public interface Handler {
|
|||||||
* @param plugin The plugin.
|
* @param plugin The plugin.
|
||||||
* @return The event manager.
|
* @return The event manager.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
EventManager createEventManager(@NotNull EcoPlugin plugin);
|
EventManager createEventManager(@NotNull EcoPlugin plugin);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -46,6 +49,7 @@ public interface Handler {
|
|||||||
* @param plugin The plugin.
|
* @param plugin The plugin.
|
||||||
* @return The factory.
|
* @return The factory.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
NamespacedKeyFactory createNamespacedKeyFactory(@NotNull EcoPlugin plugin);
|
NamespacedKeyFactory createNamespacedKeyFactory(@NotNull EcoPlugin plugin);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -54,6 +58,7 @@ public interface Handler {
|
|||||||
* @param plugin The plugin.
|
* @param plugin The plugin.
|
||||||
* @return The factory.
|
* @return The factory.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
MetadataValueFactory createMetadataValueFactory(@NotNull EcoPlugin plugin);
|
MetadataValueFactory createMetadataValueFactory(@NotNull EcoPlugin plugin);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -62,6 +67,7 @@ public interface Handler {
|
|||||||
* @param plugin The plugin.
|
* @param plugin The plugin.
|
||||||
* @return The factory.
|
* @return The factory.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
RunnableFactory createRunnableFactory(@NotNull EcoPlugin plugin);
|
RunnableFactory createRunnableFactory(@NotNull EcoPlugin plugin);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -70,6 +76,7 @@ public interface Handler {
|
|||||||
* @param plugin The plugin.
|
* @param plugin The plugin.
|
||||||
* @return The factory.
|
* @return The factory.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
ExtensionLoader createExtensionLoader(@NotNull EcoPlugin plugin);
|
ExtensionLoader createExtensionLoader(@NotNull EcoPlugin plugin);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -78,6 +85,7 @@ public interface Handler {
|
|||||||
* @param plugin The plugin.
|
* @param plugin The plugin.
|
||||||
* @return The handler.
|
* @return The handler.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
ConfigHandler createConfigHandler(@NotNull EcoPlugin plugin);
|
ConfigHandler createConfigHandler(@NotNull EcoPlugin plugin);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -86,6 +94,7 @@ public interface Handler {
|
|||||||
* @param plugin The plugin.
|
* @param plugin The plugin.
|
||||||
* @return The logger.
|
* @return The logger.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
Logger createLogger(@NotNull EcoPlugin plugin);
|
Logger createLogger(@NotNull EcoPlugin plugin);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -94,6 +103,7 @@ public interface Handler {
|
|||||||
* @param plugin The plugin.
|
* @param plugin The plugin.
|
||||||
* @return The integration.
|
* @return The integration.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
PlaceholderIntegration createPAPIIntegration(@NotNull EcoPlugin plugin);
|
PlaceholderIntegration createPAPIIntegration(@NotNull EcoPlugin plugin);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -102,6 +112,7 @@ public interface Handler {
|
|||||||
* @param plugin The plugin.
|
* @param plugin The plugin.
|
||||||
* @return The factory.
|
* @return The factory.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
ProxyFactory createProxyFactory(@NotNull EcoPlugin plugin);
|
ProxyFactory createProxyFactory(@NotNull EcoPlugin plugin);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -109,6 +120,7 @@ public interface Handler {
|
|||||||
*
|
*
|
||||||
* @return The plugin.
|
* @return The plugin.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
EcoPlugin getEcoPlugin();
|
EcoPlugin getEcoPlugin();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -116,6 +128,7 @@ public interface Handler {
|
|||||||
*
|
*
|
||||||
* @return The factory.
|
* @return The factory.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
ConfigFactory getConfigFactory();
|
ConfigFactory getConfigFactory();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -123,6 +136,7 @@ public interface Handler {
|
|||||||
*
|
*
|
||||||
* @return The factory.
|
* @return The factory.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
DropQueueFactory getDropQueueFactory();
|
DropQueueFactory getDropQueueFactory();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -130,6 +144,7 @@ public interface Handler {
|
|||||||
*
|
*
|
||||||
* @return The factory.
|
* @return The factory.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
GUIFactory getGUIFactory();
|
GUIFactory getGUIFactory();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -137,6 +152,7 @@ public interface Handler {
|
|||||||
*
|
*
|
||||||
* @return The cleaner.
|
* @return The cleaner.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
Cleaner getCleaner();
|
Cleaner getCleaner();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -152,6 +168,7 @@ public interface Handler {
|
|||||||
* @param name The name.
|
* @param name The name.
|
||||||
* @return The plugin.
|
* @return The plugin.
|
||||||
*/
|
*/
|
||||||
|
@Nullable
|
||||||
EcoPlugin getPluginByName(@NotNull String name);
|
EcoPlugin getPluginByName(@NotNull String name);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -159,6 +176,7 @@ public interface Handler {
|
|||||||
*
|
*
|
||||||
* @return A list of plugin names in lowercase.
|
* @return A list of plugin names in lowercase.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
List<String> getLoadedPlugins();
|
List<String> getLoadedPlugins();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -167,6 +185,7 @@ public interface Handler {
|
|||||||
* @param itemStack The base ItemStack.
|
* @param itemStack The base ItemStack.
|
||||||
* @return The FastItemStack.
|
* @return The FastItemStack.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
FastItemStack createFastItemStack(@NotNull ItemStack itemStack);
|
FastItemStack createFastItemStack(@NotNull ItemStack itemStack);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -9,11 +9,12 @@ import org.jetbrains.annotations.NotNull;
|
|||||||
*
|
*
|
||||||
* @param <T> The eco plugin type.
|
* @param <T> The eco plugin type.
|
||||||
*/
|
*/
|
||||||
public abstract class PluginDependent<T extends EcoPlugin> {
|
public abstract class PluginDependent<@NotNull T extends EcoPlugin> {
|
||||||
/**
|
/**
|
||||||
* The {@link EcoPlugin} that is stored.
|
* The {@link EcoPlugin} that is stored.
|
||||||
*/
|
*/
|
||||||
@Getter(AccessLevel.PROTECTED)
|
@Getter(AccessLevel.PROTECTED)
|
||||||
|
@NotNull
|
||||||
private final T plugin;
|
private final T plugin;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
package com.willfp.eco.core.integrations.customitems;
|
package com.willfp.eco.core.integrations.customitems;
|
||||||
|
|
||||||
|
import com.willfp.eco.core.integrations.Integration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Wrapper class for custom item integrations.
|
* Wrapper class for custom item integrations.
|
||||||
*/
|
*/
|
||||||
public interface CustomItemsWrapper {
|
public interface CustomItemsWrapper extends Integration {
|
||||||
/**
|
/**
|
||||||
* Register all the custom items for a specific plugin into eco.
|
* Register all the custom items for a specific plugin into eco.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -5,7 +5,9 @@ import org.bukkit.entity.Player;
|
|||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
|
import java.util.Map;
|
||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.concurrent.atomic.AtomicReference;
|
import java.util.concurrent.atomic.AtomicReference;
|
||||||
@@ -18,7 +20,7 @@ public class PlaceholderManager {
|
|||||||
/**
|
/**
|
||||||
* All registered placeholders.
|
* All registered placeholders.
|
||||||
*/
|
*/
|
||||||
private static final Set<PlaceholderEntry> REGISTERED_PLACEHOLDERS = new HashSet<>();
|
private static final Map<String, PlaceholderEntry> REGISTERED_PLACEHOLDERS = new HashMap<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* All registered placeholder integrations.
|
* All registered placeholder integrations.
|
||||||
@@ -41,8 +43,8 @@ public class PlaceholderManager {
|
|||||||
* @param expansion The {@link PlaceholderEntry} to register.
|
* @param expansion The {@link PlaceholderEntry} to register.
|
||||||
*/
|
*/
|
||||||
public static void registerPlaceholder(@NotNull final PlaceholderEntry expansion) {
|
public static void registerPlaceholder(@NotNull final PlaceholderEntry expansion) {
|
||||||
REGISTERED_PLACEHOLDERS.removeIf(placeholderEntry -> placeholderEntry.getIdentifier().equalsIgnoreCase(expansion.getIdentifier()));
|
REGISTERED_PLACEHOLDERS.remove(expansion.getIdentifier());
|
||||||
REGISTERED_PLACEHOLDERS.add(expansion);
|
REGISTERED_PLACEHOLDERS.put(expansion.getIdentifier(), expansion);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -54,14 +56,15 @@ public class PlaceholderManager {
|
|||||||
*/
|
*/
|
||||||
public static String getResult(@Nullable final Player player,
|
public static String getResult(@Nullable final Player player,
|
||||||
@NotNull final String identifier) {
|
@NotNull final String identifier) {
|
||||||
Optional<PlaceholderEntry> matching = REGISTERED_PLACEHOLDERS.stream().filter(expansion -> expansion.getIdentifier().equalsIgnoreCase(identifier)).findFirst();
|
PlaceholderEntry entry = REGISTERED_PLACEHOLDERS.get(identifier.toLowerCase());
|
||||||
if (matching.isEmpty()) {
|
if (entry == null) {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
PlaceholderEntry entry = matching.get();
|
|
||||||
if (player == null && entry.requiresPlayer()) {
|
if (player == null && entry.requiresPlayer()) {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
return entry.getResult(player);
|
return entry.getResult(player);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -74,8 +77,10 @@ public class PlaceholderManager {
|
|||||||
*/
|
*/
|
||||||
public static String translatePlaceholders(@NotNull final String text,
|
public static String translatePlaceholders(@NotNull final String text,
|
||||||
@Nullable final Player player) {
|
@Nullable final Player player) {
|
||||||
AtomicReference<String> translatedReference = new AtomicReference<>(text);
|
String processed = text;
|
||||||
REGISTERED_INTEGRATIONS.forEach(placeholderIntegration -> translatedReference.set(placeholderIntegration.translate(translatedReference.get(), player)));
|
for (PlaceholderIntegration integration : REGISTERED_INTEGRATIONS) {
|
||||||
return translatedReference.get();
|
processed = integration.translate(processed, player);
|
||||||
|
}
|
||||||
|
return processed;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
package com.willfp.eco.core.items;
|
package com.willfp.eco.core.items;
|
||||||
|
|
||||||
|
import com.willfp.eco.core.Eco;
|
||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
|
import org.apache.commons.lang.Validate;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.NamespacedKey;
|
import org.bukkit.NamespacedKey;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
@@ -47,6 +50,12 @@ public class CustomItem implements TestableItem {
|
|||||||
this.key = key;
|
this.key = key;
|
||||||
this.test = test;
|
this.test = test;
|
||||||
this.item = item;
|
this.item = item;
|
||||||
|
|
||||||
|
Eco.getHandler().getEcoPlugin().getScheduler().runLater(() -> {
|
||||||
|
if (!matches(getItem())) {
|
||||||
|
Bukkit.getLogger().severe("Item with key " + key + " is invalid!");
|
||||||
|
}
|
||||||
|
}, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
package com.willfp.eco.core.items;
|
package com.willfp.eco.core.items;
|
||||||
|
|
||||||
|
import com.willfp.eco.core.items.args.LookupArgParser;
|
||||||
import com.willfp.eco.core.recipe.parts.EmptyTestableItem;
|
import com.willfp.eco.core.recipe.parts.EmptyTestableItem;
|
||||||
import com.willfp.eco.core.recipe.parts.MaterialTestableItem;
|
import com.willfp.eco.core.recipe.parts.MaterialTestableItem;
|
||||||
import com.willfp.eco.core.recipe.parts.ModifiedTestableItem;
|
import com.willfp.eco.core.recipe.parts.ModifiedTestableItem;
|
||||||
@@ -8,18 +9,19 @@ import com.willfp.eco.util.NamespacedKeyUtils;
|
|||||||
import lombok.experimental.UtilityClass;
|
import lombok.experimental.UtilityClass;
|
||||||
import org.bukkit.Material;
|
import org.bukkit.Material;
|
||||||
import org.bukkit.NamespacedKey;
|
import org.bukkit.NamespacedKey;
|
||||||
import org.bukkit.enchantments.Enchantment;
|
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.bukkit.inventory.meta.EnchantmentStorageMeta;
|
|
||||||
import org.bukkit.inventory.meta.ItemMeta;
|
import org.bukkit.inventory.meta.ItemMeta;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
import java.util.function.Predicate;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class to manage all custom and vanilla items.
|
* Class to manage all custom and vanilla items.
|
||||||
@@ -29,19 +31,33 @@ public final class Items {
|
|||||||
/**
|
/**
|
||||||
* All recipe parts.
|
* All recipe parts.
|
||||||
*/
|
*/
|
||||||
private static final Map<NamespacedKey, CustomItem> REGISTRY = new HashMap<>();
|
private static final Map<NamespacedKey, CustomItem> REGISTRY = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register a new recipe part.
|
* All recipe parts.
|
||||||
|
*/
|
||||||
|
private static final List<LookupArgParser> ARG_PARSERS = new ArrayList<>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register a new custom item.
|
||||||
*
|
*
|
||||||
* @param key The key of the recipe part.
|
* @param key The key of the item.
|
||||||
* @param part The recipe part.
|
* @param part The item.
|
||||||
*/
|
*/
|
||||||
public void registerCustomItem(@NotNull final NamespacedKey key,
|
public void registerCustomItem(@NotNull final NamespacedKey key,
|
||||||
@NotNull final CustomItem part) {
|
@NotNull final CustomItem part) {
|
||||||
REGISTRY.put(key, part);
|
REGISTRY.put(key, part);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register a new arg parser.
|
||||||
|
*
|
||||||
|
* @param parser The parser.
|
||||||
|
*/
|
||||||
|
public void registerArgParser(@NotNull final LookupArgParser parser) {
|
||||||
|
ARG_PARSERS.add(parser);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Remove an item.
|
* Remove an item.
|
||||||
*
|
*
|
||||||
@@ -52,12 +68,27 @@ public final class Items {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lookup item from string.
|
* This is the backbone of the entire eco item system.
|
||||||
* <p>
|
* <p>
|
||||||
* Used for recipes.
|
* You can lookup a TestableItem for any material, custom item,
|
||||||
|
* or item in general, and it will return it with any modifiers
|
||||||
|
* passed as parameters. This includes stack size (item amount)
|
||||||
|
* and enchantments that should be present on the item.
|
||||||
|
* <p>
|
||||||
|
* If you want to get an ItemStack instance from this, then just call
|
||||||
|
* {@link TestableItem#getItem()}.
|
||||||
|
* <p>
|
||||||
|
* The advantages of the testable item system are that there is the inbuilt
|
||||||
|
* {@link TestableItem#matches(ItemStack)} - this allows to check if any item
|
||||||
|
* is that testable item; which may sound negligible but actually it allows for
|
||||||
|
* much more power an flexibility. For example, you can have an item with an
|
||||||
|
* extra metadata tag, extra lore lines, different display name - and it
|
||||||
|
* will still work as long as the test passes. This is very important
|
||||||
|
* for custom crafting recipes where other plugins may add metadata
|
||||||
|
* values or the play may rename the item.
|
||||||
*
|
*
|
||||||
* @param key The string to test.
|
* @param key The lookup string.
|
||||||
* @return The found testable item, or an empty item if not found.
|
* @return The testable item, or an {@link EmptyTestableItem}.
|
||||||
*/
|
*/
|
||||||
public TestableItem lookup(@NotNull final String key) {
|
public TestableItem lookup(@NotNull final String key) {
|
||||||
if (key.contains("?")) {
|
if (key.contains("?")) {
|
||||||
@@ -79,6 +110,8 @@ public final class Items {
|
|||||||
|
|
||||||
TestableItem item = null;
|
TestableItem item = null;
|
||||||
|
|
||||||
|
int stackAmount = 1;
|
||||||
|
|
||||||
String[] split = args[0].toLowerCase().split(":");
|
String[] split = args[0].toLowerCase().split(":");
|
||||||
|
|
||||||
if (split.length == 1) {
|
if (split.length == 1) {
|
||||||
@@ -92,84 +125,74 @@ public final class Items {
|
|||||||
if (split.length == 2) {
|
if (split.length == 2) {
|
||||||
CustomItem part = REGISTRY.get(NamespacedKeyUtils.create(split[0], split[1]));
|
CustomItem part = REGISTRY.get(NamespacedKeyUtils.create(split[0], split[1]));
|
||||||
|
|
||||||
|
/*
|
||||||
|
Legacy id:amount format
|
||||||
|
This has been superseded by id amount
|
||||||
|
*/
|
||||||
if (part == null) {
|
if (part == null) {
|
||||||
Material material = Material.getMaterial(split[0].toUpperCase());
|
Material material = Material.getMaterial(split[0].toUpperCase());
|
||||||
if (material == null || material == Material.AIR) {
|
if (material == null || material == Material.AIR) {
|
||||||
return new EmptyTestableItem();
|
return new EmptyTestableItem();
|
||||||
}
|
}
|
||||||
item = new TestableStack(new MaterialTestableItem(material), Integer.parseInt(split[1]));
|
item = new MaterialTestableItem(material);
|
||||||
|
stackAmount = Integer.parseInt(split[1]);
|
||||||
} else {
|
} else {
|
||||||
item = part;
|
item = part;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Legacy namespace:id:amount format
|
||||||
|
This has been superseded by namespace:id amount
|
||||||
|
*/
|
||||||
if (split.length == 3) {
|
if (split.length == 3) {
|
||||||
CustomItem part = REGISTRY.get(NamespacedKeyUtils.create(split[0], split[1]));
|
CustomItem part = REGISTRY.get(NamespacedKeyUtils.create(split[0], split[1]));
|
||||||
item = part == null ? new EmptyTestableItem() : new TestableStack(part, Integer.parseInt(split[2]));
|
if (part == null) {
|
||||||
|
return new EmptyTestableItem();
|
||||||
|
}
|
||||||
|
item = part;
|
||||||
|
stackAmount = Integer.parseInt(split[2]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
boolean usingNewStackFormat = false;
|
||||||
|
|
||||||
|
if (args.length >= 2) {
|
||||||
|
try {
|
||||||
|
stackAmount = Integer.parseInt(args[1]);
|
||||||
|
usingNewStackFormat = true;
|
||||||
|
} catch (NumberFormatException ignored) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Marked as redundant but i am covering all bases here
|
||||||
if (item == null || item instanceof EmptyTestableItem) {
|
if (item == null || item instanceof EmptyTestableItem) {
|
||||||
return new EmptyTestableItem();
|
return new EmptyTestableItem();
|
||||||
}
|
}
|
||||||
|
|
||||||
String[] enchantArgs = Arrays.copyOfRange(args, 1, args.length);
|
|
||||||
|
|
||||||
Map<Enchantment, Integer> requiredEnchantments = new HashMap<>();
|
|
||||||
|
|
||||||
for (String enchantArg : enchantArgs) {
|
|
||||||
String[] enchantArgSplit = enchantArg.split(":");
|
|
||||||
|
|
||||||
Enchantment enchantment = Enchantment.getByKey(NamespacedKey.minecraft(enchantArgSplit[0].toLowerCase()));
|
|
||||||
int level = Integer.parseInt(enchantArgSplit[1]);
|
|
||||||
|
|
||||||
requiredEnchantments.put(enchantment, level);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (requiredEnchantments.isEmpty()) {
|
|
||||||
return item;
|
|
||||||
}
|
|
||||||
|
|
||||||
ItemStack example = item.getItem();
|
ItemStack example = item.getItem();
|
||||||
|
|
||||||
if (example.getItemMeta() instanceof EnchantmentStorageMeta storageMeta) {
|
|
||||||
requiredEnchantments.forEach((enchantment, integer) -> storageMeta.addStoredEnchant(enchantment, integer, true));
|
|
||||||
example.setItemMeta(storageMeta);
|
|
||||||
} else {
|
|
||||||
ItemMeta meta = example.getItemMeta();
|
ItemMeta meta = example.getItemMeta();
|
||||||
assert meta != null;
|
assert meta != null;
|
||||||
requiredEnchantments.forEach((enchantment, integer) -> meta.addEnchant(enchantment, integer, true));
|
|
||||||
|
String[] modifierArgs = Arrays.copyOfRange(args, usingNewStackFormat ? 2 : 1, args.length);
|
||||||
|
|
||||||
|
List<Predicate<ItemStack>> predicates = new ArrayList<>();
|
||||||
|
|
||||||
|
for (LookupArgParser argParser : ARG_PARSERS) {
|
||||||
|
Predicate<ItemStack> predicate = argParser.parseArguments(modifierArgs, meta);
|
||||||
|
if (predicate != null) {
|
||||||
|
predicates.add(argParser.parseArguments(modifierArgs, meta));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
example.setItemMeta(meta);
|
example.setItemMeta(meta);
|
||||||
}
|
if (!predicates.isEmpty()) {
|
||||||
|
item = new ModifiedTestableItem(
|
||||||
return new ModifiedTestableItem(
|
|
||||||
item,
|
item,
|
||||||
itemStack -> {
|
test -> {
|
||||||
if (!itemStack.hasItemMeta()) {
|
for (Predicate<ItemStack> predicate : predicates) {
|
||||||
|
if (!predicate.test(test)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
ItemMeta meta = itemStack.getItemMeta();
|
|
||||||
|
|
||||||
assert meta != null;
|
|
||||||
|
|
||||||
if (meta instanceof EnchantmentStorageMeta storageMeta) {
|
|
||||||
for (Map.Entry<Enchantment, Integer> entry : requiredEnchantments.entrySet()) {
|
|
||||||
if (!storageMeta.hasStoredEnchant(entry.getKey())) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (storageMeta.getStoredEnchantLevel(entry.getKey()) < entry.getValue()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
for (Map.Entry<Enchantment, Integer> entry : requiredEnchantments.entrySet()) {
|
|
||||||
if (!meta.hasEnchant(entry.getKey())) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (meta.getEnchantLevel(entry.getKey()) < entry.getValue()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
@@ -178,6 +201,13 @@ public final class Items {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (stackAmount <= 1) {
|
||||||
|
return item;
|
||||||
|
} else {
|
||||||
|
return new TestableStack(item, stackAmount);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get if itemStack is a custom item.
|
* Get if itemStack is a custom item.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -0,0 +1,83 @@
|
|||||||
|
package com.willfp.eco.core.items.args;
|
||||||
|
|
||||||
|
import org.bukkit.NamespacedKey;
|
||||||
|
import org.bukkit.enchantments.Enchantment;
|
||||||
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
import org.bukkit.inventory.meta.EnchantmentStorageMeta;
|
||||||
|
import org.bukkit.inventory.meta.ItemMeta;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.function.Predicate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parses enchantment arguments.
|
||||||
|
*/
|
||||||
|
public class EnchantmentArgParser implements LookupArgParser {
|
||||||
|
@Override
|
||||||
|
public @Nullable Predicate<ItemStack> parseArguments(@NotNull final String[] args,
|
||||||
|
@NotNull final ItemMeta meta) {
|
||||||
|
Map<Enchantment, Integer> requiredEnchantments = new HashMap<>();
|
||||||
|
|
||||||
|
for (String enchantArg : args) {
|
||||||
|
String[] enchantArgSplit = enchantArg.split(":");
|
||||||
|
|
||||||
|
Enchantment enchantment = Enchantment.getByKey(NamespacedKey.minecraft(enchantArgSplit[0].toLowerCase()));
|
||||||
|
if (enchantment == null) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (enchantArgSplit.length < 2) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
int level = Integer.parseInt(enchantArgSplit[1]);
|
||||||
|
|
||||||
|
requiredEnchantments.put(enchantment, level);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (requiredEnchantments.isEmpty()) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (meta instanceof EnchantmentStorageMeta storageMeta) {
|
||||||
|
requiredEnchantments.forEach((enchantment, integer) -> storageMeta.addStoredEnchant(enchantment, integer, true));
|
||||||
|
} else {
|
||||||
|
requiredEnchantments.forEach((enchantment, integer) -> meta.addEnchant(enchantment, integer, true));
|
||||||
|
}
|
||||||
|
|
||||||
|
return test -> {
|
||||||
|
if (!test.hasItemMeta()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
ItemMeta testMeta = test.getItemMeta();
|
||||||
|
|
||||||
|
assert testMeta != null;
|
||||||
|
|
||||||
|
if (testMeta instanceof EnchantmentStorageMeta storageMeta) {
|
||||||
|
for (Map.Entry<Enchantment, Integer> entry : requiredEnchantments.entrySet()) {
|
||||||
|
if (!storageMeta.hasStoredEnchant(entry.getKey())) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (storageMeta.getStoredEnchantLevel(entry.getKey()) < entry.getValue()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
for (Map.Entry<Enchantment, Integer> entry : requiredEnchantments.entrySet()) {
|
||||||
|
if (!testMeta.hasEnchant(entry.getKey())) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (testMeta.getEnchantLevel(entry.getKey()) < entry.getValue()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
package com.willfp.eco.core.items.args;
|
||||||
|
|
||||||
|
import com.willfp.eco.core.items.TestableItem;
|
||||||
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
import org.bukkit.inventory.meta.ItemMeta;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
|
import java.util.function.Predicate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An argument parser should generate the predicate as well
|
||||||
|
* as modify the ItemMeta for {@link TestableItem#getItem()}.
|
||||||
|
*/
|
||||||
|
public interface LookupArgParser {
|
||||||
|
/**
|
||||||
|
* Parse the arguments.
|
||||||
|
*
|
||||||
|
* @param args The arguments.
|
||||||
|
* @param meta The ItemMeta to modify.
|
||||||
|
* @return The predicate test to apply to the modified item.
|
||||||
|
*/
|
||||||
|
@Nullable Predicate<ItemStack> parseArguments(@NotNull String[] args,
|
||||||
|
@NotNull ItemMeta meta);
|
||||||
|
}
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
package com.willfp.eco.core.items.args;
|
||||||
|
|
||||||
|
import com.willfp.eco.util.SkullUtils;
|
||||||
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
import org.bukkit.inventory.meta.ItemMeta;
|
||||||
|
import org.bukkit.inventory.meta.SkullMeta;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
|
import java.util.function.Predicate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse skull textures.
|
||||||
|
*/
|
||||||
|
public class TextureArgParser implements LookupArgParser {
|
||||||
|
@Override
|
||||||
|
public @Nullable Predicate<ItemStack> parseArguments(@NotNull final String[] args,
|
||||||
|
@NotNull final ItemMeta meta) {
|
||||||
|
String skullTexture = null;
|
||||||
|
|
||||||
|
for (String arg : args) {
|
||||||
|
String[] argSplit = arg.split(":");
|
||||||
|
if (!argSplit[0].equalsIgnoreCase("texture")) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (argSplit.length < 2) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
skullTexture = argSplit[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (meta instanceof SkullMeta skullMeta && skullTexture != null) {
|
||||||
|
SkullUtils.setSkullTexture(skullMeta, skullTexture);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (skullTexture == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
String finalSkullTexture = skullTexture;
|
||||||
|
return test -> {
|
||||||
|
if (!test.hasItemMeta()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
ItemMeta testMeta = test.getItemMeta();
|
||||||
|
|
||||||
|
assert testMeta != null;
|
||||||
|
|
||||||
|
if (testMeta instanceof SkullMeta skullMeta && finalSkullTexture != null) {
|
||||||
|
return finalSkullTexture.equalsIgnoreCase(SkullUtils.getSkullTexture(skullMeta));
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,6 +2,7 @@ package com.willfp.eco.core.recipe.parts;
|
|||||||
|
|
||||||
import com.willfp.eco.core.items.TestableItem;
|
import com.willfp.eco.core.items.TestableItem;
|
||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
|
import org.apache.commons.lang.Validate;
|
||||||
import org.bukkit.Material;
|
import org.bukkit.Material;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
@@ -23,6 +24,8 @@ public class MaterialTestableItem implements TestableItem {
|
|||||||
* @param material The material.
|
* @param material The material.
|
||||||
*/
|
*/
|
||||||
public MaterialTestableItem(@NotNull final Material material) {
|
public MaterialTestableItem(@NotNull final Material material) {
|
||||||
|
Validate.isTrue(material != Material.AIR, "You can't have air as the type!");
|
||||||
|
|
||||||
this.material = material;
|
this.material = material;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ package com.willfp.eco.core.recipe.parts;
|
|||||||
|
|
||||||
import com.willfp.eco.core.items.TestableItem;
|
import com.willfp.eco.core.items.TestableItem;
|
||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
|
import org.apache.commons.lang.Validate;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|||||||
@@ -1,17 +1,12 @@
|
|||||||
package com.willfp.eco.core.recipe.parts;
|
package com.willfp.eco.core.recipe.parts;
|
||||||
|
|
||||||
import com.willfp.eco.core.Eco;
|
|
||||||
import com.willfp.eco.core.items.TestableItem;
|
import com.willfp.eco.core.items.TestableItem;
|
||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
import org.apache.commons.lang.Validate;
|
import org.apache.commons.lang.Validate;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.bukkit.inventory.meta.ItemMeta;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stacks of items.
|
* Stacks of items.
|
||||||
*/
|
*/
|
||||||
@@ -36,7 +31,8 @@ public class TestableStack implements TestableItem {
|
|||||||
*/
|
*/
|
||||||
public TestableStack(@NotNull final TestableItem item,
|
public TestableStack(@NotNull final TestableItem item,
|
||||||
final int amount) {
|
final int amount) {
|
||||||
Validate.isTrue(!(item instanceof TestableStack));
|
Validate.isTrue(!(item instanceof TestableStack), "You can't stack a stack!");
|
||||||
|
Validate.isTrue(!(item instanceof EmptyTestableItem), "You can't stack air!");
|
||||||
|
|
||||||
this.handle = item;
|
this.handle = item;
|
||||||
this.amount = amount;
|
this.amount = amount;
|
||||||
@@ -56,19 +52,7 @@ public class TestableStack implements TestableItem {
|
|||||||
@Override
|
@Override
|
||||||
public ItemStack getItem() {
|
public ItemStack getItem() {
|
||||||
ItemStack temp = handle.getItem().clone();
|
ItemStack temp = handle.getItem().clone();
|
||||||
ItemMeta meta = temp.getItemMeta();
|
|
||||||
assert meta != null;
|
|
||||||
|
|
||||||
List<String> lore = meta.hasLore() ? meta.getLore() : new ArrayList<>();
|
|
||||||
assert lore != null;
|
|
||||||
lore.add("");
|
|
||||||
String add = Eco.getHandler().getEcoPlugin().getLangYml().getString("multiple-in-craft");
|
|
||||||
add = add.replace("%amount%", String.valueOf(amount));
|
|
||||||
lore.add(add);
|
|
||||||
meta.setLore(lore);
|
|
||||||
temp.setItemMeta(meta);
|
|
||||||
temp.setAmount(amount);
|
temp.setAmount(amount);
|
||||||
|
|
||||||
return temp;
|
return temp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,16 +1,19 @@
|
|||||||
package com.willfp.eco.core.recipe.recipes;
|
package com.willfp.eco.core.recipe.recipes;
|
||||||
|
|
||||||
|
import com.willfp.eco.core.Eco;
|
||||||
import com.willfp.eco.core.EcoPlugin;
|
import com.willfp.eco.core.EcoPlugin;
|
||||||
import com.willfp.eco.core.PluginDependent;
|
import com.willfp.eco.core.PluginDependent;
|
||||||
import com.willfp.eco.core.items.TestableItem;
|
import com.willfp.eco.core.items.TestableItem;
|
||||||
import com.willfp.eco.core.recipe.Recipes;
|
import com.willfp.eco.core.recipe.Recipes;
|
||||||
import com.willfp.eco.core.recipe.parts.EmptyTestableItem;
|
import com.willfp.eco.core.recipe.parts.EmptyTestableItem;
|
||||||
|
import com.willfp.eco.core.recipe.parts.TestableStack;
|
||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.NamespacedKey;
|
import org.bukkit.NamespacedKey;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.bukkit.inventory.RecipeChoice;
|
import org.bukkit.inventory.RecipeChoice;
|
||||||
import org.bukkit.inventory.ShapedRecipe;
|
import org.bukkit.inventory.ShapedRecipe;
|
||||||
|
import org.bukkit.inventory.meta.ItemMeta;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@@ -79,6 +82,10 @@ public final class ShapedCraftingRecipe extends PluginDependent<EcoPlugin> imple
|
|||||||
ShapedRecipe shapedRecipe = new ShapedRecipe(this.getKey(), this.getOutput());
|
ShapedRecipe shapedRecipe = new ShapedRecipe(this.getKey(), this.getOutput());
|
||||||
shapedRecipe.shape("012", "345", "678");
|
shapedRecipe.shape("012", "345", "678");
|
||||||
for (int i = 0; i < 9; i++) {
|
for (int i = 0; i < 9; i++) {
|
||||||
|
if (parts.get(i) instanceof EmptyTestableItem) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
char character = String.valueOf(i).toCharArray()[0];
|
char character = String.valueOf(i).toCharArray()[0];
|
||||||
shapedRecipe.setIngredient(character, parts.get(i).getItem().getType());
|
shapedRecipe.setIngredient(character, parts.get(i).getItem().getType());
|
||||||
}
|
}
|
||||||
@@ -86,8 +93,28 @@ public final class ShapedCraftingRecipe extends PluginDependent<EcoPlugin> imple
|
|||||||
ShapedRecipe displayedRecipe = new ShapedRecipe(this.getDisplayedKey(), this.getOutput());
|
ShapedRecipe displayedRecipe = new ShapedRecipe(this.getDisplayedKey(), this.getOutput());
|
||||||
displayedRecipe.shape("012", "345", "678");
|
displayedRecipe.shape("012", "345", "678");
|
||||||
for (int i = 0; i < 9; i++) {
|
for (int i = 0; i < 9; i++) {
|
||||||
|
if (parts.get(i) instanceof EmptyTestableItem) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
char character = String.valueOf(i).toCharArray()[0];
|
char character = String.valueOf(i).toCharArray()[0];
|
||||||
displayedRecipe.setIngredient(character, new RecipeChoice.ExactChoice(parts.get(i).getItem()));
|
ItemStack item = parts.get(i).getItem();
|
||||||
|
|
||||||
|
if (parts.get(i) instanceof TestableStack) {
|
||||||
|
ItemMeta meta = item.getItemMeta();
|
||||||
|
assert meta != null;
|
||||||
|
|
||||||
|
List<String> lore = meta.hasLore() ? meta.getLore() : new ArrayList<>();
|
||||||
|
assert lore != null;
|
||||||
|
lore.add("");
|
||||||
|
String add = Eco.getHandler().getEcoPlugin().getLangYml().getString("multiple-in-craft");
|
||||||
|
add = add.replace("%amount%", String.valueOf(item.getAmount()));
|
||||||
|
lore.add(add);
|
||||||
|
meta.setLore(lore);
|
||||||
|
item.setItemMeta(meta);
|
||||||
|
}
|
||||||
|
|
||||||
|
displayedRecipe.setIngredient(character, new RecipeChoice.ExactChoice(item));
|
||||||
}
|
}
|
||||||
|
|
||||||
Bukkit.getServer().addRecipe(shapedRecipe);
|
Bukkit.getServer().addRecipe(shapedRecipe);
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ public class ArrowUtils {
|
|||||||
* Get the bow from an arrow.
|
* Get the bow from an arrow.
|
||||||
*
|
*
|
||||||
* @param arrow The arrow.
|
* @param arrow The arrow.
|
||||||
* @return The bow.
|
* @return The bow, or null if no bow.
|
||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
public ItemStack getBow(@NotNull final Arrow arrow) {
|
public ItemStack getBow(@NotNull final Arrow arrow) {
|
||||||
|
|||||||
@@ -63,6 +63,7 @@ public class BlockUtils {
|
|||||||
* @param limit The maximum size of vein to return.
|
* @param limit The maximum size of vein to return.
|
||||||
* @return A set of all {@link Block}s.
|
* @return A set of all {@link Block}s.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public Set<Block> getVein(@NotNull final Block start,
|
public Set<Block> getVein(@NotNull final Block start,
|
||||||
@NotNull final List<Material> allowedMaterials,
|
@NotNull final List<Material> allowedMaterials,
|
||||||
final int limit) {
|
final int limit) {
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
package com.willfp.eco.util;
|
package com.willfp.eco.util;
|
||||||
|
|
||||||
import lombok.experimental.UtilityClass;
|
import lombok.experimental.UtilityClass;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@@ -18,7 +20,8 @@ public class ListUtils {
|
|||||||
* @param <T> The type of the object stored in the list.
|
* @param <T> The type of the object stored in the list.
|
||||||
* @return The list, filled will null objects.
|
* @return The list, filled will null objects.
|
||||||
*/
|
*/
|
||||||
public <T> List<List<T>> create2DList(final int rows,
|
@NotNull
|
||||||
|
public <@Nullable T> List<List<T>> create2DList(final int rows,
|
||||||
final int columns) {
|
final int columns) {
|
||||||
List<List<T>> list = new ArrayList<>(rows);
|
List<List<T>> list = new ArrayList<>(rows);
|
||||||
while (list.size() < rows) {
|
while (list.size() < rows) {
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ package com.willfp.eco.util;
|
|||||||
|
|
||||||
import com.willfp.eco.core.tuples.Pair;
|
import com.willfp.eco.core.tuples.Pair;
|
||||||
import lombok.experimental.UtilityClass;
|
import lombok.experimental.UtilityClass;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Utilities / API methods for menus.
|
* Utilities / API methods for menus.
|
||||||
@@ -14,6 +15,7 @@ public class MenuUtils {
|
|||||||
* @param slot The slot.
|
* @param slot The slot.
|
||||||
* @return The pair of row and columns.
|
* @return The pair of row and columns.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public Pair<Integer, Integer> convertSlotToRowColumn(final int slot) {
|
public Pair<Integer, Integer> convertSlotToRowColumn(final int slot) {
|
||||||
int row = Math.floorDiv(slot, 9);
|
int row = Math.floorDiv(slot, 9);
|
||||||
int column = slot - row * 9;
|
int column = slot - row * 9;
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ public class NamespacedKeyUtils {
|
|||||||
* @param string The string.
|
* @param string The string.
|
||||||
* @return The key.
|
* @return The key.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public NamespacedKey createEcoKey(@NotNull final String string) {
|
public NamespacedKey createEcoKey(@NotNull final String string) {
|
||||||
return Objects.requireNonNull(NamespacedKey.fromString("eco:" + string));
|
return Objects.requireNonNull(NamespacedKey.fromString("eco:" + string));
|
||||||
}
|
}
|
||||||
@@ -28,6 +29,7 @@ public class NamespacedKeyUtils {
|
|||||||
* @param key The key.
|
* @param key The key.
|
||||||
* @return The key.
|
* @return The key.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public NamespacedKey create(@NotNull final String namespace,
|
public NamespacedKey create(@NotNull final String namespace,
|
||||||
@NotNull final String key) {
|
@NotNull final String key) {
|
||||||
return Objects.requireNonNull(NamespacedKey.fromString(namespace + ":" + key));
|
return Objects.requireNonNull(NamespacedKey.fromString(namespace + ":" + key));
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
package com.willfp.eco.util;
|
package com.willfp.eco.util;
|
||||||
|
|
||||||
|
import lombok.experimental.NonFinal;
|
||||||
import lombok.experimental.UtilityClass;
|
import lombok.experimental.UtilityClass;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
@@ -109,6 +110,7 @@ public class NumberUtils {
|
|||||||
* @param number The number to convert.
|
* @param number The number to convert.
|
||||||
* @return The number, converted to a roman numeral.
|
* @return The number, converted to a roman numeral.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public String toNumeral(final int number) {
|
public String toNumeral(final int number) {
|
||||||
if (number >= 1 && number <= 4096) {
|
if (number >= 1 && number <= 4096) {
|
||||||
int l = NUMERALS.floorKey(number);
|
int l = NUMERALS.floorKey(number);
|
||||||
@@ -199,6 +201,7 @@ public class NumberUtils {
|
|||||||
* @param toFormat The number to format.
|
* @param toFormat The number to format.
|
||||||
* @return Formatted.
|
* @return Formatted.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public String format(final double toFormat) {
|
public String format(final double toFormat) {
|
||||||
DecimalFormat df = new DecimalFormat("0.00");
|
DecimalFormat df = new DecimalFormat("0.00");
|
||||||
String formatted = df.format(toFormat);
|
String formatted = df.format(toFormat);
|
||||||
|
|||||||
@@ -5,8 +5,10 @@ import org.apache.commons.lang.Validate;
|
|||||||
import org.bukkit.inventory.meta.SkullMeta;
|
import org.bukkit.inventory.meta.SkullMeta;
|
||||||
import org.jetbrains.annotations.ApiStatus;
|
import org.jetbrains.annotations.ApiStatus;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
import java.util.function.BiConsumer;
|
import java.util.function.BiConsumer;
|
||||||
|
import java.util.function.Function;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Utilities / API methods for player heads.
|
* Utilities / API methods for player heads.
|
||||||
@@ -23,6 +25,11 @@ public class SkullUtils {
|
|||||||
*/
|
*/
|
||||||
private BiConsumer<SkullMeta, String> metaSetConsumer = null;
|
private BiConsumer<SkullMeta, String> metaSetConsumer = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The meta get function.
|
||||||
|
*/
|
||||||
|
private Function<SkullMeta, String> metaGetConsumer = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the texture of a skull from base64.
|
* Set the texture of a skull from base64.
|
||||||
*
|
*
|
||||||
@@ -37,16 +44,33 @@ public class SkullUtils {
|
|||||||
metaSetConsumer.accept(meta, base64);
|
metaSetConsumer.accept(meta, base64);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the texture of a skull - in base64.
|
||||||
|
*
|
||||||
|
* @param meta The meta to modify.
|
||||||
|
* @return The texture, potentially null.
|
||||||
|
*/
|
||||||
|
@Nullable
|
||||||
|
public String getSkullTexture(@NotNull final SkullMeta meta) {
|
||||||
|
Validate.isTrue(initialized, "Must be initialized!");
|
||||||
|
Validate.notNull(metaGetConsumer, "Must be initialized!");
|
||||||
|
|
||||||
|
return metaGetConsumer.apply(meta);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize the skull texture function.
|
* Initialize the skull texture function.
|
||||||
*
|
*
|
||||||
* @param function The function.
|
* @param function The function.
|
||||||
|
* @param function2 Get function.
|
||||||
*/
|
*/
|
||||||
@ApiStatus.Internal
|
@ApiStatus.Internal
|
||||||
public void initialize(@NotNull final BiConsumer<SkullMeta, String> function) {
|
public void initialize(@NotNull final BiConsumer<SkullMeta, String> function,
|
||||||
|
@NotNull final Function<SkullMeta, String> function2) {
|
||||||
Validate.isTrue(!initialized, "Already initialized!");
|
Validate.isTrue(!initialized, "Already initialized!");
|
||||||
|
|
||||||
metaSetConsumer = function;
|
metaSetConsumer = function;
|
||||||
|
metaGetConsumer = function2;
|
||||||
initialized = true;
|
initialized = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -64,6 +64,7 @@ public class StringUtils {
|
|||||||
* @param list The messages to format.
|
* @param list The messages to format.
|
||||||
* @return The message, formatted.
|
* @return The message, formatted.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public List<String> formatList(@NotNull final List<String> list) {
|
public List<String> formatList(@NotNull final List<String> list) {
|
||||||
return formatList(list, (Player) null);
|
return formatList(list, (Player) null);
|
||||||
}
|
}
|
||||||
@@ -77,6 +78,7 @@ public class StringUtils {
|
|||||||
* @param player The player to translate placeholders with respect to.
|
* @param player The player to translate placeholders with respect to.
|
||||||
* @return The message, format.
|
* @return The message, format.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public List<String> formatList(@NotNull final List<String> list,
|
public List<String> formatList(@NotNull final List<String> list,
|
||||||
@Nullable final Player player) {
|
@Nullable final Player player) {
|
||||||
return formatList(list, player, FormatOption.WITH_PLACEHOLDERS);
|
return formatList(list, player, FormatOption.WITH_PLACEHOLDERS);
|
||||||
@@ -91,6 +93,7 @@ public class StringUtils {
|
|||||||
* @param option The format option.
|
* @param option The format option.
|
||||||
* @return The message, formatted.
|
* @return The message, formatted.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public List<String> formatList(@NotNull final List<String> list,
|
public List<String> formatList(@NotNull final List<String> list,
|
||||||
@NotNull final FormatOption option) {
|
@NotNull final FormatOption option) {
|
||||||
return formatList(list, null, option);
|
return formatList(list, null, option);
|
||||||
@@ -106,6 +109,7 @@ public class StringUtils {
|
|||||||
* @param option The options.
|
* @param option The options.
|
||||||
* @return The message, format.
|
* @return The message, format.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public List<String> formatList(@NotNull final List<String> list,
|
public List<String> formatList(@NotNull final List<String> list,
|
||||||
@Nullable final Player player,
|
@Nullable final Player player,
|
||||||
@NotNull final FormatOption option) {
|
@NotNull final FormatOption option) {
|
||||||
@@ -126,6 +130,7 @@ public class StringUtils {
|
|||||||
* @return The message, formatted.
|
* @return The message, formatted.
|
||||||
* @see StringUtils#format(String, Player)
|
* @see StringUtils#format(String, Player)
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public String format(@NotNull final String message) {
|
public String format(@NotNull final String message) {
|
||||||
return format(message, (Player) null);
|
return format(message, (Player) null);
|
||||||
}
|
}
|
||||||
@@ -139,6 +144,7 @@ public class StringUtils {
|
|||||||
* @param player The player to translate placeholders with respect to.
|
* @param player The player to translate placeholders with respect to.
|
||||||
* @return The message, formatted.
|
* @return The message, formatted.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public String format(@NotNull final String message,
|
public String format(@NotNull final String message,
|
||||||
@Nullable final Player player) {
|
@Nullable final Player player) {
|
||||||
return format(message, player, FormatOption.WITH_PLACEHOLDERS);
|
return format(message, player, FormatOption.WITH_PLACEHOLDERS);
|
||||||
@@ -154,6 +160,7 @@ public class StringUtils {
|
|||||||
* @return The message, formatted.
|
* @return The message, formatted.
|
||||||
* @see StringUtils#format(String, Player)
|
* @see StringUtils#format(String, Player)
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public String format(@NotNull final String message,
|
public String format(@NotNull final String message,
|
||||||
@NotNull final FormatOption option) {
|
@NotNull final FormatOption option) {
|
||||||
return format(message, null, option);
|
return format(message, null, option);
|
||||||
@@ -169,6 +176,7 @@ public class StringUtils {
|
|||||||
* @param option The format options.
|
* @param option The format options.
|
||||||
* @return The message, formatted.
|
* @return The message, formatted.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public String format(@NotNull final String message,
|
public String format(@NotNull final String message,
|
||||||
@Nullable final Player player,
|
@Nullable final Player player,
|
||||||
@NotNull final FormatOption option) {
|
@NotNull final FormatOption option) {
|
||||||
@@ -284,6 +292,7 @@ public class StringUtils {
|
|||||||
* @param object The object to convert to string.
|
* @param object The object to convert to string.
|
||||||
* @return The object stringified.
|
* @return The object stringified.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public String internalToString(@Nullable final Object object) {
|
public String internalToString(@Nullable final Object object) {
|
||||||
if (object == null) {
|
if (object == null) {
|
||||||
return "null";
|
return "null";
|
||||||
@@ -309,6 +318,7 @@ public class StringUtils {
|
|||||||
* @param prefix The substring to remove.
|
* @param prefix The substring to remove.
|
||||||
* @return The string with the prefix removed.
|
* @return The string with the prefix removed.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public String removePrefix(@NotNull final String string,
|
public String removePrefix(@NotNull final String string,
|
||||||
@NotNull final String prefix) {
|
@NotNull final String prefix) {
|
||||||
if (string.startsWith(prefix)) {
|
if (string.startsWith(prefix)) {
|
||||||
@@ -323,6 +333,7 @@ public class StringUtils {
|
|||||||
* @param legacy The legacy string.
|
* @param legacy The legacy string.
|
||||||
* @return The JSON String.
|
* @return The JSON String.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public String legacyToJson(@NotNull final String legacy) {
|
public String legacyToJson(@NotNull final String legacy) {
|
||||||
return GsonComponentSerializer.gson().serialize(
|
return GsonComponentSerializer.gson().serialize(
|
||||||
Component.empty().decoration(TextDecoration.ITALIC, false).append(
|
Component.empty().decoration(TextDecoration.ITALIC, false).append(
|
||||||
@@ -337,6 +348,7 @@ public class StringUtils {
|
|||||||
* @param json The JSON string.
|
* @param json The JSON string.
|
||||||
* @return The legacy string.
|
* @return The legacy string.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public String jsonToLegacy(@NotNull final String json) {
|
public String jsonToLegacy(@NotNull final String json) {
|
||||||
return LEGACY_COMPONENT_SERIALIZER.serialize(
|
return LEGACY_COMPONENT_SERIALIZER.serialize(
|
||||||
GsonComponentSerializer.gson().deserialize(json)
|
GsonComponentSerializer.gson().deserialize(json)
|
||||||
|
|||||||
@@ -43,6 +43,7 @@ public class TeamUtils {
|
|||||||
* @param color The color to find the team for.
|
* @param color The color to find the team for.
|
||||||
* @return The team.
|
* @return The team.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public Team fromChatColor(@NotNull final ChatColor color) {
|
public Team fromChatColor(@NotNull final ChatColor color) {
|
||||||
if (CHAT_COLOR_TEAMS.containsKey(color)) {
|
if (CHAT_COLOR_TEAMS.containsKey(color)) {
|
||||||
return CHAT_COLOR_TEAMS.get(color);
|
return CHAT_COLOR_TEAMS.get(color);
|
||||||
@@ -70,6 +71,7 @@ public class TeamUtils {
|
|||||||
* @param material The material to find the team from.
|
* @param material The material to find the team from.
|
||||||
* @return The team.
|
* @return The team.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public Team getMaterialColorTeam(@NotNull final Material material) {
|
public Team getMaterialColorTeam(@NotNull final Material material) {
|
||||||
return fromChatColor(MATERIAL_COLORS.getOrDefault(material, ChatColor.WHITE));
|
return fromChatColor(MATERIAL_COLORS.getOrDefault(material, ChatColor.WHITE));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,6 +44,7 @@ public class VectorUtils {
|
|||||||
* @param vec The vector to simplify.
|
* @param vec The vector to simplify.
|
||||||
* @return The vector, simplified.
|
* @return The vector, simplified.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public Vector simplifyVector(@NotNull final Vector vec) {
|
public Vector simplifyVector(@NotNull final Vector vec) {
|
||||||
double x = Math.abs(vec.getX());
|
double x = Math.abs(vec.getX());
|
||||||
double y = Math.abs(vec.getY());
|
double y = Math.abs(vec.getY());
|
||||||
@@ -76,6 +77,7 @@ public class VectorUtils {
|
|||||||
* @param radius The radius.
|
* @param radius The radius.
|
||||||
* @return An array of {@link Vector}s.
|
* @return An array of {@link Vector}s.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public Vector[] getCircle(final int radius) {
|
public Vector[] getCircle(final int radius) {
|
||||||
Vector[] cached = CIRCLE_CACHE.get(radius);
|
Vector[] cached = CIRCLE_CACHE.get(radius);
|
||||||
if (cached != null) {
|
if (cached != null) {
|
||||||
@@ -112,6 +114,7 @@ public class VectorUtils {
|
|||||||
* @param radius The radius of the square.
|
* @param radius The radius of the square.
|
||||||
* @return An array of {@link Vector}s.
|
* @return An array of {@link Vector}s.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public Vector[] getSquare(final int radius) {
|
public Vector[] getSquare(final int radius) {
|
||||||
List<Vector> vectors = new ArrayList<>();
|
List<Vector> vectors = new ArrayList<>();
|
||||||
|
|
||||||
@@ -136,6 +139,7 @@ public class VectorUtils {
|
|||||||
* @param radius The radius of the cube.
|
* @param radius The radius of the cube.
|
||||||
* @return An array of {@link Vector}s.
|
* @return An array of {@link Vector}s.
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
public Vector[] getCube(final int radius) {
|
public Vector[] getCube(final int radius) {
|
||||||
List<Vector> vectors = new ArrayList<>();
|
List<Vector> vectors = new ArrayList<>();
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import org.bukkit.Bukkit
|
|||||||
import org.bukkit.event.HandlerList
|
import org.bukkit.event.HandlerList
|
||||||
import org.bukkit.event.Listener
|
import org.bukkit.event.Listener
|
||||||
|
|
||||||
class EcoEventManager constructor(private val plugin: EcoPlugin) : EventManager {
|
class EcoEventManager (private val plugin: EcoPlugin) : EventManager {
|
||||||
override fun registerListener(listener: Listener) {
|
override fun registerListener(listener: Listener) {
|
||||||
Bukkit.getPluginManager().registerEvents(listener, plugin)
|
Bukkit.getPluginManager().registerEvents(listener, plugin)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,6 +63,7 @@ class EcoMenu(
|
|||||||
|
|
||||||
fun handleClose(event: InventoryCloseEvent) {
|
fun handleClose(event: InventoryCloseEvent) {
|
||||||
onClose.handle(event, this)
|
onClose.handle(event, this)
|
||||||
|
MenuHandler.unregisterMenu(event.inventory)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getRows(): Int {
|
override fun getRows(): Int {
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ class EcoCaptivatorSlot : EcoSlot(
|
|||||||
{ _, _, _ -> }
|
{ _, _, _ -> }
|
||||||
) {
|
) {
|
||||||
companion object {
|
companion object {
|
||||||
val plugin = Eco.getHandler().ecoPlugin!!
|
val plugin = Eco.getHandler().ecoPlugin
|
||||||
|
|
||||||
val allowMovingItem = SlotHandler { event, _, _ ->
|
val allowMovingItem = SlotHandler { event, _, _ ->
|
||||||
event.isCancelled = false
|
event.isCancelled = false
|
||||||
|
|||||||
@@ -1,19 +1,21 @@
|
|||||||
package com.willfp.eco.proxy.v1_16_R3
|
package com.willfp.eco.proxy.v1_16_R3
|
||||||
|
|
||||||
import com.mojang.authlib.GameProfile
|
import com.mojang.authlib.GameProfile
|
||||||
import com.mojang.authlib.properties.Property
|
import com.mojang.authlib.properties.Property
|
||||||
import org.bukkit.inventory.meta.SkullMeta
|
|
||||||
import com.willfp.eco.proxy.SkullProxy
|
import com.willfp.eco.proxy.SkullProxy
|
||||||
|
import org.bukkit.inventory.meta.SkullMeta
|
||||||
|
import java.lang.reflect.Field
|
||||||
import java.lang.reflect.Method
|
import java.lang.reflect.Method
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
class Skull : SkullProxy {
|
class Skull : SkullProxy {
|
||||||
private lateinit var setProfile: Method
|
private lateinit var setProfile: Method
|
||||||
|
private lateinit var profile: Field
|
||||||
|
|
||||||
override fun setSkullTexture(
|
override fun setSkullTexture(
|
||||||
meta: SkullMeta,
|
meta: SkullMeta,
|
||||||
base64: String
|
base64: String
|
||||||
) {
|
) {
|
||||||
try {
|
|
||||||
if (!this::setProfile.isInitialized) {
|
if (!this::setProfile.isInitialized) {
|
||||||
setProfile = meta.javaClass.getDeclaredMethod("setProfile", GameProfile::class.java)
|
setProfile = meta.javaClass.getDeclaredMethod("setProfile", GameProfile::class.java)
|
||||||
setProfile.isAccessible = true
|
setProfile.isAccessible = true
|
||||||
@@ -25,8 +27,17 @@ class Skull : SkullProxy {
|
|||||||
val profile = GameProfile(uuid, "eco")
|
val profile = GameProfile(uuid, "eco")
|
||||||
profile.properties.put("textures", Property("textures", base64))
|
profile.properties.put("textures", Property("textures", base64))
|
||||||
setProfile.invoke(meta, profile)
|
setProfile.invoke(meta, profile)
|
||||||
} catch (e: ReflectiveOperationException) {
|
|
||||||
e.printStackTrace()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun getSkullTexture(
|
||||||
|
meta: SkullMeta
|
||||||
|
): String? {
|
||||||
|
if (!this::profile.isInitialized) {
|
||||||
|
profile = meta.javaClass.getDeclaredField("profile")
|
||||||
|
profile.isAccessible = true
|
||||||
|
}
|
||||||
|
val profile = profile[meta] as GameProfile?
|
||||||
|
val property = profile?.properties?.get("textures") as Property?
|
||||||
|
return property?.value
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -4,17 +4,18 @@ import com.mojang.authlib.GameProfile
|
|||||||
import com.mojang.authlib.properties.Property
|
import com.mojang.authlib.properties.Property
|
||||||
import com.willfp.eco.proxy.SkullProxy
|
import com.willfp.eco.proxy.SkullProxy
|
||||||
import org.bukkit.inventory.meta.SkullMeta
|
import org.bukkit.inventory.meta.SkullMeta
|
||||||
|
import java.lang.reflect.Field
|
||||||
import java.lang.reflect.Method
|
import java.lang.reflect.Method
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
class Skull : SkullProxy {
|
class Skull : SkullProxy {
|
||||||
private lateinit var setProfile: Method
|
private lateinit var setProfile: Method
|
||||||
|
private lateinit var profile: Field
|
||||||
|
|
||||||
override fun setSkullTexture(
|
override fun setSkullTexture(
|
||||||
meta: SkullMeta,
|
meta: SkullMeta,
|
||||||
base64: String
|
base64: String
|
||||||
) {
|
) {
|
||||||
try {
|
|
||||||
if (!this::setProfile.isInitialized) {
|
if (!this::setProfile.isInitialized) {
|
||||||
setProfile = meta.javaClass.getDeclaredMethod("setProfile", GameProfile::class.java)
|
setProfile = meta.javaClass.getDeclaredMethod("setProfile", GameProfile::class.java)
|
||||||
setProfile.isAccessible = true
|
setProfile.isAccessible = true
|
||||||
@@ -26,8 +27,17 @@ class Skull : SkullProxy {
|
|||||||
val profile = GameProfile(uuid, "eco")
|
val profile = GameProfile(uuid, "eco")
|
||||||
profile.properties.put("textures", Property("textures", base64))
|
profile.properties.put("textures", Property("textures", base64))
|
||||||
setProfile.invoke(meta, profile)
|
setProfile.invoke(meta, profile)
|
||||||
} catch (e: ReflectiveOperationException) {
|
|
||||||
e.printStackTrace()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun getSkullTexture(
|
||||||
|
meta: SkullMeta
|
||||||
|
): String? {
|
||||||
|
if (!this::profile.isInitialized) {
|
||||||
|
profile = meta.javaClass.getDeclaredField("profile")
|
||||||
|
profile.isAccessible = true
|
||||||
|
}
|
||||||
|
val profile = profile[meta] as GameProfile?
|
||||||
|
val property = profile?.properties?.get("textures") as Property?
|
||||||
|
return property?.value
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -21,8 +21,8 @@ dependencies {
|
|||||||
compileOnly 'me.clip:placeholderapi:2.10.9'
|
compileOnly 'me.clip:placeholderapi:2.10.9'
|
||||||
compileOnly 'com.willfp:Oraxen:e1f4003d8d'
|
compileOnly 'com.willfp:Oraxen:e1f4003d8d'
|
||||||
compileOnly 'com.github.brcdev-minecraft:shopgui-api:2.2.0'
|
compileOnly 'com.github.brcdev-minecraft:shopgui-api:2.2.0'
|
||||||
|
compileOnly 'com.github.LoneDev6:API-ItemsAdder:2.4.7'
|
||||||
compileOnly 'com.github.LoneDev6:API-ItemsAdder:2.3.8'
|
compileOnly 'me.arcaniax:HeadDatabase-API:1.2.0'
|
||||||
|
|
||||||
// CombatLogX V10 + NewbieHelper Expansion
|
// CombatLogX V10 + NewbieHelper Expansion
|
||||||
compileOnly 'com.SirBlobman.combatlogx:CombatLogX-API:10.0.0.0-SNAPSHOT'
|
compileOnly 'com.SirBlobman.combatlogx:CombatLogX-API:10.0.0.0-SNAPSHOT'
|
||||||
|
|||||||
@@ -98,16 +98,65 @@ public class ShapedRecipeListener extends PluginDependent<EcoPlugin> implements
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.getPlugin().getScheduler().runLater(() -> {
|
boolean isStackedRecipe = false;
|
||||||
|
|
||||||
|
int upperBound = 64;
|
||||||
for (int i = 0; i < 9; i++) {
|
for (int i = 0; i < 9; i++) {
|
||||||
ItemStack inMatrix = event.getInventory().getMatrix()[i];
|
ItemStack inMatrix = event.getInventory().getMatrix()[i];
|
||||||
TestableItem inRecipe = matched.getParts().get(i);
|
TestableItem inRecipe = matched.getParts().get(i);
|
||||||
|
|
||||||
if (inRecipe instanceof TestableStack testableStack) {
|
if (inRecipe instanceof TestableStack testableStack) {
|
||||||
|
int max = Math.floorDiv(inMatrix.getAmount(), testableStack.getAmount());
|
||||||
|
if (max < upperBound) {
|
||||||
|
upperBound = max;
|
||||||
|
}
|
||||||
|
isStackedRecipe = true;
|
||||||
|
} else if (inMatrix != null) {
|
||||||
|
int max = inMatrix.getAmount();
|
||||||
|
if (max < upperBound) {
|
||||||
|
upperBound = max;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isStackedRecipe) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
int toGivePerRecipe = event.getRecipe().getResult().getAmount();
|
||||||
|
int maxStackSize = event.getRecipe().getResult().getMaxStackSize();
|
||||||
|
while (toGivePerRecipe * upperBound > maxStackSize) {
|
||||||
|
upperBound--;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < 9; i++) {
|
||||||
|
ItemStack inMatrix = event.getInventory().getMatrix()[i];
|
||||||
|
TestableItem inRecipe = matched.getParts().get(i);
|
||||||
|
|
||||||
|
if (inRecipe instanceof TestableStack testableStack) {
|
||||||
|
if (event.isShiftClick()) {
|
||||||
|
int amount = inMatrix.getAmount() + 1;
|
||||||
|
for (int j = 0; j < upperBound; j++) {
|
||||||
|
amount -= testableStack.getAmount();
|
||||||
|
}
|
||||||
|
inMatrix.setAmount(amount);
|
||||||
|
} else {
|
||||||
inMatrix.setAmount(inMatrix.getAmount() - (testableStack.getAmount() - 1));
|
inMatrix.setAmount(inMatrix.getAmount() - (testableStack.getAmount() - 1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, 1);
|
}
|
||||||
|
|
||||||
|
int finalUpperBound = upperBound;
|
||||||
|
|
||||||
|
if (event.isShiftClick()) {
|
||||||
|
ItemStack result = event.getInventory().getResult();
|
||||||
|
if (result == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
result.setAmount(result.getAmount() * finalUpperBound);
|
||||||
|
event.getInventory().setResult(result);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
|
|||||||
@@ -9,6 +9,9 @@ import com.willfp.eco.core.integrations.antigrief.AntigriefManager
|
|||||||
import com.willfp.eco.core.integrations.customitems.CustomItemsManager
|
import com.willfp.eco.core.integrations.customitems.CustomItemsManager
|
||||||
import com.willfp.eco.core.integrations.mcmmo.McmmoManager
|
import com.willfp.eco.core.integrations.mcmmo.McmmoManager
|
||||||
import com.willfp.eco.core.integrations.shop.ShopManager
|
import com.willfp.eco.core.integrations.shop.ShopManager
|
||||||
|
import com.willfp.eco.core.items.Items
|
||||||
|
import com.willfp.eco.core.items.args.EnchantmentArgParser
|
||||||
|
import com.willfp.eco.core.items.args.TextureArgParser
|
||||||
import com.willfp.eco.internal.drops.DropManager
|
import com.willfp.eco.internal.drops.DropManager
|
||||||
import com.willfp.eco.proxy.BlockBreakProxy
|
import com.willfp.eco.proxy.BlockBreakProxy
|
||||||
import com.willfp.eco.proxy.FastItemStackFactoryProxy
|
import com.willfp.eco.proxy.FastItemStackFactoryProxy
|
||||||
@@ -20,6 +23,8 @@ import com.willfp.eco.spigot.eventlisteners.*
|
|||||||
import com.willfp.eco.spigot.gui.GUIListener
|
import com.willfp.eco.spigot.gui.GUIListener
|
||||||
import com.willfp.eco.spigot.integrations.anticheat.*
|
import com.willfp.eco.spigot.integrations.anticheat.*
|
||||||
import com.willfp.eco.spigot.integrations.antigrief.*
|
import com.willfp.eco.spigot.integrations.antigrief.*
|
||||||
|
import com.willfp.eco.spigot.integrations.customitems.CustomItemsHeadDatabase
|
||||||
|
import com.willfp.eco.spigot.integrations.customitems.CustomItemsItemsAdder
|
||||||
import com.willfp.eco.spigot.integrations.customitems.CustomItemsOraxen
|
import com.willfp.eco.spigot.integrations.customitems.CustomItemsOraxen
|
||||||
import com.willfp.eco.spigot.integrations.mcmmo.McmmoIntegrationImpl
|
import com.willfp.eco.spigot.integrations.mcmmo.McmmoIntegrationImpl
|
||||||
import com.willfp.eco.spigot.integrations.shop.ShopShopGuiPlus
|
import com.willfp.eco.spigot.integrations.shop.ShopShopGuiPlus
|
||||||
@@ -43,8 +48,14 @@ abstract class EcoSpigotPlugin : EcoPlugin(
|
|||||||
init {
|
init {
|
||||||
Display.setFinalizeKey(namespacedKeyFactory.create("finalized"))
|
Display.setFinalizeKey(namespacedKeyFactory.create("finalized"))
|
||||||
|
|
||||||
|
Items.registerArgParser(EnchantmentArgParser())
|
||||||
|
Items.registerArgParser(TextureArgParser())
|
||||||
|
|
||||||
val skullProxy = getProxy(SkullProxy::class.java)
|
val skullProxy = getProxy(SkullProxy::class.java)
|
||||||
SkullUtils.initialize { meta: SkullMeta, base64: String -> skullProxy.setSkullTexture(meta, base64) }
|
SkullUtils.initialize(
|
||||||
|
{ meta: SkullMeta, base64: String -> skullProxy.setSkullTexture(meta, base64) },
|
||||||
|
{ meta: SkullMeta -> skullProxy.getSkullTexture(meta) }
|
||||||
|
)
|
||||||
|
|
||||||
val blockBreakProxy = getProxy(BlockBreakProxy::class.java)
|
val blockBreakProxy = getProxy(BlockBreakProxy::class.java)
|
||||||
BlockUtils.initialize { player: Player, block: Block -> blockBreakProxy.breakBlock(player, block) }
|
BlockUtils.initialize { player: Player, block: Block -> blockBreakProxy.breakBlock(player, block) }
|
||||||
@@ -111,6 +122,8 @@ abstract class EcoSpigotPlugin : EcoPlugin(
|
|||||||
|
|
||||||
// Custom Items
|
// Custom Items
|
||||||
IntegrationLoader("Oraxen") { CustomItemsManager.register(CustomItemsOraxen()) },
|
IntegrationLoader("Oraxen") { CustomItemsManager.register(CustomItemsOraxen()) },
|
||||||
|
IntegrationLoader("ItemsAdder") { CustomItemsManager.register(CustomItemsItemsAdder(this)) },
|
||||||
|
IntegrationLoader("HeadDatabase") { CustomItemsManager.register(CustomItemsHeadDatabase()) },
|
||||||
|
|
||||||
// Shop
|
// Shop
|
||||||
IntegrationLoader("ShopGuiPlus") { ShopManager.register(ShopShopGuiPlus()) },
|
IntegrationLoader("ShopGuiPlus") { ShopManager.register(ShopShopGuiPlus()) },
|
||||||
|
|||||||
@@ -0,0 +1,34 @@
|
|||||||
|
package com.willfp.eco.spigot.integrations.customitems
|
||||||
|
|
||||||
|
import com.willfp.eco.core.integrations.customitems.CustomItemsWrapper
|
||||||
|
import com.willfp.eco.core.items.CustomItem
|
||||||
|
import com.willfp.eco.util.NamespacedKeyUtils
|
||||||
|
import me.arcaniax.hdb.api.HeadDatabaseAPI
|
||||||
|
import me.arcaniax.hdb.enums.CategoryEnum
|
||||||
|
import java.util.function.Predicate
|
||||||
|
|
||||||
|
class CustomItemsHeadDatabase : CustomItemsWrapper {
|
||||||
|
private val api = HeadDatabaseAPI()
|
||||||
|
|
||||||
|
override fun registerAllItems() {
|
||||||
|
for (categoryEnum in CategoryEnum.values()) {
|
||||||
|
for (head in api.getHeads(categoryEnum).toList()) {
|
||||||
|
val stack = head.head
|
||||||
|
val id = head.id
|
||||||
|
val key = NamespacedKeyUtils.create("headdb", id.lowercase());
|
||||||
|
CustomItem(
|
||||||
|
key,
|
||||||
|
Predicate { test ->
|
||||||
|
val headId = api.getItemID(test) ?: return@Predicate false
|
||||||
|
headId.equals(id, ignoreCase = true)
|
||||||
|
},
|
||||||
|
stack
|
||||||
|
).register()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getPluginName(): String {
|
||||||
|
return "HeadDatabase"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
package com.willfp.eco.spigot.integrations.customitems
|
||||||
|
|
||||||
|
import com.willfp.eco.core.EcoPlugin
|
||||||
|
import com.willfp.eco.core.integrations.customitems.CustomItemsWrapper
|
||||||
|
import com.willfp.eco.core.items.CustomItem
|
||||||
|
import com.willfp.eco.util.NamespacedKeyUtils
|
||||||
|
import dev.lone.itemsadder.api.CustomStack
|
||||||
|
import dev.lone.itemsadder.api.ItemsAdder
|
||||||
|
import org.bukkit.inventory.ItemStack
|
||||||
|
import java.util.function.Predicate
|
||||||
|
|
||||||
|
class CustomItemsItemsAdder(
|
||||||
|
private val plugin: EcoPlugin
|
||||||
|
) : CustomItemsWrapper {
|
||||||
|
override fun registerAllItems() {
|
||||||
|
plugin.scheduler.runLater({
|
||||||
|
for (item in ItemsAdder.getAllItems()) {
|
||||||
|
val stack = item.itemStack
|
||||||
|
val id = item.id
|
||||||
|
val key = NamespacedKeyUtils.create("itemsadder", id.lowercase())
|
||||||
|
CustomItem(
|
||||||
|
key,
|
||||||
|
Predicate { test: ItemStack ->
|
||||||
|
val customStack = CustomStack.byItemStack(test) ?: return@Predicate false
|
||||||
|
customStack.id.equals(id, ignoreCase = true)
|
||||||
|
},
|
||||||
|
stack
|
||||||
|
).register()
|
||||||
|
}
|
||||||
|
}, 2)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getPluginName(): String {
|
||||||
|
return "ItemsAdder"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -23,4 +23,8 @@ class CustomItemsOraxen : CustomItemsWrapper {
|
|||||||
).register()
|
).register()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun getPluginName(): String {
|
||||||
|
return "Oraxen"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -4,6 +4,7 @@ main: com.willfp.eco.spigot.EcoHandler
|
|||||||
api-version: 1.16
|
api-version: 1.16
|
||||||
authors: [Auxilor]
|
authors: [Auxilor]
|
||||||
website: willfp.com
|
website: willfp.com
|
||||||
|
load: STARTUP
|
||||||
depend:
|
depend:
|
||||||
- ProtocolLib
|
- ProtocolLib
|
||||||
softdepend:
|
softdepend:
|
||||||
@@ -21,6 +22,9 @@ softdepend:
|
|||||||
- mcMMO
|
- mcMMO
|
||||||
- CombatLogX
|
- CombatLogX
|
||||||
- ShopGuiPlus
|
- ShopGuiPlus
|
||||||
|
- ItemsAdder
|
||||||
|
- Oraxen
|
||||||
|
- HeadDatabase
|
||||||
libraries:
|
libraries:
|
||||||
- org.reflections:reflections:0.9.12
|
- org.reflections:reflections:0.9.12
|
||||||
- org.apache.maven:maven-artifact:3.0.3
|
- org.apache.maven:maven-artifact:3.0.3
|
||||||
|
|||||||
@@ -8,4 +8,8 @@ interface SkullProxy : AbstractProxy {
|
|||||||
meta: SkullMeta,
|
meta: SkullMeta,
|
||||||
base64: String
|
base64: String
|
||||||
)
|
)
|
||||||
|
|
||||||
|
fun getSkullTexture(
|
||||||
|
meta: SkullMeta
|
||||||
|
): String?
|
||||||
}
|
}
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
version = 6.6.1
|
version = 6.7.2
|
||||||
plugin-name = eco
|
plugin-name = eco
|
||||||
Reference in New Issue
Block a user