Jump to content

Recommended Posts

Posted

So i've got these blocks that also have metadata, but y question is "How do i get these blocks to rotate like logs do when you place them?"

 

 

 

public class Blocksiding extends Block

{

 

public Blocksiding(int ID)

{

super(ID,Material.wood); //The ID and material

}

 

public int getBlockTextureFromSideAndMetadata(int side, int meta)

{

if(side == 3)

{

return 5;

}

    if(meta == 1)

    {

        return 14;

    }

    if(meta == 2)

    {

        return 15;

    }

    if(meta == 3)

    {

        return 16;

    }

    if(meta == 4)

    {

        return 17;

    }

    if(meta == 5)

    {

        return 18;

    }

    if(meta == 6)

    {

        return 19;

    }

    if(meta == 7)

    {

        return 20;

    }

    if(meta == 8)

    {

        return 21;

    }

    if(meta == 9)

    {

        return 22;

    }

    if(meta == 10)

    {

        return 23;

    }

    if(meta == 11)

    {

        return 24;

    }

    if(meta == 12)

    {

        return 25;

    }

    if(meta == 13)

    {

        return 26;

    }

    if(meta == 14)

    {

        return 27;

    }

    return meta != 15 ? 13 : 2;

}

 

public int damageDropped(int i){ //Tells it what block it drops and also for creative mode pick block

return i;

}

 

@SideOnly(Side.CLIENT)

public void getSubBlocks(int par1, CreativeTabs par2CreativeTabs, List par3List) //Adds the metadata blocks to the creative inventory

{

for (int var4 = 0; var4 < 16; ++var4)

{

par3List.add(new ItemStack(par1, 1, var4));

}

}

public String getTextureFile()

{

return ClientProxy.BLOCKS_PNG;

}

}

 

 

Posted

This goes in your block class

 

public void onBlockPlacedBy(World world, int i, int j, int k, EntityLiving entityliving)
{
	int rotation = MathHelper
			.floor_double((double) ((entityliving.rotationYaw * 4F) / 360F) + 2.5D) & 3;
	world.setBlockMetadata(i, j, k, rotation - 1);
}

you may have to toy with the world.setBlockMetaData(i,j, rotation *1*); but it might work straight off haven't tested this.

Posted

 

import java.util.ArrayList;

import java.util.List;

 

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.entity.EntityLiving;

import net.minecraft.item.ItemStack;

import net.minecraft.util.MathHelper;

import net.minecraft.world.World;

import cpw.mods.fml.relauncher.*;

public class Blocksiding extends Block

{

 

public Blocksiding(int ID)

{

super(ID,Material.wood); //The ID and material

}

 

public int onBlockPlaced(World par1World, int par2, int par3, int par4, int par5, float par6, float par7, float par8, int par9)

    {

        int var10 = par9 & 3;

        byte var11 = 0;

 

        switch (par5)

        {

            case 0:

            var11 = 0;

            break;

            case 1:

                var11 = 4;

                break;

            case 2:

            var11 = 8;

            break;

            case 3:

                var11 = 12;

                break;

            case 4:

            var11 = 16;

            break;

            case 5:

                var11 = 20;

        }

 

        return var10 | var11;

    }

 

public int getBlockTextureFromSideAndMetadata(int side, int meta)

    {

        int var3 = meta & 24;

        int var4 = meta & 3;

        return var3 == 0 && (side == 0) ? 5 :

          (var3 == 4 && (side == 1) ? 5 :

          (var3 == 8 && (side == 2) ? 5 :

          (var3 == 12 && (side == 3) ? 5 :

              (var3 == 16 && (side == 4) ? 5 :

              (var3 == 20 && (side == 5) ? 5 :

              (var4 == 1 ? 14 :

              (var4 == 2 ? 15 :

              (var4 == 3 ? 16 : 13))))))));

       

    }

 

public static int limitToValidMetadata(int par0)

