forked from openrs2/openrs2
I suspect it is excluded on Jagex's end so the client deals correctly with any class loading failures caused by the absence of the netscape.javascript.JSObject class. Signed-off-by: Graham <gpe@openrs2.dev>
parent
3db6b2c381
commit
57800cb03e
@ -0,0 +1,61 @@ |
||||
package dev.openrs2.deob.filter |
||||
|
||||
import com.github.michaelbull.logging.InlineLogger |
||||
import dev.openrs2.asm.classpath.ClassPath |
||||
import dev.openrs2.asm.filter.AnyMemberFilter |
||||
import dev.openrs2.asm.filter.MemberFilter |
||||
import dev.openrs2.asm.hasCode |
||||
import org.objectweb.asm.tree.ClassNode |
||||
import org.objectweb.asm.tree.MethodInsnNode |
||||
|
||||
class BrowserControlFilter private constructor(private val clazz: String) : MemberFilter { |
||||
override fun matches(owner: String, name: String, desc: String): Boolean { |
||||
return clazz == owner |
||||
} |
||||
|
||||
companion object { |
||||
private val logger = InlineLogger() |
||||
|
||||
fun create(classPath: ClassPath): MemberFilter { |
||||
val browserControlClass = findBrowserControlClass(classPath) |
||||
|
||||
return if (browserControlClass != null) { |
||||
logger.info { "Identified browser control class $browserControlClass" } |
||||
BrowserControlFilter(browserControlClass) |
||||
} else { |
||||
logger.warn { "Failed to identify browser control class" } |
||||
AnyMemberFilter |
||||
} |
||||
} |
||||
|
||||
private fun findBrowserControlClass(classPath: ClassPath): String? { |
||||
for (library in classPath.libraries) { |
||||
for (clazz in library) { |
||||
if (isBrowserControlClass(clazz)) { |
||||
return clazz.name |
||||
} |
||||
} |
||||
} |
||||
|
||||
return null |
||||
} |
||||
|
||||
private fun isBrowserControlClass(clazz: ClassNode): Boolean { |
||||
for (method in clazz.methods) { |
||||
if (!method.hasCode) { |
||||
continue |
||||
} |
||||
|
||||
for (insn in method.instructions) { |
||||
if (insn !is MethodInsnNode) { |
||||
continue |
||||
} else if (insn.owner == "netscape/javascript/JSObject") { |
||||
return true |
||||
} |
||||
} |
||||
} |
||||
|
||||
return false |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue