Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
AEnterprise committed Sep 11, 2014
1 parent 35213b6 commit 0a716a9
Show file tree
Hide file tree
Showing 16 changed files with 145 additions and 145 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -27,7 +27,7 @@ group= "com.mod-buildcraft"
archivesBaseName = "buildcraft" // the name that all artifacts will use as a base. artifacts names follow this pattern: [baseName]-[appendix]-[version]-[classifier].[extension]

minecraft {
version = "1.7.10-10.13.0.1207" // McVersion-ForgeVersion this variable is later changed to contain only the MC version, while the apiVersion variable is used for the forge version. Yeah its stupid, and will be changed eentually.
version = "1.7.10-10.13.0.1179" // McVersion-ForgeVersion this variable is later changed to contain only the MC version, while the apiVersion variable is used for the forge version. Yeah its stupid, and will be changed eentually.

runDir = "run" // the directory for ForgeGradle to run Minecraft in

Expand Down
206 changes: 103 additions & 103 deletions common/buildcraft/builders/BlockArchitect.java
Expand Up @@ -32,108 +32,108 @@

public class BlockArchitect extends BlockMultiTexture {

public BlockArchitect() {
super(Material.iron, CreativeTabBuildCraft.BLOCKS);
}

@Override
public TileEntity createNewTileEntity(World world, int metadata) {
return new TileArchitect();
}

@Override
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer entityplayer, int par6, float par7,
float par8, float par9) {

// Drop through if the player is sneaking
if (entityplayer.isSneaking()) {
return false;
}

BlockInteractionEvent event = new BlockInteractionEvent(entityplayer, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}

Item equipped = entityplayer.getCurrentEquippedItem() != null ? entityplayer.getCurrentEquippedItem().getItem() : null;
if (equipped instanceof IToolWrench && ((IToolWrench) equipped).canWrench(entityplayer, x, y, z)) {

int meta = world.getBlockMetadata(x, y, z);

switch (ForgeDirection.values()[meta]) {
case WEST:
world.setBlockMetadataWithNotify(x, y, z, ForgeDirection.SOUTH.ordinal(), 0);
break;
case EAST:
world.setBlockMetadataWithNotify(x, y, z, ForgeDirection.NORTH.ordinal(), 0);
break;
case NORTH:
world.setBlockMetadataWithNotify(x, y, z, ForgeDirection.WEST.ordinal(), 0);
break;
case SOUTH:
default:
world.setBlockMetadataWithNotify(x, y, z, ForgeDirection.EAST.ordinal(), 0);
break;
}

world.markBlockForUpdate(x, y, z);
((IToolWrench) equipped).wrenchUsed(entityplayer, x, y, z);
return true;
} else if (equipped instanceof ItemConstructionMarker) {
ItemConstructionMarker.link(entityplayer.getCurrentEquippedItem(), world, x, y, z);

return true;
} else {

if (!world.isRemote) {
entityplayer.openGui(BuildCraftBuilders.instance, GuiIds.ARCHITECT_TABLE, world, x, y, z);
}
return true;

}
}

@Override
public void breakBlock(World world, int i, int j, int k, Block block, int par6) {
Utils.preDestroyBlock(world, i, j, k);

super.breakBlock(world, i, j, k, block, par6);
}

@Override
public void onBlockPlacedBy(World world, int i, int j, int k, EntityLivingBase entityliving, ItemStack stack) {
super.onBlockPlacedBy(world, i, j, k, entityliving, stack);

ForgeDirection orientation = Utils.get2dOrientation(entityliving);

world.setBlockMetadataWithNotify(i, j, k, orientation.getOpposite().ordinal(), 1);
}

@Override
public boolean renderAsNormalBlock() {
return false;
}

@Override
public boolean isSideSolid(IBlockAccess world, int x, int y, int z, ForgeDirection side) {
return false;
}

@Override
public int getLightValue(IBlockAccess world, int x, int y, int z) {
return 1;
}

/* MULTI TEXTURE */
@Override
public String getIconPrefix() {
return "architect_";
}

@Override
public int getFrontSide(IBlockAccess world, int x, int y, int z) {
return world.getBlockMetadata(x, y, z);
}
public BlockArchitect() {
super(Material.iron, CreativeTabBuildCraft.BLOCKS);
}

@Override
public TileEntity createNewTileEntity(World world, int metadata) {
return new TileArchitect();
}

@Override
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer entityplayer, int par6, float par7,
float par8, float par9) {

// Drop through if the player is sneaking
if (entityplayer.isSneaking()) {
return false;
}

BlockInteractionEvent event = new BlockInteractionEvent(entityplayer, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}

Item equipped = entityplayer.getCurrentEquippedItem() != null ? entityplayer.getCurrentEquippedItem().getItem() : null;
if (equipped instanceof IToolWrench && ((IToolWrench) equipped).canWrench(entityplayer, x, y, z)) {

int meta = world.getBlockMetadata(x, y, z);

switch (ForgeDirection.values()[meta]) {
case WEST:
world.setBlockMetadataWithNotify(x, y, z, ForgeDirection.SOUTH.ordinal(), 0);
break;
case EAST:
world.setBlockMetadataWithNotify(x, y, z, ForgeDirection.NORTH.ordinal(), 0);
break;
case NORTH:
world.setBlockMetadataWithNotify(x, y, z, ForgeDirection.WEST.ordinal(), 0);
break;
case SOUTH:
default:
world.setBlockMetadataWithNotify(x, y, z, ForgeDirection.EAST.ordinal(), 0);
break;
}

world.markBlockForUpdate(x, y, z);
((IToolWrench) equipped).wrenchUsed(entityplayer, x, y, z);
return true;
} else if (equipped instanceof ItemConstructionMarker) {
ItemConstructionMarker.link(entityplayer.getCurrentEquippedItem(), world, x, y, z);

return true;
} else {

if (!world.isRemote) {
entityplayer.openGui(BuildCraftBuilders.instance, GuiIds.ARCHITECT_TABLE, world, x, y, z);
}
return true;

}
}

