mirror of
https://github.com/CarmJos/MineConfiguration.git
synced 2026-06-04 21:58:16 +08:00
feat(item): 支持为插入的LORE设置偏移量,以便在上方、下方空行,分割功能。
This commit is contained in:
+1
-1
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>mineconfiguration-parent</artifactId>
|
<artifactId>mineconfiguration-parent</artifactId>
|
||||||
<groupId>cc.carm.lib</groupId>
|
<groupId>cc.carm.lib</groupId>
|
||||||
<version>2.8.2</version>
|
<version>2.8.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<properties>
|
<properties>
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>mineconfiguration-parent</artifactId>
|
<artifactId>mineconfiguration-parent</artifactId>
|
||||||
<groupId>cc.carm.lib</groupId>
|
<groupId>cc.carm.lib</groupId>
|
||||||
<version>2.8.2</version>
|
<version>2.8.3</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|||||||
+57
-3
@@ -7,12 +7,15 @@ import cc.carm.lib.mineconfiguration.bukkit.builder.item.ItemConfigBuilder;
|
|||||||
import cc.carm.lib.mineconfiguration.bukkit.utils.TextParser;
|
import cc.carm.lib.mineconfiguration.bukkit.utils.TextParser;
|
||||||
import cc.carm.lib.mineconfiguration.common.utils.ParamsUtils;
|
import cc.carm.lib.mineconfiguration.common.utils.ParamsUtils;
|
||||||
import com.cryptomorin.xseries.XItemStack;
|
import com.cryptomorin.xseries.XItemStack;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.OfflinePlayer;
|
||||||
import org.bukkit.configuration.ConfigurationSection;
|
import org.bukkit.configuration.ConfigurationSection;
|
||||||
import org.bukkit.enchantments.Enchantment;
|
import org.bukkit.enchantments.Enchantment;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.inventory.ItemFlag;
|
import org.bukkit.inventory.ItemFlag;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.bukkit.inventory.meta.ItemMeta;
|
import org.bukkit.inventory.meta.ItemMeta;
|
||||||
|
import org.bukkit.inventory.meta.SkullMeta;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
@@ -24,7 +27,8 @@ import java.util.regex.Pattern;
|
|||||||
|
|
||||||
public class ConfiguredItem extends ConfiguredSection<ItemStack> {
|
public class ConfiguredItem extends ConfiguredSection<ItemStack> {
|
||||||
|
|
||||||
public static final @NotNull Pattern LORE_INSERT_PATTERN = Pattern.compile("^#(.*)#$");
|
public static final @NotNull Pattern LORE_INSERT_PATTERN = Pattern.compile("^#(.*)#(\\{\\w+})?$");
|
||||||
|
public static final @NotNull Pattern LORE_OFFSET_PATTERN = Pattern.compile("\\{(-?\\d+)(?:,(-?\\d+))?}");
|
||||||
|
|
||||||
public static ItemConfigBuilder create() {
|
public static ItemConfigBuilder create() {
|
||||||
return new ItemConfigBuilder();
|
return new ItemConfigBuilder();
|
||||||
@@ -134,7 +138,7 @@ public class ConfiguredItem extends ConfiguredSection<ItemStack> {
|
|||||||
}).orElse(null);
|
}).orElse(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected static List<String> insertLore(List<String> original, Map<String, List<String>> inserted) {
|
public static List<String> insertLore(List<String> original, Map<String, List<String>> inserted) {
|
||||||
if (original == null) return Collections.emptyList();
|
if (original == null) return Collections.emptyList();
|
||||||
|
|
||||||
List<String> finalLore = new ArrayList<>();
|
List<String> finalLore = new ArrayList<>();
|
||||||
@@ -146,13 +150,38 @@ public class ConfiguredItem extends ConfiguredSection<ItemStack> {
|
|||||||
finalLore.add(line);
|
finalLore.add(line);
|
||||||
} else {
|
} else {
|
||||||
String path = matcher.group(1);
|
String path = matcher.group(1);
|
||||||
Optional.ofNullable(inserted.get(path)).ifPresent(finalLore::addAll);
|
String offset = matcher.group(2);
|
||||||
|
finalLore.addAll(addLoreOffset(inserted.get(path), offset));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return finalLore;
|
return finalLore;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static List<String> addLoreOffset(List<String> lore, String offsetSettings) {
|
||||||
|
if (lore == null || lore.isEmpty()) return Collections.emptyList();
|
||||||
|
if (offsetSettings == null) return lore;
|
||||||
|
|
||||||
|
Matcher offsetMatcher = LORE_OFFSET_PATTERN.matcher(offsetSettings);
|
||||||
|
if (!offsetMatcher.matches()) return lore;
|
||||||
|
|
||||||
|
int upOffset = Optional.ofNullable(offsetMatcher.group(1)).map(Integer::parseInt).orElse(0);
|
||||||
|
int downOffset = Optional.ofNullable(offsetMatcher.group(2)).map(Integer::parseInt).orElse(0);
|
||||||
|
|
||||||
|
return addLoreOffset(lore, upOffset, downOffset);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static List<String> addLoreOffset(List<String> lore, int upOffset, int downOffset) {
|
||||||
|
if (lore == null || lore.isEmpty()) return Collections.emptyList();
|
||||||
|
upOffset = Math.max(0, upOffset);
|
||||||
|
downOffset = Math.max(0, downOffset);
|
||||||
|
|
||||||
|
ArrayList<String> finalLore = new ArrayList<>(lore);
|
||||||
|
for (int i = 0; i < upOffset; i++) finalLore.add(0, " ");
|
||||||
|
for (int i = 0; i < downOffset; i++) finalLore.add(finalLore.size(), " ");
|
||||||
|
|
||||||
|
return finalLore;
|
||||||
|
}
|
||||||
|
|
||||||
public static class PreparedItem {
|
public static class PreparedItem {
|
||||||
|
|
||||||
@@ -233,6 +262,31 @@ public class ConfiguredItem extends ConfiguredSection<ItemStack> {
|
|||||||
return addItemFlags(ItemFlag.HIDE_ENCHANTS).addEnchantment(Enchantment.DURABILITY);
|
return addItemFlags(ItemFlag.HIDE_ENCHANTS).addEnchantment(Enchantment.DURABILITY);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param owner 玩家名
|
||||||
|
* @return this
|
||||||
|
* @deprecated Use {@link #setSkullOwner(OfflinePlayer)} instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public PreparedItem setSkullOwner(String owner) {
|
||||||
|
return modifyItem((item, player) -> {
|
||||||
|
if (!(item.getItemMeta() instanceof SkullMeta)) return;
|
||||||
|
SkullMeta meta = (SkullMeta) item.getItemMeta();
|
||||||
|
meta.setOwner(owner);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public PreparedItem setSkullOwner(UUID owner) {
|
||||||
|
return setSkullOwner(Bukkit.getOfflinePlayer(owner));
|
||||||
|
}
|
||||||
|
|
||||||
|
public PreparedItem setSkullOwner(OfflinePlayer owner) {
|
||||||
|
return modifyItem((item, player) -> {
|
||||||
|
if (!(item.getItemMeta() instanceof SkullMeta)) return;
|
||||||
|
SkullMeta meta = (SkullMeta) item.getItemMeta();
|
||||||
|
meta.setOwningPlayer(owner);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
public @Nullable ItemStack get(Player player) {
|
public @Nullable ItemStack get(Player player) {
|
||||||
return Optional.ofNullable(itemConfig.get(player, values, insertLore)).map(item -> {
|
return Optional.ofNullable(itemConfig.get(player, values, insertLore)).map(item -> {
|
||||||
|
|||||||
@@ -0,0 +1,20 @@
|
|||||||
|
import cc.carm.lib.mineconfiguration.bukkit.value.ConfiguredItem;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
|
public class LoreOffsetTest {
|
||||||
|
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void lore() {
|
||||||
|
|
||||||
|
System.out.println(ConfiguredItem.addLoreOffset(Arrays.asList("测试lore", "第二行"), "{1,-5}"));
|
||||||
|
System.out.println(ConfiguredItem.addLoreOffset(Arrays.asList("测试lore", "第二行"), "{1,2}"));
|
||||||
|
System.out.println(ConfiguredItem.addLoreOffset(Arrays.asList("测试lore", "第二行"), "{1,0}"));
|
||||||
|
System.out.println(ConfiguredItem.addLoreOffset(Arrays.asList("测试lore", "第二行"), "{2}"));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>mineconfiguration-parent</artifactId>
|
<artifactId>mineconfiguration-parent</artifactId>
|
||||||
<groupId>cc.carm.lib</groupId>
|
<groupId>cc.carm.lib</groupId>
|
||||||
<version>2.8.2</version>
|
<version>2.8.3</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
<groupId>cc.carm.lib</groupId>
|
<groupId>cc.carm.lib</groupId>
|
||||||
<artifactId>mineconfiguration-parent</artifactId>
|
<artifactId>mineconfiguration-parent</artifactId>
|
||||||
<version>2.8.2</version>
|
<version>2.8.3</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<modules>
|
<modules>
|
||||||
<module>common</module>
|
<module>common</module>
|
||||||
|
|||||||
Reference in New Issue
Block a user