From 30e319ea9874d3597df17f5ba02a5f4c41e4334a Mon Sep 17 00:00:00 2001 From: Devin Date: Mon, 18 Dec 2017 19:49:04 -0800 Subject: [PATCH] Add fight cave plugin config --- .../plugins/fightcave/FightCaveConfig.java | 47 +++++++++++++++++++ .../plugins/fightcave/FightCavePlugin.java | 14 +++++- 2 files changed, 60 insertions(+), 1 deletion(-) create mode 100644 runelite-client/src/main/java/net/runelite/client/plugins/fightcave/FightCaveConfig.java diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/fightcave/FightCaveConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/fightcave/FightCaveConfig.java new file mode 100644 index 0000000000..39596cf059 --- /dev/null +++ b/runelite-client/src/main/java/net/runelite/client/plugins/fightcave/FightCaveConfig.java @@ -0,0 +1,47 @@ +/* + * Copyright (c) 2017, Devin French + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package net.runelite.client.plugins.fightcave; + +import net.runelite.client.config.Config; +import net.runelite.client.config.ConfigGroup; +import net.runelite.client.config.ConfigItem; + +@ConfigGroup( + keyName = "fightcave", + name = "Fight Cave", + description = "Configuration for the fight cave plugin" +) +public interface FightCaveConfig extends Config +{ + @ConfigItem( + keyName = "enabled", + name = "Enabled", + description = "Configures whether or not fight cave overlay is displayed" + ) + default boolean enabled() + { + return true; + } +} diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/fightcave/FightCavePlugin.java b/runelite-client/src/main/java/net/runelite/client/plugins/fightcave/FightCavePlugin.java index df3ea2ec2c..fa88348068 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/fightcave/FightCavePlugin.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/fightcave/FightCavePlugin.java @@ -28,12 +28,15 @@ import com.google.inject.Binder; import java.time.temporal.ChronoUnit; import javax.annotation.Nullable; import javax.inject.Inject; + +import com.google.inject.Provides; import net.runelite.api.Client; import net.runelite.api.GameState; import net.runelite.api.NPC; import net.runelite.api.Query; import net.runelite.api.queries.NPCQuery; import net.runelite.client.RuneLite; +import net.runelite.client.config.ConfigManager; import net.runelite.client.plugins.Plugin; import net.runelite.client.plugins.PluginDescriptor; import net.runelite.client.task.Schedule; @@ -51,6 +54,9 @@ public class FightCavePlugin extends Plugin @Inject RuneLite runelite; + @Inject + FightCaveConfig config; + @Inject FightCaveOverlay overlay; @@ -62,6 +68,12 @@ public class FightCavePlugin extends Plugin binder.bind(FightCaveOverlay.class); } + @Provides + FightCaveConfig provideConfig(ConfigManager configManager) + { + return configManager.getConfig(FightCaveConfig.class); + } + @Override public Overlay getOverlay() { @@ -74,7 +86,7 @@ public class FightCavePlugin extends Plugin ) public void update() { - if (client == null || client.getGameState() != GameState.LOGGED_IN) + if (!config.enabled() || client == null || client.getGameState() != GameState.LOGGED_IN) { return; }