Search in sources :

Example 6 with ISkinPointer

use of riskyken.armourersWorkshop.api.common.skin.data.ISkinPointer in project Armourers-Workshop by RiskyKen.

the class SkinnableEntityZombieRenderer method renderEquipmentType.

private void renderEquipmentType(EntityLivingBase entity, RendererLivingEntity renderer, ISkinType skinType, IEntityEquipment equipmentData) {
    float scale = 0.0625F;
    if (renderer instanceof RenderZombie) {
        RenderZombie rz = (RenderZombie) renderer;
        boolean isZombieVillager = false;
        isZombieVillager = rz.modelBipedMain instanceof ModelZombieVillager;
        if (!equipmentData.haveEquipment(skinType, 0)) {
            return;
        }
        ISkinPointer skinPointer = equipmentData.getSkinPointer(skinType, 0);
        Skin skin = ClientSkinCache.INSTANCE.getSkin(skinPointer);
        if (skin == null) {
            return;
        }
        AbstractModelSkin model = SkinModelRenderer.INSTANCE.getModelForEquipmentType(skinType);
        GL11.glPushMatrix();
        if (isZombieVillager & skinType == SkinTypeRegistry.skinHead) {
            GL11.glTranslated(0, -2.0F * scale, 0);
        }
        if (skinType == SkinTypeRegistry.skinLegs | skinType == SkinTypeRegistry.skinFeet) {
            GL11.glTranslated(0, 0, 0.1F * scale);
        }
        // GL11.glEnable(GL11.GL_POLYGON_OFFSET_FILL);
        // GL11.glPolygonOffset(-1F, -1F);
        model.render(entity, rz.modelBipedMain, skin, false, skinPointer.getSkinDye(), null, false, 0, false);
        // GL11.glDisable(GL11.GL_POLYGON_OFFSET_FILL);
        GL11.glPopMatrix();
    }
}
Also used : RenderZombie(net.minecraft.client.renderer.entity.RenderZombie) AbstractModelSkin(riskyken.armourersWorkshop.client.model.skin.AbstractModelSkin) Skin(riskyken.armourersWorkshop.common.skin.data.Skin) AbstractModelSkin(riskyken.armourersWorkshop.client.model.skin.AbstractModelSkin) ModelZombieVillager(net.minecraft.client.model.ModelZombieVillager) ISkinPointer(riskyken.armourersWorkshop.api.common.skin.data.ISkinPointer)

Example 7 with ISkinPointer

use of riskyken.armourersWorkshop.api.common.skin.data.ISkinPointer in project Armourers-Workshop by RiskyKen.

the class EntitySkinHandler method dropEntitySkins.

private void dropEntitySkins(Entity entity) {
    if (ConfigHandler.entityDropSkinChance <= 0) {
        return;
    }
    int rnd = entity.worldObj.rand.nextInt(99) + 1;
    if (rnd <= ConfigHandler.entityDropSkinChance) {
        ExPropsEntityEquipmentData entityEquipmentData = ExPropsEntityEquipmentData.getExtendedPropsForEntity(entity);
        if (entityEquipmentData != null) {
            ArrayList<ISkinType> skinTypes = entityEquipmentData.getSkinInventory().getSkinTypes();
            for (int i = 0; i < skinTypes.size(); i++) {
                ISkinPointer skinPointer = entityEquipmentData.getEquipmentData().getSkinPointer(skinTypes.get(i), 0);
                if (skinPointer != null) {
                    ItemStack stack = SkinNBTHelper.makeEquipmentSkinStack((SkinPointer) skinPointer);
                    UtilItems.spawnItemAtEntity(entity, stack);
                }
            }
        }
    }
}
Also used : ISkinType(riskyken.armourersWorkshop.api.common.skin.type.ISkinType) ISkinPointer(riskyken.armourersWorkshop.api.common.skin.data.ISkinPointer) ItemStack(net.minecraft.item.ItemStack)

Example 8 with ISkinPointer

use of riskyken.armourersWorkshop.api.common.skin.data.ISkinPointer in project Armourers-Workshop by RiskyKen.

the class RenderBlockMannequin method renderTileEntityAt.

