This is gonna work now. Promise.

God damn it.
This commit is contained in:
Ellpeck 2015-11-15 13:26:14 +01:00
parent eae2d1d288
commit 8834815c25
4 changed files with 17 additions and 18 deletions

View file

@ -36,7 +36,7 @@ public class CraftEvent{
NBTTagCompound compound = PersistentServerData.getDataFromPlayer(event.player); NBTTagCompound compound = PersistentServerData.getDataFromPlayer(event.player);
if(compound != null && !compound.getBoolean("BookGottenAlready")){ if(compound != null && !compound.getBoolean("BookGottenAlready")){
compound.setBoolean("BookGottenAlready", true); compound.setBoolean("BookGottenAlready", true);
WorldData.makeDirty(false); WorldData.makeDirty();
EntityItem entityItem = new EntityItem(event.player.worldObj, event.player.posX, event.player.posY, event.player.posZ, new ItemStack(InitItems.itemLexicon)); EntityItem entityItem = new EntityItem(event.player.worldObj, event.player.posX, event.player.posY, event.player.posZ, new ItemStack(InitItems.itemLexicon));
entityItem.delayBeforeCanPickup = 0; entityItem.delayBeforeCanPickup = 0;

View file

@ -26,11 +26,11 @@ public class WorldLoadingEvents{
@SubscribeEvent @SubscribeEvent
public void onUnload(WorldEvent.Unload event){ public void onUnload(WorldEvent.Unload event){
WorldData.makeDirty(true); WorldData.makeDirty();
} }
@SubscribeEvent @SubscribeEvent
public void onSave(WorldEvent.Save event){ public void onSave(WorldEvent.Save event){
WorldData.makeDirty(false); WorldData.makeDirty();
} }
} }

View file

@ -87,7 +87,7 @@ public class LaserRelayConnectionHandler{
} }
//System.out.println("Removing a Relay from the Network!"); //System.out.println("Removing a Relay from the Network!");
} }
WorldData.makeDirty(false); WorldData.makeDirty();
} }
/** /**
@ -140,7 +140,7 @@ public class LaserRelayConnectionHandler{
else if(secondNetwork != null){ else if(secondNetwork != null){
secondNetwork.connections.add(new ConnectionPair(firstRelay, secondRelay)); secondNetwork.connections.add(new ConnectionPair(firstRelay, secondRelay));
} }
WorldData.makeDirty(false); WorldData.makeDirty();
//System.out.println("Connected "+firstRelay.toString()+" to "+secondRelay.toString()); //System.out.println("Connected "+firstRelay.toString()+" to "+secondRelay.toString());
//System.out.println(firstNetwork == null ? secondNetwork.toString() : firstNetwork.toString()); //System.out.println(firstNetwork == null ? secondNetwork.toString() : firstNetwork.toString());
//System.out.println(this.networks); //System.out.println(this.networks);
@ -156,7 +156,7 @@ public class LaserRelayConnectionHandler{
firstNetwork.connections.add(secondPair); firstNetwork.connections.add(secondPair);
} }
this.networks.remove(secondNetwork); this.networks.remove(secondNetwork);
WorldData.makeDirty(false); WorldData.makeDirty();
//System.out.println("Merged Two Networks!"); //System.out.println("Merged Two Networks!");
} }

View file

@ -23,16 +23,13 @@ public class WorldData extends WorldSavedData{
public static final String DATA_TAG = ModUtil.MOD_ID+"WorldData"; public static final String DATA_TAG = ModUtil.MOD_ID+"WorldData";
public static WorldData instance; public static WorldData instance;
public boolean shouldClearAfterSave;
public WorldData(String tag){ public WorldData(String tag){
super(tag); super(tag);
} }
public static void makeDirty(boolean shouldClearAfterSave){ public static void makeDirty(){
if(instance != null){ if(instance != null){
instance.markDirty(); instance.markDirty();
instance.shouldClearAfterSave = shouldClearAfterSave;
} }
} }
@ -40,6 +37,7 @@ public class WorldData extends WorldSavedData{
if(server != null){ if(server != null){
World world = server.getEntityWorld(); World world = server.getEntityWorld();
if(!world.isRemote){ if(!world.isRemote){
clearOldData();
ModUtil.LOGGER.info("Loading WorldData!"); ModUtil.LOGGER.info("Loading WorldData!");
WorldData savedData = (WorldData)world.loadItemData(WorldData.class, WorldData.DATA_TAG); WorldData savedData = (WorldData)world.loadItemData(WorldData.class, WorldData.DATA_TAG);
@ -60,6 +58,15 @@ public class WorldData extends WorldSavedData{
} }
} }
public static void clearOldData(){
if(!LaserRelayConnectionHandler.getInstance().networks.isEmpty()){
ModUtil.LOGGER.info("Clearing leftover Laser Relay Connection Data from other worlds!");
}
if(!PersistentServerData.playerSaveData.isEmpty()){
ModUtil.LOGGER.info("Clearing leftover Persistent Server Data from other worlds!");
}
}
@Override @Override
public void readFromNBT(NBTTagCompound compound){ public void readFromNBT(NBTTagCompound compound){
//Laser World Data //Laser World Data
@ -93,13 +100,5 @@ public class WorldData extends WorldSavedData{
playerList.appendTag(theSave.toNBT()); playerList.appendTag(theSave.toNBT());
} }
compound.setTag("PlayerData", playerList); compound.setTag("PlayerData", playerList);
if(this.shouldClearAfterSave){
ModUtil.LOGGER.info("Clearing WorldData after saving! (Probably because the world is getting unloaded)");
this.shouldClearAfterSave = false;
PersistentServerData.playerSaveData.clear();
LaserRelayConnectionHandler.getInstance().networks.clear();
}
} }
} }