Corrected summoning point drain rate

This commit is contained in:
Player Name 2024-10-06 12:29:06 +00:00 committed by Ryan
parent 9f61ffb153
commit e31397b42f

View file

@ -27,7 +27,6 @@ import core.tools.Log;
import core.tools.RandomFunction;
import core.game.node.entity.combat.CombatPulse;
import core.game.node.entity.combat.CombatSwingHandler;
import core.tools.SystemLogger;
import core.game.world.GameWorld;
import content.global.skill.summoning.SummoningPouch;
import org.rs09.consts.Sounds;
@ -120,6 +119,29 @@ public abstract class Familiar extends NPC implements Plugin<Object> {
*/
private final int attackStyle;
/**
* The amount of points to drain every tick.
* This is a constant depending on the familiar's level req and time remaining (GL #1903).
* https://runescape.wiki/w/Summoning_points?oldid=2171795: "Over the life of the familiar, the number of summoning
* points drained will be equal to the level required to summon the familiar (unless you run out of summoning
* points). This means that if a player summons a bunyip with 75 Summoning points remaining, 7 points will be
* drained immediately, and 61 more will be drained over the life the bunyip, for a total of 68 points (the level of
* the bunyip)."
*/
private final double pointsPerTick;
/**
* Keeps track of the fractional pointsPerTick that have been drained already. If >1.0, drain a point and subtract
* 1.0. Note that this means that we will never drain a point on the final tick (unless pointsPerTick turned out to
* be integer, but this case is handled by the 'ticks > 0' check in handleTickActions()). This is intentional; it
* allows us to, correctly, artificially extend the interval by one so that the drain events are evenly spaced
* throughout the lifetime of the summon (refer to the dreadfowl example below).
*/
private double fracDrain = 0.0;
/**
* Whether this is the first call (i.e. not a renew summon).
*/
private boolean firstCall = true;
/**
@ -141,6 +163,23 @@ public abstract class Familiar extends NPC implements Plugin<Object> {
this.specialCost = specialCost;
this.combatFamiliar = NPCDefinition.forId(getOriginalId() + 1).getName().equals(getName());
this.attackStyle = attackStyle;
/* The initial points are drained on summon. Then, the remaining points are drained over an interval.
* To prevent the last point from being drained only very late, we artificially extend the interval by one.
* Example: a dreadfowl drains 1 point on summon, and then needs to drain 3 points over 400 ticks. Naively
* draining a point on ticks 133, 266, and 399 allows players to save a point at the expense of just one tick.
* Instead, we drain on ticks 100, 200, and 300.
* Example 2: a spirit tz-kih drains 3 points on summon, then needs to drain 19 more points over 1800 ticks.
* This means it needs to drain a point every 90 ticks, since the 0th tick remaining will not drain.
* Example 3: a vampire bat needs to drain 27 points over 3300 ticks. It hence drains a point every ~118 ticks.
* Example 4: an abyssal titan drains 10 points on summon, then needs to drain 83 more points over 3200 ticks.
* This means it needs to drain a point every ~34 ticks.
*/
if (pouchId == -1) {
this.pointsPerTick = 0.0;
} else {
int drain = pouch.getLevelRequired() - pouch.getSummonCost() + 1;
this.pointsPerTick = (double) drain / maximumTicks;
}
}
/**
@ -184,9 +223,14 @@ public abstract class Familiar extends NPC implements Plugin<Object> {
@Override
public void handleTickActions() {
if (ticks-- % 50 == 0) {
updateSpecialPoints(-15);
ticks--;
fracDrain += pointsPerTick;
if (fracDrain > 1.0 && ticks > 0) {
fracDrain -= 1.0;
owner.getSkills().updateLevel(Skills.SUMMONING, -1, 0);
}
if (ticks % 50 == 0) {
updateSpecialPoints(-15);
if (!getText().isEmpty()) {
super.sendChat(getText());
}