Open-source multiplayer game server compatible with the RuneScape client https://www.openrs2.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
openrs2/deob-map/src/main/java/dev/openrs2/deob/map/NameMapProvider.kt

32 lines
961 B

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)
}
private companion object {
private val PATH = Paths.get("share/deob/map")
private const val YAML_SUFFIX = ".yaml"
}
}