Jump to content

[1.7.10]Rendering Custom Rendered Block - Alpha Problem


Recommended Posts

Posted

Hello, I am making a pipe that has edges that are opaque and the middle of it is translucent. I have the middle are tinted blue, but still translucent. I am using tessellators by the way. My problem is that it is not rendering some pipes that are behind other pipe. Basically I experience the bug depending on which of the two blocks was placed first. Does any one have any suggestions. All help is appreciated, Thank You!

Don't be afraid to ask question when modding, there are no stupid question! Unless you don't know java then all your questions are stupid!

Posted

This is my render for my pipe block.

 

package mod.xtronius.ttm.tileEntity.renderer;

import mod.xtronius.ttm.lib.Reference;
import mod.xtronius.ttm.tileEntity.TileEntityPipe;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.Tessellator;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.common.util.ForgeDirection;

import org.lwjgl.opengl.GL11;

public class RenderPipe extends TileEntitySpecialRenderer {

float pixel = 1F/16F;
float texel = 1F/32F;

private ResourceLocation texture = new ResourceLocation(Reference.MOD_ASSET, "textures/blocks/BlockPipe2.png");
private Minecraft mc = Minecraft.getMinecraft();

@Override
public void renderTileEntityAt(TileEntity tileEntity, double x, double y, double z, float f) {
	GL11.glTranslated(x, y, z);
	GL11.glDisable(GL11.GL_LIGHTING);
	GL11.glEnable(GL11.GL_BLEND);
	this.bindTexture(texture);
	TileEntityPipe pipe = (TileEntityPipe) tileEntity;
	if(pipe.onlyOneOpposite(pipe.connections)) {
		for(int i = 0; i < pipe.connections.length; i++) {
			if(pipe.connections[i] != null) {
				drawStraight(pipe.connections[i]);
				break;
			}
		}
	} else {
		this.drawCore(tileEntity);
		for(int i = 0; i < pipe.connections.length; i++) {
			if(pipe.connections[i] != null) {
				drawConnection(pipe.connections[i]);
			}
		}
	}
	GL11.glDisable(GL11.GL_BLEND);
	GL11.glEnable(GL11.GL_LIGHTING);
	GL11.glTranslated(-x, -y, -z);
}

public void drawConnection(ForgeDirection dir) {

	float dist = (pixel*10);

	Tessellator tes = Tessellator.instance;
	tes.startDrawingQuads();
	{
		GL11.glTranslated(0.5, 0.5, 0.5);
		if(dir.equals(ForgeDirection.UP)) {
			//ROTATE
		} else if(dir.equals(ForgeDirection.DOWN)) {
			GL11.glRotatef(180, 1, 0, 0);
		} else if(dir.equals(ForgeDirection.NORTH)) {
			GL11.glRotatef(270, 1, 0, 0);
		} else if(dir.equals(ForgeDirection.SOUTH)) {
			GL11.glRotatef(90, 1, 0, 0);
		} else if(dir.equals(ForgeDirection.EAST)) {
			GL11.glRotatef(270, 0, 0, 1);
		} else if(dir.equals(ForgeDirection.WEST)) {
			GL11.glRotatef(90, 0, 0, 1);
		}
		GL11.glTranslated(-0.5, -0.5, -0.5);

		if(this.mc.isFancyGraphicsEnabled()) {
			tes.addVertexWithUV(1-dist, dist, dist, 14*texel, 11*texel);
			tes.addVertexWithUV(1-dist, 1, dist, 14*texel, 11*texel);
			tes.addVertexWithUV(dist, 1, dist, 14*texel, 1*texel);
			tes.addVertexWithUV(dist, dist, dist, 14*texel, 1*texel);//

			tes.addVertexWithUV(dist, dist, 1-dist, 14*texel, 11*texel);
			tes.addVertexWithUV(dist, 1, 1-dist, 14*texel, 11*texel);
			tes.addVertexWithUV(1-dist, 1, 1-dist, 14*texel, 1*texel);
			tes.addVertexWithUV(1-dist, dist, 1-dist, 14*texel, 1*texel);//

			tes.addVertexWithUV(dist, dist, dist, 14*texel, 11*texel);
			tes.addVertexWithUV(dist, 1, dist, 14*texel, 11*texel);
			tes.addVertexWithUV(dist, 1, 1-dist, 14*texel, 1*texel);
			tes.addVertexWithUV(dist, dist, 1-dist, 14*texel, 1*texel);//

			tes.addVertexWithUV(1-dist, dist, 1-dist, 14*texel, 11*texel);
			tes.addVertexWithUV(1-dist, 1, 1-dist, 14*texel, 11*texel);
			tes.addVertexWithUV(1-dist, 1, dist, 14*texel, 1*texel);
			tes.addVertexWithUV(1-dist, dist, dist, 14*texel, 1*texel);//
		}

		tes.addVertexWithUV(dist, dist, dist, 14*texel, 11*texel);
		tes.addVertexWithUV(dist, 1, dist, 14*texel, 11*texel);
		tes.addVertexWithUV(1-dist, 1, dist, 14*texel, 1*texel);
		tes.addVertexWithUV(1-dist, dist, dist, 14*texel, 1*texel);

		tes.addVertexWithUV(1-dist, dist, 1-dist, 14*texel, 11*texel);
		tes.addVertexWithUV(1-dist, 1, 1-dist, 14*texel, 11*texel);
		tes.addVertexWithUV(dist, 1, 1-dist, 14*texel, 1*texel);
		tes.addVertexWithUV(dist, dist, 1-dist, 14*texel, 1*texel);

		tes.addVertexWithUV(dist, dist, 1-dist, 14*texel, 11*texel);
		tes.addVertexWithUV(dist, 1, 1-dist, 14*texel, 11*texel);
		tes.addVertexWithUV(dist, 1, dist, 14*texel, 1*texel);
		tes.addVertexWithUV(dist, dist, dist, 14*texel, 1*texel);

		tes.addVertexWithUV(1-dist, dist, dist, 14*texel, 11*texel);
		tes.addVertexWithUV(1-dist, 1, dist, 14*texel, 11*texel);
		tes.addVertexWithUV(1-dist, 1, 1-dist, 14*texel, 1*texel);
		tes.addVertexWithUV(1-dist, dist, 1-dist, 14*texel, 1*texel);	
	}
	tes.draw();

	GL11.glTranslated(0.5, 0.5, 0.5);
	if(dir.equals(ForgeDirection.UP)) {
		//ROTATE
	} else if(dir.equals(ForgeDirection.DOWN)) {
		GL11.glRotatef(-180, 1, 0, 0);
	} else if(dir.equals(ForgeDirection.NORTH)) {
		GL11.glRotatef(-270, 1, 0, 0);
	} else if(dir.equals(ForgeDirection.SOUTH)) {
		GL11.glRotatef(-90, 1, 0, 0);
	} else if(dir.equals(ForgeDirection.EAST)) {
		GL11.glRotatef(-270, 0, 0, 1);
	} else if(dir.equals(ForgeDirection.WEST)) {
		GL11.glRotatef(-90, 0, 0, 1);
	}
	GL11.glTranslated(-0.5, -0.5, -0.5);
}

public void drawCore(TileEntity tileEntity) {
	Tessellator tes = Tessellator.instance;
	tes.startDrawingQuads();
	{

		float dist = (pixel*10.5F);

		float texBRU = 12*texel;
		float texBRV = 12 *texel;
		float texTRU = 12*texel;
		float tetTRV = 0;
		float texTLU = 0;
		float texTLV = 0;
		float texBLU = 0;
		float texBLV = 12*texel;

		if(mc.isFancyGraphicsEnabled()) {
			//INVERTED NORTH	
			tes.addVertexWithUV(dist, dist, dist, texBLU, texBLV);
			tes.addVertexWithUV(dist, 1-dist, dist, texTLU, texTLV);
			tes.addVertexWithUV(1-dist, 1-dist, dist, texTRU, tetTRV);
			tes.addVertexWithUV(1-dist, dist, dist, texBRU, texBRV);

			//INVERTED WEST
			tes.addVertexWithUV(dist, dist, 1-dist, texBLU, texBLV);
			tes.addVertexWithUV(dist, 1-dist, 1-dist, texTLU, texTLV);
			tes.addVertexWithUV(dist, 1-dist, dist, texTRU, tetTRV);
			tes.addVertexWithUV(dist, dist, dist, texBRU, texBRV);

			//INVERTED SOUTH
			tes.addVertexWithUV(1-dist, dist, 1-dist, texBLU, texBLV);
			tes.addVertexWithUV(1-dist, 1-dist, 1-dist, texTLU, texTLV);
			tes.addVertexWithUV(dist, 1-dist, 1-dist, texTRU, tetTRV);
			tes.addVertexWithUV(dist, dist, 1-dist, texBRU, texBRV);

			//INVERTED EAST
			tes.addVertexWithUV(1-dist, dist, dist, texBLU, texBLV);
			tes.addVertexWithUV(1-dist, 1-dist, dist, texTLU, texTLV);
			tes.addVertexWithUV(1-dist, 1-dist, 1-dist, texTRU, tetTRV);
			tes.addVertexWithUV(1-dist, dist, 1-dist, texBRU, texBRV);

			//INVERTED UP
			tes.addVertexWithUV(1-dist, dist, dist, texBLU, texBLV);
			tes.addVertexWithUV(1-dist, dist, 1-dist, texTLU, texTLV);
			tes.addVertexWithUV(dist, dist, 1-dist, texTRU, tetTRV);
			tes.addVertexWithUV(dist, dist, dist, texBRU, texBRV);

			//INVERTED DOWN
			tes.addVertexWithUV(dist, 1-dist, dist, texBRU, texBRV);
			tes.addVertexWithUV(dist, 1-dist, 1-dist, texTRU, tetTRV);
			tes.addVertexWithUV(1-dist, 1-dist, 1-dist, texTLU, texTLV);
			tes.addVertexWithUV(1-dist, 1-dist, dist, texBLU, texBLV);
		}

		//NORTH
		tes.addVertexWithUV(1-dist, dist, dist, texBRU, texBRV);
		tes.addVertexWithUV(1-dist, 1-dist, dist, texTRU, tetTRV);
		tes.addVertexWithUV(dist, 1-dist, dist, texTLU, texTLV);
		tes.addVertexWithUV(dist, dist, dist, texBLU, texBLV);

		//WEST
		tes.addVertexWithUV(dist, dist, dist, texBRU, texBRV);
		tes.addVertexWithUV(dist, 1-dist, dist, texTRU, tetTRV);
		tes.addVertexWithUV(dist, 1-dist, 1-dist, texTLU, texTLV);
		tes.addVertexWithUV(dist, dist, 1-dist, texBLU, texBLV);

		//SOUTH
		tes.addVertexWithUV(dist, dist, 1-dist, texBRU, texBRV);
		tes.addVertexWithUV(dist, 1-dist, 1-dist, texTRU, tetTRV);
		tes.addVertexWithUV(1-dist, 1-dist, 1-dist, texTLU, texTLV);
		tes.addVertexWithUV(1-dist, dist, 1-dist, texBLU, texBLV);

		//EAST
		tes.addVertexWithUV(1-dist, dist, 1-dist, texBRU, texBRV);
		tes.addVertexWithUV(1-dist, 1-dist, 1-dist, texTRU, tetTRV);
		tes.addVertexWithUV(1-dist, 1-dist, dist, texTLU, texTLV);
		tes.addVertexWithUV(1-dist, dist, dist, texBLU, texBLV);

		//UP
		tes.addVertexWithUV(dist, dist, dist, texBRU, texBRV);
		tes.addVertexWithUV(dist, dist, 1-dist, texTRU, tetTRV);
		tes.addVertexWithUV(1-dist, dist, 1-dist, texTLU, texTLV);
		tes.addVertexWithUV(1-dist, dist, dist, texBLU, texBLV);

		//DOWN
		tes.addVertexWithUV(1-dist, 1-dist, dist, texBLU, texBLV);
		tes.addVertexWithUV(1-dist, 1-dist, 1-dist, texTLU, texTLV);
		tes.addVertexWithUV(dist, 1-dist, 1-dist, texTRU, tetTRV);
		tes.addVertexWithUV(dist, 1-dist, dist, texBRU, texBRV);
	}

	tes.draw();
}

public void drawStraight(ForgeDirection dir) {

	float dist = (pixel*10);

	Tessellator tes = Tessellator.instance;
	tes.startDrawingQuads();
	{
		GL11.glTranslated(0.5, 0.5, 0.5);
		if(dir.equals(ForgeDirection.UP)) {
			//ROTATE
		} else if(dir.equals(ForgeDirection.DOWN)) {
			GL11.glRotatef(180, 1, 0, 0);
		} else if(dir.equals(ForgeDirection.NORTH)) {
			GL11.glRotatef(270, 1, 0, 0);
		} else if(dir.equals(ForgeDirection.SOUTH)) {
			GL11.glRotatef(90, 1, 0, 0);
		} else if(dir.equals(ForgeDirection.EAST)) {
			GL11.glRotatef(270, 0, 0, 1);
		} else if(dir.equals(ForgeDirection.WEST)) {
			GL11.glRotatef(90, 0, 0, 1);
		}
		GL11.glTranslated(-0.5, -0.5, -0.5);

		if(this.mc.isFancyGraphicsEnabled()) {
			tes.addVertexWithUV(1-dist, 0, dist, 14*texel, 11*texel);
			tes.addVertexWithUV(1-dist, 1, dist, 28*texel, 11*texel);
			tes.addVertexWithUV(dist, 1, dist, 28*texel, 1*texel);
			tes.addVertexWithUV(dist, 0, dist, 14*texel, 1*texel);//

			tes.addVertexWithUV(dist, 0, 1-dist, 14*texel, 11*texel);
			tes.addVertexWithUV(dist, 1, 1-dist, 28*texel, 11*texel);
			tes.addVertexWithUV(1-dist, 1, 1-dist, 28*texel, 1*texel);
			tes.addVertexWithUV(1-dist, 0, 1-dist, 14*texel, 1*texel);//

			tes.addVertexWithUV(dist, 0, dist, 14*texel, 11*texel);
			tes.addVertexWithUV(dist, 1, dist, 28*texel, 11*texel);
			tes.addVertexWithUV(dist, 1, 1-dist, 28*texel, 1*texel);
			tes.addVertexWithUV(dist, 0, 1-dist, 14*texel, 1*texel);//

			tes.addVertexWithUV(1-dist, 0, 1-dist, 14*texel, 11*texel);
			tes.addVertexWithUV(1-dist, 1, 1-dist, 28*texel, 11*texel);
			tes.addVertexWithUV(1-dist, 1, dist, 28*texel, 1*texel);
			tes.addVertexWithUV(1-dist, 0, dist, 14*texel, 1*texel);//
		}	

		tes.addVertexWithUV(dist, 0, dist, 14*texel, 11*texel);
		tes.addVertexWithUV(dist, 1, dist, 28*texel, 11*texel);
		tes.addVertexWithUV(1-dist, 1, dist, 28*texel, 1*texel);
		tes.addVertexWithUV(1-dist, 0, dist, 14*texel, 1*texel);

		tes.addVertexWithUV(1-dist, 0, 1-dist, 14*texel, 11*texel);
		tes.addVertexWithUV(1-dist, 1, 1-dist, 28*texel, 11*texel);
		tes.addVertexWithUV(dist, 1, 1-dist, 28*texel, 1*texel);
		tes.addVertexWithUV(dist, 0, 1-dist, 14*texel, 1*texel);

		tes.addVertexWithUV(dist, 0, 1-dist, 14*texel, 11*texel);
		tes.addVertexWithUV(dist, 1, 1-dist, 28*texel, 11*texel);
		tes.addVertexWithUV(dist, 1, dist, 28*texel, 1*texel);
		tes.addVertexWithUV(dist, 0, dist, 14*texel, 1*texel);

		tes.addVertexWithUV(1-dist, 0, dist, 14*texel, 11*texel);
		tes.addVertexWithUV(1-dist, 1, dist, 28*texel, 11*texel);
		tes.addVertexWithUV(1-dist, 1, 1-dist, 28*texel, 1*texel);
		tes.addVertexWithUV(1-dist, 0, 1-dist, 14*texel, 1*texel);
	}
	tes.draw();

	GL11.glTranslated(0.5, 0.5, 0.5);
	if(dir.equals(ForgeDirection.UP)) {
		//ROTATE
	} else if(dir.equals(ForgeDirection.DOWN)) {
		GL11.glRotatef(-180, 1, 0, 0);
	} else if(dir.equals(ForgeDirection.NORTH)) {
		GL11.glRotatef(-270, 1, 0, 0);
	} else if(dir.equals(ForgeDirection.SOUTH)) {
		GL11.glRotatef(-90, 1, 0, 0);
	} else if(dir.equals(ForgeDirection.EAST)) {
		GL11.glRotatef(-270, 0, 0, 1);
	} else if(dir.equals(ForgeDirection.WEST)) {
		GL11.glRotatef(-90, 0, 0, 1);
	}
	GL11.glTranslated(-0.5, -0.5, -0.5);
}
}

 

