From e61371ca5078244b62b408cc467cde527d5d5ce3 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Fri, 12 Aug 2016 13:02:01 -0400 Subject: [PATCH] NBT (#2) --- .../net/minecraft/nbt/PositionTracker.json | 50 ++ mappings/net/minecraft/nbt/Tag.json | 90 +++ mappings/net/minecraft/nbt/TagByte.json | 120 ++++ mappings/net/minecraft/nbt/TagByteArray.json | 84 +++ mappings/net/minecraft/nbt/TagCompound.json | 594 ++++++++++++++++++ mappings/net/minecraft/nbt/TagDouble.json | 120 ++++ mappings/net/minecraft/nbt/TagEnd.json | 57 ++ mappings/net/minecraft/nbt/TagFloat.json | 120 ++++ mappings/net/minecraft/nbt/TagInt.json | 120 ++++ mappings/net/minecraft/nbt/TagIntArray.json | 90 +++ mappings/net/minecraft/nbt/TagList.json | 215 +++++++ mappings/net/minecraft/nbt/TagLong.json | 120 ++++ mappings/net/minecraft/nbt/TagNumber.json | 45 ++ mappings/net/minecraft/nbt/TagShort.json | 120 ++++ mappings/net/minecraft/nbt/TagString.json | 96 +++ 15 files changed, 2041 insertions(+) create mode 100644 mappings/net/minecraft/nbt/PositionTracker.json create mode 100644 mappings/net/minecraft/nbt/Tag.json create mode 100644 mappings/net/minecraft/nbt/TagByte.json create mode 100644 mappings/net/minecraft/nbt/TagByteArray.json create mode 100644 mappings/net/minecraft/nbt/TagCompound.json create mode 100644 mappings/net/minecraft/nbt/TagDouble.json create mode 100644 mappings/net/minecraft/nbt/TagEnd.json create mode 100644 mappings/net/minecraft/nbt/TagFloat.json create mode 100644 mappings/net/minecraft/nbt/TagInt.json create mode 100644 mappings/net/minecraft/nbt/TagIntArray.json create mode 100644 mappings/net/minecraft/nbt/TagList.json create mode 100644 mappings/net/minecraft/nbt/TagLong.json create mode 100644 mappings/net/minecraft/nbt/TagNumber.json create mode 100644 mappings/net/minecraft/nbt/TagShort.json create mode 100644 mappings/net/minecraft/nbt/TagString.json diff --git a/mappings/net/minecraft/nbt/PositionTracker.json b/mappings/net/minecraft/nbt/PositionTracker.json new file mode 100644 index 0000000000..1e72ceffc0 --- /dev/null +++ b/mappings/net/minecraft/nbt/PositionTracker.json @@ -0,0 +1,50 @@ +{ + "obf": "eb", + "name": "net/minecraft/nbt/PositionTracker", + "field": [ + { + "obf": "b", + "name": "max", + "type": "J" + }, + { + "obf": "c", + "name": "pos", + "type": "J" + } + ], + "constructors": [ + { + "signature": "(J)V", + "args": [ + { + "index": 0, + "name": "max" + } + ], + "statics": false + } + ], + "method": [ + { + "obf": "a", + "name": "add", + "signature": "(J)V", + "args": [ + { + "index": 0, + "name": "amount" + } + ] + } + ], + "innerClass": [ + { + "obf": "eb$1", + "field": [], + "constructors": [], + "method": [], + "innerClass": [] + } + ] +} \ No newline at end of file diff --git a/mappings/net/minecraft/nbt/Tag.json b/mappings/net/minecraft/nbt/Tag.json new file mode 100644 index 0000000000..f2aa661d31 --- /dev/null +++ b/mappings/net/minecraft/nbt/Tag.json @@ -0,0 +1,90 @@ +{ + "obf": "eh", + "name": "net/minecraft/nbt/Tag", + "field": [ + { + "obf": "a", + "name": "TYPES", + "type": "[Ljava/lang/String;" + } + ], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "getType", + "signature": "()B", + "args": [] + }, + { + "obf": "a", + "name": "createTag", + "signature": "(B)Lnone/eh;", + "args": [ + { + "index": 0, + "name": "id" + } + ] + }, + { + "obf": "a", + "name": "read", + "signature": "(Ljava/io/DataInput;ILnone/eb;)V", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "depth" + }, + { + "index": 2, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "write", + "signature": "(Ljava/io/DataOutput;)V", + "args": [ + { + "index": 0, + "name": "output" + } + ] + }, + { + "obf": "b", + "name": "copy", + "signature": "()Lnone/eh;", + "args": [] + }, + { + "obf": "b_", + "name": "isEmpty", + "signature": "()Z", + "args": [] + }, + { + "obf": "c_", + "name": "asString", + "signature": "()Ljava/lang/String;", + "args": [] + }, + { + "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/nbt/TagByte.json b/mappings/net/minecraft/nbt/TagByte.json new file mode 100644 index 0000000000..71964c3edb --- /dev/null +++ b/mappings/net/minecraft/nbt/TagByte.json @@ -0,0 +1,120 @@ +{ + "obf": "ds", + "name": "net/minecraft/nbt/TagByte", + "field": [ + { + "obf": "b", + "name": "value", + "type": "B" + } + ], + "constructors": [ + { + "signature": "(B)V", + "args": [ + { + "index": 0, + "name": "value" + } + ], + "statics": false + } + ], + "method": [ + { + "obf": "a", + "name": "getType", + "signature": "()B", + "args": [] + }, + { + "obf": "a", + "name": "read", + "signature": "(Ljava/io/DataInput;ILnone/eb;)V", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "depth" + }, + { + "index": 2, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "write", + "signature": "(Ljava/io/DataOutput;)V", + "args": [ + { + "index": 0, + "name": "output" + } + ] + }, + { + "obf": "b", + "name": "copy", + "signature": "()Lnone/eh;", + "args": [] + }, + { + "obf": "c", + "name": "copy", + "signature": "()Lnone/ds;", + "args": [] + }, + { + "obf": "d", + "name": "getLong", + "signature": "()J", + "args": [] + }, + { + "obf": "e", + "name": "getInt", + "signature": "()I", + "args": [] + }, + { + "obf": "equals", + "signature": "(Ljava/lang/Object;)Z", + "args": [ + { + "index": 0, + "name": "other" + } + ] + }, + { + "obf": "f", + "name": "getShort", + "signature": "()S", + "args": [] + }, + { + "obf": "g", + "name": "getByte", + "signature": "()B", + "args": [] + }, + { + "obf": "h", + "name": "getDouble", + "signature": "()D", + "args": [] + }, + { + "obf": "i", + "name": "getFloat", + "signature": "()F", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/nbt/TagByteArray.json b/mappings/net/minecraft/nbt/TagByteArray.json new file mode 100644 index 0000000000..469439ccd6 --- /dev/null +++ b/mappings/net/minecraft/nbt/TagByteArray.json @@ -0,0 +1,84 @@ +{ + "obf": "dr", + "name": "net/minecraft/nbt/TagByteArray", + "field": [ + { + "obf": "b", + "name": "value", + "type": "[B" + } + ], + "constructors": [ + { + "signature": "([B)V", + "args": [ + { + "index": 0, + "name": "value" + } + ], + "statics": false + } + ], + "method": [ + { + "obf": "a", + "name": "getType", + "signature": "()B", + "args": [] + }, + { + "obf": "a", + "name": "read", + "signature": "(Ljava/io/DataInput;ILnone/eb;)V", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "depth" + }, + { + "index": 2, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "write", + "signature": "(Ljava/io/DataOutput;)V", + "args": [ + { + "index": 0, + "name": "output" + } + ] + }, + { + "obf": "b", + "name": "copy", + "signature": "()Lnone/eh;", + "args": [] + }, + { + "obf": "c", + "name": "getByteArray", + "signature": "()[B", + "args": [] + }, + { + "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/nbt/TagCompound.json b/mappings/net/minecraft/nbt/TagCompound.json new file mode 100644 index 0000000000..233df43625 --- /dev/null +++ b/mappings/net/minecraft/nbt/TagCompound.json @@ -0,0 +1,594 @@ +{ + "obf": "dt", + "name": "net/minecraft/nbt/TagCompound", + "field": [ + { + "obf": "b", + "name": "tags", + "type": "Ljava/util/Map;" + } + ], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "getType", + "signature": "()B", + "args": [] + }, + { + "obf": "a", + "name": "createTag", + "signature": "(BLjava/lang/String;Ljava/io/DataInput;ILnone/eb;)Lnone/eh;", + "args": [ + { + "index": 0, + "name": "type" + }, + { + "index": 1, + "name": "key" + }, + { + "index": 2, + "name": "input" + }, + { + "index": 3, + "name": "depth" + }, + { + "index": 4, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "read", + "signature": "(Ljava/io/DataInput;ILnone/eb;)V", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "depth" + }, + { + "index": 2, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "readByte", + "signature": "(Ljava/io/DataInput;Lnone/eb;)B", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "write", + "signature": "(Ljava/io/DataOutput;)V", + "args": [ + { + "index": 0, + "name": "output" + } + ] + }, + { + "obf": "a", + "name": "getUUID", + "signature": "(Ljava/lang/String;)Ljava/util/UUID;", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "a", + "name": "setByte", + "signature": "(Ljava/lang/String;B)V", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "value" + } + ] + }, + { + "obf": "a", + "name": "setDouble", + "signature": "(Ljava/lang/String;D)V", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "value" + } + ] + }, + { + "obf": "a", + "name": "setFloat", + "signature": "(Ljava/lang/String;F)V", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "value" + } + ] + }, + { + "obf": "a", + "name": "setInt", + "signature": "(Ljava/lang/String;I)V", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "value" + } + ] + }, + { + "obf": "a", + "name": "createCrashReport", + "signature": "(Ljava/lang/String;ILjava/lang/ClassCastException;)Lnone/b;", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "type" + }, + { + "index": 2, + "name": "exception" + } + ] + }, + { + "obf": "a", + "name": "setLong", + "signature": "(Ljava/lang/String;J)V", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "value" + } + ] + }, + { + "obf": "a", + "name": "setString", + "signature": "(Ljava/lang/String;Ljava/lang/String;)V", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "value" + } + ] + }, + { + "obf": "a", + "name": "setUUID", + "signature": "(Ljava/lang/String;Ljava/util/UUID;)V", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "value" + } + ] + }, + { + "obf": "a", + "name": "setTag", + "signature": "(Ljava/lang/String;Lnone/eh;)V", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "value" + } + ] + }, + { + "obf": "a", + "name": "write", + "signature": "(Ljava/lang/String;Lnone/eh;Ljava/io/DataOutput;)V", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "tag" + }, + { + "index": 2, + "name": "output" + } + ] + }, + { + "obf": "a", + "name": "setShort", + "signature": "(Ljava/lang/String;S)V", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "value" + } + ] + }, + { + "obf": "a", + "name": "setBoolean", + "signature": "(Ljava/lang/String;Z)V", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "value" + } + ] + }, + { + "obf": "a", + "name": "setByteArray", + "signature": "(Ljava/lang/String;[B)V", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "value" + } + ] + }, + { + "obf": "a", + "name": "setIntArray", + "signature": "(Ljava/lang/String;[I)V", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "value" + } + ] + }, + { + "obf": "a", + "name": "copyTo", + "signature": "(Lnone/dt;)V", + "args": [ + { + "index": 0, + "name": "tag" + } + ] + }, + { + "obf": "b", + "name": "copy", + "signature": "()Lnone/eh;", + "args": [] + }, + { + "obf": "b", + "name": "readString", + "signature": "(Ljava/io/DataInput;Lnone/eb;)Ljava/lang/String;", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "tracker" + } + ] + }, + { + "obf": "b", + "name": "hasUUID", + "signature": "(Ljava/lang/String;)Z", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "b", + "name": "hasKey", + "signature": "(Ljava/lang/String;I)Z", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "type" + } + ] + }, + { + "obf": "b_", + "name": "isEmpty", + "signature": "()Z", + "args": [] + }, + { + "obf": "c", + "name": "getKeys", + "signature": "()Ljava/util/Set;", + "args": [] + }, + { + "obf": "c", + "name": "getTag", + "signature": "(Ljava/lang/String;)Lnone/eh;", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "c", + "name": "getTagList", + "signature": "(Ljava/lang/String;I)Lnone/dz;", + "args": [ + { + "index": 0, + "name": "key" + }, + { + "index": 1, + "name": "type" + } + ] + }, + { + "obf": "d", + "name": "getSize", + "signature": "()I", + "args": [] + }, + { + "obf": "d", + "name": "getType", + "signature": "(Ljava/lang/String;)B", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "e", + "name": "hasKey", + "signature": "(Ljava/lang/String;)Z", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "equals", + "signature": "(Ljava/lang/Object;)Z", + "args": [ + { + "index": 0, + "name": "other" + } + ] + }, + { + "obf": "f", + "name": "getByte", + "signature": "(Ljava/lang/String;)B", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "g", + "name": "copy", + "signature": "()Lnone/dt;", + "args": [] + }, + { + "obf": "g", + "name": "getShort", + "signature": "(Ljava/lang/String;)S", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "h", + "name": "getInt", + "signature": "(Ljava/lang/String;)I", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "i", + "name": "getLong", + "signature": "(Ljava/lang/String;)J", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "j", + "name": "getFloat", + "signature": "(Ljava/lang/String;)F", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "k", + "name": "getDouble", + "signature": "(Ljava/lang/String;)D", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "l", + "name": "getString", + "signature": "(Ljava/lang/String;)Ljava/lang/String;", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "m", + "name": "getByteArray", + "signature": "(Ljava/lang/String;)[B", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "n", + "name": "getIntArray", + "signature": "(Ljava/lang/String;)[I", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "o", + "name": "getTagCompound", + "signature": "(Ljava/lang/String;)Lnone/dt;", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "p", + "name": "getBoolean", + "signature": "(Ljava/lang/String;)Z", + "args": [ + { + "index": 0, + "name": "key" + } + ] + }, + { + "obf": "q", + "name": "removeTag", + "signature": "(Ljava/lang/String;)V", + "args": [ + { + "index": 0, + "name": "key" + } + ] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/nbt/TagDouble.json b/mappings/net/minecraft/nbt/TagDouble.json new file mode 100644 index 0000000000..4dd08e9545 --- /dev/null +++ b/mappings/net/minecraft/nbt/TagDouble.json @@ -0,0 +1,120 @@ +{ + "obf": "du", + "name": "net/minecraft/nbt/TagDouble", + "field": [ + { + "obf": "b", + "name": "value", + "type": "D" + } + ], + "constructors": [ + { + "signature": "(D)V", + "args": [ + { + "index": 0, + "name": "value" + } + ], + "statics": false + } + ], + "method": [ + { + "obf": "a", + "name": "getType", + "signature": "()B", + "args": [] + }, + { + "obf": "a", + "name": "read", + "signature": "(Ljava/io/DataInput;ILnone/eb;)V", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "depth" + }, + { + "index": 2, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "write", + "signature": "(Ljava/io/DataOutput;)V", + "args": [ + { + "index": 0, + "name": "output" + } + ] + }, + { + "obf": "b", + "name": "copy", + "signature": "()Lnone/eh;", + "args": [] + }, + { + "obf": "c", + "name": "copy", + "signature": "()Lnone/du;", + "args": [] + }, + { + "obf": "d", + "name": "getLong", + "signature": "()J", + "args": [] + }, + { + "obf": "e", + "name": "getInt", + "signature": "()I", + "args": [] + }, + { + "obf": "equals", + "signature": "(Ljava/lang/Object;)Z", + "args": [ + { + "index": 0, + "name": "other" + } + ] + }, + { + "obf": "f", + "name": "getShort", + "signature": "()S", + "args": [] + }, + { + "obf": "g", + "name": "getByte", + "signature": "()B", + "args": [] + }, + { + "obf": "h", + "name": "getDouble", + "signature": "()D", + "args": [] + }, + { + "obf": "i", + "name": "getFloat", + "signature": "()F", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/nbt/TagEnd.json b/mappings/net/minecraft/nbt/TagEnd.json new file mode 100644 index 0000000000..bda6f95f3c --- /dev/null +++ b/mappings/net/minecraft/nbt/TagEnd.json @@ -0,0 +1,57 @@ +{ + "obf": "dv", + "name": "net/minecraft/nbt/TagEnd", + "field": [], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "getType", + "signature": "()B", + "args": [] + }, + { + "obf": "a", + "name": "read", + "signature": "(Ljava/io/DataInput;ILnone/eb;)V", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "depth" + }, + { + "index": 2, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "write", + "signature": "(Ljava/io/DataOutput;)V", + "args": [ + { + "index": 0, + "name": "output" + } + ] + }, + { + "obf": "b", + "name": "copy", + "signature": "()Lnone/eh;", + "args": [] + }, + { + "obf": "c", + "name": "copy", + "signature": "()Lnone/dv;", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/nbt/TagFloat.json b/mappings/net/minecraft/nbt/TagFloat.json new file mode 100644 index 0000000000..937dbbe1b3 --- /dev/null +++ b/mappings/net/minecraft/nbt/TagFloat.json @@ -0,0 +1,120 @@ +{ + "obf": "dw", + "name": "net/minecraft/nbt/TagFloat", + "field": [ + { + "obf": "b", + "name": "value", + "type": "F" + } + ], + "constructors": [ + { + "signature": "(F)V", + "args": [ + { + "index": 0, + "name": "value" + } + ], + "statics": false + } + ], + "method": [ + { + "obf": "a", + "name": "getType", + "signature": "()B", + "args": [] + }, + { + "obf": "a", + "name": "read", + "signature": "(Ljava/io/DataInput;ILnone/eb;)V", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "depth" + }, + { + "index": 2, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "write", + "signature": "(Ljava/io/DataOutput;)V", + "args": [ + { + "index": 0, + "name": "output" + } + ] + }, + { + "obf": "b", + "name": "copy", + "signature": "()Lnone/eh;", + "args": [] + }, + { + "obf": "c", + "name": "copy", + "signature": "()Lnone/dw;", + "args": [] + }, + { + "obf": "d", + "name": "getLong", + "signature": "()J", + "args": [] + }, + { + "obf": "e", + "name": "getInt", + "signature": "()I", + "args": [] + }, + { + "obf": "equals", + "signature": "(Ljava/lang/Object;)Z", + "args": [ + { + "index": 0, + "name": "other" + } + ] + }, + { + "obf": "f", + "name": "getShort", + "signature": "()S", + "args": [] + }, + { + "obf": "g", + "name": "getByte", + "signature": "()B", + "args": [] + }, + { + "obf": "h", + "name": "getDouble", + "signature": "()D", + "args": [] + }, + { + "obf": "i", + "name": "getFloat", + "signature": "()F", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/nbt/TagInt.json b/mappings/net/minecraft/nbt/TagInt.json new file mode 100644 index 0000000000..f26f4164e3 --- /dev/null +++ b/mappings/net/minecraft/nbt/TagInt.json @@ -0,0 +1,120 @@ +{ + "obf": "dy", + "name": "net/minecraft/nbt/TagInt", + "field": [ + { + "obf": "b", + "name": "value", + "type": "I" + } + ], + "constructors": [ + { + "signature": "(I)V", + "args": [ + { + "index": 0, + "name": "value" + } + ], + "statics": false + } + ], + "method": [ + { + "obf": "a", + "name": "getType", + "signature": "()B", + "args": [] + }, + { + "obf": "a", + "name": "read", + "signature": "(Ljava/io/DataInput;ILnone/eb;)V", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "depth" + }, + { + "index": 2, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "write", + "signature": "(Ljava/io/DataOutput;)V", + "args": [ + { + "index": 0, + "name": "output" + } + ] + }, + { + "obf": "b", + "name": "copy", + "signature": "()Lnone/eh;", + "args": [] + }, + { + "obf": "c", + "name": "copy", + "signature": "()Lnone/dy;", + "args": [] + }, + { + "obf": "d", + "name": "getLong", + "signature": "()J", + "args": [] + }, + { + "obf": "e", + "name": "getInt", + "signature": "()I", + "args": [] + }, + { + "obf": "equals", + "signature": "(Ljava/lang/Object;)Z", + "args": [ + { + "index": 0, + "name": "other" + } + ] + }, + { + "obf": "f", + "name": "getShort", + "signature": "()S", + "args": [] + }, + { + "obf": "g", + "name": "getByte", + "signature": "()B", + "args": [] + }, + { + "obf": "h", + "name": "getDouble", + "signature": "()D", + "args": [] + }, + { + "obf": "i", + "name": "getFloat", + "signature": "()F", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/nbt/TagIntArray.json b/mappings/net/minecraft/nbt/TagIntArray.json new file mode 100644 index 0000000000..47109e3dad --- /dev/null +++ b/mappings/net/minecraft/nbt/TagIntArray.json @@ -0,0 +1,90 @@ +{ + "obf": "dx", + "name": "net/minecraft/nbt/TagIntArray", + "field": [ + { + "obf": "b", + "name": "value", + "type": "[I" + } + ], + "constructors": [ + { + "signature": "([I)V", + "args": [ + { + "index": 0, + "name": "value" + } + ], + "statics": false + } + ], + "method": [ + { + "obf": "a", + "name": "getType", + "signature": "()B", + "args": [] + }, + { + "obf": "a", + "name": "read", + "signature": "(Ljava/io/DataInput;ILnone/eb;)V", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "depth" + }, + { + "index": 2, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "write", + "signature": "(Ljava/io/DataOutput;)V", + "args": [ + { + "index": 0, + "name": "output" + } + ] + }, + { + "obf": "b", + "name": "copy", + "signature": "()Lnone/eh;", + "args": [] + }, + { + "obf": "c", + "name": "copy", + "signature": "()Lnone/dx;", + "args": [] + }, + { + "obf": "d", + "name": "getIntArray", + "signature": "()[I", + "args": [] + }, + { + "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/nbt/TagList.json b/mappings/net/minecraft/nbt/TagList.json new file mode 100644 index 0000000000..b144eb13f4 --- /dev/null +++ b/mappings/net/minecraft/nbt/TagList.json @@ -0,0 +1,215 @@ +{ + "obf": "dz", + "name": "net/minecraft/nbt/TagList", + "field": [ + { + "obf": "b", + "name": "LOGGER", + "type": "Lorg/apache/logging/log4j/Logger;" + }, + { + "obf": "c", + "name": "value", + "type": "Ljava/util/List;" + }, + { + "obf": "d", + "name": "type", + "type": "B" + } + ], + "constructors": [], + "method": [ + { + "obf": "a", + "name": "getType", + "signature": "()B", + "args": [] + }, + { + "obf": "a", + "name": "remove", + "signature": "(I)Lnone/eh;", + "args": [ + { + "index": 0, + "name": "index" + } + ] + }, + { + "obf": "a", + "name": "set", + "signature": "(ILnone/eh;)V", + "args": [ + { + "index": 0, + "name": "index" + }, + { + "index": 1, + "name": "tag" + } + ] + }, + { + "obf": "a", + "name": "read", + "signature": "(Ljava/io/DataInput;ILnone/eb;)V", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "depth" + }, + { + "index": 2, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "write", + "signature": "(Ljava/io/DataOutput;)V", + "args": [ + { + "index": 0, + "name": "output" + } + ] + }, + { + "obf": "a", + "name": "add", + "signature": "(Lnone/eh;)V", + "args": [ + { + "index": 0, + "name": "tag" + } + ] + }, + { + "obf": "b", + "name": "copy", + "signature": "()Lnone/eh;", + "args": [] + }, + { + "obf": "b", + "name": "getTagCompound", + "signature": "(I)Lnone/dt;", + "args": [ + { + "index": 0, + "name": "index" + } + ] + }, + { + "obf": "b_", + "name": "isEmpty", + "signature": "()Z", + "args": [] + }, + { + "obf": "c", + "name": "getSize", + "signature": "()I", + "args": [] + }, + { + "obf": "c", + "name": "getInt", + "signature": "(I)I", + "args": [ + { + "index": 0, + "name": "index" + } + ] + }, + { + "obf": "d", + "name": "copy", + "signature": "()Lnone/dz;", + "args": [] + }, + { + "obf": "d", + "name": "getIntArray", + "signature": "(I)[I", + "args": [ + { + "index": 0, + "name": "index" + } + ] + }, + { + "obf": "e", + "name": "getDouble", + "signature": "(I)D", + "args": [ + { + "index": 0, + "name": "index" + } + ] + }, + { + "obf": "equals", + "signature": "(Ljava/lang/Object;)Z", + "args": [ + { + "index": 0, + "name": "other" + } + ] + }, + { + "obf": "f", + "name": "getFloat", + "signature": "(I)F", + "args": [ + { + "index": 0, + "name": "index" + } + ] + }, + { + "obf": "g", + "name": "getType", + "signature": "()I", + "args": [] + }, + { + "obf": "g", + "name": "getString", + "signature": "(I)Ljava/lang/String;", + "args": [ + { + "index": 0, + "name": "index" + } + ] + }, + { + "obf": "h", + "name": "getTag", + "signature": "(I)Lnone/eh;", + "args": [ + { + "index": 0, + "name": "index" + } + ] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/nbt/TagLong.json b/mappings/net/minecraft/nbt/TagLong.json new file mode 100644 index 0000000000..a16e75ab88 --- /dev/null +++ b/mappings/net/minecraft/nbt/TagLong.json @@ -0,0 +1,120 @@ +{ + "obf": "ea", + "name": "net/minecraft/nbt/TagLong", + "field": [ + { + "obf": "b", + "name": "value", + "type": "J" + } + ], + "constructors": [ + { + "signature": "(J)V", + "args": [ + { + "index": 0, + "name": "value" + } + ], + "statics": false + } + ], + "method": [ + { + "obf": "a", + "name": "getType", + "signature": "()B", + "args": [] + }, + { + "obf": "a", + "name": "read", + "signature": "(Ljava/io/DataInput;ILnone/eb;)V", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "depth" + }, + { + "index": 2, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "write", + "signature": "(Ljava/io/DataOutput;)V", + "args": [ + { + "index": 0, + "name": "output" + } + ] + }, + { + "obf": "b", + "name": "copy", + "signature": "()Lnone/eh;", + "args": [] + }, + { + "obf": "c", + "name": "copy", + "signature": "()Lnone/ea;", + "args": [] + }, + { + "obf": "d", + "name": "getLong", + "signature": "()J", + "args": [] + }, + { + "obf": "e", + "name": "getInt", + "signature": "()I", + "args": [] + }, + { + "obf": "equals", + "signature": "(Ljava/lang/Object;)Z", + "args": [ + { + "index": 0, + "name": "other" + } + ] + }, + { + "obf": "f", + "name": "getShort", + "signature": "()S", + "args": [] + }, + { + "obf": "g", + "name": "getByte", + "signature": "()B", + "args": [] + }, + { + "obf": "h", + "name": "getDouble", + "signature": "()D", + "args": [] + }, + { + "obf": "i", + "name": "getFloat", + "signature": "()F", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/nbt/TagNumber.json b/mappings/net/minecraft/nbt/TagNumber.json new file mode 100644 index 0000000000..68554f8669 --- /dev/null +++ b/mappings/net/minecraft/nbt/TagNumber.json @@ -0,0 +1,45 @@ +{ + "obf": "ee", + "name": "net/minecraft/nbt/TagNumber", + "field": [], + "constructors": [], + "method": [ + { + "obf": "d", + "name": "getLong", + "signature": "()J", + "args": [] + }, + { + "obf": "e", + "name": "getInt", + "signature": "()I", + "args": [] + }, + { + "obf": "f", + "name": "getShort", + "signature": "()S", + "args": [] + }, + { + "obf": "g", + "name": "getByte", + "signature": "()B", + "args": [] + }, + { + "obf": "h", + "name": "getDouble", + "signature": "()D", + "args": [] + }, + { + "obf": "i", + "name": "getFloat", + "signature": "()F", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/nbt/TagShort.json b/mappings/net/minecraft/nbt/TagShort.json new file mode 100644 index 0000000000..6cde429b6f --- /dev/null +++ b/mappings/net/minecraft/nbt/TagShort.json @@ -0,0 +1,120 @@ +{ + "obf": "ef", + "name": "net/minecraft/nbt/TagShort", + "field": [ + { + "obf": "b", + "name": "value", + "type": "S" + } + ], + "constructors": [ + { + "signature": "(S)V", + "args": [ + { + "index": 0, + "name": "value" + } + ], + "statics": false + } + ], + "method": [ + { + "obf": "a", + "name": "getType", + "signature": "()B", + "args": [] + }, + { + "obf": "a", + "name": "read", + "signature": "(Ljava/io/DataInput;ILnone/eb;)V", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "depth" + }, + { + "index": 2, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "write", + "signature": "(Ljava/io/DataOutput;)V", + "args": [ + { + "index": 0, + "name": "output" + } + ] + }, + { + "obf": "b", + "name": "copy", + "signature": "()Lnone/eh;", + "args": [] + }, + { + "obf": "c", + "name": "copy", + "signature": "()Lnone/ef;", + "args": [] + }, + { + "obf": "d", + "name": "getLong", + "signature": "()J", + "args": [] + }, + { + "obf": "e", + "name": "getInt", + "signature": "()I", + "args": [] + }, + { + "obf": "equals", + "signature": "(Ljava/lang/Object;)Z", + "args": [ + { + "index": 0, + "name": "other" + } + ] + }, + { + "obf": "f", + "name": "getShort", + "signature": "()S", + "args": [] + }, + { + "obf": "g", + "name": "getByte", + "signature": "()B", + "args": [] + }, + { + "obf": "h", + "name": "getDouble", + "signature": "()D", + "args": [] + }, + { + "obf": "i", + "name": "getFloat", + "signature": "()F", + "args": [] + } + ], + "innerClass": [] +} \ No newline at end of file diff --git a/mappings/net/minecraft/nbt/TagString.json b/mappings/net/minecraft/nbt/TagString.json new file mode 100644 index 0000000000..4218f709fc --- /dev/null +++ b/mappings/net/minecraft/nbt/TagString.json @@ -0,0 +1,96 @@ +{ + "obf": "eg", + "name": "net/minecraft/nbt/TagString", + "field": [ + { + "obf": "b", + "name": "value", + "type": "Ljava/lang/String;" + } + ], + "constructors": [ + { + "signature": "(Ljava/lang/String;)V", + "args": [ + { + "index": 0, + "name": "value" + } + ], + "statics": false + } + ], + "method": [ + { + "obf": "a", + "name": "getType", + "signature": "()B", + "args": [] + }, + { + "obf": "a", + "name": "read", + "signature": "(Ljava/io/DataInput;ILnone/eb;)V", + "args": [ + { + "index": 0, + "name": "input" + }, + { + "index": 1, + "name": "depth" + }, + { + "index": 2, + "name": "tracker" + } + ] + }, + { + "obf": "a", + "name": "write", + "signature": "(Ljava/io/DataOutput;)V", + "args": [ + { + "index": 0, + "name": "output" + } + ] + }, + { + "obf": "b", + "name": "copy", + "signature": "()Lnone/eh;", + "args": [] + }, + { + "obf": "b_", + "name": "isEmpty", + "signature": "()Z", + "args": [] + }, + { + "obf": "c", + "name": "copy", + "signature": "()Lnone/eg;", + "args": [] + }, + { + "obf": "c_", + "name": "asString", + "signature": "()Ljava/lang/String;", + "args": [] + }, + { + "obf": "equals", + "signature": "(Ljava/lang/Object;)Z", + "args": [ + { + "index": 0, + "name": "other" + } + ] + } + ], + "innerClass": [] +} \ No newline at end of file