Files
MinecraftConsoles/Minecraft.Client/VillagerGolemRenderer.cpp
daoge b3feddfef3 feat: TU19 (Dec 2014) Features & Content (#155)
* try to resolve merge conflict

* feat: TU19 (Dec 2014) Features & Content (#32)

* December 2014 files

* Working release build

* Fix compilation issues

* Add sound to Windows64Media

* Add DLC content and force Tutorial DLC

* Revert "Add DLC content and force Tutorial DLC"

This reverts commit 97a4399472.

* Disable broken light packing

* Disable breakpoint during DLC texture map load

Allows DLC loading but the DLC textures are still broken

* Fix post build not working

* ...

* fix vs2022 build

* fix cmake build

---------

Co-authored-by: Loki <lokirautio@gmail.com>
2026-03-03 03:04:10 +08:00

72 lines
2.5 KiB
C++

#include "stdafx.h"
#include "..\Minecraft.World\net.minecraft.world.entity.animal.h"
#include "..\Minecraft.World\net.minecraft.world.level.tile.h"
#include "VillagerGolemModel.h"
#include "ModelPart.h"
#include "TextureAtlas.h"
#include "VillagerGolemRenderer.h"
ResourceLocation VillagerGolemRenderer::GOLEM_LOCATION = ResourceLocation(TN_MOB_VILLAGER_GOLEM);
VillagerGolemRenderer::VillagerGolemRenderer() : MobRenderer(new VillagerGolemModel(), 0.5f)
{
golemModel = (VillagerGolemModel *) model;
}
void VillagerGolemRenderer::render(shared_ptr<Entity> mob, double x, double y, double z, float rot, float a)
{
MobRenderer::render(mob, x, y, z, rot, a);
}
void VillagerGolemRenderer::setupRotations(shared_ptr<LivingEntity> _mob, float bob, float bodyRot, float a)
{
// 4J - original version used generics and thus had an input parameter of type Blaze rather than shared_ptr<Entity> we have here -
// do some casting around instead
shared_ptr<VillagerGolem> mob = dynamic_pointer_cast<VillagerGolem>(_mob);
MobRenderer::setupRotations(mob, bob, bodyRot, a);
if (mob->walkAnimSpeed < 0.01) return;
float p = 13;
float wp = mob->walkAnimPos - mob->walkAnimSpeed * (1 - a) + 6;
float triangleWave = (abs(fmod(wp ,p) - p * 0.5f) - p * 0.25f) / (p * 0.25f);
glRotatef(6.5f * triangleWave, 0, 0, 1);
}
ResourceLocation *VillagerGolemRenderer::getTextureLocation(shared_ptr<Entity> mob)
{
return &GOLEM_LOCATION;
}
void VillagerGolemRenderer::additionalRendering(shared_ptr<LivingEntity> _mob, float a)
{
// 4J - original version used generics and thus had an input parameter of type Blaze rather than shared_ptr<Entity> we have here -
// do some casting around instead
shared_ptr<VillagerGolem> mob = dynamic_pointer_cast<VillagerGolem>(_mob);
MobRenderer::additionalRendering(mob, a);
if (mob->getOfferFlowerTick() == 0) return;
glEnable(GL_RESCALE_NORMAL);
glPushMatrix();
// dont ask me how I got the flower into his hand.
glRotatef(5 + 180 * golemModel->arm0->xRot / PI, 1, 0, 0);
glTranslatef(-11 / 16.0f, 20 / 16.0f, -15 / 16.0f);
glRotatef(90, 1, 0, 0);
float s = 0.8f;
glScalef(s, -s, s);
if (SharedConstants::TEXTURE_LIGHTING)
{
int col = mob->getLightColor(a);
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, 1);
bindTexture(&TextureAtlas::LOCATION_BLOCKS); // TODO: By Icon
tileRenderer->renderTile(Tile::rose, 0, 1);
glPopMatrix();
glDisable(GL_RESCALE_NORMAL);
}