Jump to content

drawing player screen overlay 1.12.2


poopoodice

Recommended Posts

As title, I want to draw an overlay texture on to player's screen when left clicked similar to the pumpkin blur.

Here us the code:

public class OverlayHandler extends Gui
{
	private static final ResourceLocation TEST = new ResourceLocation(Reference.MOD_ID + ":textures/gui/test.png");
	private boolean clicked = false;
	
    @SubscribeEvent
    public void onKeyPressed(MouseEvent event)
    {
        if(!Minecraft.getMinecraft().inGameHasFocus)
            return;

        if(!event.isButtonstate())
            return;

        Minecraft mc = Minecraft.getMinecraft();
        EntityPlayer player = mc.player;
        if(player != null)
        {
            ItemStack itemstack = player.getHeldItemMainhand();
            if(itemstack.getItem() instanceof ItemBase)
            {
            	int down = event.getButton();
            	if(down == 0 && !this.clicked)
            	{
            		this.clicked = true;
        			mc.getTextureManager().bindTexture(TEST);
        			this.drawTexturedModalRect(0, 0, 0, 0, 256, 256);
            	}
            	else if(down == 0 && this.clicked)
            	{
            		this.clicked = false;
            	}
            }
        }
    }
}

I have checked the click was called but nothing has changed to the screen.

Edited by poopoodice
Link to comment
Share on other sites

Currently you're only drawing that texture once, right when the button is clicked.You need to toggle something in your GUI class when the button is clicked, and then call drawTexturedModalRect() within drawScreen(), according to that value.

 

Also: Code-Style: 4

Fancy 3D Graphing Calculator mod, with many different coordinate systems.

Lightweight 3D/2D position/vector transformations library, also with support for different coordinate systems.

Link to comment
Share on other sites

1 hour ago, SerpentDagger said:

Currently you're only drawing that texture once, right when the button is clicked.You need to toggle something in your GUI class when the button is clicked, and then call drawTexturedModalRect() within drawScreen(), according to that value.

 

Also: Code-Style: 4

How do I toggle it? Apparently, while loop will not work. And do you mean

drawSplashScreen(textureManagerInstance)

 

Link to comment
Share on other sites

6 hours ago, poopoodice said:

mc.getTextureManager().bindTexture(TEST); this.drawTexturedModalRect(0, 0, 0, 0, 256, 256);

You cant render anything in that event. You need to use the RenderGameOverlayEvent.

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

2 minutes ago, Toma™ said:

If you want to use only overlay, and not actual GUI then you can use the RenderGameOverlayEvent, either Pre or Post. And be careful about it, because it fires for multiple elements. And for the toggling, what about toggling one boolean? While loop is pretty bad idea 

Does the class still need to extend Gui or RenderGameOverlayEvent is all good?

Link to comment
Share on other sites

1 minute ago, poopoodice said:

Does the class still need to extend Gui or RenderGameOverlayEvent is all good?

If you want to use drawTexturedModelRect the way you are then yes it does.

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

11 minutes ago, poopoodice said:

WHat should I do without extending Gui?

Use Gui,drawModalRectWithCustomSizedTexture or Gui.drawScaledCustomSizeModalRect

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

Just now, poopoodice said:

So I don't use RenderGameOverlayEvent anymore?

No you still use that. It is an event. Its just you can remove "extends Gui" and replace "drawTexturedModelRect" with "Gui. drawModalRectWithCustomSizedTexture" or "Gui. drawScaledCustomSizeModalRect"

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

public class AimHandler
{
	private static final ResourceLocation TEST = new ResourceLocation(Reference.MOD_ID + ":textures/gui/test.png");
	private boolean clicked = false;
	
    @SubscribeEvent
    public void onKeyPressed(MouseEvent event)
    {
    	Minecraft mc = Minecraft.getMinecraft();
        EntityPlayer player = mc.player;
        ItemStack itemstack = player.getHeldItemMainhand();
        if(player != null && Minecraft.getMinecraft().inGameHasFocus && event.isButtonstate() && itemstack.getItem() instanceof ItemBase && event.getButton() == 0)
        {
           	this.clicked = !this.clicked;	
        }
        return;
    }
    
    @SubscribeEvent
    public void onRenderOverlay(RenderGameOverlayEvent renderevent)
    {
    	Minecraft mc = Minecraft.getMinecraft();
    	if (this.clicked)
    	{
    		mc.getTextureManager().bindTexture(TEST);
    		Gui.drawScaledCustomSizeModalRect(x, y, u, v, uWidth, vHeight, width, height, tileWidth, tileHeight);
        }  	
        return;
    }
}

Is this the correct way to do it?

Link to comment
Share on other sites

 
 
 
 
8 minutes ago, diesieben07 said:

Please read my previous post.

    @SubscribeEvent
    public void onRenderOverlay(RenderGameOverlayEvent.Post renderevent)
    {
    	Minecraft mc = Minecraft.getMinecraft();
    	if (this.clicked)
    	{
    		mc.getTextureManager().bindTexture(TEST);
    		Gui.drawScaledCustomSizeModalRect(x, y, u, v, uWidth, vHeight, width, height, tileWidth, tileHeight);
        }  	
        return;
    }

Is this correct? (I added .Post to the end of RenderGameOverlayEvent. If nothing's wrong, what does the u and v stands for in Gui.drawScaledCustomSizeModalRect? 

Link to comment
Share on other sites

4 minutes ago, diesieben07 said:

You still need to choose one ElementType. If you don't know, choose ALL.

  • x, y: Position on screen.
  • u, v: Position in the texture.
  • uWidth, vHeight: Size in the texture.
  • width, height: Size on screen.
  • tileWidth, tileHeight: Total size of the texture.

Which variable should I assign RenderGameOverlayEvent.ElementType.ALL; to?

Btw, is there a way to let the picture I drew not block the vanilla stuff? Is it referring to the element type as well?

Edited by poopoodice
Link to comment
Share on other sites

 
 
 
 
16 hours ago, diesieben07 said:

I said nothing of the sort. RenderGameOverlayEvent has a method getType that tells you the type being rendered. You need to check that you only render on one of them, not all, otherwise you render multiple times every frame.

Okay, I ran the code and it seems like it has been rendered multiple times every frame just like what you mentioned. How do I declare the element type? 

Link to comment
Share on other sites

22 minutes ago, poopoodice said:

How do I declare the element type? 

You don't declare the ElementType .

16 hours ago, diesieben07 said:

I said nothing of the sort. RenderGameOverlayEvent has a method getType that tells you the type being rendered. You need to check that you only render on one of them

 

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

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

    • Baba  Serege [[+27-73 590 8989]] has experience of 27 years in helping and guiding many people from all over the world. His psychic abilities may help you answer and resolve many unanswered questions. He specialize in helping women and men from all walks of life.. 1) – Bring back lost lover. even if lost for a long time. 2) – My lover is abusing alcohol, partying and cheating on me I urgently need help” 3) – Divorce or court issues. 4) – Is your love falling apart? 5) – Do you want your love to grow stronger? 6) – Is your partner losing interest in you? 7) – Do you want to catch your partner cheating on you? – We help to keep your partner faithful and loyal to you. 9) – We recover love and happiness when relationship breaks down. 10) – Making your partner loves you alone. 11) – We create loyalty and everlasting love between couples. 12) – Get a divorce settlement quickly from your ex-partner. 13) – We create everlasting love between couples. 14) – We help you look for the best suitable partner. 15) – We bring back lost lover even if lost for a long time. 16) – We strengthen bonds in all love relationship and marriages 17) – Are you an herbalist who wants to get more powers? 18) – Buy a house or car of your dream. 19) – Unfinished jobs by other doctors come to me. 20) – I help those seeking employment. 21) – Pensioners free treatment. 22) – Win business tenders and contracts. 23) – Do you need to recover your lost property? 24) – Promotion at work and better pay. 25) – Do you want to be protected from bad spirits and nightmares? 26) – Financial problems. 27) – Why you can’t keep money or lovers? 28) – Why you have a lot of enemies? 29) – Why you are fired regularly on jobs? 30) – Speed up money claim spell, delayed payments, pension and accident funds 31) – I help students pass their exams/interviews. 33) – Removal of bad luck and debts. 34) – Are struggling to sleep because of a spiritual wife or husband. 35- ) Recover stolen property
    • OLXTOTO adalah situs bandar togel online resmi terbesar dan terpercaya di Indonesia. Bergabunglah dengan OLXTOTO dan nikmati pengalaman bermain togel yang aman dan terjamin. Koleksi toto 4D dan togel toto terlengkap di OLXTOTO membuat para member memiliki pilihan taruhan yang lebih banyak. Sebagai situs togel terpercaya, OLXTOTO menjaga keamanan dan kenyamanan para membernya dengan sistem keamanan terbaik dan enkripsi data. Transaksi yang cepat, aman, dan terpercaya merupakan jaminan dari OLXTOTO. Nikmati layanan situs toto terbaik dari OLXTOTO dengan tampilan yang user-friendly dan mudah digunakan. Layanan pelanggan tersedia 24/7 untuk membantu para member. Bergabunglah dengan OLXTOTO sekarang untuk merasakan pengalaman bermain togel yang menyenangkan dan menguntungkan.
    • Baba  Serege [[+27-73 590 8989]] has experience of 27 years in helping and guiding many people from all over the world. His psychic abilities may help you answer and resolve many unanswered questions. He specialize in helping women and men from all walks of life.. 1) – Bring back lost lover. even if lost for a long time. 2) – My lover is abusing alcohol, partying and cheating on me I urgently need help” 3) – Divorce or court issues. 4) – Is your love falling apart? 5) – Do you want your love to grow stronger? 6) – Is your partner losing interest in you? 7) – Do you want to catch your partner cheating on you? – We help to keep your partner faithful and loyal to you. 9) – We recover love and happiness when relationship breaks down. 10) – Making your partner loves you alone. 11) – We create loyalty and everlasting love between couples. 12) – Get a divorce settlement quickly from your ex-partner. 13) – We create everlasting love between couples. 14) – We help you look for the best suitable partner. 15) – We bring back lost lover even if lost for a long time. 16) – We strengthen bonds in all love relationship and marriages 17) – Are you an herbalist who wants to get more powers? 18) – Buy a house or car of your dream. 19) – Unfinished jobs by other doctors come to me. 20) – I help those seeking employment. 21) – Pensioners free treatment. 22) – Win business tenders and contracts. 23) – Do you need to recover your lost property? 24) – Promotion at work and better pay. 25) – Do you want to be protected from bad spirits and nightmares? 26) – Financial problems. 27) – Why you can’t keep money or lovers? 28) – Why you have a lot of enemies? 29) – Why you are fired regularly on jobs? 30) – Speed up money claim spell, delayed payments, pension and accident funds 31) – I help students pass their exams/interviews. 33) – Removal of bad luck and debts. 34) – Are struggling to sleep because of a spiritual wife or husband. 35- ) Recover stolen property
  • Topics

×
×
  • Create New...

Important Information

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