generated from kappa-maintainer/1.12.2-FG6-Template
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca49a00
commit e4716fb
Showing
3 changed files
with
29 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.cleanroommc.fugue.helper; | ||
|
||
public class Mouse { | ||
public static int getEventDWheel() { | ||
return org.lwjgl.input.Mouse.getEventDWheel() * 120; | ||
} | ||
|
||
public static int getDWheel() { | ||
return org.lwjgl.input.Mouse.getDWheel() * 120; | ||
} | ||
} |
41 changes: 17 additions & 24 deletions
41
src/main/java/com/cleanroommc/fugue/transformer/universal/DWheelTransformer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,29 @@ | ||
package com.cleanroommc.fugue.transformer.universal; | ||
|
||
import com.cleanroommc.fugue.common.Fugue; | ||
import javassist.CannotCompileException; | ||
import javassist.ClassPool; | ||
import javassist.CtClass; | ||
import javassist.expr.ExprEditor; | ||
import javassist.expr.MethodCall; | ||
import org.objectweb.asm.ClassReader; | ||
import org.objectweb.asm.ClassWriter; | ||
import org.objectweb.asm.tree.ClassNode; | ||
import org.objectweb.asm.tree.MethodInsnNode; | ||
import top.outlands.foundation.IExplicitTransformer; | ||
|
||
import java.io.ByteArrayInputStream; | ||
|
||
public class DWheelTransformer implements IExplicitTransformer { | ||
|
||
@Override | ||
public byte[] transform(byte[] bytes) { | ||
try { | ||
CtClass cc = ClassPool.getDefault().makeClass(new ByteArrayInputStream(bytes)); | ||
cc.instrument(new ExprEditor() { | ||
@Override | ||
public void edit(MethodCall m) throws CannotCompileException { | ||
if (m.getMethodName().equals("getEventDWheel") && m.getClassName().equals("org.lwjgl.input.Mouse")) { | ||
m.replace("$_ = $proceed($$) * 120;"); | ||
} | ||
if (m.getMethodName().equals("getDWheel") && m.getClassName().equals("org.lwjgl.input.Mouse")) { | ||
m.replace("$_ = $proceed($$) * 120;"); | ||
ClassReader reader = new ClassReader(bytes); | ||
ClassNode classNode = new ClassNode(); | ||
reader.accept(classNode, 0); | ||
classNode.methods.forEach(methodNode -> methodNode.instructions.forEach(abstractInsnNode -> { | ||
if (abstractInsnNode instanceof MethodInsnNode methodInsnNode) { | ||
if (methodInsnNode.owner.equals("org/lwjgl/input/Mouse")) { | ||
if (methodInsnNode.name.equals("getEventDWheel") || methodInsnNode.name.equals("getDWheel")) { | ||
methodInsnNode.owner = "com/cleanroommc/fugue/helper/Mouse"; | ||
} | ||
} | ||
}); | ||
bytes = cc.toBytecode(); | ||
} catch (Throwable t) { | ||
Fugue.LOGGER.error(t); | ||
} | ||
return bytes; | ||
} | ||
})); | ||
ClassWriter writer = new ClassWriter(0); | ||
classNode.accept(writer); | ||
return writer.toByteArray(); | ||
} | ||
} |