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

    • 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.