forked from openrs2/openrs2
Signed-off-by: Graham <gpe@openrs2.dev>
parent
ef5db18ea1
commit
c488a155c4
@ -0,0 +1,52 @@ |
||||
package dev.openrs2.bundler.transform |
||||
|
||||
import com.github.michaelbull.logging.InlineLogger |
||||
import dev.openrs2.asm.classpath.ClassPath |
||||
import dev.openrs2.asm.classpath.Library |
||||
import dev.openrs2.asm.transform.Transformer |
||||
import dev.openrs2.conf.Config |
||||
import org.objectweb.asm.tree.ClassNode |
||||
import org.objectweb.asm.tree.LdcInsnNode |
||||
import org.objectweb.asm.tree.MethodNode |
||||
import javax.inject.Inject |
||||
import javax.inject.Singleton |
||||
|
||||
@Singleton |
||||
class NameTransformer @Inject constructor( |
||||
private val config: Config |
||||
) : Transformer() { |
||||
private var names = 0 |
||||
|
||||
override fun preTransform(classPath: ClassPath) { |
||||
names = 0 |
||||
} |
||||
|
||||
override fun transformCode(classPath: ClassPath, library: Library, clazz: ClassNode, method: MethodNode): Boolean { |
||||
for (insn in method.instructions) { |
||||
if (insn !is LdcInsnNode) { |
||||
continue |
||||
} |
||||
|
||||
val cst = insn.cst |
||||
if (cst !is String) { |
||||
continue |
||||
} |
||||
|
||||
insn.cst = cst.replace("RuneScape", config.game) |
||||
.replace("Jagex", config.operator) |
||||
if (insn.cst != cst) { |
||||
names++ |
||||
} |
||||
} |
||||
|
||||
return false |
||||
} |
||||
|
||||
override fun postTransform(classPath: ClassPath) { |
||||
logger.info { "Replaced $names operator and game names" } |
||||
} |
||||
|
||||
companion object { |
||||
private val logger = InlineLogger() |
||||
} |
||||
} |
Loading…
Reference in new issue