Advertisement
Guest User

EnumFacing changed

a guest
Jun 15th, 2015
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 15.27 KB | None | 0 0
  1. package net.minecraft.util;
  2.  
  3. import com.google.common.base.Predicate;
  4. import com.google.common.collect.Iterators;
  5. import com.google.common.collect.Maps;
  6. import java.util.Iterator;
  7. import java.util.Map;
  8. import java.util.Random;
  9. import net.minecraftforge.fml.relauncher.Side;
  10. import net.minecraftforge.fml.relauncher.SideOnly;
  11.  
  12. public enum EnumFacing implements IStringSerializable
  13. {
  14.     DOWN(0, 1, -1, "down", EnumFacing.AxisDirection.NEGATIVE, EnumFacing.Axis.Y, new Vec3i(0, -1, 0)),
  15.     UP(1, 0, -1, "up", EnumFacing.AxisDirection.POSITIVE, EnumFacing.Axis.Y, new Vec3i(0, 1, 0)),
  16.     NORTH(2, 3, 2, "north", EnumFacing.AxisDirection.NEGATIVE, EnumFacing.Axis.Z, new Vec3i(0, 0, -1)),
  17.     SOUTH(3, 2, 0, "south", EnumFacing.AxisDirection.POSITIVE, EnumFacing.Axis.Z, new Vec3i(0, 0, 1)),
  18.     WEST(4, 5, 1, "west", EnumFacing.AxisDirection.NEGATIVE, EnumFacing.Axis.X, new Vec3i(-1, 0, 0)),
  19.     EAST(5, 4, 3, "east", EnumFacing.AxisDirection.POSITIVE, EnumFacing.Axis.X, new Vec3i(1, 0, 0)),
  20.     UNKNOWN(0, 0, 0, "unkown", EnumFacing.AxisDirection.UNKNOWN, EnumFacing.Axis.NULL, new Vec3i(0, 0, 0));
  21.     private final int index;
  22.     private final int opposite;
  23.     private final int horizontalIndex;
  24.     private final String name;
  25.     private final EnumFacing.Axis axis;
  26.     private final EnumFacing.AxisDirection axisDirection;
  27.     private final Vec3i directionVec;
  28.     public static final EnumFacing[] VALUES = new EnumFacing[6];
  29.     public static final EnumFacing[] HORIZONTALS = new EnumFacing[4];
  30.     private static final Map NAME_LOOKUP = Maps.newHashMap();
  31.  
  32.     private static final String __OBFID = "CL_00001201";
  33.  
  34.     private EnumFacing(int indexIn, int oppositeIn, int horizontalIndexIn, String nameIn, EnumFacing.AxisDirection axisDirectionIn, EnumFacing.Axis axisIn, Vec3i directionVecIn)
  35.     {
  36.         this.index = indexIn;
  37.         this.horizontalIndex = horizontalIndexIn;
  38.         this.opposite = oppositeIn;
  39.         this.name = nameIn;
  40.         this.axis = axisIn;
  41.         this.axisDirection = axisDirectionIn;
  42.         this.directionVec = directionVecIn;
  43.     }
  44.  
  45.     public int getIndex()
  46.     {
  47.         return this.index;
  48.     }
  49.  
  50.     public int getHorizontalIndex()
  51.     {
  52.         return this.horizontalIndex;
  53.     }
  54.  
  55.     public EnumFacing.AxisDirection getAxisDirection()
  56.     {
  57.         return this.axisDirection;
  58.     }
  59.  
  60.     public EnumFacing getOpposite()
  61.     {
  62.         return getFront(this.opposite);
  63.     }
  64.  
  65.     @SideOnly(Side.CLIENT)
  66.     public EnumFacing rotateAround(EnumFacing.Axis axis)
  67.     {
  68.         switch (EnumFacing.SwitchPlane.AXIS_LOOKUP[axis.ordinal()])
  69.         {
  70.             case 1:
  71.                 if (this != WEST && this != EAST)
  72.                 {
  73.                     return this.rotateX();
  74.                 }
  75.  
  76.                 return this;
  77.             case 2:
  78.                 if (this != UP && this != DOWN)
  79.                 {
  80.                     return this.rotateY();
  81.                 }
  82.  
  83.                 return this;
  84.             case 3:
  85.                 if (this != NORTH && this != SOUTH)
  86.                 {
  87.                     return this.rotateZ();
  88.                 }
  89.  
  90.                 return this;
  91.             default:
  92.                 throw new IllegalStateException("Unable to get CW facing for axis " + axis);
  93.         }
  94.     }
  95.  
  96.     public EnumFacing rotateY()
  97.     {
  98.         switch (EnumFacing.SwitchPlane.FACING_LOOKUP[this.ordinal()])
  99.         {
  100.             case 1:
  101.                 return EAST;
  102.             case 2:
  103.                 return SOUTH;
  104.             case 3:
  105.                 return WEST;
  106.             case 4:
  107.                 return NORTH;
  108.             default:
  109.                 throw new IllegalStateException("Unable to get Y-rotated facing of " + this);
  110.         }
  111.     }
  112.  
  113.     @SideOnly(Side.CLIENT)
  114.     private EnumFacing rotateX()
  115.     {
  116.         switch (EnumFacing.SwitchPlane.FACING_LOOKUP[this.ordinal()])
  117.         {
  118.             case 1:
  119.                 return DOWN;
  120.             case 2:
  121.             case 4:
  122.             default:
  123.                 throw new IllegalStateException("Unable to get X-rotated facing of " + this);
  124.             case 3:
  125.                 return UP;
  126.             case 5:
  127.                 return NORTH;
  128.             case 6:
  129.                 return SOUTH;
  130.         }
  131.     }
  132.  
  133.     @SideOnly(Side.CLIENT)
  134.     private EnumFacing rotateZ()
  135.     {
  136.         switch (EnumFacing.SwitchPlane.FACING_LOOKUP[this.ordinal()])
  137.         {
  138.             case 2:
  139.                 return DOWN;
  140.             case 3:
  141.             default:
  142.                 throw new IllegalStateException("Unable to get Z-rotated facing of " + this);
  143.             case 4:
  144.                 return UP;
  145.             case 5:
  146.                 return EAST;
  147.             case 6:
  148.                 return WEST;
  149.         }
  150.     }
  151.  
  152.     public EnumFacing rotateYCCW()
  153.     {
  154.         switch (EnumFacing.SwitchPlane.FACING_LOOKUP[this.ordinal()])
  155.         {
  156.             case 1:
  157.                 return WEST;
  158.             case 2:
  159.                 return NORTH;
  160.             case 3:
  161.                 return EAST;
  162.             case 4:
  163.                 return SOUTH;
  164.             default:
  165.                 throw new IllegalStateException("Unable to get CCW facing of " + this);
  166.         }
  167.     }
  168.  
  169.     public int getFrontOffsetX()
  170.     {
  171.         return this.axis == EnumFacing.Axis.X ? this.axisDirection.getOffset() : 0;
  172.     }
  173.  
  174.     public int getFrontOffsetY()
  175.     {
  176.         return this.axis == EnumFacing.Axis.Y ? this.axisDirection.getOffset() : 0;
  177.     }
  178.  
  179.     public int getFrontOffsetZ()
  180.     {
  181.         return this.axis == EnumFacing.Axis.Z ? this.axisDirection.getOffset() : 0;
  182.     }
  183.  
  184.     public String getName2()
  185.     {
  186.         return this.name;
  187.     }
  188.  
  189.     public EnumFacing.Axis getAxis()
  190.     {
  191.         return this.axis;
  192.     }
  193.  
  194.     @SideOnly(Side.CLIENT)
  195.     public static EnumFacing byName(String name)
  196.     {
  197.         return name == null ? null : (EnumFacing)NAME_LOOKUP.get(name.toLowerCase());
  198.     }
  199.  
  200.     public static EnumFacing getFront(int index)
  201.     {
  202.         return VALUES[MathHelper.abs_int(index % VALUES.length)];
  203.     }
  204.  
  205.     public static EnumFacing getHorizontal(int p_176731_0_)
  206.     {
  207.         return HORIZONTALS[MathHelper.abs_int(p_176731_0_ % HORIZONTALS.length)];
  208.     }
  209.  
  210.     public static EnumFacing fromAngle(double angle)
  211.     {
  212.         return getHorizontal(MathHelper.floor_double(angle / 90.0D + 0.5D) & 3);
  213.     }
  214.  
  215.     public static EnumFacing random(Random rand)
  216.     {
  217.         return values()[rand.nextInt(values().length)];
  218.     }
  219.  
  220.     @SideOnly(Side.CLIENT)
  221.     public static EnumFacing getFacingFromVector(float p_176737_0_, float p_176737_1_, float p_176737_2_)
  222.     {
  223.         EnumFacing enumfacing = NORTH;
  224.         float f3 = Float.MIN_VALUE;
  225.         EnumFacing[] aenumfacing = values();
  226.         int i = aenumfacing.length;
  227.  
  228.         for (int j = 0; j < i; ++j)
  229.         {
  230.             EnumFacing enumfacing1 = aenumfacing[j];
  231.             float f4 = p_176737_0_ * (float)enumfacing1.directionVec.getX() + p_176737_1_ * (float)enumfacing1.directionVec.getY() + p_176737_2_ * (float)enumfacing1.directionVec.getZ();
  232.  
  233.             if (f4 > f3)
  234.             {
  235.                 f3 = f4;
  236.                 enumfacing = enumfacing1;
  237.             }
  238.         }
  239.  
  240.         return enumfacing;
  241.     }
  242.  
  243.     public String toString()
  244.     {
  245.         return this.name;
  246.     }
  247.  
  248.     public String getName()
  249.     {
  250.         return this.name;
  251.     }
  252.  
  253.     @SideOnly(Side.CLIENT)
  254.     public Vec3i getDirectionVec()
  255.     {
  256.         return this.directionVec;
  257.     }
  258.  
  259.     static
  260.     {
  261.         EnumFacing[] var0 = values();
  262.         int var1 = var0.length;
  263.  
  264.         for (int var2 = 0; var2 < var1; ++var2)
  265.         {
  266.             EnumFacing var3 = var0[var2];
  267.             VALUES[var3.index] = var3;
  268.  
  269.             if (var3.getAxis().isHorizontal())
  270.             {
  271.                 HORIZONTALS[var3.horizontalIndex] = var3;
  272.             }
  273.  
  274.             NAME_LOOKUP.put(var3.getName2().toLowerCase(), var3);
  275.         }
  276.     }
  277.  
  278.     public static enum Axis implements Predicate, IStringSerializable {
  279.         X("x", EnumFacing.Plane.HORIZONTAL),
  280.         Y("y", EnumFacing.Plane.VERTICAL),
  281.         Z("z", EnumFacing.Plane.HORIZONTAL),
  282.         NULL("null", EnumFacing.Plane.NULL);
  283.         private static final Map NAME_LOOKUP = Maps.newHashMap();
  284.         private final String name;
  285.         private final EnumFacing.Plane plane;
  286.  
  287.         private static final EnumFacing.Axis[] $VALUES = new EnumFacing.Axis[]{X, Y, Z};
  288.         private static final String __OBFID = "CL_00002321";
  289.  
  290.         private Axis(String name, EnumFacing.Plane plane)
  291.         {
  292.             this.name = name;
  293.             this.plane = plane;
  294.         }
  295.  
  296.         @SideOnly(Side.CLIENT)
  297.         public static EnumFacing.Axis byName(String name)
  298.         {
  299.             return name == null ? null : (EnumFacing.Axis)NAME_LOOKUP.get(name.toLowerCase());
  300.         }
  301.  
  302.         public String getName2()
  303.         {
  304.             return this.name;
  305.         }
  306.  
  307.         public boolean isVertical()
  308.         {
  309.             return this.plane == EnumFacing.Plane.VERTICAL;
  310.         }
  311.  
  312.         public boolean isHorizontal()
  313.         {
  314.             return this.plane == EnumFacing.Plane.HORIZONTAL;
  315.         }
  316.  
  317.         public String toString()
  318.         {
  319.             return this.name;
  320.         }
  321.  
  322.         public boolean apply(EnumFacing facing)
  323.         {
  324.             return facing != null && facing.getAxis() == this;
  325.         }
  326.  
  327.         public EnumFacing.Plane getPlane()
  328.         {
  329.             return this.plane;
  330.         }
  331.  
  332.         public String getName()
  333.         {
  334.             return this.name;
  335.         }
  336.  
  337.         public boolean apply(Object p_apply_1_)
  338.         {
  339.             return this.apply((EnumFacing)p_apply_1_);
  340.         }
  341.  
  342.         static
  343.         {
  344.             EnumFacing.Axis[] var0 = values();
  345.             int var1 = var0.length;
  346.  
  347.             for (int var2 = 0; var2 < var1; ++var2)
  348.             {
  349.                 EnumFacing.Axis var3 = var0[var2];
  350.                 NAME_LOOKUP.put(var3.getName2().toLowerCase(), var3);
  351.             }
  352.         }
  353.     }
  354.  
  355.     public static enum AxisDirection {
  356.         POSITIVE(1, "Towards positive"),
  357.         NEGATIVE(-1, "Towards negative"), UNKNOWN(0,"We don't know it");
  358.         private final int offset;
  359.         private final String description;
  360.  
  361.         private static final EnumFacing.AxisDirection[] $VALUES = new EnumFacing.AxisDirection[]{POSITIVE, NEGATIVE};
  362.         private static final String __OBFID = "CL_00002320";
  363.  
  364.         private AxisDirection(int offset, String description)
  365.         {
  366.             this.offset = offset;
  367.             this.description = description;
  368.         }
  369.  
  370.         public int getOffset()
  371.         {
  372.             return this.offset;
  373.         }
  374.  
  375.         public String toString()
  376.         {
  377.             return this.description;
  378.         }
  379.     }
  380.  
  381.     public static enum Plane implements Predicate, Iterable<EnumFacing> { //Forge re-add generic because it just makes life easier.
  382.         HORIZONTAL,
  383.         VERTICAL, NULL;
  384.  
  385.         private static final EnumFacing.Plane[] $VALUES = new EnumFacing.Plane[]{HORIZONTAL, VERTICAL};
  386.         private static final String __OBFID = "CL_00002319";
  387.  
  388.         public EnumFacing[] facings()
  389.         {
  390.             switch (EnumFacing.SwitchPlane.PLANE_LOOKUP[this.ordinal()])
  391.             {
  392.                 case 1:
  393.                     return new EnumFacing[] {EnumFacing.NORTH, EnumFacing.EAST, EnumFacing.SOUTH, EnumFacing.WEST};
  394.                 case 2:
  395.                     return new EnumFacing[] {EnumFacing.UP, EnumFacing.DOWN};
  396.                 default:
  397.                     throw new Error("Someone\'s been tampering with the universe!");
  398.             }
  399.         }
  400.  
  401.         public EnumFacing random(Random rand)
  402.         {
  403.             EnumFacing[] aenumfacing = this.facings();
  404.             return aenumfacing[rand.nextInt(aenumfacing.length)];
  405.         }
  406.  
  407.         public boolean apply(EnumFacing facing)
  408.         {
  409.             return facing != null && facing.getAxis().getPlane() == this;
  410.         }
  411.  
  412.         public Iterator iterator()
  413.         {
  414.             return Iterators.forArray(this.facings());
  415.         }
  416.  
  417.         public boolean apply(Object p_apply_1_)
  418.         {
  419.             return this.apply((EnumFacing)p_apply_1_);
  420.         }
  421.     }
  422.  
  423.     static final class SwitchPlane
  424.         {
  425.             static final int[] AXIS_LOOKUP;
  426.  
  427.             static final int[] FACING_LOOKUP;
  428.  
  429.             static final int[] PLANE_LOOKUP = new int[EnumFacing.Plane.values().length];
  430.             private static final String __OBFID = "CL_00002322";
  431.  
  432.             static
  433.             {
  434.                 try
  435.                 {
  436.                     PLANE_LOOKUP[EnumFacing.Plane.HORIZONTAL.ordinal()] = 1;
  437.                 }
  438.                 catch (NoSuchFieldError var11)
  439.                 {
  440.                     ;
  441.                 }
  442.  
  443.                 try
  444.                 {
  445.                     PLANE_LOOKUP[EnumFacing.Plane.VERTICAL.ordinal()] = 2;
  446.                 }
  447.                 catch (NoSuchFieldError var10)
  448.                 {
  449.                     ;
  450.                 }
  451.  
  452.                 FACING_LOOKUP = new int[EnumFacing.values().length];
  453.  
  454.                 try
  455.                 {
  456.                     FACING_LOOKUP[EnumFacing.NORTH.ordinal()] = 1;
  457.                 }
  458.                 catch (NoSuchFieldError var9)
  459.                 {
  460.                     ;
  461.                 }
  462.  
  463.                 try
  464.                 {
  465.                     FACING_LOOKUP[EnumFacing.EAST.ordinal()] = 2;
  466.                 }
  467.                 catch (NoSuchFieldError var8)
  468.                 {
  469.                     ;
  470.                 }
  471.  
  472.                 try
  473.                 {
  474.                     FACING_LOOKUP[EnumFacing.SOUTH.ordinal()] = 3;
  475.                 }
  476.                 catch (NoSuchFieldError var7)
  477.                 {
  478.                     ;
  479.                 }
  480.  
  481.                 try
  482.                 {
  483.                     FACING_LOOKUP[EnumFacing.WEST.ordinal()] = 4;
  484.                 }
  485.                 catch (NoSuchFieldError var6)
  486.                 {
  487.                     ;
  488.                 }
  489.  
  490.                 try
  491.                 {
  492.                     FACING_LOOKUP[EnumFacing.UP.ordinal()] = 5;
  493.                 }
  494.                 catch (NoSuchFieldError var5)
  495.                 {
  496.                     ;
  497.                 }
  498.  
  499.                 try
  500.                 {
  501.                     FACING_LOOKUP[EnumFacing.DOWN.ordinal()] = 6;
  502.                 }
  503.                 catch (NoSuchFieldError var4)
  504.                 {
  505.                     ;
  506.                 }
  507.  
  508.                 AXIS_LOOKUP = new int[EnumFacing.Axis.values().length];
  509.  
  510.                 try
  511.                 {
  512.                     AXIS_LOOKUP[EnumFacing.Axis.X.ordinal()] = 1;
  513.                 }
  514.                 catch (NoSuchFieldError var3)
  515.                 {
  516.                     ;
  517.                 }
  518.  
  519.                 try
  520.                 {
  521.                     AXIS_LOOKUP[EnumFacing.Axis.Y.ordinal()] = 2;
  522.                 }
  523.                 catch (NoSuchFieldError var2)
  524.                 {
  525.                     ;
  526.                 }
  527.  
  528.                 try
  529.                 {
  530.                     AXIS_LOOKUP[EnumFacing.Axis.Z.ordinal()] = 3;
  531.                 }
  532.                 catch (NoSuchFieldError var1)
  533.                 {
  534.                     ;
  535.                 }
  536.             }
  537.         }
  538. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement