Jump to content

[1.14.4] Custom block bounding box with DrawBlockHighlightEvent


Legenes

Recommended Posts

Hi!

As the title says, I want to make a custom bounding box for my block. However, when I try to register my event, it doesn't get called. What did I do wrong?

 

This is in my main class:

@Mod.EventBusSubscriber(bus=Mod.EventBusSubscriber.Bus.MOD)
  public static class RegistryEvents {
  // Other events
  // ...

  @SubscribeEvent
  public void onBlockHighlight(final DrawBlockHighlightEvent event) throws Exception {
    // For testing
    event.setCanceled(true);
    // Currently empty
    ModSelectionBoxes.Draw(event);
  }
}

 

If my method finally gets called, what should I use to draw my bounding box?

Edited by Legenes
Fixed text
procedure WakeMeUp(Integer plusTime);
var
  I: Integer;
begin
  for I := 0 to plusTime do begin
    println('One more minute!');
    Sleep(1000);
  end;
  println('Okay, nothing to worry, I''m alive!');
  println('So... somebody can give me a coffee?');
  println('I know it''s Pascal, and not Java, but I love it :D.');
end;
Link to comment
Share on other sites

30 minutes ago, diesieben07 said:

That's not the event bus for this event.

Okay, I moved it to the bus=Mod.EventBusSubscriber.Bus.FORGE bus, now it gets called. So... how should I draw in it? The only thing I managed to do is to hide the outline of my own block.

Edited by Legenes
Grammar
procedure WakeMeUp(Integer plusTime);
var
  I: Integer;
begin
  for I := 0 to plusTime do begin
    println('One more minute!');
    Sleep(1000);
  end;
  println('Okay, nothing to worry, I''m alive!');
  println('So... somebody can give me a coffee?');
  println('I know it''s Pascal, and not Java, but I love it :D.');
end;
Link to comment
Share on other sites

21 minutes ago, diesieben07 said:

Well, what do you want it to look like? 


I want to make myself a wrench, so when I click my machines side with it, it sets it to closed, normal, out, or in, I'm able to implement that. What I want to do is to create the same outline but white, and then to make simple line symbols on the sides of the block. I may want to make it so every side of the highlight is visible, not just what I should see.

Edited by Legenes
procedure WakeMeUp(Integer plusTime);
var
  I: Integer;
begin
  for I := 0 to plusTime do begin
    println('One more minute!');
    Sleep(1000);
  end;
  println('Okay, nothing to worry, I''m alive!');
  println('So... somebody can give me a coffee?');
  println('I know it''s Pascal, and not Java, but I love it :D.');
end;
Link to comment
Share on other sites

52 minutes ago, diesieben07 said:

Well, what do you want it to look like?

 

So... I have some kind of a rendering going on, but for some reason, my outline only renders if I look at the block from 2 specific sides, and the outline's Y value is always the player's height.

public class ModSelectionBoxes {

    public static boolean Draw(DrawBlockHighlightEvent event) {
        if(event.getTarget().getType() == RayTraceResult.Type.BLOCK) {
            BlockPos blockPos = new BlockPos(event.getTarget().getHitVec());
            BlockState blockState = Minecraft.getInstance().world.getBlockState(blockPos);
            TileEntity tileEntity = Minecraft.getInstance().world.getTileEntity(blockPos);

            if (tileEntity instanceof BatteryTile) {
                ClientPlayerEntity player = Minecraft.getInstance().player;
                GlStateManager.enableBlend();
                GlStateManager.blendFuncSeparate(GlStateManager.SourceFactor.SRC_ALPHA, GlStateManager.DestFactor.ONE_MINUS_SRC_ALPHA, GlStateManager.SourceFactor.ONE, GlStateManager.DestFactor.ZERO);
                GlStateManager.lineWidth(2.5F);
                GlStateManager.disableTexture();
                GlStateManager.depthMask(false);

                AxisAlignedBB box1 = new AxisAlignedBB(blockPos.getX() + 0.0f, blockPos.getY() + 0.0f, blockPos.getZ() + 0.0f,
                        blockPos.getX() + 1.0f, blockPos.getY() + 1.0f, blockPos.getZ() + 1.0f);

                if (blockState.getMaterial() != Material.AIR && event.getInfo().getRenderViewEntity().getEntityWorld().getWorldBorder().contains(blockPos))
                {
                    float partialTicks = event.getPartialTicks();
                    double d3 = player.lastTickPosX + (player.posX - player.lastTickPosX) * (double)partialTicks;
                    double d4 = player.lastTickPosY + (player.posY - player.lastTickPosY) * (double)partialTicks;
                    double d5 = player.lastTickPosZ + (player.posZ - player.lastTickPosZ) * (double)partialTicks;

                    WorldRenderer.drawSelectionBoundingBox(box1.grow(0.0020000000949949026D).offset(-d3, -d4, -d5), 1.0F, 1.0F, 1.0F, 1.0F);
                }

                GlStateManager.depthMask(true);
                GlStateManager.enableTexture();
                GlStateManager.disableBlend();
                return true;
            }
        }
        return false;
    }

}

 

