Jump to content

[1.7.10] Custom 3D Model like Slime Block from [1.8]


nidico100

Recommended Posts

You need:

1- A model with the two cubes, one inside the other.

2- A texture file that includes the textture for both boxes-

3- A Tile Entity Special Renderer.

4- Your own rendering method (preferrably in the model itself), in wich you will first render the inside box, then call a blending function, and render the second, bigger cube.

 

Example:

smallBox.render(f5);            
GL11.glEnable(GL11.GL_BLEND);
GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
bigBox.render(f5)
GL11.glDisable(GL11.GL_BLEND);

 

Blending enables alpha transparency, so by rendering the outer box second you already rendered the small inside and the second will be semi transparent.

 

 

Link to comment
Share on other sites

You need:

1- A model with the two cubes, one inside the other.

2- A texture file that includes the textture for both boxes-

3- A Tile Entity Special Renderer.

4- Your own rendering method (preferrably in the model itself), in wich you will first render the inside box, then call a blending function, and render the second, bigger cube.

 

Example:

smallBox.render(f5);            
GL11.glEnable(GL11.GL_BLEND);
GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
bigBox.render(f5)
GL11.glDisable(GL11.GL_BLEND);

 

Blending enables alpha transparency, so by rendering the outer box second you already rendered the small inside and the second will be semi transparent.

I just have the model as .json, but can i use this? How u mean with both Textures? I wanted to use the same for both. And thanks :) But could u explain the code a it?

 

Link to comment
Share on other sites

So I tested it, but i have some Problems :/

width=800 height=4490x0JoTz.png?1 [/img]

 

MainMod file:

 

package net.bplaced.nidico100.Downgrade;

 

import net.bplaced.nidico100.Downgrade.Proxis.DowngradeModProxy;

import net.minecraft.block.material.Material;

import net.minecraft.init.Blocks;

import net.minecraft.block.Block;

import net.minecraft.block.BlockContainer;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.init.Items;

import net.minecraft.item.Item;

import net.minecraft.item.ItemStack;

import cpw.mods.fml.common.Mod;

import cpw.mods.fml.common.Mod.EventHandler;

import cpw.mods.fml.common.SidedProxy;

import cpw.mods.fml.common.Mod.Instance;

import cpw.mods.fml.common.event.FMLInitializationEvent;

import cpw.mods.fml.common.event.FMLPostInitializationEvent;

import cpw.mods.fml.common.event.FMLPreInitializationEvent;

import cpw.mods.fml.common.registry.GameRegistry;

import cpw.mods.fml.common.registry.LanguageRegistry;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

 

@Mod(modid="DowngradeModID", name="DowngradeMod", version="1.1.0")

public class DowngradeMod {

 

 

@Instance(value="DowngradeModID")

public static DowngradeMod instance;

 

@SidedProxy(clientSide="net.bplaced.nidico100.Downgrade.Proxis.DowngradeModClientProxy", serverSide="net.bplaced.nidico100.Downgrade.Proxis.DowngradeModProxy")

public static DowngradeModProxy proxy;

 

//BLOCKS

public static Block blockSlime;

 

//CREATIVE TABS

public CreativeTabs tabDowngradeMod = new CreativeTabs("tabDowngradeMod"){

@Override

@SideOnly(Side.CLIENT)

public Item getTabIconItem(){

return new ItemStack(blockDiorite).getItem();

}

};

 

@EventHandler

public void preInit(FMLPreInitializationEvent event){

//BLOCKS

blockSlime = new BlockSlime(Material.clay).setCreativeTab(tabDowngradeMod).setBlockName("blockSlime");

GameRegistry.registerBlock(blockSlime, "blockSlime");

 

//RENDERERS

proxy.registerRenderThings();

 

}

 

@EventHandler

public void load(FMLInitializationEvent event){

loadRecipes();

}

 

@EventHandler

public void postInit(FMLPostInitializationEvent event){

}

 

private void loadRecipes(){

 

//CRAFTING-RECIPES

GameRegistry.addShapedRecipe(new ItemStack(blockSlime, 1), "XXX", "XXX", "XXX", Character.valueOf('X'), Items.slime_ball);

 

GameRegistry.addShapelessRecipe(new ItemStack(Items.slime_ball, 9), blockSlime);

 

}

 

}

 

 

BlockSlimeModel.java

 

package net.bplaced.nidico100.Downgrade;

 

import net.minecraft.client.model.ModelBase;

import net.minecraft.client.model.ModelRenderer;

import net.minecraft.entity.Entity;

 

public class BlockSlimeModel extends ModelBase {

 

public ModelRenderer innen;

    public ModelRenderer aussen;

 

    public BlockSlimeModel() {

        this.textureWidth = 16;

        this.textureHeight = 16;

        this.innen = new ModelRenderer(this, 0, 0);

        this.innen.mirror = true;

        this.innen.setRotationPoint(3.0F, 3.0F, 3.0F);

        this.innen.addBox(0.0F, 0.0F, 0.0F, 10, 10, 10, 0.0F);

        this.aussen = new ModelRenderer(this, 0, 0);

        this.aussen.setRotationPoint(0.0F, 0.0F, 0.0F);

        this.aussen.addBox(0.0F, 0.0F, 0.0F, 16, 16, 16, 0.0F);

    }

 

    public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5) {

        this.innen.render(f5);

        this.aussen.render(f5);

    }

   

    public void renderModel(float f){

        this.innen.render(f);

        this.aussen.render(f);

    }

   

    public void setRotateAngle(ModelRenderer modelRenderer, float x, float y, float z) {

        modelRenderer.rotateAngleX = x;

        modelRenderer.rotateAngleY = y;

        modelRenderer.rotateAngleZ = z;

    }

}

 

 

 

 

BlockSlime.java

 

package net.bplaced.nidico100.Downgrade;

 

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

import net.minecraft.block.BlockContainer;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IIconRegister;

import net.minecraft.tileentity.TileEntity;

import net.minecraft.world.World;

import net.bplaced.nidico100.Downgrade.DowngradeMod;

import net.bplaced.nidico100.Downgrade.TileEntityBlockSlime;;

 

 

public class BlockSlime extends BlockContainer {

 

public BlockSlime(Material material) {

super(material);

 

this.setHardness(0F);

this.setResistance(0F);

}

 

@Override

    public int getRenderBlockPass() {

            return 1;

}

@Override

public int getRenderType() {

return -1;

}

@Override

public boolean isOpaqueCube() {

return false;

}

@Override

public boolean renderAsNormalBlock() {

return false;

}

 

@Override

public TileEntity createNewTileEntity(World p_149915_1_, int p_149915_2_) {

return new TileEntityBlockSlime();

}

 

@SideOnly(Side.CLIENT)

public void registerBlockIcons(IIconRegister iconRegister) {

this.blockIcon = iconRegister.registerIcon("slime");

}

 

}

 

 

ClientProxy:

 

package net.bplaced.nidico100.Downgrade.Proxis;

 

import net.bplaced.nidico100.Downgrade.DowngradeMod;

import net.bplaced.nidico100.Downgrade.ItemRenderBlockSlime;

import net.bplaced.nidico100.Downgrade.RenderBlockSlime;

import net.bplaced.nidico100.Downgrade.TileEntityBlockSlime;

import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;

import net.minecraft.item.Item;

import net.minecraftforge.client.MinecraftForgeClient;

import cpw.mods.fml.client.registry.ClientRegistry;

 

public class DowngradeModClientProxy extends DowngradeModProxy {

 

public void registerRenderThings() {

//SLIMEBLOCK

TileEntitySpecialRenderer render = new RenderBlockSlime();

ClientRegistry.bindTileEntitySpecialRenderer(TileEntityBlockSlime.class, render);

MinecraftForgeClient.registerItemRenderer(Item.getItemFromBlock(DowngradeMod.blockSlime), new ItemRenderBlockSlime(render, new TileEntityBlockSlime()));

}

 

public void registerTileEntitySpecialRenderer(){

 

}

 

public void registerRenderers(){

 

}

 

}

 

 

 

Normal Proxy:

 

package net.bplaced.nidico100.Downgrade.Proxis;

 

public class DowngradeModProxy {

 

public void registerRenderThings() {

 

}

 

public void registerTileEntitySpecialRenderer(){

 

}

 

public void registerRenderers(){

 

}

 

}

 

 

 

RenderBlockSlime.java

 

package net.bplaced.nidico100.Downgrade;

 

import org.lwjgl.opengl.GL11;

 

import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;

import net.minecraft.tileentity.TileEntity;

import net.minecraft.util.ResourceLocation;

 

public class RenderBlockSlime extends TileEntitySpecialRenderer {

 

private static final ResourceLocation texture = new ResourceLocation("downgrademod/textures/blocks/slime.png");

 

private BlockSlimeModel model;

 

public RenderBlockSlime(){

this.model = new BlockSlimeModel();

}

 

@Override

public void renderTileEntityAt(TileEntity tileentity, double x, double y, double z, float f) {

GL11.glPushMatrix();

GL11.glTranslatef((float)x+0.5F, (float)y+1.5F, (float)z+0.5F);

GL11.glRotatef(180, 0F, 0F, 1F);

 

this.bindTexture(texture);

 

GL11.glPushMatrix();

this.model.renderModel(0.0625F);

GL11.glPopMatrix();

GL11.glPopMatrix();

}

 

}

 

 

 

 

ItemRenderBlockSlime

 

package net.bplaced.nidico100.Downgrade;

 

import org.lwjgl.opengl.GL11;

 

import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;

import net.minecraft.item.ItemStack;

import net.minecraft.tileentity.TileEntity;

import net.minecraftforge.client.IItemRenderer;

 

public class ItemRenderBlockSlime implements IItemRenderer{

 

TileEntitySpecialRenderer render;

private TileEntity entity;

 

public ItemRenderBlockSlime(TileEntitySpecialRenderer render, TileEntity entity){

this.entity = entity;

this.render = render;

}

 

 

@Override

public boolean handleRenderType(ItemStack item, ItemRenderType type) {

return true;

}

 

@Override

public boolean shouldUseRenderHelper(ItemRenderType type, ItemStack item,

ItemRendererHelper helper) {

return true;

}

 

@Override

public void renderItem(ItemRenderType type, ItemStack item, Object... data) {

if (type == IItemRenderer.ItemRenderType.ENTITY)

GL11.glTranslatef(-0.5F, 0.0F, -0.5F);

this.render.renderTileEntityAt(this.entity, 0.0D, 0.0D, 0.0D, 0.0F);

 

}

 

}

 

 

 

pls help me

 

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

    • I am not using hardcoded recipes, I'm using Vanilla's already existing code for leather armor dying. (via extending and implementing DyeableArmorItem / DyeableLeatherItem respectively) I have actually figured out that it's something to do with registering item colors to the ItemColors instance, but I'm trying to figure out where exactly in my mod's code I would be placing a call to the required event handler. Unfortunately the tutorial is criminally undescriptive. The most I've found is that it has to be done during client initialization. I'm currently trying to do the necessary setup via hijacking the item registry since trying to modify the item classes directly (via using SubscribeEvent in the item's constructor didn't work. Class so far: // mrrp mrow - mcmod item painter v1.0 - catzrule ch package catzadvitems.init; import net.minecraft.client.color.item.ItemColors; import net.minecraft.world.item.Item; import net.minecraftforge.registries.ObjectHolder; import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.client.event.ColorHandlerEvent; import catzadvitems.item.DyeableWoolArmorItem; @Mod.EventBusSubscriber(bus = Mod.EventBusSubscriber.Bus.MOD) public class Painter { @ObjectHolder("cai:dyeable_wool_chestplate") public static final Item W_CHEST = null; @ObjectHolder("cai:dyeable_wool_leggings") public static final Item W_LEGS = null; @ObjectHolder("cai:dyeable_wool_boots") public static final Item W_SOCKS = null; public Painter() { // left blank, idk if forge throws a fit if constructors are missing, not taking the chance of it happening. } @SubscribeEvent public static void init(FMLClientSetupEvent event) { new Painter(); } @Mod.EventBusSubscriber private static class ForgeBusEvents { @SubscribeEvent public static void registerItemColors(ColorHandlerEvent.Item event) { ItemColors col = event.getItemColors(); col.register(DyeableUnderArmorItem::getItemDyedColor, W_CHEST, W_LEGS, W_SOCKS); //placeholder for other dye-able items here later.. } } } (for those wondering, i couldn't think of a creative wool helmet name)
    • nvm found out it was because i had create h and not f
    • Maybe there's something happening in the 'leather armor + dye' recipe itself that would be updating the held item texture?
    • @SubscribeEvent public static void onRenderPlayer(RenderPlayerEvent.Pre e) { e.setCanceled(true); model.renderToBuffer(e.getPoseStack(), pBuffer, e.getPackedLight(), 0f, 0f, 0f, 0f, 0f); //ToaPlayerRenderer.render(); } Since getting the render method from a separate class is proving to be bit of a brick wall for me (but seems to be the solution in older versions of minecraft/forge) I've decided to try and pursue using the renderToBuffer method directly from the model itself. I've tried this route before but can't figure out what variables to feed it for the vertexConsumer and still can't seem to figure it out; if this is even a path to pursue.  The vanilla model files do not include any form of render methods, and seem to be fully constructed from their layer definitions? Their renderer files seem to take their layers which are used by the render method in the vanilla MobRenderer class. But for modded entities we @Override this function and don't have to feed the method variables because of that? I assume that the render method in the extended renderer takes the layer definitions from the renderer classes which take those from the model files. Or maybe instead of trying to use a render method I should be calling the super from the renderer like   new ToaPlayerRenderer(context, false); Except I'm not sure what I would provide for context? There's a context method in the vanilla EntityRendererProvider class which doesn't look especially helpful. I've been trying something like <e.getEntity(), model<e.getEntity()>> since that generally seems to be what is provided to the renderers for context, but I don't know if it's THE context I'm looking for? Especially since the method being called doesn't want to take this or variations of this.   In short; I feel like I'm super super close but I have to be missing something obvious? Maybe this insane inane ramble post will provide some insight into this puzzle?
  • Topics

×
×
  • Create New...

Important Information

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