    {

        return par0 & 15;

    }

 

public int damageDropped(int i){ //Tells it what block it drops and also for creative mode pick block

return i;

}

 

@SideOnly(Side.CLIENT)

public void getSubBlocks(int par1, CreativeTabs par2CreativeTabs, List par3List) //Adds the metadata blocks to the creative inventory

{

for (int var4 = 0; var4 < 16; ++var4)

{

par3List.add(new ItemStack(par1, 1, var4));

}

}

public String getTextureFile()

{

return ClientProxy.BLOCKS_PNG;

}

}

 

 

here is my revised code but i have 16 blocks and have only 4 working

Posted

can anyone help please

 

you still haven't explained how you are working out what direction the block will be facing with the meta data.

 

are you doing the same as vanilla? meta data n = face up, n + 4 = face north/south n + 8 = face west/east?

Posted

ive got my code its here take a look:

 

 

 

import java.util.ArrayList;

import java.util.List;

 

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.entity.EntityLiving;

import net.minecraft.item.ItemStack;

import net.minecraft.util.MathHelper;

import net.minecraft.world.World;

import cpw.mods.fml.relauncher.*;

public class Blocksiding extends Block

{

 

  public Blocksiding(int ID)

  {

      super(ID,Material.wood); //The ID and material

  }

 

  public int onBlockPlaced(World par1World, int par2, int par3, int par4, int par5, float par6, float par7, float par8, int par9)

    {

        int var10 = par9 & 3;

        byte var11 = 0;

 

        switch (par5)

        {

            case 0:

              var11 = 0;

              break;

            case 1:

                var11 = 4;

                break;

            case 2:

              var11 = 8;

              break;

            case 3:

                var11 = 12;

                break;

            case 4:

              var11 = 16;

              break;

            case 5:

                var11 = 20;

        }

 

        return var10 | var11;

    }

 

  public int getBlockTextureFromSideAndMetadata(int side, int meta)

    {

        int var3 = meta & 24;

        int var4 = meta & 3;

        return var3 == 0 && (side == 0) ? 5 :

            (var3 == 4 && (side == 1) ? 5 :

            (var3 == 8 && (side == 2) ? 5 :

            (var3 == 12 && (side == 3) ? 5 :

              (var3 == 16 && (side == 4) ? 5 :

              (var3 == 20 && (side == 5) ? 5 :

              (var4 == 1 ? 14 :

              (var4 == 2 ? 15 :

              (var4 == 3 ? 16 : 13))))))));

             

    }

 

  public static int limitToValidMetadata(int par0)

    {

        return par0 & 15;

    }

 

  public int damageDropped(int i){ //Tells it what block it drops and also for creative mode pick block

      return i;

  }

 

  @SideOnly(Side.CLIENT)

  public void getSubBlocks(int par1, CreativeTabs par2CreativeTabs, List par3List) //Adds the metadata blocks to the creative inventory

  {

      for (int var4 = 0; var4 < 16; ++var4)

      {

        par3List.add(new ItemStack(par1, 1, var4));

      }

  }

  public String getTextureFile()

  {

      return ClientProxy.BLOCKS_PNG;

  }

}

 

 

Posted

ive got my code its here take a look:

 

 

 

import java.util.ArrayList;

import java.util.List;

 

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.entity.EntityLiving;

import net.minecraft.item.ItemStack;

import net.minecraft.util.MathHelper;

import net.minecraft.world.World;

import cpw.mods.fml.relauncher.*;

public class Blocksiding extends Block

{

 

  public Blocksiding(int ID)

  {

      super(ID,Material.wood); //The ID and material

  }

 

  public int onBlockPlaced(World par1World, int par2, int par3, int par4, int par5, float par6, float par7, float par8, int par9)

    {

        int var10 = par9 & 3;

        byte var11 = 0;

 

        switch (par5)

        {

            case 0:

              var11 = 0;

              break;

            case 1:

                var11 = 4;

                break;

            case 2:

              var11 = 8;

              break;

            case 3:

                var11 = 12;

                break;

            case 4:

              var11 = 16;

              break;

            case 5:

                var11 = 20;

        }

 

        return var10 | var11;

    }

 

  public int getBlockTextureFromSideAndMetadata(int side, int meta)

