@Override protected void readSyncTag(NBTTagCompound NBT) { super.readSyncTag(NBT); jam = NBT.getInteger("jam"); jamColor = NBT.getInteger("jamc"); }
@Override protected void writeSyncTag(NBTTagCompound NBT) { super.writeSyncTag(NBT); NBT.setInteger("jam", jam); NBT.setInteger("jamc", jamColor); }
@Override public void writeToNBT(NBTTagCompound NBT) { super.writeToNBT(NBT); for (int i = 0; i < Enchantment.enchantmentsList.length; i++) { if (Enchantment.enchantmentsList[i] != null) { int lvl = this.getEnchantment(Enchantment.enchantmentsList[i]); if (lvl > 0) NBT.setInteger(Enchantment.enchantmentsList[i].getName(), lvl); } } }
@Override public void readFromNBT(NBTTagCompound NBT) { super.readFromNBT(NBT); enchantments = new HashMap<Enchantment, Integer>(); for (int i = 0; i < Enchantment.enchantmentsList.length; i++) { if (Enchantment.enchantmentsList[i] != null) { int lvl = NBT.getInteger(Enchantment.enchantmentsList[i].getName()); enchantments.put(Enchantment.enchantmentsList[i], lvl); } } }
@Override public void updateEntity(World world, int x, int y, int z, int meta) { super.updateTileEntity(); if (world.isRemote) return; this.getIOSidesDefault(world, x, y, z, meta); this.getPower(false); boolean flag1 = false; if (power >= MINPOWER && torque >= MINTORQUE) { int n = this.getNumberConsecutiveOperations(); for (int i = 0; i < n; i++) flag1 |= this.doOperation(world, x, y, z, n > 1); } else { dropProcessTime = 0; } if (flag1) this.markDirty(); }
@Override public void writeToNBT(NBTTagCompound NBT) { super.writeToNBT(NBT); for (int i = 0; i < Enchantment.enchantmentsList.length; i++) { if (Enchantment.enchantmentsList[i] != null) { int lvl = this.getEnchantment(Enchantment.enchantmentsList[i]); if (lvl > 0) NBT.setInteger(Enchantment.enchantmentsList[i].getName(), lvl); } } NBTTagList li = new NBTTagList(); NBT.setTag("extra", li); for (ItemStack is : overflow) { NBTTagCompound tag = new NBTTagCompound(); is.writeToNBT(tag); li.appendTag(tag); } }
@Override public void readFromNBT(NBTTagCompound NBT) { super.readFromNBT(NBT); enchantments = new HashMap<Enchantment, Integer>(); for (int i = 0; i < Enchantment.enchantmentsList.length; i++) { if (Enchantment.enchantmentsList[i] != null) { int lvl = NBT.getInteger(Enchantment.enchantmentsList[i].getName()); enchantments.put(Enchantment.enchantmentsList[i], lvl); } } NBTTagList li = NBT.getTagList("extra", NBTTypes.COMPOUND.ID); overflow.clear(); for (Object o : li.tagList) { NBTTagCompound tag = (NBTTagCompound) o; ItemStack is = ItemStack.loadItemStackFromNBT(tag); if (is != null) overflow.add(is); } }
@Override public void updateEntity(World world, int x, int y, int z, int meta) { super.updateTileEntity(); tickcount++; this.readPower(false); this.getIOSides(world, x, y, z, meta); if (power >= MINPOWER && torque >= MINTORQUE) { if (tickcount >= this.getOperationTime()) { this.process(world, x, y, z, meta); tickcount = 0; } int hx = x + step * facing.offsetX; int hy = y + step * facing.offsetY; int hz = z + step * facing.offsetZ; Block b = world.getBlock(hx, hy, hz); if (b != Blocks.air) { ReikaParticleHelper.CRITICAL.spawnAroundBlock(world, hx, hy, hz, 4); ReikaSoundHelper.playStepSound( world, hx, hy, hz, b, 0.5F + rand.nextFloat(), 0.5F * rand.nextFloat()); // ReikaSoundHelper.playSoundAtBlock(world, hx, hy, hz, "dig.stone", ); } } }
@Override public void updateEntity(World world, int x, int y, int z, int meta) { super.updateTileEntity(); tickcount++; tree.setWorld(world); treeCopy.setWorld(world); this.getIOSides(world, x, y, z, meta); this.getPower(false); if (power < MINPOWER || torque < MINTORQUE) { return; } if (this.isJammed()) return; if (world.isRemote) return; if (tree.isEmpty() && this.hasWood()) { tree.reset(); ModWoodList wood = ModWoodList.getModWood( world.getBlock(editx, edity, editz), world.getBlockMetadata(editx, edity, editz)); ReikaTreeHelper vanilla = ReikaTreeHelper.getTree( world.getBlock(editx, edity, editz), world.getBlockMetadata(editx, edity, editz)); for (int i = -1; i <= 1; i++) { for (int j = -1; j <= 1; j++) { tree.checkAndAddDyeTree(world, editx + i, edity, editz + j); if (tree.isEmpty() || !tree.isValidTree()) tree.clear(); } } if (tree.isEmpty()) { for (int i = -1; i <= 1; i++) { for (int j = -1; j <= 1; j++) { tree.checkAndAddRainbowTree(world, editx + i, edity, editz + j); if (tree.isEmpty() || !tree.isValidTree()) tree.clear(); } } } if (tree.isEmpty()) { if (wood == ModWoodList.SEQUOIA) { for (int i = -32; i < 255; i += 16) tree.addSequoia(world, editx, edity + i, editz, RotaryCraft.logger.shouldDebug()); } else if (wood == ModWoodList.DARKWOOD) { tree.addDarkForest( world, editx, edity, editz, editx - 8, editx + 8, editz - 8, editz + 8, RotaryCraft.logger.shouldDebug()); } else if (wood == ModWoodList.IRONWOOD) { for (int i = -2; i < 128; i += 16) tree.addIronwood(world, editx, edity + i, editz, RotaryCraft.logger.shouldDebug()); } else if (wood != null) { for (int i = -1; i <= 1; i++) { for (int j = -1; j <= 1; j++) { // tree.addGenerousTree(world, editx+i, edity, editz+j, 16); tree.setTree(wood); tree.addModTree(world, editx + i, edity, editz + j); } // ReikaJavaLibrary.pConsole(tree, Side.SERVER); } } else if (vanilla != null) { for (int i = -1; i <= 1; i++) { for (int j = -1; j <= 1; j++) { // tree.addGenerousTree(world, editx+i, edity, editz+j, 16); tree.setTree(vanilla); tree.addTree(world, editx + i, edity, editz + j); } } } } this.checkAndMatchInventory(); tree.sortBlocksByHeight(); tree.reverseBlockOrder(); tree.sort(inwardsComparator); tree.sort(leafPriority); treeCopy = (TreeReader) tree.copy(); } Block b = world.getBlock(x, y + 1, z); if (b != Blocks.air) { if (b.getMaterial() == Material.wood || b.getMaterial() == Material.leaves) { ReikaItemHelper.dropItems( world, dropx, y - 0.25, dropz, this.getDrops(world, x, y + 1, z, b, world.getBlockMetadata(x, y, z))); world.setBlockToAir(x, y + 1, z); } } // RotaryCraft.logger.debug(tree); if (tree.isEmpty()) return; if (tickcount < this.getOperationTime()) return; tickcount = 0; if (!tree.isValidTree()) { tree.reset(); tree.clear(); return; } for (int i = 0; i < this.getNumberConsecutiveOperations(); i++) { Coordinate c = tree.getNextAndMoveOn(); Block drop = c.getBlock(world); int dropmeta = c.getBlockMetadata(world); if (drop != Blocks.air) { Material mat = ReikaWorldHelper.getMaterial(world, c.xCoord, c.yCoord, c.zCoord); if (ConfigRegistry.INSTACUT.getState()) { // ReikaItemHelper.dropItems(world, dropx, y-0.25, dropz, dropBlocks.getDrops(world, // c.xCoord, c.yCoord, c.zCoord, dropmeta, 0)); this.cutBlock(world, x, y, z, c, mat); if (c.yCoord == edity) { Block idbelow = world.getBlock(c.xCoord, c.yCoord - 1, c.zCoord); Block root = TwilightForestHandler.BlockEntry.ROOT.getBlock(); if (ReikaPlantHelper.SAPLING.canPlantAt(world, c.xCoord, c.yCoord, c.zCoord)) { ItemStack plant = this.getPlantedSapling(); if (plant != null) { if (inv[0] != null && !this.hasEnchantment(Enchantment.infinity)) ReikaInventoryHelper.decrStack(0, inv); ReikaWorldHelper.setBlock(world, c.xCoord, c.yCoord, c.zCoord, plant); } } else if (tree.getTreeType() == ModWoodList.TIMEWOOD && (idbelow == root || idbelow == Blocks.air)) { ItemStack plant = this.getPlantedSapling(); if (plant != null) { if (inv[0] != null && !this.hasEnchantment(Enchantment.infinity)) ReikaInventoryHelper.decrStack(0, inv); world.setBlock(c.xCoord, c.yCoord - 1, c.zCoord, Blocks.dirt); ReikaWorldHelper.setBlock(world, c.xCoord, c.yCoord, c.zCoord, plant); } } } } else { boolean fall = BlockSand.func_149831_e(world, c.xCoord, c.yCoord - 1, c.zCoord); if (fall) { EntityFallingBlock e = new EntityFallingBlock( world, c.xCoord + 0.5, c.yCoord + 0.65, c.zCoord + 0.5, drop, dropmeta); e.field_145812_b = -5000; if (!world.isRemote) { world.spawnEntityInWorld(e); } c.setBlock(world, Blocks.air); } else { this.cutBlock(world, x, y, z, c, mat); if (c.yCoord == edity) { Block idbelow = world.getBlock(c.xCoord, c.yCoord - 1, c.zCoord); Block root = TwilightForestHandler.BlockEntry.ROOT.getBlock(); if (ReikaPlantHelper.SAPLING.canPlantAt(world, c.xCoord, c.yCoord, c.zCoord)) { ItemStack plant = this.getPlantedSapling(); if (plant != null) { if (inv[0] != null && !this.hasEnchantment(Enchantment.infinity)) ReikaInventoryHelper.decrStack(0, inv); ReikaWorldHelper.setBlock(world, c.xCoord, c.yCoord, c.zCoord, plant); } } else if (tree.getTreeType() == ModWoodList.TIMEWOOD && (idbelow == root || idbelow == Blocks.air)) { ItemStack plant = this.getPlantedSapling(); if (plant != null) { if (inv[0] != null && !this.hasEnchantment(Enchantment.infinity)) ReikaInventoryHelper.decrStack(0, inv); world.setBlock(c.xCoord, c.yCoord - 1, c.zCoord, Blocks.dirt); ReikaWorldHelper.setBlock(world, c.xCoord, c.yCoord, c.zCoord, plant); } } } } } } if (tree.isEmpty()) break; } }
@Override protected void writeSyncTag(NBTTagCompound NBT) { super.writeSyncTag(NBT); NBT.setShort("CookTime", (short) dropProcessTime); }
@Override protected void readSyncTag(NBTTagCompound NBT) { super.readSyncTag(NBT); dropProcessTime = NBT.getShort("CookTime"); }
@Override protected void readSyncTag(NBTTagCompound NBT) { super.readSyncTag(NBT); step = NBT.getInteger("step"); }
@Override protected void writeSyncTag(NBTTagCompound NBT) { super.writeSyncTag(NBT); NBT.setInteger("step", step); }
public void readPower(boolean doublesided) { if (!this.getReceptor(worldObj, xCoord, yCoord, zCoord, this.getBlockMetadata())) return; super.getPower(doublesided); power = (long) omega * (long) torque; }