Krenair

Untitled

Oct 29th, 2011
347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. This is information taken from IsomPreview.java and ZoneRenderer.java in the isom folder in the zip file linked here: http://twitter.com/#!/jeb_/status/129568296600219648
  2. It's likely that these files were released by accident.
  3. Thanks to Fesh0r and LexManos.
  4. Here is the information we can work out about the code of Minecraft pre-obfuscation:
  5.  
  6. Structure:
  7. full class path = class name in MCP
  8. constructor = argument type(s)
  9. field(s) name(s) = (static) type
  10. method(s) name(s) = (static) type (argument type(s))
  11.  
  12. Data:
  13. net.minecraft.Pos = ChunkCoordinates in MCP
  14. fields x, z = int
  15.  
  16. net.minecraft.world.level.Level = World in MCP
  17. constructor = DirectoryLevelStorage, String, LevelSettings
  18. method getSharedSpawnPos = Pos
  19. method getTile = Tile (int, int, int)
  20. method getBrightness = float (int, int, int)
  21. method getChunk = LevelChunk (int, int)
  22. fields depth, skyDarken = int
  23. field name = String
  24.  
  25. net.minecraft.world.level.LevelSettings = WorldSettings in MCP
  26. constructor = long, LevelSettings Enum, boolean, boolean
  27.  
  28. net.minecraft.world.level.storage.DirectoryLevelStorage = SaveHandler in MCP
  29. constructor = File, String, boolean
  30.  
  31. net.minecraft.world.level.chunk.LevelChunk = Chunk in MCP
  32. method isEmpty (getFalse in MCP) = boolean
  33.  
  34. net.minecraft.world.level.material.Material = Material in MCP
  35. field water = static Material
  36.  
  37. net.minecraft.world.level.tile.Tile = Block in MCP
  38. field tiles = static Tile[256]
  39. field material = Material
  40. method getTexture = int (int)
Advertisement
Add Comment
Please, Sign In to add comment