Code cleanup

This commit is contained in:
noil 2021-04-27 15:08:13 -04:00
parent 1b02722dce
commit d68cf25ccb
15 changed files with 31 additions and 41 deletions

View File

@ -288,9 +288,13 @@ public class DraggableHudComponent extends HudComponent {
}
}
public boolean isRclicked() { return rclicked; }
public boolean isRclicked() {
return rclicked;
}
public void setRclicked(boolean rclicked) { this.rclicked = rclicked; }
public void setRclicked(boolean rclicked) {
this.rclicked = rclicked;
}
public boolean isSnappable() {
return snappable;

View File

@ -183,23 +183,23 @@ public class GuiPasswordField extends Gui {
boolean flag = n < 0;
int j = Math.abs(n);
for(int k = 0; k < j; ++k) {
for (int k = 0; k < j; ++k) {
if (!flag) {
int l = this.text.length();
i = this.text.indexOf(32, i);
if (i == -1) {
i = l;
} else {
while(skipWs && i < l && this.text.charAt(i) == ' ') {
while (skipWs && i < l && this.text.charAt(i) == ' ') {
++i;
}
}
} else {
while(skipWs && i > 0 && this.text.charAt(i - 1) == ' ') {
while (skipWs && i > 0 && this.text.charAt(i - 1) == ' ') {
--i;
}
while(i > 0 && this.text.charAt(i - 1) != ' ') {
while (i > 0 && this.text.charAt(i - 1) != ' ') {
--i;
}
}
@ -251,7 +251,7 @@ public class GuiPasswordField extends Gui {
return true;
} else {
switch(keyCode) {
switch (keyCode) {
case 14:
if (GuiScreen.isCtrlKeyDown()) {
if (this.isEnabled) {
@ -372,7 +372,7 @@ public class GuiPasswordField extends Gui {
if (!s.isEmpty()) {
String s1 = flag ? s.substring(0, j) : s;
j1 = this.fontRenderer.drawStringWithShadow(s1.replaceAll("(?s).", "*"), (float)l, (float)i1, i);
j1 = this.fontRenderer.drawStringWithShadow(s1.replaceAll("(?s).", "*"), (float) l, (float) i1, i);
}
boolean flag2 = this.cursorPosition < this.text.length() || this.text.length() >= this.getMaxStringLength();
@ -385,14 +385,14 @@ public class GuiPasswordField extends Gui {
}
if (!s.isEmpty() && flag && j < s.length()) {
j1 = this.fontRenderer.drawStringWithShadow(s.substring(j), (float)j1, (float)i1, i);
j1 = this.fontRenderer.drawStringWithShadow(s.substring(j), (float) j1, (float) i1, i);
}
if (flag1) {
if (flag2) {
Gui.drawRect(k1, i1 - 1, k1 + 1, i1 + 1 + this.fontRenderer.FONT_HEIGHT, -3092272);
} else {
this.fontRenderer.drawStringWithShadow("_", (float)k1, (float)i1, i);
this.fontRenderer.drawStringWithShadow("_", (float) k1, (float) i1, i);
}
}
@ -433,10 +433,10 @@ public class GuiPasswordField extends Gui {
GlStateManager.enableColorLogic();
GlStateManager.colorLogicOp(LogicOp.OR_REVERSE);
bufferbuilder.begin(7, DefaultVertexFormats.POSITION);
bufferbuilder.pos((double)startX, (double)endY, 0.0D).endVertex();
bufferbuilder.pos((double)endX, (double)endY, 0.0D).endVertex();
bufferbuilder.pos((double)endX, (double)startY, 0.0D).endVertex();
bufferbuilder.pos((double)startX, (double)startY, 0.0D).endVertex();
bufferbuilder.pos((double) startX, (double) endY, 0.0D).endVertex();
bufferbuilder.pos((double) endX, (double) endY, 0.0D).endVertex();
bufferbuilder.pos((double) endX, (double) startY, 0.0D).endVertex();
bufferbuilder.pos((double) startX, (double) startY, 0.0D).endVertex();
tessellator.draw();
GlStateManager.disableColorLogic();
GlStateManager.enableTexture2D();

View File

@ -38,7 +38,7 @@ public final class AuthUtil {
if (username == null || username.length() <= 0 || password == null || password.length() <= 0)
return "Error";
YggdrasilAuthenticationService a = new YggdrasilAuthenticationService(Proxy.NO_PROXY, "");
YggdrasilUserAuthentication b = (YggdrasilUserAuthentication)a.createUserAuthentication(Agent.MINECRAFT);
YggdrasilUserAuthentication b = (YggdrasilUserAuthentication) a.createUserAuthentication(Agent.MINECRAFT);
b.setUsername(username);
b.setPassword(password);
try {

View File

@ -7,11 +7,9 @@ import me.rigamortis.seppuku.Seppuku;
import me.rigamortis.seppuku.api.config.Configurable;
import me.rigamortis.seppuku.api.util.FileUtil;
import me.rigamortis.seppuku.impl.module.render.SearchModule;
import me.rigamortis.seppuku.impl.module.render.XrayModule;
import net.minecraft.block.Block;
import java.io.File;
import java.util.Objects;
/**
* @author noil

View File

@ -1,9 +1,7 @@
package me.rigamortis.seppuku.impl.gui.hud.component;
import com.mojang.realmsclient.gui.ChatFormatting;
import me.rigamortis.seppuku.Seppuku;
import me.rigamortis.seppuku.api.gui.hud.component.DraggableHudComponent;
import me.rigamortis.seppuku.impl.gui.hud.GuiHudEditor;
import net.minecraft.client.Minecraft;
import java.text.DecimalFormat;

View File

@ -19,7 +19,8 @@ import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
import static me.rigamortis.seppuku.impl.module.hidden.ArrayListModule.Mode.*;
import static me.rigamortis.seppuku.impl.module.hidden.ArrayListModule.Mode.ALPHABET;
import static me.rigamortis.seppuku.impl.module.hidden.ArrayListModule.Mode.LENGTH;
/**
* @author seth * 7/25/2019 @ 7:24 AM

View File

@ -649,14 +649,14 @@ public final class ModuleListComponent extends ResizableHudComponent {
if (otherComponent == component || otherComponent.getName().equals(component.getName()))
continue;
boolean isChildComponent = component.getName().toLowerCase().startsWith(otherComponent.getName().toLowerCase());
if (isChildComponent) {
if (!otherComponent.rightClickEnabled) {
skipRendering = true;
}
offsetX += 4;
boolean isChildComponent = component.getName().toLowerCase().startsWith(otherComponent.getName().toLowerCase());
if (isChildComponent) {
if (!otherComponent.rightClickEnabled) {
skipRendering = true;
}
offsetX += 4;
}
}
if (skipRendering)

View File

@ -1,12 +1,9 @@
package me.rigamortis.seppuku.impl.module.misc;
import me.rigamortis.seppuku.Seppuku;
import me.rigamortis.seppuku.api.event.EventStageable;
import me.rigamortis.seppuku.api.event.gui.EventGetGuiTabName;
import me.rigamortis.seppuku.api.event.network.EventReceivePacket;
import me.rigamortis.seppuku.api.friend.Friend;
import me.rigamortis.seppuku.api.module.Module;
import net.minecraft.network.play.server.SPacketPlayerListHeaderFooter;
import team.stiff.pomelo.impl.annotated.handler.annotation.Listener;
/**

View File

@ -1,7 +1,6 @@
package me.rigamortis.seppuku.impl.module.movement;
import me.rigamortis.seppuku.api.event.EventStageable;
import me.rigamortis.seppuku.api.event.player.EventPlayerUpdate;
import me.rigamortis.seppuku.api.event.player.EventUpdateWalkingPlayer;
import me.rigamortis.seppuku.api.module.Module;
import me.rigamortis.seppuku.api.value.Value;

View File

@ -190,6 +190,7 @@ public final class FreeCamModule extends Module {
/**
* Deprecated
*
* @param event
*/
@Listener

View File

@ -25,7 +25,7 @@ public class AmbianceModule extends Module {
}
public final Value<SkyMode> skyMode = new Value<SkyMode>("SkyMode", new String[]{"Sky", "Sm", "SkieMode", "Skie", "Skies"}, "Edit the skybox.", SkyMode.SEPPUKU);
public final Value<Color> skyColor = new Value<Color>("SkyColor", new String[]{"SkyCol", "Sc", "SkieColor", "SkieCol", "Color", "C"}, "Edit the skybox color (COLOR mode only).", new Color(0, 127, 255));
public final Value<Color> skyColor = new Value<Color>("SkyColor", new String[]{"SkyCol", "Sc", "SkieColor", "SkieCol", "Color", "C"}, "Edit the skybox color (COLOR mode only).", new Color(0, 127, 255));
public final Value<Integer> skyGamma = new Value<Integer>("SkyGamma", new String[]{"SkyGam", "SkyG", "Sg", "Gamma", "G"}, "Edit the skybox gamma.", 128, 1, 255, 1);
public final Value<Integer> skyGammaEnd = new Value<Integer>("SkyGammaEnd", new String[]{"SkyGamEnd", "SkyGe", "Sge", "GammaEnd", "GamEnd", "Ge"}, "Edit the skybox gamma (END mode only).", 40, 1, 255, 1);

View File

@ -4,7 +4,6 @@ import me.rigamortis.seppuku.Seppuku;
import me.rigamortis.seppuku.api.event.EventStageable;
import me.rigamortis.seppuku.api.event.network.EventReceivePacket;
import me.rigamortis.seppuku.api.event.player.EventPlayerUpdate;
import me.rigamortis.seppuku.api.event.player.EventUpdateWalkingPlayer;
import me.rigamortis.seppuku.api.event.render.EventRender3D;
import me.rigamortis.seppuku.api.event.world.EventLoadWorld;
import me.rigamortis.seppuku.api.module.Module;

View File

@ -1,7 +1,6 @@
package me.rigamortis.seppuku.impl.patch;
import me.rigamortis.seppuku.Seppuku;
import me.rigamortis.seppuku.api.event.render.EventRenderBlockSide;
import me.rigamortis.seppuku.api.event.world.EventCanCollide;
import me.rigamortis.seppuku.api.event.world.EventLiquidCollisionBB;
import me.rigamortis.seppuku.api.patch.ClassPatch;

View File

@ -5,9 +5,7 @@ import me.rigamortis.seppuku.api.event.gui.EventGetGuiTabName;
import me.rigamortis.seppuku.api.patch.ClassPatch;
import me.rigamortis.seppuku.api.patch.MethodPatch;
import me.rigamortis.seppuku.impl.management.PatchManager;
import net.minecraft.client.gui.GuiPlayerTabOverlay;
import net.minecraft.client.network.NetworkPlayerInfo;
import net.minecraft.scoreboard.ScorePlayerTeam;
import org.objectweb.asm.Type;
import org.objectweb.asm.tree.*;
@ -31,7 +29,7 @@ public final class GuiPlayerTabOverlayPatch extends ClassPatch {
public void getPlayerName(MethodNode methodNode, PatchManager.Environment env) {
final InsnList insnList = new InsnList();
insnList.add(new VarInsnNode(ALOAD, 1));
insnList.add(new MethodInsnNode(INVOKESTATIC, Type.getInternalName(this.getClass()), "getPlayerNameHook", env == PatchManager.Environment.IDE ? "(Lnet/minecraft/client/network/NetworkPlayerInfo;)Ljava/lang/String;" : "(Lbsc;)Ljava/lang/String;", false));
insnList.add(new MethodInsnNode(INVOKESTATIC, Type.getInternalName(this.getClass()), "getPlayerNameHook", env == PatchManager.Environment.IDE ? "(Lnet/minecraft/client/network/NetworkPlayerInfo;)Ljava/lang/String;" : "(Lbsc;)Ljava/lang/String;", false));
insnList.add(new InsnNode(ARETURN));
methodNode.instructions.insert(insnList);
}
@ -44,5 +42,4 @@ public final class GuiPlayerTabOverlayPatch extends ClassPatch {
}
}

View File

@ -2,13 +2,10 @@ package me.rigamortis.seppuku.impl.patch;
import me.rigamortis.seppuku.Seppuku;
import me.rigamortis.seppuku.api.event.render.EventAddEffect;
import me.rigamortis.seppuku.api.event.render.EventRenderBossHealth;
import me.rigamortis.seppuku.api.event.render.EventSpawnEffect;
import me.rigamortis.seppuku.api.patch.ClassPatch;
import me.rigamortis.seppuku.api.patch.MethodPatch;
import me.rigamortis.seppuku.impl.management.PatchManager;
import net.minecraft.client.particle.Particle;
import net.minecraft.util.EnumParticleTypes;
import org.objectweb.asm.Type;
import org.objectweb.asm.tree.*;