@Override
public void breakBlock(World world, int i, int j, int k, Block block, int par6) {
Utils.preDestroyBlock(world, i, j, k);

super.breakBlock(world, i, j, k, block, par6);
}

@Override
public void onBlockPlacedBy(World world, int i, int j, int k, EntityLivingBase entityliving, ItemStack stack) {
super.onBlockPlacedBy(world, i, j, k, entityliving, stack);

ForgeDirection orientation = Utils.get2dOrientation(entityliving);

world.setBlockMetadataWithNotify(i, j, k, orientation.getOpposite().ordinal(), 1);
}

@Override
public boolean renderAsNormalBlock() {
return false;
}

@Override
public boolean isSideSolid(IBlockAccess world, int x, int y, int z, ForgeDirection side) {
return false;
}

@Override
public int getLightValue(IBlockAccess world, int x, int y, int z) {
return 1;
}

/* MULTI TEXTURE */
@Override
public String getIconPrefix() {
return "architect_";
}

@Override
public int getFrontSide(IBlockAccess world, int x, int y, int z) {
return world.getBlockMetadata(x, y, z);
}

}
6 changes: 3 additions & 3 deletions common/buildcraft/builders/BlockBlueprintLibrary.java
Expand Up @@ -48,9 +48,9 @@ public boolean onBlockActivated(World world, int i, int j, int k, EntityPlayer e
}
BlockInteractionEvent event = new BlockInteractionEvent(entityplayer, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}
if (event.isCanceled()) {
return false;
}

TileEntity tile = world.getTileEntity(i, j, k);
if (tile instanceof TileBlueprintLibrary) {
Expand Down
6 changes: 3 additions & 3 deletions common/buildcraft/builders/BlockBuilder.java
Expand Up @@ -79,9 +79,9 @@ public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer e
}
BlockInteractionEvent event = new BlockInteractionEvent(entityplayer, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}
if (event.isCanceled()) {
return false;
}

TileEntity tile = world.getTileEntity(x, y, z);
TileBuilder builder = tile instanceof TileBuilder ? (TileBuilder) tile : null;
Expand Down
6 changes: 3 additions & 3 deletions common/buildcraft/builders/BlockConstructionMarker.java
Expand Up @@ -61,9 +61,9 @@ public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer e

BlockInteractionEvent event = new BlockInteractionEvent(entityplayer, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}
if (event.isCanceled()) {
return false;
}

TileConstructionMarker marker = (TileConstructionMarker) world.getTileEntity(x, y, z);