By the way... this is how I call it:

@SubscribeEvent
public static void onBlockHighlight(final DrawBlockHighlightEvent event) {
	event.setCanceled(ModSelectionBoxes.Draw(event));
}

 

Any idea how to fix it?

procedure WakeMeUp(Integer plusTime);
var
  I: Integer;
begin
  for I := 0 to plusTime do begin
    println('One more minute!');
    Sleep(1000);
  end;
  println('Okay, nothing to worry, I''m alive!');
  println('So... somebody can give me a coffee?');
  println('I know it''s Pascal, and not Java, but I love it :D.');
end;
Link to comment
Share on other sites

I was able to make it appear at the right place, but it's still only visible from 3 sides, and when I sneak its position gets lower than it should be. Any ideas?

procedure WakeMeUp(Integer plusTime);
var
  I: Integer;
begin
  for I := 0 to plusTime do begin
    println('One more minute!');
    Sleep(1000);
  end;
  println('Okay, nothing to worry, I''m alive!');
  println('So... somebody can give me a coffee?');
  println('I know it''s Pascal, and not Java, but I love it :D.');
end;
Link to comment
Share on other sites

So I managed to make my rendering almost perfect. It renders what I want, and how I want it to. It works from all sides now. My wrench is currently the Diamond Hoe for testing, of course, I'll change that. My only problem is that the Y-axis isn't affected by the partial ticks, and it makes my outline fuzz while flying / while the sneak animation goes on. Any ideas what to add so it's stable and not fuzzy?

Code

/* Imports */

public class ModSelectionBoxes {

    public static boolean Draw(DrawBlockHighlightEvent event) {
        if(event.getTarget().getType() == RayTraceResult.Type.BLOCK) {
            ClientPlayerEntity player = Minecraft.getInstance().player;
            World world = Minecraft.getInstance().world;
			// Offsetted raytrace result, so it goes inside the block a bit. Now I get the correct position.
            BlockPos blockPos = new BlockPos(event.getTarget().getHitVec().add(event.getInfo().getLookDirection().scale(0.1d)));
            BlockState blockState = world.getBlockState(blockPos);
            TileEntity tileEntity = world.getTileEntity(blockPos);

            if (player.getHeldItem(Hand.MAIN_HAND).getItem().equals(Items.DIAMOND_HOE) && !event.getInfo().isThirdPerson())
                if (tileEntity instanceof BatteryTile || tileEntity instanceof SolidFuelGeneratorTile) {
                    GlStateManager.enableBlend();
                    GlStateManager.blendFuncSeparate(GlStateManager.SourceFactor.SRC_ALPHA, GlStateManager.DestFactor.ONE_MINUS_SRC_ALPHA, GlStateManager.SourceFactor.ONE, GlStateManager.DestFactor.ZERO);
                    GlStateManager.disableTexture();
                    GlStateManager.depthMask(false);
                    if (player.isSneaking())
                        GlStateManager.disableDepthTest();

                    AxisAlignedBB box = new AxisAlignedBB(blockPos.getX() + 0.0f, blockPos.getY() + 0.0f, blockPos.getZ() + 0.0f,
                            blockPos.getX() + 1.0f, blockPos.getY() + 1.0f, blockPos.getZ() + 1.0f);

                    AxisAlignedBB up = new AxisAlignedBB(blockPos.getX() + 0.2f, blockPos.getY() + 1.0f, blockPos.getZ() + 0.2f,
                            blockPos.getX() + 0.8f, blockPos.getY() + 1.0f, blockPos.getZ() + 0.8f);
                    AxisAlignedBB down = new AxisAlignedBB(blockPos.getX() + 0.2f, blockPos.getY() + 0.0f, blockPos.getZ() + 0.2f,
                            blockPos.getX() + 0.8f, blockPos.getY() + 0.0f, blockPos.getZ() + 0.8f);
                    AxisAlignedBB west = new AxisAlignedBB(blockPos.getX() + 0.0f, blockPos.getY() + 0.2f, blockPos.getZ() + 0.2f,
                            blockPos.getX() + 0.0f, blockPos.getY() + 0.8f, blockPos.getZ() + 0.8f);
                    AxisAlignedBB east = new AxisAlignedBB(blockPos.getX() + 1.0f, blockPos.getY() + 0.2f, blockPos.getZ() + 0.2f,
                            blockPos.getX() + 1.0f, blockPos.getY() + 0.8f, blockPos.getZ() + 0.8f);
                    AxisAlignedBB north = new AxisAlignedBB(blockPos.getX() + 0.2f, blockPos.getY() + 0.2f, blockPos.getZ() + 0.0f,
                            blockPos.getX() + 0.8f, blockPos.getY() + 0.8f, blockPos.getZ() + 0.0f);
                    AxisAlignedBB south = new AxisAlignedBB(blockPos.getX() + 0.2f, blockPos.getY() + 0.2f, blockPos.getZ() + 1.0f,
                            blockPos.getX() + 0.8f, blockPos.getY() + 0.8f, blockPos.getZ() + 1.0f);

                    double partialTicks = event.getPartialTicks();
					// This isn't properly affected by the partial ticks. I need to fix this.
                    double eyeOffset = player.getEyePosition((float)partialTicks).y - player.posY;

                    double d3 = player.lastTickPosX + (player.posX - player.lastTickPosX) * partialTicks;
                    double d4 = player.lastTickPosY + (player.posY - player.lastTickPosY) * partialTicks + eyeOffset;
                    double d5 = player.lastTickPosZ + (player.posZ - player.lastTickPosZ) * partialTicks;
                    GlStateManager.translated(-d3, -d4, -d5);

                    if (blockState.getMaterial() != Material.AIR && event.getInfo().getRenderViewEntity().getEntityWorld().getWorldBorder().contains(blockPos))
                    {
                        GlStateManager.lineWidth(4.0F);
                        WorldRenderer.drawSelectionBoundingBox(  box.grow(0.0025D), 1.0F, 1.0F, 1.0F, 0.6F);

                        GlStateManager.lineWidth(2.5F);
                        WorldRenderer.drawSelectionBoundingBox(   up.grow(0.0025D), 0.0F, 1.0F, 0.5F, 0.6F);
                        WorldRenderer.drawSelectionBoundingBox( down.grow(0.0025D), 0.0F, 1.0F, 0.5F, 0.6F);
                        WorldRenderer.drawSelectionBoundingBox( west.grow(0.0025D), 0.0F, 1.0F, 0.5F, 0.6F);
                        WorldRenderer.drawSelectionBoundingBox( east.grow(0.0025D), 0.0F, 1.0F, 0.5F, 0.6F);
                        WorldRenderer.drawSelectionBoundingBox(north.grow(0.0025D), 0.0F, 1.0F, 0.5F, 0.6F);
                        WorldRenderer.drawSelectionBoundingBox(south.grow(0.0025D), 0.0F, 1.0F, 0.5F, 0.6F);
                    }

                    GlStateManager.translated(d3, d4, d5);
                    GlStateManager.enableDepthTest();
                    GlStateManager.depthMask(true);
                    GlStateManager.enableTexture();
                    GlStateManager.disableBlend();
                    return true;
                }
        }
        return false;
    }

}

 

 

procedure WakeMeUp(Integer plusTime);
var
  I: Integer;
begin
  for I := 0 to plusTime do begin
    println('One more minute!');
    Sleep(1000);
  end;
  println('Okay, nothing to worry, I''m alive!');
  println('So... somebody can give me a coffee?');
  println('I know it''s Pascal, and not Java, but I love it :D.');
end;
Link to comment
Share on other sites

I still didn't manage to make my block's outline stable, but now I have another problem. I get the tile entity with world.getTileEntity, which should be fine, but when I try to access any of its values, they're all 0. I'm accessing them by using ((MyTileEntityType)TileEntity).ExampleVariable. I tried to access its inventory, its energy handler, and even some basic integer values inside it, they aren't null, but they don't have their real values in them, whilst their nbt has those values correctly. Any ideas? I'm sitting on this thing for like a day now...

