mixins: Login stuff

This commit is contained in:
Owain van Brakel
2020-05-28 12:58:35 +02:00
parent c0fa105d49
commit 8d45b53d71
8 changed files with 180 additions and 9 deletions

View File

@@ -0,0 +1,102 @@
/*
* Copyright (c) 2020, Owain van Brakel <https://github.com/Owain94>
* 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.GameState;
import net.runelite.api.Sprite;
import net.runelite.api.mixins.FieldHook;
import net.runelite.api.mixins.Inject;
import net.runelite.api.mixins.Mixin;
import net.runelite.api.mixins.Shadow;
import net.runelite.rs.api.RSClient;
@Mixin(RSClient.class)
public abstract class LoginScreenMixin implements RSClient
{
@Shadow("client")
private static RSClient client;
@Inject
private static boolean shouldRenderLoginScreenFire = true;
@Inject
private static Sprite loginScreenBackground;
@Inject
public void setShouldRenderLoginScreenFire(boolean shouldRender)
{
shouldRenderLoginScreenFire = shouldRender;
}
@Inject
public boolean shouldRenderLoginScreenFire()
{
return shouldRenderLoginScreenFire;
}
@Inject
public void setLoginScreen(Sprite background)
{
assert client.isClientThread() : "setLoginScreen must be called on client thread";
loginScreenBackground = background;
client.clearLoginScreen(false);
if (client.getGameState() == GameState.LOGIN_SCREEN)
{
try
{
client.setGameState(GameState.UNKNOWN);
}
finally
{
client.setGameState(GameState.LOGIN_SCREEN);
}
}
}
@Inject
@FieldHook("leftTitleSprite")
static void setLeftTitleSprite(int idx)
{
Sprite loginscreen = loginScreenBackground;
if (loginscreen != null)
{
client.setLeftTitleSprite(loginscreen);
}
}
@Inject
@FieldHook("rightTitleSprite")
static void setRightTitleSprite(int idx)
{
Sprite loginscreen = loginScreenBackground;
if (loginscreen != null && loginscreen.getWidth() > 383)
{
client.setRightTitleSprite(client.createSprite(new int[]{0}, 1, 1));
}
}
}

View File

@@ -53,12 +53,14 @@ import net.runelite.api.InventoryID;
import net.runelite.api.ItemDefinition;
import net.runelite.api.MenuEntry;
import net.runelite.api.MenuOpcode;
import static net.runelite.api.MenuOpcode.*;
import net.runelite.api.MessageNode;
import net.runelite.api.NPC;
import net.runelite.api.NPCDefinition;
import net.runelite.api.NameableContainer;
import net.runelite.api.Node;
import net.runelite.api.ObjectDefinition;
import static net.runelite.api.Perspective.LOCAL_TILE_SIZE;
import net.runelite.api.Player;
import net.runelite.api.Point;
import net.runelite.api.Prayer;
@@ -127,8 +129,6 @@ import net.runelite.rs.api.RSTileItem;
import net.runelite.rs.api.RSUsername;
import net.runelite.rs.api.RSWidget;
import org.slf4j.Logger;
import static net.runelite.api.MenuOpcode.*;
import static net.runelite.api.Perspective.LOCAL_TILE_SIZE;
@Mixin(RSClient.class)
public abstract class RSClientMixin implements RSClient
@@ -1865,14 +1865,14 @@ public abstract class RSClientMixin implements RSClient
public boolean isMirrored()
{
return isMirrored;
};
}
@Inject
@Override
public void setMirrored(boolean isMirrored)
{
this.isMirrored = isMirrored;
};
}
@Inject
@Override

View File

@@ -0,0 +1,54 @@
/*
* Copyright (c) 2020, Owain van Brakel <https://github.com/Owain94>
* 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.Copy;
import net.runelite.api.mixins.Mixin;
import net.runelite.api.mixins.Replace;
import net.runelite.api.mixins.Shadow;
import net.runelite.rs.api.RSClient;
import net.runelite.rs.api.RSLoginScreenAnimation;
@Mixin(RSLoginScreenAnimation.class)
public abstract class RSLoginScreenAnimationMixin implements RSLoginScreenAnimation
{
@Shadow("client")
private static RSClient client;
@Copy("draw")
void rs$draw(int var1, int var2)
{
throw new RuntimeException();
}
@Replace("draw")
void rl$draw(int var1, int var2)
{
if (client.shouldRenderLoginScreenFire())
{
rs$draw(var1, var2);
}
}
}