Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-08 04:20:06 +01:00
Use configurate for configuration
Dieser Commit ist enthalten in:
Ursprung
da33245842
Commit
27b6efefdb
@ -21,6 +21,7 @@ apply plugin: 'net.minecrell.vanilla.server.library'
|
|||||||
dependencies {
|
dependencies {
|
||||||
compile project(':worldedit-core')
|
compile project(':worldedit-core')
|
||||||
compile 'org.spongepowered:spongeapi:4.+'
|
compile 'org.spongepowered:spongeapi:4.+'
|
||||||
|
compile 'ninja.leaping.configurate:configurate-hocon:3.1'
|
||||||
testCompile group: 'org.mockito', name: 'mockito-core', version:'1.9.0-rc1'
|
testCompile group: 'org.mockito', name: 'mockito-core', version:'1.9.0-rc1'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -94,12 +94,12 @@ public class SpongeWorldEdit {
|
|||||||
public void preInit(GamePreInitializationEvent event) {
|
public void preInit(GamePreInitializationEvent event) {
|
||||||
// Setup working directory
|
// Setup working directory
|
||||||
ConfigManager service = Sponge.getGame().getConfigManager();
|
ConfigManager service = Sponge.getGame().getConfigManager();
|
||||||
Path path = service.getPluginConfig(this).getDirectory();
|
|
||||||
|
|
||||||
|
Path path = service.getPluginConfig(this).getDirectory();
|
||||||
workingDir = path.toFile();
|
workingDir = path.toFile();
|
||||||
workingDir.mkdir();
|
workingDir.mkdir();
|
||||||
|
|
||||||
config = new SpongeConfiguration(this);
|
config = new SpongeConfiguration(service.getPluginConfig(this).getConfig(), logger);
|
||||||
config.load();
|
config.load();
|
||||||
|
|
||||||
Task.builder().interval(30, TimeUnit.SECONDS).execute(ThreadSafeCache.getInstance()).submit(this);
|
Task.builder().interval(30, TimeUnit.SECONDS).execute(ThreadSafeCache.getInstance()).submit(this);
|
||||||
|
@ -0,0 +1,123 @@
|
|||||||
|
/*
|
||||||
|
* WorldEdit, a Minecraft world manipulation toolkit
|
||||||
|
* Copyright (C) sk89q <http://www.sk89q.com>
|
||||||
|
* Copyright (C) WorldEdit team and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify it
|
||||||
|
* under the terms of the GNU Lesser General Public License as published by the
|
||||||
|
* Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
|
||||||
|
* for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.sk89q.worldedit.sponge.config;
|
||||||
|
|
||||||
|
import com.google.common.reflect.TypeToken;
|
||||||
|
import com.sk89q.worldedit.LocalConfiguration;
|
||||||
|
import com.sk89q.worldedit.LocalSession;
|
||||||
|
import com.sk89q.worldedit.session.SessionManager;
|
||||||
|
import com.sk89q.worldedit.world.snapshot.SnapshotRepository;
|
||||||
|
import ninja.leaping.configurate.ConfigurationOptions;
|
||||||
|
import ninja.leaping.configurate.commented.CommentedConfigurationNode;
|
||||||
|
import ninja.leaping.configurate.loader.ConfigurationLoader;
|
||||||
|
import ninja.leaping.configurate.objectmapping.ObjectMappingException;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.logging.Level;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
public class ConfigurateConfiguration extends LocalConfiguration {
|
||||||
|
|
||||||
|
private final ConfigurationLoader<CommentedConfigurationNode> config;
|
||||||
|
protected final Logger logger;
|
||||||
|
|
||||||
|
protected CommentedConfigurationNode node;
|
||||||
|
|
||||||
|
public ConfigurateConfiguration(ConfigurationLoader<CommentedConfigurationNode> config, Logger logger) {
|
||||||
|
this.config = config;
|
||||||
|
this.logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void load() {
|
||||||
|
try {
|
||||||
|
ConfigurationOptions options = ConfigurationOptions.defaults();
|
||||||
|
options.setShouldCopyDefaults(true);
|
||||||
|
|
||||||
|
node = config.load(options);
|
||||||
|
} catch (IOException e) {
|
||||||
|
logger.log(Level.WARNING, "Error loading WorldEdit configuration", e);
|
||||||
|
}
|
||||||
|
|
||||||
|
profile = node.getNode("debug").getBoolean(profile);
|
||||||
|
wandItem = node.getNode("wand-item").getInt(wandItem);
|
||||||
|
|
||||||
|
defaultChangeLimit = Math.max(-1, node.getNode("limits", "max-blocks-changed", "default").getInt(defaultChangeLimit));
|
||||||
|
maxChangeLimit = Math.max(-1, node.getNode("limits", "max-blocks-changed", "maximum").getInt(maxChangeLimit));
|
||||||
|
|
||||||
|
defaultMaxPolygonalPoints = Math.max(-1, node.getNode("limits", "max-polygonal-points", "default").getInt(defaultMaxPolygonalPoints));
|
||||||
|
maxPolygonalPoints = Math.max(-1, node.getNode("limits", "max-polygonal-points", "maximum").getInt(maxPolygonalPoints));
|
||||||
|
|
||||||
|
maxRadius = Math.max(-1, node.getNode("limits", "max-radius").getInt(maxRadius));
|
||||||
|
maxBrushRadius = node.getNode("limits", "max-brush-radius").getInt(maxBrushRadius);
|
||||||
|
maxSuperPickaxeSize = Math.max(1, node.getNode("limits", "max-super-pickaxe-size").getInt(maxSuperPickaxeSize));
|
||||||
|
|
||||||
|
butcherDefaultRadius = Math.max(-1, node.getNode("limits", "butcher-radius", "default").getInt(butcherDefaultRadius));
|
||||||
|
butcherMaxRadius = Math.max(-1, node.getNode("limits", "butcher-radius", "maximum").getInt(butcherMaxRadius));
|
||||||
|
|
||||||
|
try {
|
||||||
|
disallowedBlocks = new HashSet<>(node.getNode("limits", "disallowed-blocks").getList(TypeToken.of(Integer.class)));
|
||||||
|
} catch (ObjectMappingException e) {
|
||||||
|
logger.log(Level.WARNING, "Error loading WorldEdit configuration", e);
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
allowedDataCycleBlocks = new HashSet<>(node.getNode("limits", "allowed-data-cycle-blocks").getList(TypeToken.of(Integer.class)));
|
||||||
|
} catch (ObjectMappingException e) {
|
||||||
|
logger.log(Level.WARNING, "Error loading WorldEdit configuration", e);
|
||||||
|
}
|
||||||
|
|
||||||
|
registerHelp = node.getNode("register-help").getBoolean(true);
|
||||||
|
logCommands = node.getNode("logging", "log-commands").getBoolean(logCommands);
|
||||||
|
logFile = node.getNode("logging", "file").getString(logFile);
|
||||||
|
|
||||||
|
superPickaxeDrop = node.getNode("super-pickaxe", "drop-items").getBoolean(superPickaxeDrop);
|
||||||
|
superPickaxeManyDrop = node.getNode("super-pickaxe", "many-drop-items").getBoolean(superPickaxeManyDrop);
|
||||||
|
|
||||||
|
noDoubleSlash = node.getNode("no-double-slash").getBoolean(noDoubleSlash);
|
||||||
|
|
||||||
|
useInventory = node.getNode("use-inventory", "enable").getBoolean(useInventory);
|
||||||
|
useInventoryOverride = node.getNode("use-inventory", "allow-override").getBoolean(useInventoryOverride);
|
||||||
|
useInventoryCreativeOverride = node.getNode("use-inventory", "creative-mode-overrides").getBoolean(useInventoryCreativeOverride);
|
||||||
|
|
||||||
|
navigationWand = node.getNode("navigation-wand", "item").getInt(navigationWand);
|
||||||
|
navigationWandMaxDistance = node.getNode("navigation-wand", "max-distance").getInt(navigationWandMaxDistance);
|
||||||
|
navigationUseGlass = node.getNode("navigation", "use-glass").getBoolean(navigationUseGlass);
|
||||||
|
|
||||||
|
scriptTimeout = node.getNode("scripting", "timeout").getInt(scriptTimeout);
|
||||||
|
scriptsDir = node.getNode("scripting", "dir").getString(scriptsDir);
|
||||||
|
|
||||||
|
saveDir = node.getNode("saving", "dir").getString(saveDir);
|
||||||
|
|
||||||
|
allowSymlinks = node.getNode("files", "allow-symbolic-links").getBoolean(false);
|
||||||
|
LocalSession.MAX_HISTORY_SIZE = Math.max(0, node.getNode("history", "size").getInt(15));
|
||||||
|
SessionManager.EXPIRATION_GRACE = node.getNode("history", "expiration").getInt(10) * 60 * 1000;
|
||||||
|
|
||||||
|
showHelpInfo = node.getNode("show-help-on-first-use").getBoolean(true);
|
||||||
|
|
||||||
|
String snapshotsDir = node.getNode("snapshots", "directory").getString("");
|
||||||
|
if (!snapshotsDir.isEmpty()) {
|
||||||
|
snapshotRepo = new SnapshotRepository(snapshotsDir);
|
||||||
|
}
|
||||||
|
|
||||||
|
String type = node.getNode("shell-save-type").getString("").trim();
|
||||||
|
shellSaveType = type.equals("") ? null : type;
|
||||||
|
}
|
||||||
|
}
|
@ -20,23 +20,27 @@
|
|||||||
package com.sk89q.worldedit.sponge.config;
|
package com.sk89q.worldedit.sponge.config;
|
||||||
|
|
||||||
import com.sk89q.worldedit.sponge.SpongeWorldEdit;
|
import com.sk89q.worldedit.sponge.SpongeWorldEdit;
|
||||||
import com.sk89q.worldedit.util.PropertiesConfiguration;
|
import ninja.leaping.configurate.commented.CommentedConfigurationNode;
|
||||||
|
import ninja.leaping.configurate.loader.ConfigurationLoader;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
public class SpongeConfiguration extends PropertiesConfiguration {
|
public class SpongeConfiguration extends ConfigurateConfiguration {
|
||||||
|
|
||||||
public boolean creativeEnable = false;
|
public boolean creativeEnable = false;
|
||||||
public boolean cheatMode = false;
|
public boolean cheatMode = false;
|
||||||
|
|
||||||
public SpongeConfiguration(SpongeWorldEdit mod) {
|
public SpongeConfiguration(ConfigurationLoader<CommentedConfigurationNode> config, Logger logger) {
|
||||||
super(new File(mod.getWorkingDir() + File.separator + "worldedit.properties"));
|
super(config, logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void loadExtra() {
|
public void load() {
|
||||||
creativeEnable = getBool("use-in-creative", false);
|
super.load();
|
||||||
cheatMode = getBool("cheat-mode", false);
|
|
||||||
|
creativeEnable = node.getNode("use-in-creative").getBoolean(false);
|
||||||
|
cheatMode = node.getNode("cheat-mode").getBoolean(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren