Made PersistentClientData less write-y

This commit is contained in:
Ellpeck 2015-10-22 22:58:52 +02:00
parent 4d082485e0
commit 58454f25ed

View file

@ -32,18 +32,18 @@ public class PersistentClientData{
private static File theFile; private static File theFile;
public static void saveBookPage(BookletIndexEntry entry, BookletChapter chapter, BookletPage page, int pageInIndex){ public static void saveBookPage(BookletIndexEntry entry, BookletChapter chapter, BookletPage page, int pageInIndex){
NBTTagCompound compound = getCompound(); NBTTagCompound compound = readCompound();
if(compound != null){ if(compound != null){
compound.setInteger(getName("Entry"), entry == null ? -1 : InitBooklet.entries.indexOf(entry)); compound.setInteger(getName("Entry"), entry == null ? -1 : InitBooklet.entries.indexOf(entry));
compound.setInteger(getName("Chapter"), entry == null || chapter == null ? -1 : entry.chapters.indexOf(chapter)); compound.setInteger(getName("Chapter"), entry == null || chapter == null ? -1 : entry.chapters.indexOf(chapter));
compound.setInteger(getName("Page"), page == null ? -1 : page.getID()); compound.setInteger(getName("Page"), page == null ? -1 : page.getID());
compound.setInteger(getName("PageInIndex"), pageInIndex); compound.setInteger(getName("PageInIndex"), pageInIndex);
writeCompoundToFile(compound); writeCompound(compound);
} }
} }
public static void openLastBookPage(GuiBooklet gui){ public static void openLastBookPage(GuiBooklet gui){
NBTTagCompound compound = getCompound(); NBTTagCompound compound = readCompound();
if(compound != null){ if(compound != null){
if(compound.hasKey(getName("Entry"))){ if(compound.hasKey(getName("Entry"))){
int entry = compound.getInteger(getName("Entry")); int entry = compound.getInteger(getName("Entry"));
@ -67,10 +67,10 @@ public class PersistentClientData{
} }
public static void setBoolean(String name, boolean bool){ public static void setBoolean(String name, boolean bool){
NBTTagCompound compound = getCompound(); NBTTagCompound compound = readCompound();
if(compound != null){ if(compound != null){
compound.setBoolean(getName(name), bool); compound.setBoolean(getName(name), bool);
writeCompoundToFile(compound); writeCompound(compound);
} }
} }
@ -79,49 +79,29 @@ public class PersistentClientData{
} }
public static boolean getBoolean(String name){ public static boolean getBoolean(String name){
NBTTagCompound compound = getCompound(); NBTTagCompound compound = readCompound();
return compound != null && compound.getBoolean(getName(name)); return compound != null && compound.getBoolean(getName(name));
} }
private static File getTheFile() throws Exception{
if(!theFile.exists()){
theFile.createNewFile();
}
return theFile;
}
public static void setTheFile(File file){ public static void setTheFile(File file){
theFile = file; theFile = file;
} }
private static NBTTagCompound getCompound(){ private static NBTTagCompound readCompound(){
try{ try{
return getCompound(getTheFile()); return CompressedStreamTools.readCompressed(new FileInputStream(theFile));
} }
catch(Exception e){ catch(Exception e){
ModUtil.LOGGER.fatal("Couldn't read Persistant Variable!", e); return new NBTTagCompound();
return null;
} }
} }
private static NBTTagCompound getCompound(File file) throws Exception{ private static void writeCompound(NBTTagCompound compound){
try{ try{
return CompressedStreamTools.readCompressed(new FileInputStream(file)); if(!theFile.exists()){
} theFile.createNewFile();
catch(Exception e){ }
return createNewCompound(file); CompressedStreamTools.writeCompressed(compound, new FileOutputStream(theFile));
}
}
private static NBTTagCompound createNewCompound(File file) throws Exception{
NBTTagCompound compound = new NBTTagCompound();
CompressedStreamTools.writeCompressed(compound, new FileOutputStream(file));
return getCompound(file);
}
private static void writeCompoundToFile(NBTTagCompound compound){
try{
CompressedStreamTools.writeCompressed(compound, new FileOutputStream(getTheFile()));
} }
catch(Exception e){ catch(Exception e){
ModUtil.LOGGER.fatal("Couldn't write Persistant Variable!", e); ModUtil.LOGGER.fatal("Couldn't write Persistant Variable!", e);