From db676b3d9013f094a0a7681ac6336f1242b14c9c Mon Sep 17 00:00:00 2001 From: asiekierka Date: Fri, 12 Aug 2016 17:23:12 +0200 Subject: [PATCH] Improvements across the mappings --- mappings/net/minecraft/block/Block.json | 91 +++++++- .../BlockStateFactory.json} | 4 +- .../impl/BlockAnvil.json} | 4 +- .../net/minecraft/block/impl/BlockBanner.json | 36 +++ .../minecraft/block/impl/BlockBarrier.json | 8 + .../net/minecraft/block/impl/BlockBone.json | 8 + .../block/impl/BlockBrewingStand.json | 27 +++ .../net/minecraft/block/impl/BlockCactus.json | 21 +- .../net/minecraft/block/impl/BlockCake.json | 27 +++ .../net/minecraft/block/impl/BlockCarpet.json | 38 ++++ .../minecraft/block/impl/BlockCauldron.json | 21 +- .../net/minecraft/block/impl/BlockChest.json | 21 +- .../net/minecraft/block/impl/BlockClay.json | 8 + .../minecraft/block/impl/BlockCommand.json | 27 +++ .../minecraft/block/impl/BlockComparator.json | 21 +- .../block/impl/BlockDaylightDetector.json | 21 +- .../minecraft/block/impl/BlockDispenser.json | 27 +++ .../net/minecraft/block/impl/BlockDoor.json | 21 +- .../minecraft/block/impl/BlockDragonEgg.json | 8 + .../minecraft/block/impl/BlockDropper.json | 8 + .../block/impl/BlockEnchantingTable.json | 8 + .../minecraft/block/impl/BlockEndGateway.json | 8 + .../minecraft/block/impl/BlockEndPortal.json | 8 + .../block/impl/BlockEndPortalFrame.json | 27 +++ .../net/minecraft/block/impl/BlockFence.json | 8 + .../minecraft/block/impl/BlockFenceGate.json | 27 +++ .../net/minecraft/block/impl/BlockFire.json | 21 +- .../net/minecraft/block/impl/BlockFlower.json | 21 +- .../minecraft/block/impl/BlockFlowerPot.json | 21 ++ .../minecraft/block/impl/BlockFurnace.json | 27 +++ .../net/minecraft/block/impl/BlockGrass.json | 15 +- .../minecraft/block/impl/BlockGrassPath.json | 8 + .../net/minecraft/block/impl/BlockHopper.json | 21 +- .../net/minecraft/block/impl/BlockIce.json | 8 + .../minecraft/block/impl/BlockJukebox.json | 21 +- .../net/minecraft/block/impl/BlockLadder.json | 27 +++ .../net/minecraft/block/impl/BlockLever.json | 27 +++ .../net/minecraft/block/impl/BlockMagma.json | 8 + .../minecraft/block/impl/BlockMobSpawner.json | 8 + .../minecraft/block/impl/BlockNetherWart.json | 8 + .../net/minecraft/block/impl/BlockOre.json | 8 + .../minecraft/block/impl/BlockPackedIce.json | 8 + .../net/minecraft/block/impl/BlockPiston.json | 21 +- .../block/impl/BlockPistonExtension.json | 21 +- .../minecraft/block/impl/BlockPistonHead.json | 21 +- .../net/minecraft/block/impl/BlockPortal.json | 21 +- .../block/impl/BlockPressurePlate.json | 27 +++ .../impl/BlockPressurePlateWeighted.json | 27 +++ .../net/minecraft/block/impl/BlockRail.json | 27 +++ .../minecraft/block/impl/BlockRedstone.json | 8 + .../block/impl/BlockRedstoneLamp.json | 8 + .../block/impl/BlockRedstoneOre.json | 8 + .../block/impl/BlockRedstoneTorch.json | 8 + .../block/impl/BlockRedstoneWire.json | 21 +- .../net/minecraft/block/impl/BlockReeds.json | 21 +- .../minecraft/block/impl/BlockRepeater.json | 21 +- .../net/minecraft/block/impl/BlockSand.json | 21 +- .../block/impl/BlockSignStanding.json | 27 +++ .../minecraft/block/impl/BlockSignWall.json | 27 +++ .../net/minecraft/block/impl/BlockSkull.json | 21 +- .../net/minecraft/block/impl/BlockSlime.json | 8 + .../net/minecraft/block/impl/BlockSnow.json | 8 + .../minecraft/block/impl/BlockSnowLayer.json | 8 + .../minecraft/block/impl/BlockSoulSand.json | 8 + .../net/minecraft/block/impl/BlockStairs.json | 27 +++ .../minecraft/block/impl/BlockStructure.json | 27 +++ .../block/impl/BlockStructureVoid.json | 8 + .../net/minecraft/block/impl/BlockTNT.json | 27 +++ .../minecraft/block/impl/BlockTallGrass.json | 21 +- .../net/minecraft/block/impl/BlockTorch.json | 27 +++ .../minecraft/block/impl/BlockTrapdoor.json | 27 +++ .../net/minecraft/block/impl/BlockWeb.json | 8 + .../block/property/BlockPropertyBase.json | 8 + .../BlockPropertyEnum.json} | 2 +- .../block/property/BlockPropertyInteger.json | 36 +++ .../block/tile/impl/TileEntityComparator.json | 28 ++- .../block/tile/impl/TileEntityPiston.json | 81 ++++++- .../client/ClientBrandRetriever.json | 15 -- mappings/net/minecraft/client/main/Main.json | 35 --- mappings/net/minecraft/realms/RealmsMth.json | 207 ------------------ .../minecraft/server/IntegratedServer.json | 14 ++ .../net/minecraft/server/LanServerPinger.json | 19 ++ .../net/minecraft/server/MinecraftServer.json | 31 --- mappings/net/minecraft/util/DyeColor.json | 89 ++++++++ .../net/minecraft/util/math/MathUtils.json | 28 ++- mappings/net/minecraft/world/IBlockView.json | 6 + mappings/net/minecraft/world/World.json | 12 + 87 files changed, 1639 insertions(+), 322 deletions(-) rename mappings/net/minecraft/{entity/EntityItem.json => block/BlockStateFactory.json} (51%) rename mappings/net/minecraft/{realms/RealmsScreen.json => block/impl/BlockAnvil.json} (50%) create mode 100644 mappings/net/minecraft/block/impl/BlockBanner.json create mode 100644 mappings/net/minecraft/block/impl/BlockBarrier.json create mode 100644 mappings/net/minecraft/block/impl/BlockBone.json create mode 100644 mappings/net/minecraft/block/impl/BlockBrewingStand.json create mode 100644 mappings/net/minecraft/block/impl/BlockCake.json create mode 100644 mappings/net/minecraft/block/impl/BlockCarpet.json create mode 100644 mappings/net/minecraft/block/impl/BlockClay.json create mode 100644 mappings/net/minecraft/block/impl/BlockCommand.json create mode 100644 mappings/net/minecraft/block/impl/BlockDispenser.json create mode 100644 mappings/net/minecraft/block/impl/BlockDragonEgg.json create mode 100644 mappings/net/minecraft/block/impl/BlockDropper.json create mode 100644 mappings/net/minecraft/block/impl/BlockEnchantingTable.json create mode 100644 mappings/net/minecraft/block/impl/BlockEndGateway.json create mode 100644 mappings/net/minecraft/block/impl/BlockEndPortal.json create mode 100644 mappings/net/minecraft/block/impl/BlockEndPortalFrame.json create mode 100644 mappings/net/minecraft/block/impl/BlockFence.json create mode 100644 mappings/net/minecraft/block/impl/BlockFenceGate.json create mode 100644 mappings/net/minecraft/block/impl/BlockFlowerPot.json create mode 100644 mappings/net/minecraft/block/impl/BlockFurnace.json create mode 100644 mappings/net/minecraft/block/impl/BlockGrassPath.json create mode 100644 mappings/net/minecraft/block/impl/BlockIce.json create mode 100644 mappings/net/minecraft/block/impl/BlockLadder.json create mode 100644 mappings/net/minecraft/block/impl/BlockLever.json create mode 100644 mappings/net/minecraft/block/impl/BlockMagma.json create mode 100644 mappings/net/minecraft/block/impl/BlockMobSpawner.json create mode 100644 mappings/net/minecraft/block/impl/BlockNetherWart.json create mode 100644 mappings/net/minecraft/block/impl/BlockOre.json create mode 100644 mappings/net/minecraft/block/impl/BlockPackedIce.json create mode 100644 mappings/net/minecraft/block/impl/BlockPressurePlate.json create mode 100644 mappings/net/minecraft/block/impl/BlockPressurePlateWeighted.json create mode 100644 mappings/net/minecraft/block/impl/BlockRail.json create mode 100644 mappings/net/minecraft/block/impl/BlockRedstone.json create mode 100644 mappings/net/minecraft/block/impl/BlockRedstoneLamp.json create mode 100644 mappings/net/minecraft/block/impl/BlockRedstoneOre.json create mode 100644 mappings/net/minecraft/block/impl/BlockRedstoneTorch.json create mode 100644 mappings/net/minecraft/block/impl/BlockSignStanding.json create mode 100644 mappings/net/minecraft/block/impl/BlockSignWall.json create mode 100644 mappings/net/minecraft/block/impl/BlockSlime.json create mode 100644 mappings/net/minecraft/block/impl/BlockSnow.json create mode 100644 mappings/net/minecraft/block/impl/BlockSnowLayer.json create mode 100644 mappings/net/minecraft/block/impl/BlockSoulSand.json create mode 100644 mappings/net/minecraft/block/impl/BlockStairs.json create mode 100644 mappings/net/minecraft/block/impl/BlockStructure.json create mode 100644 mappings/net/minecraft/block/impl/BlockStructureVoid.json create mode 100644 mappings/net/minecraft/block/impl/BlockTNT.json create mode 100644 mappings/net/minecraft/block/impl/BlockTorch.json create mode 100644 mappings/net/minecraft/block/impl/BlockTrapdoor.json create mode 100644 mappings/net/minecraft/block/impl/BlockWeb.json create mode 100644 mappings/net/minecraft/block/property/BlockPropertyBase.json rename mappings/net/minecraft/block/{properties/PropertyEnum.json => property/BlockPropertyEnum.json} (78%) create mode 100644 mappings/net/minecraft/block/property/BlockPropertyInteger.json delete mode 100644 mappings/net/minecraft/client/ClientBrandRetriever.json delete mode 100644 mappings/net/minecraft/client/main/Main.json delete mode 100644 mappings/net/minecraft/realms/RealmsMth.json create mode 100644 mappings/net/minecraft/server/IntegratedServer.json create mode 100644 mappings/net/minecraft/server/LanServerPinger.json delete mode 100644 mappings/net/minecraft/server/MinecraftServer.json create mode 100644 mappings/net/minecraft/util/DyeColor.json diff --git a/mappings/net/minecraft/block/Block.json b/mappings/net/minecraft/block/Block.json index f793fd9d9b..56c1da37fa 100644 --- a/mappings/net/minecraft/block/Block.json +++ b/mappings/net/minecraft/block/Block.json @@ -2,11 +2,21 @@ "obf": "akw", "name": "net/minecraft/block/Block", "field": [ + { + "obf": "A", + "name": "stateFactory", + "type": "Lnone/ask;" + }, { "obf": "a", "name": "id", "type": "Lnone/kp;" }, + { + "obf": "c", + "name": "defaultState", + "type": "Lnone/asj;" + }, { "obf": "h", "name": "registry", @@ -31,6 +41,17 @@ } ], "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [ + { + "index": 0, + "name": "meta" + } + ] + }, { "obf": "a", "name": "register", @@ -53,7 +74,12 @@ "obf": "a", "name": "getRawIdFromBlock", "signature": "(Lnone/akw;)I", - "args": [] + "args": [ + { + "index": 0, + "name": "block" + } + ] }, { "obf": "a", @@ -99,11 +125,22 @@ } ] }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, { "obf": "b", "name": "getBlockByRawId", "signature": "(I)Lnone/akw;", - "args": [] + "args": [ + { + "index": 0, + "name": "id" + } + ] }, { "obf": "b", @@ -129,6 +166,17 @@ } ] }, + { + "obf": "c", + "name": "getStateByRawId", + "signature": "(I)Lnone/asj;", + "args": [ + { + "index": 0, + "name": "id" + } + ] + }, { "obf": "c", "signature": "(Lnone/asj;Lnone/aiy;Lnone/cn;)Lnone/asj;", @@ -139,11 +187,50 @@ } ] }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [ + { + "index": 0, + "name": "state" + } + ] + }, { "obf": "j", "name": "getRawIdFromBlockState", "signature": "(Lnone/asj;)I", + "args": [ + { + "index": 0, + "name": "state" + } + ] + }, + { + "obf": "t", + "name": "getStateFactory", + "signature": "()Lnone/ask;", "args": [] + }, + { + "obf": "u", + "name": "getDefaultState", + "signature": "()Lnone/asj;", + "args": [] + }, + { + "obf": "w", + "name": "setDefaultState", + "signature": "(Lnone/asj;)V", + "args": [ + { + "index": 0, + "name": "state" + } + ] } ], "innerClass": [] diff --git a/mappings/net/minecraft/entity/EntityItem.json b/mappings/net/minecraft/block/BlockStateFactory.json similarity index 51% rename from mappings/net/minecraft/entity/EntityItem.json rename to mappings/net/minecraft/block/BlockStateFactory.json index 06223a85e6..4a1085588f 100644 --- a/mappings/net/minecraft/entity/EntityItem.json +++ b/mappings/net/minecraft/block/BlockStateFactory.json @@ -1,6 +1,6 @@ { - "obf": "EntityItem", - "name": "net/minecraft/entity/EntityItem", + "obf": "ask", + "name": "net/minecraft/block/BlockStateFactory", "field": [], "constructors": [], "method": [], diff --git a/mappings/net/minecraft/realms/RealmsScreen.json b/mappings/net/minecraft/block/impl/BlockAnvil.json similarity index 50% rename from mappings/net/minecraft/realms/RealmsScreen.json rename to mappings/net/minecraft/block/impl/BlockAnvil.json index 5bc8ef3d6e..102ef206d8 100644 --- a/mappings/net/minecraft/realms/RealmsScreen.json +++ b/mappings/net/minecraft/block/impl/BlockAnvil.json @@ -1,6 +1,6 @@ { - "obf": "RealmsScreen", - "name": "net/minecraft/realms/RealmsScreen", + "obf": "akn", + "name": "net/minecraft/block/impl/BlockAnvil", "field": [], "constructors": [], "method": [], diff --git a/mappings/net/minecraft/block/impl/BlockBanner.json b/mappings/net/minecraft/block/impl/BlockBanner.json new file mode 100644 index 0000000000..5b51ab5a43 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockBanner.json @@ -0,0 +1,36 @@ +{ + "obf": "ako", + "name": "net/minecraft/block/impl/BlockBanner", + "field": [ + { + "obf": "b", + "name": "ROTATION", + "type": "Lnone/asy;" + }, + { + "obf": "c", + "name": "BOUNDING_BOX", + "type": "Lnone/bcp;" + } + ], + "constructors": [], + "method": [], + "innerClass": [ + { + "obf": "ako$a", + "name": "Standing", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] + }, + { + "obf": "ako$b", + "name": "Wall", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] + } + ] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockBarrier.json b/mappings/net/minecraft/block/impl/BlockBarrier.json new file mode 100644 index 0000000000..bf0ffad0dd --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockBarrier.json @@ -0,0 +1,8 @@ +{ + "obf": "akp", + "name": "net/minecraft/block/impl/BlockBarrier", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockBone.json b/mappings/net/minecraft/block/impl/BlockBone.json new file mode 100644 index 0000000000..e73573fbc3 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockBone.json @@ -0,0 +1,8 @@ +{ + "obf": "aky", + "name": "net/minecraft/block/impl/BlockBone", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockBrewingStand.json b/mappings/net/minecraft/block/impl/BlockBrewingStand.json new file mode 100644 index 0000000000..4a790e70c9 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockBrewingStand.json @@ -0,0 +1,27 @@ +{ + "obf": "alb", + "name": "net/minecraft/block/impl/BlockBrewingStand", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockCactus.json b/mappings/net/minecraft/block/impl/BlockCactus.json index 19e60cc142..50ada90dfc 100644 --- a/mappings/net/minecraft/block/impl/BlockCactus.json +++ b/mappings/net/minecraft/block/impl/BlockCactus.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockCactus", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockCake.json b/mappings/net/minecraft/block/impl/BlockCake.json new file mode 100644 index 0000000000..8ed8368c14 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockCake.json @@ -0,0 +1,27 @@ +{ + "obf": "alf", + "name": "net/minecraft/block/impl/BlockCake", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockCarpet.json b/mappings/net/minecraft/block/impl/BlockCarpet.json new file mode 100644 index 0000000000..a860636937 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockCarpet.json @@ -0,0 +1,38 @@ +{ + "obf": "aqx", + "name": "net/minecraft/block/impl/BlockCarpet", + "field": [ + { + "obf": "a", + "name": "COLOR", + "type": "Lnone/asx;" + }, + { + "obf": "b", + "name": "BOUNDING_BOX", + "type": "Lnone/bcp;" + } + ], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockCauldron.json b/mappings/net/minecraft/block/impl/BlockCauldron.json index 2af77b7770..6135738dd6 100644 --- a/mappings/net/minecraft/block/impl/BlockCauldron.json +++ b/mappings/net/minecraft/block/impl/BlockCauldron.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockCauldron", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockChest.json b/mappings/net/minecraft/block/impl/BlockChest.json index 8376fc399a..b2b9c8436b 100644 --- a/mappings/net/minecraft/block/impl/BlockChest.json +++ b/mappings/net/minecraft/block/impl/BlockChest.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockChest", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockClay.json b/mappings/net/minecraft/block/impl/BlockClay.json new file mode 100644 index 0000000000..86461494e6 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockClay.json @@ -0,0 +1,8 @@ +{ + "obf": "all", + "name": "net/minecraft/block/impl/BlockClay", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockCommand.json b/mappings/net/minecraft/block/impl/BlockCommand.json new file mode 100644 index 0000000000..5d066c8bd3 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockCommand.json @@ -0,0 +1,27 @@ +{ + "obf": "alo", + "name": "net/minecraft/block/impl/BlockCommand", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockComparator.json b/mappings/net/minecraft/block/impl/BlockComparator.json index b79b19653f..a5200678e8 100644 --- a/mappings/net/minecraft/block/impl/BlockComparator.json +++ b/mappings/net/minecraft/block/impl/BlockComparator.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockComparator", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockDaylightDetector.json b/mappings/net/minecraft/block/impl/BlockDaylightDetector.json index 1e752eb7ae..4a6f1209ee 100644 --- a/mappings/net/minecraft/block/impl/BlockDaylightDetector.json +++ b/mappings/net/minecraft/block/impl/BlockDaylightDetector.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockDaylightDetector", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockDispenser.json b/mappings/net/minecraft/block/impl/BlockDispenser.json new file mode 100644 index 0000000000..67575f0364 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockDispenser.json @@ -0,0 +1,27 @@ +{ + "obf": "aly", + "name": "net/minecraft/block/impl/BlockDispenser", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockDoor.json b/mappings/net/minecraft/block/impl/BlockDoor.json index 8033b91477..7a2cc931d0 100644 --- a/mappings/net/minecraft/block/impl/BlockDoor.json +++ b/mappings/net/minecraft/block/impl/BlockDoor.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockDoor", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockDragonEgg.json b/mappings/net/minecraft/block/impl/BlockDragonEgg.json new file mode 100644 index 0000000000..2e1f37015b --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockDragonEgg.json @@ -0,0 +1,8 @@ +{ + "obf": "amb", + "name": "net/minecraft/block/impl/BlockDragonEgg", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockDropper.json b/mappings/net/minecraft/block/impl/BlockDropper.json new file mode 100644 index 0000000000..746e9df7f4 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockDropper.json @@ -0,0 +1,8 @@ +{ + "obf": "amc", + "name": "net/minecraft/block/impl/BlockDropper", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockEnchantingTable.json b/mappings/net/minecraft/block/impl/BlockEnchantingTable.json new file mode 100644 index 0000000000..df7f2a07ad --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockEnchantingTable.json @@ -0,0 +1,8 @@ +{ + "obf": "ame", + "name": "net/minecraft/block/impl/BlockEnchantingTable", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockEndGateway.json b/mappings/net/minecraft/block/impl/BlockEndGateway.json new file mode 100644 index 0000000000..66c181a05e --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockEndGateway.json @@ -0,0 +1,8 @@ +{ + "obf": "amf", + "name": "net/minecraft/block/impl/BlockEndGateway", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockEndPortal.json b/mappings/net/minecraft/block/impl/BlockEndPortal.json new file mode 100644 index 0000000000..3c56a67e3d --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockEndPortal.json @@ -0,0 +1,8 @@ +{ + "obf": "amg", + "name": "net/minecraft/block/impl/BlockEndPortal", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockEndPortalFrame.json b/mappings/net/minecraft/block/impl/BlockEndPortalFrame.json new file mode 100644 index 0000000000..8624c87f53 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockEndPortalFrame.json @@ -0,0 +1,27 @@ +{ + "obf": "amh", + "name": "net/minecraft/block/impl/BlockEndPortalFrame", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockFence.json b/mappings/net/minecraft/block/impl/BlockFence.json new file mode 100644 index 0000000000..d412778f62 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockFence.json @@ -0,0 +1,8 @@ +{ + "obf": "amn", + "name": "net/minecraft/block/impl/BlockFence", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockFenceGate.json b/mappings/net/minecraft/block/impl/BlockFenceGate.json new file mode 100644 index 0000000000..7cc0a03dc7 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockFenceGate.json @@ -0,0 +1,27 @@ +{ + "obf": "amo", + "name": "net/minecraft/block/impl/BlockFenceGate", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockFire.json b/mappings/net/minecraft/block/impl/BlockFire.json index f792ff4d6c..27419d16fa 100644 --- a/mappings/net/minecraft/block/impl/BlockFire.json +++ b/mappings/net/minecraft/block/impl/BlockFire.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockFire", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockFlower.json b/mappings/net/minecraft/block/impl/BlockFlower.json index fa309a39b2..b02c2bb484 100644 --- a/mappings/net/minecraft/block/impl/BlockFlower.json +++ b/mappings/net/minecraft/block/impl/BlockFlower.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockFlower", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockFlowerPot.json b/mappings/net/minecraft/block/impl/BlockFlowerPot.json new file mode 100644 index 0000000000..ef9629caa0 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockFlowerPot.json @@ -0,0 +1,21 @@ +{ + "obf": "amr", + "name": "net/minecraft/block/impl/BlockFlowerPot", + "field": [], + "constructors": [], + "method": [ + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockFurnace.json b/mappings/net/minecraft/block/impl/BlockFurnace.json new file mode 100644 index 0000000000..81367916dc --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockFurnace.json @@ -0,0 +1,27 @@ +{ + "obf": "amw", + "name": "net/minecraft/block/impl/BlockFurnace", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockGrass.json b/mappings/net/minecraft/block/impl/BlockGrass.json index 3a9ea78636..5ced960dbf 100644 --- a/mappings/net/minecraft/block/impl/BlockGrass.json +++ b/mappings/net/minecraft/block/impl/BlockGrass.json @@ -3,6 +3,19 @@ "name": "net/minecraft/block/impl/BlockGrass", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockGrassPath.json b/mappings/net/minecraft/block/impl/BlockGrassPath.json new file mode 100644 index 0000000000..08d48f60d4 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockGrassPath.json @@ -0,0 +1,8 @@ +{ + "obf": "ana", + "name": "net/minecraft/block/impl/BlockGrassPath", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockHopper.json b/mappings/net/minecraft/block/impl/BlockHopper.json index 0afbd32212..581ab804bf 100644 --- a/mappings/net/minecraft/block/impl/BlockHopper.json +++ b/mappings/net/minecraft/block/impl/BlockHopper.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockHopper", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockIce.json b/mappings/net/minecraft/block/impl/BlockIce.json new file mode 100644 index 0000000000..5bc20f3f16 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockIce.json @@ -0,0 +1,8 @@ +{ + "obf": "anm", + "name": "net/minecraft/block/impl/BlockIce", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockJukebox.json b/mappings/net/minecraft/block/impl/BlockJukebox.json index 6be27119b0..d91b4219fd 100644 --- a/mappings/net/minecraft/block/impl/BlockJukebox.json +++ b/mappings/net/minecraft/block/impl/BlockJukebox.json @@ -3,7 +3,26 @@ "name": "net/minecraft/block/impl/BlockJukebox", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [ { "obf": "ann$a", diff --git a/mappings/net/minecraft/block/impl/BlockLadder.json b/mappings/net/minecraft/block/impl/BlockLadder.json new file mode 100644 index 0000000000..c7a7735beb --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockLadder.json @@ -0,0 +1,27 @@ +{ + "obf": "ano", + "name": "net/minecraft/block/impl/BlockLadder", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockLever.json b/mappings/net/minecraft/block/impl/BlockLever.json new file mode 100644 index 0000000000..221f9cb0d1 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockLever.json @@ -0,0 +1,27 @@ +{ + "obf": "anr", + "name": "net/minecraft/block/impl/BlockLever", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockMagma.json b/mappings/net/minecraft/block/impl/BlockMagma.json new file mode 100644 index 0000000000..938fac2601 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockMagma.json @@ -0,0 +1,8 @@ +{ + "obf": "anu", + "name": "net/minecraft/block/impl/BlockMagma", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockMobSpawner.json b/mappings/net/minecraft/block/impl/BlockMobSpawner.json new file mode 100644 index 0000000000..2b80d54637 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockMobSpawner.json @@ -0,0 +1,8 @@ +{ + "obf": "anx", + "name": "net/minecraft/block/impl/BlockMobSpawner", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockNetherWart.json b/mappings/net/minecraft/block/impl/BlockNetherWart.json new file mode 100644 index 0000000000..f1efa4d957 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockNetherWart.json @@ -0,0 +1,8 @@ +{ + "obf": "aoc", + "name": "net/minecraft/block/impl/BlockNetherWart", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockOre.json b/mappings/net/minecraft/block/impl/BlockOre.json new file mode 100644 index 0000000000..d7999eac25 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockOre.json @@ -0,0 +1,8 @@ +{ + "obf": "aom", + "name": "net/minecraft/block/impl/BlockOre", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockPackedIce.json b/mappings/net/minecraft/block/impl/BlockPackedIce.json new file mode 100644 index 0000000000..13436087d0 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockPackedIce.json @@ -0,0 +1,8 @@ +{ + "obf": "aon", + "name": "net/minecraft/block/impl/BlockPackedIce", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockPiston.json b/mappings/net/minecraft/block/impl/BlockPiston.json index f6d4eee145..aa0441bc1e 100644 --- a/mappings/net/minecraft/block/impl/BlockPiston.json +++ b/mappings/net/minecraft/block/impl/BlockPiston.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockPiston", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockPistonExtension.json b/mappings/net/minecraft/block/impl/BlockPistonExtension.json index 2b4329466d..129e8d9389 100644 --- a/mappings/net/minecraft/block/impl/BlockPistonExtension.json +++ b/mappings/net/minecraft/block/impl/BlockPistonExtension.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockPistonExtension", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockPistonHead.json b/mappings/net/minecraft/block/impl/BlockPistonHead.json index 6df3338a23..d2178e9e59 100644 --- a/mappings/net/minecraft/block/impl/BlockPistonHead.json +++ b/mappings/net/minecraft/block/impl/BlockPistonHead.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockPistonHead", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockPortal.json b/mappings/net/minecraft/block/impl/BlockPortal.json index f537720870..dcb0b9be45 100644 --- a/mappings/net/minecraft/block/impl/BlockPortal.json +++ b/mappings/net/minecraft/block/impl/BlockPortal.json @@ -9,6 +9,25 @@ } ], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockPressurePlate.json b/mappings/net/minecraft/block/impl/BlockPressurePlate.json new file mode 100644 index 0000000000..4afdff5c5b --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockPressurePlate.json @@ -0,0 +1,27 @@ +{ + "obf": "aot", + "name": "net/minecraft/block/impl/BlockPressurePlate", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockPressurePlateWeighted.json b/mappings/net/minecraft/block/impl/BlockPressurePlateWeighted.json new file mode 100644 index 0000000000..9588699395 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockPressurePlateWeighted.json @@ -0,0 +1,27 @@ +{ + "obf": "aqu", + "name": "net/minecraft/block/impl/BlockPressurePlateWeighted", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockRail.json b/mappings/net/minecraft/block/impl/BlockRail.json new file mode 100644 index 0000000000..4004dc4dac --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockRail.json @@ -0,0 +1,27 @@ +{ + "obf": "aoy", + "name": "net/minecraft/block/impl/BlockRail", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockRedstone.json b/mappings/net/minecraft/block/impl/BlockRedstone.json new file mode 100644 index 0000000000..306bb64cfd --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockRedstone.json @@ -0,0 +1,8 @@ +{ + "obf": "aor", + "name": "net/minecraft/block/impl/BlockRedstone", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockRedstoneLamp.json b/mappings/net/minecraft/block/impl/BlockRedstoneLamp.json new file mode 100644 index 0000000000..426ac6c11b --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockRedstoneLamp.json @@ -0,0 +1,8 @@ +{ + "obf": "apd", + "name": "net/minecraft/block/impl/BlockRedstoneLamp", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockRedstoneOre.json b/mappings/net/minecraft/block/impl/BlockRedstoneOre.json new file mode 100644 index 0000000000..350d46c0a7 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockRedstoneOre.json @@ -0,0 +1,8 @@ +{ + "obf": "apb", + "name": "net/minecraft/block/impl/BlockRedstoneOre", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockRedstoneTorch.json b/mappings/net/minecraft/block/impl/BlockRedstoneTorch.json new file mode 100644 index 0000000000..2f0ac89e89 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockRedstoneTorch.json @@ -0,0 +1,8 @@ +{ + "obf": "ape", + "name": "net/minecraft/block/impl/BlockRedstoneTorch", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockRedstoneWire.json b/mappings/net/minecraft/block/impl/BlockRedstoneWire.json index a35823b41c..4d5fc33624 100644 --- a/mappings/net/minecraft/block/impl/BlockRedstoneWire.json +++ b/mappings/net/minecraft/block/impl/BlockRedstoneWire.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockRedstoneWire", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockReeds.json b/mappings/net/minecraft/block/impl/BlockReeds.json index f1c8be8c6a..d2c181ae94 100644 --- a/mappings/net/minecraft/block/impl/BlockReeds.json +++ b/mappings/net/minecraft/block/impl/BlockReeds.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockReeds", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockRepeater.json b/mappings/net/minecraft/block/impl/BlockRepeater.json index ea336acfd8..208884973c 100644 --- a/mappings/net/minecraft/block/impl/BlockRepeater.json +++ b/mappings/net/minecraft/block/impl/BlockRepeater.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockRepeater", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockSand.json b/mappings/net/minecraft/block/impl/BlockSand.json index 75989f2c7a..6cc29fa196 100644 --- a/mappings/net/minecraft/block/impl/BlockSand.json +++ b/mappings/net/minecraft/block/impl/BlockSand.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockSand", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockSignStanding.json b/mappings/net/minecraft/block/impl/BlockSignStanding.json new file mode 100644 index 0000000000..e59c918030 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockSignStanding.json @@ -0,0 +1,27 @@ +{ + "obf": "apz", + "name": "net/minecraft/block/impl/BlockSignStanding", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockSignWall.json b/mappings/net/minecraft/block/impl/BlockSignWall.json new file mode 100644 index 0000000000..d08928fde6 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockSignWall.json @@ -0,0 +1,27 @@ +{ + "obf": "aqr", + "name": "net/minecraft/block/impl/BlockSignWall", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockSkull.json b/mappings/net/minecraft/block/impl/BlockSkull.json index 2a662683e5..53af2a053b 100644 --- a/mappings/net/minecraft/block/impl/BlockSkull.json +++ b/mappings/net/minecraft/block/impl/BlockSkull.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockSkull", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockSlime.json b/mappings/net/minecraft/block/impl/BlockSlime.json new file mode 100644 index 0000000000..26c904d8eb --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockSlime.json @@ -0,0 +1,8 @@ +{ + "obf": "apq", + "name": "net/minecraft/block/impl/BlockSlime", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockSnow.json b/mappings/net/minecraft/block/impl/BlockSnow.json new file mode 100644 index 0000000000..5dda3e8d59 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockSnow.json @@ -0,0 +1,8 @@ +{ + "obf": "apr", + "name": "net/minecraft/block/impl/BlockSnow", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockSnowLayer.json b/mappings/net/minecraft/block/impl/BlockSnowLayer.json new file mode 100644 index 0000000000..e19b5f8e4d --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockSnowLayer.json @@ -0,0 +1,8 @@ +{ + "obf": "aps", + "name": "net/minecraft/block/impl/BlockSnowLayer", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockSoulSand.json b/mappings/net/minecraft/block/impl/BlockSoulSand.json new file mode 100644 index 0000000000..cacff1f810 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockSoulSand.json @@ -0,0 +1,8 @@ +{ + "obf": "apt", + "name": "net/minecraft/block/impl/BlockSoulSand", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockStairs.json b/mappings/net/minecraft/block/impl/BlockStairs.json new file mode 100644 index 0000000000..97128f1ca7 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockStairs.json @@ -0,0 +1,27 @@ +{ + "obf": "apy", + "name": "net/minecraft/block/impl/BlockStairs", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockStructure.json b/mappings/net/minecraft/block/impl/BlockStructure.json new file mode 100644 index 0000000000..8b094567a7 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockStructure.json @@ -0,0 +1,27 @@ +{ + "obf": "aqg", + "name": "net/minecraft/block/impl/BlockStructure", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockStructureVoid.json b/mappings/net/minecraft/block/impl/BlockStructureVoid.json new file mode 100644 index 0000000000..90b2249d8c --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockStructureVoid.json @@ -0,0 +1,8 @@ +{ + "obf": "aqh", + "name": "net/minecraft/block/impl/BlockStructureVoid", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockTNT.json b/mappings/net/minecraft/block/impl/BlockTNT.json new file mode 100644 index 0000000000..f001b3b366 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockTNT.json @@ -0,0 +1,27 @@ +{ + "obf": "aqk", + "name": "net/minecraft/block/impl/BlockTNT", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockTallGrass.json b/mappings/net/minecraft/block/impl/BlockTallGrass.json index c9b2ac6987..e8de2bc6a7 100644 --- a/mappings/net/minecraft/block/impl/BlockTallGrass.json +++ b/mappings/net/minecraft/block/impl/BlockTallGrass.json @@ -3,6 +3,25 @@ "name": "net/minecraft/block/impl/BlockTallGrass", "field": [], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockTorch.json b/mappings/net/minecraft/block/impl/BlockTorch.json new file mode 100644 index 0000000000..2acdd06dc4 --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockTorch.json @@ -0,0 +1,27 @@ +{ + "obf": "aql", + "name": "net/minecraft/block/impl/BlockTorch", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockTrapdoor.json b/mappings/net/minecraft/block/impl/BlockTrapdoor.json new file mode 100644 index 0000000000..9beba9a29b --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockTrapdoor.json @@ -0,0 +1,27 @@ +{ + "obf": "aqm", + "name": "net/minecraft/block/impl/BlockTrapdoor", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "deserializeState", + "signature": "(I)Lnone/asj;", + "args": [] + }, + { + "obf": "b", + "name": "createStateFactory", + "signature": "()Lnone/ask;", + "args": [] + }, + { + "obf": "e", + "name": "serializeState", + "signature": "(Lnone/asj;)I", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/impl/BlockWeb.json b/mappings/net/minecraft/block/impl/BlockWeb.json new file mode 100644 index 0000000000..b06934bb2e --- /dev/null +++ b/mappings/net/minecraft/block/impl/BlockWeb.json @@ -0,0 +1,8 @@ +{ + "obf": "aqt", + "name": "net/minecraft/block/impl/BlockWeb", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/property/BlockPropertyBase.json b/mappings/net/minecraft/block/property/BlockPropertyBase.json new file mode 100644 index 0000000000..2db30b6ea6 --- /dev/null +++ b/mappings/net/minecraft/block/property/BlockPropertyBase.json @@ -0,0 +1,8 @@ +{ + "obf": "asu", + "name": "net/minecraft/block/property/BlockPropertyBase", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/properties/PropertyEnum.json b/mappings/net/minecraft/block/property/BlockPropertyEnum.json similarity index 78% rename from mappings/net/minecraft/block/properties/PropertyEnum.json rename to mappings/net/minecraft/block/property/BlockPropertyEnum.json index fefe002f39..81868bcd6b 100644 --- a/mappings/net/minecraft/block/properties/PropertyEnum.json +++ b/mappings/net/minecraft/block/property/BlockPropertyEnum.json @@ -1,6 +1,6 @@ { "obf": "asx", - "name": "net/minecraft/block/properties/PropertyEnum", + "name": "net/minecraft/block/property/BlockPropertyEnum", "field": [], "constructors": [], "method": [ diff --git a/mappings/net/minecraft/block/property/BlockPropertyInteger.json b/mappings/net/minecraft/block/property/BlockPropertyInteger.json new file mode 100644 index 0000000000..634233c007 --- /dev/null +++ b/mappings/net/minecraft/block/property/BlockPropertyInteger.json @@ -0,0 +1,36 @@ +{ + "obf": "asy", + "name": "net/minecraft/block/property/BlockPropertyInteger", + "field": [ + { + "obf": "a", + "name": "validValues", + "type": "Lcom/google/common/collect/ImmutableSet;" + } + ], + "constructors": [ + { + "signature": "(Ljava/lang/String;II)V", + "args": [ + { + "index": 0, + "name": "name" + } + ], + "statics": false + } + ], + "method": [ + { + "obf": "equals", + "signature": "(Ljava/lang/Object;)Z", + "args": [ + { + "index": 0, + "name": "other" + } + ] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/block/tile/impl/TileEntityComparator.json b/mappings/net/minecraft/block/tile/impl/TileEntityComparator.json index e0230e3b40..54a6f42cda 100644 --- a/mappings/net/minecraft/block/tile/impl/TileEntityComparator.json +++ b/mappings/net/minecraft/block/tile/impl/TileEntityComparator.json @@ -1,8 +1,32 @@ { "obf": "arf", "name": "net/minecraft/block/tile/impl/TileEntityComparator", - "field": [], + "field": [ + { + "obf": "a", + "name": "outputSignal", + "type": "I" + } + ], "constructors": [], - "method": [], + "method": [ + { + "obf": "a", + "name": "setOutputSignal", + "signature": "(I)V", + "args": [ + { + "index": 0, + "name": "outputSignal" + } + ] + }, + { + "obf": "d", + "name": "getOutputSignal", + "signature": "()I", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/block/tile/impl/TileEntityPiston.json b/mappings/net/minecraft/block/tile/impl/TileEntityPiston.json index 6c6d3a8119..3dacfc9699 100644 --- a/mappings/net/minecraft/block/tile/impl/TileEntityPiston.json +++ b/mappings/net/minecraft/block/tile/impl/TileEntityPiston.json @@ -1,8 +1,83 @@ { "obf": "asd", "name": "net/minecraft/block/tile/impl/TileEntityPiston", - "field": [], - "constructors": [], - "method": [], + "field": [ + { + "obf": "a", + "name": "pushedBlock", + "type": "Lnone/asj;" + }, + { + "obf": "f", + "name": "facing", + "type": "Lnone/cu;" + }, + { + "obf": "g", + "name": "extending", + "type": "Z" + }, + { + "obf": "i", + "name": "nextProgress", + "type": "F" + }, + { + "obf": "j", + "name": "progress", + "type": "F" + } + ], + "constructors": [ + { + "signature": "(Lnone/asj;Lnone/cu;ZZ)V", + "args": [ + { + "index": 0, + "name": "pushedBlock" + }, + { + "index": 1, + "name": "facing" + }, + { + "index": 2, + "name": "extending" + } + ], + "statics": false + } + ], + "method": [ + { + "obf": "a", + "name": "getProgress", + "signature": "(F)F", + "args": [ + { + "index": 0, + "name": "partialTick" + } + ] + }, + { + "obf": "d", + "name": "getPushedBlock", + "signature": "()Lnone/asj;", + "args": [] + }, + { + "obf": "e", + "name": "isExtending", + "signature": "()Z", + "args": [] + }, + { + "obf": "g", + "name": "getFacing", + "signature": "()Lnone/cu;", + "args": [] + } + ], "innerClass": [] } \ No newline at end of file diff --git a/mappings/net/minecraft/client/ClientBrandRetriever.json b/mappings/net/minecraft/client/ClientBrandRetriever.json deleted file mode 100644 index faca0c229d..0000000000 --- a/mappings/net/minecraft/client/ClientBrandRetriever.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "obf": "ClientBrandRetriever", - "name": "net/minecraft/client/ClientBrandRetriever", - "field": [], - "constructors": [], - "method": [ - { - "obf": "getClientModName", - "name": "getClientModName", - "signature": "()Ljava/lang/String;", - "args": [] - } - ], - "innerClass": [] -} \ No newline at end of file diff --git a/mappings/net/minecraft/client/main/Main.json b/mappings/net/minecraft/client/main/Main.json deleted file mode 100644 index 81b219bc3f..0000000000 --- a/mappings/net/minecraft/client/main/Main.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "obf": "Main", - "name": "net/minecraft/client/main/Main", - "field": [], - "constructors": [], - "method": [ - { - "obf": "main", - "name": "main", - "signature": "([Ljava/lang/String;)V", - "args": [ - { - "index": 0, - "name": "args" - } - ] - } - ], - "innerClass": [ - { - "obf": "Main$1", - "field": [], - "constructors": [], - "method": [ - { - "obf": "getPasswordAuthentication", - "name": "getPasswordAuthentication", - "signature": "()Ljava/net/PasswordAuthentication;", - "args": [] - } - ], - "innerClass": [] - } - ] -} \ No newline at end of file diff --git a/mappings/net/minecraft/realms/RealmsMth.json b/mappings/net/minecraft/realms/RealmsMth.json deleted file mode 100644 index 0226ecf191..0000000000 --- a/mappings/net/minecraft/realms/RealmsMth.json +++ /dev/null @@ -1,207 +0,0 @@ -{ - "obf": "RealmsMth", - "name": "net/minecraft/realms/RealmsMth", - "field": [], - "constructors": [], - "method": [ - { - "obf": "abs", - "name": "abs", - "signature": "(F)F", - "args": [] - }, - { - "obf": "abs", - "name": "abs", - "signature": "(I)I", - "args": [] - }, - { - "obf": "absFloor", - "name": "absFloor", - "signature": "(D)I", - "args": [] - }, - { - "obf": "absMax", - "name": "absMax", - "signature": "(DD)D", - "args": [] - }, - { - "obf": "average", - "name": "average", - "signature": "([J)D", - "args": [] - }, - { - "obf": "ceil", - "name": "ceil", - "signature": "(D)I", - "args": [] - }, - { - "obf": "ceil", - "name": "ceil", - "signature": "(F)I", - "args": [] - }, - { - "obf": "clamp", - "name": "clamp", - "signature": "(DDD)D", - "args": [] - }, - { - "obf": "clamp", - "name": "clamp", - "signature": "(FFF)F", - "args": [] - }, - { - "obf": "clamp", - "name": "clamp", - "signature": "(III)I", - "args": [] - }, - { - "obf": "clampedLerp", - "name": "clampedLerp", - "signature": "(DDD)D", - "args": [] - }, - { - "obf": "cos", - "name": "cos", - "signature": "(F)F", - "args": [] - }, - { - "obf": "fastFloor", - "name": "fastFloor", - "signature": "(D)I", - "args": [] - }, - { - "obf": "floor", - "name": "floor", - "signature": "(D)I", - "args": [] - }, - { - "obf": "floor", - "name": "floor", - "signature": "(F)I", - "args": [] - }, - { - "obf": "getDouble", - "name": "getDouble", - "signature": "(Ljava/lang/String;D)D", - "args": [] - }, - { - "obf": "getDouble", - "name": "getDouble", - "signature": "(Ljava/lang/String;DD)D", - "args": [] - }, - { - "obf": "getInt", - "name": "getInt", - "signature": "(Ljava/lang/String;I)I", - "args": [] - }, - { - "obf": "getInt", - "name": "getInt", - "signature": "(Ljava/lang/String;II)I", - "args": [] - }, - { - "obf": "intFloorDiv", - "name": "intFloorDiv", - "signature": "(II)I", - "args": [] - }, - { - "obf": "isEmpty", - "name": "isEmpty", - "signature": "(Ljava/lang/String;)Z", - "args": [] - }, - { - "obf": "lfloor", - "name": "lfloor", - "signature": "(D)J", - "args": [] - }, - { - "obf": "log2", - "name": "log2", - "signature": "(I)I", - "args": [] - }, - { - "obf": "nextDouble", - "name": "nextDouble", - "signature": "(Ljava/util/Random;DD)D", - "args": [] - }, - { - "obf": "nextFloat", - "name": "nextFloat", - "signature": "(Ljava/util/Random;FF)F", - "args": [] - }, - { - "obf": "nextInt", - "name": "nextInt", - "signature": "(Ljava/util/Random;II)I", - "args": [] - }, - { - "obf": "roundUp", - "name": "roundUp", - "signature": "(II)I", - "args": [] - }, - { - "obf": "sin", - "name": "sin", - "signature": "(F)F", - "args": [] - }, - { - "obf": "smallestEncompassingPowerOfTwo", - "name": "smallestEncompassingPowerOfTwo", - "signature": "(I)I", - "args": [] - }, - { - "obf": "sqrt", - "name": "sqrt", - "signature": "(D)F", - "args": [] - }, - { - "obf": "sqrt", - "name": "sqrt", - "signature": "(F)F", - "args": [] - }, - { - "obf": "wrapDegrees", - "name": "wrapDegrees", - "signature": "(D)D", - "args": [] - }, - { - "obf": "wrapDegrees", - "name": "wrapDegrees", - "signature": "(F)F", - "args": [] - } - ], - "innerClass": [] -} \ No newline at end of file diff --git a/mappings/net/minecraft/server/IntegratedServer.json b/mappings/net/minecraft/server/IntegratedServer.json new file mode 100644 index 0000000000..117a337724 --- /dev/null +++ b/mappings/net/minecraft/server/IntegratedServer.json @@ -0,0 +1,14 @@ +{ + "obf": "caj", + "name": "net/minecraft/server/IntegratedServer", + "field": [ + { + "obf": "k", + "name": "logger", + "type": "Lorg/apache/logging/log4j/Logger;" + } + ], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/server/LanServerPinger.json b/mappings/net/minecraft/server/LanServerPinger.json new file mode 100644 index 0000000000..f9f2f61ef7 --- /dev/null +++ b/mappings/net/minecraft/server/LanServerPinger.json @@ -0,0 +1,19 @@ +{ + "obf": "can", + "name": "net/minecraft/server/LanServerPinger", + "field": [ + { + "obf": "b", + "name": "logger", + "type": "Lorg/apache/logging/log4j/Logger;" + }, + { + "obf": "e", + "name": "isRunning", + "type": "Z" + } + ], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/server/MinecraftServer.json b/mappings/net/minecraft/server/MinecraftServer.json deleted file mode 100644 index 716564c1f7..0000000000 --- a/mappings/net/minecraft/server/MinecraftServer.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "obf": "MinecraftServer", - "name": "net/minecraft/server/MinecraftServer", - "field": [ - { - "obf": "a", - "name": "fileUserCache", - "type": "Ljava/io/File;" - }, - { - "obf": "k", - "name": "logger", - "type": "Lorg/apache/logging/log4j/Logger;" - }, - { - "obf": "r", - "name": "rand", - "type": "Ljava/util/Random;" - } - ], - "constructors": [], - "method": [ - { - "obf": "getServerModName", - "name": "getServerModName", - "signature": "()Ljava/lang/String;", - "args": [] - } - ], - "innerClass": [] -} \ No newline at end of file diff --git a/mappings/net/minecraft/util/DyeColor.json b/mappings/net/minecraft/util/DyeColor.json new file mode 100644 index 0000000000..b49085a598 --- /dev/null +++ b/mappings/net/minecraft/util/DyeColor.json @@ -0,0 +1,89 @@ +{ + "obf": "adt", + "name": "net/minecraft/util/DyeColor", + "field": [ + { + "obf": "a", + "name": "WHITE", + "type": "Lnone/adt;" + }, + { + "obf": "b", + "name": "ORANGE", + "type": "Lnone/adt;" + }, + { + "obf": "c", + "name": "MAGENTA", + "type": "Lnone/adt;" + }, + { + "obf": "d", + "name": "LIGHT_BLUE", + "type": "Lnone/adt;" + }, + { + "obf": "e", + "name": "YELLOW", + "type": "Lnone/adt;" + }, + { + "obf": "f", + "name": "LIME", + "type": "Lnone/adt;" + }, + { + "obf": "g", + "name": "PINK", + "type": "Lnone/adt;" + }, + { + "obf": "h", + "name": "GRAY", + "type": "Lnone/adt;" + }, + { + "obf": "i", + "name": "SILVER", + "type": "Lnone/adt;" + }, + { + "obf": "j", + "name": "CYAN", + "type": "Lnone/adt;" + }, + { + "obf": "k", + "name": "PURPLE", + "type": "Lnone/adt;" + }, + { + "obf": "l", + "name": "BLUE", + "type": "Lnone/adt;" + }, + { + "obf": "m", + "name": "BROWN", + "type": "Lnone/adt;" + }, + { + "obf": "n", + "name": "GREEN", + "type": "Lnone/adt;" + }, + { + "obf": "o", + "name": "RED", + "type": "Lnone/adt;" + }, + { + "obf": "p", + "name": "BLACK", + "type": "Lnone/adt;" + } + ], + "constructors": [], + "method": [], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/util/math/MathUtils.json b/mappings/net/minecraft/util/math/MathUtils.json index da1dc9003f..5c1d553420 100644 --- a/mappings/net/minecraft/util/math/MathUtils.json +++ b/mappings/net/minecraft/util/math/MathUtils.json @@ -1,7 +1,33 @@ { "obf": "or", "name": "net/minecraft/util/math/MathUtils", - "field": [], + "field": [ + { + "obf": "a", + "name": "SQUARE_ROOT_2", + "type": "F" + }, + { + "obf": "b", + "name": "sinTable", + "type": "[F" + }, + { + "obf": "c", + "name": "rand", + "type": "Ljava/util/Random;" + }, + { + "obf": "f", + "name": "asinTable", + "type": "[D" + }, + { + "obf": "g", + "name": "cosTable", + "type": "[D" + } + ], "constructors": [], "method": [ { diff --git a/mappings/net/minecraft/world/IBlockView.json b/mappings/net/minecraft/world/IBlockView.json index 151208d63b..7b7de5e20b 100644 --- a/mappings/net/minecraft/world/IBlockView.json +++ b/mappings/net/minecraft/world/IBlockView.json @@ -4,6 +4,12 @@ "field": [], "constructors": [], "method": [ + { + "obf": "d", + "name": "isAir", + "signature": "(Lnone/cn;)Z", + "args": [] + }, { "obf": "o", "name": "getBlockState", diff --git a/mappings/net/minecraft/world/World.json b/mappings/net/minecraft/world/World.json index bb0cbdc20d..082b45f4ee 100644 --- a/mappings/net/minecraft/world/World.json +++ b/mappings/net/minecraft/world/World.json @@ -32,6 +32,12 @@ } ] }, + { + "obf": "d", + "name": "isAir", + "signature": "(Lnone/cn;)Z", + "args": [] + }, { "obf": "o", "name": "getBlockState", @@ -48,6 +54,12 @@ "name": "getTileEntity", "signature": "(Lnone/cn;)Lnone/arb;", "args": [] + }, + { + "obf": "u", + "name": "getServer", + "signature": "()Lnet/minecraft/server/MinecraftServer;", + "args": [] } ], "innerClass": []