Jump to content

Recommended Posts

Posted

How would you continually fade a HUD element out?  I assume this requires OpenGL, which I'm not very familiar with.

 

In your drawScreen() method of your GUI you would use a GL.11 alpha setting. I don't know much about GL.11 either but simply look up GL transparency, like at this link: http://relativity.net.au/gaming/java/Transparency.html. I think one approach is that you could create colors with increasing transparency and use those when you draw the GUI. There is probably another way to take the whole "matrix" and change it's transparency.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Posted

How do you "hook" a player arriving in a dimension?

PlayerChangedDimensionEvent

FML event, has from and to dimension.

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

Posted

Alright, the only thing left is the blending...it's just not doing what I'm expecting due to my lack of knowledge of OGL, it's not automating at all.

 

 

EntityPlayer player = Minecraft.getMinecraft().thePlayer;
DLFileHandler.readConfig();
this.cardName = DLFileHandler.queryDimName(player.dimension);
GL11.glDisable(GL11.GL_LIGHTING);
this.mc.renderEngine.bindTexture(cardTexture);
int cardBorder = 2;
int cardOffset = 6;
int cardWidth = 84;
int cardHeight = 14;
int color = 0xdcdcdc;
this.drawTexturedModalRect(cardOffset, cardOffset, 0, 0, cardWidth, cardHeight);
int stringWidth = mc.fontRenderer.getStringWidth(cardName);
this.mc.fontRenderer.drawStringWithShadow(cardName, (((cardWidth - cardBorder - cardOffset) / 2) + 1) - (stringWidth / 3), 9, color);
--this.cardTime;
if(cardTime < 80)
{
   GL11.glEnable(GL11.GL_BLEND);
   GL11.glBlendFunc(GL11.GL_SRC_COLOR, GL11.GL_ONE_MINUS_SRC_COLOR);
   GL11.glColor4f(0.5F, 0.5F, 0.5F, (float)this.cardTime / 80);
}
if(cardTime < 1)
{
   cardTime = cardTimeMax;
   arrived = false;

}

 

 

This does nothing, it still just abruptly disappears, and there's no blending going on.

Posted

You need to call GL before you draw :P

 

EDIT

Also few things - when you finish (depending WHERE are you drawing things) you need to get back to previous state. Where are you drawing your cards? (From where*, my guess overlay event?)

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

Posted

Yeah: HUD

 

 

Edit: Ok, now the modal rect fades properly but the string doesn't :I

 

 

	@SubscribeEvent
public void onRender(RenderGameOverlayEvent event)
{
	if(event.isCancelable() || event.type != RenderGameOverlayEvent.ElementType.HOTBAR)
	{
		return;
	}
	if(arrived)
	{
		EntityPlayer player = Minecraft.getMinecraft().thePlayer;
		DLFileHandler.readConfig();
		this.cardName = DLFileHandler.queryDimName(player.dimension);
		int cardBorder = 2;
		int cardOffset = 6;
		int cardWidth = 84;
		int cardHeight = 14;
		int color = 0xdcdcdc;
		int stringWidth = mc.fontRenderer.getStringWidth(cardName);
		--this.cardTime;
		if(this.cardTime >= 81)
		{
			GL11.glDisable(GL11.GL_LIGHTING);
			GL11.glEnable(GL11.GL_BLEND);
			GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
			GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
			this.mc.renderEngine.bindTexture(cardTexture);
			this.drawTexturedModalRect(cardOffset, cardOffset, 0, 0, cardWidth, cardHeight);
			this.mc.fontRenderer.drawStringWithShadow(cardName, (((cardWidth - cardBorder - cardOffset) / 2) + 1) - (stringWidth / 3), 9, color);
		}
		if(this.cardTime < 81)
		{
			GL11.glDisable(GL11.GL_LIGHTING);
			GL11.glEnable(GL11.GL_BLEND);
			GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
			GL11.glColor4f(1.0F, 1.0F, 1.0F, (float)this.cardTime / 80);
			this.mc.renderEngine.bindTexture(cardTexture);
			this.drawTexturedModalRect(cardOffset, cardOffset, 0, 0, cardWidth, cardHeight);
			this.mc.fontRenderer.drawStringWithShadow(cardName, (((cardWidth - cardBorder - cardOffset) / 2) + 1) - (stringWidth / 3), 9, color);
		}
		if(cardTime < 1)
		{
			this.cardTime = this.cardTimeMax;
			arrived = false;
		}
	}
}

Posted

Didn't work, still doesn't fade.  I'm guessing I need to make my own FontRenderer and override all the drawString methods to fix this, since glColor4f is set inside the vanilla methods.

Posted

No you don't. I am CERTAIN that fading text using normal fontRenderer is possible as I archieved it accidentally while coding my entity labels. It's matter of some GL state/mode. I'll have look.

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

Posted

No you don't. I am CERTAIN that fading text using normal fontRenderer is possible as I archieved it accidentally while coding my entity labels. It's matter of some GL state/mode. I'll have look.

 

There may be another way, but if you look at the alpha field in FontRenderer it is set by taking some of the bits from the color passed into the drawString() method. There isn't any other manipulation of the alpha field (which is private and doesn't have a setter method). So I think my suggestion should work -- create a color that includes the alpha.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Posted

Did it manually:

int Blue = 220;
int Green = 220;
int Red = 220;
int Alpha = 255;
int color = Blue + (Green <<  + (Red << 16) + (Alpha << 24);

 

And then to automate:

Alpha = (int)(cardTime * (255.0F/120.0F));

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

    • When I first heard about Bitcoin back in 2018, I was skeptical. The idea of a decentralized, digital currency seemed too good to be true. But I was intrigued as I learned more about the technology behind it and its potential. I started small, investing just a few hundred dollars, dipping my toes into the cryptocurrency waters. At first, it was exhilarating to watch the value of my investment grow exponentially. I felt like I was part of the future, an early adopter of this revolutionary new asset. But that euphoria was short-lived. One day, I logged into my digital wallet only to find it empty - my Bitcoin had vanished without a trace. It turned out that the online exchange I had trusted had been hacked, and my funds were stolen. I was devastated, both financially and emotionally. All the potential I had seen in Bitcoin was tainted by the harsh reality that with decentralization came a lack of regulation and oversight. My hard-earned money was gone, lost to the ether of the digital world. This experience taught me a painful lesson about the price of trust in the uncharted territory of cryptocurrency. While the technology holds incredible promise, the risks can be catastrophic if you don't approach it with extreme caution. My Bitcoin investment gamble had failed, and I was left to pick up the pieces, wiser but poorer for having placed my faith in the wrong hands. My sincere appreciation goes to MUYERN TRUST HACKER. You are my hero in recovering my lost funds. Send a direct m a i l ( muyerntrusted ( @ ) mail-me ( . )c o m ) or message on whats app : + 1 ( 4-4-0 ) ( 3 -3 -5 ) ( 0-2-0-5 )
    • You could try posting a log (if there is no log at all, it may be the launcher you are using, the FAQ may have info on how to enable the log) as described in the FAQ, however this will probably need to be reported to/remedied by the mod author.
    • So me and a couple of friends are playing with a shitpost mod pack and one of the mods in the pack is corail tombstone and for some reason there is a problem with it, where on death to fire the player will get kicked out of the server and the tombstone will not spawn basically deleting an entire inventory, it doesn't matter what type of fire it is, whether it's from vanilla fire/lava, or from modded fire like ice&fire/lycanites and it's common enough to where everyone on the server has experienced at least once or twice and it doesn't give any crash log. a solution to this would be much appreciated thank you!
    • It is 1.12.2 - I have no idea if there is a 1.12 pack
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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