blob: 6ab4af0cc33fbd17a8e8e403ec860b0be2406dc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#pragma once
#include "LivingEntityRenderer.h"
class Mob;
using namespace std;
// This was used in MobRenderer but lots of code moved to LivingEntity and I haven't put this back yet
/*#define PLAYER_NAME_READABLE_FULLSCREEN 16
#define PLAYER_NAME_READABLE_DISTANCE_SPLITSCREEN 8
#define PLAYER_NAME_READABLE_DISTANCE_SD 8*/
// 4J - this used to be a generic : public class MobRenderer<T extends Mob> extends EntityRenderer<T>
class MobRenderer : public LivingEntityRenderer
{
public:
MobRenderer(Model *model, float shadow);
virtual void render(shared_ptr<Entity> mob, double x, double y, double z, float rot, float a);
protected:
virtual bool shouldShowName(shared_ptr<LivingEntity> mob);
virtual void renderLeash(shared_ptr<Mob> entity, double x, double y, double z, float rot, float a);
private:
double lerp(double prev, double next, double a);
};
|