Jump to content

[1.7.10] Tesselator/TESR rendering .png black


Xcox123

Recommended Posts

Hey, I was making a custom rendered block with Tesselators for the first time, and when I saw my block the place where my .png was supposed to be placed was black(my png is bright pink). Can anyone help? Heres my rendering code:

 

public class TileEntityRenderWindmill extends TileEntitySpecialRenderer {
private final ResourceLocation textureWindmill = new ResourceLocation("tehfoodmod", "textures/model/windmill.png");

private int textureWidth = 64;
private int textureHeight = 32;

    @Override
    public void renderTileEntityAt(TileEntity tileentity, double x, double y, double z, float f) {
    	GL11.glPushMatrix();
    	GL11.glTranslatef((float)x, (float)y, (float)z);
    	
    	
    	Tessellator tess = Tessellator.instance;
    	this.bindTexture(textureWindmill);
    	tess.startDrawingQuads(); //Starts drawing
    	{
    		tess.addVertexWithUV(0, 0, 1, 1, 1);
    		tess.addVertexWithUV(1, 1, 1, 1, 0);
    		tess.addVertexWithUV(0, 1, 0, 0, 0);
    		tess.addVertexWithUV(0, 0, 0, 0, 1);
    	}
    	tess.draw(); //Draws
    	GL11.glPopMatrix();
    }
}

Link to comment
Share on other sites

Hi

 

You still need to set the colour and the lighting before rendering.  For example

 

        tessellator.setColorOpaque_F(1, 1, 1);

        //This will make your block brightness dependent from surroundings lighting.
        int brightness = block.getMixedBrightnessForBlock(world, x, y, z);
        tessellator.setBrightness(brightness);

 

-TGG

Link to comment
Share on other sites

Nope, still black, heres my code now

public void renderTileEntityAt(TileEntity tileentity, double x, double y, double z, float f) {
    	GL11.glPushMatrix();
    	GL11.glTranslatef((float)x, (float)y, (float)z);
    	
    	Tessellator tess = Tessellator.instance;
    	this.bindTexture(textureWindmill);
    	IBlockAccess world = tileentity.getWorldObj();
    	int brightness = tehfoodmod.blockWindmill.getMixedBrightnessForBlock(world, tileentity.xCoord, tileentity.yCoord, tileentity.zCoord);

	tess.setBrightness(brightness);
	tess.setColorOpaque_F(1.0F, 1.0F, 1.0F);
    
    	tess.startDrawingQuads(); //Starts drawing
    	{
    		tess.addVertexWithUV(0, 0, 1, 1, 1);
    		tess.addVertexWithUV(1, 1, 1, 1, 0);
    		tess.addVertexWithUV(0, 1, 0, 0, 0);
    		tess.addVertexWithUV(0, 0, 0, 0, 1);
    	}
    	tess.draw(); //Draws
    	GL11.glPopMatrix();
    }

Link to comment
Share on other sites

I had an entity rendering just black earlier the other day, I believe it was because the block had the correct texture, but the entity did not. Of course, mine still isn't working properly... (it's all solid red, now...) so I guess I'm not in a position to give out help advice. :P

Have a modding question? PM me and hopefully I'll be able to help. Good at 2d Pixel Art? We need your help!  http://www.minecraftforum.net/topic/1806355-looking-for-2d-pixel-artist/

Link to comment
Share on other sites

package com.xcox123.tehfoodmod.renderer.tileentity;

import org.lwjgl.opengl.GL11;

import com.xcox123.tehfoodmod.tehfoodmod;
import com.xcox123.tehfoodmod.Block.BlockWindmill;

import cpw.mods.fml.common.FMLCommonHandler;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.Tessellator;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.init.Blocks;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ResourceLocation;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;

/**
* Created by Adam on 20/08/2014.
*/
public class TileEntityRenderWindmill extends TileEntitySpecialRenderer {
private final ResourceLocation textureWindmill = new ResourceLocation("tehfoodmod", "textures/model/windmill.png");

private int textureWidth = 64;
private int textureHeight = 32;