public void renderTileEntityAt(TileEntityMannequin te, double x, double y, double z, float partialTickTime) {
    mc.mcProfiler.startSection("armourersMannequin");
    mc.mcProfiler.startSection("holidayCheck");
    isHalloweenSeason = HolidayHelper.halloween_season.isHolidayActive();
    isHalloween = HolidayHelper.halloween.isHolidayActive();
    MannequinFakePlayer fakePlayer = te.getFakePlayer();
    mc.mcProfiler.endStartSection("move");
    GL11.glPushMatrix();
    GL11.glPushAttrib(GL11.GL_ENABLE_BIT);
    GL11.glPushAttrib(GL11.GL_LIGHTING_BIT);
    GL11.glEnable(GL12.GL_RESCALE_NORMAL);
    ModRenderHelper.disableAlphaBlend();
    int rotaion = te.getRotation();
    GL11.glTranslated(x + 0.5D + te.getOffsetX(), y + 1.0D + te.getOffsetY(), z + 0.5D + te.getOffsetZ());
    BipedRotations rots = te.getBipedRotations();
    GL11.glRotated(Math.toDegrees(rots.chest.rotationX), 1F, 0F, 0F);
    GL11.glRotated(Math.toDegrees(rots.chest.rotationY), 0F, 1F, 0F);
    GL11.glRotated(Math.toDegrees(rots.chest.rotationZ), 0F, 0F, 1F);
    GL11.glTranslated(0, 0.5D, 0);
    GL11.glScalef(SCALE * 15, SCALE * 15, SCALE * 15);
    GL11.glTranslated(0, SCALE * -1.6F, 0);
    GL11.glScalef(-1, -1, 1);
    GL11.glRotatef(rotaion * 22.5F, 0, 1, 0);
    if (te.getIsDoll()) {
        float dollScale = 0.5F;
        GL11.glScalef(dollScale, dollScale, dollScale);
        GL11.glTranslatef(0, SCALE * 24, 0);
    }
    mc.mcProfiler.endStartSection("getTexture");
    ResourceLocation rl;
    boolean slimModel = false;
    boolean download;
    PlayerTexture playerTexture = MannequinTextureHelper.getMannequinTexture(te);
    rl = playerTexture.getResourceLocation();
    slimModel = playerTexture.isSlimModel();
    download = playerTexture.isDownloaded();
    ModelMannequin model = modelSteve;
    if (slimModel) {
        model = modelAlex;
    }
    mc.mcProfiler.endStartSection("fakePlayer");
    if (mannequinFakePlayer == null) {
        mannequinFakePlayer = new MannequinFakePlayer(te.getWorldObj(), new GameProfile(null, "[Mannequin]"));
        mannequinFakePlayer.posX = x;
        mannequinFakePlayer.posY = y;
        mannequinFakePlayer.posZ = z;
        mannequinFakePlayer.prevPosX = x;
        mannequinFakePlayer.prevPosY = y;
        mannequinFakePlayer.prevPosZ = z;
    }
    if (te.getGameProfile() != null) {
        if (te.getWorldObj() != null & fakePlayer != null) {
            fakePlayer.setEntityId(te.xCoord * 31 * -te.zCoord);
            fakePlayer.isAirBorne = te.isFlying();
            fakePlayer.capabilities.isFlying = te.isFlying();
        }
    } else {
        mannequinFakePlayer.setEntityId(te.xCoord * 31 * -te.zCoord);
        mannequinFakePlayer.isAirBorne = te.isFlying();
        mannequinFakePlayer.capabilities.isFlying = te.isFlying();
    }
    if (fakePlayer != null) {
        fakePlayer.setEntityId(te.xCoord * 31 * -te.zCoord);
        fakePlayer.isAirBorne = te.isFlying();
        fakePlayer.capabilities.isFlying = te.isFlying();
    }
    if (te.getBipedRotations() != null) {
        te.getBipedRotations().applyRotationsToBiped(model);
        te.getBipedRotations().applyRotationsToBiped(renderPlayer.modelArmor);
        te.getBipedRotations().applyRotationsToBiped(renderPlayer.modelArmorChestplate);
    }
    ApiRegistrar.INSTANCE.onRenderMannequin(te, te.getGameProfile());
    model.bipedRightArm.setRotationPoint(-5.0F, 2.0F, 0.0F);
    model.bipedLeftArm.setRotationPoint(5.0F, 2.0F, 0.0F);
    model.bipedHead.setRotationPoint(0.0F, 0.0F, 0.0F);
    model.bipedHeadwear.setRotationPoint(0.0F, 0.0F, 0.0F);
    model.bipedRightLeg.setRotationPoint(-1.9F, 12.0F, 0.0F);
    model.bipedLeftLeg.setRotationPoint(1.9F, 12.0F, 0.0F);
    rots.applyRotationsToBiped(model);
    model.bipedBody.rotateAngleX = 0;
    model.bipedBody.rotateAngleY = 0;
    model.bipedBody.rotateAngleZ = 0;
    if (isHalloween) {
        double dX = -x - 0.5F;
        double dY = -y - 1.72F;
        double dZ = -z - 0.5F;
        double yaw = Math.atan2(dZ, dX);
        double pitch = Math.atan2(Math.sqrt(dZ * dZ + dX * dX), dY) + Math.PI;
        yaw -= Math.toRadians(rotaion * 22.5F - 90F);
        pitch += Math.PI / 2D;
        model.bipedHead.rotateAngleX = (float) (pitch);
        model.bipedHead.rotateAngleY = (float) (yaw);
        model.bipedHeadwear.rotateAngleX = model.bipedHead.rotateAngleX;
        model.bipedHeadwear.rotateAngleY = model.bipedHead.rotateAngleY;
    }
    mc.mcProfiler.endStartSection("textureBuild");
    if (te.haveSkinsUpdated()) {
        te.sp = getSkinPointers(te);
    }
    if (te.sp != null) {
        ISkinPointer[] sp = te.sp;
        Skin[] skins = new Skin[sp.length];
        ISkinDye[] dyes = new ISkinDye[sp.length];
        boolean hasPaintedSkin = false;
        for (int i = 0; i < sp.length; i++) {
            if (sp[i] != null) {
                skins[i] = ClientSkinCache.INSTANCE.getSkin(sp[i]);
                dyes[i] = sp[i].getSkinDye();
                if (skins[i] != null) {
                    if (skins[i].hasPaintData() | SkinProperties.PROP_ARMOUR_OVERRIDE.getValue(skins[i].getProperties())) {
                        hasPaintedSkin = true;
                    }
                }
            }
        }
        if (hasPaintedSkin) {
            if (te.skinTexture == null) {
                te.skinTexture = new EntityTextureInfo();
            }
            te.skinTexture.updateTexture(rl);
            te.skinTexture.updateSkinColour(te.getSkinColour());
            te.skinTexture.updateHairColour(te.getHairColour());
            te.skinTexture.updateSkins(skins);
            te.skinTexture.updateDyes(dyes);
            if (te.skinTexture.getNeedsUpdate()) {
                if (lastTextureBuild + 200L < System.currentTimeMillis()) {
                    lastTextureBuild = System.currentTimeMillis();
                    rl = te.skinTexture.preRender();
                }
            } else {
                rl = te.skinTexture.preRender();
            }
        }
    }
    mc.mcProfiler.endStartSection("textureBind");
    bindTexture(rl);
    mc.mcProfiler.endStartSection("selectModelRender");
    te.getBipedRotations().hasCustomHead = hasCustomHead(te);
    boolean selectingColour = false;
    GuiMannequinTabSkinHair tabSkinHair = null;
    if (mc.currentScreen instanceof GuiMannequin) {
        GuiMannequin screen = (GuiMannequin) mc.currentScreen;
        if (screen.tileEntity == te) {
            tabSkinHair = screen.tabSkinAndHair;
            if (tabSkinHair.selectingSkinColour | tabSkinHair.selectingHairColour) {
                selectingColour = true;
            }
        }
    }
    if (selectingColour) {
        GL11.glDisable(GL11.GL_LIGHTING);
        if (te.isVisible() & !(te.getGameProfile() != null && te.getGameProfile().getName().equalsIgnoreCase("null"))) {
            renderModel(te, model, fakePlayer);
        }
        tabSkinHair.hoverColour = getColourAtPos(Mouse.getX(), Mouse.getY());
        GL11.glEnable(GL11.GL_LIGHTING);
    }
    mc.mcProfiler.endStartSection("modelRender");
    if (te.isVisible() & !(te.getGameProfile() != null && te.getGameProfile().getName().equalsIgnoreCase("null"))) {
        long time = System.currentTimeMillis();
        int fadeTime = 1000;
        int fade = (int) (time - playerTexture.getDownloadTime());
        if (playerTexture.isDownloaded() & fade < fadeTime) {
            bindTexture(AbstractClientPlayer.locationStevePng);
            renderModel(te, model, fakePlayer);
            bindTexture(rl);
            ModRenderHelper.enableAlphaBlend();
            GL11.glColor4f(1, 1, 1, fade / 1000F);
            GL11.glEnable(GL11.GL_POLYGON_OFFSET_FILL);
            GL11.glPolygonOffset(-3F, -3F);
            renderModel(te, model, fakePlayer);
            GL11.glPolygonOffset(0F, 0F);
            GL11.glDisable(GL11.GL_POLYGON_OFFSET_FILL);
            ModRenderHelper.disableAlphaBlend();
            GL11.glColor4f(1, 1, 1, 1);
        } else {
            renderModel(te, model, fakePlayer);
        }
    }
    mc.mcProfiler.endStartSection("earRender");
    if (te.getGameProfile() != null && te.getGameProfile().getName().equals("deadmau5")) {
        GL11.glPushMatrix();
        GL11.glRotated(Math.toDegrees(model.bipedHead.rotateAngleZ), 0, 0, 1);
        GL11.glRotated(Math.toDegrees(model.bipedHead.rotateAngleY), 0, 1, 0);
        GL11.glRotated(Math.toDegrees(model.bipedHead.rotateAngleX), 1, 0, 0);
        GL11.glTranslated(-5.5F * SCALE, 0, 0);
        GL11.glTranslated(0, -6.5F * SCALE, 0);
        model.bipedEars.render(SCALE);
        GL11.glTranslated(11F * SCALE, 0, 0);
        model.bipedEars.render(SCALE);
        GL11.glPopMatrix();
    }
    mc.mcProfiler.endStartSection("magicCircle");
    // Magic circle.
    if (te.isRenderExtras() & te.isVisible()) {
        Contributor contributor = Contributors.INSTANCE.getContributor(te.getGameProfile());
        if (contributor != null) {
            int offset = te.xCoord * te.yCoord * te.zCoord;
            renderMagicCircle(contributor.r, contributor.g, contributor.b, partialTickTime, offset, te.getBipedRotations().isChild);
        }
    }
    // Render items.
    mc.mcProfiler.endStartSection("equippedItems");
    double distance = Minecraft.getMinecraft().thePlayer.getDistance(te.xCoord + 0.5F, te.yCoord + 0.5F, te.zCoord + 0.5F);
    if (distance <= ConfigHandlerClient.mannequinMaxEquipmentRenderDistance) {
        renderEquippedItems(te, fakePlayer, model, distance);
    }
    mc.mcProfiler.endStartSection("reset");
    model.bipedLeftLeg.rotateAngleZ = 0F;
    model.bipedRightLeg.rotateAngleZ = 0F;
    model.bipedHead.rotateAngleZ = 0F;
    model.bipedHeadwear.rotateAngleZ = 0F;
    renderPlayer.modelArmor.bipedLeftLeg.rotateAngleZ = 0F;
    renderPlayer.modelArmor.bipedRightLeg.rotateAngleZ = 0F;
    renderPlayer.modelArmor.bipedHead.rotateAngleZ = 0F;
    renderPlayer.modelArmor.bipedHeadwear.rotateAngleZ = 0F;
    renderPlayer.modelArmorChestplate.bipedLeftLeg.rotateAngleZ = 0F;
    renderPlayer.modelArmorChestplate.bipedRightLeg.rotateAngleZ = 0F;
    renderPlayer.modelArmorChestplate.bipedHead.rotateAngleZ = 0F;
    renderPlayer.modelArmorChestplate.bipedHeadwear.rotateAngleZ = 0F;
    mc.mcProfiler.endStartSection("pop");
    GL11.glPopAttrib();
    GL11.glPopAttrib();
    GL11.glPopMatrix();
    mc.mcProfiler.endSection();
    mc.mcProfiler.endSection();
}
Also used : EntityTextureInfo(riskyken.armourersWorkshop.client.render.EntityTextureInfo) BipedRotations(riskyken.armourersWorkshop.common.data.BipedRotations) PlayerTexture(riskyken.armourersWorkshop.client.texture.PlayerTexture) ISkinDye(riskyken.armourersWorkshop.api.common.skin.data.ISkinDye) GuiMannequin(riskyken.armourersWorkshop.client.gui.mannequin.GuiMannequin) Contributor(riskyken.armourersWorkshop.common.Contributors.Contributor) GuiMannequinTabSkinHair(riskyken.armourersWorkshop.client.gui.mannequin.GuiMannequinTabSkinHair) MannequinFakePlayer(riskyken.armourersWorkshop.client.render.MannequinFakePlayer) GameProfile(com.mojang.authlib.GameProfile) ResourceLocation(net.minecraft.util.ResourceLocation) Skin(riskyken.armourersWorkshop.common.skin.data.Skin) ISkinPointer(riskyken.armourersWorkshop.api.common.skin.data.ISkinPointer) ModelMannequin(riskyken.armourersWorkshop.client.model.ModelMannequin)

