getAll() as $name => $data){ $color = hexdec(substr($data["color"], 3)); $r = ($color >> 16) & 0xff; $g = ($color >> 8) & 0xff; $b = $color & 0xff; self::registerEffect($name, new Effect( $data["id"], "%potion." . $data["name"], $r, $g, $b, $data["isBad"] ?? false, $data["default_duration"] ?? 300 * 20, $data["has_bubbles"] ?? true )); } } /** * @param string $internalName * @param Effect $effect */ public static function registerEffect(string $internalName, Effect $effect){ self::$effects[$effect->getId()] = $effect; self::$effects[$internalName] = $effect; } /** * @param int $id * * @return Effect|null */ public static function getEffect(int $id){ if(isset(self::$effects[$id])){ return clone self::$effects[$id]; } return null; } /** * @param string $name * * @return Effect|null */ public static function getEffectByName(string $name){ if(isset(self::$effects[$name])){ return clone self::$effects[$name]; } return null; } /** @var int */ protected $id; /** @var string */ protected $name; /** @var int */ protected $duration; /** @var int */ protected $amplifier = 0; /** @var int[] */ protected $color; /** @var bool */ protected $visible = true; /** @var bool */ protected $ambient = false; /** @var bool */ protected $bad; /** @var int */ protected $defaultDuration = 300 * 20; /** @var bool */ protected $hasBubbles = true; /** * @param int $id Effect ID as per Minecraft PE * @param string $name Translation key used for effect name * @param int $r 0-255, red balance of potion particle colour * @param int $g 0-255, green balance of potion particle colour * @param int $b 0-255, blue balance of potion particle colour * @param bool $isBad Whether the effect is harmful * @param int $defaultDuration Duration in ticks the effect will last for by default if applied without a duration. * @param bool $hasBubbles Whether the effect has potion bubbles. Some do not (e.g. Instant Damage has its own particles instead of bubbles) */ public function __construct(int $id, string $name, int $r, int $g, int $b, bool $isBad = false, int $defaultDuration = 300 * 20, bool $hasBubbles = true){ $this->id = $id; $this->name = $name; $this->bad = $isBad; $this->setColor($r, $g, $b); $this->defaultDuration = $defaultDuration; $this->duration = $defaultDuration; $this->hasBubbles = $hasBubbles; } /** * Returns the translation key used to translate this effect's name. * @return string */ public function getName() : string{ return $this->name; } /** * Returns the effect ID as per Minecraft PE * @return int */ public function getId() : int{ return $this->id; } /** * Sets the duration in ticks of the effect. * @param $ticks * * @return $this */ public function setDuration(int $ticks){ if($ticks < 0 or $ticks > INT32_MAX){ throw new \InvalidArgumentException("Effect duration must be in range of 0 - " . INT32_MAX); } $this->duration = $ticks; return $this; } /** * Returns the duration remaining of the effect in ticks. * @return int */ public function getDuration() : int{ return $this->duration; } /** * Returns the default duration this effect will apply for if a duration is not specified. * @return int */ public function getDefaultDuration() : int{ return $this->defaultDuration; } /** * Returns whether this effect will give the subject potion bubbles. * @return bool */ public function hasBubbles() : bool{ return $this->hasBubbles; } /** * Returns whether this effect will produce some visible effect, such as bubbles or particles. * NOTE: Do not confuse this with {@link Effect#hasBubbles}. For example, Instant Damage does not have bubbles, but still produces visible effects (particles). * * @return bool */ public function isVisible() : bool{ return $this->visible; } /** * Changes the visibility of the effect. * * @param bool $bool * * @return $this */ public function setVisible(bool $bool){ $this->visible = $bool; return $this; } /** * Returns the level of this effect, which is always one higher than the amplifier. * * @return int */ public function getEffectLevel() : int{ return $this->amplifier + 1; } /** * Returns the amplifier of this effect. * @return int */ public function getAmplifier() : int{ return $this->amplifier; } /** * @param int $amplifier * * @return $this */ public function setAmplifier(int $amplifier){ $this->amplifier = ($amplifier & 0xff); return $this; } /** * Returns whether the effect is ambient. * @return bool */ public function isAmbient() : bool{ return $this->ambient; } /** * Sets the ambiency of this effect. * * @param bool $ambient * * @return $this */ public function setAmbient(bool $ambient = true){ $this->ambient = $ambient; return $this; } /** * Returns whether this effect is harmful. * TODO: implement inverse effect results for undead mobs * * @return bool */ public function isBad() : bool{ return $this->bad; } /** * Returns whether the effect will do something on the current tick. * * @return bool */ public function canTick() : bool{ switch($this->id){ case Effect::POISON: if(($interval = (25 >> $this->amplifier)) > 0){ return ($this->duration % $interval) === 0; } return true; case Effect::WITHER: if(($interval = (50 >> $this->amplifier)) > 0){ return ($this->duration % $interval) === 0; } return true; case Effect::REGENERATION: if(($interval = (40 >> $this->amplifier)) > 0){ return ($this->duration % $interval) === 0; } return true; case Effect::HUNGER: if($this->amplifier < 0){ // prevents hacking with amplifier -1 return false; } if(($interval = 20) > 0){ return ($this->duration % $interval) === 0; } return true; case Effect::INSTANT_DAMAGE: case Effect::INSTANT_HEALTH: //If forced to last longer than 1 tick, these apply every tick. return true; } return false; } /** * Applies effect results to an entity. * * @param Entity $entity */ public function applyEffect(Entity $entity){ switch($this->id){ case Effect::POISON: if($entity->getHealth() > 1){ $ev = new EntityDamageEvent($entity, EntityDamageEvent::CAUSE_MAGIC, 1); $entity->attack($ev); } break; case Effect::WITHER: $ev = new EntityDamageEvent($entity, EntityDamageEvent::CAUSE_MAGIC, 1); $entity->attack($ev); break; case Effect::REGENERATION: if($entity->getHealth() < $entity->getMaxHealth()){ $ev = new EntityRegainHealthEvent($entity, 1, EntityRegainHealthEvent::CAUSE_MAGIC); $entity->heal($ev); } break; case Effect::HUNGER: if($entity instanceof Human){ $entity->exhaust(0.5 * $this->getEffectLevel(), PlayerExhaustEvent::CAUSE_POTION); } break; case Effect::INSTANT_HEALTH: //TODO: add particles (witch spell) if($entity->getHealth() < $entity->getMaxHealth()){ $amount = 2 * (2 ** ($this->getEffectLevel() % 32)); $entity->heal(new EntityRegainHealthEvent($entity, $amount, EntityRegainHealthEvent::CAUSE_MAGIC)); } break; case Effect::INSTANT_DAMAGE: //TODO: add particles (witch spell) $amount = 2 * (2 ** ($this->getEffectLevel() % 32)); $entity->attack(new EntityDamageEvent($entity, EntityDamageEvent::CAUSE_MAGIC, $amount)); break; } } /** * Returns an RGB color array of this effect's color. * @return int[] */ public function getColor() : array{ return [$this->color >> 16, ($this->color >> 8) & 0xff, $this->color & 0xff]; } /** * Sets the color of this effect. * * @param int $r * @param int $g * @param int $b */ public function setColor(int $r, int $g, int $b){ $this->color = (($r & 0xff) << 16) + (($g & 0xff) << 8) + ($b & 0xff); } /** * Adds this effect to the Entity, performing effect overriding as specified. * * @param Entity $entity * @param Effect|null $oldEffect */ public function add(Entity $entity, Effect $oldEffect = null){ $entity->getLevel()->getServer()->getPluginManager()->callEvent($ev = new EntityEffectAddEvent($entity, $this, $oldEffect)); if($ev->isCancelled()){ return; } if($entity instanceof Player){ $pk = new MobEffectPacket(); $pk->entityRuntimeId = $entity->getId(); $pk->effectId = $this->getId(); $pk->amplifier = $this->getAmplifier(); $pk->particles = $this->isVisible(); $pk->duration = $this->getDuration(); if($oldEffect !== null){ $pk->eventId = MobEffectPacket::EVENT_MODIFY; }else{ $pk->eventId = MobEffectPacket::EVENT_ADD; } $entity->dataPacket($pk); } if($oldEffect !== null){ $oldEffect->remove($entity, false); } switch($this->id){ case Effect::INVISIBILITY: $entity->setGenericFlag(Entity::DATA_FLAG_INVISIBLE, true); $entity->setNameTagVisible(false); break; case Effect::SPEED: $attr = $entity->getAttributeMap()->getAttribute(Attribute::MOVEMENT_SPEED); $attr->setValue($attr->getValue() * (1 + 0.2 * $this->getEffectLevel())); break; case Effect::SLOWNESS: $attr = $entity->getAttributeMap()->getAttribute(Attribute::MOVEMENT_SPEED); $attr->setValue($attr->getValue() * (1 - 0.15 * $this->getEffectLevel()), true); break; case Effect::HEALTH_BOOST: $attr = $entity->getAttributeMap()->getAttribute(Attribute::HEALTH); $attr->setMaxValue($attr->getMaxValue() + 4 * $this->getEffectLevel()); break; case Effect::ABSORPTION: $new = (4 * $this->getEffectLevel()); if($new > $entity->getAbsorption()){ $entity->setAbsorption($new); } break; } } /** * Removes the effect from the entity, resetting any changed values back to their original defaults. * * @param Entity $entity * @param bool $send */ public function remove(Entity $entity, bool $send = true){ $entity->getLevel()->getServer()->getPluginManager()->callEvent($ev = new EntityEffectRemoveEvent($entity, $this)); if($ev->isCancelled()){ return; } if($send and $entity instanceof Player){ $pk = new MobEffectPacket(); $pk->entityRuntimeId = $entity->getId(); $pk->eventId = MobEffectPacket::EVENT_REMOVE; $pk->effectId = $this->getId(); $entity->dataPacket($pk); } switch($this->id){ case Effect::INVISIBILITY: $entity->setGenericFlag(Entity::DATA_FLAG_INVISIBLE, false); $entity->setNameTagVisible(true); break; case Effect::SPEED: $attr = $entity->getAttributeMap()->getAttribute(Attribute::MOVEMENT_SPEED); $attr->setValue($attr->getValue() / (1 + 0.2 * $this->getEffectLevel())); break; case Effect::SLOWNESS: $attr = $entity->getAttributeMap()->getAttribute(Attribute::MOVEMENT_SPEED); $attr->setValue($attr->getValue() / (1 - 0.15 * $this->getEffectLevel())); break; case Effect::HEALTH_BOOST: $attr = $entity->getAttributeMap()->getAttribute(Attribute::HEALTH); $attr->setMaxValue($attr->getMaxValue() - 4 * $this->getEffectLevel()); break; case Effect::ABSORPTION: $entity->setAbsorption(0); break; } } }