Don't be afraid to ask question when modding, there are no stupid question! Unless you don't know java then all your questions are stupid!

Posted

Can any one please help, I need my block to do the opposite of what the vanilla semi transparent blocks do. Example, you cannot see other adjacent ice block when looking through on. I need to be able to see the pipe when I look through the semi transparent parts of the pipe.

Don't be afraid to ask question when modding, there are no stupid question! Unless you don't know java then all your questions are stupid!

Posted

Hi

 

The problem is a common one in alpha blending, i.e. it depends which faces you render first.  In your case, you probably have depth culling on, so if you draw the closest face first, the furthest face is hidden (culled) and not drawn at all.

 

The best solution is to sort your faces so that you always draw the furthest faces first.  Alternatively you may get acceptable results if you turn off writing to the depth buffer using GL11.glDepthMask(false);

 

See here for some greater explanation

http://www.minecraftforge.net/forum/index.php/topic,22368.msg113450.html#msg113450

http://www.minecraftforge.net/forum/index.php/topic,23237.msg117975.html#msg117975

 

-TGG

 

Posted

In your renderTileEntityAt method, try putting GL11.glDisable(GL11.GL_CULLING);

 

Quick question, is your pipes connections rendering properly? just curious, because the way I am doing it in my mod uses a lot less code for the rendering. Looks like you have followed ScratchForFun's pipes tutorial.

