mirror of
https://github.com/SimplexDevelopment/ToolAssist.git
synced 2024-12-21 23:57:36 +00:00
Alpha 1.0.0 RC01
Pretty sure this is done. Fully configurable. Simple. Lightweight. Effective. Up to date.
This commit is contained in:
parent
8b69f92762
commit
724222553f
@ -3,7 +3,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group = 'io.github.simplex'
|
group = 'io.github.simplex'
|
||||||
version = '1.0.0'
|
version = 'v1.0-Alpha'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
38
src/main/java/io/github/simplex/toolassist/MineListener.java
Normal file
38
src/main/java/io/github/simplex/toolassist/MineListener.java
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
package io.github.simplex.toolassist;
|
||||||
|
|
||||||
|
import io.github.simplex.toolassist.data.BlockIdentifier;
|
||||||
|
import io.github.simplex.toolassist.data.Config;
|
||||||
|
import org.bukkit.block.Block;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.event.EventHandler;
|
||||||
|
import org.bukkit.event.Listener;
|
||||||
|
import org.bukkit.event.block.BlockBreakEvent;
|
||||||
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class MineListener implements Listener {
|
||||||
|
private final BlockIdentifier identifier;
|
||||||
|
private final Config.Settings settings;
|
||||||
|
|
||||||
|
public MineListener(ToolAssist plugin) {
|
||||||
|
this.settings = plugin.getConfig().getSettings();
|
||||||
|
this.identifier = new BlockIdentifier(plugin);
|
||||||
|
plugin.getServer().getPluginManager().registerEvents(this, plugin);
|
||||||
|
}
|
||||||
|
|
||||||
|
@EventHandler
|
||||||
|
public void activate(BlockBreakEvent event) {
|
||||||
|
Player player = event.getPlayer();
|
||||||
|
ItemStack stack = player.getInventory().getItemInMainHand();
|
||||||
|
Block block = event.getBlock();
|
||||||
|
String permission = settings.permission();
|
||||||
|
List<Block> blocks = identifier.populateAndRetrieve(block, stack);
|
||||||
|
|
||||||
|
if (!player.hasPermission(permission)) return;
|
||||||
|
|
||||||
|
if (!player.isSneaking() && settings.useSneak()) return;
|
||||||
|
|
||||||
|
blocks.forEach(Block::breakNaturally);
|
||||||
|
}
|
||||||
|
}
|
@ -11,12 +11,18 @@ public final class ToolAssist extends JavaPlugin {
|
|||||||
@Override
|
@Override
|
||||||
public void onEnable() {
|
public void onEnable() {
|
||||||
// Plugin startup logic
|
// Plugin startup logic
|
||||||
|
getLogger().info("Initializing configuration...");
|
||||||
this.config = new Config(this);
|
this.config = new Config(this);
|
||||||
|
getLogger().info("Initialization complete! Registering listener...");
|
||||||
|
new MineListener(this);
|
||||||
|
getLogger().info("Initialization complete!");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onDisable() {
|
public void onDisable() {
|
||||||
// Plugin shutdown logic
|
this.config.osave();
|
||||||
|
this.config = null;
|
||||||
|
getLogger().info("Goodbye!");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -2,46 +2,76 @@ package io.github.simplex.toolassist.data;
|
|||||||
|
|
||||||
import io.github.simplex.toolassist.ToolAssist;
|
import io.github.simplex.toolassist.ToolAssist;
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.Material;
|
|
||||||
import org.bukkit.block.Block;
|
import org.bukkit.block.Block;
|
||||||
import org.bukkit.block.BlockFace;
|
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
|
||||||
|
|
||||||
public class BlockIdentifier {
|
public class BlockIdentifier {
|
||||||
private final List<Block> blockList = new ArrayList<>();
|
private final List<Block> blockList = new ArrayList<>();
|
||||||
private final List<Location> blockLocations = new ArrayList<>();
|
|
||||||
private final ToolAssist plugin;
|
private final ToolAssist plugin;
|
||||||
|
boolean isValid = false;
|
||||||
|
|
||||||
public BlockIdentifier(ToolAssist plugin) {
|
public BlockIdentifier(ToolAssist plugin) {
|
||||||
this.plugin = plugin;
|
this.plugin = plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<Block> populateAndRetrieve(Block block) {
|
public List<Block> populateAndRetrieve(Block block, ItemStack requiredItem) {
|
||||||
Location start = block.getLocation().clone();
|
Location start = block.getLocation().clone();
|
||||||
|
int radius = plugin.getConfig().getSettings().radius();
|
||||||
|
List<Block> surroundingBlocks = new ArrayList<>();
|
||||||
|
for (double x = start.getX() - radius; x <= start.getX() + radius; x++) {
|
||||||
|
for (double y = start.getY() - radius; y <= start.getY() + radius; y++) {
|
||||||
|
for (double z = start.getZ() - radius; z <= start.getZ() + radius; z++) {
|
||||||
|
Location location = new Location(start.getWorld(), x, y, z);
|
||||||
|
if (checkBlock(location.getBlock(), requiredItem)) {
|
||||||
|
surroundingBlocks.add(location.getBlock());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
blockList.addAll(surroundingBlocks);
|
||||||
|
|
||||||
return blockList;
|
return blockList;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean checkBlock(Block block, ItemStack targetItem) {
|
public boolean checkBlock(Block block, ItemStack targetItem) {
|
||||||
AtomicBoolean isValid = new AtomicBoolean(false);
|
if (plugin.getConfig().getSettings().noConfig()) {
|
||||||
|
return block.isValidTool(targetItem);
|
||||||
if (plugin.getConfig().getSettings().useTags()) {
|
|
||||||
TagBox.oreTagList().forEach(tag -> {
|
|
||||||
if (tag.isTagged(block.getType())) isValid.set(true);
|
|
||||||
});
|
|
||||||
return isValid.get();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Material m = block.getType();
|
checkBlockConfig(block, targetItem);
|
||||||
Material item = targetItem.getType();
|
return isValid;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: Tag or Material checks for the item, then the respective block type.
|
private void checkBlockConfig(Block block, ItemStack targetItem) {
|
||||||
|
String itemName = targetItem.getType().name();
|
||||||
return isValid.get();
|
Config.Settings settings = plugin.getConfig().getSettings();
|
||||||
|
if (itemName.endsWith("pickaxe")) {
|
||||||
|
if (settings.pickaxeMaterials().contains(block.getType())) isValid = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!itemName.endsWith("pickaxe") && itemName.endsWith("axe")) {
|
||||||
|
if (settings.axeMaterials().contains(block.getType())) isValid = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (itemName.endsWith("shears")) {
|
||||||
|
if (settings.shearMaterials().contains(block.getType())) isValid = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (itemName.endsWith("shovel")) {
|
||||||
|
if (settings.shovelMaterials().contains(block.getType())) isValid = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (itemName.endsWith("hoe")) {
|
||||||
|
if (settings.hoeMaterials().contains(block.getType())) isValid = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (itemName.endsWith("sword")) {
|
||||||
|
if (settings.swordMaterials().contains(block.getType())) isValid = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
isValid = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,11 +8,15 @@ import org.bukkit.configuration.file.YamlConfiguration;
|
|||||||
|
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.*;
|
import java.util.Optional;
|
||||||
|
import java.util.Set;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
@SuppressWarnings("ResultOfMethodCallIgnored")
|
||||||
public class Config extends YamlConfiguration {
|
public class Config extends YamlConfiguration {
|
||||||
|
|
||||||
private final Settings settings;
|
private final Settings settings;
|
||||||
|
private final File cf;
|
||||||
|
|
||||||
public Config(ToolAssist plugin) {
|
public Config(ToolAssist plugin) {
|
||||||
this.settings = new Settings(this);
|
this.settings = new Settings(this);
|
||||||
@ -23,7 +27,7 @@ public class Config extends YamlConfiguration {
|
|||||||
|
|
||||||
if (!dataFolder.exists()) dataFolder.mkdirs();
|
if (!dataFolder.exists()) dataFolder.mkdirs();
|
||||||
|
|
||||||
File cf = new File(dataFolder, fileName);
|
cf = new File(dataFolder, fileName);
|
||||||
|
|
||||||
InputStream stream = plugin.getResource(fileName);
|
InputStream stream = plugin.getResource(fileName);
|
||||||
assert stream != null;
|
assert stream != null;
|
||||||
@ -34,7 +38,7 @@ public class Config extends YamlConfiguration {
|
|||||||
plugin.saveResource(fileName, true);
|
plugin.saveResource(fileName, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
oload(cf);
|
oload();
|
||||||
|
|
||||||
reader.lines().filter(s -> s.contains(":"))
|
reader.lines().filter(s -> s.contains(":"))
|
||||||
.map(s -> s.split(":")[0])
|
.map(s -> s.split(":")[0])
|
||||||
@ -42,11 +46,12 @@ public class Config extends YamlConfiguration {
|
|||||||
.forEach(s -> {
|
.forEach(s -> {
|
||||||
plugin.getLogger().severe("Configuration is missing an entry, attempting to replace...");
|
plugin.getLogger().severe("Configuration is missing an entry, attempting to replace...");
|
||||||
Optional<String> stringStream = reader.lines().filter(c -> c.contains(s)).findFirst();
|
Optional<String> stringStream = reader.lines().filter(c -> c.contains(s)).findFirst();
|
||||||
assert stringStream.isPresent();
|
if (stringStream.isEmpty())
|
||||||
|
throw new RuntimeException("Unable to fix your configuration file. Please delete the config.yml in the data folder and restart your server.");
|
||||||
String key = stringStream.get().split(":")[0].trim();
|
String key = stringStream.get().split(":")[0].trim();
|
||||||
String value = stringStream.get().split(":")[1].trim();
|
String value = stringStream.get().split(":")[1].trim();
|
||||||
super.addDefault(key, value);
|
super.addDefault(key, value);
|
||||||
osave(cf);
|
osave();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
@ -54,10 +59,10 @@ public class Config extends YamlConfiguration {
|
|||||||
plugin.getLogger().severe(ex.getMessage());
|
plugin.getLogger().severe(ex.getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
oload(cf);
|
oload();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void osave(File cf) {
|
public void osave() {
|
||||||
try {
|
try {
|
||||||
super.save(cf);
|
super.save(cf);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
@ -65,7 +70,7 @@ public class Config extends YamlConfiguration {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void oload(File cf) {
|
public void oload() {
|
||||||
try {
|
try {
|
||||||
super.load(cf);
|
super.load(cf);
|
||||||
} catch (IOException | InvalidConfigurationException e) {
|
} catch (IOException | InvalidConfigurationException e) {
|
||||||
@ -86,8 +91,12 @@ public class Config extends YamlConfiguration {
|
|||||||
this.tool_settings = config.getConfigurationSection("tool_settings");
|
this.tool_settings = config.getConfigurationSection("tool_settings");
|
||||||
}
|
}
|
||||||
|
|
||||||
public final boolean useTags() {
|
public final String permission() {
|
||||||
return plugin_settings.getBoolean("use_tags_no_config", false);
|
return plugin_settings.getString("permission", "toolassist.activate");
|
||||||
|
}
|
||||||
|
|
||||||
|
public final boolean noConfig() {
|
||||||
|
return plugin_settings.getBoolean("no_config", false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public final boolean useSneak() {
|
public final boolean useSneak() {
|
||||||
@ -99,57 +108,45 @@ public class Config extends YamlConfiguration {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public final Set<Material> pickaxeMaterials() {
|
public final Set<Material> pickaxeMaterials() {
|
||||||
Set<Material> materials = new HashSet<>();
|
return tool_settings.getStringList("pickaxe")
|
||||||
tool_settings.getStringList("pickaxe")
|
|
||||||
.stream()
|
.stream()
|
||||||
.map(Material::matchMaterial)
|
.map(Material::matchMaterial)
|
||||||
.forEach(materials::add);
|
.collect(Collectors.toSet());
|
||||||
return materials;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public final Set<Material> axeMaterials() {
|
public final Set<Material> axeMaterials() {
|
||||||
Set<Material> materials = new HashSet<>();
|
return tool_settings.getStringList("axe")
|
||||||
tool_settings.getStringList("axe")
|
|
||||||
.stream()
|
.stream()
|
||||||
.map(Material::matchMaterial)
|
.map(Material::matchMaterial)
|
||||||
.forEach(materials::add);
|
.collect(Collectors.toSet());
|
||||||
return materials;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public final Set<Material> shovelMaterials() {
|
public final Set<Material> shovelMaterials() {
|
||||||
Set<Material> materials = new HashSet<>();
|
return tool_settings.getStringList("shovel")
|
||||||
tool_settings.getStringList("shovel")
|
|
||||||
.stream()
|
.stream()
|
||||||
.map(Material::matchMaterial)
|
.map(Material::matchMaterial)
|
||||||
.forEach(materials::add);
|
.collect(Collectors.toSet());
|
||||||
return materials;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public final Set<Material> hoeMaterials() {
|
public final Set<Material> hoeMaterials() {
|
||||||
Set<Material> materials = new HashSet<>();
|
return tool_settings.getStringList("hoe")
|
||||||
tool_settings.getStringList("hoe")
|
|
||||||
.stream()
|
.stream()
|
||||||
.map(Material::matchMaterial)
|
.map(Material::matchMaterial)
|
||||||
.forEach(materials::add);
|
.collect(Collectors.toSet());
|
||||||
return materials;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public final Set<Material> swordMaterials() {
|
public final Set<Material> swordMaterials() {
|
||||||
Set<Material> materials = new HashSet<>();
|
return tool_settings.getStringList("sword")
|
||||||
tool_settings.getStringList("sword")
|
|
||||||
.stream()
|
.stream()
|
||||||
.map(Material::matchMaterial)
|
.map(Material::matchMaterial)
|
||||||
.forEach(materials::add);
|
.collect(Collectors.toSet());
|
||||||
return materials;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public final Set<Material> shearMaterials() {
|
public final Set<Material> shearMaterials() {
|
||||||
Set<Material> materials = new HashSet<>();
|
return tool_settings.getStringList("shears")
|
||||||
tool_settings.getStringList("shears")
|
|
||||||
.stream()
|
.stream()
|
||||||
.map(Material::matchMaterial)
|
.map(Material::matchMaterial)
|
||||||
.forEach(materials::add);
|
.collect(Collectors.toSet());
|
||||||
return materials;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,39 +0,0 @@
|
|||||||
package io.github.simplex.toolassist.data;
|
|
||||||
|
|
||||||
import org.bukkit.Material;
|
|
||||||
import org.bukkit.Tag;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class TagBox {
|
|
||||||
public static List<Tag<Material>> oreTagList() {
|
|
||||||
return List.of(Tag.COAL_ORES,
|
|
||||||
Tag.IRON_ORES,
|
|
||||||
Tag.COPPER_ORES,
|
|
||||||
Tag.GOLD_ORES,
|
|
||||||
Tag.DIAMOND_ORES,
|
|
||||||
Tag.REDSTONE_ORES,
|
|
||||||
Tag.EMERALD_ORES,
|
|
||||||
Tag.LAPIS_ORES);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Tag<Material> leaves() {
|
|
||||||
return Tag.LEAVES;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Tag<Material> sandType() {
|
|
||||||
return Tag.SAND;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Tag<Material> wart() {
|
|
||||||
return Tag.WART_BLOCKS;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Tag<Material> logs() {
|
|
||||||
return Tag.LOGS;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Tag<Material> vines() {
|
|
||||||
return Tag.CAVE_VINES;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,14 +1,17 @@
|
|||||||
# The overall settings for the plugin itself
|
# The overall settings for the plugin itself
|
||||||
plugin_settings:
|
plugin_settings:
|
||||||
|
|
||||||
|
# The permission required to use the assist feature.
|
||||||
|
permission: "toolassist.activate"
|
||||||
|
|
||||||
# How many blocks outwards should be scanned
|
# How many blocks outwards should be scanned
|
||||||
search_radius: 15
|
search_radius: 15
|
||||||
|
|
||||||
# Whether a user must be sneaking to activate
|
# Whether a user must be sneaking to activate
|
||||||
sneak_activation: true
|
sneak_activation: true
|
||||||
|
|
||||||
# Whether to use Tag<Material> to get the appropriate materials, or to use the groupings listed below.
|
# Whether to use the respective tool to trigger activation, or to use the groupings listed below.
|
||||||
use_tags_no_config: false
|
no_config: false
|
||||||
|
|
||||||
# The block material that can be targeted by the respective tool grouping
|
# The block material that can be targeted by the respective tool grouping
|
||||||
tool_settings:
|
tool_settings:
|
||||||
|
@ -3,4 +3,4 @@ version: '${version}'
|
|||||||
main: io.github.simplex.toolassist.ToolAssist
|
main: io.github.simplex.toolassist.ToolAssist
|
||||||
api-version: 1.18
|
api-version: 1.18
|
||||||
authors: [ SimplexDevelopment ]
|
authors: [ SimplexDevelopment ]
|
||||||
description: A better vein miner plugin.
|
description: A lightweight vein-mining plugin.
|
||||||
|
Loading…
Reference in New Issue
Block a user