use of net.minecraft.block.BlockIce in project DynamicSurroundings by OreCruncher.
the class FootstepsRegistry method seedMap.
private void seedMap() {
// Iterate through the blockmap looking for known pattern types.
// Though they probably should all be registered with Forge
// dictionary it's not a requirement.
final Iterator<Block> itr = Block.REGISTRY.iterator();
while (itr.hasNext()) {
final Block block = itr.next();
final String blockName = MCHelper.nameOf(block);
if (block instanceof BlockCrops) {
final BlockCrops crop = (BlockCrops) block;
if (crop.getMaxAge() == 3) {
registerBlocks("#beets", blockName);
} else if (blockName.equals("minecraft:wheat")) {
registerBlocks("#wheat", blockName);
} else if (crop.getMaxAge() == 7) {
registerBlocks("#crop", blockName);
}
} else if (block instanceof BlockSapling) {
registerBlocks("#sapling", blockName);
} else if (block instanceof BlockReed) {
registerBlocks("#reed", blockName);
} else if (block instanceof BlockFence) {
registerBlocks("#fence", blockName);
} else if (block instanceof BlockFlower || block instanceof BlockMushroom) {
registerBlocks("NOT_EMITTER", blockName);
} else if (block instanceof BlockLog || block instanceof BlockPlanks) {
registerBlocks("wood", blockName);
} else if (block instanceof BlockDoor) {
registerBlocks("bluntwood", blockName);
} else if (block instanceof BlockLeaves) {
registerBlocks("leaves", blockName);
} else if (block instanceof BlockOre) {
registerBlocks("ore", blockName);
} else if (block instanceof BlockIce) {
registerBlocks("ice", blockName);
}
}
}
use of net.minecraft.block.BlockIce in project Cavern2 by kegare.
the class RecipeChargeIceEquipment method matches.
@Override
public boolean matches(InventoryCrafting crafting, World world) {
resultItem = ItemStack.EMPTY;
if (!(crafting.getStackInRowAndColumn(1, 1).getItem() instanceof IIceEquipment)) {
return false;
}
int ice = 0;
for (int row = 0; row < 3; ++row) {
for (int column = 0; column < 3; ++column) {
if (row == 1 && column == 1) {
continue;
}
ItemStack stack = crafting.getStackInRowAndColumn(row, column);
if (!stack.isEmpty()) {
Block block = Block.getBlockFromItem(stack.getItem());
if (block == null) {
continue;
}
if (block instanceof BlockIce || block instanceof BlockPackedIce) {
if (row != 1 && column == 1 || row == 1 && column != 1) {
++ice;
}
} else if (row != 1 && column != 1) {
return false;
}
}
}
}
if (ice >= 4) {
resultItem = getResult(crafting);
return true;
}
return false;
}
use of net.minecraft.block.BlockIce in project Cavern2 by kegare.
the class RecipeChargeIceEquipment method getResult.
protected ItemStack getResult(InventoryCrafting crafting) {
ItemStack result = crafting.getStackInRowAndColumn(1, 1).copy();
int ice = 0;
int packed = 0;
for (int row = 0; row < 3; ++row) {
for (int column = 0; column < 3; ++column) {
if (row == 1 && column == 1) {
continue;
}
ItemStack stack = crafting.getStackInRowAndColumn(row, column);
if (!stack.isEmpty()) {
Block block = Block.getBlockFromItem(stack.getItem());
if (block == null) {
continue;
}
if (block instanceof BlockPackedIce) {
++packed;
} else if (block instanceof BlockIce) {
++ice;
}
}
}
}
if (result.isItemStackDamageable() && result.isItemDamaged()) {
result.setItemDamage(0);
} else {
result = ((IIceEquipment) result.getItem()).addCharge(result, ice + packed * 9);
result.getTagCompound().setBoolean("AfterIceCharge", true);
}
return result;
}
Aggregations