I ask complicated questions, and apparently like to write really long detailed posts. But I also help others when I can.

Posted

Sorry for the delay. I have already tried adding that, and that produces a weird line artifact, and yes the pipes do render correctly renderer correctly, I plan to condense it down a fair bit. I was only trying to learn how tessellators work because I have never worked with them before.

Don't be afraid to ask question when modding, there are no stupid question! Unless you don't know java then all your questions are stupid!

Posted

I'm not quite sure what you mean by "weird line artifact" explain?

 

And have you tried enabling GL_CULLING where I said to, then disabling it again at the end, just before GL11.glPopMatrix(); so that you enable it, render everything, then disable it again?

I ask complicated questions, and apparently like to write really long detailed posts. But I also help others when I can.

Posted

I have just noticed something. You don't have a GL11.glPushMatrix(); and a GL11.glPopMatrix(); How is this working without that? Before you start anything with GL11, start with GL11.glPushMatrix, and when you have finished, end with GL11.glPopMatrix.

 

I ask complicated questions, and apparently like to write really long detailed posts. But I also help others when I can.

Posted

I guess the method that calls the render method must call it for me, I had no idea that I forgot to call push Matrix and pop Matrix, thanks for catching that and by weird line artifact I mean it is similar to the artifact that you get when you have z-fighting.

Don't be afraid to ask question when modding, there are no stupid question! Unless you don't know java then all your questions are stupid!

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" } } }  
    • All versions of Minecraft Forge suddenly black screen even without mods (tried reinstalling original Minecraft, Java, updating drivers doesn't work)
    • 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.