/** * MrCrayfish's Furniture Mod * Copyright (C) 2016 MrCrayfish (http://www.mrcrayfish.com/) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.mrcrayfish.furniture.util; import net.minecraft.block.Block; import net.minecraft.util.EnumFacing; import net.minecraft.util.math.AxisAlignedBB; public class CollisionHelper { public static AxisAlignedBB getBlockBounds(EnumFacing facing, double x1, double y1, double z1, double x2, double y2, double z2) { double[] bounds = fixRotation(facing, x1, z1, x2, z2); return new AxisAlignedBB(bounds[0], y1, bounds[1], bounds[2], y2, bounds[3]); } private static double[] fixRotation(EnumFacing facing, double var1, double var2, double var3, double var4) { switch (facing) { case WEST: double var_temp_1 = var1; var1 = 1.0F - var3; double var_temp_2 = var2; var2 = 1.0F - var4; var3 = 1.0F - var_temp_1; var4 = 1.0F - var_temp_2; break; case NORTH: double var_temp_3 = var1; var1 = var2; var2 = 1.0F - var3; var3 = var4; var4 = 1.0F - var_temp_3; break; case SOUTH: double var_temp_4 = var1; var1 = 1.0F - var4; double var_temp_5 = var2; var2 = var_temp_4; double var_temp_6 = var3; var3 = 1.0F - var_temp_5; var4 = var_temp_6; break; default: break; } return new double[] { var1, var2, var3, var4 }; } }