From ccdefe97a31b0b0eae097d5aa50e4a99472eda8e Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Fri, 1 Apr 2022 23:56:56 -0500 Subject: [PATCH] Let's try something --- .../java/dev/plex/config/ModuleConfig.java | 123 ------------------ 1 file changed, 123 deletions(-) delete mode 100644 src/main/java/dev/plex/config/ModuleConfig.java diff --git a/src/main/java/dev/plex/config/ModuleConfig.java b/src/main/java/dev/plex/config/ModuleConfig.java deleted file mode 100644 index 36e3347..0000000 --- a/src/main/java/dev/plex/config/ModuleConfig.java +++ /dev/null @@ -1,123 +0,0 @@ -package dev.plex.config; - -import dev.plex.module.PlexModule; -import java.io.File; -import java.io.IOException; -import java.nio.file.Files; -import org.bukkit.configuration.InvalidConfigurationException; -import org.bukkit.configuration.file.YamlConfiguration; - -/** - * Creates a custom Config object - */ -public class ModuleConfig extends YamlConfiguration -{ - /** - * The plugin instance - */ - private PlexModule module; - - /** - * The File instance - */ - private File file; - - /** - * The file name - */ - private String name; - - /** - * Creates a config object - * - * @param module The module instance - * @param name The file name - */ - public ModuleConfig(PlexModule module, String name) - { - this.module = module; - this.file = new File(module.getDataFolder(), name); - this.name = name; - - if (!file.exists()) - { - saveDefault(); - } - } - - public void load() - { - try - { - super.load(file); - } - catch (IOException | InvalidConfigurationException ex) - { - ex.printStackTrace(); - } - } - - /** - * Saves the configuration file - */ - public void save() - { - try - { - super.save(file); - } - catch (Exception ex) - { - ex.printStackTrace(); - } - } - - /** - * Moves the configuration file from the plugin's resources folder to the data folder (plugins/Plex/) - */ - private void saveDefault() - { - try - { - Files.copy(module.getClass().getResourceAsStream("/" + name), this.file.toPath()); - } - catch (IOException e) - { - e.printStackTrace(); - } - /*if (name == null || name.equals("")) { - throw new IllegalArgumentException("ResourcePath cannot be null or empty"); - } - - name = name.replace('\\', '/'); - InputStream in = module.getResource("/" + name); - if (in == null) { - throw new IllegalArgumentException("The embedded resource '" + name + "'"); - } - - File outFile = new File(module.getDataFolder(), name); - int lastIndex = name.lastIndexOf('/'); - File outDir = new File(module.getDataFolder(), name.substring(0, lastIndex >= 0 ? lastIndex : 0)); - - if (!outDir.exists()) { - outDir.mkdirs(); - } - - try { - if (!outFile.exists()) { - OutputStream out = new FileOutputStream(outFile); - byte[] buf = new byte[1024]; - int len; - while ((len = in.read(buf)) > 0) { - out.write(buf, 0, len); - } - out.close(); - in.close(); - } else { - module.getLogger().log(org.apache.logging.log4j.Level.INFO, "Could not save " + outFile.getName() + " to " + outFile + " because " + outFile.getName() + " already exists."); - } - } catch (IOException ex) { - module.getLogger().log(Level.ERROR, "Could not save " + outFile.getName() + " to " + outFile, ex); - }*/ - } -} \ No newline at end of file