Passed
Pull Request — master (#249)
by Vincent
13:26
created

onBuffTerminated(Buff)   A

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 3
dl 0
loc 3
ccs 1
cts 1
cp 1
crap 1
rs 10
c 0
b 0
f 0
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.castable.effect.handler.characteristic;
21
22
import fr.quatrevieux.araknemu.game.fight.castable.CastScope;
23
import fr.quatrevieux.araknemu.game.fight.castable.effect.EffectValue;
24
import fr.quatrevieux.araknemu.game.fight.castable.effect.buff.Buff;
25
import fr.quatrevieux.araknemu.game.fight.castable.effect.buff.BuffEffect;
26
import fr.quatrevieux.araknemu.game.fight.castable.effect.buff.BuffHook;
27
import fr.quatrevieux.araknemu.game.fight.castable.effect.handler.EffectHandler;
28
import fr.quatrevieux.araknemu.game.fight.fighter.ActiveFighter;
29
import fr.quatrevieux.araknemu.game.spell.effect.SpellEffect;
30
31
/**
32
 * Alter a characteristic with buff effect
33
 */
34
public abstract class AbstractAlterCharacteristicHandler implements EffectHandler, BuffHook {
35
    private final AlterCharacteristicHook hook;
36
    private final boolean canBeDispelled;
37
38 1
    public AbstractAlterCharacteristicHandler(AlterCharacteristicHook hook, boolean canBeDispelled) {
39 1
        this.hook = hook;
40 1
        this.canBeDispelled = canBeDispelled;
41 1
    }
42
43
    @Override
44
    public void handle(CastScope cast, CastScope.EffectScope effect) {
45 1
        throw new UnsupportedOperationException("Alter characteristic effect must be used as a buff");
46
    }
47
48
    @Override
49
    public void buff(CastScope cast, CastScope.EffectScope effect) {
50 1
        final SpellEffect spellEffect = effect.effect();
51 1
        final ActiveFighter caster = cast.caster();
52
53 1
        EffectValue.forEachTargets(
54
            spellEffect,
55
            caster,
56 1
            effect.targets(),
57 1
            (target, effectValue) -> target.buffs().add(new Buff(
58 1
                BuffEffect.fixed(spellEffect, effectValue.value()),
59 1
                cast.action(),
60
                caster,
61
                target,
62
                this,
63
                canBeDispelled
64
            ))
65
        );
66 1
    }
67
68
    @Override
69
    public void onBuffStarted(Buff buff) {
70 1
        hook.onBuffStarted(buff);
71 1
    }
72
73
    @Override
74
    public void onBuffTerminated(Buff buff) {
75 1
        hook.onBuffTerminated(buff);
76 1
    }
77
}
78