    {

        int var3 = meta & 24;

        int var4 = meta & 3;

        return var3 == 0 && (side == 0) ? 5 :

            (var3 == 4 && (side == 1) ? 5 :

            (var3 == 8 && (side == 2) ? 5 :

            (var3 == 12 && (side == 3) ? 5 :

              (var3 == 16 && (side == 4) ? 5 :

              (var3 == 20 && (side == 5) ? 5 :

              (var4 == 1 ? 14 :

              (var4 == 2 ? 15 :

              (var4 == 3 ? 16 : 13))))))));

             

    }

 

  public static int limitToValidMetadata(int par0)

    {

        return par0 & 15;

    }

 

  public int damageDropped(int i){ //Tells it what block it drops and also for creative mode pick block

      return i;

  }

 

  @SideOnly(Side.CLIENT)

  public void getSubBlocks(int par1, CreativeTabs par2CreativeTabs, List par3List) //Adds the metadata blocks to the creative inventory

  {

      for (int var4 = 0; var4 < 16; ++var4)

      {

        par3List.add(new ItemStack(par1, 1, var4));

      }

  }

  public String getTextureFile()

  {

      return ClientProxy.BLOCKS_PNG;

  }

}

 

 

 

Please take the time to read what I said so I can help. I am NOT a mind reader, all I can see in your code is blocks with meta data just like most other blocks have

Posted

ive add in comments to explain my code but its not the rotation any more its adding more than 4 blocks to rotate otherwise they go like in the picture a few posts above

 

and yes im using the vinilla way

 

 

 

import java.util.ArrayList;

import java.util.List;

 

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.entity.EntityLiving;

import net.minecraft.item.ItemStack;

import net.minecraft.util.MathHelper;

import net.minecraft.world.World;

import cpw.mods.fml.relauncher.*;

public class Blocksiding extends Block

{

 

  public Blocksiding(int ID)

  {

      super(ID,Material.wood); //The ID and material

  }

 

//Seeing where the block is placed and on what face of a block it is faced on (Vanilla code but changed to move on all 6 sides)

  public int onBlockPlaced(World par1World, int par2, int par3, int par4, int par5, float par6, float par7, float par8, int par9)

    {

        int var10 = par9 & 3;

        byte var11 = 0;

 

        switch (par5)

        {

            case 0:

              var11 = 0;

              break;

            case 1:

                var11 = 4;

                break;

            case 2:

              var11 = 8;

              break;

            case 3:

                var11 = 12;

                break;

            case 4:

              var11 = 16;

              break;

            case 5:

                var11 = 20;

        }

 

        return var10 | var11;

    }

 

/getting the texture for the block determined by what face the block is placed on

  public int getBlockTextureFromSideAndMetadata(int side, int meta)

    {

        int var3 = meta & 24;

        int var4 = meta & 3;

        return var3 == 0 && (side == 0) ? 5 :

            (var3 == 4 && (side == 1) ? 5 :

            (var3 == 8 && (side == 2) ? 5 :

            (var3 == 12 && (side == 3) ? 5 :

              (var3 == 16 && (side == 4) ? 5 :

              (var3 == 20 && (side == 5) ? 5 :

              (var4 == 1 ? 14 :

              (var4 == 2 ? 15 :

              (var4 == 3 ? 16 : 13))))))));

             

    }

 

//all 16 of my blocks so no more appear than 15 metas

  public static int limitToValidMetadata(int par0)

    {

        return par0 & 15;

    }

 

  public int damageDropped(int i){ //Tells it what block it drops and also for creative mode pick block

      return i;

  }

 

  @SideOnly(Side.CLIENT)

  public void getSubBlocks(int par1, CreativeTabs par2CreativeTabs, List par3List) //Adds the metadata blocks to the creative inventory

  {

      for (int var4 = 0; var4 < 16; ++var4)

      {

        par3List.add(new ItemStack(par1, 1, var4));

      }

  }

  public String getTextureFile()

