* 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>
72 lines
1.3 KiB
C++
72 lines
1.3 KiB
C++
#pragma once
|
|
using namespace std;
|
|
|
|
#include "Entity.h"
|
|
#include "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:
|
|
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, 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();
|
|
};
|
|
|
|
|