Jump to content

Please Help! Modder Support 1.12.2


Anonomys

Recommended Posts

I am using piece of deobfuscated minecraft mod,

can someone tell me what is this :   " switch (1.$SwitchMap$net$minecraft$util$EnumFacing[facing.ordinal()]) "

This is my signature. I don't really too much know about java but i try to help and i try to get help from others too. Thank you!

Link to comment
Share on other sites

Looks like a reference to EnumFacing.

 

My guess at (regular, readable) Java for that whole line would be:

switch(EnumFacing.VALUES[facing.ordinal()]) { ... }

 

  • Thanks 1

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Thanks but i here's my whole class: (i have problem with "case" 

 

package jayden.mod.util;

import jayden.mod.util.Bounds;

import net.minecraft.util.EnumFacing;
import net.minecraft.util.math.AxisAlignedBB;

public class CollisionHelper {

	public 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]);
	  }
	  
	  public static AxisAlignedBB getBlockBounds(EnumFacing facing, Bounds bounds, double x1, double y1, double z1, double x2, double y2, double z2)
	  {
	    double[] fixedBounds = fixRotation(facing, x1, z1, x2, z2);
	    return new AxisAlignedBB(fixedBounds[0], y1, fixedBounds[1], fixedBounds[2], y2, fixedBounds[3]);
	  }
	  
	  private static double[] fixRotation(EnumFacing facing, double var1, double var2, double var3, double var4)
	  {
	    switch (EnumFacing.VALUES[facing.ordinal()])
	    {
	    case 1: 
	      double var_temp_1 = var1;
	      var1 = 1.0D - var3;
	      double var_temp_2 = var2;
	      var2 = 1.0D - var4;
	      var3 = 1.0D - var_temp_1;
	      var4 = 1.0D - var_temp_2;
	      break;
	    case 2: 
	      double var_temp_3 = var1;
	      var1 = var2;
	      var2 = 1.0D - var3;
	      var3 = var4;
	      var4 = 1.0D - var_temp_3;
	      break;
	    case 3: 
	      double var_temp_4 = var1;
	      var1 = 1.0D - var4;
	      double var_temp_5 = var2;
	      var2 = var_temp_4;
	      double var_temp_6 = var3;
	      var3 = 1.0D - var_temp_5;
	      var4 = var_temp_6;
	      break;
	    }
	    
	    
	    return new double[] { var1, var2, var3, var4 };
	  }
}

 

This is my signature. I don't really too much know about java but i try to help and i try to get help from others too. Thank you!

Link to comment
Share on other sites

I need help with this too 

What is this:

public IBlockState getStateFromMeta(int meta)
  {
    return getDefaultState().withProperty(FACING, EnumFacing.byHorizontalIndex(meta));
  }

 

This is my signature. I don't really too much know about java but i try to help and i try to get help from others too. Thank you!

Link to comment
Share on other sites

43 minutes ago, Anonomys said:

What is this:

The IBlockState is saved as an integer 0-15 on disk. It is called metadata(meta for short). The return value returns an IBlockState with the property FACING with the EnumFacing value determined by the meta interpreted as the horizontal index.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

3 hours ago, Animefan8888 said:

The IBlockState is saved as an integer 0-15 on disk. It is called metadata(meta for short). The return value returns an IBlockState with the property FACING with the EnumFacing value determined by the meta interpreted as the horizontal index.

can you just type me code? what do i type?

This is my signature. I don't really too much know about java but i try to help and i try to get help from others too. Thank you!

Link to comment
Share on other sites

  1. No, this forum does not just "type you code".
  2. You haven't actually stated what you're trying to achieve, so how could anyone possibly tell you what to type?
  3. Why can't you just refer to the original source code?  Do you have permission to republish this deobf'd code?
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.