Compare commits
44 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d028cf5bf3 | ||
|
|
fdd1581ce3 | ||
|
|
3d07e10543 | ||
|
|
c851e35347 | ||
|
|
4cbb33b1fd | ||
|
|
2ff1458772 | ||
|
|
e71ad9f034 | ||
|
|
196a651ab3 | ||
|
|
253a8c24ad | ||
|
|
ac265d0260 | ||
|
|
ad861b10bb | ||
|
|
db5b7f89f6 | ||
|
|
2c33ce25c0 | ||
|
|
9c3ca429c9 | ||
|
|
70e294501a | ||
|
|
65a0a0ecc7 | ||
|
|
d4431e7569 | ||
|
|
a6191b0870 | ||
|
|
5eecef83ee | ||
|
|
82a02f3738 | ||
|
|
804142799b | ||
|
|
e1de9b9ab3 | ||
|
|
cc56343041 | ||
|
|
69d28e8bc2 | ||
|
|
6878a74724 | ||
|
|
ebc76bba76 | ||
|
|
378218b7da | ||
|
|
e053514b94 | ||
|
|
341a30e6da | ||
|
|
70eb6d4420 | ||
|
|
aa368909ae | ||
|
|
606a54bcf8 | ||
|
|
7f8fb3d87b | ||
|
|
e97d454ff6 | ||
|
|
109b9aa3f3 | ||
|
|
4a90385b27 | ||
|
|
0edd50832c | ||
|
|
46415268b7 | ||
|
|
b652dbad2d | ||
|
|
50550d077a | ||
|
|
60c3b58a33 | ||
|
|
7216d0b09f | ||
|
|
97eeea8d48 | ||
|
|
82061ee6a3 |
@@ -158,8 +158,12 @@ Here's a list of some (not all) of the features of eco:
|
||||
|
||||
<h1 align="center">
|
||||
<br>
|
||||
<a href="http://gamersupps.gg/discount/Auxilor?afmc=Auxilor" target="_blank">
|
||||
<img src="https://i.imgur.com/uFDpBAC.png" alt="supps banner">
|
||||
</a>
|
||||
<a href="https://dedimc.promo/Auxilor" target="_blank">
|
||||
<img src="https://i.imgur.com/zdDLhFA.png" alt="dedimc banner">
|
||||
</a>
|
||||
<br>
|
||||
</h1>
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package com.willfp.eco.core.config.interfaces;
|
||||
|
||||
import com.willfp.eco.util.StringUtils;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
@@ -165,7 +166,9 @@ public interface Config extends Cloneable {
|
||||
* @return The found value, or an empty string if not found.
|
||||
*/
|
||||
@NotNull
|
||||
String getString(@NotNull String path);
|
||||
default String getString(@NotNull String path) {
|
||||
return getString(path, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a string from config.
|
||||
@@ -175,8 +178,36 @@ public interface Config extends Cloneable {
|
||||
* @return The found value, or an empty string if not found.
|
||||
*/
|
||||
@NotNull
|
||||
default String getString(@NotNull String path,
|
||||
boolean format) {
|
||||
return this.getString(path, format, StringUtils.FormatOption.WITH_PLACEHOLDERS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a string from config.
|
||||
*
|
||||
* @param path The key to fetch the value from.
|
||||
* @param option The format option.
|
||||
* @return The found value, or an empty string if not found.
|
||||
*/
|
||||
@NotNull
|
||||
default String getString(@NotNull String path,
|
||||
@NotNull final StringUtils.FormatOption option) {
|
||||
return this.getString(path, true, option);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a string from config.
|
||||
*
|
||||
* @param path The key to fetch the value from.
|
||||
* @param format If the string should be formatted.
|
||||
* @param option The format option.
|
||||
* @return The found value, or an empty string if not found.
|
||||
*/
|
||||
@NotNull
|
||||
String getString(@NotNull String path,
|
||||
boolean format);
|
||||
boolean format,
|
||||
@NotNull StringUtils.FormatOption option);
|
||||
|
||||
/**
|
||||
* Get a string from config.
|
||||
@@ -185,7 +216,9 @@ public interface Config extends Cloneable {
|
||||
* @return The found value, or null if not found.
|
||||
*/
|
||||
@Nullable
|
||||
String getStringOrNull(@NotNull String path);
|
||||
default String getStringOrNull(@NotNull String path) {
|
||||
return getStringOrNull(path, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a string from config.
|
||||
@@ -195,8 +228,36 @@ public interface Config extends Cloneable {
|
||||
* @return The found value, or null if not found.
|
||||
*/
|
||||
@Nullable
|
||||
default String getStringOrNull(@NotNull String path,
|
||||
boolean format) {
|
||||
return this.getStringOrNull(path, format, StringUtils.FormatOption.WITH_PLACEHOLDERS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a string from config.
|
||||
*
|
||||
* @param path The key to fetch the value from.
|
||||
* @param option The format option.
|
||||
* @return The found value, or null if not found.
|
||||
*/
|
||||
@Nullable
|
||||
default String getStringOrNull(@NotNull String path,
|
||||
@NotNull StringUtils.FormatOption option) {
|
||||
return this.getStringOrNull(path, true, option);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a string from config.
|
||||
*
|
||||
* @param path The key to fetch the value from.
|
||||
* @param format If the string should be formatted.
|
||||
* @param option The format option.
|
||||
* @return The found value, or null if not found.
|
||||
*/
|
||||
@Nullable
|
||||
String getStringOrNull(@NotNull String path,
|
||||
boolean format);
|
||||
boolean format,
|
||||
@NotNull StringUtils.FormatOption option);
|
||||
|
||||
/**
|
||||
* Get a list of strings from config.
|
||||
@@ -207,7 +268,9 @@ public interface Config extends Cloneable {
|
||||
* @return The found value, or a blank {@link java.util.ArrayList} if not found.
|
||||
*/
|
||||
@NotNull
|
||||
List<String> getStrings(@NotNull String path);
|
||||
default List<String> getStrings(@NotNull String path) {
|
||||
return getStrings(path, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a list of strings from config.
|
||||
@@ -217,8 +280,36 @@ public interface Config extends Cloneable {
|
||||
* @return The found value, or a blank {@link java.util.ArrayList} if not found.
|
||||
*/
|
||||
@NotNull
|
||||
default List<String> getStrings(@NotNull String path,
|
||||
boolean format) {
|
||||
return this.getStrings(path, format, StringUtils.FormatOption.WITH_PLACEHOLDERS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a list of strings from config.
|
||||
*
|
||||
* @param path The key to fetch the value from.
|
||||
* @param option The format option.
|
||||
* @return The found value, or a blank {@link java.util.ArrayList} if not found.
|
||||
*/
|
||||
@Nullable
|
||||
default List<String> getStrings(@NotNull String path,
|
||||
@NotNull StringUtils.FormatOption option) {
|
||||
return getStrings(path, true, option);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a list of strings from config.
|
||||
*
|
||||
* @param path The key to fetch the value from.
|
||||
* @param format If the strings should be formatted.
|
||||
* @param option The option.
|
||||
* @return The found value, or a blank {@link java.util.ArrayList} if not found.
|
||||
*/
|
||||
@NotNull
|
||||
List<String> getStrings(@NotNull String path,
|
||||
boolean format);
|
||||
boolean format,
|
||||
@NotNull StringUtils.FormatOption option);
|
||||
|
||||
/**
|
||||
* Get a list of strings from config.
|
||||
@@ -227,7 +318,9 @@ public interface Config extends Cloneable {
|
||||
* @return The found value, or null if not found.
|
||||
*/
|
||||
@Nullable
|
||||
List<String> getStringsOrNull(@NotNull String path);
|
||||
default List<String> getStringsOrNull(@NotNull String path) {
|
||||
return getStringsOrNull(path, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a list of strings from config.
|
||||
@@ -237,8 +330,36 @@ public interface Config extends Cloneable {
|
||||
* @return The found value, or null if not found.
|
||||
*/
|
||||
@Nullable
|
||||
default List<String> getStringsOrNull(@NotNull String path,
|
||||
boolean format) {
|
||||
return getStringsOrNull(path, format, StringUtils.FormatOption.WITH_PLACEHOLDERS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a list of strings from config.
|
||||
*
|
||||
* @param path The key to fetch the value from.
|
||||
* @param option The format option.
|
||||
* @return The found value, or null if not found.
|
||||
*/
|
||||
@Nullable
|
||||
default List<String> getStringsOrNull(@NotNull String path,
|
||||
@NotNull StringUtils.FormatOption option) {
|
||||
return getStringsOrNull(path, true, option);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a list of strings from config.
|
||||
*
|
||||
* @param path The key to fetch the value from.
|
||||
* @param format If the strings should be formatted.
|
||||
* @param option The format option.
|
||||
* @return The found value, or null if not found.
|
||||
*/
|
||||
@Nullable
|
||||
List<String> getStringsOrNull(@NotNull String path,
|
||||
boolean format);
|
||||
boolean format,
|
||||
@NotNull StringUtils.FormatOption option);
|
||||
|
||||
/**
|
||||
* Get a decimal from config.
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package com.willfp.eco.core.config.wrapper;
|
||||
|
||||
import com.willfp.eco.core.config.interfaces.Config;
|
||||
import com.willfp.eco.util.StringUtils;
|
||||
import lombok.Getter;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
@@ -125,48 +126,33 @@ public abstract class ConfigWrapper<T extends Config> implements Config {
|
||||
return handle.getBoolsOrNull(path);
|
||||
}
|
||||
|
||||
@Override
|
||||
public @NotNull String getString(@NotNull final String path) {
|
||||
return handle.getString(path);
|
||||
}
|
||||
|
||||
@Override
|
||||
public @NotNull String getString(@NotNull final String path,
|
||||
final boolean format) {
|
||||
return handle.getString(path, format);
|
||||
}
|
||||
|
||||
@Override
|
||||
public @Nullable String getStringOrNull(@NotNull final String path) {
|
||||
return handle.getStringOrNull(path);
|
||||
final boolean format,
|
||||
@NotNull final StringUtils.FormatOption option) {
|
||||
return handle.getString(path, format, option);
|
||||
}
|
||||
|
||||
@Override
|
||||
public @Nullable String getStringOrNull(@NotNull final String path,
|
||||
final boolean format) {
|
||||
return handle.getStringOrNull(path, format);
|
||||
}
|
||||
|
||||
@Override
|
||||
public @NotNull List<String> getStrings(@NotNull final String path) {
|
||||
return handle.getStrings(path);
|
||||
final boolean format,
|
||||
@NotNull final StringUtils.FormatOption option) {
|
||||
return handle.getStringOrNull(path, format, option);
|
||||
}
|
||||
|
||||
@Override
|
||||
public @NotNull List<String> getStrings(@NotNull final String path,
|
||||
final boolean format) {
|
||||
return handle.getStrings(path, format);
|
||||
}
|
||||
|
||||
@Override
|
||||
public @Nullable List<String> getStringsOrNull(@NotNull final String path) {
|
||||
return handle.getStringsOrNull(path);
|
||||
final boolean format,
|
||||
@NotNull final StringUtils.FormatOption option) {
|
||||
return handle.getStrings(path, format, option);
|
||||
}
|
||||
|
||||
@Override
|
||||
public @Nullable List<String> getStringsOrNull(@NotNull final String path,
|
||||
final boolean format) {
|
||||
return handle.getStringsOrNull(path, format);
|
||||
final boolean format,
|
||||
@NotNull final StringUtils.FormatOption option) {
|
||||
return handle.getStringsOrNull(path, format, option);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -71,10 +71,6 @@ public class Display {
|
||||
*/
|
||||
public ItemStack display(@NotNull final ItemStack itemStack,
|
||||
@Nullable final Player player) {
|
||||
if (!itemStack.hasItemMeta()) {
|
||||
return itemStack; // return early if there's no customization of the item
|
||||
}
|
||||
|
||||
Map<String, Object[]> pluginVarArgs = new HashMap<>();
|
||||
|
||||
for (DisplayPriority priority : DisplayPriority.values()) {
|
||||
@@ -139,10 +135,6 @@ public class Display {
|
||||
unfinalize(itemStack);
|
||||
}
|
||||
|
||||
if (!itemStack.hasItemMeta()) {
|
||||
return itemStack;
|
||||
}
|
||||
|
||||
ItemMeta meta = itemStack.getItemMeta();
|
||||
|
||||
if (meta == null) {
|
||||
|
||||
@@ -16,7 +16,6 @@ import org.jetbrains.annotations.NotNull;
|
||||
*
|
||||
* @see ArmorChangeEvent
|
||||
*/
|
||||
@Deprecated
|
||||
public class ArmorEquipEvent extends PlayerEvent {
|
||||
/**
|
||||
* Bukkit parity.
|
||||
|
||||
@@ -3,6 +3,7 @@ package com.willfp.eco.core.fast;
|
||||
import com.willfp.eco.core.Eco;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.enchantments.Enchantment;
|
||||
import org.bukkit.inventory.ItemFlag;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
@@ -10,6 +11,7 @@ import org.jetbrains.annotations.Nullable;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* FastItemStack contains methods to modify and read items faster than in default bukkit.
|
||||
@@ -47,6 +49,51 @@ public interface FastItemStack {
|
||||
*/
|
||||
List<String> getLore();
|
||||
|
||||
|
||||
/**
|
||||
* Set the rework penalty.
|
||||
*
|
||||
* @param cost The rework penalty to set.
|
||||
*/
|
||||
void setRepairCost(int cost);
|
||||
|
||||
/**
|
||||
* Get the rework penalty.
|
||||
* .
|
||||
*
|
||||
* @return The rework penalty found on the item.
|
||||
*/
|
||||
int getRepairCost();
|
||||
|
||||
/**
|
||||
* Add ItemFlags.
|
||||
*
|
||||
* @param hideFlags The flags.
|
||||
*/
|
||||
void addItemFlags(ItemFlag... hideFlags);
|
||||
|
||||
/**
|
||||
* Remove ItemFlags.
|
||||
*
|
||||
* @param hideFlags The flags.
|
||||
*/
|
||||
void removeItemFlags(ItemFlag... hideFlags);
|
||||
|
||||
/**
|
||||
* Get the ItemFlags.
|
||||
*
|
||||
* @return The flags.
|
||||
*/
|
||||
Set<ItemFlag> getItemFlags();
|
||||
|
||||
/**
|
||||
* Test the item for a flag.
|
||||
*
|
||||
* @param flag The flag.
|
||||
* @return If the flag is present.
|
||||
*/
|
||||
boolean hasItemFlag(ItemFlag flag);
|
||||
|
||||
/**
|
||||
* Get the Bukkit ItemStack again.
|
||||
*
|
||||
|
||||
@@ -2,12 +2,10 @@ package com.willfp.eco.core.gui;
|
||||
|
||||
import com.willfp.eco.core.gui.menu.MenuBuilder;
|
||||
import com.willfp.eco.core.gui.slot.SlotBuilder;
|
||||
import org.bukkit.entity.Player;
|
||||
import com.willfp.eco.core.gui.slot.functional.SlotProvider;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.util.function.Function;
|
||||
|
||||
/**
|
||||
* Internal component used by {@link com.willfp.eco.core.gui.menu.Menu#builder(int)}
|
||||
* and {@link com.willfp.eco.core.gui.slot.Slot#builder(ItemStack)}.
|
||||
@@ -19,7 +17,7 @@ public interface GUIFactory {
|
||||
* @param provider The provider.
|
||||
* @return The builder.
|
||||
*/
|
||||
SlotBuilder createSlotBuilder(@NotNull Function<Player, ItemStack> provider);
|
||||
SlotBuilder createSlotBuilder(@NotNull SlotProvider provider);
|
||||
|
||||
/**
|
||||
* Create menu builder.
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
package com.willfp.eco.core.gui.menu;
|
||||
|
||||
import org.bukkit.event.inventory.InventoryCloseEvent;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* Interface to run on menu close.
|
||||
*/
|
||||
@FunctionalInterface
|
||||
public interface CloseHandler {
|
||||
/**
|
||||
* Performs this operation on the given arguments.
|
||||
*
|
||||
* @param event The close event.
|
||||
* @param menu The menu.
|
||||
*/
|
||||
void handle(@NotNull InventoryCloseEvent event,
|
||||
@NotNull Menu menu);
|
||||
}
|
||||
@@ -2,9 +2,16 @@ package com.willfp.eco.core.gui.menu;
|
||||
|
||||
import com.willfp.eco.core.Eco;
|
||||
import com.willfp.eco.core.gui.slot.Slot;
|
||||
import org.bukkit.NamespacedKey;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.inventory.Inventory;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.bukkit.persistence.PersistentDataType;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* GUI version of {@link Inventory}.
|
||||
@@ -44,6 +51,51 @@ public interface Menu {
|
||||
*/
|
||||
Inventory open(@NotNull Player player);
|
||||
|
||||
/**
|
||||
* Get captive items.
|
||||
*
|
||||
* @param player The player.
|
||||
* @return The items.
|
||||
*/
|
||||
List<ItemStack> getCaptiveItems(@NotNull Player player);
|
||||
|
||||
/**
|
||||
* Write data.
|
||||
*
|
||||
* @param player The player.
|
||||
* @param key The key.
|
||||
* @param type The type.
|
||||
* @param value The value.
|
||||
* @param <T> The type.
|
||||
* @param <Z> The type.
|
||||
*/
|
||||
<T, Z> void writeData(@NotNull Player player,
|
||||
@NotNull NamespacedKey key,
|
||||
@NotNull PersistentDataType<T, Z> type,
|
||||
@NotNull Z value);
|
||||
|
||||
/**
|
||||
* Read data.
|
||||
*
|
||||
* @param player The player.
|
||||
* @param key The key.
|
||||
* @param type The type.
|
||||
* @param <T> The type.
|
||||
* @param <Z> The type.
|
||||
* @return The data.
|
||||
*/
|
||||
@Nullable <T, Z> T readData(@NotNull Player player,
|
||||
@NotNull NamespacedKey key,
|
||||
@NotNull PersistentDataType<T, Z> type);
|
||||
|
||||
/**
|
||||
* Get all data keys for a player.
|
||||
*
|
||||
* @param player The player.
|
||||
* @return The keys.
|
||||
*/
|
||||
Set<NamespacedKey> getKeys(@NotNull Player player);
|
||||
|
||||
/**
|
||||
* Create a builder with a given amount of rows.
|
||||
*
|
||||
|
||||
@@ -31,6 +31,14 @@ public interface MenuBuilder {
|
||||
int column,
|
||||
@NotNull Slot slot);
|
||||
|
||||
/**
|
||||
* Run function to modify the builder.
|
||||
*
|
||||
* @param modifier The modifier.
|
||||
* @return The builder.
|
||||
*/
|
||||
MenuBuilder modfiy(@NotNull Consumer<MenuBuilder> modifier);
|
||||
|
||||
/**
|
||||
* Set the menu mask.
|
||||
*
|
||||
@@ -45,7 +53,18 @@ public interface MenuBuilder {
|
||||
* @param action The handler.
|
||||
* @return The builder.
|
||||
*/
|
||||
MenuBuilder onClose(@NotNull Consumer<InventoryCloseEvent> action);
|
||||
default MenuBuilder onClose(@NotNull Consumer<InventoryCloseEvent> action) {
|
||||
onClose((event, menu) -> action.accept(event));
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the menu close handler.
|
||||
*
|
||||
* @param action The handler.
|
||||
* @return The builder.
|
||||
*/
|
||||
MenuBuilder onClose(@NotNull CloseHandler action);
|
||||
|
||||
/**
|
||||
* Build the menu.
|
||||
|
||||
@@ -7,6 +7,7 @@ import org.bukkit.Material;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
@@ -39,35 +40,46 @@ public class FillerMask {
|
||||
*/
|
||||
public FillerMask(@NotNull final Material material,
|
||||
@NotNull final String... pattern) {
|
||||
if (material == Material.AIR) {
|
||||
throw new IllegalArgumentException("Material cannot be air!");
|
||||
this(new MaskMaterials(material), pattern);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new filler mask.
|
||||
*
|
||||
* @param materials The mask materials.
|
||||
* @param pattern The pattern.
|
||||
*/
|
||||
public FillerMask(@NotNull final MaskMaterials materials,
|
||||
@NotNull final String... pattern) {
|
||||
if (Arrays.stream(materials.materials()).anyMatch(material -> material == Material.AIR)) {
|
||||
throw new IllegalArgumentException("Materials cannot be air!");
|
||||
}
|
||||
|
||||
mask = ListUtils.create2DList(6, 9);
|
||||
|
||||
ItemStack itemStack = new ItemStackBuilder(material)
|
||||
.setDisplayName("&r")
|
||||
.build();
|
||||
for (int i = 0; i < materials.materials().length; i++) {
|
||||
ItemStack itemStack = new ItemStackBuilder(materials.materials()[i])
|
||||
.setDisplayName("&r")
|
||||
.build();
|
||||
|
||||
int row = 0;
|
||||
int row = 0;
|
||||
|
||||
for (String patternRow : pattern) {
|
||||
int column = 0;
|
||||
if (patternRow.length() != 9) {
|
||||
throw new IllegalArgumentException("Invalid amount of columns in pattern!");
|
||||
}
|
||||
for (char c : patternRow.toCharArray()) {
|
||||
if (c == '0') {
|
||||
mask.get(row).set(column, null);
|
||||
} else if (c == '1') {
|
||||
mask.get(row).set(column, new FillerSlot(itemStack));
|
||||
} else {
|
||||
throw new IllegalArgumentException("Invalid character in pattern! (Must only be 0 and 1)");
|
||||
for (String patternRow : pattern) {
|
||||
int column = 0;
|
||||
if (patternRow.length() != 9) {
|
||||
throw new IllegalArgumentException("Invalid amount of columns in pattern!");
|
||||
}
|
||||
for (char c : patternRow.toCharArray()) {
|
||||
if (c == '0') {
|
||||
mask.get(row).set(column, null);
|
||||
} else if (c == Character.forDigit(i + 1, 10)) {
|
||||
mask.get(row).set(column, new FillerSlot(itemStack));
|
||||
}
|
||||
|
||||
column++;
|
||||
column++;
|
||||
}
|
||||
row++;
|
||||
}
|
||||
row++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -30,4 +30,9 @@ public class FillerSlot implements Slot {
|
||||
public ItemStack getItemStack(@NotNull final Player player) {
|
||||
return itemStack;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isCaptive() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.willfp.eco.core.gui.slot;
|
||||
|
||||
import org.bukkit.Material;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* Mask materials store a set of materials which can be accessed by
|
||||
* a filler mask.
|
||||
*
|
||||
* @param materials The materials.
|
||||
*/
|
||||
public record MaskMaterials(@NotNull Material... materials) {
|
||||
|
||||
}
|
||||
@@ -1,6 +1,8 @@
|
||||
package com.willfp.eco.core.gui.slot;
|
||||
|
||||
import com.willfp.eco.core.Eco;
|
||||
import com.willfp.eco.core.gui.slot.functional.SlotProvider;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
@@ -19,6 +21,22 @@ public interface Slot {
|
||||
*/
|
||||
ItemStack getItemStack(@NotNull Player player);
|
||||
|
||||
/**
|
||||
* If the slot is captive. (Can items be placed in it).
|
||||
*
|
||||
* @return If captive.
|
||||
*/
|
||||
boolean isCaptive();
|
||||
|
||||
/**
|
||||
* Create a builder for an ItemStack.
|
||||
*
|
||||
* @return The builder.
|
||||
*/
|
||||
static SlotBuilder builder() {
|
||||
return Eco.getHandler().getGUIFactory().createSlotBuilder((player, menu) -> new ItemStack(Material.AIR));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a builder for an ItemStack.
|
||||
*
|
||||
@@ -26,7 +44,7 @@ public interface Slot {
|
||||
* @return The builder.
|
||||
*/
|
||||
static SlotBuilder builder(@NotNull final ItemStack itemStack) {
|
||||
return Eco.getHandler().getGUIFactory().createSlotBuilder(player -> itemStack);
|
||||
return Eco.getHandler().getGUIFactory().createSlotBuilder((player, menu) -> itemStack);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -36,6 +54,16 @@ public interface Slot {
|
||||
* @return The builder.
|
||||
*/
|
||||
static SlotBuilder builder(@NotNull final Function<Player, ItemStack> provider) {
|
||||
return Eco.getHandler().getGUIFactory().createSlotBuilder((player, menu) -> provider.apply(player));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a builder for a player-specific ItemStack.
|
||||
*
|
||||
* @param provider The provider.
|
||||
* @return The builder.
|
||||
*/
|
||||
static SlotBuilder builder(@NotNull final SlotProvider provider) {
|
||||
return Eco.getHandler().getGUIFactory().createSlotBuilder(provider);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
package com.willfp.eco.core.gui.slot;
|
||||
|
||||
import com.willfp.eco.core.gui.slot.functional.SlotHandler;
|
||||
import com.willfp.eco.core.gui.slot.functional.SlotModifier;
|
||||
import org.bukkit.event.inventory.InventoryClickEvent;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@@ -15,7 +17,17 @@ public interface SlotBuilder {
|
||||
* @param action The handler.
|
||||
* @return The builder.
|
||||
*/
|
||||
SlotBuilder onLeftClick(@NotNull BiConsumer<InventoryClickEvent, Slot> action);
|
||||
default SlotBuilder onLeftClick(@NotNull BiConsumer<InventoryClickEvent, Slot> action) {
|
||||
return onLeftClick((event, slot, menu) -> action.accept(event, slot));
|
||||
}
|
||||
|
||||
/**
|
||||
* Set click handler.
|
||||
*
|
||||
* @param handler The handler.
|
||||
* @return The builder.
|
||||
*/
|
||||
SlotBuilder onLeftClick(@NotNull SlotHandler handler);
|
||||
|
||||
/**
|
||||
* Set click handler.
|
||||
@@ -23,7 +35,17 @@ public interface SlotBuilder {
|
||||
* @param action The handler.
|
||||
* @return The builder.
|
||||
*/
|
||||
SlotBuilder onRightClick(@NotNull BiConsumer<InventoryClickEvent, Slot> action);
|
||||
default SlotBuilder onRightClick(@NotNull BiConsumer<InventoryClickEvent, Slot> action) {
|
||||
return onRightClick((event, slot, menu) -> action.accept(event, slot));
|
||||
}
|
||||
|
||||
/**
|
||||
* Set click handler.
|
||||
*
|
||||
* @param handler The handler.
|
||||
* @return The builder.
|
||||
*/
|
||||
SlotBuilder onRightClick(@NotNull SlotHandler handler);
|
||||
|
||||
/**
|
||||
* Set click handler.
|
||||
@@ -31,7 +53,17 @@ public interface SlotBuilder {
|
||||
* @param action The handler.
|
||||
* @return The builder.
|
||||
*/
|
||||
SlotBuilder onShiftLeftClick(@NotNull BiConsumer<InventoryClickEvent, Slot> action);
|
||||
default SlotBuilder onShiftLeftClick(@NotNull BiConsumer<InventoryClickEvent, Slot> action) {
|
||||
return onShiftLeftClick((event, slot, menu) -> action.accept(event, slot));
|
||||
}
|
||||
|
||||
/**
|
||||
* Set click handler.
|
||||
*
|
||||
* @param handler The handler.
|
||||
* @return The builder.
|
||||
*/
|
||||
SlotBuilder onShiftLeftClick(@NotNull SlotHandler handler);
|
||||
|
||||
/**
|
||||
* Set click handler.
|
||||
@@ -39,7 +71,17 @@ public interface SlotBuilder {
|
||||
* @param action The handler.
|
||||
* @return The builder.
|
||||
*/
|
||||
SlotBuilder onShiftRightClick(@NotNull BiConsumer<InventoryClickEvent, Slot> action);
|
||||
default SlotBuilder onShiftRightClick(@NotNull BiConsumer<InventoryClickEvent, Slot> action) {
|
||||
return onShiftRightClick((event, slot, menu) -> action.accept(event, slot));
|
||||
}
|
||||
|
||||
/**
|
||||
* Set click handler.
|
||||
*
|
||||
* @param handler The handler.
|
||||
* @return The builder.
|
||||
*/
|
||||
SlotBuilder onShiftRightClick(@NotNull SlotHandler handler);
|
||||
|
||||
/**
|
||||
* Set click handler.
|
||||
@@ -47,7 +89,32 @@ public interface SlotBuilder {
|
||||
* @param action The handler.
|
||||
* @return The builder.
|
||||
*/
|
||||
SlotBuilder onMiddleClick(@NotNull BiConsumer<InventoryClickEvent, Slot> action);
|
||||
default SlotBuilder onMiddleClick(@NotNull BiConsumer<InventoryClickEvent, Slot> action) {
|
||||
return onMiddleClick((event, slot, menu) -> action.accept(event, slot));
|
||||
}
|
||||
|
||||
/**
|
||||
* Set click handler.
|
||||
*
|
||||
* @param handler The handler.
|
||||
* @return The builder.
|
||||
*/
|
||||
SlotBuilder onMiddleClick(@NotNull SlotHandler handler);
|
||||
|
||||
/**
|
||||
* Modify the ItemStack.
|
||||
*
|
||||
* @param modifier The modifier.
|
||||
* @return The builder.
|
||||
*/
|
||||
SlotBuilder setModifier(@NotNull SlotModifier modifier);
|
||||
|
||||
/**
|
||||
* Set slot to be a captive slot.
|
||||
*
|
||||
* @return The builder.
|
||||
*/
|
||||
SlotBuilder setCaptive();
|
||||
|
||||
/**
|
||||
* Build the slot.
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.willfp.eco.core.gui.slot.functional;
|
||||
|
||||
import com.willfp.eco.core.gui.menu.Menu;
|
||||
import com.willfp.eco.core.gui.slot.Slot;
|
||||
import org.bukkit.event.inventory.InventoryClickEvent;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* Interface to run on slot click.
|
||||
*/
|
||||
@FunctionalInterface
|
||||
public interface SlotHandler {
|
||||
/**
|
||||
* Performs this operation on the given arguments.
|
||||
*
|
||||
* @param event The click event.
|
||||
* @param slot The slot
|
||||
* @param menu The menu.
|
||||
*/
|
||||
void handle(@NotNull InventoryClickEvent event,
|
||||
@NotNull Slot slot,
|
||||
@NotNull Menu menu);
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.willfp.eco.core.gui.slot.functional;
|
||||
|
||||
import com.willfp.eco.core.gui.menu.Menu;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* Interface to run on slot modify.
|
||||
*/
|
||||
@FunctionalInterface
|
||||
public interface SlotModifier {
|
||||
/**
|
||||
* Performs this operation on the given arguments.
|
||||
*
|
||||
* @param player The player.
|
||||
* @param menu The menu.
|
||||
* @param previous The previous ItemStack.
|
||||
*/
|
||||
void modify(@NotNull Player player,
|
||||
@NotNull Menu menu,
|
||||
@NotNull ItemStack previous);
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
package com.willfp.eco.core.gui.slot.functional;
|
||||
|
||||
import com.willfp.eco.core.gui.menu.Menu;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* Interface to run on slot display.
|
||||
*/
|
||||
@FunctionalInterface
|
||||
public interface SlotProvider {
|
||||
/**
|
||||
* Performs this operation on the given arguments.
|
||||
*
|
||||
* @param player The player.
|
||||
* @param menu The menu.
|
||||
* @return The ItemStack.
|
||||
*/
|
||||
ItemStack provide(@NotNull Player player,
|
||||
@NotNull Menu menu);
|
||||
}
|
||||
@@ -16,7 +16,7 @@ public class McmmoManager {
|
||||
/**
|
||||
* A set of all registered integrations.
|
||||
*/
|
||||
private final Set<McmmoWrapper> regsistered = new HashSet<>();
|
||||
private final Set<McmmoWrapper> registered = new HashSet<>();
|
||||
|
||||
/**
|
||||
* Register a new integration.
|
||||
@@ -24,7 +24,7 @@ public class McmmoManager {
|
||||
* @param integration The integration to register.
|
||||
*/
|
||||
public void register(@NotNull final McmmoWrapper integration) {
|
||||
regsistered.add(integration);
|
||||
registered.add(integration);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -34,7 +34,7 @@ public class McmmoManager {
|
||||
* @return The bonus drop count.
|
||||
*/
|
||||
public int getBonusDropCount(@NotNull final Block block) {
|
||||
for (McmmoWrapper mcmmoWrapper : regsistered) {
|
||||
for (McmmoWrapper mcmmoWrapper : registered) {
|
||||
return mcmmoWrapper.getBonusDropCount(block);
|
||||
}
|
||||
return 0;
|
||||
@@ -47,7 +47,7 @@ public class McmmoManager {
|
||||
* @return If the event is fake.
|
||||
*/
|
||||
public boolean isFake(@NotNull final Event event) {
|
||||
for (McmmoWrapper mcmmoWrapper : regsistered) {
|
||||
for (McmmoWrapper mcmmoWrapper : registered) {
|
||||
return mcmmoWrapper.isFake(event);
|
||||
}
|
||||
return false;
|
||||
|
||||
@@ -56,7 +56,7 @@ public class PlaceholderManager {
|
||||
@NotNull final String identifier) {
|
||||
Optional<PlaceholderEntry> matching = REGISTERED_PLACEHOLDERS.stream().filter(expansion -> expansion.getIdentifier().equalsIgnoreCase(identifier)).findFirst();
|
||||
if (matching.isEmpty()) {
|
||||
return null;
|
||||
return "";
|
||||
}
|
||||
PlaceholderEntry entry = matching.get();
|
||||
if (player == null && entry.requiresPlayer()) {
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
package com.willfp.eco.core.integrations.shop;
|
||||
|
||||
import lombok.experimental.UtilityClass;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* Class to handle shop integrations.
|
||||
*/
|
||||
@UtilityClass
|
||||
public class ShopManager {
|
||||
/**
|
||||
* A set of all registered integrations.
|
||||
*/
|
||||
private final Set<ShopWrapper> registered = new HashSet<>();
|
||||
|
||||
/**
|
||||
* Register a new integration.
|
||||
*
|
||||
* @param integration The integration to register.
|
||||
*/
|
||||
public void register(@NotNull final ShopWrapper integration) {
|
||||
registered.add(integration);
|
||||
}
|
||||
|
||||
/**
|
||||
* Register eco item provider for shop plugins.
|
||||
*/
|
||||
public void registerEcoProvider() {
|
||||
for (ShopWrapper shopWrapper : registered) {
|
||||
shopWrapper.registerEcoProvider();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.willfp.eco.core.integrations.shop;
|
||||
|
||||
/**
|
||||
* Wrapper class for shop integrations.
|
||||
*/
|
||||
public interface ShopWrapper {
|
||||
/**
|
||||
* Register eco item provider for shop plugins.
|
||||
*/
|
||||
void registerEcoProvider();
|
||||
}
|
||||
@@ -1,7 +1,5 @@
|
||||
package com.willfp.eco.core.items;
|
||||
|
||||
import com.willfp.eco.core.items.builder.ItemBuilder;
|
||||
import com.willfp.eco.core.items.builder.ItemStackBuilder;
|
||||
import com.willfp.eco.core.recipe.parts.EmptyTestableItem;
|
||||
import com.willfp.eco.core.recipe.parts.MaterialTestableItem;
|
||||
import com.willfp.eco.core.recipe.parts.ModifiedTestableItem;
|
||||
@@ -12,8 +10,10 @@ import org.bukkit.Material;
|
||||
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.Arrays;
|
||||
import java.util.HashMap;
|
||||
@@ -60,6 +60,18 @@ public final class Items {
|
||||
* @return The found testable item, or an empty item if not found.
|
||||
*/
|
||||
public TestableItem lookup(@NotNull final String key) {
|
||||
if (key.contains("?")) {
|
||||
String[] options = key.split("\\?");
|
||||
for (String option : options) {
|
||||
TestableItem lookup = lookup(option);
|
||||
if (!(lookup instanceof EmptyTestableItem)) {
|
||||
return lookup;
|
||||
}
|
||||
}
|
||||
|
||||
return new EmptyTestableItem();
|
||||
}
|
||||
|
||||
String[] args = key.split(" ");
|
||||
if (args.length == 0) {
|
||||
return new EmptyTestableItem();
|
||||
@@ -117,9 +129,17 @@ public final class Items {
|
||||
return item;
|
||||
}
|
||||
|
||||
ItemBuilder builder = new ItemStackBuilder(item.getItem());
|
||||
requiredEnchantments.forEach(builder::addEnchantment);
|
||||
ItemStack example = builder.build();
|
||||
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();
|
||||
assert meta != null;
|
||||
requiredEnchantments.forEach((enchantment, integer) -> meta.addEnchant(enchantment, integer, true));
|
||||
example.setItemMeta(meta);
|
||||
}
|
||||
|
||||
return new ModifiedTestableItem(
|
||||
item,
|
||||
@@ -132,12 +152,23 @@ public final class Items {
|
||||
|
||||
assert meta != null;
|
||||
|
||||
for (Map.Entry<Enchantment, Integer> entry : requiredEnchantments.entrySet()) {
|
||||
if (!meta.hasEnchant(entry.getKey())) {
|
||||
return false;
|
||||
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;
|
||||
}
|
||||
}
|
||||
if (meta.getEnchantLevel(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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -162,6 +193,22 @@ public final class Items {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get custom item from item.
|
||||
*
|
||||
* @param itemStack The item.
|
||||
* @return The custom item, or null if not exists.
|
||||
*/
|
||||
@Nullable
|
||||
public CustomItem getCustomItem(@NotNull final ItemStack itemStack) {
|
||||
for (CustomItem item : REGISTRY.values()) {
|
||||
if (item.matches(itemStack)) {
|
||||
return item;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all registered custom items.
|
||||
*
|
||||
|
||||
@@ -17,6 +17,7 @@ public class ModifiedTestableItem implements TestableItem {
|
||||
/**
|
||||
* The item.
|
||||
*/
|
||||
@Getter
|
||||
private final TestableItem handle;
|
||||
|
||||
/**
|
||||
|
||||
@@ -19,6 +19,7 @@ public class TestableStack implements TestableItem {
|
||||
/**
|
||||
* The item.
|
||||
*/
|
||||
@Getter
|
||||
private final TestableItem handle;
|
||||
|
||||
/**
|
||||
|
||||
22
eco-api/src/main/java/com/willfp/eco/util/MenuUtils.java
Normal file
22
eco-api/src/main/java/com/willfp/eco/util/MenuUtils.java
Normal file
@@ -0,0 +1,22 @@
|
||||
package com.willfp.eco.util;
|
||||
|
||||
import com.willfp.eco.core.tuples.Pair;
|
||||
import lombok.experimental.UtilityClass;
|
||||
|
||||
/**
|
||||
* Utilities / API methods for menus.
|
||||
*/
|
||||
@UtilityClass
|
||||
public class MenuUtils {
|
||||
/**
|
||||
* Convert 0-53 slot to row and column pair.
|
||||
*
|
||||
* @param slot The slot.
|
||||
* @return The pair of row and columns.
|
||||
*/
|
||||
public Pair<Integer, Integer> convertSlotToRowColumn(final int slot) {
|
||||
int row = Math.floorDiv(slot, 9);
|
||||
int column = slot - row * 9;
|
||||
return new Pair<>(row + 1, column + 1);
|
||||
}
|
||||
}
|
||||
@@ -12,7 +12,7 @@ import org.bukkit.entity.Player;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.awt.*;
|
||||
import java.awt.Color;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
@@ -48,7 +48,30 @@ public class StringUtils {
|
||||
.build();
|
||||
|
||||
/**
|
||||
* Format a list of strings - converts Placeholders and Color codes.
|
||||
* Legacy serializer.
|
||||
*/
|
||||
private static final LegacyComponentSerializer LEGACY_COMPONENT_SERIALIZER = LegacyComponentSerializer.builder()
|
||||
.character('\u00a7')
|
||||
.useUnusualXRepeatedCharacterHexFormat()
|
||||
.hexColors()
|
||||
.build();
|
||||
|
||||
/**
|
||||
* Format a list of strings.
|
||||
* <p>
|
||||
* Converts color codes and placeholders.
|
||||
*
|
||||
* @param list The messages to format.
|
||||
* @return The message, formatted.
|
||||
*/
|
||||
public List<String> formatList(@NotNull final List<String> list) {
|
||||
return formatList(list, (Player) null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Format a list of strings.
|
||||
* <p>
|
||||
* Coverts color codes and placeholders for a player.
|
||||
*
|
||||
* @param list The messages to format.
|
||||
* @param player The player to translate placeholders with respect to.
|
||||
@@ -56,26 +79,61 @@ public class StringUtils {
|
||||
*/
|
||||
public List<String> formatList(@NotNull final List<String> list,
|
||||
@Nullable final Player player) {
|
||||
return formatList(list, player, FormatOption.WITH_PLACEHOLDERS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Format a list of strings.
|
||||
* <p>
|
||||
* Converts color codes and placeholders if specified.
|
||||
*
|
||||
* @param list The messages to format.
|
||||
* @param option The format option.
|
||||
* @return The message, formatted.
|
||||
*/
|
||||
public List<String> formatList(@NotNull final List<String> list,
|
||||
@NotNull final FormatOption option) {
|
||||
return formatList(list, null, option);
|
||||
}
|
||||
|
||||
/**
|
||||
* Format a list of strings.
|
||||
* <p>
|
||||
* Coverts color codes and placeholders for a player if specified.
|
||||
*
|
||||
* @param list The messages to format.
|
||||
* @param player The player to translate placeholders with respect to.
|
||||
* @param option The options.
|
||||
* @return The message, format.
|
||||
*/
|
||||
public List<String> formatList(@NotNull final List<String> list,
|
||||
@Nullable final Player player,
|
||||
@NotNull final FormatOption option) {
|
||||
List<String> translated = new ArrayList<>();
|
||||
for (String string : list) {
|
||||
translated.add(format(string, player));
|
||||
translated.add(format(string, player, option));
|
||||
}
|
||||
|
||||
return translated;
|
||||
}
|
||||
|
||||
/**
|
||||
* Format a list of strings - converts Placeholders and Color codes.
|
||||
* Format a string.
|
||||
* <p>
|
||||
* Converts color codes and placeholders.
|
||||
*
|
||||
* @param list The messages to format.
|
||||
* @param message The message to translate.
|
||||
* @return The message, formatted.
|
||||
* @see StringUtils#format(String, Player)
|
||||
*/
|
||||
public List<String> formatList(@NotNull final List<String> list) {
|
||||
return formatList(list, null);
|
||||
public String format(@NotNull final String message) {
|
||||
return format(message, (Player) null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Format a string - converts Placeholders and Color codes.
|
||||
* Format a string.
|
||||
* <p>
|
||||
* Converts color codes and placeholders for a player.
|
||||
*
|
||||
* @param message The message to format.
|
||||
* @param player The player to translate placeholders with respect to.
|
||||
@@ -83,23 +141,45 @@ public class StringUtils {
|
||||
*/
|
||||
public String format(@NotNull final String message,
|
||||
@Nullable final Player player) {
|
||||
String processedMessage = message;
|
||||
processedMessage = translateGradients(processedMessage);
|
||||
processedMessage = PlaceholderManager.translatePlaceholders(processedMessage, player);
|
||||
processedMessage = translateHexColorCodes(processedMessage);
|
||||
processedMessage = ChatColor.translateAlternateColorCodes('&', processedMessage);
|
||||
return processedMessage;
|
||||
return format(message, player, FormatOption.WITH_PLACEHOLDERS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Format a string without respect to a player.
|
||||
* Format a string.
|
||||
* <p>
|
||||
* Converts color codes and placeholders if specified.
|
||||
*
|
||||
* @param message The message to translate.
|
||||
* @param option The format option.
|
||||
* @return The message, formatted.
|
||||
* @see StringUtils#format(String, Player)
|
||||
*/
|
||||
public String format(@NotNull final String message) {
|
||||
return format(message, null);
|
||||
public String format(@NotNull final String message,
|
||||
@NotNull final FormatOption option) {
|
||||
return format(message, null, option);
|
||||
}
|
||||
|
||||
/**
|
||||
* Format a string.
|
||||
* <p>
|
||||
* Coverts color codes and placeholders for a player if specified.
|
||||
*
|
||||
* @param message The message to format.
|
||||
* @param player The player to translate placeholders with respect to.
|
||||
* @param option The format options.
|
||||
* @return The message, formatted.
|
||||
*/
|
||||
public String format(@NotNull final String message,
|
||||
@Nullable final Player player,
|
||||
@NotNull final FormatOption option) {
|
||||
String processedMessage = message;
|
||||
processedMessage = translateGradients(processedMessage);
|
||||
if (option == FormatOption.WITH_PLACEHOLDERS) {
|
||||
processedMessage = PlaceholderManager.translatePlaceholders(processedMessage, player);
|
||||
}
|
||||
processedMessage = translateHexColorCodes(processedMessage);
|
||||
processedMessage = ChatColor.translateAlternateColorCodes('&', processedMessage);
|
||||
return processedMessage;
|
||||
}
|
||||
|
||||
private static String translateHexColorCodes(@NotNull final String message) {
|
||||
@@ -246,7 +326,7 @@ public class StringUtils {
|
||||
public String legacyToJson(@NotNull final String legacy) {
|
||||
return GsonComponentSerializer.gson().serialize(
|
||||
Component.empty().decoration(TextDecoration.ITALIC, false).append(
|
||||
LegacyComponentSerializer.legacySection().deserialize(legacy)
|
||||
LEGACY_COMPONENT_SERIALIZER.deserialize(legacy)
|
||||
)
|
||||
);
|
||||
}
|
||||
@@ -258,8 +338,23 @@ public class StringUtils {
|
||||
* @return The legacy string.
|
||||
*/
|
||||
public String jsonToLegacy(@NotNull final String json) {
|
||||
return LegacyComponentSerializer.legacySection().serialize(
|
||||
return LEGACY_COMPONENT_SERIALIZER.serialize(
|
||||
GsonComponentSerializer.gson().deserialize(json)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Options for formatting.
|
||||
*/
|
||||
public enum FormatOption {
|
||||
/**
|
||||
* Completely formatted.
|
||||
*/
|
||||
WITH_PLACEHOLDERS,
|
||||
|
||||
/**
|
||||
* Completely formatted without placeholders.
|
||||
*/
|
||||
WITHOUT_PLACEHOLDERS
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,9 +11,9 @@ import java.util.*
|
||||
open class EcoJSONConfigWrapper : JSONConfig {
|
||||
val handle: Gson = GsonBuilder().setPrettyPrinting().create()
|
||||
|
||||
val values: MutableMap<String, Any?> = HashMap()
|
||||
val values = mutableMapOf<String, Any?>()
|
||||
|
||||
private val cache: MutableMap<String, Any> = HashMap()
|
||||
private val cache = mutableMapOf<String, Any>()
|
||||
|
||||
fun init(values: Map<String, Any?>) {
|
||||
this.values.clear()
|
||||
@@ -138,17 +138,17 @@ open class EcoJSONConfigWrapper : JSONConfig {
|
||||
|
||||
override fun getSubsections(path: String): List<JSONConfig> {
|
||||
val subsections = getSubsectionsOrNull(path)
|
||||
return subsections ?: ArrayList()
|
||||
return subsections ?: mutableListOf()
|
||||
}
|
||||
|
||||
override fun getSubsectionsOrNull(path: String): List<JSONConfig>? {
|
||||
val maps = getOfKnownType(path, Any::class.java) as List<Map<String, Any>>?
|
||||
?: return null
|
||||
val configs: MutableList<JSONConfig> = ArrayList()
|
||||
val configs = mutableListOf<JSONConfig>()
|
||||
for (map in maps) {
|
||||
configs.add(EcoJSONConfigSection(map))
|
||||
}
|
||||
return configs
|
||||
return configs.toMutableList()
|
||||
}
|
||||
|
||||
override fun getInt(path: String): Int {
|
||||
@@ -170,11 +170,11 @@ open class EcoJSONConfigWrapper : JSONConfig {
|
||||
return Objects.requireNonNullElse(getOfKnownType(path, Int::class.java), def)
|
||||
}
|
||||
|
||||
override fun getInts(path: String): List<Int> {
|
||||
return Objects.requireNonNullElse(getOfKnownType(path, Any::class.java), ArrayList<Any>()) as List<Int>
|
||||
override fun getInts(path: String): MutableList<Int> {
|
||||
return (Objects.requireNonNullElse(getOfKnownType(path, Any::class.java), emptyList<Int>()) as List<Int>).toMutableList()
|
||||
}
|
||||
|
||||
override fun getIntsOrNull(path: String): List<Int>? {
|
||||
override fun getIntsOrNull(path: String): MutableList<Int>? {
|
||||
return if (has(path)) {
|
||||
getInts(path)
|
||||
} else {
|
||||
@@ -194,11 +194,11 @@ open class EcoJSONConfigWrapper : JSONConfig {
|
||||
}
|
||||
}
|
||||
|
||||
override fun getBools(path: String): List<Boolean> {
|
||||
return Objects.requireNonNullElse(getOfKnownType(path, Any::class.java), ArrayList<Any>()) as List<Boolean>
|
||||
override fun getBools(path: String): MutableList<Boolean> {
|
||||
return (Objects.requireNonNullElse(getOfKnownType(path, Any::class.java), emptyList<Boolean>()) as List<Boolean>).toMutableList()
|
||||
}
|
||||
|
||||
override fun getBoolsOrNull(path: String): List<Boolean>? {
|
||||
override fun getBoolsOrNull(path: String): MutableList<Boolean>? {
|
||||
return if (has(path)) {
|
||||
getBools(path)
|
||||
} else {
|
||||
@@ -206,64 +206,44 @@ open class EcoJSONConfigWrapper : JSONConfig {
|
||||
}
|
||||
}
|
||||
|
||||
override fun getString(path: String): String {
|
||||
return getString(path, true)
|
||||
}
|
||||
|
||||
override fun getString(
|
||||
path: String,
|
||||
format: Boolean
|
||||
format: Boolean,
|
||||
option: StringUtils.FormatOption
|
||||
): String {
|
||||
val string = getOfKnownType(path, String::class.java) ?: ""
|
||||
return if (format) StringUtils.format(string) else string
|
||||
}
|
||||
|
||||
override fun getStringOrNull(path: String): String? {
|
||||
return if (has(path)) {
|
||||
getString(path)
|
||||
} else {
|
||||
null
|
||||
}
|
||||
return if (format) StringUtils.format(string, option) else string
|
||||
}
|
||||
|
||||
override fun getStringOrNull(
|
||||
path: String,
|
||||
format: Boolean
|
||||
format: Boolean,
|
||||
option: StringUtils.FormatOption
|
||||
): String? {
|
||||
return if (has(path)) {
|
||||
getString(path, format)
|
||||
getString(path, format, option)
|
||||
} else {
|
||||
null
|
||||
}
|
||||
}
|
||||
|
||||
override fun getStrings(path: String): List<String> {
|
||||
return getStrings(path, true)
|
||||
}
|
||||
|
||||
override fun getStrings(
|
||||
path: String,
|
||||
format: Boolean
|
||||
): List<String> {
|
||||
format: Boolean,
|
||||
option: StringUtils.FormatOption
|
||||
): MutableList<String> {
|
||||
val strings =
|
||||
Objects.requireNonNullElse(getOfKnownType(path, Any::class.java), ArrayList<Any>()) as List<String>
|
||||
return if (format) StringUtils.formatList(strings) else strings
|
||||
}
|
||||
|
||||
override fun getStringsOrNull(path: String): List<String>? {
|
||||
return if (has(path)) {
|
||||
getStrings(path)
|
||||
} else {
|
||||
null
|
||||
}
|
||||
(Objects.requireNonNullElse(getOfKnownType(path, Any::class.java), emptyList<String>()) as List<String>).toMutableList()
|
||||
return if (format) StringUtils.formatList(strings, option) else strings
|
||||
}
|
||||
|
||||
override fun getStringsOrNull(
|
||||
path: String,
|
||||
format: Boolean
|
||||
): List<String>? {
|
||||
format: Boolean,
|
||||
option: StringUtils.FormatOption
|
||||
): MutableList<String>? {
|
||||
return if (has(path)) {
|
||||
getStrings(path, format)
|
||||
getStrings(path, format, option)
|
||||
} else {
|
||||
null
|
||||
}
|
||||
@@ -281,11 +261,11 @@ open class EcoJSONConfigWrapper : JSONConfig {
|
||||
}
|
||||
}
|
||||
|
||||
override fun getDoubles(path: String): List<Double> {
|
||||
return Objects.requireNonNullElse(getOfKnownType(path, Any::class.java), ArrayList<Any>()) as List<Double>
|
||||
override fun getDoubles(path: String): MutableList<Double> {
|
||||
return (Objects.requireNonNullElse(getOfKnownType(path, Any::class.java), emptyList<Double>()) as List<Double>).toMutableList()
|
||||
}
|
||||
|
||||
override fun getDoublesOrNull(path: String): List<Double>? {
|
||||
override fun getDoublesOrNull(path: String): MutableList<Double>? {
|
||||
return if (has(path)) {
|
||||
getDoubles(path)
|
||||
} else {
|
||||
|
||||
@@ -27,7 +27,6 @@ class EcoLoadableJSONConfig(
|
||||
}
|
||||
|
||||
override fun createFile() {
|
||||
val resourcePath = resourcePath
|
||||
val inputStream = source.getResourceAsStream(resourcePath)!!
|
||||
val outFile = File(this.plugin.dataFolder, resourcePath)
|
||||
val lastIndex = resourcePath.lastIndexOf('/')
|
||||
@@ -37,11 +36,7 @@ class EcoLoadableJSONConfig(
|
||||
}
|
||||
if (!outFile.exists()) {
|
||||
val out: OutputStream = FileOutputStream(outFile)
|
||||
val buf = ByteArray(1024)
|
||||
var len: Int
|
||||
while (inputStream.read(buf).also { len = it } > 0) {
|
||||
out.write(buf, 0, len)
|
||||
}
|
||||
inputStream.copyTo(out, 1024)
|
||||
out.close()
|
||||
inputStream.close()
|
||||
}
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
package com.willfp.eco.internal.config.updating
|
||||
|
||||
import com.willfp.eco.core.EcoPlugin
|
||||
import com.willfp.eco.core.PluginDependent
|
||||
import com.willfp.eco.core.config.interfaces.LoadableConfig
|
||||
import com.willfp.eco.core.config.updating.ConfigHandler
|
||||
import com.willfp.eco.core.config.updating.ConfigUpdater
|
||||
@@ -14,14 +13,14 @@ import org.reflections.scanners.MethodAnnotationsScanner
|
||||
import java.lang.reflect.Modifier
|
||||
|
||||
class EcoConfigHandler(
|
||||
plugin: EcoPlugin
|
||||
) : PluginDependent<EcoPlugin>(plugin), ConfigHandler {
|
||||
private val plugin: EcoPlugin
|
||||
) : ConfigHandler {
|
||||
private val reflections: Reflections = Reflections(
|
||||
this.plugin::class.java.classLoader,
|
||||
MethodAnnotationsScanner()
|
||||
)
|
||||
|
||||
private val configs: MutableList<LoadableConfig> = ArrayList()
|
||||
private val configs = mutableListOf<LoadableConfig>()
|
||||
|
||||
override fun callUpdate() {
|
||||
for (method in reflections.getMethodsAnnotatedWith(ConfigUpdater::class.java)) {
|
||||
|
||||
@@ -31,7 +31,6 @@ open class EcoLoadableYamlConfig(
|
||||
}
|
||||
|
||||
final override fun createFile() {
|
||||
val resourcePath = resourcePath
|
||||
val inputStream = source.getResourceAsStream(resourcePath)!!
|
||||
val outFile = File(this.plugin.dataFolder, resourcePath)
|
||||
val lastIndex = resourcePath.lastIndexOf('/')
|
||||
@@ -41,11 +40,7 @@ open class EcoLoadableYamlConfig(
|
||||
}
|
||||
if (!outFile.exists()) {
|
||||
val out: OutputStream = FileOutputStream(outFile)
|
||||
val buf = ByteArray(1024)
|
||||
var len: Int
|
||||
while (inputStream.read(buf).also { len = it } > 0) {
|
||||
out.write(buf, 0, len)
|
||||
}
|
||||
inputStream.copyTo(out, 1024)
|
||||
out.close()
|
||||
inputStream.close()
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ import java.io.StringReader
|
||||
@Suppress("UNCHECKED_CAST")
|
||||
open class EcoYamlConfigWrapper<T : ConfigurationSection> : Config {
|
||||
lateinit var handle: T
|
||||
private val cache: MutableMap<String, Any?> = HashMap()
|
||||
private val cache = mutableMapOf<String, Any?>()
|
||||
|
||||
protected fun init(config: T): Config {
|
||||
handle = config
|
||||
@@ -98,16 +98,16 @@ open class EcoYamlConfigWrapper<T : ConfigurationSection> : Config {
|
||||
}
|
||||
}
|
||||
|
||||
override fun getInts(path: String): List<Int> {
|
||||
override fun getInts(path: String): MutableList<Int> {
|
||||
return if (cache.containsKey(path)) {
|
||||
cache[path] as List<Int>
|
||||
(cache[path] as MutableList<Int>).toMutableList()
|
||||
} else {
|
||||
cache[path] = if (has(path)) ArrayList(handle.getIntegerList(path)) else ArrayList<Any>()
|
||||
cache[path] = if (has(path)) ArrayList(handle.getIntegerList(path)) else mutableListOf<Int>()
|
||||
getInts(path)
|
||||
}
|
||||
}
|
||||
|
||||
override fun getIntsOrNull(path: String): List<Int>? {
|
||||
override fun getIntsOrNull(path: String): MutableList<Int>? {
|
||||
return if (has(path)) {
|
||||
getInts(path)
|
||||
} else {
|
||||
@@ -132,17 +132,17 @@ open class EcoYamlConfigWrapper<T : ConfigurationSection> : Config {
|
||||
}
|
||||
}
|
||||
|
||||
override fun getBools(path: String): List<Boolean> {
|
||||
override fun getBools(path: String): MutableList<Boolean> {
|
||||
return if (cache.containsKey(path)) {
|
||||
cache[path] as List<Boolean>
|
||||
(cache[path] as MutableList<Boolean>).toMutableList()
|
||||
} else {
|
||||
cache[path] =
|
||||
if (has(path)) ArrayList(handle.getBooleanList(path)) else ArrayList<Any>()
|
||||
if (has(path)) ArrayList(handle.getBooleanList(path)) else mutableListOf<Boolean>()
|
||||
getBools(path)
|
||||
}
|
||||
}
|
||||
|
||||
override fun getBoolsOrNull(path: String): List<Boolean>? {
|
||||
override fun getBoolsOrNull(path: String): MutableList<Boolean>? {
|
||||
return if (has(path)) {
|
||||
getBools(path)
|
||||
} else {
|
||||
@@ -150,91 +150,80 @@ open class EcoYamlConfigWrapper<T : ConfigurationSection> : Config {
|
||||
}
|
||||
}
|
||||
|
||||
override fun getString(path: String): String {
|
||||
return getString(path, true)
|
||||
}
|
||||
|
||||
override fun getString(
|
||||
path: String,
|
||||
format: Boolean
|
||||
format: Boolean,
|
||||
option: StringUtils.FormatOption
|
||||
): String {
|
||||
if (format) {
|
||||
if (format && option == StringUtils.FormatOption.WITHOUT_PLACEHOLDERS) {
|
||||
return if (cache.containsKey("$path\$FMT")) {
|
||||
cache["$path\$FMT"] as String
|
||||
} else {
|
||||
val string: String = handle.getString(path, "")!!
|
||||
cache["$path\$FMT"] = StringUtils.format(string)
|
||||
getString(path, format)
|
||||
cache["$path\$FMT"] = StringUtils.format(string, option)
|
||||
getString(path, format, option)
|
||||
}
|
||||
} else {
|
||||
return if (cache.containsKey(path)) {
|
||||
val string = if (cache.containsKey(path)) {
|
||||
cache[path] as String
|
||||
} else {
|
||||
cache[path] = handle.getString(path, "")!!
|
||||
getString(path)
|
||||
getString(path, format, option)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
override fun getStringOrNull(path: String): String? {
|
||||
return if (has(path)) {
|
||||
getString(path)
|
||||
} else {
|
||||
null
|
||||
return if (format) StringUtils.format(string) else string
|
||||
}
|
||||
}
|
||||
|
||||
override fun getStringOrNull(
|
||||
path: String,
|
||||
format: Boolean
|
||||
format: Boolean,
|
||||
option: StringUtils.FormatOption
|
||||
): String? {
|
||||
return if (has(path)) {
|
||||
getString(path, format)
|
||||
getString(path, format, option)
|
||||
} else {
|
||||
null
|
||||
}
|
||||
}
|
||||
|
||||
override fun getStrings(path: String): List<String> {
|
||||
return getStrings(path, true)
|
||||
}
|
||||
|
||||
override fun getStrings(
|
||||
path: String,
|
||||
format: Boolean
|
||||
): List<String> {
|
||||
if (format) {
|
||||
format: Boolean,
|
||||
option: StringUtils.FormatOption
|
||||
): MutableList<String> {
|
||||
if (format && option == StringUtils.FormatOption.WITHOUT_PLACEHOLDERS) {
|
||||
return if (cache.containsKey("$path\$FMT")) {
|
||||
cache["$path\$FMT"] as List<String>
|
||||
(cache["$path\$FMT"] as MutableList<String>).toMutableList()
|
||||
} else {
|
||||
cache["$path\$FMT"] = StringUtils.formatList(if (has(path)) ArrayList(handle.getStringList(path)) else ArrayList<String>())
|
||||
getStrings(path, true)
|
||||
val list = if (has(path)) handle.getStringList(path) else mutableListOf<String>()
|
||||
cache["$path\$FMT"] = StringUtils.formatList(list, option)
|
||||
getStrings(path, true, option)
|
||||
}
|
||||
} else {
|
||||
return if (cache.containsKey(path)) {
|
||||
cache[path] as List<String>
|
||||
val strings = if (cache.containsKey(path)) {
|
||||
(cache[path] as MutableList<String>).toMutableList()
|
||||
} else {
|
||||
cache[path] =
|
||||
if (has(path)) ArrayList(handle.getStringList(path)) else ArrayList<Any>()
|
||||
getStrings(path, false)
|
||||
if (has(path)) ArrayList(handle.getStringList(path)) else mutableListOf<String>()
|
||||
getStrings(path, false, option)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
override fun getStringsOrNull(path: String): List<String>? {
|
||||
return if (has(path)) {
|
||||
getStrings(path)
|
||||
} else {
|
||||
null
|
||||
return if (format) {
|
||||
StringUtils.formatList(strings, StringUtils.FormatOption.WITH_PLACEHOLDERS)
|
||||
} else {
|
||||
strings
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
override fun getStringsOrNull(
|
||||
path: String,
|
||||
format: Boolean
|
||||
): List<String>? {
|
||||
format: Boolean,
|
||||
option: StringUtils.FormatOption
|
||||
): MutableList<String>? {
|
||||
return if (has(path)) {
|
||||
getStrings(path, format)
|
||||
getStrings(path, format, option)
|
||||
} else {
|
||||
null
|
||||
}
|
||||
@@ -257,16 +246,16 @@ open class EcoYamlConfigWrapper<T : ConfigurationSection> : Config {
|
||||
}
|
||||
}
|
||||
|
||||
override fun getDoubles(path: String): List<Double> {
|
||||
override fun getDoubles(path: String): MutableList<Double> {
|
||||
return if (cache.containsKey(path)) {
|
||||
cache[path] as List<Double>
|
||||
(cache[path] as MutableList<Double>).toMutableList()
|
||||
} else {
|
||||
cache[path] = if (has(path)) ArrayList(handle.getDoubleList(path)) else ArrayList<Any>()
|
||||
cache[path] = if (has(path)) ArrayList(handle.getDoubleList(path)) else emptyList<Double>()
|
||||
getDoubles(path)
|
||||
}
|
||||
}
|
||||
|
||||
override fun getDoublesOrNull(path: String): List<Double>? {
|
||||
override fun getDoublesOrNull(path: String): MutableList<Double>? {
|
||||
return if (has(path)) {
|
||||
getDoubles(path)
|
||||
} else {
|
||||
|
||||
@@ -13,12 +13,12 @@ import org.bukkit.inventory.ItemStack
|
||||
import org.bukkit.util.Vector
|
||||
|
||||
open class EcoDropQueue(player: Player) : InternalDropQueue {
|
||||
val items: MutableList<ItemStack>
|
||||
var xp: Int
|
||||
val items = mutableListOf<ItemStack>()
|
||||
var xp: Int = 0
|
||||
val player: Player
|
||||
var loc: Location
|
||||
var hasTelekinesis = false
|
||||
|
||||
private var hasTelekinesis = false
|
||||
override fun addItem(item: ItemStack): InternalDropQueue {
|
||||
items.add(item)
|
||||
return this
|
||||
@@ -79,8 +79,6 @@ open class EcoDropQueue(player: Player) : InternalDropQueue {
|
||||
}
|
||||
|
||||
init {
|
||||
items = ArrayList()
|
||||
xp = 0
|
||||
this.player = player
|
||||
loc = player.location
|
||||
}
|
||||
|
||||
@@ -10,11 +10,14 @@ class EcoFastCollatedDropQueue(player: Player) : EcoDropQueue(player) {
|
||||
val fetched = COLLATED_MAP[player]
|
||||
|
||||
if (fetched == null) {
|
||||
COLLATED_MAP[player] = CollatedDrops(items, loc, xp)
|
||||
COLLATED_MAP[player] = CollatedDrops(items, loc, xp, hasTelekinesis)
|
||||
} else {
|
||||
fetched.addDrops(items)
|
||||
fetched.location = loc
|
||||
fetched.addXp(xp)
|
||||
if (this.hasTelekinesis) {
|
||||
fetched.forceTelekinesis()
|
||||
}
|
||||
|
||||
COLLATED_MAP[player] = fetched
|
||||
}
|
||||
@@ -23,8 +26,10 @@ class EcoFastCollatedDropQueue(player: Player) : EcoDropQueue(player) {
|
||||
class CollatedDrops(
|
||||
val drops: MutableList<ItemStack>,
|
||||
var location: Location,
|
||||
var xp: Int
|
||||
var xp: Int,
|
||||
var telekinetic: Boolean
|
||||
) {
|
||||
|
||||
fun addDrops(toAdd: List<ItemStack>): CollatedDrops {
|
||||
drops.addAll(toAdd)
|
||||
return this
|
||||
@@ -34,6 +39,10 @@ class EcoFastCollatedDropQueue(player: Player) : EcoDropQueue(player) {
|
||||
this.xp += xp
|
||||
return this
|
||||
}
|
||||
|
||||
fun forceTelekinesis() {
|
||||
telekinetic = true
|
||||
}
|
||||
}
|
||||
|
||||
companion object {
|
||||
|
||||
@@ -1,13 +1,12 @@
|
||||
package com.willfp.eco.internal.events
|
||||
|
||||
import com.willfp.eco.core.EcoPlugin
|
||||
import com.willfp.eco.core.PluginDependent
|
||||
import com.willfp.eco.core.events.EventManager
|
||||
import org.bukkit.Bukkit
|
||||
import org.bukkit.event.HandlerList
|
||||
import org.bukkit.event.Listener
|
||||
|
||||
class EcoEventManager constructor(plugin: EcoPlugin) : PluginDependent<EcoPlugin>(plugin), EventManager {
|
||||
class EcoEventManager constructor(private val plugin: EcoPlugin) : EventManager {
|
||||
override fun registerListener(listener: Listener) {
|
||||
Bukkit.getPluginManager().registerEvents(listener, plugin)
|
||||
}
|
||||
|
||||
@@ -2,7 +2,6 @@ package com.willfp.eco.internal.extensions
|
||||
|
||||
import com.google.common.collect.ImmutableSet
|
||||
import com.willfp.eco.core.EcoPlugin
|
||||
import com.willfp.eco.core.PluginDependent
|
||||
import com.willfp.eco.core.config.yaml.YamlTransientConfig
|
||||
import com.willfp.eco.core.extensions.Extension
|
||||
import com.willfp.eco.core.extensions.ExtensionLoader
|
||||
@@ -16,9 +15,9 @@ import java.net.URL
|
||||
import java.net.URLClassLoader
|
||||
|
||||
class EcoExtensionLoader(
|
||||
plugin: EcoPlugin
|
||||
) : PluginDependent<EcoPlugin>(plugin), ExtensionLoader {
|
||||
private val extensions: MutableMap<Extension, URLClassLoader> = HashMap()
|
||||
private val plugin: EcoPlugin
|
||||
) : ExtensionLoader {
|
||||
private val extensions = mutableMapOf<Extension, URLClassLoader>()
|
||||
|
||||
override fun loadExtensions() {
|
||||
val dir = File(this.plugin.dataFolder, "/extensions")
|
||||
@@ -43,7 +42,7 @@ class EcoExtensionLoader(
|
||||
|
||||
@Throws(MalformedExtensionException::class)
|
||||
private fun loadExtension(extensionJar: File) {
|
||||
lateinit var url : URL
|
||||
lateinit var url: URL
|
||||
|
||||
try {
|
||||
url = extensionJar.toURI().toURL()
|
||||
@@ -53,7 +52,7 @@ class EcoExtensionLoader(
|
||||
|
||||
val classLoader = URLClassLoader(arrayOf(url), this.plugin::class.java.classLoader)
|
||||
val ymlIn = classLoader.getResourceAsStream("extension.yml")
|
||||
?: throw MalformedExtensionException ("No extension.yml found in " + extensionJar.name)
|
||||
?: throw MalformedExtensionException("No extension.yml found in " + extensionJar.name)
|
||||
|
||||
val extensionYml = YamlTransientConfig(YamlConfiguration.loadConfiguration(InputStreamReader(ymlIn)))
|
||||
|
||||
@@ -64,7 +63,7 @@ class EcoExtensionLoader(
|
||||
|
||||
|
||||
if (mainClass == null) {
|
||||
throw MalformedExtensionException ("Invalid extension.yml found in " + extensionJar.name)
|
||||
throw MalformedExtensionException("Invalid extension.yml found in " + extensionJar.name)
|
||||
}
|
||||
|
||||
if (name == null) {
|
||||
|
||||
@@ -1,11 +1,10 @@
|
||||
package com.willfp.eco.internal.factory
|
||||
|
||||
import com.willfp.eco.core.EcoPlugin
|
||||
import com.willfp.eco.core.PluginDependent
|
||||
import com.willfp.eco.core.factory.MetadataValueFactory
|
||||
import org.bukkit.metadata.FixedMetadataValue
|
||||
|
||||
class EcoMetadataValueFactory(plugin: EcoPlugin) : PluginDependent<EcoPlugin>(plugin), MetadataValueFactory {
|
||||
class EcoMetadataValueFactory(private val plugin: EcoPlugin) : MetadataValueFactory {
|
||||
override fun create(value: Any): FixedMetadataValue {
|
||||
return FixedMetadataValue(plugin, value)
|
||||
}
|
||||
|
||||
@@ -1,11 +1,10 @@
|
||||
package com.willfp.eco.internal.factory
|
||||
|
||||
import com.willfp.eco.core.EcoPlugin
|
||||
import com.willfp.eco.core.PluginDependent
|
||||
import com.willfp.eco.core.factory.NamespacedKeyFactory
|
||||
import org.bukkit.NamespacedKey
|
||||
|
||||
class EcoNamespacedKeyFactory(plugin: EcoPlugin) : PluginDependent<EcoPlugin>(plugin), NamespacedKeyFactory {
|
||||
class EcoNamespacedKeyFactory(private val plugin: EcoPlugin) : NamespacedKeyFactory {
|
||||
override fun create(key: String): NamespacedKey {
|
||||
return NamespacedKey(plugin, key)
|
||||
}
|
||||
|
||||
@@ -1,13 +1,12 @@
|
||||
package com.willfp.eco.internal.factory
|
||||
|
||||
import com.willfp.eco.core.EcoPlugin
|
||||
import com.willfp.eco.core.PluginDependent
|
||||
import com.willfp.eco.core.factory.RunnableFactory
|
||||
import com.willfp.eco.core.scheduling.RunnableTask
|
||||
import com.willfp.eco.internal.scheduling.EcoRunnableTask
|
||||
import java.util.function.Consumer
|
||||
|
||||
class EcoRunnableFactory(plugin: EcoPlugin) : PluginDependent<EcoPlugin>(plugin), RunnableFactory {
|
||||
class EcoRunnableFactory(private val plugin: EcoPlugin) : RunnableFactory {
|
||||
override fun create(consumer: Consumer<RunnableTask>): RunnableTask {
|
||||
return object : EcoRunnableTask(plugin) {
|
||||
override fun run() {
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package com.willfp.eco.internal.fast
|
||||
|
||||
import com.willfp.eco.core.fast.FastItemStack
|
||||
import org.bukkit.inventory.ItemFlag
|
||||
import org.bukkit.inventory.ItemStack
|
||||
|
||||
abstract class EcoFastItemStack<T: Any>(
|
||||
@@ -10,4 +11,8 @@ abstract class EcoFastItemStack<T: Any>(
|
||||
override fun unwrap(): ItemStack {
|
||||
return bukkit
|
||||
}
|
||||
|
||||
fun getBitModifier(hideFlag: ItemFlag): Int {
|
||||
return 1 shl hideFlag.ordinal
|
||||
}
|
||||
}
|
||||
@@ -3,14 +3,12 @@ package com.willfp.eco.internal.gui
|
||||
import com.willfp.eco.core.gui.GUIFactory
|
||||
import com.willfp.eco.core.gui.menu.MenuBuilder
|
||||
import com.willfp.eco.core.gui.slot.SlotBuilder
|
||||
import com.willfp.eco.core.gui.slot.functional.SlotProvider
|
||||
import com.willfp.eco.internal.gui.menu.EcoMenuBuilder
|
||||
import com.willfp.eco.internal.gui.slot.EcoSlotBuilder
|
||||
import org.bukkit.entity.Player
|
||||
import org.bukkit.inventory.ItemStack
|
||||
import java.util.function.Function
|
||||
|
||||
class EcoGUIFactory : GUIFactory {
|
||||
override fun createSlotBuilder(provider: Function<Player, ItemStack>): SlotBuilder {
|
||||
override fun createSlotBuilder(provider: SlotProvider): SlotBuilder {
|
||||
return EcoSlotBuilder(provider)
|
||||
}
|
||||
|
||||
|
||||
@@ -1,23 +1,25 @@
|
||||
package com.willfp.eco.internal.gui.menu
|
||||
|
||||
import com.willfp.eco.core.gui.menu.CloseHandler
|
||||
import com.willfp.eco.core.gui.menu.Menu
|
||||
import com.willfp.eco.core.gui.slot.FillerSlot
|
||||
import com.willfp.eco.core.gui.slot.Slot
|
||||
import com.willfp.eco.internal.gui.slot.EcoFillerSlot
|
||||
import com.willfp.eco.internal.gui.slot.EcoSlot
|
||||
import com.willfp.eco.util.StringUtils
|
||||
import org.bukkit.Bukkit
|
||||
import org.bukkit.NamespacedKey
|
||||
import org.bukkit.entity.Player
|
||||
import org.bukkit.event.inventory.InventoryCloseEvent
|
||||
import org.bukkit.inventory.Inventory
|
||||
import java.util.function.Consumer
|
||||
import org.bukkit.inventory.ItemStack
|
||||
import org.bukkit.persistence.PersistentDataType
|
||||
|
||||
@Suppress("UNCHECKED_CAST")
|
||||
class EcoMenu(
|
||||
private val rows: Int,
|
||||
private val slots: List<MutableList<Slot>>,
|
||||
val slots: List<MutableList<EcoSlot>>,
|
||||
private val title: String,
|
||||
private val onClose: Consumer<InventoryCloseEvent>
|
||||
private val onClose: CloseHandler
|
||||
): Menu {
|
||||
|
||||
override fun getSlot(row: Int, column: Int): Slot {
|
||||
if (row < 1 || row > this.rows) {
|
||||
throw IllegalArgumentException("Invalid row number!")
|
||||
@@ -27,14 +29,7 @@ class EcoMenu(
|
||||
throw IllegalArgumentException("Invalid column number!")
|
||||
}
|
||||
|
||||
val slot = slots[row - 1][column - 1]
|
||||
if (slot is FillerSlot) {
|
||||
slots[row - 1][column - 1] = EcoFillerSlot(slot.itemStack)
|
||||
|
||||
return getSlot(row, column)
|
||||
}
|
||||
|
||||
return slot
|
||||
return slots[row - 1][column - 1]
|
||||
}
|
||||
|
||||
override fun open(player: Player): Inventory {
|
||||
@@ -46,7 +41,7 @@ class EcoMenu(
|
||||
if (i == rows * 9) {
|
||||
break
|
||||
}
|
||||
val slotItem = item.getItemStack(player)
|
||||
val slotItem = item.getItemStack(player, this)
|
||||
val meta = slotItem.itemMeta
|
||||
if (meta != null) {
|
||||
val lore = meta.lore
|
||||
@@ -67,7 +62,7 @@ class EcoMenu(
|
||||
}
|
||||
|
||||
fun handleClose(event: InventoryCloseEvent) {
|
||||
onClose.accept(event)
|
||||
onClose.handle(event, this)
|
||||
}
|
||||
|
||||
override fun getRows(): Int {
|
||||
@@ -77,4 +72,34 @@ class EcoMenu(
|
||||
override fun getTitle(): String {
|
||||
return title
|
||||
}
|
||||
|
||||
override fun getCaptiveItems(player: Player): MutableList<ItemStack> {
|
||||
val inventory = MenuHandler.getExtendedInventory(player.openInventory.topInventory)
|
||||
inventory ?: return mutableListOf()
|
||||
return inventory.captiveItems
|
||||
}
|
||||
|
||||
override fun <T : Any, Z : Any> writeData(
|
||||
player: Player,
|
||||
key: NamespacedKey,
|
||||
type: PersistentDataType<T, Z>,
|
||||
value: Z
|
||||
) {
|
||||
val inventory = MenuHandler.getExtendedInventory(player.openInventory.topInventory)
|
||||
inventory ?: return
|
||||
inventory.data[key] = value
|
||||
inventory.refresh(player)
|
||||
}
|
||||
|
||||
override fun <T : Any, Z : Any> readData(player: Player, key: NamespacedKey, type: PersistentDataType<T, Z>): T? {
|
||||
val inventory = MenuHandler.getExtendedInventory(player.openInventory.topInventory)
|
||||
inventory ?: return null
|
||||
return inventory.data[key] as T?
|
||||
}
|
||||
|
||||
override fun getKeys(player: Player): MutableSet<NamespacedKey> {
|
||||
val inventory = MenuHandler.getExtendedInventory(player.openInventory.topInventory)
|
||||
inventory ?: return HashSet()
|
||||
return inventory.data.keys
|
||||
}
|
||||
}
|
||||
@@ -1,22 +1,24 @@
|
||||
package com.willfp.eco.internal.gui.menu
|
||||
|
||||
import com.willfp.eco.core.gui.menu.CloseHandler
|
||||
import com.willfp.eco.core.gui.menu.Menu
|
||||
import com.willfp.eco.core.gui.menu.MenuBuilder
|
||||
import com.willfp.eco.core.gui.slot.FillerMask
|
||||
import com.willfp.eco.core.gui.slot.FillerSlot
|
||||
import com.willfp.eco.core.gui.slot.Slot
|
||||
import com.willfp.eco.internal.gui.slot.EcoFillerSlot
|
||||
import com.willfp.eco.internal.gui.slot.EcoSlot
|
||||
import com.willfp.eco.util.ListUtils
|
||||
import com.willfp.eco.util.StringUtils
|
||||
import org.bukkit.Material
|
||||
import org.bukkit.event.inventory.InventoryCloseEvent
|
||||
import org.bukkit.inventory.ItemStack
|
||||
import java.util.function.Consumer
|
||||
|
||||
class EcoMenuBuilder(private val rows: Int) : MenuBuilder {
|
||||
private var title = "Menu"
|
||||
private var maskSlots: List<MutableList<Slot?>>
|
||||
private val slots: List<MutableList<Slot>> = ListUtils.create2DList(rows, 9)
|
||||
private var onClose = Consumer { _: InventoryCloseEvent -> }
|
||||
private val slots: List<MutableList<Slot?>> = ListUtils.create2DList(rows, 9)
|
||||
private var onClose = CloseHandler { _, _ -> }
|
||||
|
||||
override fun setTitle(title: String): MenuBuilder {
|
||||
this.title = StringUtils.format(title)
|
||||
@@ -34,35 +36,45 @@ class EcoMenuBuilder(private val rows: Int) : MenuBuilder {
|
||||
return this
|
||||
}
|
||||
|
||||
override fun modfiy(modifier: Consumer<MenuBuilder>): MenuBuilder {
|
||||
modifier.accept(this)
|
||||
return this
|
||||
}
|
||||
|
||||
override fun setMask(mask: FillerMask): MenuBuilder {
|
||||
maskSlots = mask.mask
|
||||
return this
|
||||
}
|
||||
|
||||
override fun onClose(action: Consumer<InventoryCloseEvent>): MenuBuilder {
|
||||
override fun onClose(action: CloseHandler): MenuBuilder {
|
||||
onClose = action
|
||||
return this
|
||||
}
|
||||
|
||||
override fun build(): Menu {
|
||||
val finalSlots: MutableList<MutableList<Slot>> = ArrayList()
|
||||
|
||||
for (maskRow in maskSlots) {
|
||||
val row = ArrayList<Slot>()
|
||||
for (slot in maskRow) {
|
||||
row.add(slot ?: EcoFillerSlot(ItemStack(Material.AIR)))
|
||||
}
|
||||
finalSlots.add(ArrayList())
|
||||
finalSlots.add(row)
|
||||
}
|
||||
val tempSlots: MutableList<MutableList<Slot?>> = ArrayList(maskSlots)
|
||||
|
||||
for (i in slots.indices) {
|
||||
for (j in slots[i].indices) {
|
||||
val slot = slots[i][j]
|
||||
finalSlots[i][j] = slot
|
||||
val slot = slots[i][j] ?: continue
|
||||
tempSlots[i][j] = slot
|
||||
}
|
||||
}
|
||||
|
||||
val finalSlots = mutableListOf<MutableList<EcoSlot>>()
|
||||
|
||||
for (row in tempSlots) {
|
||||
val tempRow = mutableListOf<EcoSlot>()
|
||||
for (slot in row) {
|
||||
var tempSlot = slot
|
||||
if (tempSlot is FillerSlot) {
|
||||
tempSlot = EcoFillerSlot(tempSlot.itemStack)
|
||||
}
|
||||
tempRow.add((tempSlot ?: EcoFillerSlot(ItemStack(Material.AIR))) as EcoSlot)
|
||||
}
|
||||
finalSlots.add(tempRow)
|
||||
}
|
||||
|
||||
return EcoMenu(rows, finalSlots, title, onClose)
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
package com.willfp.eco.internal.gui.menu
|
||||
|
||||
import com.willfp.eco.internal.gui.slot.EcoCaptivatorSlot
|
||||
import com.willfp.eco.util.MenuUtils
|
||||
import com.willfp.eco.util.StringUtils
|
||||
import org.bukkit.NamespacedKey
|
||||
import org.bukkit.entity.Player
|
||||
import org.bukkit.inventory.Inventory
|
||||
import org.bukkit.inventory.ItemStack
|
||||
|
||||
class ExtendedInventory(
|
||||
val inventory: Inventory,
|
||||
private val menu: EcoMenu
|
||||
) {
|
||||
val captiveItems = mutableListOf<ItemStack>()
|
||||
val data = mutableMapOf<NamespacedKey, Any>()
|
||||
|
||||
fun refresh(player: Player) {
|
||||
captiveItems.clear()
|
||||
for (i in 0 until inventory.size) {
|
||||
val pair = MenuUtils.convertSlotToRowColumn(i)
|
||||
val row = pair.first!!
|
||||
val column = pair.second!!
|
||||
val slot = menu.getSlot(row, column)
|
||||
if (slot is EcoCaptivatorSlot) {
|
||||
val defaultItem = slot.getItemStack(player)
|
||||
val item = inventory.getItem(i) ?: continue
|
||||
if (item != defaultItem) {
|
||||
captiveItems.add(item)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var i = 0
|
||||
for (row in menu.slots) {
|
||||
for (slot in row) {
|
||||
if (i == menu.rows * 9) {
|
||||
break
|
||||
}
|
||||
val slotItem = slot.getItemStack(player, menu)
|
||||
val meta = slotItem.itemMeta
|
||||
if (meta != null) {
|
||||
val lore = meta.lore
|
||||
if (lore != null) {
|
||||
lore.replaceAll{ s -> StringUtils.format(s, player) }
|
||||
meta.lore = lore
|
||||
}
|
||||
slotItem.itemMeta = meta
|
||||
}
|
||||
if (!slot.isCaptive) {
|
||||
inventory.setItem(i, slotItem)
|
||||
}
|
||||
i++
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4,20 +4,28 @@ import com.willfp.eco.core.gui.menu.Menu
|
||||
import org.bukkit.inventory.Inventory
|
||||
|
||||
object MenuHandler {
|
||||
private val MENUS: MutableMap<Inventory, Menu> = HashMap()
|
||||
private val menus = mutableMapOf<ExtendedInventory, EcoMenu>()
|
||||
private val inventories = mutableMapOf<Inventory, ExtendedInventory>()
|
||||
|
||||
fun registerMenu(
|
||||
inventory: Inventory,
|
||||
menu: Menu
|
||||
menu: EcoMenu
|
||||
) {
|
||||
MENUS[inventory] = menu
|
||||
val extendedInventory = ExtendedInventory(inventory, menu)
|
||||
inventories[inventory] = extendedInventory
|
||||
menus[extendedInventory] = menu
|
||||
}
|
||||
|
||||
fun unregisterMenu(inventory: Inventory) {
|
||||
MENUS.remove(inventory)
|
||||
menus.remove(inventories[inventory])
|
||||
inventories.remove(inventory)
|
||||
}
|
||||
|
||||
fun getMenu(inventory: Inventory): Menu? {
|
||||
return MENUS[inventory]
|
||||
return menus[inventories[inventory]]
|
||||
}
|
||||
|
||||
fun getExtendedInventory(inventory: Inventory): ExtendedInventory? {
|
||||
return inventories[inventory]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
package com.willfp.eco.internal.gui.slot
|
||||
|
||||
import com.willfp.eco.core.Eco
|
||||
import com.willfp.eco.core.gui.slot.functional.SlotHandler
|
||||
import org.bukkit.Material
|
||||
import org.bukkit.inventory.ItemStack
|
||||
|
||||
class EcoCaptivatorSlot : EcoSlot(
|
||||
{ _, _ -> ItemStack(Material.AIR) },
|
||||
allowMovingItem,
|
||||
allowMovingItem,
|
||||
allowMovingItem,
|
||||
allowMovingItem,
|
||||
allowMovingItem,
|
||||
{ _, _, _ -> }
|
||||
) {
|
||||
companion object {
|
||||
val plugin = Eco.getHandler().ecoPlugin!!
|
||||
|
||||
val allowMovingItem = SlotHandler { event, _, _ ->
|
||||
event.isCancelled = false
|
||||
}
|
||||
}
|
||||
|
||||
override fun isCaptive(): Boolean {
|
||||
return true
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,13 @@
|
||||
package com.willfp.eco.internal.gui.slot
|
||||
|
||||
import org.bukkit.inventory.ItemStack
|
||||
import java.util.function.Function
|
||||
|
||||
class EcoFillerSlot(itemStack: ItemStack) : EcoSlot(
|
||||
Function { itemStack },
|
||||
{ _, _ -> },
|
||||
{ _, _ -> },
|
||||
{ _, _ -> },
|
||||
{ _, _ -> },
|
||||
{ _, _ -> }
|
||||
{ _, _ -> itemStack },
|
||||
{ _, _, _ -> },
|
||||
{ _, _, _ -> },
|
||||
{ _, _, _ -> },
|
||||
{ _, _, _ -> },
|
||||
{ _, _, _ -> },
|
||||
{ _, _, _ -> }
|
||||
)
|
||||
@@ -1,34 +1,58 @@
|
||||
package com.willfp.eco.internal.gui.slot
|
||||
|
||||
import com.willfp.eco.core.gui.menu.Menu
|
||||
import com.willfp.eco.core.gui.slot.Slot
|
||||
import com.willfp.eco.core.gui.slot.functional.SlotHandler
|
||||
import com.willfp.eco.core.gui.slot.functional.SlotModifier
|
||||
import com.willfp.eco.core.gui.slot.functional.SlotProvider
|
||||
import com.willfp.eco.internal.gui.menu.MenuHandler
|
||||
import org.bukkit.entity.Player
|
||||
import org.bukkit.event.inventory.ClickType
|
||||
import org.bukkit.event.inventory.InventoryClickEvent
|
||||
import org.bukkit.inventory.ItemStack
|
||||
import java.util.function.BiConsumer
|
||||
import java.util.function.Function
|
||||
|
||||
open class EcoSlot(
|
||||
private val provider: Function<Player, ItemStack>,
|
||||
private val onLeftClick: BiConsumer<InventoryClickEvent, Slot>,
|
||||
private val onRightClick: BiConsumer<InventoryClickEvent, Slot>,
|
||||
private val onShiftLeftClick: BiConsumer<InventoryClickEvent, Slot>,
|
||||
private val onShiftRightClick: BiConsumer<InventoryClickEvent, Slot>,
|
||||
private val onMiddleClick: BiConsumer<InventoryClickEvent, Slot>
|
||||
private val provider: SlotProvider,
|
||||
private val onLeftClick: SlotHandler,
|
||||
private val onRightClick: SlotHandler,
|
||||
private val onShiftLeftClick: SlotHandler,
|
||||
private val onShiftRightClick: SlotHandler,
|
||||
private val onMiddleClick: SlotHandler,
|
||||
private val modifier: SlotModifier
|
||||
) : Slot {
|
||||
|
||||
fun handleInventoryClick(event: InventoryClickEvent) {
|
||||
fun handleInventoryClick(
|
||||
event: InventoryClickEvent,
|
||||
menu: Menu
|
||||
) {
|
||||
when (event.click) {
|
||||
ClickType.LEFT -> this.onLeftClick.accept(event, this)
|
||||
ClickType.RIGHT -> this.onRightClick.accept(event, this)
|
||||
ClickType.SHIFT_LEFT -> this.onShiftLeftClick.accept(event, this)
|
||||
ClickType.SHIFT_RIGHT -> this.onShiftRightClick.accept(event, this)
|
||||
ClickType.MIDDLE -> this.onMiddleClick.accept(event, this)
|
||||
else -> { }
|
||||
ClickType.LEFT -> this.onLeftClick.handle(event, this, menu)
|
||||
ClickType.RIGHT -> this.onRightClick.handle(event, this, menu)
|
||||
ClickType.SHIFT_LEFT -> this.onShiftLeftClick.handle(event, this, menu)
|
||||
ClickType.SHIFT_RIGHT -> this.onShiftRightClick.handle(event, this, menu)
|
||||
ClickType.MIDDLE -> this.onMiddleClick.handle(event, this, menu)
|
||||
else -> {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
override fun getItemStack(player: Player): ItemStack {
|
||||
return provider.apply(player)
|
||||
val menu = MenuHandler.getMenu(player.openInventory.topInventory)!!
|
||||
val prev = provider.provide(player, menu)
|
||||
modifier.modify(player, menu, prev)
|
||||
return prev
|
||||
}
|
||||
|
||||
fun getItemStack(
|
||||
player: Player,
|
||||
menu: Menu
|
||||
): ItemStack {
|
||||
val prev = provider.provide(player, menu)
|
||||
modifier.modify(player, menu, prev)
|
||||
return prev
|
||||
}
|
||||
|
||||
override fun isCaptive(): Boolean {
|
||||
return false
|
||||
}
|
||||
}
|
||||
@@ -2,45 +2,65 @@ package com.willfp.eco.internal.gui.slot
|
||||
|
||||
import com.willfp.eco.core.gui.slot.Slot
|
||||
import com.willfp.eco.core.gui.slot.SlotBuilder
|
||||
import org.bukkit.entity.Player
|
||||
import org.bukkit.event.inventory.InventoryClickEvent
|
||||
import org.bukkit.inventory.ItemStack
|
||||
import java.util.function.BiConsumer
|
||||
import java.util.function.Function
|
||||
import com.willfp.eco.core.gui.slot.functional.SlotHandler
|
||||
import com.willfp.eco.core.gui.slot.functional.SlotModifier
|
||||
import com.willfp.eco.core.gui.slot.functional.SlotProvider
|
||||
|
||||
class EcoSlotBuilder(private val provider: Function<Player, ItemStack>) : SlotBuilder {
|
||||
private var onLeftClick: BiConsumer<InventoryClickEvent, Slot> = BiConsumer { _, _ -> run { } }
|
||||
private var onRightClick: BiConsumer<InventoryClickEvent, Slot> = BiConsumer { _, _ -> run { } }
|
||||
private var onShiftLeftClick: BiConsumer<InventoryClickEvent, Slot> = BiConsumer { _, _ -> run { } }
|
||||
private var onShiftRightClick: BiConsumer<InventoryClickEvent, Slot> = BiConsumer { _, _ -> run { } }
|
||||
private var onMiddleClick: BiConsumer<InventoryClickEvent, Slot> = BiConsumer { _, _ -> run { } }
|
||||
class EcoSlotBuilder(private val provider: SlotProvider) : SlotBuilder {
|
||||
private var captive = false
|
||||
private var modifier: SlotModifier = SlotModifier{ player, menu, _ -> provider.provide(player, menu)}
|
||||
|
||||
override fun onLeftClick(action: BiConsumer<InventoryClickEvent, Slot>): SlotBuilder {
|
||||
private var onLeftClick =
|
||||
SlotHandler { _, _, _ -> run { } }
|
||||
private var onRightClick =
|
||||
SlotHandler { _, _, _ -> run { } }
|
||||
private var onShiftLeftClick =
|
||||
SlotHandler { _, _, _ -> run { } }
|
||||
private var onShiftRightClick =
|
||||
SlotHandler { _, _, _ -> run { } }
|
||||
private var onMiddleClick =
|
||||
SlotHandler { _, _, _ -> run { } }
|
||||
|
||||
override fun onLeftClick(action: SlotHandler): SlotBuilder {
|
||||
onLeftClick = action
|
||||
return this
|
||||
}
|
||||
|
||||
override fun onRightClick(action: BiConsumer<InventoryClickEvent, Slot>): SlotBuilder {
|
||||
override fun onRightClick(action: SlotHandler): SlotBuilder {
|
||||
onRightClick = action
|
||||
return this
|
||||
}
|
||||
|
||||
override fun onShiftLeftClick(action: BiConsumer<InventoryClickEvent, Slot>): SlotBuilder {
|
||||
override fun onShiftLeftClick(action: SlotHandler): SlotBuilder {
|
||||
onShiftLeftClick = action
|
||||
return this
|
||||
}
|
||||
|
||||
override fun onShiftRightClick(action: BiConsumer<InventoryClickEvent, Slot>): SlotBuilder {
|
||||
override fun onShiftRightClick(action: SlotHandler): SlotBuilder {
|
||||
onShiftRightClick = action
|
||||
return this
|
||||
}
|
||||
|
||||
override fun onMiddleClick(action: BiConsumer<InventoryClickEvent, Slot>): SlotBuilder {
|
||||
override fun onMiddleClick(action: SlotHandler): SlotBuilder {
|
||||
onMiddleClick = action
|
||||
return this
|
||||
}
|
||||
|
||||
override fun setCaptive(): SlotBuilder {
|
||||
captive = true
|
||||
return this
|
||||
}
|
||||
|
||||
override fun setModifier(modifier: SlotModifier): SlotBuilder {
|
||||
this.modifier = modifier
|
||||
return this
|
||||
}
|
||||
|
||||
override fun build(): Slot {
|
||||
return EcoSlot(provider, onLeftClick, onRightClick, onShiftLeftClick, onShiftRightClick, onMiddleClick)
|
||||
return if (captive) {
|
||||
EcoCaptivatorSlot()
|
||||
} else {
|
||||
EcoSlot(provider, onLeftClick, onRightClick, onShiftLeftClick, onShiftRightClick, onMiddleClick, modifier)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,6 @@
|
||||
package com.willfp.eco.internal.proxy;
|
||||
package com.willfp.eco.internal.proxy
|
||||
|
||||
import com.willfp.eco.core.EcoPlugin
|
||||
import com.willfp.eco.core.PluginDependent
|
||||
import com.willfp.eco.core.proxy.AbstractProxy
|
||||
import com.willfp.eco.core.proxy.ProxyConstants
|
||||
import com.willfp.eco.core.proxy.ProxyFactory
|
||||
@@ -11,8 +10,8 @@ import java.net.URLClassLoader
|
||||
import java.util.*
|
||||
|
||||
class EcoProxyFactory(
|
||||
plugin: EcoPlugin
|
||||
) : PluginDependent<EcoPlugin>(plugin), ProxyFactory {
|
||||
private val plugin: EcoPlugin
|
||||
) : ProxyFactory {
|
||||
private val proxyClassLoader: ClassLoader = plugin::class.java.classLoader
|
||||
private val cache: MutableMap<Class<out AbstractProxy>, AbstractProxy> = IdentityHashMap()
|
||||
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
package com.willfp.eco.internal.scheduling
|
||||
|
||||
import com.willfp.eco.core.EcoPlugin
|
||||
import com.willfp.eco.core.PluginDependent
|
||||
import com.willfp.eco.core.scheduling.Scheduler
|
||||
import org.bukkit.Bukkit
|
||||
import org.bukkit.scheduler.BukkitTask
|
||||
|
||||
class EcoScheduler(plugin: EcoPlugin) : PluginDependent<EcoPlugin>(plugin), Scheduler {
|
||||
class EcoScheduler(private val plugin: EcoPlugin) : Scheduler {
|
||||
override fun runLater(
|
||||
runnable: Runnable,
|
||||
ticksLater: Long
|
||||
|
||||
@@ -8,7 +8,7 @@ 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.CraftNamespacedKey
|
||||
import org.bukkit.enchantments.Enchantment
|
||||
import java.lang.reflect.Field
|
||||
import org.bukkit.inventory.ItemFlag
|
||||
import kotlin.experimental.and
|
||||
|
||||
class NMSFastItemStack(itemStack: org.bukkit.inventory.ItemStack) : EcoFastItemStack<ItemStack>(
|
||||
@@ -96,33 +96,64 @@ class NMSFastItemStack(itemStack: org.bukkit.inventory.ItemStack) : EcoFastItemS
|
||||
}
|
||||
}
|
||||
|
||||
override fun addItemFlags(vararg hideFlags: ItemFlag) {
|
||||
for (flag in hideFlags) {
|
||||
this.flagBits = this.flagBits or getBitModifier(flag)
|
||||
}
|
||||
|
||||
apply()
|
||||
}
|
||||
|
||||
override fun removeItemFlags(vararg hideFlags: ItemFlag) {
|
||||
for (flag in hideFlags) {
|
||||
this.flagBits = this.flagBits and getBitModifier(flag)
|
||||
}
|
||||
|
||||
apply()
|
||||
}
|
||||
|
||||
override fun getItemFlags(): MutableSet<ItemFlag> {
|
||||
val flags = mutableSetOf<ItemFlag>()
|
||||
|
||||
var flagArr: Array<ItemFlag>
|
||||
val size = ItemFlag.values().also { flagArr = it }.size
|
||||
|
||||
for (i in 0 until size) {
|
||||
val flag = flagArr[i]
|
||||
if (this.hasItemFlag(flag)) {
|
||||
flags.add(flag)
|
||||
}
|
||||
}
|
||||
|
||||
return flags
|
||||
}
|
||||
|
||||
override fun hasItemFlag(flag: ItemFlag): Boolean {
|
||||
val bitModifier = getBitModifier(flag)
|
||||
return this.flagBits and bitModifier == bitModifier
|
||||
}
|
||||
|
||||
private var flagBits: Int
|
||||
get() =
|
||||
if (handle.hasTag() && handle.tag!!.hasKeyOfType(
|
||||
"HideFlags",
|
||||
99
|
||||
)
|
||||
) handle.tag!!.getInt("HideFlags") else 0
|
||||
set(value) =
|
||||
handle.orCreateTag.setInt("HideFlags", value)
|
||||
|
||||
override fun getRepairCost(): Int {
|
||||
return handle.repairCost
|
||||
}
|
||||
|
||||
override fun setRepairCost(cost: Int) {
|
||||
handle.repairCost = cost
|
||||
}
|
||||
|
||||
private fun apply() {
|
||||
if (bukkit !is CraftItemStack) {
|
||||
bukkit.itemMeta = CraftItemStack.asCraftMirror(handle).itemMeta
|
||||
}
|
||||
}
|
||||
|
||||
companion object {
|
||||
private var field: Field
|
||||
|
||||
init {
|
||||
lateinit var temp: Field
|
||||
try {
|
||||
val handleField = CraftItemStack::class.java.getDeclaredField("handle")
|
||||
handleField.isAccessible = true
|
||||
temp = handleField
|
||||
} catch (e: ReflectiveOperationException) {
|
||||
e.printStackTrace()
|
||||
}
|
||||
field = temp
|
||||
}
|
||||
|
||||
fun getNMSStack(itemStack: org.bukkit.inventory.ItemStack): ItemStack? {
|
||||
return if (itemStack !is CraftItemStack) {
|
||||
CraftItemStack.asNMSCopy(itemStack)
|
||||
} else {
|
||||
field.get(itemStack) as ItemStack
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -13,6 +13,7 @@ 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.CraftNamespacedKey
|
||||
import org.bukkit.enchantments.Enchantment
|
||||
import org.bukkit.inventory.ItemFlag
|
||||
import kotlin.experimental.and
|
||||
|
||||
class NMSFastItemStack(itemStack: org.bukkit.inventory.ItemStack) : EcoFastItemStack<ItemStack>(
|
||||
@@ -115,6 +116,61 @@ class NMSFastItemStack(itemStack: org.bukkit.inventory.ItemStack) : EcoFastItemS
|
||||
}
|
||||
}
|
||||
|
||||
override fun addItemFlags(vararg hideFlags: ItemFlag) {
|
||||
for (flag in hideFlags) {
|
||||
this.flagBits = this.flagBits or getBitModifier(flag)
|
||||
}
|
||||
|
||||
apply()
|
||||
}
|
||||
|
||||
override fun removeItemFlags(vararg hideFlags: ItemFlag) {
|
||||
for (flag in hideFlags) {
|
||||
this.flagBits = this.flagBits and getBitModifier(flag)
|
||||
}
|
||||
|
||||
apply()
|
||||
}
|
||||
|
||||
override fun getItemFlags(): MutableSet<ItemFlag> {
|
||||
val flags = mutableSetOf<ItemFlag>()
|
||||
|
||||
var flagArr: Array<ItemFlag>
|
||||
val size = ItemFlag.values().also { flagArr = it }.size
|
||||
|
||||
for (i in 0 until size) {
|
||||
val flag = flagArr[i]
|
||||
if (this.hasItemFlag(flag)) {
|
||||
flags.add(flag)
|
||||
}
|
||||
}
|
||||
|
||||
return flags
|
||||
}
|
||||
|
||||
override fun hasItemFlag(flag: ItemFlag): Boolean {
|
||||
val bitModifier = getBitModifier(flag)
|
||||
return this.flagBits and bitModifier == bitModifier
|
||||
}
|
||||
|
||||
private var flagBits: Int
|
||||
get() =
|
||||
if (handle.hasTag() && handle.tag!!.contains(
|
||||
"HideFlags",
|
||||
99
|
||||
)
|
||||
) handle.tag!!.getInt("HideFlags") else 0
|
||||
set(value) =
|
||||
handle.orCreateTag.putInt("HideFlags", value)
|
||||
|
||||
override fun getRepairCost(): Int {
|
||||
return handle.baseRepairCost
|
||||
}
|
||||
|
||||
override fun setRepairCost(cost: Int) {
|
||||
handle.setRepairCost(cost)
|
||||
}
|
||||
|
||||
private fun apply() {
|
||||
if (bukkit !is CraftItemStack) {
|
||||
bukkit.itemMeta = CraftItemStack.asCraftMirror(handle).itemMeta
|
||||
|
||||
@@ -20,6 +20,7 @@ dependencies {
|
||||
compileOnly 'com.gmail.nossr50.mcMMO:mcMMO:2.1.157'
|
||||
compileOnly 'me.clip:placeholderapi:2.10.9'
|
||||
compileOnly 'com.willfp:Oraxen:e1f4003d8d'
|
||||
compileOnly 'com.github.brcdev-minecraft:shopgui-api:2.2.0'
|
||||
|
||||
compileOnly 'com.github.LoneDev6:API-ItemsAdder:2.3.8'
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@ import com.willfp.eco.core.items.Items;
|
||||
import com.willfp.eco.core.items.TestableItem;
|
||||
import com.willfp.eco.core.recipe.Recipes;
|
||||
import com.willfp.eco.core.recipe.parts.MaterialTestableItem;
|
||||
import com.willfp.eco.core.recipe.parts.ModifiedTestableItem;
|
||||
import com.willfp.eco.core.recipe.parts.TestableStack;
|
||||
import com.willfp.eco.core.recipe.recipes.CraftingRecipe;
|
||||
import com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe;
|
||||
@@ -130,6 +131,22 @@ public class ShapedRecipeListener extends PluginDependent<EcoPlugin> implements
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (part instanceof ModifiedTestableItem modified) {
|
||||
if (modified.getHandle() instanceof MaterialTestableItem) {
|
||||
if (Items.isCustomItem(itemStack)) {
|
||||
event.getInventory().setResult(new ItemStack(Material.AIR));
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (part instanceof TestableStack modified) {
|
||||
if (modified.getHandle() instanceof MaterialTestableItem) {
|
||||
if (Items.isCustomItem(itemStack)) {
|
||||
event.getInventory().setResult(new ItemStack(Material.AIR));
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -156,6 +173,24 @@ public class ShapedRecipeListener extends PluginDependent<EcoPlugin> implements
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (part instanceof ModifiedTestableItem modified) {
|
||||
if (modified.getHandle() instanceof MaterialTestableItem) {
|
||||
if (Items.isCustomItem(itemStack)) {
|
||||
event.getInventory().setResult(new ItemStack(Material.AIR));
|
||||
event.setResult(Event.Result.DENY);
|
||||
event.setCancelled(true);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (part instanceof TestableStack modified) {
|
||||
if (modified.getHandle() instanceof MaterialTestableItem) {
|
||||
if (Items.isCustomItem(itemStack)) {
|
||||
event.getInventory().setResult(new ItemStack(Material.AIR));
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -31,9 +31,9 @@ import com.willfp.eco.internal.integrations.PlaceholderIntegrationPAPI
|
||||
import com.willfp.eco.internal.logging.EcoLogger
|
||||
import com.willfp.eco.internal.proxy.EcoProxyFactory
|
||||
import com.willfp.eco.internal.scheduling.EcoScheduler
|
||||
import com.willfp.eco.proxy.FastItemStackFactoryProxy
|
||||
import com.willfp.eco.spigot.integrations.bstats.MetricHandler
|
||||
import org.bukkit.inventory.ItemStack
|
||||
import com.willfp.eco.proxy.FastItemStackFactoryProxy
|
||||
import java.util.logging.Logger
|
||||
|
||||
@Suppress("UNUSED")
|
||||
@@ -105,7 +105,7 @@ class EcoHandler : EcoSpigotPlugin(), Handler {
|
||||
}
|
||||
|
||||
override fun getLoadedPlugins(): List<String> {
|
||||
return ArrayList(Plugins.LOADED_ECO_PLUGINS.keys)
|
||||
return Plugins.LOADED_ECO_PLUGINS.keys.toMutableList()
|
||||
}
|
||||
|
||||
override fun getPluginByName(name: String): EcoPlugin? {
|
||||
|
||||
@@ -8,6 +8,7 @@ import com.willfp.eco.core.integrations.anticheat.AnticheatManager
|
||||
import com.willfp.eco.core.integrations.antigrief.AntigriefManager
|
||||
import com.willfp.eco.core.integrations.customitems.CustomItemsManager
|
||||
import com.willfp.eco.core.integrations.mcmmo.McmmoManager
|
||||
import com.willfp.eco.core.integrations.shop.ShopManager
|
||||
import com.willfp.eco.internal.drops.DropManager
|
||||
import com.willfp.eco.proxy.BlockBreakProxy
|
||||
import com.willfp.eco.proxy.FastItemStackFactoryProxy
|
||||
@@ -21,6 +22,7 @@ import com.willfp.eco.spigot.integrations.anticheat.*
|
||||
import com.willfp.eco.spigot.integrations.antigrief.*
|
||||
import com.willfp.eco.spigot.integrations.customitems.CustomItemsOraxen
|
||||
import com.willfp.eco.spigot.integrations.mcmmo.McmmoIntegrationImpl
|
||||
import com.willfp.eco.spigot.integrations.shop.ShopShopGuiPlus
|
||||
import com.willfp.eco.spigot.recipes.ShapedRecipeListener
|
||||
import com.willfp.eco.util.BlockUtils
|
||||
import com.willfp.eco.util.SkullUtils
|
||||
@@ -110,6 +112,9 @@ abstract class EcoSpigotPlugin : EcoPlugin(
|
||||
// Custom Items
|
||||
IntegrationLoader("Oraxen") { CustomItemsManager.register(CustomItemsOraxen()) },
|
||||
|
||||
// Shop
|
||||
IntegrationLoader("ShopGuiPlus") { ShopManager.register(ShopShopGuiPlus()) },
|
||||
|
||||
// Misc
|
||||
IntegrationLoader("mcMMO") { McmmoManager.register(McmmoIntegrationImpl()) }
|
||||
)
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
package com.willfp.eco.spigot.arrows
|
||||
|
||||
import com.willfp.eco.core.EcoPlugin
|
||||
import com.willfp.eco.core.PluginDependent
|
||||
import org.bukkit.Material
|
||||
import org.bukkit.entity.Arrow
|
||||
import org.bukkit.entity.LivingEntity
|
||||
@@ -11,8 +10,8 @@ import org.bukkit.event.Listener
|
||||
import org.bukkit.event.entity.ProjectileLaunchEvent
|
||||
|
||||
class ArrowDataListener(
|
||||
plugin: EcoPlugin
|
||||
) : PluginDependent<EcoPlugin>(plugin), Listener {
|
||||
private val plugin: EcoPlugin
|
||||
) : Listener {
|
||||
|
||||
@EventHandler(priority = EventPriority.LOWEST)
|
||||
fun onLaunch(event:ProjectileLaunchEvent) {
|
||||
|
||||
@@ -19,7 +19,7 @@ class PacketOpenWindowMerchant(plugin: EcoPlugin) :
|
||||
player: Player,
|
||||
event: PacketEvent
|
||||
) {
|
||||
val recipes: MutableList<MerchantRecipe> = ArrayList()
|
||||
val recipes = mutableListOf<MerchantRecipe>()
|
||||
|
||||
|
||||
/*
|
||||
|
||||
@@ -8,11 +8,17 @@ class CollatedRunnable(plugin: EcoPlugin) {
|
||||
init {
|
||||
plugin.scheduler.runTimer({
|
||||
for ((key, value) in EcoFastCollatedDropQueue.COLLATED_MAP) {
|
||||
EcoDropQueue(key)
|
||||
val queue = EcoDropQueue(key)
|
||||
.setLocation(value.location)
|
||||
.addItems(value.drops)
|
||||
.addXP(value.xp)
|
||||
.push()
|
||||
|
||||
if (value.telekinetic) {
|
||||
queue.forceTelekinesis()
|
||||
}
|
||||
|
||||
queue.push()
|
||||
|
||||
EcoFastCollatedDropQueue.COLLATED_MAP.remove(key)
|
||||
}
|
||||
EcoFastCollatedDropQueue.COLLATED_MAP.clear()
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
package com.willfp.eco.spigot.eventlisteners
|
||||
|
||||
import com.willfp.eco.core.EcoPlugin
|
||||
import com.willfp.eco.core.PluginDependent
|
||||
import org.bukkit.entity.LivingEntity
|
||||
import org.bukkit.event.EventHandler
|
||||
import org.bukkit.event.EventPriority
|
||||
@@ -11,8 +10,8 @@ import org.bukkit.event.entity.EntityDeathEvent
|
||||
import java.util.concurrent.atomic.AtomicReference
|
||||
|
||||
class EntityDeathByEntityListeners(
|
||||
plugin: EcoPlugin
|
||||
) : PluginDependent<EcoPlugin>(plugin), Listener {
|
||||
private val plugin: EcoPlugin
|
||||
) : Listener {
|
||||
private val events = HashSet<EntityDeathByEntityBuilder>()
|
||||
|
||||
@EventHandler(priority = EventPriority.HIGH)
|
||||
|
||||
@@ -1,45 +1,105 @@
|
||||
package com.willfp.eco.spigot.gui
|
||||
|
||||
import com.willfp.eco.core.EcoPlugin
|
||||
import com.willfp.eco.core.PluginDependent
|
||||
import com.willfp.eco.core.drops.DropQueue
|
||||
import com.willfp.eco.internal.gui.menu.EcoMenu
|
||||
import com.willfp.eco.internal.gui.menu.MenuHandler
|
||||
import com.willfp.eco.internal.gui.slot.EcoSlot
|
||||
import com.willfp.eco.util.MenuUtils
|
||||
import org.apache.commons.lang.Validate
|
||||
import org.bukkit.entity.Player
|
||||
import org.bukkit.event.EventHandler
|
||||
import org.bukkit.event.EventPriority
|
||||
import org.bukkit.event.Listener
|
||||
import org.bukkit.event.inventory.ClickType
|
||||
import org.bukkit.event.inventory.InventoryClickEvent
|
||||
import org.bukkit.event.inventory.InventoryCloseEvent
|
||||
|
||||
class GUIListener(plugin: EcoPlugin) : PluginDependent<EcoPlugin>(plugin), Listener {
|
||||
class GUIListener(private val plugin: EcoPlugin) : Listener {
|
||||
@EventHandler
|
||||
fun handleSlotClick(event: InventoryClickEvent) {
|
||||
if (event.whoClicked !is Player) {
|
||||
val player = event.whoClicked
|
||||
if (player !is Player) {
|
||||
return
|
||||
}
|
||||
if (event.clickedInventory == null) {
|
||||
return
|
||||
}
|
||||
val menu = MenuHandler.getMenu(event.clickedInventory!!) ?: return
|
||||
val row = Math.floorDiv(event.slot, 9)
|
||||
val column = event.slot - row * 9
|
||||
val menu = MenuHandler.getMenu(event.clickedInventory ?: return) ?: return
|
||||
val rowColumn = MenuUtils.convertSlotToRowColumn(event.slot)
|
||||
val row = rowColumn.first!!
|
||||
val column = rowColumn.second!!
|
||||
val slot = menu.getSlot(row, column)
|
||||
Validate.isTrue(slot is EcoSlot, "Slot not instance of EcoSlot!")
|
||||
val ecoSlot = menu.getSlot(row, column) as EcoSlot
|
||||
event.isCancelled = true
|
||||
ecoSlot.handleInventoryClick(event)
|
||||
ecoSlot.handleInventoryClick(event, menu)
|
||||
|
||||
if (event.clickedInventory == null) {
|
||||
return
|
||||
}
|
||||
|
||||
val extendedInventory = MenuHandler.getExtendedInventory(event.clickedInventory!!) ?: return
|
||||
|
||||
plugin.scheduler.run { extendedInventory.refresh(player) }
|
||||
}
|
||||
|
||||
@EventHandler
|
||||
fun handleCaptivatorSlots(event: InventoryClickEvent) {
|
||||
val player = event.whoClicked
|
||||
if (player !is Player) {
|
||||
return
|
||||
}
|
||||
|
||||
MenuHandler.getMenu(player.openInventory.topInventory) ?: return
|
||||
MenuHandler.getExtendedInventory(player.openInventory.topInventory) ?: return
|
||||
|
||||
plugin.scheduler.run { MenuHandler.getExtendedInventory(player.openInventory.topInventory)?.refresh(player) }
|
||||
}
|
||||
|
||||
@EventHandler
|
||||
fun handleShiftClick(event: InventoryClickEvent) {
|
||||
if (!(event.click == ClickType.SHIFT_RIGHT || event.click == ClickType.SHIFT_LEFT)) {
|
||||
return
|
||||
}
|
||||
|
||||
val player = event.whoClicked
|
||||
if (player !is Player) {
|
||||
return
|
||||
}
|
||||
|
||||
val inv = player.openInventory.topInventory
|
||||
|
||||
if (inv == event.clickedInventory) {
|
||||
return
|
||||
}
|
||||
|
||||
val menu = MenuHandler.getMenu(inv) ?: return
|
||||
|
||||
val rowColumn = MenuUtils.convertSlotToRowColumn(inv.firstEmpty())
|
||||
val row = rowColumn.first!!
|
||||
val column = rowColumn.second!!
|
||||
val slot = menu.getSlot(row, column)
|
||||
|
||||
if (!slot.isCaptive) {
|
||||
event.isCancelled = true
|
||||
}
|
||||
}
|
||||
|
||||
@EventHandler(priority = EventPriority.HIGH)
|
||||
fun handleClose(event: InventoryCloseEvent) {
|
||||
if (event.player !is Player) {
|
||||
val player = event.player
|
||||
if (player !is Player) {
|
||||
return
|
||||
}
|
||||
val menu = MenuHandler.getMenu(event.inventory) ?: return
|
||||
Validate.isTrue(menu is EcoMenu, "Menu not instance of EcoMenu!")
|
||||
val ecoMenu = menu as EcoMenu
|
||||
ecoMenu.handleClose(event)
|
||||
|
||||
DropQueue(player)
|
||||
.addItems(ecoMenu.getCaptiveItems(player))
|
||||
.setLocation(player.location)
|
||||
.forceTelekinesis()
|
||||
.push()
|
||||
|
||||
plugin.scheduler.run { MenuHandler.unregisterMenu(event.inventory) }
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,6 @@
|
||||
package com.willfp.eco.spigot.integrations.antigrief
|
||||
|
||||
import com.willfp.eco.core.EcoPlugin
|
||||
import com.willfp.eco.core.PluginDependent
|
||||
import com.willfp.eco.core.integrations.antigrief.AntigriefWrapper
|
||||
import me.angeschossen.lands.api.integration.LandsIntegration
|
||||
import me.angeschossen.lands.api.role.enums.RoleSetting
|
||||
@@ -10,8 +9,8 @@ import org.bukkit.block.Block
|
||||
import org.bukkit.entity.LivingEntity
|
||||
import org.bukkit.entity.Player
|
||||
|
||||
class AntigriefLands(plugin: EcoPlugin) : PluginDependent<EcoPlugin?>(plugin), AntigriefWrapper {
|
||||
private val landsIntegration = LandsIntegration(this.plugin!!)
|
||||
class AntigriefLands(private val plugin: EcoPlugin) : AntigriefWrapper {
|
||||
private val landsIntegration = LandsIntegration(this.plugin)
|
||||
override fun canBreakBlock(
|
||||
player: Player,
|
||||
block: Block
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
package com.willfp.eco.spigot.integrations.shop
|
||||
|
||||
import com.willfp.eco.core.integrations.shop.ShopWrapper
|
||||
import com.willfp.eco.core.items.Items
|
||||
import net.brcdev.shopgui.ShopGuiPlusApi
|
||||
import net.brcdev.shopgui.provider.item.ItemProvider
|
||||
import org.bukkit.configuration.ConfigurationSection
|
||||
import org.bukkit.inventory.ItemStack
|
||||
|
||||
class ShopShopGuiPlus : ShopWrapper {
|
||||
override fun registerEcoProvider() {
|
||||
ShopGuiPlusApi.registerItemProvider(EcoShopGuiPlusProvider())
|
||||
}
|
||||
|
||||
class EcoShopGuiPlusProvider : ItemProvider("eco") {
|
||||
override fun isValidItem(itemStack: ItemStack?): Boolean {
|
||||
itemStack ?: return false
|
||||
|
||||
return Items.isCustomItem(itemStack)
|
||||
}
|
||||
|
||||
override fun loadItem(configurationSection: ConfigurationSection): ItemStack? {
|
||||
val id = configurationSection.getString("eco")
|
||||
return if (id == null) null else Items.lookup(id)?.item
|
||||
}
|
||||
|
||||
override fun compare(itemStack1: ItemStack, itemStack2: ItemStack): Boolean {
|
||||
return Items.getCustomItem(itemStack1)?.key == Items.getCustomItem(itemStack2)?.key
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -20,6 +20,7 @@ softdepend:
|
||||
- PlaceholderAPI
|
||||
- mcMMO
|
||||
- CombatLogX
|
||||
- ShopGuiPlus
|
||||
libraries:
|
||||
- org.reflections:reflections:0.9.12
|
||||
- org.apache.maven:maven-artifact:3.0.3
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
version = 6.3.1
|
||||
version = 6.6.0
|
||||
plugin-name = eco
|
||||
Reference in New Issue
Block a user