Geyser/connector/src/main/java/org/geysermc/connector/entity/living/animal/horse/LlamaEntity.java

77 lines
3.6 KiB
Java
Raw Normal View History

2019-12-14 17:40:04 +00:00
/*
* Copyright (c) 2019-2020 GeyserMC. http://geysermc.org
2019-12-14 17:40:04 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* @author GeyserMC
* @link https://github.com/GeyserMC/Geyser
*/
2020-01-09 02:35:00 +00:00
package org.geysermc.connector.entity.living.animal.horse;
2019-12-14 17:40:04 +00:00
import com.github.steveice10.mc.protocol.data.game.entity.metadata.EntityMetadata;
2019-12-14 17:40:04 +00:00
import com.nukkitx.math.vector.Vector3f;
import com.nukkitx.protocol.bedrock.data.EntityData;
import com.nukkitx.protocol.bedrock.data.ItemData;
import com.nukkitx.protocol.bedrock.packet.MobArmorEquipmentPacket;
2019-12-14 17:40:04 +00:00
import org.geysermc.connector.entity.type.EntityType;
import org.geysermc.connector.network.session.GeyserSession;
import org.geysermc.connector.network.translators.world.block.BlockTranslator;
2019-12-14 17:40:04 +00:00
public class LlamaEntity extends ChestedHorseEntity {
public LlamaEntity(long entityId, long geyserId, EntityType entityType, Vector3f position, Vector3f motion, Vector3f rotation) {
super(entityId, geyserId, entityType, position, motion, rotation);
}
@Override
public void updateBedrockMetadata(EntityMetadata entityMetadata, GeyserSession session) {
// Strength
if (entityMetadata.getId() == 19) {
metadata.put(EntityData.STRENGTH, entityMetadata.getValue());
}
2020-04-07 23:38:44 +00:00
// Color equipped on the llama
if (entityMetadata.getId() == 20) {
// Bedrock treats llama decoration as armor
MobArmorEquipmentPacket equipmentPacket = new MobArmorEquipmentPacket();
equipmentPacket.setRuntimeEntityId(getGeyserId());
2020-04-07 23:40:35 +00:00
// -1 means no armor
2020-04-07 23:38:44 +00:00
if ((int) entityMetadata.getValue() != -1) {
// The damage value is the dye color that Java sends us
2020-04-08 00:06:20 +00:00
// Always going to be a carpet so we can hardcode 171 in BlockTranslator
2020-04-07 23:38:44 +00:00
// The int then short conversion is required or we get a ClassCastException
2020-04-08 00:06:20 +00:00
equipmentPacket.setChestplate(ItemData.of(BlockTranslator.CARPET, (short)((int) entityMetadata.getValue()), 1));
} else {
equipmentPacket.setChestplate(ItemData.AIR);
}
2020-04-08 00:06:20 +00:00
// Required to fill out the rest of the equipment or Bedrock ignores it, including above else statement if removing armor
equipmentPacket.setBoots(ItemData.AIR);
equipmentPacket.setHelmet(ItemData.AIR);
equipmentPacket.setLeggings(ItemData.AIR);
2020-04-07 23:38:44 +00:00
2020-06-04 20:56:16 +00:00
session.sendUpstreamPacket(equipmentPacket);
2020-04-07 23:38:44 +00:00
}
// Color of the llama
2020-04-07 20:21:42 +00:00
if (entityMetadata.getId() == 21) {
metadata.put(EntityData.VARIANT, entityMetadata.getValue());
}
super.updateBedrockMetadata(entityMetadata, session);
}
2019-12-14 17:40:04 +00:00
}