    @Override
    public void renderTileEntityAt(TileEntity tileentity, double x, double y, double z, float f) {
    	GL11.glPushMatrix();
    	GL11.glTranslatef((float)x, (float)y, (float)z);
    	
    	Tessellator tess = Tessellator.instance;
    	this.bindTexture(textureWindmill);
    	IBlockAccess world = tileentity.getWorldObj();
    	
    
    	tess.startDrawingQuads(); //Starts drawing
    	{
    		tess.addVertexWithUV(0, 0, 1, 1, 1);
    		tess.addVertexWithUV(1, 1, 1, 1, 0);
    		tess.addVertexWithUV(0, 1, 0, 0, 0);
    		tess.addVertexWithUV(0, 0, 0, 0, 1);
    	}
    	
    	tess.draw(); //Draws
    	int brightness = tehfoodmod.blockWindmill.getMixedBrightnessForBlock(world, tileentity.xCoord, tileentity.yCoord, tileentity.zCoord);

	tess.setBrightness(brightness);
	tess.setColorOpaque_F(1.0F, 1.0F, 1.0F);

	/*
	 * Tried brightness code above outside of GL11.glPopMatrix() and same effect happens
	 */
    	GL11.glPopMatrix();
    	
    }
}

 

OnX093t.png

 

Texture: lnXa9lD.png

 

Just saying, ^^ is found at this path: C:\Users\Adam\Desktop\Modding\1.7\TehFoodMod\Source\src\main\resources\assets\tehfoodmod\textures\model

Link to comment
Share on other sites

Hi

 

Have you tried this order?

 

    @Override
    public void renderTileEntityAt(TileEntity tileentity, double x, double y, double z, float f) {
    	GL11.glPushMatrix();
    	GL11.glTranslatef((float)x, (float)y, (float)z);
    	
    	Tessellator tess = Tessellator.instance;
    	this.bindTexture(textureWindmill);
    	IBlockAccess world = tileentity.getWorldObj();
    	
    
    	tess.startDrawingQuads(); //Starts drawing

    	int brightness = tehfoodmod.blockWindmill.getMixedBrightnessForBlock(world, tileentity.xCoord, tileentity.yCoord, tileentity.zCoord);
tess.setBrightness(brightness);
tess.setColorOpaque_F(1.0F, 1.0F, 1.0F);

    	{
    		tess.addVertexWithUV(0, 0, 1, 1, 1);
    		tess.addVertexWithUV(1, 1, 1, 1, 0);
    		tess.addVertexWithUV(0, 1, 0, 0, 0);
    		tess.addVertexWithUV(0, 0, 0, 0, 1);
    	}
    	
    	tess.draw(); //Draws

    	GL11.glPopMatrix();
    	
    }

 

Also, do you mean for it to have that twisted appearance?  Normally the four points of the Quad are supposed to lie in the same plane, but yours is bent.

See here for more information

http://greyminecraftcoder.blogspot.com.au/2013/08/the-tessellator.html

 

-TGG

 

Link to comment
Share on other sites

 

Well I tried your code and the problem was that you spelled BlockWindmill.isOpaqueCube() with a Q instead of an O, i.e. isQpaqueCube().  So the getMixedBrightness always always returned 0.

 

If you put @Override before methods like this it will help pick up these problems.

    @Override
    public boolean isOpaqueCube(){
        return false;
    }

 

I also added  RenderHelper.disableStandardItemLighting(); just in case it has been left in that mode (which might cause random-looking brightness variations)

 

If you want your block to be full brightness all the time, you can just use

final int FULL_SKY_BRIGHTNESS = 255;
tess.setBrightness(FULL_SKY_BRIGHTNESS);

 

    @Override
    public void renderTileEntityAt(TileEntity tileentity, double x, double y, double z, float f) {
    	GL11.glPushMatrix();
    	GL11.glTranslatef((float)x, (float)y, (float)z);
    	
    	Tessellator tess = Tessellator.instance;
    	this.bindTexture(textureWindmill);
    	IBlockAccess world = tileentity.getWorldObj();
        RenderHelper.disableStandardItemLighting();   // turn off item lighting
    
    	tess.startDrawingQuads(); //Starts drawing

    	int brightness = tehfoodmod.blockWindmill.getMixedBrightnessForBlock(world, tileentity.xCoord, tileentity.yCoord, tileentity.zCoord);
tess.setBrightness(brightness);
tess.setColorOpaque_F(1.0F, 1.0F, 1.0F);

    	{
    		tess.addVertexWithUV(0, 0, 1, 1, 1);
    		tess.addVertexWithUV(1, 1, 1, 1, 0);
    		tess.addVertexWithUV(0, 1, 0, 0, 0);
    		tess.addVertexWithUV(0, 0, 0, 0, 1);
    	}
    	
    	tess.draw(); //Draws

    	GL11.glPopMatrix();
    	
    }

 

 

