mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Implement MC 1.16.2 entity handling
New EntityPalette
This commit is contained in:
parent
3c0a1242b7
commit
94295e028d
4 changed files with 155 additions and 9 deletions
127
MinecraftClient/Mapping/EntityPalettes/EntityPalette1162.cs
Normal file
127
MinecraftClient/Mapping/EntityPalettes/EntityPalette1162.cs
Normal file
|
|
@ -0,0 +1,127 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace MinecraftClient.Mapping.EntityPalettes
|
||||||
|
{
|
||||||
|
public class EntityPalette1162 : EntityPalette
|
||||||
|
{
|
||||||
|
private static Dictionary<int, EntityType> mappings = new Dictionary<int, EntityType>();
|
||||||
|
|
||||||
|
static EntityPalette1162()
|
||||||
|
{
|
||||||
|
mappings[0] = EntityType.AreaEffectCloud;
|
||||||
|
mappings[1] = EntityType.ArmorStand;
|
||||||
|
mappings[2] = EntityType.Arrow;
|
||||||
|
mappings[3] = EntityType.Bat;
|
||||||
|
mappings[4] = EntityType.Bee;
|
||||||
|
mappings[5] = EntityType.Blaze;
|
||||||
|
mappings[6] = EntityType.Boat;
|
||||||
|
mappings[7] = EntityType.Cat;
|
||||||
|
mappings[8] = EntityType.CaveSpider;
|
||||||
|
mappings[9] = EntityType.Chicken;
|
||||||
|
mappings[10] = EntityType.Cod;
|
||||||
|
mappings[11] = EntityType.Cow;
|
||||||
|
mappings[12] = EntityType.Creeper;
|
||||||
|
mappings[13] = EntityType.Dolphin;
|
||||||
|
mappings[14] = EntityType.Donkey;
|
||||||
|
mappings[15] = EntityType.DragonFireball;
|
||||||
|
mappings[16] = EntityType.Drowned;
|
||||||
|
mappings[17] = EntityType.ElderGuardian;
|
||||||
|
mappings[18] = EntityType.EndCrystal;
|
||||||
|
mappings[19] = EntityType.EnderDragon;
|
||||||
|
mappings[20] = EntityType.Enderman;
|
||||||
|
mappings[21] = EntityType.Endermite;
|
||||||
|
mappings[22] = EntityType.Evoker;
|
||||||
|
mappings[23] = EntityType.EvokerFangs;
|
||||||
|
mappings[24] = EntityType.ExperienceOrb;
|
||||||
|
mappings[25] = EntityType.EyeOfEnder;
|
||||||
|
mappings[26] = EntityType.FallingBlock;
|
||||||
|
mappings[27] = EntityType.FireworkRocket;
|
||||||
|
mappings[28] = EntityType.Fox;
|
||||||
|
mappings[29] = EntityType.Ghast;
|
||||||
|
mappings[30] = EntityType.Giant;
|
||||||
|
mappings[31] = EntityType.Guardian;
|
||||||
|
mappings[32] = EntityType.Hoglin;
|
||||||
|
mappings[33] = EntityType.Horse;
|
||||||
|
mappings[34] = EntityType.Husk;
|
||||||
|
mappings[35] = EntityType.Illusioner;
|
||||||
|
mappings[36] = EntityType.IronGolem;
|
||||||
|
mappings[37] = EntityType.Item;
|
||||||
|
mappings[38] = EntityType.ItemFrame;
|
||||||
|
mappings[39] = EntityType.Fireball;
|
||||||
|
mappings[40] = EntityType.LeashKnot;
|
||||||
|
mappings[41] = EntityType.LightningBolt;
|
||||||
|
mappings[42] = EntityType.Llama;
|
||||||
|
mappings[43] = EntityType.LlamaSpit;
|
||||||
|
mappings[44] = EntityType.MagmaCube;
|
||||||
|
mappings[45] = EntityType.Minecart;
|
||||||
|
mappings[46] = EntityType.ChestMinecart;
|
||||||
|
mappings[47] = EntityType.CommandBlockMinecart;
|
||||||
|
mappings[48] = EntityType.FurnaceMinecart;
|
||||||
|
mappings[49] = EntityType.HopperMinecart;
|
||||||
|
mappings[50] = EntityType.SpawnerMinecart;
|
||||||
|
mappings[51] = EntityType.TntMinecart;
|
||||||
|
mappings[52] = EntityType.Mule;
|
||||||
|
mappings[53] = EntityType.Mooshroom;
|
||||||
|
mappings[54] = EntityType.Ocelot;
|
||||||
|
mappings[55] = EntityType.Painting;
|
||||||
|
mappings[56] = EntityType.Panda;
|
||||||
|
mappings[57] = EntityType.Parrot;
|
||||||
|
mappings[58] = EntityType.Phantom;
|
||||||
|
mappings[59] = EntityType.Pig;
|
||||||
|
mappings[60] = EntityType.Piglin;
|
||||||
|
mappings[61] = EntityType.PiglinBrute;
|
||||||
|
mappings[62] = EntityType.Pillager;
|
||||||
|
mappings[63] = EntityType.PolarBear;
|
||||||
|
mappings[64] = EntityType.Tnt;
|
||||||
|
mappings[65] = EntityType.Pufferfish;
|
||||||
|
mappings[66] = EntityType.Rabbit;
|
||||||
|
mappings[67] = EntityType.Ravager;
|
||||||
|
mappings[68] = EntityType.Salmon;
|
||||||
|
mappings[69] = EntityType.Sheep;
|
||||||
|
mappings[70] = EntityType.Shulker;
|
||||||
|
mappings[71] = EntityType.ShulkerBullet;
|
||||||
|
mappings[72] = EntityType.Silverfish;
|
||||||
|
mappings[73] = EntityType.Skeleton;
|
||||||
|
mappings[74] = EntityType.SkeletonHorse;
|
||||||
|
mappings[75] = EntityType.Slime;
|
||||||
|
mappings[76] = EntityType.SmallFireball;
|
||||||
|
mappings[77] = EntityType.SnowGolem;
|
||||||
|
mappings[78] = EntityType.Snowball;
|
||||||
|
mappings[79] = EntityType.SpectralArrow;
|
||||||
|
mappings[80] = EntityType.Spider;
|
||||||
|
mappings[81] = EntityType.Squid;
|
||||||
|
mappings[82] = EntityType.Stray;
|
||||||
|
mappings[83] = EntityType.Strider;
|
||||||
|
mappings[84] = EntityType.Egg;
|
||||||
|
mappings[85] = EntityType.EnderPearl;
|
||||||
|
mappings[86] = EntityType.ExperienceBottle;
|
||||||
|
mappings[87] = EntityType.Potion;
|
||||||
|
mappings[88] = EntityType.Trident;
|
||||||
|
mappings[89] = EntityType.TraderLlama;
|
||||||
|
mappings[90] = EntityType.TropicalFish;
|
||||||
|
mappings[91] = EntityType.Turtle;
|
||||||
|
mappings[92] = EntityType.Vex;
|
||||||
|
mappings[93] = EntityType.Villager;
|
||||||
|
mappings[94] = EntityType.Vindicator;
|
||||||
|
mappings[95] = EntityType.WanderingTrader;
|
||||||
|
mappings[96] = EntityType.Witch;
|
||||||
|
mappings[97] = EntityType.Wither;
|
||||||
|
mappings[98] = EntityType.WitherSkeleton;
|
||||||
|
mappings[99] = EntityType.WitherSkull;
|
||||||
|
mappings[100] = EntityType.Wolf;
|
||||||
|
mappings[101] = EntityType.Zoglin;
|
||||||
|
mappings[102] = EntityType.Zombie;
|
||||||
|
mappings[103] = EntityType.ZombieHorse;
|
||||||
|
mappings[104] = EntityType.ZombieVillager;
|
||||||
|
mappings[105] = EntityType.ZombifiedPiglin;
|
||||||
|
mappings[106] = EntityType.Player;
|
||||||
|
mappings[107] = EntityType.FishingBobber;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override Dictionary<int, EntityType> GetDict()
|
||||||
|
{
|
||||||
|
return mappings;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -42,7 +42,6 @@ namespace MinecraftClient.Mapping
|
||||||
EyeOfEnder,
|
EyeOfEnder,
|
||||||
FallingBlock,
|
FallingBlock,
|
||||||
FireworkRocket,
|
FireworkRocket,
|
||||||
FishingBobber,
|
|
||||||
Fox,
|
Fox,
|
||||||
Ghast,
|
Ghast,
|
||||||
Giant,
|
Giant,
|
||||||
|
|
@ -76,6 +75,7 @@ namespace MinecraftClient.Mapping
|
||||||
Phantom,
|
Phantom,
|
||||||
Pig,
|
Pig,
|
||||||
Piglin,
|
Piglin,
|
||||||
|
PiglinBrute,
|
||||||
Pillager,
|
Pillager,
|
||||||
PolarBear,
|
PolarBear,
|
||||||
Tnt,
|
Tnt,
|
||||||
|
|
@ -101,7 +101,6 @@ namespace MinecraftClient.Mapping
|
||||||
Egg,
|
Egg,
|
||||||
EnderPearl,
|
EnderPearl,
|
||||||
ExperienceBottle,
|
ExperienceBottle,
|
||||||
Player,
|
|
||||||
Potion,
|
Potion,
|
||||||
Trident,
|
Trident,
|
||||||
TraderLlama,
|
TraderLlama,
|
||||||
|
|
@ -120,6 +119,9 @@ namespace MinecraftClient.Mapping
|
||||||
Zombie,
|
Zombie,
|
||||||
ZombieHorse,
|
ZombieHorse,
|
||||||
ZombieVillager,
|
ZombieVillager,
|
||||||
|
ZombifiedPiglin,
|
||||||
ZombiePigman,
|
ZombiePigman,
|
||||||
|
Player,
|
||||||
|
FishingBobber,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -138,6 +138,7 @@
|
||||||
<Compile Include="Mapping\EntityPalettes\EntityPalette114.cs" />
|
<Compile Include="Mapping\EntityPalettes\EntityPalette114.cs" />
|
||||||
<Compile Include="Mapping\EntityPalettes\EntityPalette115.cs" />
|
<Compile Include="Mapping\EntityPalettes\EntityPalette115.cs" />
|
||||||
<Compile Include="Mapping\EntityPalettes\EntityPalette116.cs" />
|
<Compile Include="Mapping\EntityPalettes\EntityPalette116.cs" />
|
||||||
|
<Compile Include="Mapping\EntityPalettes\EntityPalette1162.cs" />
|
||||||
<Compile Include="Mapping\EntityType.cs" />
|
<Compile Include="Mapping\EntityType.cs" />
|
||||||
<Compile Include="Mapping\EntityPalettes\EntityPaletteGenerator.cs" />
|
<Compile Include="Mapping\EntityPalettes\EntityPaletteGenerator.cs" />
|
||||||
<Compile Include="Mapping\EntityTypeExtensions.cs" />
|
<Compile Include="Mapping\EntityTypeExtensions.cs" />
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,7 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
handler.SetInventoryEnabled(false);
|
handler.SetInventoryEnabled(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (handler.GetEntityHandlingEnabled() && (protocolversion < MC110Version || protocolversion > MC1161Version))
|
if (handler.GetEntityHandlingEnabled() && (protocolversion < MC110Version))
|
||||||
{
|
{
|
||||||
ConsoleIO.WriteLineFormatted("§8Entities are currently not handled for that MC version.");
|
ConsoleIO.WriteLineFormatted("§8Entities are currently not handled for that MC version.");
|
||||||
handler.SetEntityHandlingEnabled(false);
|
handler.SetEntityHandlingEnabled(false);
|
||||||
|
|
@ -105,9 +105,9 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
|
|
||||||
if (protocolversion >= MC113Version)
|
if (protocolversion >= MC113Version)
|
||||||
{
|
{
|
||||||
if (protocolversion > MC1161Version && handler.GetEntityHandlingEnabled())
|
if (protocolversion >= MC1162Version)
|
||||||
throw new NotImplementedException("Please update entity types handling for this Minecraft version. See EntityType.cs");
|
entityPalette = new EntityPalette1162();
|
||||||
if (protocolversion >= MC116Version)
|
else if (protocolversion >= MC116Version)
|
||||||
entityPalette = new EntityPalette116();
|
entityPalette = new EntityPalette116();
|
||||||
else if (protocolversion >= MC115Version)
|
else if (protocolversion >= MC115Version)
|
||||||
entityPalette = new EntityPalette115();
|
entityPalette = new EntityPalette115();
|
||||||
|
|
@ -752,9 +752,25 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
if (handler.GetEntityHandlingEnabled())
|
if (handler.GetEntityHandlingEnabled())
|
||||||
{
|
{
|
||||||
int entityid = dataTypes.ReadNextVarInt(packetData);
|
int entityid = dataTypes.ReadNextVarInt(packetData);
|
||||||
int slot2 = dataTypes.ReadNextVarInt(packetData);
|
if (protocolversion >= MC116Version)
|
||||||
Item item = dataTypes.ReadNextItemSlot(packetData);
|
{
|
||||||
handler.OnEntityEquipment(entityid, slot2, item);
|
bool hasNext;
|
||||||
|
do
|
||||||
|
{
|
||||||
|
byte bitsData = dataTypes.ReadNextByte(packetData);
|
||||||
|
// Top bit set if another entry follows, and otherwise unset if this is the last item in the array
|
||||||
|
hasNext = (bitsData >> 7) == 1 ? true : false;
|
||||||
|
int slot2 = bitsData >> 1;
|
||||||
|
Item item = dataTypes.ReadNextItemSlot(packetData);
|
||||||
|
handler.OnEntityEquipment(entityid, slot2, item);
|
||||||
|
} while (hasNext);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
int slot2 = dataTypes.ReadNextVarInt(packetData);
|
||||||
|
Item item = dataTypes.ReadNextItemSlot(packetData);
|
||||||
|
handler.OnEntityEquipment(entityid, slot2, item);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case PacketIncomingType.SpawnLivingEntity:
|
case PacketIncomingType.SpawnLivingEntity:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue