Jump to content

[1.9.4] [UNSOLVED] Render 2D Entity


Bektor

Recommended Posts

Hi,

 

I'm wondering how I can render a 2D Entity in Minecraft. It's not a throwable entity!

 

Here is what I've got so far:

 

               if(entity.isDead)
            return;
        
        GlStateManager.pushMatrix(); // store the transformation 
        GlStateManager.translate(posX, posY, posZ); // set viewport to tile entity position to render it   
  
            double distanceSq = entity.getDistanceSqToEntity(Minecraft.getMinecraft().getRenderViewEntity());
            float alpha = (float) (1.f - Math.min(1.d, distanceSq / (650 * .78543)));
            float size = (float) (.1f + entity.getSize());
            
            this.bindTexture(texture);
            GlStateManager.disableDepth();
            GlStateManager.rotate(-this.getRenderManager().playerViewY, .0f, 1.f, .0f);
            GlStateManager.rotate(this.getRenderManager().playerViewX, 1.f, 0.f, 0.f);
            GL11.glScalef(size, size, size);
            
            Tessellator tesselator = Tessellator.getInstance();
            VertexBuffer vertexbuffer = tesselator.getBuffer();
            
            vertexbuffer.begin(7, DefaultVertexFormats.POSITION);
            vertexbuffer.pos(posX, posY, posZ);
            GlStateManager.color(0, 0, 0, alpha);
            
            GlStateManager.enableTexture2D();
            
            tesselator.draw();
            
            GlStateManager.enableDepth();

        GlStateManager.popMatrix();

 

 

The Entity should also rotate, so the player sees it always from the front.

I hope someone can help me with this.

 

Thx in advance.

Bektor

Developer of Primeval Forest.

Link to comment
Share on other sites

Have you looked at snowball? It literally gives you full code :P

 

Basically - translate rendering to x/y/z of entity, scale it down, rotate to face camera (player) and render using normal GL or utilizing VertexBuffer.

Drawing in 3D (world) is like drawing on screen (e.g Gui.class) you just add translation/scaling/rotation.

 

So yeah - lookup snowball.

 

If you are asking about applying this stuff - you need factory and then register it in client proxy - need more info?

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

Have you looked at snowball? It literally gives you full code :P

 

Basically - translate rendering to x/y/z of entity, scale it down, rotate to face camera (player) and render using normal GL or utilizing VertexBuffer.

Drawing in 3D (world) is like drawing on screen (e.g Gui.class) you just add translation/scaling/rotation.

 

So yeah - lookup snowball.

 

If you are asking about applying this stuff - you need factory and then register it in client proxy - need more info?

Well, how can I rotate the object always around the player, so that he can only see the front of it?

And for what is the new VertexBuffer class? I mean, there is now a Tesselator, GameState stuff and VertexBuffer.

Developer of Primeval Forest.

Link to comment
Share on other sites

VertexBuffer is just re-name of WorldRenderer which is basically a wrapper around GL vertex rendering.

Tesselator is basically class with method that allows you to get VertexBuffer.

Note - everything done in VertexBuffer can be done with normal GL (as said - it's just a wrapper).

Why is VertexBuffer "superior" to GL - well, it has some fancy VertexFormat that nicely wrap all stuff you would need to do using GL into simple calls.

 

As to rotating to face player - Look at RenderFireball and/or RenderSnowball - it literally gives you full code, especially that part with rotating to face camera (beginning of #doRender method).

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

VertexBuffer is just re-name of WorldRenderer which is basically a wrapper around GL vertex rendering.

Tesselator is basically class with method that allows you to get VertexBuffer.

Note - everything done in VertexBuffer can be done with normal GL (as said - it's just a wrapper).

Why is VertexBuffer "superior" to GL - well, it has some fancy VertexFormat that nicely wrap all stuff you would need to do using GL into simple calls.

 

As to rotating to face player - Look at RenderFireball and/or RenderSnowball - it literally gives you full code, especially that part with rotating to face camera (beginning of #doRender method).

Ok, there is just one problem. The snowball class is using the RenderItem thing to render it, but I've got no item to be rendered, because my Entity is not an item.

Developer of Primeval Forest.

Link to comment
Share on other sites

Look at RenderFireball and/or RenderSnowball

 

Drawing in 3D (world) is like drawing on screen (e.g Gui.class) you just add translation/scaling/rotation.

 

You can even use drawTexturedModalRect from Gui class. Just make sure you translate/scale/rotate to right position in world.

Or draw simple boxes or panes (drawRect), or anything really.

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

Look at RenderFireball and/or RenderSnowball

 

Drawing in 3D (world) is like drawing on screen (e.g Gui.class) you just add translation/scaling/rotation.

 

You can even use drawTexturedModalRect from Gui class. Just make sure you translate/scale/rotate to right position in world.

Or draw simple boxes or panes (drawRect), or anything really.

Well, I don't have access to the method drawTexturedModalRect from the GUI class.

And just copy it into my render class would not work because I don't have access to all variables. And I don't think I would need stuff like textureX, textureY, width and height.

Developer of Primeval Forest.

Link to comment
Share on other sites

Well, I don't have access to the method drawTexturedModalRect from the GUI class.

 

The hell you don't.

 

Gui#drawTexturedModalRect

 

If your class extends anything that inherits from

Gui

then you have drawTexturedModalRect.

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

Well, I don't have access to the method drawTexturedModalRect from the GUI class.

 

The hell you don't.

 

Gui#drawTexturedModalRect

 

If your class extends anything that inherits from

Gui

then you have drawTexturedModalRect.

Well, but my class does NOT inherits from Gui. It's an ENTITY, not an Gui. ;)

 

I'm inheriting from Render.

Developer of Primeval Forest.

Link to comment
Share on other sites

Jesus christ... what's the difference, you don't need GUI class for anythig. Its just a utility class. If you want so hard to use it just copy its methods to static class or to your renderer.

 

Gui class gives you examples how to use VertexBuffer - which again - is just a WRAPPER around NORMAL GL. So either learn 1st, or even better - both. You literally have like 50 Render classes to learn from. I told where exacly to look for the exact thing you want. You can almost copy that shit.

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

Well, I'm not going to learn some stupid old OpenGL 2.1.... why should I?

 

For anything which is not called Minecraft I would have to re-learn nearly everything!

And I'm currently learning modern OpenGL (3.3+), even when the book I've got is for OpenGL 4.5.

 

And you can't just learn from such classes when there is nearly no comment or javadoc stuff that easily. And even when there would be it would take a very long time.

I even saw code where textures where drawn, but it wasn't 1.9 code and because I've got no idea how to port that code over and because I don't know which coordinates and all of that stuff I have to use for that what I want......

 

I'm trying to do it know with OpenGL 4.5! Don't care how many people might not have OpenGL 4.5. Seems no other way which makes fun... and isn't frustrating....

Developer of Primeval Forest.

Link to comment
Share on other sites

Then implement it using common opengl features.

You can push matrix and load identity for both projection and modelview, and draw 2d contents. I used this method for my texture test.

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

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

    • Slot deposit 3000 adalah situs slot deposit 3000 via dana yang super gacor dimana para pemain dijamin garansi wd hari ini juga hanya dengan modal receh berupa deposit sebesar 3000 baik via dana, ovo, gopay maupun linkaja untuk para pemain pengguna e-wallet di seluruh Indonesia.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT 3000 ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • OLXTOTO: Menikmati Sensasi Bermain Togel dan Slot dengan Aman dan Mengasyikkan Dunia perjudian daring terus berkembang dengan cepat, dan salah satu situs yang telah menonjol dalam pasar adalah OLXTOTO. Sebagai platform resmi untuk permainan togel dan slot, OLXTOTO telah memenangkan kepercayaan banyak pemain dengan menyediakan pengalaman bermain yang aman, adil, dan mengasyikkan. DAFTAR OLXTOTO DISINI <a href="https://imgbb.com/"><img src="https://i.ibb.co/GnjSVpx/daftar1-480x480.webp" alt="daftar1-480x480" border="0" /></a> Keamanan Sebagai Prioritas Utama Salah satu aspek utama yang membuat OLXTOTO begitu menonjol adalah komitmennya terhadap keamanan pemain. Dengan menggunakan teknologi enkripsi terkini, situs ini memastikan bahwa semua informasi pribadi dan keuangan para pemain tetap aman dan terlindungi dari akses yang tidak sah. Beragam Permainan yang Menarik Di OLXTOTO, pemain dapat menemukan beragam permainan yang menarik untuk dinikmati. Mulai dari permainan klasik seperti togel hingga slot modern dengan fitur-fitur inovatif, ada sesuatu untuk setiap selera dan preferensi. Grafik yang memukau dan efek suara yang mengagumkan menambah keseruan setiap putaran. Peluang Menang yang Tinggi Salah satu hal yang paling menarik bagi para pemain adalah peluang menang yang tinggi yang ditawarkan oleh OLXTOTO. Dengan pembayaran yang adil dan peluang yang setara bagi semua pemain, setiap taruhan memberikan kesempatan nyata untuk memenangkan hadiah besar. Layanan Pelanggan yang Responsif Tim layanan pelanggan OLXTOTO siap membantu para pemain dengan setiap pertanyaan atau masalah yang mereka hadapi. Dengan layanan yang ramah dan responsif, pemain dapat yakin bahwa mereka akan mendapatkan bantuan yang mereka butuhkan dengan cepat dan efisien. Kesimpulan OLXTOTO telah membuktikan dirinya sebagai salah satu situs terbaik untuk penggemar togel dan slot online. Dengan fokus pada keamanan, beragam permainan yang menarik, peluang menang yang tinggi, dan layanan pelanggan yang luar biasa, tidak mengherankan bahwa situs ini telah menjadi pilihan utama bagi banyak pemain. Jadi, jika Anda mencari pengalaman bermain yang aman, adil, dan mengasyikkan, jangan ragu untuk bergabung dengan OLXTOTO hari ini dan rasakan sensasi kemenangan!
    • Slot deposit dana adalah situs slot deposit dana yang juga menerima dari e-wallet lain seperti deposit via dana, ovo, gopay & linkaja terlengkap saat ini, sehingga para pemain yang tidak memiliki rekening bank lokal bisa tetap bermain slot dan terbantu dengan adanya fitur tersebut.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT DANA ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • Slot deposit dana adalah situs slot deposit dana minimal 5000 yang dijamin garansi super gacor dan gampang menang, dimana para pemain yang tidak memiliki rekening bank lokal tetap dalam bermain slot dengan melakukan deposit dana serta e-wallet lainnya seperti ovo, gopay maupun linkaja lengkap. Agar para pecinta slot di seluruh Indonesia tetap dapat menikmati permainan tanpa halangan apapun khususnya metode deposit, dimana ketersediaan cara deposit saat ini yang lebih beragam tentunya sangat membantu para pecinta slot.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT DANA ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • Slot deposit pulsa adalah situs slot deposit pulsa tanpa potongan apapun yang dijamin garansi terpercaya, dimana kamu bisa bermain slot dengan melakukan deposit pulsa dan tanpa dikenakan potongan apapun sehingga dana yang masuk ke dalam akun akan 100% utuh. Proses penarikan dana juga dijamin gampang dan tidak sulit sehingga kamu tidak perlu khawatir akan kemenangan yang akan kamu peroleh dengan sangat mudah jika bermain disini.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT PULSA TANPA POTONGAN ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
  • Topics

×
×
  • Create New...

Important Information

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