Edited by Legenes
Grammar
procedure WakeMeUp(Integer plusTime);
var
  I: Integer;
begin
  for I := 0 to plusTime do begin
    println('One more minute!');
    Sleep(1000);
  end;
  println('Okay, nothing to worry, I''m alive!');
  println('So... somebody can give me a coffee?');
  println('I know it''s Pascal, and not Java, but I love it :D.');
end;
Link to comment
Share on other sites

19 minutes ago, diesieben07 said:

The client does not magically have the server's values for your TE.

For values that do not change frequently, check this post which explains syncing the data (1.12.2 names but the concept is exactly the same):

 

Thank you very much! Now my values are updated when I change them, and they get sent to the client as well. Now the only thing is still in my post above, but I'll think about it a bit more.

procedure WakeMeUp(Integer plusTime);
var
  I: Integer;
begin
  for I := 0 to plusTime do begin
    println('One more minute!');
    Sleep(1000);
  end;
  println('Okay, nothing to worry, I''m alive!');
  println('So... somebody can give me a coffee?');
  println('I know it''s Pascal, and not Java, but I love it :D.');
end;
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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • 🚀Link Daftar Klik Disini🚀 Tips Bermain Slot Bank Jago agar Meraih Maxwin dan Jackpot di MAXWINBET77 Bermain slot online Bank jago adalah cara yang seru dan mengasyikkan untuk mencari keuntungan besar di MAXWINBET77. Jika kamu ingin meningkatkan peluangmu untuk meraih maxwin dan jackpot secara terus-menerus, ada beberapa tips dan strategi yang bisa kamu terapkan. Berikut adalah panduan lengkapnya: Pilih Slot dengan RTP Tinggi: RTP (Return to Player) adalah persentase rata-rata dari total taruhan yang dikembalikan kepada pemain sebagai kemenangan. Pilihlah mesin slot Bank jago yang memiliki RTP tinggi, karena ini meningkatkan peluangmu untuk meraih kemenangan dalam jangka panjang. Kenali Fitur Bonus: Setiap slot Bank jago memiliki fitur bonus yang berbeda, seperti putaran gratis, simbol liar (wild), dan bonus game. Pelajari dengan baik fitur-fitur ini karena mereka dapat membantu meningkatkan peluang meraih kemenangan besar. Kelola Taruhan dengan Bijak: Tentukan batasan taruhan yang sesuai dengan budget dan jangan tergoda untuk bertaruh melebihi kemampuan finansialmu. Terapkan strategi taruhan yang bijak untuk memaksimalkan penggunaan saldo. Mainkan Slot Bank jago Progresif: Jika tujuanmu adalah meraih jackpot besar, coba mainkan slot Bank jago progresif di MAXWINBET77. Jackpot pada jenis slot Bank ini terus bertambah seiring dengan taruhan pemain lainnya, sehingga dapat mencapai jumlah yang sangat besar. Manfaatkan Promosi dan Bonus: MAXWINBET77 sering kali menawarkan promosi dan bonus kepada pemainnya. Manfaatkan bonus-bonus ini untuk meningkatkan peluangmu meraih kemenangan tanpa menggunakan modal tambahan. Berkonsentrasi dan Bersabar: Fokuslah saat bermain slot bank jago dan jangan terburu-buru. Bersabarlah meskipun tidak langsung mendapatkan hasil yang diharapkan. Kadang-kadang diperlukan waktu dan keberuntungan untuk mencapai maxwin atau jackpot. Baca Aturan Permainan: Sebelum bermain, pastikan untuk membaca aturan dan pembayaran pada slot Bank Jago yang dipilih. Mengetahui cara kerja mesin slot akan membantu mengoptimalkan strategi bermainmu. Dengan menerapkan tips-tips di atas dan tetap bermain secara bertanggung jawab, kamu dapat meningkatkan peluang meraih maxwin dan jackpot di Slot Bank Jago MAXWINBET77. Selamat bermain dan semoga sukses meraih kemenangan besar Anda Hari Ini.
    • 🤑DAFTAR & LOGIN🤑 🤑DAFTAR & LOGIN🤑 🤑DAFTAR & LOGIN🤑 SLOT BCA 10K adalah bocoran slot rekomendasi gacor dari RATUASIA77 yang bisa anda temukan di SLOT BCA 10K. Situs SLOT BCA 5K hari ini yang kami bagikan di sini adalah yang terbaik dan bersiaplah untuk mengalami sensasi tak terlupakan dalam permainan slot online. Temukan game SLOT BSI 5K terbaik dengan 100 pilihan provider ternama yang dipercaya akan memberikan kepuasan dan kemenangan hari ini untuk meraih x500. RTP SLOT BCA 10K merupakan SLOT BCA 10K hari ini yang telah menjadi pilihan utama bagi pemain judi online di seluruh Indonesia. Setiap harinya jutaan pemain memasuki dunia maya untuk memperoleh hiburan seru dan kemenangan besar dalam bermain slot dengan adanya bocoran RTP SLOT BSI 10K. Tidak ada yang lebih menyenangkan daripada mengungguli mesin slot dan meraih jackpot x500 yang menggiurkan di situs SLOT BCA 10K hari ini yang telah disediakan SLOT BCA 10K. Menangkan jackpot besar x500 rajanya maxwin dari segala slot dan raih kemenangan spektakuler di situs RATUASIA77 terbaik 2024 adalah tempat yang menyediakan mesin slot dengan peluang kemenangan lebih tinggi daripada situs slot lainnya. Bagi anda yang mencari pengalaman judi slot paling seru dan mendebarkan, situs bo SLOT BCA 10K terbaik 2024 adalah pilihan yang tepat. Jelajahi dunia slot online melalui situs SLOT BCA 10K di link SLOT BCA RATUASIA77.
    • 🤑DAFTAR & LOGIN🤑 🤑DAFTAR & LOGIN🤑 🤑DAFTAR & LOGIN🤑 SLOT BSI 10K adalah bocoran slot rekomendasi gacor dari RATUASIA77 yang bisa anda temukan di SLOT BSI 10K. Situs SLOT BSI 5K hari ini yang kami bagikan di sini adalah yang terbaik dan bersiaplah untuk mengalami sensasi tak terlupakan dalam permainan slot online. Temukan game SLOT BSI 5K terbaik dengan 100 pilihan provider ternama yang dipercaya akan memberikan kepuasan dan kemenangan hari ini untuk meraih x500. RTP SLOT BSI 10K merupakan SLOT BSI 10K hari ini yang telah menjadi pilihan utama bagi pemain judi online di seluruh Indonesia. Setiap harinya jutaan pemain memasuki dunia maya untuk memperoleh hiburan seru dan kemenangan besar dalam bermain slot dengan adanya bocoran RTP SLOT BSI 10K. Tidak ada yang lebih menyenangkan daripada mengungguli mesin slot dan meraih jackpot x500 yang menggiurkan di situs SLOT BSI 10K hari ini yang telah disediakan SLOT BSI 10K. Menangkan jackpot besar x500 rajanya maxwin dari segala slot dan raih kemenangan spektakuler di situs RATUASIA77 terbaik 2024 adalah tempat yang menyediakan mesin slot dengan peluang kemenangan lebih tinggi daripada situs slot lainnya. Bagi anda yang mencari pengalaman judi slot paling seru dan mendebarkan, situs bo SLOT BSI 10K terbaik 2024 adalah pilihan yang tepat. Jelajahi dunia slot online melalui situs SLOT BSI 10K di link SLOT BSI RATUASIA77.
    • DAFTAR SCATTER HITAM MAHJONG WAYS DISINI DAFTAR SCATTER HITAM MAHJONG WAYS DISINI DAFTAR SCATTER HITAM MAHJONG WAYS DISINI Mencari scatter hitam dalam permainan slot demo mahjong ways server thailand adalah salah satu jalan menuju kemenangan melalui bentuk kombinasi pola. Mengetahui bocoran pola scatter dapat meningkatkan peluang kemenangan jackpot maxwin yang cukup besar. TAG : Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam
    • DAFTAR SCATTER HITAM MAHJONG DISINI DAFTAR SCATTER HITAM MAHJONG DISINI DAFTAR SCATTER HITAM MAHJONG DISINI Scatter Hitam merupakan salah satu provider Pg Soft dari game slot mahjong ways terpopuler dan terkenal saat ini dengan inovasi terbaru scatter hitam bisa menghasilkan kemenangan maxwin jackpot yang luar biasa sangat besar. TAG : Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam Scatter Hitam
  • Topics

×
×
  • Create New...

Important Information

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