Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-12-26 16:12:42 +01:00
Update mappings, change some things on item rewriter
Dieser Commit ist enthalten in:
Ursprung
feba8785d7
Commit
b7fde6390e
@ -198,14 +198,39 @@ public class InventoryPackets {
|
||||
|
||||
public static void toClient(Item item) {
|
||||
if (item == null) return;
|
||||
int rawId = (item.getId() << 4 | item.getData() & 0xF);
|
||||
int originalId = (item.getId() << 16 | item.getData() & 0xFFFF);
|
||||
// Save original id
|
||||
|
||||
// create tag
|
||||
CompoundTag tag = item.getTag();
|
||||
if (tag == null) {
|
||||
item.setTag(tag = new CompoundTag("tag"));
|
||||
}
|
||||
item.getTag().put(new IntTag(NBT_TAG_NAME, originalId));
|
||||
|
||||
// Save original id
|
||||
int originalId = (item.getId() << 16 | item.getData() & 0xFFFF);
|
||||
tag.put(new IntTag(NBT_TAG_NAME, originalId));
|
||||
|
||||
if (isDamageable(item.getId())) {
|
||||
tag.put(new IntTag("Damage", item.getData()));
|
||||
}
|
||||
|
||||
if (item.getId() == 358) { // map
|
||||
tag.put(new IntTag("map", item.getData()));
|
||||
}
|
||||
|
||||
if (item.getId() == 442) { // shield
|
||||
if (tag.get("BlockEntityTag") instanceof CompoundTag) {
|
||||
CompoundTag blockEntityTag = tag.get("BlockEntityTag");
|
||||
if (blockEntityTag.get("Base") instanceof IntTag) {
|
||||
IntTag base = blockEntityTag.get("Base");
|
||||
base.setValue(15 - base.getValue()); // invert color id
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// todo spawn egg
|
||||
|
||||
int rawId = (item.getId() << 4 | item.getData() & 0xF);
|
||||
|
||||
if (!MappingData.oldToNewItems.containsKey(rawId)) {
|
||||
if (MappingData.oldToNewItems.containsKey(item.getId() << 4)) {
|
||||
rawId = item.getId() << 4;
|
||||
@ -214,31 +239,19 @@ public class InventoryPackets {
|
||||
rawId = 16; // Stone
|
||||
}
|
||||
}
|
||||
if (isDamageable(item.getId())) {
|
||||
tag.put(new IntTag("Damage", item.getData()));
|
||||
}
|
||||
if (item.getId() == 358) { // map
|
||||
tag.put(new IntTag("map", item.getData()));
|
||||
}
|
||||
if (item.getId() == 442) { // shield
|
||||
if (tag.get("BlockEntityTag") instanceof CompoundTag) {
|
||||
CompoundTag blockEntityTag = tag.get("BlockEntityTag");
|
||||
if (blockEntityTag.get("Base") instanceof IntTag) {
|
||||
IntTag base = blockEntityTag.get("Base");
|
||||
base.setValue(15 - base.getValue());
|
||||
}
|
||||
}
|
||||
}
|
||||
// todo spawn egg
|
||||
|
||||
item.setId(MappingData.oldToNewItems.get(rawId).shortValue());
|
||||
item.setData((short) 0);
|
||||
}
|
||||
|
||||
public static void toServer(Item item) {
|
||||
if (item == null) return;
|
||||
|
||||
Integer rawId = null;
|
||||
boolean gotRawIdFromTag = false;
|
||||
|
||||
CompoundTag tag = item.getTag();
|
||||
|
||||
if (tag != null) {
|
||||
// Check for valid tag
|
||||
if (tag.contains(NBT_TAG_NAME)) {
|
||||
@ -254,31 +267,40 @@ public class InventoryPackets {
|
||||
for (Map.Entry<Integer, Integer> entry : MappingData.oldToNewItems.entrySet()) {
|
||||
if (entry.getValue() == item.getId()) {
|
||||
int oldId = entry.getKey();
|
||||
rawId = oldId >> 4 << 16 | oldId & 0xF;
|
||||
rawId = (oldId >> 4) << 16 | oldId & 0xF;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (rawId != null) {
|
||||
item.setId((short) (rawId >> 16));
|
||||
item.setData((short) (rawId & 0xFFFF));
|
||||
if (!gotRawIdFromTag) {
|
||||
|
||||
if (tag != null) {
|
||||
if (isDamageable(item.getId())) {
|
||||
if (tag != null && tag.get("Damage") instanceof IntTag) {
|
||||
item.setData((short) (int) tag.get("Damage").getValue());
|
||||
if (tag.get("Damage") instanceof IntTag) {
|
||||
if (!gotRawIdFromTag)
|
||||
item.setData((short) (int) tag.get("Damage").getValue());
|
||||
tag.remove("Damage");
|
||||
}
|
||||
}
|
||||
|
||||
if (item.getId() == 358) { // map
|
||||
if (tag != null && tag.get("map") instanceof IntTag) {
|
||||
item.setData((short) (int) tag.get("map").getValue());
|
||||
if (tag.get("map") instanceof IntTag) {
|
||||
if (!gotRawIdFromTag)
|
||||
item.setData((short) (int) tag.get("map").getValue());
|
||||
tag.remove("map");
|
||||
}
|
||||
}
|
||||
}
|
||||
if (item.getId() == 442) { // shield
|
||||
if (tag != null && tag.get("BlockEntityTag") instanceof CompoundTag) {
|
||||
CompoundTag blockEntityTag = tag.get("BlockEntityTag");
|
||||
if (blockEntityTag.get("Base") instanceof IntTag) {
|
||||
IntTag base = blockEntityTag.get("Base");
|
||||
base.setValue(15 - base.getValue());
|
||||
|
||||
if (item.getId() == 442) { // shield
|
||||
if (tag.get("BlockEntityTag") instanceof CompoundTag) {
|
||||
CompoundTag blockEntityTag = tag.get("BlockEntityTag");
|
||||
if (blockEntityTag.get("Base") instanceof IntTag) {
|
||||
IntTag base = blockEntityTag.get("Base");
|
||||
base.setValue(15 - base.getValue()); // invert color id
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -10,7 +10,6 @@ import us.myles.ViaVersion.protocols.protocolsnapshotto1_12_2.storage.BlockStora
|
||||
public class SkullHandler implements BlockEntityProvider.BlockEntityHandler {
|
||||
private final int SKULL_WALL_START = 5357;
|
||||
private final int SKULL_END = 5476;
|
||||
// remember to change blockstorage
|
||||
@Override
|
||||
public int transform(UserConnection user, CompoundTag tag) {
|
||||
BlockStorage storage = user.get(BlockStorage.class);
|
||||
|
@ -9170,6 +9170,7 @@
|
||||
"763": "minecraft:music_disc_ward",
|
||||
"764": "minecraft:music_disc_11",
|
||||
"765": "minecraft:music_disc_wait",
|
||||
"766": "minecraft:trident"
|
||||
"766": "minecraft:trident",
|
||||
"767": "minecraft:phantom_membrane"
|
||||
}
|
||||
}
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren