Jump to content

Recommended Posts

Posted (edited)


 

Well, my problem is this: I've been trying to modify the minecraft hud for a long time, relying only on old threads and decompiling mods that mess with that. So far I haven't managed much, so I decided to come here and ask for help. My objective is to change the game bars, add some slots and information on the screen.


Here's the code I'm using to stop rendering what I don't need, and this "renderOverlay" method should create a bar on the screen, but it actually makes the screen completely black

public void onRender(RenderGameOverlayEvent.Pre event) {
		this.mc.options.heldItemTooltips = false;
		renderOverlay(event.getMatrixStack(), 15);
		switch (event.getType()) {
	      case AIR:
	          event.setCanceled(true); 
	      case ARMOR:
	          event.setCanceled(true); 
	      case EXPERIENCE:
	          event.setCanceled(true); 
	      case FOOD:
	          event.setCanceled(true); 
	      case HEALTH:
	          event.setCanceled(true); 
	      case HEALTHMOUNT:
	          event.setCanceled(true); 
	      case HOTBAR:
	          event.setCanceled(true); 
	      case JUMPBAR:
	          event.setCanceled(true); 
	      case POTION_ICONS:
	          event.setCanceled(true); 
	    } 
	  }

 

Edited by Daviipkp
Posted
private void renderOverlay(MatrixStack ms, float partialTicks) {
        drawElement(ms, partialTicks);
      }
    
    private void bind(ResourceLocation res) {
        this.mc.textureManager.bind(res);;
      }
    
    private void drawElement(MatrixStack ms, float partialTicks) {
        bind(AbstractGui.GUI_ICONS_LOCATION);
        RenderSystem.pushMatrix();
        RenderSystem.enableBlend();
        Drawer.drawRect(20, 20, 10, 10, 29836473);
        RenderSystem.popMatrix();
      }



Drawer.drawRect():

 

public static void drawRect(int posX, int posY, int width, int height, int color) {
	    float f3;
	    if (color == -1)
	      return; 
	    if (color <= 16777215 && color >= 0) {
	      f3 = 1.0F;
	    } else {
	      f3 = (color >> 24 & 0xFF) / 255.0F;
	    } 
	    float f = (color >> 16 & 0xFF) / 255.0F;
	    float f1 = (color >> 8 & 0xFF) / 255.0F;
	    float f2 = (color & 0xFF) / 255.0F;
	    RenderSystem.enableBlend();
	    RenderSystem.disableTexture();
	    RenderSystem.blendFuncSeparate(770, 771, 1, 0);
	    RenderSystem.color4f(f, f1, f2, f3);
	    RenderSystem.disableDepthTest();
	    Tessellator tessellator = Tessellator.getInstance();
	    BufferBuilder vertexbuffer = tessellator.getBuilder();
	    vertexbuffer.begin(7, DefaultVertexFormats.BLOCK);
	    vertexbuffer.normal(posX, posY + height, (float) 0.0D).endVertex();
	    vertexbuffer.normal(posX + width, posY + height, (float) 0.0D).endVertex();
	    vertexbuffer.normal(posX + width, posY, (float) 0.0D).endVertex();
	    vertexbuffer.normal(posX, posY, (float) 0.0D).endVertex();
	    tessellator.end();
	    RenderSystem.enableTexture();
	    RenderSystem.disableBlend();
	    RenderSystem.enableDepthTest();
	    RenderSystem.color3f(1.0F, 1.0F, 1.0F);
	  }

there's a lot I don't know how it works, since I'm a bit new to modding, but I've been programming in Java for a while

Posted
Just now, diesieben07 said:

AbstractGui already has a method to fill a rectangle with a color, you should use that one.

how and where? 
AbstractGui.fill(ms, ?, ?, ?, ?, ?);

Posted
17 hours ago, Daviipkp said:

 


public void onRender(RenderGameOverlayEvent.Pre event) {
		this.mc.options.heldItemTooltips = false;
		renderOverlay(event.getMatrixStack(), 15);
		switch (event.getType()) {
	      case AIR:
	          event.setCanceled(true); 
	      case ARMOR:
	          event.setCanceled(true); 
	      case EXPERIENCE:
	          event.setCanceled(true); 
	      case FOOD:
	          event.setCanceled(true); 
	      case HEALTH:
	          event.setCanceled(true); 
	      case HEALTHMOUNT:
	          event.setCanceled(true); 
	      case HOTBAR:
	          event.setCanceled(true); 
	      case JUMPBAR:
	          event.setCanceled(true); 
	      case POTION_ICONS:
	          event.setCanceled(true); 
	    } 
	  }

 

Cough

default:
	event.setCanceled(true);

Cough

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.

Posted
15 minutes ago, poopoodice said:

MatrixStack, x1, y1, x2, y2, colour

about the color, what should i put there? hex color?

x1 and y1 is one of the edges of the rectangle, right?
so x2 and y2 would be the other end, and will everything in between those two be the color I choose?

Posted
17 hours ago, Daviipkp said:

what should i put there? hex color?

What is the signature of the method you're calling. It should tell you.

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.

Posted
11 hours ago, Draco18s said:

What is the signature of the method you're calling. It should tell you.

that's a method from Minecraft classes. Is completely confuse (something like _p_82638_)

Posted

That's the name of the parameter, what's it's Type

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.

Posted
1 hour ago, Daviipkp said:

Integer

Alright then.

On 7/30/2021 at 6:38 PM, Daviipkp said:

about the color, what should i put there? hex color?

How would you express a color as an integer?

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.

Posted

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.

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

    • Im trying to build my mod using shade since i use the luaj library however i keep getting this error Reason: Task ':reobfJar' uses this output of task ':shadowJar' without declaring an explicit or implicit dependency. This can lead to incorrect results being produced, depending on what order the tasks are executed. So i try adding reobfJar.dependsOn shadowJar  Could not get unknown property 'reobfJar' for object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler. my gradle file plugins { id 'eclipse' id 'idea' id 'maven-publish' id 'net.minecraftforge.gradle' version '[6.0,6.2)' id 'com.github.johnrengelman.shadow' version '7.1.2' id 'org.spongepowered.mixin' version '0.7.+' } apply plugin: 'net.minecraftforge.gradle' apply plugin: 'org.spongepowered.mixin' apply plugin: 'com.github.johnrengelman.shadow' version = mod_version group = mod_group_id base { archivesName = mod_id } // Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17. java.toolchain.languageVersion = JavaLanguageVersion.of(17) //jarJar.enable() println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}" minecraft { mappings channel: mapping_channel, version: mapping_version copyIdeResources = true runs { configureEach { workingDirectory project.file('run') property 'forge.logging.markers', 'REGISTRIES' property 'forge.logging.console.level', 'debug' arg "-mixin.config=derp.mixin.json" mods { "${mod_id}" { source sourceSets.main } } } client { // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. property 'forge.enabledGameTestNamespaces', mod_id } server { property 'forge.enabledGameTestNamespaces', mod_id args '--nogui' } gameTestServer { property 'forge.enabledGameTestNamespaces', mod_id } data { workingDirectory project.file('run-data') args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') } } } sourceSets.main.resources { srcDir 'src/generated/resources' } repositories { flatDir { dirs './libs' } maven { url = "https://jitpack.io" } } configurations { shade implementation.extendsFrom shade } dependencies { minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" implementation 'org.luaj:luaj-jse-3.0.2' implementation fg.deobf("com.github.Virtuoel:Pehkui:${pehkui_version}") annotationProcessor 'org.spongepowered:mixin:0.8.5:processor' minecraftLibrary 'luaj:luaj-jse:3.0.2' shade 'luaj:luaj-jse:3.0.2' } // Example for how to get properties into the manifest for reading at runtime. tasks.named('jar', Jar).configure { manifest { attributes([ 'Specification-Title' : mod_id, 'Specification-Vendor' : mod_authors, 'Specification-Version' : '1', // We are version 1 of ourselves 'Implementation-Title' : project.name, 'Implementation-Version' : project.jar.archiveVersion, 'Implementation-Vendor' : mod_authors, 'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"), "TweakClass" : "org.spongepowered.asm.launch.MixinTweaker", "TweakOrder" : 0, "MixinConfigs" : "derp.mixin.json" ]) } rename 'mixin.refmap.json', 'derp.mixin-refmap.json' } shadowJar { archiveClassifier = '' configurations = [project.configurations.shade] finalizedBy 'reobfShadowJar' } assemble.dependsOn shadowJar reobf { re shadowJar {} } publishing { publications { mavenJava(MavenPublication) { artifact jar } } repositories { maven { url "file://${project.projectDir}/mcmodsrepo" } } }  
    • Todas as versões do Minecraft Forge são repentinamente tela preta, mesmo sem mods (tentei reinstalar o Minecraft original, Java, atualizar os drivers não funciona)
    • When i join minecraft all ok, when i join world all working fine, but when i open indentity menu, i get this The game crashed whilst unexpected error Error: java.lang.NullPointerException: Cannot invoke "top.ribs.scguns.common.Gun$Projectile.getDamage()" because "this.projectile" is null crash report here https://paste.ee/p/0vKaf
  • Topics

×
×
  • Create New...

Important Information

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