mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-06 02:33:37 +00:00
70 lines
1.4 KiB
C++
70 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include "../Entity.h"
|
|
#include "../../Util/ParticleTypes.h"
|
|
|
|
class HitResult;
|
|
|
|
class Fireball : public Entity {
|
|
public:
|
|
eINSTANCEOF GetType() { return eTYPE_FIREBALL; }
|
|
|
|
private:
|
|
int xTile;
|
|
int yTile;
|
|
int zTile;
|
|
int lastTile;
|
|
|
|
private:
|
|
bool inGround;
|
|
|
|
public:
|
|
std::shared_ptr<LivingEntity> owner;
|
|
|
|
private:
|
|
int life;
|
|
int flightTime;
|
|
|
|
// 4J - added common ctor code.
|
|
void _init();
|
|
|
|
public:
|
|
double xPower, yPower, zPower;
|
|
|
|
Fireball(Level* level);
|
|
|
|
protected:
|
|
virtual void defineSynchedData();
|
|
|
|
public:
|
|
virtual bool shouldRenderAtSqrDistance(double distance);
|
|
|
|
Fireball(Level* level, double x, double y, double z, double xa, double ya,
|
|
double za);
|
|
Fireball(Level* level, std::shared_ptr<LivingEntity> mob, double xa,
|
|
double ya, double za);
|
|
|
|
public:
|
|
virtual void tick();
|
|
|
|
protected:
|
|
virtual float getInertia();
|
|
virtual void onHit(HitResult* res) = 0;
|
|
|
|
public:
|
|
virtual void addAdditonalSaveData(CompoundTag* tag);
|
|
virtual void readAdditionalSaveData(CompoundTag* tag);
|
|
virtual bool isPickable();
|
|
virtual float getPickRadius();
|
|
virtual bool hurt(DamageSource* source, float damage);
|
|
virtual float getShadowHeightOffs();
|
|
virtual float getBrightness(float a);
|
|
virtual int getLightColor(float a);
|
|
|
|
protected:
|
|
// 4J Added TU9
|
|
virtual ePARTICLE_TYPE getTrailParticleType();
|
|
|
|
virtual bool shouldBurn();
|
|
};
|