Jump to content

[SOLVED] Tessellator Troubles


Flenix

Recommended Posts

Hey guys,

 

I want to get the hang of the Tessellator. One of the mods I'm working on is almost entirely modelled stuff, so if I can use the tessellator to model them without a tile entity, then that would be a huge bonus!

 

However, I seem to be struggling on the texturing part. As far as I can tell my quads are ok (maybe not? Can't see them to check!) but I can't even get the purple/black missing texture to show. I've tried looking through RenderBlocks to no avail.

 

here's the code. Can anyone point me in the right direction?

package co.uk.silvania.roads.block.tess.renderers;

import org.lwjgl.opengl.GL11;

import co.uk.silvania.roads.client.ClientProxy;
import net.minecraft.block.Block;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.RenderBlocks;
import net.minecraft.client.renderer.Tessellator;
import net.minecraft.client.renderer.texture.TextureMap;
import net.minecraft.util.Icon;
import net.minecraft.util.ResourceLocation;
import net.minecraft.world.IBlockAccess;
import cpw.mods.fml.client.registry.ISimpleBlockRenderingHandler;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class ShortRampRenderer implements ISimpleBlockRenderingHandler {

Tessellator tes = Tessellator.instance;

//Whole renderInventoryBlock Method borrowed from another mod purely for testing purposes, so I can be sure my block is using this render class.
//It will be removed and rewritten before compiling
@Override
public void renderInventoryBlock(Block block, int metadata, int modelID, RenderBlocks renderblocks) 
{
         if(modelID == ClientProxy.RoadsRampShortRenderID) 
         {
        	 for(int i = 1; i <= 21; ++i) 
        	 {
        		 switch(i) 
        		 {
        		 //top row
        		 case 1: renderblocks.setRenderBounds(0.15D, 0.0D, 0.15D, 0.25D, 1.0D, 0.25D); break;
        		 case 2: renderblocks.setRenderBounds(0.45D, 0.0D, 0.15D, 0.55D, 1.0D, 0.25D); break;
        		 case 3: renderblocks.setRenderBounds(0.75D, 0.0D, 0.15D, 0.85D, 1.0D, 0.25D); break;
        		 //middle row
        		 case 4: renderblocks.setRenderBounds(0.15D, 0.0D, 0.45D, 0.25D, 1.0D, 0.55D); break;
        		 case 5: renderblocks.setRenderBounds(0.45D, 0.0D, 0.45D, 0.55D, 1.0D, 0.55D); break;
        		 case 6: renderblocks.setRenderBounds(0.75D, 0.0D, 0.45D, 0.85D, 1.0D, 0.55D); break;
        		 }
                 
        		 GL11.glTranslatef(-0.5F, -0.5F, -0.5F);
        		 float var7 = 0.0F;
        		 tes.startDrawingQuads();
        		 tes.setNormal(0.0F, -1.0F, 0.0F);
        		 renderblocks.renderFaceZNeg(block, 0.0D, 0.0D, 0.0D, block.getBlockTextureFromSide(0));
        		 tes.draw();
        		 tes.startDrawingQuads();
        		 tes.setNormal(0.0F, 1.0F, 0.0F);
        		 renderblocks.renderFaceZPos(block, 0.0D, 0.0D, 0.0D, block.getBlockTextureFromSide(1));
        		 tes.draw();
        		 tes.startDrawingQuads();
        		 tes.setNormal(0.0F, 0.0F, -1.0F);
        		 tes.addTranslation(0.0F, 0.0F, var7);
        		 renderblocks.renderFaceXPos(block, 0.0D, 0.0D, 0.0D, block.getBlockTextureFromSide(2));
        		 tes.addTranslation(0.0F, 0.0F, -var7);
        		 tes.draw();
        		 tes.startDrawingQuads();
        		 tes.setNormal(0.0F, 0.0F, 1.0F);
        		 tes.addTranslation(0.0F, 0.0F, -var7);
        		 renderblocks.renderFaceXNeg(block, 0.0D, 0.0D, 0.0D, block.getBlockTextureFromSide(3));
        		 tes.addTranslation(0.0F, 0.0F, var7);
        		 tes.draw();
        		 tes.startDrawingQuads();
        		 tes.setNormal(-1.0F, 0.0F, 0.0F);
        		 tes.addTranslation(var7, 0.0F, 0.0F);
        		 renderblocks.renderFaceYPos(block, 0.0D, 0.0D, 0.0D, block.getBlockTextureFromSide(4));
        		 tes.addTranslation(-var7, 0.0F, 0.0F);
        		 tes.draw();
        		 tes.startDrawingQuads();
        		 tes.setNormal(1.0F, 0.0F, 0.0F);
        		 tes.addTranslation(-var7, 0.0F, 0.0F);
        		 renderblocks.renderFaceYNeg(block, 0.0D, 0.0D, 0.0D, block.getBlockTextureFromSide(5));
        		 tes.addTranslation(var7, 0.0F, 0.0F);
        		 tes.draw();
        		 GL11.glTranslatef(0.5F, 0.5F, 0.5F);
        		 
        	 }
         }
}

@Override
public boolean renderWorldBlock(IBlockAccess world, int x, int y, int z, Block block, int modelId, RenderBlocks renderer) {
	if(modelId == ClientProxy.RoadsRampShortRenderID)
		return RenderShortRamp(block, x, y, z, renderer);  
	else
		return false;
}

public boolean shouldRender3DInInventory() {
	return true;
}

@Override
public int getRenderId() {
	return 0;
}

    public Icon getBlockIconFromSide(Block par1Block, int par2) {
        return this.getIconSafe(par1Block.getBlockTextureFromSide(par2));
    }
    
    public Icon getIconSafe(Icon par1Icon) {
        if (par1Icon == null) {
            par1Icon = ((TextureMap)Minecraft.getMinecraft().func_110434_K().func_110581_b(TextureMap.field_110575_b)).func_110572_b("missingno");
        }

        return (Icon)par1Icon;
    }

@SideOnly(Side.CLIENT)
public boolean RenderShortRamp(Block block, int x, int y, int z, RenderBlocks render) {
        Icon icon = this.getBlockIconFromSide(block, 0);
        
        if (render.hasOverrideBlockTexture()) {
        	icon = render.overrideBlockTexture;
        }
        
        tes.addVertexWithUV(0.0, 1.0, 1.0, 12, 24);
        tes.addVertexWithUV(1.0, 1.0, 1.0, 12, 24);
        tes.addVertexWithUV(1.0, 1.0, 0.0, 12, 24);
        tes.addVertexWithUV(0.0, 1.0, 0.0, 12, 24);
        tes.draw();
        tes.startDrawingQuads();
        tes.addVertexWithUV(0.0, 0.0, 1.0, 12, 24);
        tes.addVertexWithUV(0.0, 1.0, 1.0, 12, 24);
        tes.addVertexWithUV(0.0, 1.0, 0.0, 12, 24);
        tes.addVertexWithUV(0.0, 0.0, 0.0, 12, 24);

	return true;
}
}

 

 

From my understanding of quads, the above should theoretically draw two full faces of a standard block. I've only ever touched quads in a simple block modeller used for a spout plugin though, never actually coded with them.

 

Once I understand this, I want to take the above modeller and modify it, so anyone else who wants to use the tessellator can make their actual models in there and just import the code.

 

 




 

As this thread is 4 posts long, I'll save you all SOME time if you're trying to learn from it. Below is my current ISBRH, fully working. It's up to you to figure out the implementation.

The model in this example is a simple slope, similar to that Slopes mod from a while ago. I thought it was a good, simple model to use for the example throughout this post, but remember with the ISBRH and tessellator you can make things much more complex than in Techne.

 

 

package co.uk.silvania.roads.block.tess.renderers;

import org.lwjgl.opengl.GL11;

import co.uk.silvania.roads.client.ClientProxy;

import net.minecraft.block.Block;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.RenderBlocks;
import net.minecraft.client.renderer.Tessellator;
import net.minecraft.util.Icon;
import net.minecraft.util.ResourceLocation;
import net.minecraft.world.IBlockAccess;
import cpw.mods.fml.client.registry.ISimpleBlockRenderingHandler;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class ShortRampRenderer implements ISimpleBlockRenderingHandler {

@Override
public void renderInventoryBlock(Block block, int metadata, int modelID, RenderBlocks renderer) {

}

    @Override
    @SideOnly(Side.CLIENT)
    public boolean renderWorldBlock(IBlockAccess world, int x, int y, int z, Block block, int modelId, RenderBlocks renderer) {
    	int meta = world.getBlockMetadata(x, y, z);
    	Icon c = block.getIcon(0, meta);
    	Icon b = block.getIcon(1, meta);
    	
    	int brightness = Block.blocksList[block.stone.blockID].getMixedBrightnessForBlock(world, x, y, z);
    	
    	float u = c.getMinU();
    	float v = c.getMinV();
    	float U = c.getMaxU();
    	float V = c.getMaxV();
    	
    	float u1 = b.getMinU();
    	float v1 = b.getMinV();
    	float U1 = b.getMaxU();
    	float V1 = b.getMaxV();
    	
	Tessellator tess = Tessellator.instance;
	tess.addTranslation(x, y, z);
	tess.setBrightness(brightness);
	tess.setColorOpaque_F(1.0F, 1.0F, 1.0F);
	//Base
	tess.addVertexWithUV(0, -0.25, 1, u, v);
	tess.addVertexWithUV(0, -0.25, 0, u, V);
	tess.addVertexWithUV(1, -0.25, 0, U, V);
	tess.addVertexWithUV(1, -0.25, 1, U, v);
	//Top Slope
	tess.addVertexWithUV(0, -0.25, 1, u1, v1);
	tess.addVertexWithUV(1, 0.75, 1, u1, V1);
	tess.addVertexWithUV(1, 0.75, 0, U1, V1);
	tess.addVertexWithUV(0, -0.25, 0, U1, v1);

	tess.addVertexWithUV(1, -0.25, 0, u, v);
	tess.addVertexWithUV(1, 0.75, 0, u, V);
	tess.addVertexWithUV(1, 0.75, 1, U, V);
	tess.addVertexWithUV(1, -0.25, 1, U, v);

	tess.addVertexWithUV(1, 0.75, 0, u, v);
	tess.addVertexWithUV(1, -0.25, 0, u, V);
	tess.addVertexWithUV(0, -0.25, 0, U, V);
	tess.addVertexWithUV(1, 0.75, 0, U, v);

	tess.addVertexWithUV(1, 0.75, 1, u, v);
	tess.addVertexWithUV(0, -0.25, 1, u, V);
	tess.addVertexWithUV(1, -0.25, 1, U, V);
	tess.addVertexWithUV(1, 0.75, 1, U, v);

	tess.addTranslation(-x, -y, -z);
        return true;
    }

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

@Override
public int getRenderId() {
	return ClientProxy.RoadsRampShortRenderID;
}
}

width=463 height=200

http://s13.postimg.org/z9mlly2av/siglogo.png[/img]

My mods (Links coming soon)

Cities | Roads | Remula | SilvaniaMod | MoreStats

Link to comment
Share on other sites

  • Replies 83
  • Created
  • Last Reply

Top Posters In This Topic

hey, have you been looking at my tut ?

 

so first this is weird:

tes.addVertexWithUV(0.0, 1.0, 1.0, 12, 24);

because that would mean you want to fit the image 12 time horizintally and 24 times vertically (so there would be 12*24 time the image im your quad)

 

also, have you made any println in your render method to make sure its actually beign called

 

i think you should start by a very simple quad and buidl from there ( not try to copy paste the whole thing and expect it to work :P)

 

i think if you're not using a TESR you cant have animations (just extra info)

 

im here to help ask me anything :)

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

