use of net.runelite.cache.definitions.VarbitDefinition in project runelite by runelite.
the class VarbitLoader method load.
public VarbitDefinition load(int id, byte[] b) {
VarbitDefinition def = new VarbitDefinition();
InputStream is = new InputStream(b);
def.setId(id);
for (; ; ) {
int opcode = is.readUnsignedByte();
if (opcode == 0) {
break;
}
if (opcode == 1) {
def.setIndex(is.readUnsignedShort());
def.setLeastSignificantBit(is.readUnsignedByte());
def.setMostSignificantBit(is.readUnsignedByte());
}
}
return def;
}
use of net.runelite.cache.definitions.VarbitDefinition in project runelite by runelite.
the class VarbitDumper method extract.
@Test
public void extract() throws IOException {
File base = StoreLocation.LOCATION, outDir = folder.newFolder();
int count = 0;
try (Store store = new Store(base)) {
store.load();
Storage storage = store.getStorage();
Index index = store.getIndex(IndexType.CONFIGS);
Archive archive = index.getArchive(ConfigType.VARBIT.getId());
byte[] archiveData = storage.loadArchive(archive);
ArchiveFiles files = archive.getFiles(archiveData);
for (FSFile file : files.getFiles()) {
VarbitLoader loader = new VarbitLoader();
VarbitDefinition varbit = loader.load(file.getFileId(), file.getContents());
Files.write(gson.toJson(varbit), new File(outDir, file.getFileId() + ".json"), Charset.defaultCharset());
++count;
}
}
logger.info("Dumped {} varbits to {}", count, outDir);
}
Aggregations