-TGG

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

    • Let me try and help you with love spells, traditional healing, native healing, fortune telling, witchcraft, psychic readings, black magic, voodoo, herbalist healing, or any other service your may desire within the realm of african native healing, the spirits and the ancestors. I am a sangoma and healer. I could help you to connect with the ancestors , interpret dreams, diagnose illness through divination with bones, and help you heal both physical and spiritual illness. We facilitate the deepening of your relationship to the spirit world and the ancestors. Working in partnership with one\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\’s ancestors is a gift representing a close link with the spirit realm as a mediator between the worlds.*   Witchdoctors, or sorcerers, are often purveyors of mutis and charms that cause harm to people. we believe that we are here for only one purpose, to heal through love and compassion.*   African people share a common understanding of the importance of ancestors in daily life. When they have lost touch with their ancestors, illness may result or bad luck. Then a traditional healer, or sangoma, is sought out who may prescribe herbs, changes in lifestyle, a career change, or changes in relationships. The client may also be told to perform a ceremony or purification ritual to appease the ancestors.*   Let us solve your problems using powerful African traditional methods. We believe that our ancestors and spirits give us enlightenment, wisdom, divine guidance, enabling us to overcome obstacles holding your life back. Our knowledge has been passed down through centuries, being refined along the way from generation to generation. We believe in the occult, the paranormal, the spirit world, the mystic world.*   The services here are based on the African Tradition Value system/religion,where we believe the ancestors and spirits play a very important role in society. The ancestors and spirits give guidance and counsel in society. They could enable us to see into the future and give solutions to the problems affecting us. We use rituals, divination, spells, chants and prayers to enable us tackle the task before us.*   I have experience in helping and guiding many people from all over the world. My psychic abilities may help you answer and resolve many unanswered questions
    • Let me try and help you with love spells, traditional healing, native healing, fortune telling, witchcraft, psychic readings, black magic, voodoo, herbalist healing, or any other service your may desire within the realm of african native healing, the spirits and the ancestors. I am a sangoma and healer. I could help you to connect with the ancestors , interpret dreams, diagnose illness through divination with bones, and help you heal both physical and spiritual illness. We facilitate the deepening of your relationship to the spirit world and the ancestors. Working in partnership with one\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\’s ancestors is a gift representing a close link with the spirit realm as a mediator between the worlds.*   Witchdoctors, or sorcerers, are often purveyors of mutis and charms that cause harm to people. we believe that we are here for only one purpose, to heal through love and compassion.*   African people share a common understanding of the importance of ancestors in daily life. When they have lost touch with their ancestors, illness may result or bad luck. Then a traditional healer, or sangoma, is sought out who may prescribe herbs, changes in lifestyle, a career change, or changes in relationships. The client may also be told to perform a ceremony or purification ritual to appease the ancestors.*   Let us solve your problems using powerful African traditional methods. We believe that our ancestors and spirits give us enlightenment, wisdom, divine guidance, enabling us to overcome obstacles holding your life back. Our knowledge has been passed down through centuries, being refined along the way from generation to generation. We believe in the occult, the paranormal, the spirit world, the mystic world.*   The services here are based on the African Tradition Value system/religion,where we believe the ancestors and spirits play a very important role in society. The ancestors and spirits give guidance and counsel in society. They could enable us to see into the future and give solutions to the problems affecting us. We use rituals, divination, spells, chants and prayers to enable us tackle the task before us.*   I have experience in helping and guiding many people from all over the world. My psychic abilities may help you answer and resolve many unanswered questions
    • Let me try and help you with love spells, traditional healing, native healing, fortune telling, witchcraft, psychic readings, black magic, voodoo, herbalist healing, or any other service your may desire within the realm of african native healing, the spirits and the ancestors. I am a sangoma and healer. I could help you to connect with the ancestors , interpret dreams, diagnose illness through divination with bones, and help you heal both physical and spiritual illness. We facilitate the deepening of your relationship to the spirit world and the ancestors. Working in partnership with one\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\’s ancestors is a gift representing a close link with the spirit realm as a mediator between the worlds.*   Witchdoctors, or sorcerers, are often purveyors of mutis and charms that cause harm to people. we believe that we are here for only one purpose, to heal through love and compassion.*   African people share a common understanding of the importance of ancestors in daily life. When they have lost touch with their ancestors, illness may result or bad luck. Then a traditional healer, or sangoma, is sought out who may prescribe herbs, changes in lifestyle, a career change, or changes in relationships. The client may also be told to perform a ceremony or purification ritual to appease the ancestors.*   Let us solve your problems using powerful African traditional methods. We believe that our ancestors and spirits give us enlightenment, wisdom, divine guidance, enabling us to overcome obstacles holding your life back. Our knowledge has been passed down through centuries, being refined along the way from generation to generation. We believe in the occult, the paranormal, the spirit world, the mystic world.*   The services here are based on the African Tradition Value system/religion,where we believe the ancestors and spirits play a very important role in society. The ancestors and spirits give guidance and counsel in society. They could enable us to see into the future and give solutions to the problems affecting us. We use rituals, divination, spells, chants and prayers to enable us tackle the task before us.*   I have experience in helping and guiding many people from all over the world. My psychic abilities may help you answer and resolve many unanswered questions
    • Let me try and help you with love spells, traditional healing, native healing, fortune telling, witchcraft, psychic readings, black magic, voodoo, herbalist healing, or any other service your may desire within the realm of african native healing, the spirits and the ancestors. I am a sangoma and healer. I could help you to connect with the ancestors , interpret dreams, diagnose illness through divination with bones, and help you heal both physical and spiritual illness. We facilitate the deepening of your relationship to the spirit world and the ancestors. Working in partnership with one\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\’s ancestors is a gift representing a close link with the spirit realm as a mediator between the worlds.*   Witchdoctors, or sorcerers, are often purveyors of mutis and charms that cause harm to people. we believe that we are here for only one purpose, to heal through love and compassion.*   African people share a common understanding of the importance of ancestors in daily life. When they have lost touch with their ancestors, illness may result or bad luck. Then a traditional healer, or sangoma, is sought out who may prescribe herbs, changes in lifestyle, a career change, or changes in relationships. The client may also be told to perform a ceremony or purification ritual to appease the ancestors.*   Let us solve your problems using powerful African traditional methods. We believe that our ancestors and spirits give us enlightenment, wisdom, divine guidance, enabling us to overcome obstacles holding your life back. Our knowledge has been passed down through centuries, being refined along the way from generation to generation. We believe in the occult, the paranormal, the spirit world, the mystic world.*   The services here are based on the African Tradition Value system/religion,where we believe the ancestors and spirits play a very important role in society. The ancestors and spirits give guidance and counsel in society. They could enable us to see into the future and give solutions to the problems affecting us. We use rituals, divination, spells, chants and prayers to enable us tackle the task before us.*   I have experience in helping and guiding many people from all over the world. My psychic abilities may help you answer and resolve many unanswered questions
    • Let me try and help you with love spells, traditional healing, native healing, fortune telling, witchcraft, psychic readings, black magic, voodoo, herbalist healing, or any other service your may desire within the realm of african native healing, the spirits and the ancestors. I am a sangoma and healer. I could help you to connect with the ancestors , interpret dreams, diagnose illness through divination with bones, and help you heal both physical and spiritual illness. We facilitate the deepening of your relationship to the spirit world and the ancestors. Working in partnership with one\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\’s ancestors is a gift representing a close link with the spirit realm as a mediator between the worlds.*   Witchdoctors, or sorcerers, are often purveyors of mutis and charms that cause harm to people. we believe that we are here for only one purpose, to heal through love and compassion.*   African people share a common understanding of the importance of ancestors in daily life. When they have lost touch with their ancestors, illness may result or bad luck. Then a traditional healer, or sangoma, is sought out who may prescribe herbs, changes in lifestyle, a career change, or changes in relationships. The client may also be told to perform a ceremony or purification ritual to appease the ancestors.*   Let us solve your problems using powerful African traditional methods. We believe that our ancestors and spirits give us enlightenment, wisdom, divine guidance, enabling us to overcome obstacles holding your life back. Our knowledge has been passed down through centuries, being refined along the way from generation to generation. We believe in the occult, the paranormal, the spirit world, the mystic world.*   The services here are based on the African Tradition Value system/religion,where we believe the ancestors and spirits play a very important role in society. The ancestors and spirits give guidance and counsel in society. They could enable us to see into the future and give solutions to the problems affecting us. We use rituals, divination, spells, chants and prayers to enable us tackle the task before us.*   I have experience in helping and guiding many people from all over the world. My psychic abilities may help you answer and resolve many unanswered questions
  • Topics

×
×
  • Create New...

Important Information

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