diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/leftclickonly/LeftClickOnlyPlugin.java b/runelite-client/src/main/java/net/runelite/client/plugins/leftclickonly/LeftClickOnlyPlugin.java new file mode 100644 index 0000000000..c93d5a75a1 --- /dev/null +++ b/runelite-client/src/main/java/net/runelite/client/plugins/leftclickonly/LeftClickOnlyPlugin.java @@ -0,0 +1,73 @@ +/* + * Copyright (c) 2019, dekvall + * 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.leftclickonly; + +import javax.inject.Inject; +import net.runelite.api.Client; +import net.runelite.api.MenuEntry; +import net.runelite.api.events.MenuOpened; +import net.runelite.client.eventbus.Subscribe; +import net.runelite.client.input.MouseManager; +import net.runelite.client.plugins.Plugin; +import net.runelite.client.plugins.PluginDescriptor; +import net.runelite.client.plugins.PluginType; + +@PluginDescriptor( + name = "Left Click Only", + description = "Only allow leftclicks", + tags = {"left", "click", "only", "gamemode", "leftclick"}, + type = PluginType.GAMEMODE, + enabledByDefault = false +) +public class LeftClickOnlyPlugin extends Plugin +{ + @Inject + private Client client; + + @Inject + private RightClickConsumer rightClickConsumer; + + @Inject + private MouseManager mouseManager; + + @Override + protected void startUp() throws Exception + { + mouseManager.registerMouseListener(rightClickConsumer); + } + + @Override + protected void shutDown() throws Exception + { + mouseManager.unregisterMouseListener(rightClickConsumer); + } + + @Subscribe + public void onMenuOpened(MenuOpened event) + { + MenuEntry first = event.getFirstEntry(); + client.setMenuEntries(new MenuEntry[]{first}); + } +} diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/leftclickonly/RightClickConsumer.java b/runelite-client/src/main/java/net/runelite/client/plugins/leftclickonly/RightClickConsumer.java new file mode 100644 index 0000000000..cfca0dea94 --- /dev/null +++ b/runelite-client/src/main/java/net/runelite/client/plugins/leftclickonly/RightClickConsumer.java @@ -0,0 +1,51 @@ +/* + * Copyright (c) 2019, dekvall + * 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.leftclickonly; + +import java.awt.event.MouseEvent; +import net.runelite.client.input.MouseAdapter; + +public class RightClickConsumer extends MouseAdapter +{ + @Override + public MouseEvent mouseClicked(MouseEvent event) + { + if (event.getButton() != MouseEvent.BUTTON1) + { + event.consume(); + } + return event; + } + + @Override + public MouseEvent mousePressed(MouseEvent event) + { + if (event.getButton() != MouseEvent.BUTTON1) + { + event.consume(); + } + return event; + } +}