Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class EntityClone extends EntityLiving implements IEntityAdditionalSpawnData, IInventory {
- public boolean inventoryChanged;
- private ItemStack itemStack;
- public Container c_inventoryContainer;
- public Container c_openContainer;
- protected float[] equipmentDropChances = new float[5];
- private final ItemStack[] previousEquipment = new ItemStack[5];
- public ItemStack[] c_equipmentStack = new ItemStack[5];
- public ItemStack[] c_inventoryStack = new ItemStack[36];
- public ItemStack[] c_armourStack = new ItemStack[4];
- public InventoryPlayer c_inventory = new InventoryPlayer(null);
- private NBTTagList c_inventoryNBT;
- private GameProfile p_profile;
- public GameProfile c_profile;
- public static GameProfile r_profile;
- private NBTTagCompound m_playerNBT;
- private NBTTagList p_inventoryNBT;
- private float setHealth;
- public EntityClone(World world) {
- super(world);
- }
- public EntityClone(World world, EntityPlayer player) {
- super(world);
- // this.c_inventoryContainer = new ContainerPlayer(this.c_inventory, !world.isRemote, this);
- this.c_openContainer = this.c_inventoryContainer;
- this.p_profile = player.getGameProfile();
- this.p_profile = func_152109_d(this.p_profile);
- this.c_profile = this.p_profile;
- this.setHealth(player.getHealth());
- setPosition(player.posX, player.posY, player.posZ);
- NBTTagCompound comp = new NBTTagCompound();
- player.writeToNBT(comp);
- m_playerNBT = comp;
- NBTTagList invnbt = comp.getTagList("Inventory", Constants.NBT.TAG_COMPOUND);
- this.p_inventoryNBT = invnbt;
- ItemStack item;
- this.c_equipmentStack[0] = player.getCurrentEquippedItem();
- for (int i = 1; i < 5; i++) {
- item = player.getEquipmentInSlot(i);
- this.c_equipmentStack[i] = player.getEquipmentInSlot(i);
- }
- for (int j = 0; j < this.equipmentDropChances.length; ++j) {
- this.equipmentDropChances[j] = 0.0F;
- }
- // this.c_inventory.copyInventory(player.inventory);
- NBTTagList nbttaglist1 = comp.getTagList("Inventory", 10);
- this.c_inventory.readFromNBT(nbttaglist1);
- NBTTagList comp2 = new NBTTagList();
- this.writeToNBT(comp2);
- c_inventoryNBT = comp2;
- if (comp.hasKey("Inventory", 9)) {
- nbttaglist1 = comp.getTagList("Inventory", 10);
- for (int i = 0; i < nbttaglist1.tagCount(); ++i) {
- NBTTagCompound nbttagcompound = nbttaglist1.getCompoundTagAt(i);
- int j = nbttagcompound.getByte("Slot") & 255;
- ItemStack itemstack = ItemStack.loadItemStackFromNBT(nbttagcompound);
- if (itemstack != null) {
- if (j >= 0 && j < this.c_inventoryStack.length) {
- this.c_inventoryStack[j] = itemstack;
- }
- if (j >= 100 && j < this.c_armourStack.length + 100) {
- this.c_armourStack[j - 100] = itemstack;
- }
- }
- }
- }
- }
- @Override
- public void readEntityFromNBT(NBTTagCompound nbt) {
- super.readEntityFromNBT(nbt);
- NBTTagList nbttaglist = nbt.getTagList("Inventory", 10);
- this.c_inventory.readFromNBT(nbttaglist);
- if (nbt.hasKey("Inventory", 9)) {
- nbttaglist = nbt.getTagList("Inventory", 10);
- for (int i = 0; i < nbttaglist.tagCount(); ++i) {
- NBTTagCompound nbttagcompound = nbttaglist.getCompoundTagAt(i);
- int j = nbttagcompound.getByte("Slot") & 255;
- ItemStack itemstack = ItemStack.loadItemStackFromNBT(nbttagcompound);
- if (itemstack != null) {
- if (j >= 0 && j < this.c_inventoryStack.length) {
- this.c_inventoryStack[j] = itemstack;
- }
- if (j >= 100 && j < this.c_armourStack.length + 100) {
- this.c_armourStack[j - 100] = itemstack;
- }
- }
- }
- }
- if (nbt.hasKey("Owner", 10)) {
- this.c_profile = NBTUtil.func_152459_a(nbt.getCompoundTag("Owner"));
- }
- this.func_152109_d(this.c_profile);
- NBTTagList nbttaglist1;
- int i;
- if (nbt.hasKey("Equipment", 9)) {
- nbttaglist1 = nbt.getTagList("Equipment", 10);
- for (i = 0; i < this.c_equipmentStack.length; ++i) {
- this.c_equipmentStack[i] = ItemStack.loadItemStackFromNBT(nbttaglist1.getCompoundTagAt(i));
- }
- }
- if (nbt.hasKey("DropChances", 9)) {
- nbttaglist = nbt.getTagList("DropChances", 5);
- for (i = 0; i < nbttaglist.tagCount(); ++i) {
- this.equipmentDropChances[i] = nbttaglist.func_150308_e(i);
- }
- }
- }
- @Override
- public void writeEntityToNBT(NBTTagCompound nbt) {
- super.writeEntityToNBT(nbt);
- nbt.setTag("Inventory", this.c_inventory.writeToNBT(new NBTTagList()));
- NBTTagList nbttaglist = new NBTTagList();
- NBTTagCompound nbttagcompound1;
- for (int i = 0; i < this.c_equipmentStack.length; ++i) {
- nbttagcompound1 = new NBTTagCompound();
- if (this.c_equipmentStack[i] != null) {
- this.c_equipmentStack[i].writeToNBT(nbttagcompound1);
- }
- nbttaglist.appendTag(nbttagcompound1);
- }
- nbt.setTag("Equipment", nbttaglist);
- NBTTagList nbttaglist1 = new NBTTagList();
- for (int j = 0; j < this.equipmentDropChances.length; ++j) {
- nbttaglist1.appendTag(new NBTTagFloat(this.equipmentDropChances[j]));
- }
- nbt.setTag("DropChances", nbttaglist1);
- if (this.p_profile != null) {
- NBTTagCompound nbt2 = new NBTTagCompound();
- NBTUtil.func_152460_a(nbt2, this.p_profile);
- nbt.setTag("Owner", nbt2);
- } else {
- NBTTagCompound nbt2 = new NBTTagCompound();
- NBTUtil.func_152460_a(nbt2, this.c_profile);
- nbt.setTag("Owner", nbt2);
- }
- }
- public NBTTagList writeToNBT(NBTTagList p_70442_1_) {
- int i;
- NBTTagCompound nbttagcompound;
- for (i = 0; i < this.c_inventoryStack.length; ++i) {
- if (this.c_inventoryStack[i] != null) {
- nbttagcompound = new NBTTagCompound();
- nbttagcompound.setByte("Slot", (byte) i);
- this.c_inventoryStack[i].writeToNBT(nbttagcompound);
- p_70442_1_.appendTag(nbttagcompound);
- }
- }
- for (i = 0; i < this.c_armourStack.length; ++i) {
- if (this.c_armourStack[i] != null) {
- nbttagcompound = new NBTTagCompound();
- nbttagcompound.setByte("Slot", (byte) (i + 100));
- this.c_armourStack[i].writeToNBT(nbttagcompound);
- p_70442_1_.appendTag(nbttagcompound);
- }
- }
- return p_70442_1_;
- }
- protected String getHurtSound() {
- return "game.player.hurt";
- }
- protected String getDeathSound() {
- return "game.player.die";
- }
- public void onDeath(DamageSource p_70645_1_) {
- if (ForgeHooks.onLivingDeath(this, p_70645_1_))
- return;
- super.onDeath(p_70645_1_);
- this.setSize(0.2F, 0.2F);
- this.setPosition(this.posX, this.posY, this.posZ);
- this.motionY = 0.10000000149011612D;
- this.dropAllItems();
- if (p_70645_1_ != null) {
- this.motionX = (double) (-MathHelper.cos((this.attackedAtYaw + this.rotationYaw) * (float) Math.PI / 180.0F) * 0.1F);
- this.motionZ = (double) (-MathHelper.sin((this.attackedAtYaw + this.rotationYaw) * (float) Math.PI / 180.0F) * 0.1F);
- } else {
- this.motionX = this.motionZ = 0.0D;
- }
- this.yOffset = 0.1F;
- }
- public void dropAllItems() {
- int i;
- for (i = 0; i < this.c_inventoryStack.length; ++i) {
- if (this.c_inventoryStack[i] != null) {
- this.func_146097_a(this.c_inventoryStack[i], true, false);
- this.c_inventoryStack[i] = null;
- }
- }
- for (i = 1; i < this.c_armourStack.length; ++i) {
- if (this.c_armourStack[i] != null) {
- this.func_146097_a(this.c_armourStack[i], true, false);
- this.c_armourStack[i] = null;
- }
- }
- }
- public EntityItem func_146097_a(ItemStack p_146097_1_, boolean p_146097_2_, boolean p_146097_3_) {
- if (p_146097_1_ == null) {
- return null;
- } else if (p_146097_1_.stackSize == 0) {
- return null;
- } else {
- EntityItem entityitem = new EntityItem(this.worldObj, this.posX, this.posY - 0.30000001192092896D + (double) this.getEyeHeight(), this.posZ,
- p_146097_1_);
- entityitem.delayBeforeCanPickup = 40;
- if (p_146097_3_) {
- entityitem.func_145799_b(this.getCommandSenderName());
- }
- float f = 0.1F;
- float f1;
- if (p_146097_2_) {
- f1 = this.rand.nextFloat() * 0.5F;
- float f2 = this.rand.nextFloat() * (float) Math.PI * 2.0F;
- entityitem.motionX = (double) (-MathHelper.sin(f2) * f1);
- entityitem.motionZ = (double) (MathHelper.cos(f2) * f1);
- entityitem.motionY = 0.20000000298023224D;
- } else {
- f = 0.3F;
- entityitem.motionX = (double) (-MathHelper.sin(this.rotationYaw / 180.0F * (float) Math.PI)
- * MathHelper.cos(this.rotationPitch / 180.0F * (float) Math.PI) * f);
- entityitem.motionZ = (double) (MathHelper.cos(this.rotationYaw / 180.0F * (float) Math.PI)
- * MathHelper.cos(this.rotationPitch / 180.0F * (float) Math.PI) * f);
- entityitem.motionY = (double) (-MathHelper.sin(this.rotationPitch / 180.0F * (float) Math.PI) * f + 0.1F);
- f = 0.02F;
- f1 = this.rand.nextFloat() * (float) Math.PI * 2.0F;
- f *= this.rand.nextFloat();
- entityitem.motionX += Math.cos((double) f1) * (double) f;
- entityitem.motionY += (double) ((this.rand.nextFloat() - this.rand.nextFloat()) * 0.1F);
- entityitem.motionZ += Math.sin((double) f1) * (double) f;
- }
- this.joinEntityItemWithWorld(entityitem);
- this.addStat(StatList.dropStat, 1);
- return entityitem;
- }
- }
- public void joinEntityItemWithWorld(EntityItem p_71012_1_) {
- if (captureDrops) {
- capturedDrops.add(p_71012_1_);
- return;
- }
- this.worldObj.spawnEntityInWorld(p_71012_1_);
- }
- public void addStat(StatBase p_71064_1_, int p_71064_2_) {
- }
- // DOESNT' WORK YET
- @Override
- public boolean canPickUpLoot() {
- return false;
- }
- @Override
- public void setEquipmentDropChance(final int item, final float value) {
- this.equipmentDropChances[item] = 0F;
- }
- @Override
- protected boolean interact(final EntityPlayer player) {
- player.displayGUIChest(this);
- return true;
- }
- // MAYBE PUT CLONE-OWNER SKULL HERE?
- protected Item getDropItem() {
- return null;
- }
- protected boolean canDespawn() {
- return false;
- }
- @Override
- public ItemStack getHeldItem() {
- return c_equipmentStack[0];
- }
- @Override
- public ItemStack func_130225_q(int p_130225_1_) {
- return this.c_equipmentStack[p_130225_1_ + 1];
- }
- @Override
- public void readSpawnData(ByteBuf additionalData) {
- NBTTagCompound compound;
- compound = ByteBufUtils.readTag(additionalData);
- this.c_profile = NBTUtil.func_152459_a(compound.getCompoundTag("Owner"));
- this.func_152109_d(this.c_profile);
- this.c_profile = NBTUtil.func_152459_a(compound.getCompoundTag("Inventory"));
- }
- @Override
- public void writeSpawnData(ByteBuf buffer) {
- NBTTagCompound compound = new NBTTagCompound();
- NBTTagCompound cmp = new NBTTagCompound();
- NBTUtil.func_152460_a(cmp, this.c_profile);
- compound.setTag("Owner", cmp);
- compound.setTag("Inventory", cmp);
- ByteBufUtils.writeTag(buffer, compound);
- }
- private GameProfile func_152109_d(GameProfile profile) {
- // System.out.println("###############################################################################################");
- if (profile != null && !StringUtils.isNullOrEmpty(profile.getName())) {
- if (!profile.isComplete() || !profile.getProperties().containsKey("textures")) {
- GameProfile gameprofile = MinecraftServer.getServer().func_152358_ax().func_152655_a(profile.getName());
- if (gameprofile != null) {
- Property property = (Property) Iterables.getFirst(gameprofile.getProperties().get("textures"), (Object) null);
- if (property == null) {
- gameprofile = MinecraftServer.getServer().func_147130_as().fillProfileProperties(gameprofile, true);
- }
- profile = gameprofile;
- }
- }
- }
- return profile;
- }
- @Override
- public ItemStack getEquipmentInSlot(int p_71124_1_) {
- return this.c_equipmentStack[p_71124_1_];
- }
- @Override
- public void setCurrentItemOrArmor(int p_70062_1_, ItemStack p_70062_2_) {
- this.c_equipmentStack[p_70062_1_] = p_70062_2_;
- }
- @Override
- public ItemStack[] getLastActiveItems() {
- return this.c_equipmentStack;
- }
- @Override
- public void moveEntityWithHeading(float p_70612_1_, float p_70612_2_) {
- double d0;
- // if (this.isInWater() && (!(this instanceof EntityPlayer) || !((EntityPlayer)this).capabilities.isFlying))
- if (this.isInWater()) {
- d0 = this.posY;
- this.moveFlying(p_70612_1_, p_70612_2_, this.isAIEnabled() ? 0.04F : 0.02F);
- this.moveEntity(this.motionX, this.motionY, this.motionZ);
- this.motionX *= 0.800000011920929D;
- this.motionY *= 0.800000011920929D;
- this.motionZ *= 0.800000011920929D;
- this.motionY -= 0.02D;
- if (this.isCollidedHorizontally && this.isOffsetPositionInLiquid(this.motionX, this.motionY + 0.6000000238418579D - this.posY + d0, this.motionZ)) {
- this.motionY = 0.30000001192092896D;
- }
- }
- // else if (this.handleLavaMovement() && (!(this instanceof EntityPlayer) || !((EntityPlayer)this).capabilities.isFlying))
- else if (this.handleLavaMovement()) {
- d0 = this.posY;
- this.moveFlying(p_70612_1_, p_70612_2_, 0.02F);
- this.moveEntity(this.motionX, this.motionY, this.motionZ);
- this.motionX *= 0.5D;
- this.motionY *= 0.5D;
- this.motionZ *= 0.5D;
- this.motionY -= 0.02D;
- if (this.isCollidedHorizontally && this.isOffsetPositionInLiquid(this.motionX, this.motionY + 0.6000000238418579D - this.posY + d0, this.motionZ)) {
- this.motionY = 0.30000001192092896D;
- }
- } else {
- float f2 = 0.91F;
- if (this.onGround) {
- f2 = this.worldObj.getBlock(MathHelper.floor_double(this.posX), MathHelper.floor_double(this.boundingBox.minY) - 1,
- MathHelper.floor_double(this.posZ)).slipperiness * 0.91F;
- }
- float f3 = 0.16277136F / (f2 * f2 * f2);
- float f4;
- if (this.onGround) {
- f4 = this.getAIMoveSpeed() * f3;
- } else {
- f4 = this.jumpMovementFactor;
- }
- this.moveFlying(p_70612_1_, p_70612_2_, f4);
- f2 = 0.91F;
- if (this.onGround) {
- f2 = this.worldObj.getBlock(MathHelper.floor_double(this.posX), MathHelper.floor_double(this.boundingBox.minY) - 1,
- MathHelper.floor_double(this.posZ)).slipperiness * 0.91F;
- }
- if (this.isOnLadder()) {
- float f5 = 0.15F;
- if (this.motionX < (double) (-f5)) {
- this.motionX = (double) (-f5);
- }
- if (this.motionX > (double) f5) {
- this.motionX = (double) f5;
- }
- if (this.motionZ < (double) (-f5)) {
- this.motionZ = (double) (-f5);
- }
- if (this.motionZ > (double) f5) {
- this.motionZ = (double) f5;
- }
- this.fallDistance = 0.0F;
- if (this.motionY < -0.15D) {
- this.motionY = -0.15D;
- }
- // boolean flag = this.isSneaking() && this instanceof EntityPlayer;
- boolean flag = this.isSneaking();
- if (flag && this.motionY < 0.0D) {
- this.motionY = 0.0D;
- }
- }
- this.moveEntity(this.motionX, this.motionY, this.motionZ);
- if (this.isCollidedHorizontally && this.isOnLadder()) {
- this.motionY = 0.2D;
- }
- if (this.worldObj.isRemote && (!this.worldObj.blockExists((int) this.posX, 0, (int) this.posZ)
- || !this.worldObj.getChunkFromBlockCoords((int) this.posX, (int) this.posZ).isChunkLoaded)) {
- if (this.posY > 0.0D) {
- this.motionY = -0.1D;
- } else {
- this.motionY = 0.0D;
- }
- } else {
- this.motionY -= 0.08D;
- }
- this.motionY *= 0.9800000190734863D;
- this.motionX *= (double) f2;
- this.motionZ *= (double) f2;
- }
- this.prevLimbSwingAmount = this.limbSwingAmount;
- d0 = this.posX - this.prevPosX;
- double d1 = this.posZ - this.prevPosZ;
- float f6 = MathHelper.sqrt_double(d0 * d0 + d1 * d1) * 4.0F;
- if (f6 > 1.0F) {
- f6 = 1.0F;
- }
- this.limbSwingAmount += (f6 - this.limbSwingAmount) * 0.4F;
- this.limbSwing += this.limbSwingAmount;
- }
- @Override
- public void onUpdate() {
- if (ForgeHooks.onLivingUpdate(this))
- return;
- super.onUpdate();
- if (!this.worldObj.isRemote) {
- int i = this.getArrowCountInEntity();
- if (i > 0) {
- if (this.arrowHitTimer <= 0) {
- this.arrowHitTimer = 20 * (30 - i);
- }
- --this.arrowHitTimer;
- if (this.arrowHitTimer <= 0) {
- this.setArrowCountInEntity(i - 1);
- }
- }
- for (int j = 0; j < 5; ++j) {
- // IS THIS CAUSING 1st SLOT TO BECOME CURRENT WEAPON?????
- ItemStack itemstack = this.previousEquipment[j];
- ItemStack itemstack1 = this.getEquipmentInSlot(j);
- if (!ItemStack.areItemStacksEqual(itemstack1, itemstack)) {
- ((WorldServer) this.worldObj).getEntityTracker().func_151247_a(this, new S04PacketEntityEquipment(this.getEntityId(), j, itemstack1));
- if (itemstack != null) {
- // TEMPORARILY DISABLED UNTIL INVENTORY IS ADDED TO CLONE
- // this.attributeMap.removeAttributeModifiers(itemstack.getAttributeModifiers());
- }
- if (itemstack1 != null) {
- // TEMPORARILY DISABLED UNTIL INVENTORY IS ADDED TO CLONE
- // this.attributeMap.applyAttributeModifiers(itemstack1.getAttributeModifiers());
- }
- this.previousEquipment[j] = itemstack1 == null ? null : itemstack1.copy();
- }
- }
- if (this.ticksExisted % 20 == 0) {
- this.func_110142_aN().func_94549_h();
- }
- }
- this.onLivingUpdate();
- double d0 = this.posX - this.prevPosX;
- double d1 = this.posZ - this.prevPosZ;
- float f = (float) (d0 * d0 + d1 * d1);
- float f1 = this.renderYawOffset;
- float f2 = 0.0F;
- this.field_70768_au = this.field_110154_aX;
- float f3 = 0.0F;
- if (f > 0.0025000002F) {
- f3 = 1.0F;
- f2 = (float) Math.sqrt((double) f) * 3.0F;
- f1 = (float) Math.atan2(d1, d0) * 180.0F / (float) Math.PI - 90.0F;
- }
- if (this.swingProgress > 0.0F) {
- f1 = this.rotationYaw;
- }
- if (!this.onGround) {
- f3 = 0.0F;
- }
- this.field_110154_aX += (f3 - this.field_110154_aX) * 0.3F;
- this.worldObj.theProfiler.startSection("headTurn");
- f2 = this.func_110146_f(f1, f2);
- this.worldObj.theProfiler.endSection();
- this.worldObj.theProfiler.startSection("rangeChecks");
- while (this.rotationYaw - this.prevRotationYaw < -180.0F) {
- this.prevRotationYaw -= 360.0F;
- }
- while (this.rotationYaw - this.prevRotationYaw >= 180.0F) {
- this.prevRotationYaw += 360.0F;
- }
- while (this.renderYawOffset - this.prevRenderYawOffset < -180.0F) {
- this.prevRenderYawOffset -= 360.0F;
- }
- while (this.renderYawOffset - this.prevRenderYawOffset >= 180.0F) {
- this.prevRenderYawOffset += 360.0F;
- }
- while (this.rotationPitch - this.prevRotationPitch < -180.0F) {
- this.prevRotationPitch -= 360.0F;
- }
- while (this.rotationPitch - this.prevRotationPitch >= 180.0F) {
- this.prevRotationPitch += 360.0F;
- }
- while (this.rotationYawHead - this.prevRotationYawHead < -180.0F) {
- this.prevRotationYawHead -= 360.0F;
- }
- while (this.rotationYawHead - this.prevRotationYawHead >= 180.0F) {
- this.prevRotationYawHead += 360.0F;
- }
- this.worldObj.theProfiler.endSection();
- this.field_70764_aw += f2;
- }
- @Override
- public void onLivingUpdate() {
- super.onLivingUpdate();
- }
- protected void playSound(String soundID) {
- if (!worldObj.isRemote) {
- worldObj.playSoundAtEntity(this, soundID, 0.5F, 0.4F);
- }
- }
- @Override
- public void openInventory() {
- playSound("mob.horse.leather");
- }
- @Override
- public void closeInventory() {
- playSound("mob.horse.leather");
- }
- public int getSizeInventory() {
- return this.c_inventoryStack.length + +4;
- }
- @Override
- public ItemStack getStackInSlot(int index) {
- ItemStack[] aitemstack = this.c_inventoryStack;
- if (index >= aitemstack.length) {
- index -= aitemstack.length;
- aitemstack = this.c_armourStack;
- }
- return aitemstack[index];
- }
- @Override
- public ItemStack decrStackSize(int index, int count) {
- ItemStack[] aitemstack = this.c_inventoryStack;
- if (index >= this.c_inventoryStack.length) {
- aitemstack = this.c_armourStack;
- index -= this.c_inventoryStack.length;
- }
- if (aitemstack[index] != null) {
- ItemStack itemstack;
- if (aitemstack[index].stackSize <= count) {
- itemstack = aitemstack[index];
- aitemstack[index] = null;
- return itemstack;
- } else {
- itemstack = aitemstack[index].splitStack(count);
- if (aitemstack[index].stackSize == 0) {
- aitemstack[index] = null;
- }
- return itemstack;
- }
- } else {
- return null;
- }
- }
- @Override
- public ItemStack getStackInSlotOnClosing(int index) {
- ItemStack[] aitemstack = this.c_inventoryStack;
- if (index >= this.c_inventoryStack.length) {
- aitemstack = this.c_armourStack;
- index -= this.c_inventoryStack.length;
- }
- if (aitemstack[index] != null) {
- ItemStack itemstack = aitemstack[index];
- aitemstack[index] = null;
- return itemstack;
- } else {
- return null;
- }
- }
- @Override
- public void setInventorySlotContents(int slot, ItemStack item) {
- ItemStack[] aitemstack = this.c_inventoryStack;
- if (slot >= aitemstack.length) {
- slot -= aitemstack.length;
- aitemstack = this.c_armourStack;
- }
- aitemstack[slot] = item;
- }
- @Override
- public String getInventoryName() {
- return "";
- }
- @Override
- public boolean hasCustomInventoryName() {
- return true;
- }
- @Override
- public int getInventoryStackLimit() {
- return 64;
- }
- @Override
- public void markDirty() {
- this.inventoryChanged = true;
- }
- @Override
- public boolean isUseableByPlayer(EntityPlayer player) {
- return player.getDistanceSq(this.posX, this.posY, this.posZ) <= 16.0;
- }
- @Override
- public boolean isItemValidForSlot(int index, ItemStack stack) {
- if (index < 5 && index > 0) {
- if (getArmorPosition(stack) != index) {
- return false;
- }
- }
- return true;
- }
- public void setItemStack(ItemStack p_70437_1_) {
- this.itemStack = p_70437_1_;
- }
- private int storeItemStack(ItemStack p_70432_1_) {
- for (int i = 0; i < this.c_inventoryStack.length; ++i) {
- if (this.c_inventoryStack[i] != null && this.c_inventoryStack[i].getItem() == p_70432_1_.getItem() && this.c_inventoryStack[i].isStackable()
- && this.c_inventoryStack[i].stackSize < this.c_inventoryStack[i].getMaxStackSize()
- && this.c_inventoryStack[i].stackSize < this.getInventoryStackLimit()
- && (!this.c_inventoryStack[i].getHasSubtypes() || this.c_inventoryStack[i].getItemDamage() == p_70432_1_.getItemDamage())
- && ItemStack.areItemStackTagsEqual(this.c_inventoryStack[i], p_70432_1_)) {
- return i;
- }
- }
- return -1;
- }
- private int storePartialItemStack(ItemStack p_70452_1_) {
- Item item = p_70452_1_.getItem();
- int i = p_70452_1_.stackSize;
- int j;
- if (p_70452_1_.getMaxStackSize() == 1) {
- j = this.getFirstEmptyStack();
- if (j < 0) {
- return i;
- } else {
- if (this.c_inventoryStack[j] == null) {
- this.c_inventoryStack[j] = ItemStack.copyItemStack(p_70452_1_);
- }
- return 0;
- }
- } else {
- j = this.storeItemStack(p_70452_1_);
- if (j < 0) {
- j = this.getFirstEmptyStack();
- }
- if (j < 0) {
- return i;
- } else {
- if (this.c_inventoryStack[j] == null) {
- this.c_inventoryStack[j] = new ItemStack(item, 0, p_70452_1_.getItemDamage());
- if (p_70452_1_.hasTagCompound()) {
- this.c_inventoryStack[j].setTagCompound((NBTTagCompound) p_70452_1_.getTagCompound().copy());
- }
- }
- int k = i;
- if (i > this.c_inventoryStack[j].getMaxStackSize() - this.c_inventoryStack[j].stackSize) {
- k = this.c_inventoryStack[j].getMaxStackSize() - this.c_inventoryStack[j].stackSize;
- }
- if (k > this.getInventoryStackLimit() - this.c_inventoryStack[j].stackSize) {
- k = this.getInventoryStackLimit() - this.c_inventoryStack[j].stackSize;
- }
- if (k == 0) {
- return i;
- } else {
- i -= k;
- this.c_inventoryStack[j].stackSize += k;
- this.c_inventoryStack[j].animationsToGo = 5;
- return i;
- }
- }
- }
- }
- public int getFirstEmptyStack() {
- for (int i = 0; i < this.c_inventoryStack.length; ++i) {
- if (this.c_inventoryStack[i] == null) {
- return i;
- }
- }
- return -1;
- }
- public ItemStack armorItemInSlot(int p_70440_1_)
- {
- return this.c_armourStack[p_70440_1_];
- }
- public boolean hasItemStack(ItemStack p_70431_1_)
- {
- int i;
- for (i = 0; i < this.c_armourStack.length; ++i)
- {
- if (this.c_armourStack[i] != null && this.c_armourStack[i].isItemEqual(p_70431_1_))
- {
- return true;
- }
- }
- for (i = 0; i < this.c_inventoryStack.length; ++i)
- {
- if (this.c_inventoryStack[i] != null && this.c_inventoryStack[i].isItemEqual(p_70431_1_))
- {
- return true;
- }
- }
- return false;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement