simulate(CastSimulation,EffectScope)   A
last analyzed

Complexity

Conditions 2

Size

Total Lines 11
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 2
c 1
b 0
f 0
dl 0
loc 11
ccs 5
cts 5
cp 1
crap 2
rs 10
eloc 7
1
/*
2
 * This file is part of Araknemu.
3
 *
4
 * Araknemu is free software: you can redistribute it and/or modify
5
 * it under the terms of the GNU Lesser General Public License as published by
6
 * the Free Software Foundation, either version 3 of the License, or
7
 * (at your option) any later version.
8
 *
9
 * Araknemu is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 * GNU Lesser General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU Lesser General Public License
15
 * along with Araknemu.  If not, see <https://www.gnu.org/licenses/>.
16
 *
17
 * Copyright (c) 2017-2019 Vincent Quatrevieux
18
 */
19
20
package fr.quatrevieux.araknemu.game.fight.ai.simulation.effect;
21
22
import fr.arakne.utils.value.Interval;
23
import fr.quatrevieux.araknemu.game.fight.ai.simulation.CastSimulation;
24
import fr.quatrevieux.araknemu.game.fight.castable.CastScope;
25
import fr.quatrevieux.araknemu.game.fight.castable.effect.Element;
26
import fr.quatrevieux.araknemu.game.fight.fighter.FighterData;
27
28
/**
29
 * Simulate steal life effect
30
 *
31
 * @see fr.quatrevieux.araknemu.game.fight.castable.effect.handler.damage.StealLifeHandler
32
 */
33
public final class StealLifeSimulator implements EffectSimulator {
34
    private final DamageSimulator simulator;
35
36 1
    public StealLifeSimulator(Element element) {
37 1
        this.simulator = new DamageSimulator(element);
38 1
    }
39
40
    @Override
41
    public void simulate(CastSimulation simulation, CastScope.EffectScope<? extends FighterData> effect) {
42 1
        final double lastDamage = -simulation.alliesLife() - simulation.enemiesLife();
43
44
        // Poison is already handled by the DamageSimulator
45 1
        simulator.simulate(simulation, effect);
46
47 1
        final double totalDamage = (-simulation.alliesLife() - simulation.enemiesLife()) - lastDamage;
48
49 1
        if (totalDamage > 0) {
50 1
            simulation.addHeal(Interval.of((int) totalDamage / 2), simulation.caster());
51
        }
52 1
    }
53
}
54