Example 9 with ISkinPointer

use of riskyken.armourersWorkshop.api.common.skin.data.ISkinPointer in project Armourers-Workshop by RiskyKen.

the class SkinDataHandler method saveSkinPointerOnStack.

@Override
public void saveSkinPointerOnStack(ISkinPointer skinPointer, ItemStack stack) {
    if (stack == null) {
        return;
    }
    SkinPointer sp = new SkinPointer(skinPointer);
    SkinNBTHelper.addSkinDataToStack(stack, sp);
}
Also used : ISkinPointer(riskyken.armourersWorkshop.api.common.skin.data.ISkinPointer) SkinPointer(riskyken.armourersWorkshop.common.skin.data.SkinPointer)

Example 10 with ISkinPointer

use of riskyken.armourersWorkshop.api.common.skin.data.ISkinPointer in project Armourers-Workshop by RiskyKen.

the class SkinDataHandler method writeSkinPointerToCompound.

@Override
public void writeSkinPointerToCompound(ISkinPointer skinPointer, NBTTagCompound compound) {
    if (compound == null) {
        return;
    }
    SkinPointer sp = new SkinPointer(skinPointer);
    sp.writeToCompound(compound);
}
Also used : ISkinPointer(riskyken.armourersWorkshop.api.common.skin.data.ISkinPointer) SkinPointer(riskyken.armourersWorkshop.common.skin.data.SkinPointer)

Aggregations

ISkinPointer (riskyken.armourersWorkshop.api.common.skin.data.ISkinPointer)15 Skin (riskyken.armourersWorkshop.common.skin.data.Skin)8 SkinPointer (riskyken.armourersWorkshop.common.skin.data.SkinPointer)4 ItemStack (net.minecraft.item.ItemStack)3 AbstractModelSkin (riskyken.armourersWorkshop.client.model.skin.AbstractModelSkin)2 GameProfile (com.mojang.authlib.GameProfile)1 SubscribeEvent (cpw.mods.fml.common.eventhandler.SubscribeEvent)1 Color (java.awt.Color)1 Block (net.minecraft.block.Block)1 AbstractClientPlayer (net.minecraft.client.entity.AbstractClientPlayer)1 EntityClientPlayerMP (net.minecraft.client.entity.EntityClientPlayerMP)1 ModelZombieVillager (net.minecraft.client.model.ModelZombieVillager)1 RenderSkeleton (net.minecraft.client.renderer.entity.RenderSkeleton)1 RenderZombie (net.minecraft.client.renderer.entity.RenderZombie)1 EntityPlayer (net.minecraft.entity.player.EntityPlayer)1 Slot (net.minecraft.inventory.Slot)1 MovingObjectPosition (net.minecraft.util.MovingObjectPosition)1 ResourceLocation (net.minecraft.util.ResourceLocation)1 World (net.minecraft.world.World)1 ForgeDirection (net.minecraftforge.common.util.ForgeDirection)1