Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
732aaa3bf1 | ||
|
|
a38387be33 | ||
|
|
582f9b08f3 | ||
|
|
638367cbb2 | ||
|
|
ec35e7d779 | ||
|
|
1cc2a585d6 | ||
|
|
aa553b96d6 | ||
|
|
feb7ecee48 | ||
|
|
c0be6a12ff | ||
|
|
1dc6b651a0 | ||
|
|
3c26c02642 | ||
|
|
343508f099 | ||
|
|
76dc4948bc | ||
|
|
8fa209a981 | ||
|
|
b3a0634ad0 | ||
|
|
97d7acc0a9 | ||
|
|
ebac75b0ee | ||
|
|
02d0fa85b5 | ||
|
|
168915868c | ||
|
|
d62d598fd6 | ||
|
|
06561c5387 | ||
|
|
c9805e91b4 | ||
|
|
e3be95ca4d | ||
|
|
2e6463aed9 | ||
|
|
2501574eeb | ||
|
|
3c237fd856 | ||
|
|
7b3fd1d0c2 | ||
|
|
e599add6de | ||
|
|
1bda970f6b | ||
|
|
eb1f694905 | ||
|
|
efd3403eda | ||
|
|
08b563d528 | ||
|
|
c0547a7c34 |
8
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
8
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
blank_issues_enabled: false
|
||||||
|
contact_links:
|
||||||
|
- name: Auxilor Community Discord
|
||||||
|
url: https://discord.gg/ZcwpSsE/
|
||||||
|
about: Join the Auxilor discord to get help from support staff and the general community!
|
||||||
|
- name: The most common issues people have
|
||||||
|
url: https://github.com/Auxilor/eco/issues/78
|
||||||
|
about: Check the list of known common issues to see if your issue has already been solved
|
||||||
31
.github/ISSUE_TEMPLATE/report-a-bug.md
vendored
Normal file
31
.github/ISSUE_TEMPLATE/report-a-bug.md
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
---
|
||||||
|
name: Report a Bug
|
||||||
|
about: Report an issue with the plugin
|
||||||
|
title: ''
|
||||||
|
labels: bug
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Describe the bug**
|
||||||
|
A clear and concise description of what the bug is.
|
||||||
|
|
||||||
|
**To Reproduce**
|
||||||
|
Steps to reproduce the behavior:
|
||||||
|
1. Go to '...'
|
||||||
|
2. Click on '....'
|
||||||
|
3. Scroll down to '....'
|
||||||
|
4. See error
|
||||||
|
|
||||||
|
**Expected behavior**
|
||||||
|
A clear and concise description of what you expected to happen.
|
||||||
|
|
||||||
|
**Screenshots**
|
||||||
|
If applicable, add screenshots to help explain your problem.
|
||||||
|
|
||||||
|
**Server Information (please complete the following information):**
|
||||||
|
- Version: (output of `/ver` command)
|
||||||
|
- Version of plugin and eco (`/ver eco`, `/ver <plugin>`)
|
||||||
|
|
||||||
|
**Additional context**
|
||||||
|
Add any other context about the problem here.
|
||||||
20
.github/ISSUE_TEMPLATE/request-a-feature.md
vendored
Normal file
20
.github/ISSUE_TEMPLATE/request-a-feature.md
vendored
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
name: Request a Feature
|
||||||
|
about: Suggest an idea for this plugin
|
||||||
|
title: ''
|
||||||
|
labels: enhancement
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Is your feature request related to a problem? Please describe.**
|
||||||
|
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||||
|
|
||||||
|
**Describe the solution you'd like**
|
||||||
|
A clear and concise description of what you want to happen.
|
||||||
|
|
||||||
|
**Describe alternatives you've considered**
|
||||||
|
A clear and concise description of any alternative solutions or features you've considered.
|
||||||
|
|
||||||
|
**Additional context**
|
||||||
|
Add any other context or screenshots about the feature request here.
|
||||||
@@ -19,6 +19,7 @@ import com.willfp.eco.core.requirement.RequirementFactory;
|
|||||||
import com.willfp.eco.core.scheduling.Scheduler;
|
import com.willfp.eco.core.scheduling.Scheduler;
|
||||||
import net.kyori.adventure.platform.bukkit.BukkitAudiences;
|
import net.kyori.adventure.platform.bukkit.BukkitAudiences;
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
|
import org.bukkit.NamespacedKey;
|
||||||
import org.bukkit.entity.Entity;
|
import org.bukkit.entity.Entity;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.jetbrains.annotations.ApiStatus;
|
import org.jetbrains.annotations.ApiStatus;
|
||||||
@@ -243,4 +244,19 @@ public interface Handler {
|
|||||||
*/
|
*/
|
||||||
@NotNull
|
@NotNull
|
||||||
Entity createDummyEntity(@NotNull Location location);
|
Entity createDummyEntity(@NotNull Location location);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a {@link NamespacedKey} quickly
|
||||||
|
* <p>
|
||||||
|
* Bypasses the constructor, allowing for the creation of invalid keys,
|
||||||
|
* therefore this is considered unsafe and should only be called after
|
||||||
|
* the key has been confirmed to be valid.
|
||||||
|
*
|
||||||
|
* @param namespace The namespace.
|
||||||
|
* @param key The key.
|
||||||
|
* @return The key.
|
||||||
|
*/
|
||||||
|
@NotNull
|
||||||
|
NamespacedKey createNamespacedKey(@NotNull String namespace,
|
||||||
|
@NotNull String key);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ public class PersistentDataKey<T> {
|
|||||||
/**
|
/**
|
||||||
* The persistent data key type.
|
* The persistent data key type.
|
||||||
*/
|
*/
|
||||||
private final PersistentDataKeyType type;
|
private final PersistentDataKeyType<T> type;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new Persistent Data Key.
|
* Create a new Persistent Data Key.
|
||||||
@@ -35,7 +35,7 @@ public class PersistentDataKey<T> {
|
|||||||
* @param defaultValue The default value.
|
* @param defaultValue The default value.
|
||||||
*/
|
*/
|
||||||
public PersistentDataKey(@NotNull final NamespacedKey key,
|
public PersistentDataKey(@NotNull final NamespacedKey key,
|
||||||
@NotNull final PersistentDataKeyType type,
|
@NotNull final PersistentDataKeyType<T> type,
|
||||||
@NotNull final T defaultValue) {
|
@NotNull final T defaultValue) {
|
||||||
this.key = key;
|
this.key = key;
|
||||||
this.defaultValue = defaultValue;
|
this.defaultValue = defaultValue;
|
||||||
@@ -53,15 +53,6 @@ public class PersistentDataKey<T> {
|
|||||||
+ '}';
|
+ '}';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get all persistent data keys.
|
|
||||||
*
|
|
||||||
* @return The keys.
|
|
||||||
*/
|
|
||||||
public static Set<PersistentDataKey<?>> values() {
|
|
||||||
return Eco.getHandler().getKeyRegistry().getRegisteredKeys();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the key.
|
* Get the key.
|
||||||
*
|
*
|
||||||
@@ -85,7 +76,16 @@ public class PersistentDataKey<T> {
|
|||||||
*
|
*
|
||||||
* @return The key type.
|
* @return The key type.
|
||||||
*/
|
*/
|
||||||
public PersistentDataKeyType getType() {
|
public PersistentDataKeyType<T> getType() {
|
||||||
return this.type;
|
return this.type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get all persistent data keys.
|
||||||
|
*
|
||||||
|
* @return The keys.
|
||||||
|
*/
|
||||||
|
public static Set<PersistentDataKey<?>> values() {
|
||||||
|
return Eco.getHandler().getKeyRegistry().getRegisteredKeys();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +1,108 @@
|
|||||||
package com.willfp.eco.core.data.keys;
|
package com.willfp.eco.core.data.keys;
|
||||||
|
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* All storable data key types.
|
* All storable data key types.
|
||||||
|
*
|
||||||
|
* @param <T> The type.
|
||||||
*/
|
*/
|
||||||
public enum PersistentDataKeyType {
|
public final class PersistentDataKeyType<T> {
|
||||||
|
/**
|
||||||
|
* The registered key types.
|
||||||
|
*/
|
||||||
|
private static final List<PersistentDataKeyType<?>> VALUES = new ArrayList<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* String.
|
* String.
|
||||||
*/
|
*/
|
||||||
STRING,
|
public static final PersistentDataKeyType<String> STRING = new PersistentDataKeyType<>(String.class, "STRING");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Boolean.
|
* Boolean.
|
||||||
*/
|
*/
|
||||||
BOOLEAN,
|
public static final PersistentDataKeyType<Boolean> BOOLEAN = new PersistentDataKeyType<>(Boolean.class, "BOOLEAN");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Integer.
|
* Int.
|
||||||
*/
|
*/
|
||||||
INT,
|
public static final PersistentDataKeyType<Integer> INT = new PersistentDataKeyType<>(Integer.class, "INT");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Double.
|
* Double.
|
||||||
*/
|
*/
|
||||||
DOUBLE
|
public static final PersistentDataKeyType<Double> DOUBLE = new PersistentDataKeyType<>(Double.class, "DOUBLE");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The class of the type.
|
||||||
|
*/
|
||||||
|
private final Class<T> typeClass;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name of the key type.
|
||||||
|
*/
|
||||||
|
private final String name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the class of the type.
|
||||||
|
*
|
||||||
|
* @return The class.
|
||||||
|
*/
|
||||||
|
public Class<T> getTypeClass() {
|
||||||
|
return typeClass;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the name of the key type.
|
||||||
|
*
|
||||||
|
* @return The name.
|
||||||
|
*/
|
||||||
|
public String name() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create new PersistentDataKeyType.
|
||||||
|
*
|
||||||
|
* @param typeClass The type class.
|
||||||
|
* @param name The name.
|
||||||
|
*/
|
||||||
|
private PersistentDataKeyType(@NotNull final Class<T> typeClass,
|
||||||
|
@NotNull final String name) {
|
||||||
|
VALUES.add(this);
|
||||||
|
|
||||||
|
this.typeClass = typeClass;
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get all registered {@link PersistentDataKeyType}s.
|
||||||
|
*
|
||||||
|
* @return The registered types.
|
||||||
|
*/
|
||||||
|
@NotNull
|
||||||
|
public static PersistentDataKeyType<?>[] values() {
|
||||||
|
return VALUES.toArray(new PersistentDataKeyType[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a key type from a name.
|
||||||
|
*
|
||||||
|
* @param name The name.
|
||||||
|
* @return The type, or null if not found.
|
||||||
|
*/
|
||||||
|
@Nullable
|
||||||
|
public static PersistentDataKeyType<?> valueOf(@NotNull final String name) {
|
||||||
|
for (PersistentDataKeyType<?> type : VALUES) {
|
||||||
|
if (type.name.equalsIgnoreCase(name)) {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
package com.willfp.eco.core.integrations.placeholder;
|
package com.willfp.eco.core.integrations.placeholder;
|
||||||
|
|
||||||
|
import com.willfp.eco.core.EcoPlugin;
|
||||||
import org.apache.commons.lang.Validate;
|
import org.apache.commons.lang.Validate;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
@@ -28,12 +29,20 @@ public class PlaceholderEntry {
|
|||||||
*/
|
*/
|
||||||
private final boolean requiresPlayer;
|
private final boolean requiresPlayer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The plugin for the placeholder.
|
||||||
|
*/
|
||||||
|
@Nullable
|
||||||
|
private final EcoPlugin plugin;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a placeholder entry that doesn't require a player.
|
* Create a placeholder entry that doesn't require a player.
|
||||||
*
|
*
|
||||||
* @param identifier The identifier of the placeholder.
|
* @param identifier The identifier of the placeholder.
|
||||||
* @param function A lambda to get the result of the placeholder given a player.
|
* @param function A lambda to get the result of the placeholder given a player.
|
||||||
|
* @deprecated Specify a plugin.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public PlaceholderEntry(@NotNull final String identifier,
|
public PlaceholderEntry(@NotNull final String identifier,
|
||||||
@NotNull final Function<Player, String> function) {
|
@NotNull final Function<Player, String> function) {
|
||||||
this(identifier, function, false);
|
this(identifier, function, false);
|
||||||
@@ -45,10 +54,41 @@ public class PlaceholderEntry {
|
|||||||
* @param identifier The identifier of the placeholder.
|
* @param identifier The identifier of the placeholder.
|
||||||
* @param function A lambda to get the result of the placeholder.
|
* @param function A lambda to get the result of the placeholder.
|
||||||
* @param requiresPlayer If the placeholder requires a player.
|
* @param requiresPlayer If the placeholder requires a player.
|
||||||
|
* @deprecated Specify a plugin.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public PlaceholderEntry(@NotNull final String identifier,
|
public PlaceholderEntry(@NotNull final String identifier,
|
||||||
@NotNull final Function<Player, String> function,
|
@NotNull final Function<Player, String> function,
|
||||||
final boolean requiresPlayer) {
|
final boolean requiresPlayer) {
|
||||||
|
this(null, identifier, function, requiresPlayer);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a placeholder entry that doesn't require a player.
|
||||||
|
*
|
||||||
|
* @param plugin The plugin for the placeholder.
|
||||||
|
* @param identifier The identifier of the placeholder.
|
||||||
|
* @param function A lambda to get the result of the placeholder given a player.
|
||||||
|
*/
|
||||||
|
public PlaceholderEntry(@Nullable final EcoPlugin plugin,
|
||||||
|
@NotNull final String identifier,
|
||||||
|
@NotNull final Function<Player, String> function) {
|
||||||
|
this(plugin, identifier, function, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a placeholder entry that may require a player.
|
||||||
|
*
|
||||||
|
* @param plugin The plugin for the placeholder.
|
||||||
|
* @param identifier The identifier of the placeholder.
|
||||||
|
* @param function A lambda to get the result of the placeholder.
|
||||||
|
* @param requiresPlayer If the placeholder requires a player.
|
||||||
|
*/
|
||||||
|
public PlaceholderEntry(@Nullable final EcoPlugin plugin,
|
||||||
|
@NotNull final String identifier,
|
||||||
|
@NotNull final Function<Player, String> function,
|
||||||
|
final boolean requiresPlayer) {
|
||||||
|
this.plugin = plugin;
|
||||||
this.identifier = identifier;
|
this.identifier = identifier;
|
||||||
this.function = function;
|
this.function = function;
|
||||||
this.requiresPlayer = requiresPlayer;
|
this.requiresPlayer = requiresPlayer;
|
||||||
@@ -85,6 +125,16 @@ public class PlaceholderEntry {
|
|||||||
return identifier;
|
return identifier;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the plugin.
|
||||||
|
*
|
||||||
|
* @return The plugin.
|
||||||
|
*/
|
||||||
|
@Nullable
|
||||||
|
public EcoPlugin getPlugin() {
|
||||||
|
return plugin;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register the placeholder.
|
* Register the placeholder.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
package com.willfp.eco.core.integrations.placeholder;
|
package com.willfp.eco.core.integrations.placeholder;
|
||||||
|
|
||||||
|
import com.willfp.eco.core.Eco;
|
||||||
|
import com.willfp.eco.core.EcoPlugin;
|
||||||
import org.bukkit.entity.Player;
|
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;
|
||||||
@@ -18,7 +20,7 @@ public final class PlaceholderManager {
|
|||||||
/**
|
/**
|
||||||
* All registered placeholders.
|
* All registered placeholders.
|
||||||
*/
|
*/
|
||||||
private static final Map<String, PlaceholderEntry> REGISTERED_PLACEHOLDERS = new HashMap<>();
|
private static final Map<EcoPlugin, Map<String, PlaceholderEntry>> REGISTERED_PLACEHOLDERS = new HashMap<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* All registered placeholder integrations.
|
* All registered placeholder integrations.
|
||||||
@@ -41,8 +43,11 @@ public final 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.remove(expansion.getIdentifier());
|
EcoPlugin plugin = expansion.getPlugin() == null ? Eco.getHandler().getEcoPlugin() : expansion.getPlugin();
|
||||||
REGISTERED_PLACEHOLDERS.put(expansion.getIdentifier(), expansion);
|
Map<String, PlaceholderEntry> pluginPlaceholders = REGISTERED_PLACEHOLDERS
|
||||||
|
.getOrDefault(plugin, new HashMap<>());
|
||||||
|
pluginPlaceholders.put(expansion.getIdentifier(), expansion);
|
||||||
|
REGISTERED_PLACEHOLDERS.put(plugin, pluginPlaceholders);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -51,10 +56,36 @@ public final class PlaceholderManager {
|
|||||||
* @param player The player to get the result from.
|
* @param player The player to get the result from.
|
||||||
* @param identifier The placeholder identifier.
|
* @param identifier The placeholder identifier.
|
||||||
* @return The value of the placeholder.
|
* @return The value of the placeholder.
|
||||||
|
* @deprecated Specify a plugin to get the result from.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public static String getResult(@Nullable final Player player,
|
public static String getResult(@Nullable final Player player,
|
||||||
@NotNull final String identifier) {
|
@NotNull final String identifier) {
|
||||||
PlaceholderEntry entry = REGISTERED_PLACEHOLDERS.get(identifier.toLowerCase());
|
return getResult(player, identifier, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the result of a placeholder with respect to a player.
|
||||||
|
*
|
||||||
|
* @param player The player to get the result from.
|
||||||
|
* @param identifier The placeholder identifier.
|
||||||
|
* @param plugin The plugin for the placeholder.
|
||||||
|
* @return The value of the placeholder.
|
||||||
|
*/
|
||||||
|
public static String getResult(@Nullable final Player player,
|
||||||
|
@NotNull final String identifier,
|
||||||
|
@Nullable final EcoPlugin plugin) {
|
||||||
|
EcoPlugin owner = plugin == null ? Eco.getHandler().getEcoPlugin() : plugin;
|
||||||
|
PlaceholderEntry entry = REGISTERED_PLACEHOLDERS.getOrDefault(owner, new HashMap<>()).get(identifier.toLowerCase());
|
||||||
|
|
||||||
|
if (entry == null && plugin != null) {
|
||||||
|
PlaceholderEntry alternate = REGISTERED_PLACEHOLDERS.getOrDefault(Eco.getHandler().getEcoPlugin(), new HashMap<>())
|
||||||
|
.get(identifier.toLowerCase());
|
||||||
|
if (alternate != null) {
|
||||||
|
entry = alternate;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (entry == null) {
|
if (entry == null) {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
package com.willfp.eco.core.items;
|
package com.willfp.eco.core.items;
|
||||||
|
|
||||||
|
import com.willfp.eco.core.fast.FastItemStack;
|
||||||
import com.willfp.eco.core.items.args.LookupArgParser;
|
import com.willfp.eco.core.items.args.LookupArgParser;
|
||||||
import com.willfp.eco.core.items.provider.ItemProvider;
|
import com.willfp.eco.core.items.provider.ItemProvider;
|
||||||
import com.willfp.eco.core.recipe.parts.EmptyTestableItem;
|
import com.willfp.eco.core.recipe.parts.EmptyTestableItem;
|
||||||
@@ -13,6 +14,7 @@ import org.bukkit.Material;
|
|||||||
import org.bukkit.NamespacedKey;
|
import org.bukkit.NamespacedKey;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.bukkit.inventory.meta.ItemMeta;
|
import org.bukkit.inventory.meta.ItemMeta;
|
||||||
|
import org.jetbrains.annotations.ApiStatus;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
@@ -34,6 +36,11 @@ public final class Items {
|
|||||||
*/
|
*/
|
||||||
private static final Map<NamespacedKey, TestableItem> REGISTRY = new ConcurrentHashMap<>();
|
private static final Map<NamespacedKey, TestableItem> REGISTRY = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cached custom item lookups, using {@link FastItemStack#hashCode()}.
|
||||||
|
*/
|
||||||
|
private static final Map<Integer, TestableItem> CACHE = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* All item providers.
|
* All item providers.
|
||||||
*/
|
*/
|
||||||
@@ -276,12 +283,7 @@ public final class Items {
|
|||||||
* @return If is recipe.
|
* @return If is recipe.
|
||||||
*/
|
*/
|
||||||
public static boolean isCustomItem(@NotNull final ItemStack itemStack) {
|
public static boolean isCustomItem(@NotNull final ItemStack itemStack) {
|
||||||
for (TestableItem item : REGISTRY.values()) {
|
return getCustomItem(itemStack) != null;
|
||||||
if (item.matches(itemStack)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -292,12 +294,30 @@ public final class Items {
|
|||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
public static CustomItem getCustomItem(@NotNull final ItemStack itemStack) {
|
public static CustomItem getCustomItem(@NotNull final ItemStack itemStack) {
|
||||||
|
int hash = FastItemStack.wrap(itemStack).hashCode();
|
||||||
|
TestableItem cached = CACHE.get(hash);
|
||||||
|
if (cached != null) {
|
||||||
|
return getOrWrap(cached);
|
||||||
|
} else {
|
||||||
|
CACHE.remove(hash);
|
||||||
|
}
|
||||||
|
|
||||||
|
TestableItem match = null;
|
||||||
|
|
||||||
for (TestableItem item : REGISTRY.values()) {
|
for (TestableItem item : REGISTRY.values()) {
|
||||||
if (item.matches(itemStack)) {
|
if (item.matches(itemStack)) {
|
||||||
return getOrWrap(item);
|
match = item;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
|
||||||
|
if (match == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
CACHE.put(hash, match);
|
||||||
|
|
||||||
|
return getOrWrap(match);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -331,6 +351,14 @@ public final class Items {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clear the lookup cache.
|
||||||
|
*/
|
||||||
|
@ApiStatus.Internal
|
||||||
|
public static void clearCache() {
|
||||||
|
CACHE.clear();
|
||||||
|
}
|
||||||
|
|
||||||
private Items() {
|
private Items() {
|
||||||
throw new UnsupportedOperationException("This is a utility class and cannot be instantiated");
|
throw new UnsupportedOperationException("This is a utility class and cannot be instantiated");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,36 +0,0 @@
|
|||||||
package com.willfp.eco.core.items.args;
|
|
||||||
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.inventory.ItemStack;
|
|
||||||
import org.bukkit.inventory.meta.ItemMeta;
|
|
||||||
import org.jetbrains.annotations.ApiStatus;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
import org.jetbrains.annotations.Nullable;
|
|
||||||
|
|
||||||
import java.util.function.Predicate;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Parse leather armor colors.
|
|
||||||
*
|
|
||||||
* @deprecated Moved to internals.
|
|
||||||
*/
|
|
||||||
@Deprecated(since = "6.16.0", forRemoval = true)
|
|
||||||
@ApiStatus.ScheduledForRemoval(inVersion = "6.18.2")
|
|
||||||
public class ColorArgParser implements LookupArgParser {
|
|
||||||
/**
|
|
||||||
* Instantiate arg parser.
|
|
||||||
*/
|
|
||||||
public ColorArgParser() {
|
|
||||||
Bukkit.getLogger().severe("Instantiation of class marked for removal! (" + this.getClass().getName() + "), this will throw an error in a future release!");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public @Nullable Predicate<ItemStack> parseArguments(@NotNull final String[] args,
|
|
||||||
@NotNull final ItemMeta meta) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
static {
|
|
||||||
Bukkit.getLogger().severe("Referencing a class marked for removal! (" + ColorArgParser.class.getName() + "), this will throw an error in the next release!");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
package com.willfp.eco.core.items.args;
|
|
||||||
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.inventory.ItemStack;
|
|
||||||
import org.bukkit.inventory.meta.ItemMeta;
|
|
||||||
import org.jetbrains.annotations.ApiStatus;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
import org.jetbrains.annotations.Nullable;
|
|
||||||
|
|
||||||
import java.util.function.Predicate;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Parse custom model data.
|
|
||||||
*
|
|
||||||
* @deprecated Moved to internals.
|
|
||||||
*/
|
|
||||||
@Deprecated(since = "6.16.0", forRemoval = true)
|
|
||||||
@ApiStatus.ScheduledForRemoval(inVersion = "6.18.2")
|
|
||||||
public class CustomModelDataArgParser implements LookupArgParser {
|
|
||||||
/**
|
|
||||||
* Instantiate arg parser.
|
|
||||||
*/
|
|
||||||
public CustomModelDataArgParser() {
|
|
||||||
Bukkit.getLogger().severe("Instantiation of class marked for removal! (" + this.getClass().getName() + "), this will throw an error in a future release!");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public @Nullable Predicate<ItemStack> parseArguments(@NotNull final String[] args,
|
|
||||||
@NotNull final ItemMeta meta) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
static {
|
|
||||||
Bukkit.getLogger().severe("Referencing a class marked for removal! (" + CustomModelDataArgParser.class.getName() + "), this will throw an error in the next release!");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
package com.willfp.eco.core.items.args;
|
|
||||||
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.inventory.ItemStack;
|
|
||||||
import org.bukkit.inventory.meta.ItemMeta;
|
|
||||||
import org.jetbrains.annotations.ApiStatus;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
import org.jetbrains.annotations.Nullable;
|
|
||||||
|
|
||||||
import java.util.function.Predicate;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Parses enchantment arguments.
|
|
||||||
*
|
|
||||||
* @deprecated Moved to internals.
|
|
||||||
*/
|
|
||||||
@Deprecated(since = "6.16.0", forRemoval = true)
|
|
||||||
@ApiStatus.ScheduledForRemoval(inVersion = "6.18.2")
|
|
||||||
public class EnchantmentArgParser implements LookupArgParser {
|
|
||||||
/**
|
|
||||||
* Instantiate arg parser.
|
|
||||||
*/
|
|
||||||
public EnchantmentArgParser() {
|
|
||||||
Bukkit.getLogger().severe("Instantiation of class marked for removal! (" + this.getClass().getName() + "), this will throw an error in a future release!");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public @Nullable Predicate<ItemStack> parseArguments(@NotNull final String[] args,
|
|
||||||
@NotNull final ItemMeta meta) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
static {
|
|
||||||
Bukkit.getLogger().severe("Referencing a class marked for removal! (" + EnchantmentArgParser.class.getName() + "), this will throw an error in the next release!");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
package com.willfp.eco.core.items.args;
|
|
||||||
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.inventory.ItemStack;
|
|
||||||
import org.bukkit.inventory.meta.ItemMeta;
|
|
||||||
import org.jetbrains.annotations.ApiStatus;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
import org.jetbrains.annotations.Nullable;
|
|
||||||
|
|
||||||
import java.util.function.Predicate;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Parse skull textures.
|
|
||||||
*
|
|
||||||
* @deprecated Moved to internals.
|
|
||||||
*/
|
|
||||||
@Deprecated(since = "6.16.0", forRemoval = true)
|
|
||||||
@ApiStatus.ScheduledForRemoval(inVersion = "6.18.2")
|
|
||||||
public class TextureArgParser implements LookupArgParser {
|
|
||||||
/**
|
|
||||||
* Instantiate arg parser.
|
|
||||||
*/
|
|
||||||
public TextureArgParser() {
|
|
||||||
Bukkit.getLogger().severe("Instantiation of class marked for removal! (" + this.getClass().getName() + "), this will throw an error in a future release!");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public @Nullable Predicate<ItemStack> parseArguments(@NotNull final String[] args,
|
|
||||||
@NotNull final ItemMeta meta) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
static {
|
|
||||||
Bukkit.getLogger().severe("Referencing a class marked for removal! (" + TextureArgParser.class.getName() + "), this will throw an error in the next release!");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -6,6 +6,7 @@ import com.willfp.eco.core.EcoPlugin;
|
|||||||
import com.willfp.eco.core.items.Items;
|
import com.willfp.eco.core.items.Items;
|
||||||
import com.willfp.eco.core.recipe.recipes.CraftingRecipe;
|
import com.willfp.eco.core.recipe.recipes.CraftingRecipe;
|
||||||
import com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe;
|
import com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe;
|
||||||
|
import com.willfp.eco.util.NamespacedKeyUtils;
|
||||||
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;
|
||||||
@@ -58,7 +59,10 @@ public final class Recipes {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (key.getKey().contains("_displayed")) {
|
if (key.getKey().contains("_displayed")) {
|
||||||
NamespacedKey otherKey = new NamespacedKey(key.getNamespace(), key.getKey().replace("_displayed", ""));
|
NamespacedKey otherKey = NamespacedKeyUtils.create(
|
||||||
|
key.getNamespace(),
|
||||||
|
key.getKey().replace("_displayed", "")
|
||||||
|
);
|
||||||
|
|
||||||
return RECIPES.get(otherKey);
|
return RECIPES.get(otherKey);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
package com.willfp.eco.util;
|
package com.willfp.eco.util;
|
||||||
|
|
||||||
|
import com.willfp.eco.core.Eco;
|
||||||
import org.bukkit.NamespacedKey;
|
import org.bukkit.NamespacedKey;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
import java.util.Objects;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Utilities / API methods for {@link NamespacedKey}s.
|
* Utilities / API methods for {@link NamespacedKey}s.
|
||||||
*/
|
*/
|
||||||
@@ -17,7 +16,7 @@ public final class NamespacedKeyUtils {
|
|||||||
*/
|
*/
|
||||||
@NotNull
|
@NotNull
|
||||||
public static NamespacedKey createEcoKey(@NotNull final String string) {
|
public static NamespacedKey createEcoKey(@NotNull final String string) {
|
||||||
return Objects.requireNonNull(NamespacedKey.fromString("eco:" + string));
|
return NamespacedKeyUtils.create("eco", string);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -30,7 +29,28 @@ public final class NamespacedKeyUtils {
|
|||||||
@NotNull
|
@NotNull
|
||||||
public static NamespacedKey create(@NotNull final String namespace,
|
public static NamespacedKey create(@NotNull final String namespace,
|
||||||
@NotNull final String key) {
|
@NotNull final String key) {
|
||||||
return Objects.requireNonNull(NamespacedKey.fromString(namespace + ":" + key));
|
return Eco.getHandler().createNamespacedKey(
|
||||||
|
namespace,
|
||||||
|
key
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a NamespacedKey from a string.
|
||||||
|
* <p>
|
||||||
|
* Preferred over {@link NamespacedKey#fromString(String)} for performance reasons.
|
||||||
|
*
|
||||||
|
* @param string The string.
|
||||||
|
* @return The key.
|
||||||
|
*/
|
||||||
|
@NotNull
|
||||||
|
public static NamespacedKey fromString(@NotNull final String string) {
|
||||||
|
int index = string.indexOf(":");
|
||||||
|
|
||||||
|
return NamespacedKeyUtils.create(
|
||||||
|
string.substring(0, index),
|
||||||
|
string.substring(index + 1)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private NamespacedKeyUtils() {
|
private NamespacedKeyUtils() {
|
||||||
|
|||||||
@@ -8,4 +8,5 @@ dependencies {
|
|||||||
compileOnly 'net.kyori:adventure-text-minimessage:4.1.0-SNAPSHOT'
|
compileOnly 'net.kyori:adventure-text-minimessage:4.1.0-SNAPSHOT'
|
||||||
compileOnly 'net.kyori:adventure-platform-bukkit:4.0.0'
|
compileOnly 'net.kyori:adventure-platform-bukkit:4.0.0'
|
||||||
compileOnly 'com.google.guava:guava:31.0.1-jre'
|
compileOnly 'com.google.guava:guava:31.0.1-jre'
|
||||||
|
compileOnly 'org.objenesis:objenesis:3.2'
|
||||||
}
|
}
|
||||||
@@ -20,7 +20,7 @@ open class EcoUpdatableJSONConfig(
|
|||||||
fun update() {
|
fun update() {
|
||||||
super.clearCache()
|
super.clearCache()
|
||||||
this.init(configFile)
|
this.init(configFile)
|
||||||
val newConfig = configInJar
|
val newConfig = configInJar ?: return
|
||||||
if (newConfig.getKeys(true) == this.getKeys(true)) {
|
if (newConfig.getKeys(true) == this.getKeys(true)) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -43,9 +43,9 @@ open class EcoUpdatableJSONConfig(
|
|||||||
this.save()
|
this.save()
|
||||||
}
|
}
|
||||||
|
|
||||||
private val configInJar: YamlConfiguration
|
private val configInJar: YamlConfiguration?
|
||||||
get() {
|
get() {
|
||||||
val newIn = this.source.getResourceAsStream(resourcePath) ?: throw NullPointerException("$name is null?")
|
val newIn = this.source.getResourceAsStream(resourcePath) ?: return null
|
||||||
val reader = BufferedReader(InputStreamReader(newIn, StandardCharsets.UTF_8))
|
val reader = BufferedReader(InputStreamReader(newIn, StandardCharsets.UTF_8))
|
||||||
val newConfig = YamlConfiguration()
|
val newConfig = YamlConfiguration()
|
||||||
newConfig.load(reader)
|
newConfig.load(reader)
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ class EcoUpdatableYamlConfig(
|
|||||||
fun update() {
|
fun update() {
|
||||||
super.clearCache()
|
super.clearCache()
|
||||||
this.handle.load(configFile)
|
this.handle.load(configFile)
|
||||||
val newConfig = configInJar
|
val newConfig = configInJar ?: return
|
||||||
if (newConfig.getKeys(true) == this.handle.getKeys(true)) {
|
if (newConfig.getKeys(true) == this.handle.getKeys(true)) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -43,9 +43,9 @@ class EcoUpdatableYamlConfig(
|
|||||||
this.handle.save(configFile)
|
this.handle.save(configFile)
|
||||||
}
|
}
|
||||||
|
|
||||||
private val configInJar: YamlConfiguration
|
private val configInJar: YamlConfiguration?
|
||||||
get() {
|
get() {
|
||||||
val newIn = source.getResourceAsStream(resourcePath) ?: throw NullPointerException("$name is null?")
|
val newIn = source.getResourceAsStream(resourcePath) ?: return null
|
||||||
val reader = BufferedReader(InputStreamReader(newIn, StandardCharsets.UTF_8))
|
val reader = BufferedReader(InputStreamReader(newIn, StandardCharsets.UTF_8))
|
||||||
val newConfig = YamlConfiguration()
|
val newConfig = YamlConfiguration()
|
||||||
newConfig.load(reader)
|
newConfig.load(reader)
|
||||||
|
|||||||
@@ -73,12 +73,10 @@ open class EcoDropQueue(val player: Player) : InternalDropQueue {
|
|||||||
world.dropItem(location, drop!!).velocity = Vector()
|
world.dropItem(location, drop!!).velocity = Vector()
|
||||||
}
|
}
|
||||||
if (xp > 0) {
|
if (xp > 0) {
|
||||||
val event = PlayerExpChangeEvent(player, xp)
|
|
||||||
Bukkit.getPluginManager().callEvent(event)
|
|
||||||
val orb =
|
val orb =
|
||||||
world.spawnEntity(player.location.add(0.0, 0.2, 0.0), EntityType.EXPERIENCE_ORB) as ExperienceOrb
|
world.spawnEntity(player.location.add(0.0, 0.2, 0.0), EntityType.EXPERIENCE_ORB) as ExperienceOrb
|
||||||
orb.velocity = Vector(0, 0, 0)
|
orb.velocity = Vector(0, 0, 0)
|
||||||
orb.experience = event.amount
|
orb.experience = xp
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for (drop in items) {
|
for (drop in items) {
|
||||||
@@ -94,4 +92,4 @@ open class EcoDropQueue(val player: Player) : InternalDropQueue {
|
|||||||
init {
|
init {
|
||||||
location = player.location
|
location = player.location
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,10 +2,11 @@ package com.willfp.eco.internal.factory
|
|||||||
|
|
||||||
import com.willfp.eco.core.EcoPlugin
|
import com.willfp.eco.core.EcoPlugin
|
||||||
import com.willfp.eco.core.factory.NamespacedKeyFactory
|
import com.willfp.eco.core.factory.NamespacedKeyFactory
|
||||||
|
import com.willfp.eco.util.NamespacedKeyUtils
|
||||||
import org.bukkit.NamespacedKey
|
import org.bukkit.NamespacedKey
|
||||||
|
|
||||||
class EcoNamespacedKeyFactory(private val plugin: EcoPlugin) : NamespacedKeyFactory {
|
class EcoNamespacedKeyFactory(private val plugin: EcoPlugin) : NamespacedKeyFactory {
|
||||||
override fun create(key: String): NamespacedKey {
|
override fun create(key: String): NamespacedKey {
|
||||||
return NamespacedKey(plugin, key)
|
return NamespacedKeyUtils.create(plugin.name, key)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
package com.willfp.eco.internal.fast
|
||||||
|
|
||||||
|
import org.bukkit.NamespacedKey
|
||||||
|
import org.objenesis.ObjenesisStd
|
||||||
|
|
||||||
|
interface InternalNamespacedKeyFactory {
|
||||||
|
fun create(namespace: String, key: String): NamespacedKey
|
||||||
|
}
|
||||||
|
|
||||||
|
class FastInternalNamespacedKeyFactory : InternalNamespacedKeyFactory {
|
||||||
|
private val creator = ObjenesisStd().getInstantiatorOf(NamespacedKey::class.java)
|
||||||
|
private val namespaceField = NamespacedKey::class.java.getDeclaredField("namespace")
|
||||||
|
.apply { isAccessible = true }
|
||||||
|
private val keyField = NamespacedKey::class.java.getDeclaredField("key")
|
||||||
|
.apply { isAccessible = true }
|
||||||
|
|
||||||
|
|
||||||
|
override fun create(namespace: String, key: String): NamespacedKey {
|
||||||
|
val namespacedKey = creator.newInstance()
|
||||||
|
keyField.set(namespacedKey, key.lowercase())
|
||||||
|
namespaceField.set(namespacedKey, namespace.lowercase())
|
||||||
|
return namespacedKey
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class SafeInternalNamespacedKeyFactory : InternalNamespacedKeyFactory {
|
||||||
|
override fun create(namespace: String, key: String): NamespacedKey {
|
||||||
|
@Suppress("DEPRECATION")
|
||||||
|
return NamespacedKey(namespace, key)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -32,7 +32,7 @@ class PlaceholderIntegrationPAPI(private val plugin: EcoPlugin) : PlaceholderExp
|
|||||||
player: Player?,
|
player: Player?,
|
||||||
identifier: String
|
identifier: String
|
||||||
): String {
|
): String {
|
||||||
return PlaceholderManager.getResult(player, identifier)
|
return PlaceholderManager.getResult(player, identifier, plugin)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun registerIntegration() {
|
override fun registerIntegration() {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package com.willfp.eco.internal.items
|
|||||||
|
|
||||||
import com.willfp.eco.core.fast.FastItemStack
|
import com.willfp.eco.core.fast.FastItemStack
|
||||||
import com.willfp.eco.core.items.args.LookupArgParser
|
import com.willfp.eco.core.items.args.LookupArgParser
|
||||||
import org.bukkit.NamespacedKey
|
import com.willfp.eco.util.NamespacedKeyUtils
|
||||||
import org.bukkit.enchantments.Enchantment
|
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.EnchantmentStorageMeta
|
||||||
@@ -20,7 +20,7 @@ class ArgParserEnchantment : LookupArgParser {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
val enchant = Enchantment.getByKey(NamespacedKey.minecraft(argSplit[0].lowercase()))
|
val enchant = Enchantment.getByKey(NamespacedKeyUtils.create("minecraft", argSplit[0]))
|
||||||
val level = argSplit[1].toIntOrNull()
|
val level = argSplit[1].toIntOrNull()
|
||||||
|
|
||||||
if (enchant != null && level != null) {
|
if (enchant != null && level != null) {
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package com.willfp.eco.internal.spigot.proxy.v1_16_R3.fast
|
package com.willfp.eco.internal.spigot.proxy.v1_16_R3.fast
|
||||||
|
|
||||||
import com.willfp.eco.internal.fast.EcoFastItemStack
|
import com.willfp.eco.internal.fast.EcoFastItemStack
|
||||||
|
import com.willfp.eco.util.NamespacedKeyUtils
|
||||||
import com.willfp.eco.util.StringUtils
|
import com.willfp.eco.util.StringUtils
|
||||||
import net.minecraft.server.v1_16_R3.Item
|
import net.minecraft.server.v1_16_R3.Item
|
||||||
import net.minecraft.server.v1_16_R3.ItemEnchantedBook
|
import net.minecraft.server.v1_16_R3.ItemEnchantedBook
|
||||||
@@ -11,7 +12,6 @@ import net.minecraft.server.v1_16_R3.NBTTagList
|
|||||||
import net.minecraft.server.v1_16_R3.NBTTagString
|
import net.minecraft.server.v1_16_R3.NBTTagString
|
||||||
import org.bukkit.craftbukkit.v1_16_R3.inventory.CraftItemStack
|
import org.bukkit.craftbukkit.v1_16_R3.inventory.CraftItemStack
|
||||||
import org.bukkit.craftbukkit.v1_16_R3.util.CraftMagicNumbers
|
import org.bukkit.craftbukkit.v1_16_R3.util.CraftMagicNumbers
|
||||||
import org.bukkit.craftbukkit.v1_16_R3.util.CraftNamespacedKey
|
|
||||||
import org.bukkit.enchantments.Enchantment
|
import org.bukkit.enchantments.Enchantment
|
||||||
import org.bukkit.inventory.ItemFlag
|
import org.bukkit.inventory.ItemFlag
|
||||||
import kotlin.experimental.and
|
import kotlin.experimental.and
|
||||||
@@ -29,7 +29,7 @@ class NMSFastItemStack(itemStack: org.bukkit.inventory.ItemStack) : EcoFastItemS
|
|||||||
val compound = base as NBTTagCompound
|
val compound = base as NBTTagCompound
|
||||||
val key = compound.getString("id")
|
val key = compound.getString("id")
|
||||||
val level: Int = ('\uffff'.code.toShort() and compound.getShort("lvl")).toInt()
|
val level: Int = ('\uffff'.code.toShort() and compound.getShort("lvl")).toInt()
|
||||||
val found = Enchantment.getByKey(CraftNamespacedKey.fromStringOrNull(key))
|
val found = Enchantment.getByKey(NamespacedKeyUtils.fromString(key))
|
||||||
if (found != null) {
|
if (found != null) {
|
||||||
foundEnchantments[found] = level
|
foundEnchantments[found] = level
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package com.willfp.eco.internal.spigot.proxy.v1_17_R1.fast
|
package com.willfp.eco.internal.spigot.proxy.v1_17_R1.fast
|
||||||
|
|
||||||
import com.willfp.eco.internal.fast.EcoFastItemStack
|
import com.willfp.eco.internal.fast.EcoFastItemStack
|
||||||
|
import com.willfp.eco.util.NamespacedKeyUtils
|
||||||
import com.willfp.eco.util.StringUtils
|
import com.willfp.eco.util.StringUtils
|
||||||
import net.minecraft.nbt.CompoundTag
|
import net.minecraft.nbt.CompoundTag
|
||||||
import net.minecraft.nbt.ListTag
|
import net.minecraft.nbt.ListTag
|
||||||
@@ -11,7 +12,6 @@ import net.minecraft.world.item.ItemStack
|
|||||||
import net.minecraft.world.item.Items
|
import net.minecraft.world.item.Items
|
||||||
import org.bukkit.craftbukkit.v1_17_R1.inventory.CraftItemStack
|
import org.bukkit.craftbukkit.v1_17_R1.inventory.CraftItemStack
|
||||||
import org.bukkit.craftbukkit.v1_17_R1.util.CraftMagicNumbers
|
import org.bukkit.craftbukkit.v1_17_R1.util.CraftMagicNumbers
|
||||||
import org.bukkit.craftbukkit.v1_17_R1.util.CraftNamespacedKey
|
|
||||||
import org.bukkit.enchantments.Enchantment
|
import org.bukkit.enchantments.Enchantment
|
||||||
import org.bukkit.inventory.ItemFlag
|
import org.bukkit.inventory.ItemFlag
|
||||||
import kotlin.experimental.and
|
import kotlin.experimental.and
|
||||||
@@ -31,7 +31,7 @@ class NMSFastItemStack(itemStack: org.bukkit.inventory.ItemStack) : EcoFastItemS
|
|||||||
val compound = base as CompoundTag
|
val compound = base as CompoundTag
|
||||||
val key = compound.getString("id")
|
val key = compound.getString("id")
|
||||||
val level = ('\uffff'.code.toShort() and compound.getShort("lvl")).toInt()
|
val level = ('\uffff'.code.toShort() and compound.getShort("lvl")).toInt()
|
||||||
val found = Enchantment.getByKey(CraftNamespacedKey.fromStringOrNull(key))
|
val found = Enchantment.getByKey(NamespacedKeyUtils.fromString(key))
|
||||||
if (found != null) {
|
if (found != null) {
|
||||||
foundEnchantments[found] = level
|
foundEnchantments[found] = level
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package com.willfp.eco.internal.spigot.proxy.v1_18_R1.fast
|
package com.willfp.eco.internal.spigot.proxy.v1_18_R1.fast
|
||||||
|
|
||||||
import com.willfp.eco.internal.fast.EcoFastItemStack
|
import com.willfp.eco.internal.fast.EcoFastItemStack
|
||||||
|
import com.willfp.eco.util.NamespacedKeyUtils
|
||||||
import com.willfp.eco.util.StringUtils
|
import com.willfp.eco.util.StringUtils
|
||||||
import net.minecraft.nbt.CompoundTag
|
import net.minecraft.nbt.CompoundTag
|
||||||
import net.minecraft.nbt.ListTag
|
import net.minecraft.nbt.ListTag
|
||||||
@@ -11,7 +12,6 @@ import net.minecraft.world.item.ItemStack
|
|||||||
import net.minecraft.world.item.Items
|
import net.minecraft.world.item.Items
|
||||||
import org.bukkit.craftbukkit.v1_18_R1.inventory.CraftItemStack
|
import org.bukkit.craftbukkit.v1_18_R1.inventory.CraftItemStack
|
||||||
import org.bukkit.craftbukkit.v1_18_R1.util.CraftMagicNumbers
|
import org.bukkit.craftbukkit.v1_18_R1.util.CraftMagicNumbers
|
||||||
import org.bukkit.craftbukkit.v1_18_R1.util.CraftNamespacedKey
|
|
||||||
import org.bukkit.enchantments.Enchantment
|
import org.bukkit.enchantments.Enchantment
|
||||||
import org.bukkit.inventory.ItemFlag
|
import org.bukkit.inventory.ItemFlag
|
||||||
import kotlin.experimental.and
|
import kotlin.experimental.and
|
||||||
@@ -32,7 +32,7 @@ class NMSFastItemStack(itemStack: org.bukkit.inventory.ItemStack) : EcoFastItemS
|
|||||||
val compound = base as CompoundTag
|
val compound = base as CompoundTag
|
||||||
val key = compound.getString("id")
|
val key = compound.getString("id")
|
||||||
val level = ('\uffff'.code.toShort() and compound.getShort("lvl")).toInt()
|
val level = ('\uffff'.code.toShort() and compound.getShort("lvl")).toInt()
|
||||||
val found = Enchantment.getByKey(CraftNamespacedKey.fromStringOrNull(key))
|
val found = Enchantment.getByKey(NamespacedKeyUtils.fromString(key))
|
||||||
if (found != null) {
|
if (found != null) {
|
||||||
foundEnchantments[found] = level
|
foundEnchantments[found] = level
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ dependencies {
|
|||||||
compileOnly 'com.gmail.nossr50.mcMMO:mcMMO:2.1.202'
|
compileOnly 'com.gmail.nossr50.mcMMO:mcMMO:2.1.202'
|
||||||
compileOnly 'me.clip:placeholderapi:2.10.10'
|
compileOnly 'me.clip:placeholderapi:2.10.10'
|
||||||
compileOnly 'com.github.oraxen:oraxen:bd81ace154'
|
compileOnly 'com.github.oraxen:oraxen:bd81ace154'
|
||||||
|
compileOnly 'com.github.Ssomar-Developement:ExecutableItems:master-SNAPSHOT'
|
||||||
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.4.7'
|
||||||
compileOnly 'com.arcaniax:HeadDatabase-API:1.3.0'
|
compileOnly 'com.arcaniax:HeadDatabase-API:1.3.0'
|
||||||
|
|||||||
@@ -14,6 +14,9 @@ import com.willfp.eco.internal.extensions.EcoExtensionLoader
|
|||||||
import com.willfp.eco.internal.factory.EcoMetadataValueFactory
|
import com.willfp.eco.internal.factory.EcoMetadataValueFactory
|
||||||
import com.willfp.eco.internal.factory.EcoNamespacedKeyFactory
|
import com.willfp.eco.internal.factory.EcoNamespacedKeyFactory
|
||||||
import com.willfp.eco.internal.factory.EcoRunnableFactory
|
import com.willfp.eco.internal.factory.EcoRunnableFactory
|
||||||
|
import com.willfp.eco.internal.fast.FastInternalNamespacedKeyFactory
|
||||||
|
import com.willfp.eco.internal.fast.InternalNamespacedKeyFactory
|
||||||
|
import com.willfp.eco.internal.fast.SafeInternalNamespacedKeyFactory
|
||||||
import com.willfp.eco.internal.gui.EcoGUIFactory
|
import com.willfp.eco.internal.gui.EcoGUIFactory
|
||||||
import com.willfp.eco.internal.integrations.PlaceholderIntegrationPAPI
|
import com.willfp.eco.internal.integrations.PlaceholderIntegrationPAPI
|
||||||
import com.willfp.eco.internal.logging.EcoLogger
|
import com.willfp.eco.internal.logging.EcoLogger
|
||||||
@@ -29,6 +32,7 @@ import com.willfp.eco.internal.spigot.proxy.DummyEntityProxy
|
|||||||
import com.willfp.eco.internal.spigot.proxy.FastItemStackFactoryProxy
|
import com.willfp.eco.internal.spigot.proxy.FastItemStackFactoryProxy
|
||||||
import net.kyori.adventure.platform.bukkit.BukkitAudiences
|
import net.kyori.adventure.platform.bukkit.BukkitAudiences
|
||||||
import org.bukkit.Location
|
import org.bukkit.Location
|
||||||
|
import org.bukkit.NamespacedKey
|
||||||
import org.bukkit.entity.Entity
|
import org.bukkit.entity.Entity
|
||||||
import org.bukkit.inventory.ItemStack
|
import org.bukkit.inventory.ItemStack
|
||||||
import java.util.logging.Logger
|
import java.util.logging.Logger
|
||||||
@@ -43,6 +47,9 @@ class EcoHandler : EcoSpigotPlugin(), Handler {
|
|||||||
if (this.configYml.getBool("mysql.enabled"))
|
if (this.configYml.getBool("mysql.enabled"))
|
||||||
MySQLDataHandler(this) else YamlDataHandler(this)
|
MySQLDataHandler(this) else YamlDataHandler(this)
|
||||||
)
|
)
|
||||||
|
private val keyFactory: InternalNamespacedKeyFactory? =
|
||||||
|
if (this.configYml.getBool("use-safer-namespacedkey-creation"))
|
||||||
|
SafeInternalNamespacedKeyFactory() else FastInternalNamespacedKeyFactory()
|
||||||
|
|
||||||
override fun createScheduler(plugin: EcoPlugin): EcoScheduler {
|
override fun createScheduler(plugin: EcoPlugin): EcoScheduler {
|
||||||
return EcoScheduler(plugin)
|
return EcoScheduler(plugin)
|
||||||
@@ -147,4 +154,9 @@ class EcoHandler : EcoSpigotPlugin(), Handler {
|
|||||||
override fun createDummyEntity(location: Location): Entity {
|
override fun createDummyEntity(location: Location): Entity {
|
||||||
return getProxy(DummyEntityProxy::class.java).createDummyEntity(location)
|
return getProxy(DummyEntityProxy::class.java).createDummyEntity(location)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun createNamespacedKey(namespace: String, key: String): NamespacedKey {
|
||||||
|
@Suppress("DEPRECATION")
|
||||||
|
return keyFactory?.create(namespace, key) ?: NamespacedKey(namespace, key)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -84,6 +84,8 @@ import com.willfp.eco.internal.spigot.integrations.antigrief.AntigriefSuperiorSk
|
|||||||
import com.willfp.eco.internal.spigot.integrations.antigrief.AntigriefTowny
|
import com.willfp.eco.internal.spigot.integrations.antigrief.AntigriefTowny
|
||||||
import com.willfp.eco.internal.spigot.integrations.antigrief.AntigriefWorldGuard
|
import com.willfp.eco.internal.spigot.integrations.antigrief.AntigriefWorldGuard
|
||||||
import com.willfp.eco.internal.spigot.integrations.customentities.CustomEntitiesMythicMobs
|
import com.willfp.eco.internal.spigot.integrations.customentities.CustomEntitiesMythicMobs
|
||||||
|
import com.willfp.eco.internal.spigot.integrations.customitems.CustomItemsCustomCrafting
|
||||||
|
import com.willfp.eco.internal.spigot.integrations.customitems.CustomItemsExecutableItems
|
||||||
import com.willfp.eco.internal.spigot.integrations.customitems.CustomItemsHeadDatabase
|
import com.willfp.eco.internal.spigot.integrations.customitems.CustomItemsHeadDatabase
|
||||||
import com.willfp.eco.internal.spigot.integrations.customitems.CustomItemsItemsAdder
|
import com.willfp.eco.internal.spigot.integrations.customitems.CustomItemsItemsAdder
|
||||||
import com.willfp.eco.internal.spigot.integrations.customitems.CustomItemsOraxen
|
import com.willfp.eco.internal.spigot.integrations.customitems.CustomItemsOraxen
|
||||||
@@ -190,6 +192,11 @@ abstract class EcoSpigotPlugin : EcoPlugin(
|
|||||||
CollatedRunnable(this)
|
CollatedRunnable(this)
|
||||||
DropManager.update(this)
|
DropManager.update(this)
|
||||||
ProfileSaver(this)
|
ProfileSaver(this)
|
||||||
|
this.scheduler.runTimer(
|
||||||
|
{ Items.clearCache() },
|
||||||
|
this.configYml.getInt("item-cache-ttl").toLong(),
|
||||||
|
this.configYml.getInt("item-cache-ttl").toLong()
|
||||||
|
)
|
||||||
this.scheduler.runTimer(
|
this.scheduler.runTimer(
|
||||||
{ clearFrames() },
|
{ clearFrames() },
|
||||||
this.configYml.getInt("display-frame-ttl").toLong(),
|
this.configYml.getInt("display-frame-ttl").toLong(),
|
||||||
@@ -244,6 +251,8 @@ abstract class EcoSpigotPlugin : EcoPlugin(
|
|||||||
IntegrationLoader("Oraxen") { CustomItemsManager.register(CustomItemsOraxen()) },
|
IntegrationLoader("Oraxen") { CustomItemsManager.register(CustomItemsOraxen()) },
|
||||||
IntegrationLoader("ItemsAdder") { CustomItemsManager.register(CustomItemsItemsAdder()) },
|
IntegrationLoader("ItemsAdder") { CustomItemsManager.register(CustomItemsItemsAdder()) },
|
||||||
IntegrationLoader("HeadDatabase") { CustomItemsManager.register(CustomItemsHeadDatabase(this)) },
|
IntegrationLoader("HeadDatabase") { CustomItemsManager.register(CustomItemsHeadDatabase(this)) },
|
||||||
|
IntegrationLoader("ExecutableItems") { CustomItemsManager.register(CustomItemsExecutableItems()) },
|
||||||
|
IntegrationLoader("CustomCrafting") { CustomItemsManager.register(CustomItemsCustomCrafting()) },
|
||||||
|
|
||||||
// Shop
|
// Shop
|
||||||
IntegrationLoader("ShopGUIPlus") { ShopManager.register(ShopShopGuiPlus()) },
|
IntegrationLoader("ShopGUIPlus") { ShopManager.register(ShopShopGuiPlus()) },
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import com.comphenix.protocol.events.PacketContainer
|
|||||||
import com.comphenix.protocol.events.PacketEvent
|
import com.comphenix.protocol.events.PacketEvent
|
||||||
import com.google.common.util.concurrent.ThreadFactoryBuilder
|
import com.google.common.util.concurrent.ThreadFactoryBuilder
|
||||||
import com.willfp.eco.core.AbstractPacketAdapter
|
import com.willfp.eco.core.AbstractPacketAdapter
|
||||||
|
import com.willfp.eco.core.Eco
|
||||||
import com.willfp.eco.core.EcoPlugin
|
import com.willfp.eco.core.EcoPlugin
|
||||||
import com.willfp.eco.core.display.Display
|
import com.willfp.eco.core.display.Display
|
||||||
import com.willfp.eco.core.fast.FastItemStack
|
import com.willfp.eco.core.fast.FastItemStack
|
||||||
@@ -47,17 +48,10 @@ class PacketWindowItems(plugin: EcoPlugin) : AbstractPacketAdapter(plugin, Packe
|
|||||||
handleRateLimit(player)
|
handleRateLimit(player)
|
||||||
|
|
||||||
if (usingAsync(player)) {
|
if (usingAsync(player)) {
|
||||||
|
val newPacket = packet.deepClone()
|
||||||
|
|
||||||
executor.execute {
|
executor.execute {
|
||||||
runCatching {
|
runCatchingWithLogs { modifyAndSend(newPacket, itemStacks, windowId, player) }
|
||||||
modifyAndSend(packet.shallowClone(), itemStacks, windowId, player)
|
|
||||||
}.onFailure {
|
|
||||||
if (this.getPlugin().configYml.getBool("async-display.log-errors")) {
|
|
||||||
this.getPlugin().logger.warning(
|
|
||||||
"Error happened in async processing! Disable async display (/plugins/eco/config.yml)" +
|
|
||||||
"if this is a frequent issue. (Remember to disable ratelimit and emergency too)"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
modifyPacket(packet, itemStacks, windowId, player)
|
modifyPacket(packet, itemStacks, windowId, player)
|
||||||
@@ -82,7 +76,7 @@ class PacketWindowItems(plugin: EcoPlugin) : AbstractPacketAdapter(plugin, Packe
|
|||||||
modifyPacket(packet, itemStacks, windowId, player)
|
modifyPacket(packet, itemStacks, windowId, player)
|
||||||
ignorePacketList.add(player.name)
|
ignorePacketList.add(player.name)
|
||||||
this.getPlugin().scheduler.run {
|
this.getPlugin().scheduler.run {
|
||||||
ProtocolLibrary.getProtocolManager().sendServerPacket(player, packet)
|
runCatchingWithLogs { ProtocolLibrary.getProtocolManager().sendServerPacket(player, packet) }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -169,4 +163,15 @@ class PacketWindowItems(plugin: EcoPlugin) : AbstractPacketAdapter(plugin, Packe
|
|||||||
|
|
||||||
return itemStacks
|
return itemStacks
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private inline fun <T> runCatchingWithLogs(toRun: () -> T): Result<T> {
|
||||||
|
return runCatching { toRun() }.onFailure {
|
||||||
|
if (Eco.getHandler().ecoPlugin.configYml.getBool("async-display.log-errors")) {
|
||||||
|
Eco.getHandler().ecoPlugin.logger.warning(
|
||||||
|
"Error happened in async processing! Disable async display (/plugins/eco/config.yml)" +
|
||||||
|
"if this is a frequent issue. (Remember to disable ratelimit and emergency too)"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,38 @@
|
|||||||
|
package com.willfp.eco.internal.spigot.integrations.customitems
|
||||||
|
|
||||||
|
import com.willfp.eco.core.integrations.customitems.CustomItemsWrapper
|
||||||
|
import com.willfp.eco.core.items.CustomItem
|
||||||
|
import com.willfp.eco.core.items.Items
|
||||||
|
import com.willfp.eco.core.items.TestableItem
|
||||||
|
import com.willfp.eco.core.items.provider.ItemProvider
|
||||||
|
import com.willfp.eco.util.NamespacedKeyUtils
|
||||||
|
import me.wolfyscript.utilities.util.NamespacedKey
|
||||||
|
import me.wolfyscript.utilities.util.Registry
|
||||||
|
import org.bukkit.inventory.ItemStack
|
||||||
|
import java.util.function.Predicate
|
||||||
|
class CustomItemsCustomCrafting: CustomItemsWrapper {
|
||||||
|
override fun registerAllItems() {
|
||||||
|
Items.registerItemProvider(CustomCraftingProvider())
|
||||||
|
}
|
||||||
|
override fun getPluginName(): String {
|
||||||
|
return "CustomCrafting"
|
||||||
|
}
|
||||||
|
private class CustomCraftingProvider : ItemProvider("customcrafting") {
|
||||||
|
override fun provideForKey(key: String): TestableItem? {
|
||||||
|
val nKey = key.replace("customcrafting:", "", ignoreCase = true)
|
||||||
|
val itemKey = NamespacedKey("customcrafting", nKey)
|
||||||
|
val item = Registry.CUSTOM_ITEMS.get(itemKey) ?: return null
|
||||||
|
val namespacedKey = NamespacedKeyUtils.create("customcrafting", key)
|
||||||
|
val stack = item.create(1)
|
||||||
|
return CustomItem(
|
||||||
|
namespacedKey,
|
||||||
|
Predicate { test: ItemStack ->
|
||||||
|
val customStack = me.wolfyscript.utilities.api.inventory.custom_items.CustomItem.getByItemStack(test) ?: return@Predicate false
|
||||||
|
val iKey = customStack.namespacedKey ?: return@Predicate false
|
||||||
|
iKey.equals(key)
|
||||||
|
},
|
||||||
|
stack
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
package com.willfp.eco.internal.spigot.integrations.customitems
|
||||||
|
|
||||||
|
import com.ssomar.score.api.ExecutableItemsAPI
|
||||||
|
import com.willfp.eco.core.integrations.customitems.CustomItemsWrapper
|
||||||
|
import com.willfp.eco.core.items.CustomItem
|
||||||
|
import com.willfp.eco.core.items.Items
|
||||||
|
import com.willfp.eco.core.items.TestableItem
|
||||||
|
import com.willfp.eco.core.items.provider.ItemProvider
|
||||||
|
import com.willfp.eco.util.NamespacedKeyUtils
|
||||||
|
import org.bukkit.inventory.ItemStack
|
||||||
|
import java.util.function.Predicate
|
||||||
|
class CustomItemsExecutableItems: CustomItemsWrapper {
|
||||||
|
override fun registerAllItems() {
|
||||||
|
Items.registerItemProvider(ExecutableItemsProvider())
|
||||||
|
}
|
||||||
|
override fun getPluginName(): String {
|
||||||
|
return "ExecutableItems"
|
||||||
|
}
|
||||||
|
private class ExecutableItemsProvider : ItemProvider("executableitems") {
|
||||||
|
override fun provideForKey(key: String): TestableItem? {
|
||||||
|
val item = ExecutableItemsAPI.getExecutableItem(key) ?: return null
|
||||||
|
val namespacedKey = NamespacedKeyUtils.create("executableitems", key)
|
||||||
|
return CustomItem(
|
||||||
|
namespacedKey,
|
||||||
|
Predicate { test: ItemStack ->
|
||||||
|
val customStack = ExecutableItemsAPI.getExecutableItemConfig(test) ?: return@Predicate false
|
||||||
|
customStack.id.equals(key, ignoreCase = true)
|
||||||
|
},
|
||||||
|
item
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -12,7 +12,7 @@ private val goToZero = Crunch.compileExpression("0")
|
|||||||
|
|
||||||
fun evaluateExpression(expression: String, player: Player?): Double {
|
fun evaluateExpression(expression: String, player: Player?): Double {
|
||||||
val placeholderValues = PlaceholderManager.findPlaceholdersIn(expression)
|
val placeholderValues = PlaceholderManager.findPlaceholdersIn(expression)
|
||||||
.map { PlaceholderManager.getResult(player, expression) }
|
.map { PlaceholderManager.translatePlaceholders(expression, player) }
|
||||||
.map { runCatching { FastNumberParsing.parseDouble(it) }.getOrDefault(0.0) }
|
.map { runCatching { FastNumberParsing.parseDouble(it) }.getOrDefault(0.0) }
|
||||||
.toDoubleArray()
|
.toDoubleArray()
|
||||||
|
|
||||||
|
|||||||
@@ -41,6 +41,18 @@ use-display-frame: true
|
|||||||
# that display frames will be cleared / deleted.
|
# that display frames will be cleared / deleted.
|
||||||
display-frame-ttl: 17
|
display-frame-ttl: 17
|
||||||
|
|
||||||
|
# Time to live for storing hashes against custom item keys. Increasing this value
|
||||||
|
# can benefit performance under load (e.g. from ShopGUI+ sells) but can increase
|
||||||
|
# memory use.
|
||||||
|
item-cache-ttl: 6000
|
||||||
|
|
||||||
|
# The default bukkit NamespacedKey creation can cause decent amounts of lag under
|
||||||
|
# load due to the use of regex validation in the constructor. eco has its own system
|
||||||
|
# to create NamespacedKeys, however it can be unsafe as it skips most validation checks.
|
||||||
|
# If you encounter any bugs with this, then enable this option - however it will come
|
||||||
|
# at a performance penalty.
|
||||||
|
use-safer-namespacedkey-creation: false
|
||||||
|
|
||||||
# Window items packets have the option to be run asynchronously. This may cause
|
# Window items packets have the option to be run asynchronously. This may cause
|
||||||
# some bugs and is considered experimental, however it has been tested without
|
# some bugs and is considered experimental, however it has been tested without
|
||||||
# any apparent issues. Enable this if performance is absolutely crucial or if you
|
# any apparent issues. Enable this if performance is absolutely crucial or if you
|
||||||
@@ -64,14 +76,14 @@ async-display:
|
|||||||
# If emergency async should be used.
|
# If emergency async should be used.
|
||||||
enabled: true
|
enabled: true
|
||||||
# Below this TPS value, emergency async display will be used.
|
# Below this TPS value, emergency async display will be used.
|
||||||
cutoff: 18
|
cutoff: 17
|
||||||
|
|
||||||
# If players with a large amount of display packets should have their processing
|
# If players with a large amount of display packets should have their processing
|
||||||
# done asynchronously. This will help if a player is trying to crash the server
|
# done asynchronously. This will help if a player is trying to crash the server
|
||||||
# by overloading the display system.
|
# by overloading the display system.
|
||||||
ratelimit:
|
ratelimit:
|
||||||
# If rate limit async display should be used.
|
# If rate limit async display should be used.
|
||||||
enabled: true
|
enabled: false
|
||||||
# The amount of window items packets per timeframe needed to enable async display
|
# The amount of window items packets per timeframe needed to enable async display
|
||||||
# for a specified player.
|
# for a specified player.
|
||||||
cutoff: 4
|
cutoff: 4
|
||||||
|
|||||||
@@ -40,6 +40,8 @@ softdepend:
|
|||||||
- CrashClaim
|
- CrashClaim
|
||||||
- DecentHolograms
|
- DecentHolograms
|
||||||
- MythicMobs
|
- MythicMobs
|
||||||
|
- CustomCrafting
|
||||||
|
- ExecutableItems
|
||||||
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'
|
||||||
@@ -54,4 +56,5 @@ libraries:
|
|||||||
- 'mysql:mysql-connector-java:8.0.25'
|
- 'mysql:mysql-connector-java:8.0.25'
|
||||||
- 'com.google.guava:guava:31.0.1-jre'
|
- 'com.google.guava:guava:31.0.1-jre'
|
||||||
- 'com.zaxxer:HikariCP:5.0.0'
|
- 'com.zaxxer:HikariCP:5.0.0'
|
||||||
- 'org.apache.commons:commons-lang3:3.0'
|
- 'org.apache.commons:commons-lang3:3.0'
|
||||||
|
- 'org.objenesis:objenesis:3.2'
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
version = 6.19.0
|
version = 6.21.0
|
||||||
plugin-name = eco
|
plugin-name = eco
|
||||||
kotlin.code.style = official
|
kotlin.code.style = official
|
||||||
BIN
lib/SCore-1.6.0.9.jar
Normal file
BIN
lib/SCore-1.6.0.9.jar
Normal file
Binary file not shown.
Reference in New Issue
Block a user