mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LegacyNetherFork.git
synced 2026-05-22 00:46:51 +00:00
88 lines
2.7 KiB
C++
88 lines
2.7 KiB
C++
#include "stdafx.h"
|
|
#include "EvupulRenderer.h"
|
|
#include "EvupulModel.h"
|
|
#include "..\Minecraft.World\net.minecraft.world.entity.monster.h"
|
|
#include "..\Minecraft.World\net.minecraft.world.entity.animal.h"
|
|
|
|
ResourceLocation EvupulRenderer::EVUPUL_LOCATION = ResourceLocation(TN_MOB_EVUPUL);
|
|
ResourceLocation EvupulRenderer::EVUPUL_OVERLAY_LOCATION = ResourceLocation(TN_MOB_EVUPULOVERLAY);
|
|
ResourceLocation EvupulRenderer::EVUPULDARK_LOCATION = ResourceLocation(TN_MOB_EVUPULDARK);
|
|
ResourceLocation EvupulRenderer::EVUPULDARK_OVERLAY_LOCATION = ResourceLocation(TN_MOB_EVUPULDARKOVERLAY);
|
|
ResourceLocation EvupulRenderer::EVUPULGOLD_LOCATION = ResourceLocation(TN_MOB_EVUPULGOLD);
|
|
ResourceLocation EvupulRenderer::EVUPULGOLD_OVERLAY_LOCATION = ResourceLocation(TN_MOB_EVUPULGOLDOVERLAY);
|
|
|
|
EvupulRenderer::EvupulRenderer() : MobRenderer(new EvupulModel(), 0.6f)
|
|
{
|
|
this->setArmor(new EvupulModel());
|
|
}
|
|
|
|
void EvupulRenderer::render(shared_ptr<Entity> _mob, double x, double y, double z, float rot, float a)
|
|
{
|
|
MobRenderer::render(_mob, x, y, z, rot, a);
|
|
}
|
|
|
|
ResourceLocation *EvupulRenderer::getTextureLocation(shared_ptr<Entity> entity)
|
|
{
|
|
shared_ptr<EvupulDark> evupulDark = dynamic_pointer_cast<EvupulDark>(entity);
|
|
shared_ptr<Evupul> evupul = dynamic_pointer_cast<Evupul>(entity);
|
|
|
|
if (entity->instanceof(eTYPE_EVUPULDARK))
|
|
{
|
|
return &EVUPULDARK_LOCATION;
|
|
}
|
|
|
|
if (evupul->getEvupulType() == Evupul::TYPE_DEFAULT)
|
|
{
|
|
return &EVUPUL_LOCATION;
|
|
}
|
|
if (evupul->getEvupulType() == Evupul::TYPE_GOLD)
|
|
{
|
|
return &EVUPULGOLD_LOCATION;
|
|
}
|
|
}
|
|
|
|
int EvupulRenderer::prepareArmor(shared_ptr<LivingEntity> _mob, int layer, float a)
|
|
{
|
|
shared_ptr<EvupulDark> evupulDark = dynamic_pointer_cast<EvupulDark>(_mob);
|
|
shared_ptr<Evupul> evupul = dynamic_pointer_cast<Evupul>(_mob);
|
|
|
|
if (layer!=0) return -1;
|
|
MemSect(31);
|
|
if (shared_ptr<LivingEntity>(evupulDark))
|
|
{
|
|
bindTexture(&EVUPULDARK_OVERLAY_LOCATION);
|
|
}
|
|
else
|
|
{
|
|
if (evupul->getEvupulType() == Evupul::TYPE_DEFAULT)
|
|
{
|
|
bindTexture(&EVUPUL_OVERLAY_LOCATION);
|
|
}
|
|
else if (evupul->getEvupulType() == Evupul::TYPE_GOLD)
|
|
{
|
|
bindTexture(&EVUPULGOLD_OVERLAY_LOCATION);
|
|
}
|
|
}
|
|
MemSect(0);
|
|
float br = 1.0f;
|
|
glEnable(GL_BLEND);
|
|
#ifdef _XBOX
|
|
glDisable(GL_ALPHA_TEST);
|
|
#endif
|
|
glBlendFunc(GL_ONE, GL_ONE);
|
|
//if (evupulDark->isInvisible()) glDepthMask(false);
|
|
//else glDepthMask(true);
|
|
|
|
if (SharedConstants::TEXTURE_LIGHTING)
|
|
{
|
|
int col = 0x00f0;
|
|
int u = col % 65536;
|
|
int v = col / 65536;
|
|
|
|
glMultiTexCoord2f(GL_TEXTURE1, u / 1.0f, v / 1.0f);
|
|
glColor4f(1, 1, 1, 1);
|
|
}
|
|
glColor4f(1, 1, 1, br);
|
|
return 1;
|
|
}
|