extra:

RenderShortRamp this method is VERY weird

 

specially :

 

tes.addVertexWithUV(0.0, 1.0, 0.0, 12, 24);
tes.draw();
tes.startDrawingQuads();
tes.addVertexWithUV(0.0, 0.0, 1.0, 12, 24);

and no other call to draw() or startDrawing() in the same method

whoever made this code really has no idea how this works

 

you should always have matching startDrawing() and draw() in the same method unless you really know what you're doing and\or youre doing something very special

 

 

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

I made that part, and no I don't have any idea how it works. Noone on IRC was able to help so I was literally stabbing in the dark, trial-and-error to see what I could do.

 

I was basing off the little knowledge of quads I had. I figured that the 5 doubles were the x/y/z of the vertices, and then I assumed the x/y coords from the texture (You say it's actually tiling the texture though?)

 

I also figured you'd need four vertices to make a quad, one for each corner. The draw and startDrawing were a guess as to a way to seperate one quad from the next. The reason I don't have them at the start or end is because that's handled in the borrowed code - if I put startDrawingQuads before everything, the game crashes.

 

It's only that part I'm even having issues with. The in-hand rendering (the borrowed code) works:

51fa8ab23efd4.jpg

 

 

I hadn't seen any tutorial at all, been trying to find one all day. Can you link me to yours?

width=463 height=200

http://s13.postimg.org/z9mlly2av/siglogo.png[/img]

My mods (Links coming soon)

Cities | Roads | Remula | SilvaniaMod | MoreStats

Link to comment
Share on other sites

yes here:http://www.minecraftforge.net/wiki/Tessellator

 

 

you dont have to make 4 call to addVertexWithUV before calling another draw()/startDrawing()

but it has to be  multple of 4 if you started with "startDrawingQuads()"

(extra info, you cna if you want startDrawing(GL11.GL_TRIANGLES) but stick with quads becseu itll be easier in your case

 

and yes the reason you don't have any texture is mostly becasue there no call to renderEngine.func_110577_a(ResourceLocation); at all, so the render engine doesn't have any texture to place on your quads

 

 

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

if you need more reference code, you can look at renderBlockTorch and renderTorchAtAngle in the RenderBlocks class. it's pretty simple since it only adds 6 sides. you'll also be able to figure out some uses of icons from those methods

Link to comment
Share on other sites

yes here:http://www.minecraftforge.net/wiki/Tessellator

 

 

you dont have to make 4 call to addVertexWithUV before calling another draw()/startDrawing()

but it has to be  multple of 4 if you started with "startDrawingQuads()"

(extra info, you cna if you want startDrawing(GL11.GL_TRIANGLES) but stick with quads becseu itll be easier in your case

 

Oh I get it, so I can have startDrawingQuads, then say 12 vertex, then draw, without anything in the middle and the code will be clever and know thats 3 different quads? Cool

 

and yes the reason you don't have any texture is mostly becasue there no call to renderEngine.func_110577_a(ResourceLocation); at all, so the render engine doesn't have any texture to place on your quads

 

Ah fair enough. I'll toy around with that.

 

 

Also, with your tutorial - is it ok if I fix a few spelling mistakes etc? Just noticed a couple is all.

 

 

if you need more reference code, you can look at renderBlockTorch and renderTorchAtAngle in the RenderBlocks class. it's pretty simple since it only adds 6 sides. you'll also be able to figure out some uses of icons from those methods

 

Thanks, I'll look there if I get stuck :D

 

 

width=463 height=200

http://s13.postimg.org/z9mlly2av/siglogo.png[/img]

My mods (Links coming soon)

Cities | Roads | Remula | SilvaniaMod | MoreStats

Link to comment
Share on other sites

Also, with your tutorial - is it ok if I fix a few spelling mistakes etc? Just noticed a couple is all.

english is not my first language (french is) so yes please do :)

 

Oh I get it, so I can have startDrawingQuads, then say 12 vertex, then draw, without anything in the middle and the code will be clever and know thats 3 different quads? Cool

yes but you can not change texture for the 3 different quads or change the color

 

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

ok well first you need to make a new ResourceLocation

 

like this

public static final ResourceLocation myImage = new ResourceLocation("modid", "path/to/texture")

the 2nd string must NOT start with a "/" btw

ex:

public static final ResourceLocation myImage = new ResourceLocation("forgerev", "textures/models/spacepirate.png")

and the file system for that will be:

mcp/src/minecraft/assets/forgerev/textures/models/spacepirate.png

 

then just

renderEngine.func_110577_a(myImage);

 

also surround ALL your render code with

 

GL11.glPushMatrix();

//render code

GL11.glPopMatrix();

 

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

When I tried using the ResourceLocation, very very strange things started happening... mostly involving chunks de-rendering :P

 

i'm currently cleaning up my code right now and i'm currently removing tile entities that i was too lazy to use isimpleblockrenakdjsfak for and i ran into that. i haven't really looked into block rendering too much until now, but what i've been able to figure out is:

 

mc renders in bulk. it doesn't render per block per chunk. it goes through each block in the chunk and adds the vertices but doesn't render them. once it's done with each block, that's when it renders everything. and since they're rendered in bulk, when you change the texture being used, you change it for every block in the chunk. so you're either gonna have to use icons to include your textures in the terrain texture (can icons be larger than 16x16? still gonna test it out later) or do what hydroflame suggested (but you'll have to figure out a way around the problem).. or something else. i dunno. i vote icons if they work

 

if I put startDrawingQuads before everything, the game crashes.

 

that's because it's already been called beforehand. and draw() is called after mc is done going through the blocks in the chunk. unless you want to do something else, all you really need to do is supply the vertices

 

also, if you want it to render with the correct brightness, seems like you'll have to add it for each side yourself. depending on how you want that to work, it could go from a few lines of code to buttloads. basically, the more complicated your block is, the more tedious it gets. the plus side is that the code seems pretty straightforward and easy to read despite the amount of it

 

anyway, like i said, i'm still digging through the rendering code. if i made a mistake, feel free to tell me :)

Link to comment
Share on other sites

When I tried using the ResourceLocation, very very strange things started happening... mostly involving chunks de-rendering :P

 

i'm currently cleaning up my code right now and i'm currently removing tile entities that i was too lazy to use isimpleblockrenakdjsfak for and i ran into that. i haven't really looked into block rendering too much until now, but what i've been able to figure out is:

 

mc renders in bulk. it doesn't render per block per chunk. it goes through each block in the chunk and adds the vertices but doesn't render them. once it's done with each block, that's when it renders everything. and since they're rendered in bulk, when you change the texture being used, you change it for every block in the chunk. so you're either gonna have to use icons to include your textures in the terrain texture (can icons be larger than 16x16? still gonna test it out later) or do what hydroflame suggested (but you'll have to figure out a way around the problem).. or something else. i dunno. i vote icons if they work

 

if I put startDrawingQuads before everything, the game crashes.

 

that's because it's already been called beforehand. and draw() is called after mc is done going through the blocks in the chunk. unless you want to do something else, all you really need to do is supply the vertices

 

also, if you want it to render with the correct brightness, seems like you'll have to add it for each side yourself. depending on how you want that to work, it could go from a few lines of code to buttloads. basically, the more complicated your block is, the more tedious it gets. the plus side is that the code seems pretty straightforward and easy to read despite the amount of it

 

anyway, like i said, i'm still digging through the rendering code. if i made a mistake, feel free to tell me :)

 

hydroflame, do you know a fix for this? I got my texture to work but it plunges my world into darkness:

before:

51fb7862c36b6.jpg

 

after:

51fb78664d4fd.jpg

 

Code:

package co.uk.silvania.roads.block.tess.renderers;

import org.lwjgl.opengl.GL11;

import co.uk.silvania.roads.client.ClientProxy;
import net.minecraft.block.Block;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.RenderBlocks;
import net.minecraft.client.renderer.Tessellator;
import net.minecraft.client.renderer.texture.TextureManager;
import net.minecraft.client.renderer.texture.TextureMap;
import net.minecraft.util.Icon;
import net.minecraft.util.ResourceLocation;
import net.minecraft.world.IBlockAccess;
import cpw.mods.fml.client.registry.ISimpleBlockRenderingHandler;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class ShortRampRenderer implements ISimpleBlockRenderingHandler {

public static final ResourceLocation texture = new ResourceLocation("roads", "textures/blocks/roadBlockMiscSingles0.png");

Tessellator tes = Tessellator.instance;

//Whole renderInventoryBlock Method borrowed from another mod purely for testing purposes, so I can be sure my block is using this render class.
//It will be removed and rewritten before compiling
@Override
public void renderInventoryBlock(Block block, int metadata, int modelID, RenderBlocks renderblocks) 
{
         if(modelID == ClientProxy.RoadsRampShortRenderID) 
         {
        	 for(int i = 1; i <= 21; ++i) 
        	 {
        		 switch(i) 
        		 {
        		 //top row
        		 case 1: renderblocks.setRenderBounds(0.15D, 0.0D, 0.15D, 0.25D, 1.0D, 0.25D); break;
        		 case 2: renderblocks.setRenderBounds(0.45D, 0.0D, 0.15D, 0.55D, 1.0D, 0.25D); break;
        		 case 3: renderblocks.setRenderBounds(0.75D, 0.0D, 0.15D, 0.85D, 1.0D, 0.25D); break;
        		 //middle row
        		 case 4: renderblocks.setRenderBounds(0.15D, 0.0D, 0.45D, 0.25D, 1.0D, 0.55D); break;
        		 case 5: renderblocks.setRenderBounds(0.45D, 0.0D, 0.45D, 0.55D, 1.0D, 0.55D); break;
        		 case 6: renderblocks.setRenderBounds(0.75D, 0.0D, 0.45D, 0.85D, 1.0D, 0.55D); break;
        		 }
                 
        		 GL11.glTranslatef(-0.5F, -0.5F, -0.5F);
        		 float var7 = 0.0F;
        		 tes.startDrawingQuads();
        		 tes.setNormal(0.0F, -1.0F, 0.0F);
        		 renderblocks.renderFaceZNeg(block, 0.0D, 0.0D, 0.0D, block.getBlockTextureFromSide(0));
        		 tes.draw();
        		 tes.startDrawingQuads();
        		 tes.setNormal(0.0F, 1.0F, 0.0F);
        		 renderblocks.renderFaceZPos(block, 0.0D, 0.0D, 0.0D, block.getBlockTextureFromSide(1));
        		 tes.draw();
        		 tes.startDrawingQuads();
        		 tes.setNormal(0.0F, 0.0F, -1.0F);
        		 tes.addTranslation(0.0F, 0.0F, var7);
        		 renderblocks.renderFaceXPos(block, 0.0D, 0.0D, 0.0D, block.getBlockTextureFromSide(2));
        		 tes.addTranslation(0.0F, 0.0F, -var7);
        		 tes.draw();
        		 tes.startDrawingQuads();
        		 tes.setNormal(0.0F, 0.0F, 1.0F);
        		 tes.addTranslation(0.0F, 0.0F, -var7);
        		 renderblocks.renderFaceXNeg(block, 0.0D, 0.0D, 0.0D, block.getBlockTextureFromSide(3));
        		 tes.addTranslation(0.0F, 0.0F, var7);
        		 tes.draw();
        		 tes.startDrawingQuads();
        		 tes.setNormal(-1.0F, 0.0F, 0.0F);
        		 tes.addTranslation(var7, 0.0F, 0.0F);
        		 renderblocks.renderFaceYPos(block, 0.0D, 0.0D, 0.0D, block.getBlockTextureFromSide(4));
        		 tes.addTranslation(-var7, 0.0F, 0.0F);
        		 tes.draw();
        		 tes.startDrawingQuads();
        		 tes.setNormal(1.0F, 0.0F, 0.0F);
        		 tes.addTranslation(-var7, 0.0F, 0.0F);
        		 renderblocks.renderFaceYNeg(block, 0.0D, 0.0D, 0.0D, block.getBlockTextureFromSide(5));
        		 tes.addTranslation(var7, 0.0F, 0.0F);
        		 tes.draw();
        		 GL11.glTranslatef(0.5F, 0.5F, 0.5F);
        		 
        	 }
         }
}

@Override
public boolean renderWorldBlock(IBlockAccess world, int x, int y, int z, Block block, int modelId, RenderBlocks renderer) {
	if(modelId == ClientProxy.RoadsRampShortRenderID)
		return RenderShortRamp(block, x, y, z, renderer);  
	else
		return false;
}

public boolean shouldRender3DInInventory() {
	return true;
}

@Override
public int getRenderId() {
	return 0;
}

    public Icon getBlockIconFromSide(Block par1Block, int par2) {
        return this.getIconSafe(par1Block.getBlockTextureFromSide(par2));
    }
    
    public Icon getIconSafe(Icon par1Icon) {
        if (par1Icon == null) {
            par1Icon = ((TextureMap)Minecraft.getMinecraft().func_110434_K().func_110581_b(TextureMap.field_110575_b)).func_110572_b("missingno");
        }

        return (Icon)par1Icon;
    }

@SideOnly(Side.CLIENT)
public boolean RenderShortRamp(Block block, int x, int y, int z, RenderBlocks render) {
        Icon icon = this.getBlockIconFromSide(block, 0);
        
        if (render.hasOverrideBlockTexture()) {
        	icon = render.overrideBlockTexture;
        }
        
        GL11.glPushMatrix();
        Minecraft.getMinecraft().renderEngine.func_110577_a(texture);
        GL11.glPopMatrix();
        
        tes.addVertexWithUV(0, 0, 0, 0, 0);
        tes.addVertexWithUV(0, 1, 0, 0, 1);
        tes.addVertexWithUV(1, 1, 0, 1, 1);
        tes.addVertexWithUV(1, 0, 0, 1, 0);

        tes.addVertexWithUV(0, 0, 0, 0, 0);
        tes.addVertexWithUV(1, 0, 0, 0, 1);
        tes.addVertexWithUV(1, 1, 0, 1, 1);
        tes.addVertexWithUV(0, 1, 0, 1, 0);

	return true;
}
}

 

Did I do something wrong somewhere? :P

width=463 height=200

http://s13.postimg.org/z9mlly2av/siglogo.png[/img]

My mods (Links coming soon)

Cities | Roads | Remula | SilvaniaMod | MoreStats

Link to comment
Share on other sites

GL11.glPushMatrix();

Minecraft.getMinecraft().renderEngine.func_110577_a(texture);

GL11.glPopMatrix();

ahahahah no meant ALL the render code

 

public void renderInventoryBlock(Block block, int metadata, int modelID, RenderBlocks renderblocks) 
{
    GL11.glPushMatrix();
    //code you already have
    GL11.glPopMatrix();
}

 

mc renders in bulk. it doesn't render per block per chunk. it goes through each block in the chunk and adds the vertices but doesn't render them. once it's done with each block, that's when it renders everything. and since they're rendered in bulk, when you change the texture being used, you change it for every block in the chunk. so you're either gonna have to use icons to include your textures in the terrain texture (can icons be larger than 16x16? still gonna test it out later) or do what hydroflame suggested (but you'll have to figure out a way around the problem).. or something else. i dunno. i vote icons if they work

now if thats true it means that there is a seeeeeeeeeeeeeeeerious problem with mc render engine !

and it also mean that ISBRH is way usefull then i tought

sorry for not being that much help, i usually use TESR becasue you can add animation to it :\

 

 

but basicly considering what pelep said, it is worth to note that the calls to startDrawingQuads and draw() should probably not appear in a ISBRH

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

I still get the same issue even when trying that.

 

Do you have a TESR tutorial? I always thought that was just another name for the tessellator, but from what you're saying it's both different and might be better, especially as I'll be animating some of these blocks.

width=463 height=200

http://s13.postimg.org/z9mlly2av/siglogo.png[/img]

My mods (Links coming soon)

Cities | Roads | Remula | SilvaniaMod | MoreStats

Link to comment
Share on other sites

you mean TESR == ISBRH ? or  TESR == tessellator ?

becasue TESR and ISBRH are kindof similar except the TESR gets called every frame while the ISBRH gets called ... every ... 50 tick ? more ?

 

so animation is NOT possible with the ISBRH (which is  why i kinda hate it :\ but i understand its purpose, aka rendering things like cactus)

 

and yes i made a tutorial on TESR, just look on our wiki for "TESR" or "Tile entity special renderer"

actually heres the link :

http://www.minecraftforge.net/wiki/TESR

 

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

Alright, I do still need to use the tessellator then. The main reason for this is that I want to avoid Tile Entites.

 

Do you have a working class using the tessellator I can look at? Maybe I can figure out my issue by comparing them and seeing what is different?

 

(Sorry for the late reply, I was out over the weekend)

width=463 height=200

http://s13.postimg.org/z9mlly2av/siglogo.png[/img]

My mods (Links coming soon)

Cities | Roads | Remula | SilvaniaMod | MoreStats

Link to comment
Share on other sites

The main reason for this is that I want to avoid Tile Entites.

why ? TE are awesome, as long as you dont have 20 000 of them per chunk

Do you have a working class using the tessellator I can look at?

yessir

 

heres my teleporter (it include a wavefront model btw)

 

public class RenderTeleporter extends TileEntitySpecialRenderer{
private IModelCustom teleporter;
private ResourceLocation texture = new ResourceLocation(TheMod.modid, "/models/textures/teleporter.png");
private float[] pos;
int displayList = -1;//unused for now

public RenderTeleporter(){
	teleporter = AdvancedModelLoader.loadModel("/teleporter.obj");
	pos = new float[30];
	for(int i = 0; i < pos.length; i++){
		pos[i] = (float) Math.random()*2;
	}
}

@Override
public void renderTileEntityAt(TileEntity tileentity, double d0, double d1,
		double d2, float f) {


	//here
	for(int i =0; i < pos.length; i++){
	}
	float size = 0.1f;
	Tessellator tess = Tessellator.instance;
	for(int i = 0; i < pos.length; i++){
		pos[i]+=0.01f;
		if(pos[i] > 2){ 
			pos[i] = 0;
		}
	}
	Minecraft.getMinecraft().renderEngine.func_110577_a(ForgeRevCommonProxy.portalParticle);
	GL11.glPushMatrix();
	GL11.glTranslated(d0+0.5, d1+1, d2+0.5);
	for(int i = 0; i < pos.length; i++){
		GL11.glRotated(360/pos.length, 0, 1, 0);
		GL11.glPushMatrix();
		GL11.glTranslated(0, pos[i], 1);
		tess.startDrawingQuads();
		tess.addVertexWithUV(-size, -size, 0, 0, 0);
		tess.addVertexWithUV(-size, size, 0, 0, 1);
		tess.addVertexWithUV(size, size, 0, 1, 1);
		tess.addVertexWithUV(size, -size, 0, 1, 0);

		tess.addVertexWithUV(-size, -size, 0, 0, 0);
		tess.addVertexWithUV(size, -size, 0, 1, 0);
		tess.addVertexWithUV(size, size, 0, 1, 1);
		tess.addVertexWithUV(-size, size, 0, 0, 1);
		tess.draw();
		GL11.glPopMatrix();
	}
	GL11.glPopMatrix();
	GL11.glColor3f(1, 1, 1);
	Minecraft.getMinecraft().renderEngine.func_110577_a(texture);
	GL11.glPushMatrix();
	GL11.glTranslated(d0+0.5, d1+1, d2+0.5);
	GL11.glScaled(1.3, 1.3, 1.3);
	Tessellator.instance.setColorOpaque_F(1, 1, 1);
	teleporter.renderAll();
	Minecraft.getMinecraft().renderEngine.func_110577_a(ForgeRevCommonProxy.portalRune);
	GL11.glTranslated(0, 0.2, 0);
	GL11.glRotated(System.nanoTime()/100000000f, 0, 1, 0);
	tess.startDrawingQuads();
	tess.addVertexWithUV(-0.5, 0, -0.5, 0, 0);
	tess.addVertexWithUV(-0.5, 0, 0.5, 0, 1);
	tess.addVertexWithUV(0.5, 0, 0.5, 1, 1);
	tess.addVertexWithUV(0.5, 0, -0.5, 1, 0);
	tess.draw();
	GL11.glPopMatrix();

}
}

 

 

EDIT:

a video of what this code does :

 

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

mc renders in bulk. it doesn't render per block per chunk. it goes through each block in the chunk and adds the vertices but doesn't render them. once it's done with each block, that's when it renders everything. and since they're rendered in bulk, when you change the texture being used, you change it for every block in the chunk. so you're either gonna have to use icons to include your textures in the terrain texture (can icons be larger than 16x16? still gonna test it out later) or do what hydroflame suggested (but you'll have to figure out a way around the problem).. or something else. i dunno. i vote icons if they work

now if thats true it means that there is a seeeeeeeeeeeeeeeerious problem with mc render engine !

and it also mean that ISBRH is way usefull then i tought

sorry for not being that much help, i usually use TESR becasue you can add animation to it :\

 

 

but basicly considering what pelep said, it is worth to note that the calls to startDrawingQuads and draw() should probably not appear in a ISBRH

I can confirm this problem  :( Sadly.

Link to comment
Share on other sites

The main reason for this is that I want to avoid Tile Entites.

why ? TE are awesome, as long as you dont have 20 000 of them per chunk

 

Honestly, thats exactly what I'm trying to achieve. My mod adds decorative things which people will literally have hundreds of in a single chunk. We tried doing some basic building and it was apparent very quickly that using Tile Entites it simply isn't gonna end well.

 

yessir

 

heres my teleporter (it include a wavefront model btw)

 

public class RenderTeleporter extends TileEntitySpecialRenderer{
private IModelCustom teleporter;
private ResourceLocation texture = new ResourceLocation(TheMod.modid, "/models/textures/teleporter.png");
private float[] pos;
int displayList = -1;//unused for now

public RenderTeleporter(){
	teleporter = AdvancedModelLoader.loadModel("/teleporter.obj");
	pos = new float[30];
	for(int i = 0; i < pos.length; i++){
		pos[i] = (float) Math.random()*2;
	}
}

@Override
public void renderTileEntityAt(TileEntity tileentity, double d0, double d1,
		double d2, float f) {


	//here
	for(int i =0; i < pos.length; i++){
	}
	float size = 0.1f;
	Tessellator tess = Tessellator.instance;
	for(int i = 0; i < pos.length; i++){
		pos[i]+=0.01f;
		if(pos[i] > 2){ 
			pos[i] = 0;
		}
	}
	Minecraft.getMinecraft().renderEngine.func_110577_a(ForgeRevCommonProxy.portalParticle);
	GL11.glPushMatrix();
	GL11.glTranslated(d0+0.5, d1+1, d2+0.5);
	for(int i = 0; i < pos.length; i++){
		GL11.glRotated(360/pos.length, 0, 1, 0);
		GL11.glPushMatrix();
		GL11.glTranslated(0, pos[i], 1);
		tess.startDrawingQuads();
		tess.addVertexWithUV(-size, -size, 0, 0, 0);
		tess.addVertexWithUV(-size, size, 0, 0, 1);
		tess.addVertexWithUV(size, size, 0, 1, 1);
		tess.addVertexWithUV(size, -size, 0, 1, 0);

		tess.addVertexWithUV(-size, -size, 0, 0, 0);
		tess.addVertexWithUV(size, -size, 0, 1, 0);
		tess.addVertexWithUV(size, size, 0, 1, 1);
		tess.addVertexWithUV(-size, size, 0, 0, 1);
		tess.draw();
		GL11.glPopMatrix();
	}
	GL11.glPopMatrix();
	GL11.glColor3f(1, 1, 1);
	Minecraft.getMinecraft().renderEngine.func_110577_a(texture);
	GL11.glPushMatrix();
	GL11.glTranslated(d0+0.5, d1+1, d2+0.5);
	GL11.glScaled(1.3, 1.3, 1.3);
	Tessellator.instance.setColorOpaque_F(1, 1, 1);
	teleporter.renderAll();
	Minecraft.getMinecraft().renderEngine.func_110577_a(ForgeRevCommonProxy.portalRune);
	GL11.glTranslated(0, 0.2, 0);
	GL11.glRotated(System.nanoTime()/100000000f, 0, 1, 0);
	tess.startDrawingQuads();
	tess.addVertexWithUV(-0.5, 0, -0.5, 0, 0);
	tess.addVertexWithUV(-0.5, 0, 0.5, 0, 1);
	tess.addVertexWithUV(0.5, 0, 0.5, 1, 1);
	tess.addVertexWithUV(0.5, 0, -0.5, 1, 0);
	tess.draw();
	GL11.glPopMatrix();

}
}

 

So will the tessellator code there work in an ISBRH? As I said above, any blocks I don't need a TE for I'd really rather not use one.

width=463 height=200

http://s13.postimg.org/z9mlly2av/siglogo.png[/img]

My mods (Links coming soon)

Cities | Roads | Remula | SilvaniaMod | MoreStats

Link to comment
Share on other sites

Even when using your tessellator code, I still get the same issue.

 

What did pelep and gotolink mean with the icon thing by the way? Maybe that's the issue I'm having. I'm starting to think what I'm trying to do isn't possible for a normal mod... I can't think of any other mods which do it either.

width=463 height=200

http://s13.postimg.org/z9mlly2av/siglogo.png[/img]

My mods (Links coming soon)

Cities | Roads | Remula | SilvaniaMod | MoreStats

Link to comment
Share on other sites

nope it is, you just fucked up somewhere

you should try to start with smaller code

like draw 1 quad, then add more

what you're asking is tottally possible, you can draw ANYTHING inside ISBRH except if you want animation :)

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

Even when using your tessellator code, I still get the same issue.

 

What did pelep and gotolink mean with the icon thing by the way? Maybe that's the issue I'm having. I'm starting to think what I'm trying to do isn't possible for a normal mod... I can't think of any other mods which do it either.

 

well, like i said, changing the texture there will change it for all the blocks in the chunk. and since your texture is black, you're effectively "plunging your world into darkness". and it's possible, i just did it. regarding icons, did you take a look at the methods i mentioned above? because you can learn how to use them from there.

Link to comment
Share on other sites

@pelep, well that or start with a call to draw(), change texture to the one you need, startDrawing(), bunch of addVertexWithUV, draw(), rechange back to vanilla texture, startDrawingQuads() to resetup for vanilla drawing.

 

i dont know what are the implication of that btw, so test with care

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

@pelep, well that or start with a call to draw(), change texture to the one you need, startDrawing(), bunch of addVertexWithUV, draw(), rechange back to vanilla texture, startDrawingQuads() to resetup for vanilla drawing.

 

yeah, but draw() returns an int which is used by MC afterward. according to the comments, it gets sent to the gpu. and i honestly don't know enough about how to handle gpu/hardware related stuff, so i decided not to mess with it and opted to use icons instead :)

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

    • it crashed again     What the console says : [00:02:03] [Server thread/INFO] [Easy NPC/]: [EntityManager] Server started! [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {iceandfire:fire_dragon_roost=true, iceandfire:fire_lily=true, iceandfire:spawn_dragon_skeleton_fire=true, iceandfire:lightning_dragon_roost=true, iceandfire:spawn_dragon_skeleton_lightning=true, iceandfire:ice_dragon_roost=true, iceandfire:ice_dragon_cave=true, iceandfire:lightning_dragon_cave=true, iceandfire:cyclops_cave=true, iceandfire:spawn_wandering_cyclops=true, iceandfire:spawn_sea_serpent=true, iceandfire:frost_lily=true, iceandfire:hydra_cave=true, iceandfire:lightning_lily=true, iceandfireixie_village=true, iceandfire:myrmex_hive_jungle=true, iceandfire:myrmex_hive_desert=true, iceandfire:silver_ore=true, iceandfire:siren_island=true, iceandfire:spawn_dragon_skeleton_ice=true, iceandfire:spawn_stymphalian_bird=true, iceandfire:fire_dragon_cave=true, iceandfire:sapphire_ore=true, iceandfire:spawn_hippocampus=true, iceandfire:spawn_death_worm=true} [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {TROLL_S=true, HIPPOGRYPH=true, AMPHITHERE=true, COCKATRICE=true, TROLL_M=true, DREAD_LICH=true, TROLL_F=true} [00:02:03] [Server thread/INFO] [ne.be.lo.WeaponRegistry/]: Encoded Weapon Attribute registry size (with package overhead): 41976 bytes (in 5 string chunks with the size of 10000) [00:02:03] [Server thread/INFO] [patchouli/]: Sending reload packet to clients [00:02:03] [Server thread/WARN] [voicechat/]: [voicechat] Running in offline mode - Voice chat encryption is not secure! [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Using server-ip as bind address: 0.0.0.0 [00:02:03] [Server thread/WARN] [ModernFix/]: Dedicated server took 22.521 seconds to load [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Voice chat server started at 0.0.0.0:25565 [00:02:03] [Server thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.player.Player from class tschipp.carryon.common.carry.CarryOnDataManager [00:02:03] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@2941ffd5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 0 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 1 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 2 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 3 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 4 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 6 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 7 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 8 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 9 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 10 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 11 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 12 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 13 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 14 [00:02:19] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@ebc7ef2 [00:02:19] [Server thread/INFO] [minecraft/PlayerList]: ZacAdos[/90.2.17.162:49242] logged in with entity id 1062 at (-1848.6727005281205, 221.0, -3054.2468255848935) [00:02:19] [Server thread/ERROR] [ModernFix/]: Skipping entity ID sync for com.talhanation.smallships.world.entity.ship.Ship: java.lang.NoClassDefFoundError: net/minecraft/client/CameraType [00:02:19] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos joined the game [00:02:19] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:19] [Server thread/INFO] [se.mi.te.da.DataManager/]: Sending data to client: ZacAdos [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Received secret request of - Gloop - ZacAdos (17) [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Sent secret to - Gloop - ZacAdos [00:02:21] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully authenticated player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully validated connection of player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Player - Gloop - ZacAdos (cc56befd-d376-3526-a760-340713c478bd) successfully connected to voice chat stop [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping the server [00:02:34] [Server thread/INFO] [mo.pl.ar.ArmourersWorkshop/]: stop local service [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players [00:02:34] [Server thread/INFO] [minecraft/ServerGamePacketListenerImpl]: ZacAdos lost connection: Server closed [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos left the game [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (world): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage: All dimensions are saved [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopping IO worker... [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopped IO worker! [00:02:34] [Server thread/INFO] [Calio/]: Removing Dynamic Registries for: net.minecraft.server.dedicated.DedicatedServer@7dc879e1 [MineStrator Daemon]: Checking server disk space usage, this could take a few seconds... [MineStrator Daemon]: Updating process configuration files... [MineStrator Daemon]: Ensuring file permissions are set correctly, this could take a few seconds... [MineStrator Daemon]: Pulling Docker container image, this could take a few minutes to complete... [MineStrator Daemon]: Finished pulling Docker container image container@pterodactyl~ java -version openjdk version "17.0.10" 2024-01-16 OpenJDK Runtime Environment Temurin-17.0.10+7 (build 17.0.10+7) OpenJDK 64-Bit Server VM Temurin-17.0.10+7 (build 17.0.10+7, mixed mode, sharing) container@pterodactyl~ java -Xms128M -Xmx6302M -Dterminal.jline=false -Dterminal.ansi=true -Djline.terminal=jline.UnsupportedTerminal -p libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar:libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules ALL-MODULE-PATH --add-opens java.base/java.util.jar=cpw.mods.securejarhandler --add-opens java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports java.base/sun.security.util=cpw.mods.securejarhandler --add-exports jdk.naming.dns/com.sun.jndi.dns=java.naming -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher-1.1.2.jar,securejarhandler-2.1.4.jar,asm-commons-9.5.jar,asm-util-9.5.jar,asm-analysis-9.5.jar,asm-tree-9.5.jar,asm-9.5.jar,JarJarFileSystems-0.3.16.jar -DlibraryDirectory=libraries -DlegacyClassPath=libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar:libraries/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar:libraries/net/minecraftforge/eventbus/6.0.3/eventbus-6.0.3.jar:libraries/net/minecraftforge/forgespi/6.0.0/forgespi-6.0.0.jar:libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar:libraries/cpw/mods/modlauncher/10.0.8/modlauncher-10.0.8.jar:libraries/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar:libraries/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar:libraries/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar:libraries/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar:libraries/net/jodah/typetools/0.8.3/typetools-0.8.3.jar:libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar:libraries/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar:libraries/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar:libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar:libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar:libraries/net/minecraftforge/JarJarSelector/0.3.16/JarJarSelector-0.3.16.jar:libraries/net/minecraftforge/JarJarMetadata/0.3.16/JarJarMetadata-0.3.16.jar:libraries/net/minecraftforge/fmlloader/1.19.2-43.3.0/fmlloader-1.19.2-43.3.0.jar:libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-extra.jar:libraries/com/github/oshi/oshi-core/5.8.5/oshi-core-5.8.5.jar:libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar:libraries/com/mojang/authlib/3.11.49/authlib-3.11.49.jar:libraries/com/mojang/brigadier/1.0.18/brigadier-1.0.18.jar:libraries/com/mojang/datafixerupper/5.0.28/datafixerupper-5.0.28.jar:libraries/com/mojang/javabridge/1.2.24/javabridge-1.2.24.jar:libraries/com/mojang/logging/1.0.0/logging-1.0.0.jar:libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar:libraries/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar:libraries/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar:libraries/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar:libraries/io/netty/netty-handler/4.1.77.Final/netty-handler-4.1.77.Final.jar:libraries/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar:libraries/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar:libraries/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar:libraries/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar:libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar:libraries/net/java/dev/jna/jna/5.10.0/jna-5.10.0.jar:libraries/net/java/dev/jna/jna-platform/5.10.0/jna-platform-5.10.0.jar:libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar:libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:libraries/org/apache/logging/log4j/log4j-api/2.17.0/log4j-api-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-core/2.17.0/log4j-core-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-slf4j18-impl/2.17.0/log4j-slf4j18-impl-2.17.0.jar:libraries/org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.jar cpw.mods.bootstraplauncher.BootstrapLauncher --launchTarget forgeserver --fml.forgeVersion 43.3.0 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [00:02:43] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [00:02:44] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection Latest log [29Mar2024 00:02:42.803] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [29Mar2024 00:02:42.805] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [29Mar2024 00:02:43.548] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [29Mar2024 00:02:43.876] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.878] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:44.033] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [29Mar2024 00:02:44.034] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [29Mar2024 00:02:44.034] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection
    • I am unable to do that. Brigadier is a mojang library that parses commands.
    • Hi, i appreciate the answer. I would love to do that, but we have active players with all their belongings in SSN. Also this mod is really handy and they would be mad if we removed it. Are you really certain that SSN is causing this? It would require lots of work to test it and SSN was not really an issue before we removed Fast Suite. Can it be related somehow? I will provide you with log before removing FS. PasteBin: https://pastebin.com/Y5EpLpNe (crash before removing Fast Suite, which I suspected to be a problem from some crash before)
    • Backup the world and make a test without storagenetwork
  • Topics

×
×
  • Create New...

Important Information

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