detachedcamera: interaction (#2373)

* detached camera: disallow object interaction

* detached camera: disallow entity interaction

* add option to turn it back on

* cant click anything with that you moron

* forgot this

* kinda "tired and emotional" ngl
This commit is contained in:
ThatGamerBlue
2020-02-25 22:50:18 +00:00
committed by GitHub
parent b4068705f7
commit e33ad11cdc
4 changed files with 88 additions and 1 deletions

View File

@@ -35,7 +35,7 @@ public abstract class ClickboxMixin implements RSClient
boolean hasFlag = hash != 0L && (int) (hash >>> 16 & 1L) != 1;
boolean viewportContainsMouse = client.getViewportContainsMouse();
if (!hasFlag || !viewportContainsMouse)
if (!hasFlag || !viewportContainsMouse || (client.getOculusOrbState() != 0 && !client.getComplianceValue("orbInteraction")))
{
return;
}

View File

@@ -0,0 +1,65 @@
/*
* Copyright (c) 2020 ThatGamerBlue
* 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.mixins;
import net.runelite.api.mixins.Inject;
import net.runelite.api.mixins.Mixin;
import net.runelite.api.mixins.Shadow;
import net.runelite.rs.api.RSClient;
import java.util.HashMap;
import java.util.Map;
@Mixin(RSClient.class)
public abstract class ComplianceMixin implements RSClient
{
@Shadow("client")
private static RSClient client;
@Inject
private static Map<String, Boolean> complianceMap = new HashMap<>();
@Inject
@Override
public boolean getComplianceValue(String key)
{
if (key == null)
{
return false;
}
return complianceMap.containsKey(key) ? complianceMap.get(
key) : false; // false ensures we are compliant by default, note: java 7 does not have Map#getOrDefault(String, Object)
}
@Inject
@Override
public void setComplianceValue(String key, boolean value)
{
if (key == null)
{
return;
}
client.getLogger().debug("Compliance: {} being set to {}", key, value);
complianceMap.put(key, value);
}
}

View File

@@ -303,6 +303,10 @@ public abstract class RSSceneMixin implements RSScene
if (client.getTileUpdateCount() == 0)
{
if (!isGpu && (client.getOculusOrbState() != 0 && !client.getComplianceValue("orbInteraction")))
{
client.setEntitiesAtMouseCount(0);
}
client.setCheckClick(false);
if (!checkClick)
{
@@ -374,6 +378,10 @@ public abstract class RSSceneMixin implements RSScene
if (client.getTileUpdateCount() == 0)
{
if (!isGpu && (client.getOculusOrbState() != 0 && !client.getComplianceValue("orbInteraction")))
{
client.setEntitiesAtMouseCount(0);
}
client.setCheckClick(false);
if (!checkClick)
{
@@ -387,6 +395,10 @@ public abstract class RSSceneMixin implements RSScene
}
}
if (!isGpu && (client.getOculusOrbState() != 0 && !client.getComplianceValue("orbInteraction")))
{
client.setEntitiesAtMouseCount(0);
}
client.setCheckClick(false);
if (!checkClick)
{