Jump to content

Recommended Posts

Posted

I'm making a Giant right now, and I wanted to make it so that, when it walks, trees are "crushed" under it. I figured, "well the Ender Dragon does something like that", so I went into its .class file and found the part for "canEntityDestroy", so I began making a new EntityAI class. Now, my goal is to change the code so that, instead of only preserving Command Blocks, Iron Bars, and the End Gateway, it will preserve everything BUT trees and wood planks. I know I could just add in every type of existing block, but I don't want to do that because I don't have the time (or the sanity) for such endeavors. 

SO, if anybody has any ideas as to how to make it so that I can list what TO destroy rather than what NOT to destroy, I'd like to hear them. 

 

Here's the code from EntityDragon.class: 

    private boolean destroyBlocksInAABB(AxisAlignedBB p_70972_1_)
    {
        int i = MathHelper.floor(p_70972_1_.minX);
        int j = MathHelper.floor(p_70972_1_.minY);
        int k = MathHelper.floor(p_70972_1_.minZ);
        int l = MathHelper.floor(p_70972_1_.maxX);
        int i1 = MathHelper.floor(p_70972_1_.maxY);
        int j1 = MathHelper.floor(p_70972_1_.maxZ);
        boolean flag = false;
        boolean flag1 = false;

        for (int k1 = i; k1 <= l; ++k1)
        {
            for (int l1 = j; l1 <= i1; ++l1)
            {
                for (int i2 = k; i2 <= j1; ++i2)
                {
                    BlockPos blockpos = new BlockPos(k1, l1, i2);
                    IBlockState iblockstate = this.world.getBlockState(blockpos);
                    Block block = iblockstate.getBlock();

                    if (!block.isAir(iblockstate, this.world, blockpos) && iblockstate.getMaterial() != Material.FIRE)
                    {
                        if (!this.world.getGameRules().getBoolean("mobGriefing"))
                        {
                            flag = true;
                        }
                        else if (block.canEntityDestroy(iblockstate, this.world, blockpos, this) && net.minecraftforge.event.ForgeEventFactory.onEntityDestroyBlock(this, blockpos, iblockstate))
                        {
                            if (block != Blocks.COMMAND_BLOCK && block != Blocks.REPEATING_COMMAND_BLOCK && block != Blocks.CHAIN_COMMAND_BLOCK && block != Blocks.IRON_BARS && block != Blocks.END_GATEWAY)
                            {
                                flag1 = this.world.setBlockToAir(blockpos) || flag1;
                            }
                            else
                            {
                                flag = true;
                            }
                        }
                        else
                        {
                            flag = true;
                        }
                    }
                }
            }
        }

        if (flag1)
        {
            double d0 = p_70972_1_.minX + (p_70972_1_.maxX - p_70972_1_.minX) * (double)this.rand.nextFloat();
            double d1 = p_70972_1_.minY + (p_70972_1_.maxY - p_70972_1_.minY) * (double)this.rand.nextFloat();
            double d2 = p_70972_1_.minZ + (p_70972_1_.maxZ - p_70972_1_.minZ) * (double)this.rand.nextFloat();
            this.world.spawnParticle(EnumParticleTypes.EXPLOSION_LARGE, d0, d1, d2, 0.0D, 0.0D, 0.0D);
        }

        return flag;
    }

 

Thanks for your help! 

Posted (edited)
  On 3/27/2019 at 4:04 PM, perigrine3 said:

so how would getting the itemstack dropped by the block help me prevent it from being destroyed? 

Expand  

This is for checking the block's oredict and destroying it if it is wood. This will allow your giant to work with every type of tree.

 

See this if loop thingy?

if (block != Blocks.COMMAND_BLOCK && block != Blocks.REPEATING_COMMAND_BLOCK && block != Blocks.CHAIN_COMMAND_BLOCK && block != Blocks.IRON_BARS && block != Blocks.END_GATEWAY)
{
    flag1 = this.world.setBlockToAir(blockpos) || flag1;
}
else
{
    flag = true;
}

Locate it in your code and change the condition to match your need.

 

Personally, I would discourage copying from vanilla in this case, as the code you copied can be rewritten to better fit your needs.

Edited by DavidM
I can't use terminologies correctly ; )
  • Thanks 1

Some tips:

  Reveal hidden contents

 

Posted

I think I figured it out, but I think I'll just replace the items not to break to Dirt/Grass, Stone, Diamond, and Obsidian blocks. If I find anything else I don't want being destroyed, I'll add it in. 

Posted
  On 3/27/2019 at 5:18 PM, perigrine3 said:

I think I figured it out, but I think I'll just replace the items not to break to Dirt/Grass, Stone, Diamond, and Obsidian blocks. If I find anything else I don't want being destroyed, I'll add it in. 

Expand  

Bedrock maybe? TileEntities maybe?

About Me

  Reveal hidden contents

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

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.