OneBar

OneBar

2.7k Downloads

Hunger effect estimate

Madis0 opened this issue ยท 2 comments

commented

OneBar should estimate the hunger that the player gets at the end of the effect.

commented

Apparently hunger effect is based on exhaustion: 0.1 * level * second or 0.005 * level * tick, however exhaustion is server-side, so exact calculations cannot be made. Some estimations could be, however, let's try...

commented

Current formula:

        StatusEffectInstance hungerEffect = playerEntity.getStatusEffect(StatusEffects.HUNGER);
        hungerEffectSaturationLoss = 0;
        if(hungerEffect != null) {
            float hungerEffectExhaustionLoss = 0.005F * (float)(hungerEffect.getAmplifier() + 1) * hungerEffect.getDuration();
            hungerEffectSaturationLoss = (int) Math.ceil(hungerEffectExhaustionLoss / (float)4); // Exhaustion is server-side, so lost saturation is rounded up to be approximate
        }

The problem is that the resulting value is not really consistent nor useful for now, might need to work more like #8