Hey, currently trying to load 667 textures but it doesn't seem to be working.
My processOnDemandQueue method won't load this code:
I get this when logging in:Code:if (onDemandData.dataType == 4 && onDemandData != null) {
System.out.println("here");
Texture.load(onDemandData.ID, onDemandData.buffer);
}
I have the correct main_file_cache.idx5Code:Requesting file: 8 in Texture index. (4)
Couldn't find file: 8 in Texture index. (4)
Requesting file: 2 in Texture index. (4)
Couldn't find file: 2 in Texture index. (4)
Requesting file: 1 in Texture index. (4)
Couldn't find file: 1 in Texture index. (4)
Requesting file: 16 in Texture index. (4)
Couldn't find file: 16 in Texture index. (4)
Requesting file: 11 in Texture index. (4)
Couldn't find file: 11 in Texture index. (4)
Requesting file: 40 in Texture index. (4)
Couldn't find file: 40 in Texture index. (4)
Any help is appreciated will rep and thanks.
Prints outCode:if (SignLink.cache_dat != null) {
for (int i = 0; i < Constants.CACHE_INDEX_COUNT; i++) {
decompressors[i] = new Decompressor(SignLink.cache_dat, SignLink.cache_idx[i], i + 1);
System.out.println("index:" + i + " size:" + decompressors[i].getFileCount());
}
}
Code:index:0 size:9
index:1 size:86720
index:2 size:62593
index:3 size:646
index:4 size:7176
index:5 size:1420
index:6 size:925
