* 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>
162 lines
4.2 KiB
C++
162 lines
4.2 KiB
C++
#include "stdafx.h"
|
|
#include "net.minecraft.world.level.h"
|
|
#include "net.minecraft.world.level.tile.h"
|
|
#include "net.minecraft.world.phys.h"
|
|
#include "net.minecraft.world.item.h"
|
|
#include "net.minecraft.world.effect.h"
|
|
#include "SharedConstants.h"
|
|
#include "JavaMath.h"
|
|
#include "ThrownPotion.h"
|
|
|
|
|
|
|
|
const double ThrownPotion::SPLASH_RANGE = 4.0;
|
|
const double ThrownPotion::SPLASH_RANGE_SQ = ThrownPotion::SPLASH_RANGE * ThrownPotion::SPLASH_RANGE;
|
|
|
|
void ThrownPotion::_init()
|
|
{
|
|
// 4J Stu - This function call had to be moved here from the Entity ctor to ensure that
|
|
// the derived version of the function is called
|
|
this->defineSynchedData();
|
|
|
|
potionItem = nullptr;
|
|
}
|
|
|
|
ThrownPotion::ThrownPotion(Level *level) : Throwable(level)
|
|
{
|
|
_init();
|
|
}
|
|
|
|
ThrownPotion::ThrownPotion(Level *level, shared_ptr<LivingEntity> mob, int potionValue) : Throwable(level,mob)
|
|
{
|
|
_init();
|
|
|
|
potionItem = shared_ptr<ItemInstance>( new ItemInstance(Item::potion, 1, potionValue));
|
|
}
|
|
|
|
ThrownPotion::ThrownPotion(Level *level, shared_ptr<LivingEntity> mob, shared_ptr<ItemInstance> potion) : Throwable(level, mob)
|
|
{
|
|
_init();
|
|
|
|
potionItem = potion;
|
|
}
|
|
|
|
ThrownPotion::ThrownPotion(Level *level, double x, double y, double z, int potionValue) : Throwable(level,x,y,z)
|
|
{
|
|
_init();
|
|
|
|
potionItem = shared_ptr<ItemInstance>( new ItemInstance(Item::potion, 1, potionValue));
|
|
}
|
|
|
|
ThrownPotion::ThrownPotion(Level *level, double x, double y, double z, shared_ptr<ItemInstance> potion) : Throwable(level, x, y, z)
|
|
{
|
|
_init();
|
|
|
|
potionItem = potion;
|
|
}
|
|
|
|
float ThrownPotion::getGravity()
|
|
{
|
|
return 0.05f;
|
|
}
|
|
|
|
float ThrownPotion::getThrowPower()
|
|
{
|
|
return 0.5f;
|
|
}
|
|
|
|
float ThrownPotion::getThrowUpAngleOffset()
|
|
{
|
|
return -20;
|
|
}
|
|
|
|
void ThrownPotion::setPotionValue(int potionValue)
|
|
{
|
|
if (potionItem == NULL) potionItem = shared_ptr<ItemInstance>( new ItemInstance(Item::potion, 1, 0) );
|
|
potionItem->setAuxValue(potionValue);
|
|
}
|
|
|
|
int ThrownPotion::getPotionValue()
|
|
{
|
|
if (potionItem == NULL) potionItem = shared_ptr<ItemInstance>( new ItemInstance(Item::potion, 1, 0) );
|
|
return potionItem->getAuxValue();
|
|
}
|
|
|
|
void ThrownPotion::onHit(HitResult *res)
|
|
{
|
|
if (!level->isClientSide)
|
|
{
|
|
vector<MobEffectInstance *> *mobEffects = Item::potion->getMobEffects(potionItem);
|
|
|
|
if (mobEffects != NULL && !mobEffects->empty())
|
|
{
|
|
AABB *aoe = bb->grow(SPLASH_RANGE, SPLASH_RANGE / 2, SPLASH_RANGE);
|
|
vector<shared_ptr<Entity> > *entitiesOfClass = level->getEntitiesOfClass(typeid(LivingEntity), aoe);
|
|
|
|
if (entitiesOfClass != NULL && !entitiesOfClass->empty())
|
|
{
|
|
//for (Entity e : entitiesOfClass)
|
|
for(AUTO_VAR(it, entitiesOfClass->begin()); it != entitiesOfClass->end(); ++it)
|
|
{
|
|
//shared_ptr<Entity> e = *it;
|
|
shared_ptr<LivingEntity> e = dynamic_pointer_cast<LivingEntity>( *it );
|
|
double dist = distanceToSqr(e);
|
|
if (dist < SPLASH_RANGE_SQ)
|
|
{
|
|
double scale = 1.0 - (sqrt(dist) / SPLASH_RANGE);
|
|
if (e == res->entity)
|
|
{
|
|
scale = 1;
|
|
}
|
|
|
|
//for (MobEffectInstance effect : mobEffects)
|
|
for(AUTO_VAR(itMEI, mobEffects->begin()); itMEI != mobEffects->end(); ++itMEI)
|
|
{
|
|
MobEffectInstance *effect = *itMEI;
|
|
int id = effect->getId();
|
|
if (MobEffect::effects[id]->isInstantenous())
|
|
{
|
|
MobEffect::effects[id]->applyInstantenousEffect(getOwner(), e, effect->getAmplifier(), scale);
|
|
}
|
|
else
|
|
{
|
|
int duration = (int) (scale * (double) effect->getDuration() + .5);
|
|
if (duration > SharedConstants::TICKS_PER_SECOND)
|
|
{
|
|
e->addEffect(new MobEffectInstance(id, duration, effect->getAmplifier()));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
delete entitiesOfClass;
|
|
}
|
|
level->levelEvent(LevelEvent::PARTICLES_POTION_SPLASH, (int) Math::round(x), (int) Math::round(y), (int) Math::round(z), getPotionValue() );
|
|
|
|
remove();
|
|
}
|
|
}
|
|
|
|
void ThrownPotion::readAdditionalSaveData(CompoundTag *tag)
|
|
{
|
|
Throwable::readAdditionalSaveData(tag);
|
|
|
|
if (tag->contains(L"Potion"))
|
|
{
|
|
potionItem = ItemInstance::fromTag(tag->getCompound(L"Potion"));
|
|
}
|
|
else
|
|
{
|
|
setPotionValue(tag->getInt(L"potionValue"));
|
|
}
|
|
|
|
if (potionItem == NULL) remove();
|
|
}
|
|
|
|
void ThrownPotion::addAdditonalSaveData(CompoundTag *tag)
|
|
{
|
|
Throwable::addAdditonalSaveData(tag);
|
|
|
|
if (potionItem != NULL) tag->putCompound(L"Potion", potionItem->save(new CompoundTag()));
|
|
} |