Search in sources :

Example 16 with Store

use of net.runelite.cache.fs.Store in project runelite by runelite.

the class SpriteManagerTest method test.

@Test
public void test() throws IOException {
    File dumpDir = folder.newFolder();
    try (Store store = new Store(StoreLocation.LOCATION)) {
        store.load();
        SpriteManager dumper = new SpriteManager(store);
        dumper.load();
        dumper.export(dumpDir);
    }
    logger.info("Dumped to {}", dumpDir);
}
Also used : Store(net.runelite.cache.fs.Store) File(java.io.File) Test(org.junit.Test)

Example 17 with Store

use of net.runelite.cache.fs.Store in project runelite by runelite.

the class TrackDumperTest method test.

@Test
public void test() throws IOException {
    File dumpDir1 = folder.newFolder(), dumpDir2 = folder.newFolder();
    int idx1 = 0, idx2 = 0;
    djb2.load();
    try (Store store = new Store(StoreLocation.LOCATION)) {
        store.load();
        Storage storage = store.getStorage();
        Index index = store.getIndex(IndexType.TRACK1);
        Index index2 = store.getIndex(IndexType.TRACK2);
        for (Archive archive : index.getArchives()) {
            dumpTrackArchive(dumpDir1, storage, archive);
            ++idx1;
        }
        for (Archive archive : index2.getArchives()) {
            dumpTrackArchive(dumpDir2, storage, archive);
            ++idx2;
        }
    }
    logger.info("Dumped {} sound tracks ({} idx1, {} idx2) to {} and {}", idx1 + idx2, idx1, idx2, dumpDir1, dumpDir2);
}
Also used : Storage(net.runelite.cache.fs.Storage) Archive(net.runelite.cache.fs.Archive) Store(net.runelite.cache.fs.Store) Index(net.runelite.cache.fs.Index) File(java.io.File) Test(org.junit.Test)

Example 18 with Store

use of net.runelite.cache.fs.Store in project runelite by runelite.

the class TextureDumper 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();
        TextureManager tm = new TextureManager(store);
        tm.load();
        for (TextureDefinition texture : tm.getTextures()) {
            Files.write(gson.toJson(texture), new File(outDir, texture.getId() + ".json"), Charset.defaultCharset());
            ++count;
        }
    }
    logger.info("Dumped {} textures to {}", count, outDir);
}
Also used : Store(net.runelite.cache.fs.Store) TextureDefinition(net.runelite.cache.definitions.TextureDefinition) File(java.io.File) Test(org.junit.Test)

Example 19 with Store

use of net.runelite.cache.fs.Store in project runelite by runelite.

the class TitleDumper method extract.

@Test
public void extract() throws IOException {
    File base = StoreLocation.LOCATION, outFile = folder.newFolder();
    try (Store store = new Store(base)) {
        store.load();
        Storage storage = store.getStorage();
        Index index = store.getIndex(IndexType.BINARY);
        Archive archive = index.findArchiveByName("title.jpg");
        byte[] contents = archive.decompress(storage.loadArchive(archive));
        Files.write(outFile.toPath(), contents);
    }
    logger.info("Dumped to {}", outFile);
}
Also used : Storage(net.runelite.cache.fs.Storage) Archive(net.runelite.cache.fs.Archive) Store(net.runelite.cache.fs.Store) Index(net.runelite.cache.fs.Index) File(java.io.File) Test(org.junit.Test)

Example 20 with Store

use of net.runelite.cache.fs.Store in project runelite by runelite.

the class UnderlayDumper 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.UNDERLAY.getId());
        byte[] archiveData = storage.loadArchive(archive);
        ArchiveFiles files = archive.getFiles(archiveData);
        for (FSFile file : files.getFiles()) {
            UnderlayLoader loader = new UnderlayLoader();
            UnderlayDefinition underlay = loader.load(file.getFileId(), file.getContents());
            Files.write(gson.toJson(underlay), new File(outDir, file.getFileId() + ".json"), Charset.defaultCharset());
            ++count;
        }
    }
    logger.info("Dumped {} underlays to {}", count, outDir);
}
Also used : Storage(net.runelite.cache.fs.Storage) Archive(net.runelite.cache.fs.Archive) ArchiveFiles(net.runelite.cache.fs.ArchiveFiles) Store(net.runelite.cache.fs.Store) UnderlayDefinition(net.runelite.cache.definitions.UnderlayDefinition) Index(net.runelite.cache.fs.Index) File(java.io.File) FSFile(net.runelite.cache.fs.FSFile) UnderlayLoader(net.runelite.cache.definitions.loaders.UnderlayLoader) FSFile(net.runelite.cache.fs.FSFile) Test(org.junit.Test)

Aggregations

Store (net.runelite.cache.fs.Store)38 File (java.io.File)34 Test (org.junit.Test)32 Archive (net.runelite.cache.fs.Archive)21 Index (net.runelite.cache.fs.Index)20 Storage (net.runelite.cache.fs.Storage)18 ArchiveFiles (net.runelite.cache.fs.ArchiveFiles)9 FSFile (net.runelite.cache.fs.FSFile)9 Ignore (org.junit.Ignore)7 BufferedImage (java.awt.image.BufferedImage)4 IOException (java.io.IOException)3 CacheClient (net.runelite.cache.client.CacheClient)3 ModelLoader (net.runelite.cache.definitions.loaders.ModelLoader)3 TextureManager (net.runelite.cache.TextureManager)2 FramemapDefinition (net.runelite.cache.definitions.FramemapDefinition)2 ModelDefinition (net.runelite.cache.definitions.ModelDefinition)2 FramemapLoader (net.runelite.cache.definitions.loaders.FramemapLoader)2 FileData (net.runelite.cache.index.FileData)2 HandshakeResponseType (net.runelite.protocol.api.login.HandshakeResponseType)2 RemoteCache (com.ostracker.cache.RemoteCache)1