aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/EyeOfEnderSignal.h
blob: 72d572f869f09adc6ade432428e6b0954e11c433 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#pragma once

#include "Entity.h"

class EyeOfEnderSignal : public Entity
{
public:
	eINSTANCEOF GetType() {	return eTYPE_EYEOFENDERSIGNAL; }
	static Entity *create(Level *level) { return new EyeOfEnderSignal(level); }

public:
	int shakeTime;

private:
	double tx, ty, tz;
	int life;
	bool surviveAfterDeath;

	void _init();

public:
	EyeOfEnderSignal(Level *level);

protected:
	virtual void defineSynchedData();

public:
	virtual bool shouldRenderAtSqrDistance(double distance);

	EyeOfEnderSignal(Level *level, double x, double y, double z);

	void signalTo(double tx, int ty, double tz);
	virtual void lerpMotion(double xd, double yd, double zd);
	virtual void tick();
	virtual void addAdditonalSaveData(CompoundTag *tag);
	virtual void readAdditionalSaveData(CompoundTag *tag);
	virtual float getShadowHeightOffs();
	virtual float getBrightness(float a);
	virtual int getLightColor(float a);
	virtual bool isAttackable();
};