forked from openrs2/openrs2
It returns a single NameMap combining all the maps in share/deob-map. This will ultimately be fed into the RemapTransformer/TypedRemapper in the deobfuscator. Signed-off-by: Graham <gpe@openrs2.dev>
parent
435dee8b6d
commit
e25918a8a0
@ -0,0 +1,32 @@ |
||||
package dev.openrs2.deob.map |
||||
|
||||
import com.fasterxml.jackson.databind.ObjectMapper |
||||
import java.nio.file.Files |
||||
import java.nio.file.Path |
||||
import java.nio.file.Paths |
||||
import javax.inject.Inject |
||||
import javax.inject.Provider |
||||
|
||||
class NameMapProvider @Inject constructor(private val mapper: ObjectMapper) : Provider<NameMap> { |
||||
override fun get(): NameMap { |
||||
val combinedMap = NameMap() |
||||
|
||||
for (file in Files.list(PATH).filter(::isYamlFile)) { |
||||
val map = Files.newBufferedReader(file).use { reader -> |
||||
mapper.readValue(reader, NameMap::class.java) |
||||
} |
||||
combinedMap.add(map) |
||||
} |
||||
|
||||
return combinedMap |
||||
} |
||||
|
||||
private fun isYamlFile(path: Path): Boolean { |
||||
return Files.isRegularFile(path) && path.fileName.toString().endsWith(YAML_SUFFIX) |
||||
} |
||||
|
||||
companion object { |
||||
private val PATH = Paths.get("share/deob-map") |
||||
private const val YAML_SUFFIX = ".yaml" |
||||
} |
||||
} |
Loading…
Reference in new issue