2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
// NBTChunkSerializer.cpp
|
|
|
|
|
|
|
|
|
|
|
|
#include "Globals.h"
|
|
|
|
#include "NBTChunkSerializer.h"
|
2014-01-19 10:38:59 -05:00
|
|
|
#include "EnchantmentSerializer.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
#include "../BlockID.h"
|
2013-12-25 11:07:52 -05:00
|
|
|
#include "../ItemGrid.h"
|
|
|
|
#include "../StringCompression.h"
|
|
|
|
#include "FastNBT.h"
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
#include "../BlockEntities/ChestEntity.h"
|
2014-01-18 08:40:47 -05:00
|
|
|
#include "../BlockEntities/CommandBlockEntity.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
#include "../BlockEntities/DispenserEntity.h"
|
|
|
|
#include "../BlockEntities/DropperEntity.h"
|
|
|
|
#include "../BlockEntities/FurnaceEntity.h"
|
|
|
|
#include "../BlockEntities/HopperEntity.h"
|
|
|
|
#include "../BlockEntities/JukeboxEntity.h"
|
|
|
|
#include "../BlockEntities/NoteEntity.h"
|
|
|
|
#include "../BlockEntities/SignEntity.h"
|
2014-02-19 08:45:09 -05:00
|
|
|
#include "../BlockEntities/MobHeadEntity.h"
|
2014-03-06 19:30:34 -05:00
|
|
|
#include "../BlockEntities/FlowerPotEntity.h"
|
2013-12-25 11:07:52 -05:00
|
|
|
|
2013-08-19 05:39:13 -04:00
|
|
|
#include "../Entities/Entity.h"
|
|
|
|
#include "../Entities/FallingBlock.h"
|
2013-09-07 19:14:57 -04:00
|
|
|
#include "../Entities/Boat.h"
|
2013-08-19 05:39:13 -04:00
|
|
|
#include "../Entities/Minecart.h"
|
|
|
|
#include "../Entities/Pickup.h"
|
2013-08-22 16:31:38 -04:00
|
|
|
#include "../Entities/ProjectileEntity.h"
|
2014-03-08 04:25:46 -05:00
|
|
|
#include "../Entities/TNTEntity.h"
|
2013-08-22 16:31:38 -04:00
|
|
|
|
2013-12-25 11:07:52 -05:00
|
|
|
#include "../Mobs/Monster.h"
|
|
|
|
#include "../Mobs/Bat.h"
|
|
|
|
#include "../Mobs/Creeper.h"
|
|
|
|
#include "../Mobs/Enderman.h"
|
|
|
|
#include "../Mobs/Horse.h"
|
|
|
|
#include "../Mobs/Magmacube.h"
|
|
|
|
#include "../Mobs/Sheep.h"
|
|
|
|
#include "../Mobs/Slime.h"
|
|
|
|
#include "../Mobs/Skeleton.h"
|
|
|
|
#include "../Mobs/Villager.h"
|
|
|
|
#include "../Mobs/Wolf.h"
|
|
|
|
#include "../Mobs/Zombie.h"
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cNBTChunkSerializer::cNBTChunkSerializer(cFastNBTWriter & a_Writer) :
|
|
|
|
m_BiomesAreValid(false),
|
|
|
|
m_Writer(a_Writer),
|
|
|
|
m_IsTagOpen(false),
|
|
|
|
m_HasHadEntity(false),
|
|
|
|
m_HasHadBlockEntity(false),
|
|
|
|
m_IsLightValid(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::Finish(void)
|
|
|
|
{
|
|
|
|
if (m_IsTagOpen)
|
|
|
|
{
|
|
|
|
m_Writer.EndList();
|
|
|
|
}
|
|
|
|
|
|
|
|
// If light not valid, reset it to all zeroes:
|
|
|
|
if (!m_IsLightValid)
|
|
|
|
{
|
|
|
|
memset(m_BlockLight, 0, sizeof(m_BlockLight));
|
|
|
|
memset(m_BlockSkyLight, 0, sizeof(m_BlockSkyLight));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddItem(const cItem & a_Item, int a_Slot, const AString & a_CompoundName)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound(a_CompoundName);
|
|
|
|
m_Writer.AddShort("id", (short)(a_Item.m_ItemType));
|
|
|
|
m_Writer.AddShort("Damage", a_Item.m_ItemDamage);
|
|
|
|
m_Writer.AddByte ("Count", a_Item.m_ItemCount);
|
|
|
|
if (a_Slot >= 0)
|
|
|
|
{
|
|
|
|
m_Writer.AddByte ("Slot", (unsigned char)a_Slot);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write the enchantments:
|
2014-02-26 18:29:14 -05:00
|
|
|
if (!a_Item.m_Enchantments.IsEmpty() || ((a_Item.m_ItemType == E_ITEM_FIREWORK_ROCKET) || (a_Item.m_ItemType == E_ITEM_FIREWORK_STAR)))
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("tag");
|
2014-02-26 18:29:14 -05:00
|
|
|
if ((a_Item.m_ItemType == E_ITEM_FIREWORK_ROCKET) || (a_Item.m_ItemType == E_ITEM_FIREWORK_STAR))
|
|
|
|
{
|
|
|
|
cFireworkItem::WriteToNBTCompound(a_Item.m_FireworkItem, m_Writer, (ENUM_ITEM_ID)a_Item.m_ItemType);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!a_Item.m_Enchantments.IsEmpty())
|
|
|
|
{
|
|
|
|
const char * TagName = (a_Item.m_ItemType == E_ITEM_BOOK) ? "StoredEnchantments" : "ench";
|
|
|
|
EnchantmentSerializer::WriteToNBTCompound(a_Item.m_Enchantments, m_Writer, TagName);
|
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddItemGrid(const cItemGrid & a_Grid, int a_BeginSlotNum)
|
|
|
|
{
|
|
|
|
int NumSlots = a_Grid.GetNumSlots();
|
|
|
|
for (int i = 0; i < NumSlots; i++)
|
|
|
|
{
|
|
|
|
const cItem & Item = a_Grid.GetSlot(i);
|
|
|
|
if (Item.IsEmpty())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
AddItem(Item, i + a_BeginSlotNum);
|
|
|
|
} // for i - chest slots[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddBasicTileEntity(cBlockEntity * a_Entity, const char * a_EntityTypeID)
|
|
|
|
{
|
|
|
|
m_Writer.AddInt ("x", a_Entity->GetPosX());
|
|
|
|
m_Writer.AddInt ("y", a_Entity->GetPosY());
|
|
|
|
m_Writer.AddInt ("z", a_Entity->GetPosZ());
|
|
|
|
m_Writer.AddString("id", a_EntityTypeID);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddChestEntity(cChestEntity * a_Entity)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
|
|
|
AddBasicTileEntity(a_Entity, "Chest");
|
|
|
|
m_Writer.BeginList("Items", TAG_Compound);
|
|
|
|
AddItemGrid(a_Entity->GetContents());
|
|
|
|
m_Writer.EndList();
|
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddDispenserEntity(cDispenserEntity * a_Entity)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
|
|
|
AddBasicTileEntity(a_Entity, "Trap");
|
|
|
|
m_Writer.BeginList("Items", TAG_Compound);
|
|
|
|
AddItemGrid(a_Entity->GetContents());
|
|
|
|
m_Writer.EndList();
|
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddDropperEntity(cDropperEntity * a_Entity)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
|
|
|
AddBasicTileEntity(a_Entity, "Dropper");
|
|
|
|
m_Writer.BeginList("Items", TAG_Compound);
|
|
|
|
AddItemGrid(a_Entity->GetContents());
|
|
|
|
m_Writer.EndList();
|
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddFurnaceEntity(cFurnaceEntity * a_Furnace)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
|
|
|
AddBasicTileEntity(a_Furnace, "Furnace");
|
|
|
|
m_Writer.BeginList("Items", TAG_Compound);
|
|
|
|
AddItemGrid(a_Furnace->GetContents());
|
|
|
|
m_Writer.EndList();
|
|
|
|
m_Writer.AddShort("BurnTime", a_Furnace->GetFuelBurnTimeLeft());
|
|
|
|
m_Writer.AddShort("CookTime", a_Furnace->GetTimeCooked());
|
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddHopperEntity(cHopperEntity * a_Entity)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
|
|
|
AddBasicTileEntity(a_Entity, "Hopper");
|
|
|
|
m_Writer.BeginList("Items", TAG_Compound);
|
|
|
|
AddItemGrid(a_Entity->GetContents());
|
|
|
|
m_Writer.EndList();
|
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddJukeboxEntity(cJukeboxEntity * a_Jukebox)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
|
|
|
AddBasicTileEntity(a_Jukebox, "RecordPlayer");
|
|
|
|
m_Writer.AddInt("Record", a_Jukebox->GetRecord());
|
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddNoteEntity(cNoteEntity * a_Note)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
2014-01-18 08:40:47 -05:00
|
|
|
AddBasicTileEntity(a_Note, "Music");
|
|
|
|
m_Writer.AddByte("note", a_Note->GetPitch());
|
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddCommandBlockEntity(cCommandBlockEntity * a_CmdBlock)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
|
|
|
AddBasicTileEntity(a_CmdBlock, "Control");
|
|
|
|
m_Writer.AddString("Command", a_CmdBlock->GetCommand());
|
|
|
|
m_Writer.AddInt ("SuccessCount", a_CmdBlock->GetResult());
|
|
|
|
m_Writer.AddString("LastOutput", a_CmdBlock->GetLastOutput());
|
2014-01-18 12:58:46 -05:00
|
|
|
m_Writer.AddByte ("TrackOutput", 1); // TODO 2014-01-18 xdot: Figure out what TrackOutput is and save it.
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddSignEntity(cSignEntity * a_Sign)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
2014-02-17 14:14:08 -05:00
|
|
|
AddBasicTileEntity(a_Sign, "Sign");
|
|
|
|
m_Writer.AddString("Text1", a_Sign->GetLine(0));
|
|
|
|
m_Writer.AddString("Text2", a_Sign->GetLine(1));
|
|
|
|
m_Writer.AddString("Text3", a_Sign->GetLine(2));
|
|
|
|
m_Writer.AddString("Text4", a_Sign->GetLine(3));
|
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-19 08:45:09 -05:00
|
|
|
void cNBTChunkSerializer::AddMobHeadEntity(cMobHeadEntity * a_MobHead)
|
2014-02-17 14:14:08 -05:00
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
2014-02-19 08:45:09 -05:00
|
|
|
AddBasicTileEntity(a_MobHead, "Skull");
|
|
|
|
m_Writer.AddByte ("SkullType", a_MobHead->GetType() & 0xFF);
|
|
|
|
m_Writer.AddByte ("Rot", a_MobHead->GetRotation() & 0xFF);
|
|
|
|
m_Writer.AddString("ExtraType", a_MobHead->GetOwner());
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-06 19:30:34 -05:00
|
|
|
void cNBTChunkSerializer::AddFlowerPotEntity(cFlowerPotEntity * a_FlowerPot)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
|
|
|
AddBasicTileEntity(a_FlowerPot, "FlowerPot");
|
|
|
|
m_Writer.AddInt ("Item", (Int32) a_FlowerPot->GetItem().m_ItemType);
|
|
|
|
m_Writer.AddInt ("Data", (Int32) a_FlowerPot->GetItem().m_ItemDamage);
|
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
void cNBTChunkSerializer::AddBasicEntity(cEntity * a_Entity, const AString & a_ClassName)
|
|
|
|
{
|
|
|
|
m_Writer.AddString("id", a_ClassName);
|
|
|
|
m_Writer.BeginList("Pos", TAG_Double);
|
|
|
|
m_Writer.AddDouble("", a_Entity->GetPosX());
|
|
|
|
m_Writer.AddDouble("", a_Entity->GetPosY());
|
|
|
|
m_Writer.AddDouble("", a_Entity->GetPosZ());
|
|
|
|
m_Writer.EndList();
|
|
|
|
m_Writer.BeginList("Motion", TAG_Double);
|
|
|
|
m_Writer.AddDouble("", a_Entity->GetSpeedX());
|
|
|
|
m_Writer.AddDouble("", a_Entity->GetSpeedY());
|
|
|
|
m_Writer.AddDouble("", a_Entity->GetSpeedZ());
|
|
|
|
m_Writer.EndList();
|
|
|
|
m_Writer.BeginList("Rotation", TAG_Double);
|
2014-01-17 05:11:17 -05:00
|
|
|
m_Writer.AddDouble("", a_Entity->GetYaw());
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Writer.AddDouble("", a_Entity->GetPitch());
|
|
|
|
m_Writer.EndList();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-09-07 19:14:57 -04:00
|
|
|
void cNBTChunkSerializer::AddBoatEntity(cBoat * a_Boat)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
2013-09-09 05:13:14 -04:00
|
|
|
AddBasicEntity(a_Boat, "Boat");
|
2013-09-07 19:14:57 -04:00
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
void cNBTChunkSerializer::AddFallingBlockEntity(cFallingBlock * a_FallingBlock)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
|
|
|
AddBasicEntity(a_FallingBlock, "FallingSand");
|
|
|
|
m_Writer.AddInt("TileID", a_FallingBlock->GetBlockType());
|
|
|
|
m_Writer.AddByte("Data", a_FallingBlock->GetBlockMeta());
|
|
|
|
m_Writer.AddByte("Time", 1); // Unused in MCServer, Vanilla said to need nonzero
|
|
|
|
m_Writer.AddByte("DropItem", 1);
|
|
|
|
m_Writer.AddByte("HurtEntities", a_FallingBlock->GetBlockType() == E_BLOCK_ANVIL);
|
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddMinecartEntity(cMinecart * a_Minecart)
|
|
|
|
{
|
|
|
|
const char * EntityClass = NULL;
|
|
|
|
switch (a_Minecart->GetPayload())
|
|
|
|
{
|
|
|
|
case cMinecart::mpNone: EntityClass = "MinecartRideable"; break;
|
|
|
|
case cMinecart::mpChest: EntityClass = "MinecartChest"; break;
|
|
|
|
case cMinecart::mpFurnace: EntityClass = "MinecartFurnace"; break;
|
2013-08-16 06:23:24 -04:00
|
|
|
case cMinecart::mpTNT: EntityClass = "MinecartTNT"; break;
|
|
|
|
case cMinecart::mpHopper: EntityClass = "MinecartHopper"; break;
|
2013-07-29 07:13:03 -04:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
ASSERT(!"Unhandled minecart payload type");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} // switch (payload)
|
|
|
|
|
|
|
|
m_Writer.BeginCompound("");
|
|
|
|
AddBasicEntity(a_Minecart, EntityClass);
|
|
|
|
switch (a_Minecart->GetPayload())
|
|
|
|
{
|
|
|
|
case cMinecart::mpChest:
|
|
|
|
{
|
|
|
|
// Add chest contents into the Items tag:
|
|
|
|
AddMinecartChestContents((cMinecartWithChest *)a_Minecart);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case cMinecart::mpFurnace:
|
|
|
|
{
|
|
|
|
// TODO: Add "Push" and "Fuel" tags
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} // switch (Payload)
|
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddMonsterEntity(cMonster * a_Monster)
|
|
|
|
{
|
2013-12-25 11:07:52 -05:00
|
|
|
const char * EntityClass = NULL;
|
|
|
|
switch (a_Monster->GetMobType())
|
|
|
|
{
|
|
|
|
case cMonster::mtBat: EntityClass = "Bat"; break;
|
|
|
|
case cMonster::mtBlaze: EntityClass = "Blaze"; break;
|
|
|
|
case cMonster::mtCaveSpider: EntityClass = "CaveSpider"; break;
|
|
|
|
case cMonster::mtChicken: EntityClass = "Chicken"; break;
|
|
|
|
case cMonster::mtCow: EntityClass = "Cow"; break;
|
|
|
|
case cMonster::mtCreeper: EntityClass = "Creeper"; break;
|
|
|
|
case cMonster::mtEnderDragon: EntityClass = "EnderDragon"; break;
|
|
|
|
case cMonster::mtEnderman: EntityClass = "Enderman"; break;
|
|
|
|
case cMonster::mtGhast: EntityClass = "Ghast"; break;
|
|
|
|
case cMonster::mtGiant: EntityClass = "Giant"; break;
|
|
|
|
case cMonster::mtHorse: EntityClass = "Horse"; break;
|
|
|
|
case cMonster::mtIronGolem: EntityClass = "VillagerGolem"; break;
|
|
|
|
case cMonster::mtMagmaCube: EntityClass = "LavaSlime"; break;
|
|
|
|
case cMonster::mtMooshroom: EntityClass = "MushroomCow"; break;
|
|
|
|
case cMonster::mtOcelot: EntityClass = "Ozelot"; break;
|
|
|
|
case cMonster::mtPig: EntityClass = "Pig"; break;
|
|
|
|
case cMonster::mtSheep: EntityClass = "Sheep"; break;
|
|
|
|
case cMonster::mtSilverfish: EntityClass = "Silverfish"; break;
|
|
|
|
case cMonster::mtSkeleton: EntityClass = "Skeleton"; break;
|
|
|
|
case cMonster::mtSlime: EntityClass = "Slime"; break;
|
|
|
|
case cMonster::mtSnowGolem: EntityClass = "SnowMan"; break;
|
|
|
|
case cMonster::mtSpider: EntityClass = "Spider"; break;
|
|
|
|
case cMonster::mtSquid: EntityClass = "Squid"; break;
|
|
|
|
case cMonster::mtVillager: EntityClass = "Villager"; break;
|
|
|
|
case cMonster::mtWitch: EntityClass = "Witch"; break;
|
|
|
|
case cMonster::mtWither: EntityClass = "Wither"; break;
|
|
|
|
case cMonster::mtWolf: EntityClass = "Wolf"; break;
|
|
|
|
case cMonster::mtZombie: EntityClass = "Zombie"; break;
|
|
|
|
case cMonster::mtZombiePigman: EntityClass = "PigZombie"; break;
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
ASSERT(!"Unhandled monster type");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} // switch (payload)
|
|
|
|
|
|
|
|
m_Writer.BeginCompound("");
|
|
|
|
AddBasicEntity(a_Monster, EntityClass);
|
2014-02-23 13:44:58 -05:00
|
|
|
m_Writer.BeginList("DropChances", TAG_Float);
|
|
|
|
m_Writer.AddFloat("", a_Monster->GetDropChanceWeapon());
|
|
|
|
m_Writer.AddFloat("", a_Monster->GetDropChanceHelmet());
|
|
|
|
m_Writer.AddFloat("", a_Monster->GetDropChanceChestplate());
|
|
|
|
m_Writer.AddFloat("", a_Monster->GetDropChanceLeggings());
|
|
|
|
m_Writer.AddFloat("", a_Monster->GetDropChanceBoots());
|
|
|
|
m_Writer.EndList();
|
|
|
|
m_Writer.AddByte("CanPickUpLoot", (char)a_Monster->CanPickUpLoot());
|
2013-12-25 11:07:52 -05:00
|
|
|
switch (a_Monster->GetMobType())
|
|
|
|
{
|
|
|
|
case cMonster::mtBat:
|
|
|
|
{
|
|
|
|
m_Writer.AddByte("BatFlags", ((const cBat *)a_Monster)->IsHanging());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case cMonster::mtCreeper:
|
|
|
|
{
|
|
|
|
m_Writer.AddByte("powered", ((const cCreeper *)a_Monster)->IsCharged());
|
|
|
|
m_Writer.AddByte("ignited", ((const cCreeper *)a_Monster)->IsBlowing());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case cMonster::mtEnderman:
|
|
|
|
{
|
|
|
|
m_Writer.AddShort("carried", (Int16)((const cEnderman *)a_Monster)->GetCarriedBlock());
|
|
|
|
m_Writer.AddShort("carriedData", (Int16)((const cEnderman *)a_Monster)->GetCarriedMeta());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case cMonster::mtHorse:
|
|
|
|
{
|
|
|
|
const cHorse & Horse = *((const cHorse *)a_Monster);
|
|
|
|
m_Writer.AddByte("ChestedHorse", Horse.IsChested());
|
|
|
|
m_Writer.AddByte("EatingHaystack", Horse.IsEating());
|
|
|
|
m_Writer.AddByte("Tame", Horse.IsTame());
|
|
|
|
m_Writer.AddInt ("Type", Horse.GetHorseType());
|
|
|
|
m_Writer.AddInt ("Color", Horse.GetHorseColor());
|
|
|
|
m_Writer.AddInt ("Style", Horse.GetHorseStyle());
|
|
|
|
m_Writer.AddInt ("ArmorType", Horse.GetHorseArmour());
|
|
|
|
m_Writer.AddByte("Saddle", Horse.IsSaddled());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case cMonster::mtMagmaCube:
|
|
|
|
{
|
|
|
|
m_Writer.AddByte("Size", ((const cMagmaCube *)a_Monster)->GetSize());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case cMonster::mtSheep:
|
|
|
|
{
|
|
|
|
m_Writer.AddByte("Sheared", ((const cSheep *)a_Monster)->IsSheared());
|
|
|
|
m_Writer.AddByte("Color", ((const cSheep *)a_Monster)->GetFurColor());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case cMonster::mtSlime:
|
|
|
|
{
|
|
|
|
m_Writer.AddInt("Size", ((const cSlime *)a_Monster)->GetSize());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case cMonster::mtSkeleton:
|
|
|
|
{
|
|
|
|
m_Writer.AddByte("SkeletonType", (((const cSkeleton *)a_Monster)->IsWither() ? 1 : 0));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case cMonster::mtVillager:
|
|
|
|
{
|
|
|
|
m_Writer.AddInt("Profession", ((const cVillager *)a_Monster)->GetVilType());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case cMonster::mtWolf:
|
|
|
|
{
|
2014-01-30 15:39:31 -05:00
|
|
|
m_Writer.AddString("Owner", ((const cWolf *)a_Monster)->GetOwner());
|
2014-02-02 04:56:55 -05:00
|
|
|
m_Writer.AddByte("Sitting", (((const cWolf *)a_Monster)->IsSitting() ? 1 : 0));
|
2014-02-02 05:28:42 -05:00
|
|
|
m_Writer.AddByte("Angry", (((const cWolf *)a_Monster)->IsAngry() ? 1 : 0));
|
2014-02-01 11:16:42 -05:00
|
|
|
m_Writer.AddInt("CollarColor", ((const cWolf *)a_Monster)->GetCollarColor());
|
2013-12-25 11:07:52 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case cMonster::mtZombie:
|
|
|
|
{
|
|
|
|
m_Writer.AddByte("IsVillager", (((const cZombie *)a_Monster)->IsVillagerZombie() ? 1 : 0));
|
|
|
|
m_Writer.AddByte("IsBaby", (((const cZombie *)a_Monster)->IsBaby() ? 1 : 0));
|
|
|
|
m_Writer.AddByte("IsConverting", (((const cZombie *)a_Monster)->IsConverting() ? 1 : 0));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_Writer.EndCompound();
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::AddPickupEntity(cPickup * a_Pickup)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
|
|
|
AddBasicEntity(a_Pickup, "Item");
|
|
|
|
AddItem(a_Pickup->GetItem(), -1, "Item");
|
|
|
|
m_Writer.AddShort("Health", a_Pickup->GetHealth());
|
|
|
|
m_Writer.AddShort("Age", a_Pickup->GetAge());
|
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-08-22 16:31:38 -04:00
|
|
|
void cNBTChunkSerializer::AddProjectileEntity(cProjectileEntity * a_Projectile)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
|
|
|
AddBasicEntity(a_Projectile, a_Projectile->GetMCAClassName());
|
|
|
|
Vector3d Pos = a_Projectile->GetPosition();
|
|
|
|
m_Writer.AddShort("xTile", (Int16)floor(Pos.x));
|
|
|
|
m_Writer.AddShort("yTile", (Int16)floor(Pos.y));
|
|
|
|
m_Writer.AddShort("zTile", (Int16)floor(Pos.z));
|
2013-09-07 15:26:17 -04:00
|
|
|
m_Writer.AddShort("inTile", 0); // TODO: Query the block type
|
2013-08-22 16:31:38 -04:00
|
|
|
m_Writer.AddShort("shake", 0); // TODO: Any shake?
|
|
|
|
m_Writer.AddByte ("inGround", a_Projectile->IsInGround() ? 1 : 0);
|
|
|
|
|
|
|
|
switch (a_Projectile->GetProjectileKind())
|
|
|
|
{
|
|
|
|
case cProjectileEntity::pkArrow:
|
|
|
|
{
|
|
|
|
m_Writer.AddByte("inData", 0); // TODO: Query the block meta (is it needed?)
|
|
|
|
m_Writer.AddByte("pickup", ((cArrowEntity *)a_Projectile)->GetPickupState());
|
|
|
|
m_Writer.AddDouble("damage", ((cArrowEntity *)a_Projectile)->GetDamageCoeff());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case cProjectileEntity::pkGhastFireball:
|
|
|
|
{
|
|
|
|
m_Writer.AddInt("ExplosionPower", 1);
|
|
|
|
// fall-through:
|
|
|
|
}
|
|
|
|
case cProjectileEntity::pkFireCharge:
|
|
|
|
case cProjectileEntity::pkWitherSkull:
|
2013-09-08 12:36:26 -04:00
|
|
|
case cProjectileEntity::pkEnderPearl:
|
2013-08-22 16:31:38 -04:00
|
|
|
{
|
|
|
|
m_Writer.BeginList("Motion", TAG_Double);
|
|
|
|
m_Writer.AddDouble("", a_Projectile->GetSpeedX());
|
|
|
|
m_Writer.AddDouble("", a_Projectile->GetSpeedY());
|
|
|
|
m_Writer.AddDouble("", a_Projectile->GetSpeedZ());
|
|
|
|
m_Writer.EndList();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
ASSERT(!"Unsaved projectile entity!");
|
|
|
|
}
|
|
|
|
} // switch (ProjectileKind)
|
|
|
|
cEntity * Creator = a_Projectile->GetCreator();
|
|
|
|
if (Creator != NULL)
|
|
|
|
{
|
|
|
|
if (Creator->GetEntityType() == cEntity::etPlayer)
|
|
|
|
{
|
|
|
|
m_Writer.AddString("ownerName", ((cPlayer *)Creator)->GetName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-08 04:25:46 -05:00
|
|
|
void cNBTChunkSerializer::AddTNTEntity(cTNTEntity * a_TNT)
|
|
|
|
{
|
|
|
|
m_Writer.BeginCompound("");
|
|
|
|
AddBasicEntity(a_TNT, "PrimedTnt");
|
2014-03-08 06:24:33 -05:00
|
|
|
m_Writer.AddByte("Fuse", (unsigned char)a_TNT->GetFuseTicks());
|
2014-03-08 04:25:46 -05:00
|
|
|
m_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
void cNBTChunkSerializer::AddMinecartChestContents(cMinecartWithChest * a_Minecart)
|
|
|
|
{
|
|
|
|
m_Writer.BeginList("Items", TAG_Compound);
|
|
|
|
for (int i = 0; i < cMinecartWithChest::NumSlots; i++)
|
|
|
|
{
|
|
|
|
const cItem & Item = a_Minecart->GetSlot(i);
|
|
|
|
if (Item.IsEmpty())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
AddItem(Item, i);
|
|
|
|
}
|
|
|
|
m_Writer.EndList();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cNBTChunkSerializer::LightIsValid(bool a_IsLightValid)
|
|
|
|
{
|
|
|
|
m_IsLightValid = a_IsLightValid;
|
|
|
|
return a_IsLightValid; // We want lighting only if it's valid, otherwise don't bother
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::BiomeData(const cChunkDef::BiomeMap * a_BiomeMap)
|
|
|
|
{
|
|
|
|
memcpy(m_Biomes, a_BiomeMap, sizeof(m_Biomes));
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(m_Biomes); i++)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
if ((*a_BiomeMap)[i] < 255)
|
|
|
|
{
|
|
|
|
// Normal MC biome, copy as-is:
|
|
|
|
m_VanillaBiomes[i] = (unsigned char)((*a_BiomeMap)[i]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// TODO: MCS-specific biome, need to map to some basic MC biome:
|
|
|
|
ASSERT(!"Unimplemented MCS-specific biome");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} // for i - m_BiomeMap[]
|
|
|
|
m_BiomesAreValid = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::Entity(cEntity * a_Entity)
|
|
|
|
{
|
|
|
|
// Add entity into NBT:
|
|
|
|
if (m_IsTagOpen)
|
|
|
|
{
|
|
|
|
if (!m_HasHadEntity)
|
|
|
|
{
|
|
|
|
m_Writer.EndList();
|
|
|
|
m_Writer.BeginList("Entities", TAG_Compound);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Writer.BeginList("Entities", TAG_Compound);
|
|
|
|
}
|
|
|
|
m_IsTagOpen = true;
|
|
|
|
m_HasHadEntity = true;
|
|
|
|
|
|
|
|
switch (a_Entity->GetEntityType())
|
|
|
|
{
|
2013-09-07 19:14:57 -04:00
|
|
|
case cEntity::etBoat: AddBoatEntity ((cBoat *) a_Entity); break;
|
2013-08-22 16:31:38 -04:00
|
|
|
case cEntity::etFallingBlock: AddFallingBlockEntity((cFallingBlock *) a_Entity); break;
|
|
|
|
case cEntity::etMinecart: AddMinecartEntity ((cMinecart *) a_Entity); break;
|
|
|
|
case cEntity::etMonster: AddMonsterEntity ((cMonster *) a_Entity); break;
|
|
|
|
case cEntity::etPickup: AddPickupEntity ((cPickup *) a_Entity); break;
|
|
|
|
case cEntity::etProjectile: AddProjectileEntity ((cProjectileEntity *)a_Entity); break;
|
2014-03-08 04:25:46 -05:00
|
|
|
case cEntity::etTNT: AddTNTEntity ((cTNTEntity *) a_Entity); break;
|
2013-12-25 11:07:52 -05:00
|
|
|
case cEntity::etExpOrb: /* TODO */ break;
|
2014-02-17 18:00:03 -05:00
|
|
|
case cEntity::etItemFrame: /* TODO */ break;
|
2014-02-17 19:16:03 -05:00
|
|
|
case cEntity::etPainting: /* TODO */ break;
|
2013-07-29 07:13:03 -04:00
|
|
|
case cEntity::etPlayer: return; // Players aren't saved into the world
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
ASSERT(!"Unhandled entity type is being saved");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cNBTChunkSerializer::BlockEntity(cBlockEntity * a_Entity)
|
|
|
|
{
|
|
|
|
if (m_IsTagOpen)
|
|
|
|
{
|
|
|
|
if (!m_HasHadBlockEntity)
|
|
|
|
{
|
|
|
|
m_Writer.EndList();
|
|
|
|
m_Writer.BeginList("TileEntities", TAG_Compound);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Writer.BeginList("TileEntities", TAG_Compound);
|
|
|
|
}
|
|
|
|
m_IsTagOpen = true;
|
2014-01-23 07:57:04 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
// Add tile-entity into NBT:
|
|
|
|
switch (a_Entity->GetBlockType())
|
|
|
|
{
|
2014-01-23 07:57:04 -05:00
|
|
|
case E_BLOCK_CHEST: AddChestEntity ((cChestEntity *) a_Entity); break;
|
|
|
|
case E_BLOCK_DISPENSER: AddDispenserEntity ((cDispenserEntity *) a_Entity); break;
|
|
|
|
case E_BLOCK_DROPPER: AddDropperEntity ((cDropperEntity *) a_Entity); break;
|
2014-03-06 19:30:34 -05:00
|
|
|
case E_BLOCK_FLOWER_POT: AddFlowerPotEntity ((cFlowerPotEntity *) a_Entity); break;
|
2014-01-23 07:57:04 -05:00
|
|
|
case E_BLOCK_FURNACE: AddFurnaceEntity ((cFurnaceEntity *) a_Entity); break;
|
|
|
|
case E_BLOCK_HOPPER: AddHopperEntity ((cHopperEntity *) a_Entity); break;
|
2013-07-29 07:13:03 -04:00
|
|
|
case E_BLOCK_SIGN_POST:
|
2014-01-23 07:57:04 -05:00
|
|
|
case E_BLOCK_WALLSIGN: AddSignEntity ((cSignEntity *) a_Entity); break;
|
2014-02-19 08:45:09 -05:00
|
|
|
case E_BLOCK_HEAD: AddMobHeadEntity ((cMobHeadEntity *) a_Entity); break;
|
2014-01-23 07:57:04 -05:00
|
|
|
case E_BLOCK_NOTE_BLOCK: AddNoteEntity ((cNoteEntity *) a_Entity); break;
|
|
|
|
case E_BLOCK_JUKEBOX: AddJukeboxEntity ((cJukeboxEntity *) a_Entity); break;
|
2014-01-18 08:40:47 -05:00
|
|
|
case E_BLOCK_COMMAND_BLOCK: AddCommandBlockEntity((cCommandBlockEntity *) a_Entity); break;
|
2014-01-23 07:57:04 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
ASSERT(!"Unhandled block entity saved into Anvil");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_HasHadBlockEntity = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|