/trunk/sources/minecraft/net/minecraft/src/SaveHandler.java

https://gitlab.com/BGCX261/zombie-craft-svn-to-git · Java · 178 lines · 163 code · 12 blank · 3 comment · 11 complexity · 16c9c3be14c6e31e1a8f216c96edacb1 MD5 · raw file

  1. package net.minecraft.src;
  2. // Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
  3. // Jad home page: http://www.kpdus.com/jad.html
  4. // Decompiler options: packimports(3) braces deadcode
  5. import java.io.*;
  6. import java.util.List;
  7. import java.util.logging.Logger;
  8. public class SaveHandler
  9. implements ISaveHandler
  10. {
  11. public SaveHandler(File file, String s, boolean flag)
  12. {
  13. field_22155_b = new File(file, s);
  14. field_22155_b.mkdirs();
  15. field_22158_c = new File(field_22155_b, "players");
  16. if(flag)
  17. {
  18. field_22158_c.mkdirs();
  19. }
  20. func_22154_d();
  21. }
  22. private void func_22154_d()
  23. {
  24. try
  25. {
  26. File file = new File(field_22155_b, "session.lock");
  27. DataOutputStream dataoutputstream = new DataOutputStream(new FileOutputStream(file));
  28. try
  29. {
  30. dataoutputstream.writeLong(field_22157_d);
  31. }
  32. finally
  33. {
  34. dataoutputstream.close();
  35. }
  36. }
  37. catch(IOException ioexception)
  38. {
  39. ioexception.printStackTrace();
  40. throw new RuntimeException("Failed to check session lock, aborting");
  41. }
  42. }
  43. protected File func_22153_a()
  44. {
  45. return field_22155_b;
  46. }
  47. public void func_22150_b()
  48. {
  49. try
  50. {
  51. File file = new File(field_22155_b, "session.lock");
  52. DataInputStream datainputstream = new DataInputStream(new FileInputStream(file));
  53. try
  54. {
  55. if(datainputstream.readLong() != field_22157_d)
  56. {
  57. throw new MinecraftException("The save is being accessed from another location, aborting");
  58. }
  59. }
  60. finally
  61. {
  62. datainputstream.close();
  63. }
  64. }
  65. catch(IOException ioexception)
  66. {
  67. throw new MinecraftException("Failed to check session lock, aborting");
  68. }
  69. }
  70. public IChunkLoader func_22149_a(WorldProvider worldprovider)
  71. {
  72. if(worldprovider instanceof WorldProviderHell)
  73. {
  74. File file = new File(field_22155_b, "DIM-1");
  75. file.mkdirs();
  76. return new ChunkLoader(file, true);
  77. } else
  78. {
  79. return new ChunkLoader(field_22155_b, true);
  80. }
  81. }
  82. public WorldInfo func_22151_c()
  83. {
  84. File file = new File(field_22155_b, "level.dat");
  85. if(file.exists())
  86. {
  87. try
  88. {
  89. NBTTagCompound nbttagcompound = CompressedStreamTools.func_1138_a(new FileInputStream(file));
  90. NBTTagCompound nbttagcompound1 = nbttagcompound.getCompoundTag("Data");
  91. return new WorldInfo(nbttagcompound1);
  92. }
  93. catch(Exception exception)
  94. {
  95. exception.printStackTrace();
  96. }
  97. }
  98. return null;
  99. }
  100. public void func_22148_a(WorldInfo worldinfo, List list)
  101. {
  102. NBTTagCompound nbttagcompound = worldinfo.func_22305_a(list);
  103. NBTTagCompound nbttagcompound1 = new NBTTagCompound();
  104. nbttagcompound1.setTag("Data", nbttagcompound);
  105. try
  106. {
  107. File file = new File(field_22155_b, "level.dat_new");
  108. File file1 = new File(field_22155_b, "level.dat_old");
  109. File file2 = new File(field_22155_b, "level.dat");
  110. CompressedStreamTools.writeGzippedCompoundToOutputStream(nbttagcompound1, new FileOutputStream(file));
  111. if(file1.exists())
  112. {
  113. file1.delete();
  114. }
  115. file2.renameTo(file1);
  116. if(file2.exists())
  117. {
  118. file2.delete();
  119. }
  120. file.renameTo(file2);
  121. if(file.exists())
  122. {
  123. file.delete();
  124. }
  125. }
  126. catch(Exception exception)
  127. {
  128. exception.printStackTrace();
  129. }
  130. }
  131. public void func_22152_a(WorldInfo worldinfo)
  132. {
  133. NBTTagCompound nbttagcompound = worldinfo.func_22299_a();
  134. NBTTagCompound nbttagcompound1 = new NBTTagCompound();
  135. nbttagcompound1.setTag("Data", nbttagcompound);
  136. try
  137. {
  138. File file = new File(field_22155_b, "level.dat_new");
  139. File file1 = new File(field_22155_b, "level.dat_old");
  140. File file2 = new File(field_22155_b, "level.dat");
  141. CompressedStreamTools.writeGzippedCompoundToOutputStream(nbttagcompound1, new FileOutputStream(file));
  142. if(file1.exists())
  143. {
  144. file1.delete();
  145. }
  146. file2.renameTo(file1);
  147. if(file2.exists())
  148. {
  149. file2.delete();
  150. }
  151. file.renameTo(file2);
  152. if(file.exists())
  153. {
  154. file.delete();
  155. }
  156. }
  157. catch(Exception exception)
  158. {
  159. exception.printStackTrace();
  160. }
  161. }
  162. private static final Logger field_22156_a = Logger.getLogger("Minecraft");
  163. private final File field_22155_b;
  164. private final File field_22158_c;
  165. private final long field_22157_d = System.currentTimeMillis();
  166. }