Expand Down
6 changes: 3 additions & 3 deletions common/buildcraft/builders/BlockFiller.java
Expand Up @@ -55,9 +55,9 @@ public boolean onBlockActivated(World world, int i, int j, int k, EntityPlayer e

BlockInteractionEvent event = new BlockInteractionEvent(entityplayer, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}
if (event.isCanceled()) {
return false;
}

if (!world.isRemote) {
entityplayer.openGui(BuildCraftBuilders.instance, GuiIds.FILLER, world, i, j, k);
Expand Down
6 changes: 3 additions & 3 deletions common/buildcraft/builders/BlockMarker.java
Expand Up @@ -103,9 +103,9 @@ public boolean onBlockActivated(World world, int i, int j, int k, EntityPlayer e

BlockInteractionEvent event = new BlockInteractionEvent(entityplayer, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}
if (event.isCanceled()) {
return false;
}

TileEntity tile = world.getTileEntity(i, j, k);
if (tile instanceof TileMarker) {
Expand Down
6 changes: 3 additions & 3 deletions common/buildcraft/builders/urbanism/BlockUrbanist.java
Expand Up @@ -42,9 +42,9 @@ public boolean onBlockActivated(World world, int i, int j, int k, EntityPlayer e

BlockInteractionEvent event = new BlockInteractionEvent(entityplayer, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}
if (event.isCanceled()) {
return false;
}

return true;

Expand Down
6 changes: 3 additions & 3 deletions common/buildcraft/commander/BlockRequester.java
Expand Up @@ -49,9 +49,9 @@ public boolean onBlockActivated(World world, int i, int j, int k, EntityPlayer e

BlockInteractionEvent event = new BlockInteractionEvent(entityplayer, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}
if (event.isCanceled()) {
return false;
}

if (!world.isRemote) {
entityplayer.openGui(BuildCraftBuilders.instance, GuiIds.REQUESTER,
Expand Down
6 changes: 3 additions & 3 deletions common/buildcraft/commander/BlockZonePlan.java
Expand Up @@ -49,9 +49,9 @@ public boolean onBlockActivated(World world, int i, int j, int k, EntityPlayer e

BlockInteractionEvent event = new BlockInteractionEvent(entityplayer, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}
if (event.isCanceled()) {
return false;
}

if (!world.isRemote) {
entityplayer.openGui(BuildCraftBuilders.instance, GuiIds.MAP,
Expand Down
6 changes: 3 additions & 3 deletions common/buildcraft/energy/BlockEngine.java
Expand Up @@ -133,9 +133,9 @@ public boolean onBlockActivated(World world, int i, int j, int k, EntityPlayer p

BlockInteractionEvent event = new BlockInteractionEvent(player, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}
if (event.isCanceled()) {
return false;
}

// Do not open guis when having a pipe in hand
if (player.getCurrentEquippedItem() != null) {
Expand Down
6 changes: 3 additions & 3 deletions common/buildcraft/factory/BlockAutoWorkbench.java
Expand Up @@ -49,9 +49,9 @@ public boolean onBlockActivated(World world, int i, int j, int k, EntityPlayer e
super.onBlockActivated(world, i, j, k, entityplayer, par6, par7, par8, par9);
BlockInteractionEvent event = new BlockInteractionEvent(entityplayer, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}
if (event.isCanceled()) {
return false;
}

// Drop through if the player is sneaking
if (entityplayer.isSneaking()) {
Expand Down
6 changes: 3 additions & 3 deletions common/buildcraft/factory/BlockHopper.java
Expand Up @@ -65,9 +65,9 @@ public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer e

BlockInteractionEvent event = new BlockInteractionEvent(entityplayer, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}
if (event.isCanceled()) {
return false;
}

if (entityplayer.getCurrentEquippedItem() != null) {
if (entityplayer.getCurrentEquippedItem().getItem() instanceof IItemPipe) {
Expand Down
6 changes: 3 additions & 3 deletions common/buildcraft/factory/BlockRefinery.java
Expand Up @@ -112,9 +112,9 @@ public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer p
}
BlockInteractionEvent event = new BlockInteractionEvent(player, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}
if (event.isCanceled()) {
return false;
}

ItemStack current = player.getCurrentEquippedItem();
Item equipped = current != null ? current.getItem() : null;
Expand Down
6 changes: 3 additions & 3 deletions common/buildcraft/factory/BlockTank.java
Expand Up @@ -93,9 +93,9 @@ public boolean onBlockActivated(World world, int i, int j, int k, EntityPlayer e

BlockInteractionEvent event = new BlockInteractionEvent(entityplayer, this);
FMLCommonHandler.instance().bus().post(event);
if (event.isCanceled()) {
return false;
}
if (event.isCanceled()) {
return false;
}

if (current != null) {
FluidStack liquid = FluidContainerRegistry.getFluidForFilledItem(current);
Expand Down

0 comments on commit 0a716a9

Please sign in to comment.