  {

      return ClientProxy.BLOCKS_PNG;

  }

}

 

 

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I have been trying to solve a consistent crashing issue on my brother's computer where it will crash during the "Scanning Mod Candidates" phase of the loading process that starts when you click the play button on the Minecraft launcher. The issue seems to stem from a missing library that it mentions in the log file I provide below. I might I'm missing the bigger issue here for a smaller one but hopefully someone can find what I'm missing. Here's all of the stuff that I've been able to figure out so far: 1. It has nothing to do with mods, the crash happened with a real modpack, and even when I made a custom modpack and launched it without putting ANY mods into it (That is where the log file comes from by the way). 2. I have tried to find this class like a file in the Minecraft folders, but I've had no luck finding it (I don't think it works like that, but since I really don't understand how it works, I just figured I'd try). 3. I haven't seen anyone else have this issue before. 4. I know that my modpack (with mods) does work since I've run it on my computer, and it works fantastic. For some reason my brother's computer can't seem to run anything through curseforge. 5. This is for Minecraft version 1.20.1, Minecraft launcher version 3.4.50-2.1.3, forge 47.3.0, and curseforge app version 1.256.0.21056 6. My brother is using a Dell laptop from 6 years ago running Windows 10 (If you think more info on this would help, please ask as I do have it. I'm just choosing not to put it here for now). 7. I have reinstalled the curseforge app and installed Minecraft version 1.20.1. I have not reinstalled Minecraft or forge 47.3.0 but I didn't know if that would help. 8. I had an error code of 1 Please let me know if there is anything else that I am missing that you would like me to add to this post/add in a comment! Lastly, many thanks in advance to whoever can help! ------------- LOG FILE (latest.log) ------------- (from /Users/<NAME OF USER>/cursforge/minecraft/Instances/<THE NAME OF MY EMPTY MODPACK>/logs/latest.log) (This was made after running an empty modpack with same versions for all apps) ("[REDACTED]" is not the actual text from the log, it is me replacing text I figured wouldn't be necessary for fixing and would hurt my privacy) https://pastebin.com/hxXvGGEK ------------- DEBUG.LOG (I realized that I should have put this here first after I had done all of the work on putting latest.log in) -------------------- (again, "[REDACTED]" is not the actual text from the log, it is me replacing text I figured wouldn't be necessary for fixing and would hurt my privacy) https://pastebin.com/Fmh8GHYs
    • Pastebin... https://pastebin.com/Y3iZ85L5   Brand new profile, does not point to a mod as far as I can tell, my fatal message just has something about mixins. Don't know much about reading logs like this, but am genuinely stuck, please help. Java updated, pc restarted.
    • Fastfund recovery helps an individual to get back their scammed funds irrespective of nationality, Romance scam funds and Broker's scam, all kinds of scam funds are 100% accurately recovered without disappointment, their goal is to give all those who seek help to recover lost satisfaction of funds recovery within 72 hours After countless hours of research and desperate attempts to find a solution, I stumbled upon FASTFUND RECOVERY. It was like finding an oasis in the middle of a desert. Their website promised to help victims of scams reclaim what was rightfully theirs, and I instantly knew I had to give them a shot. Before diving headfirst into the recovery process, I wanted to make sure that FASTFUND RECOVERY was the real deal. So, I did my due diligence and looked into their expertise and reputation. To my relief, I found that they had an impeccable track record, successfully assisting countless individuals in recovering their lost funds. Their team consisted of experts in cybersecurity and financial fraud, armed with the knowledge and tools needed to tackle even the most intricate scams. With their reputation preceding them, I felt a renewed sense of hope. FASTFUND RECOVERY successfully came to my aid and got back the amount I lost to these scammers and for this, I am sending this article for clarification. The info of FASTFUND RECOVERY is email: Fastfundrecovery8 (@)Gmail (.) com. Web fastfundrecovery(.)com. (W/A 1 807/500/7554)
    • I was playing minecraft, forge 47.3.0 and 1.20.1, but when i tried to play minecraft now only crashes, i need help please. here is the crash report: https://securelogger.net/files/e6640a4f-9ed0-4acc-8d06-2e500c77aaaf.txt
  • Topics

×
×
  • Create New...

Important Information

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