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-2021 Vincent Quatrevieux |
18
|
|
|
*/ |
19
|
|
|
|
20
|
|
|
package fr.quatrevieux.araknemu.game.fight.castable.effect.handler.shifting; |
21
|
|
|
|
22
|
|
|
import fr.arakne.utils.maps.CoordinateCell; |
23
|
|
|
import fr.arakne.utils.maps.constant.Direction; |
24
|
|
|
import fr.arakne.utils.maps.path.Decoder; |
25
|
|
|
import fr.quatrevieux.araknemu.game.fight.Fight; |
26
|
|
|
import fr.quatrevieux.araknemu.game.fight.castable.CastScope; |
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.fight.map.FightCell; |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* Move the adjacent fighter to the target cell |
33
|
|
|
* |
34
|
|
|
* - Get the direction between caster and target cell |
35
|
|
|
* - Get the adjacent fighter for the given direction |
36
|
|
|
* - Compute the distance between the target fighter and the target cell |
37
|
|
|
* - Perform a move back on the target fighter with the computed distance |
38
|
|
|
*/ |
39
|
|
|
public final class MoveToTargetCellHandler implements EffectHandler { |
40
|
|
|
private final Decoder<FightCell> decoder; |
41
|
|
|
private final MoveBackApplier applier; |
42
|
|
|
|
43
|
1 |
|
public MoveToTargetCellHandler(Fight fight) { |
44
|
1 |
|
this.decoder = new Decoder<>(fight.map()); |
45
|
1 |
|
this.applier = new MoveBackApplier(fight); |
46
|
1 |
|
} |
47
|
|
|
|
48
|
|
|
@Override |
49
|
|
|
public void handle(CastScope cast, CastScope.EffectScope effect) { |
50
|
1 |
|
final ActiveFighter caster = cast.caster(); |
51
|
1 |
|
final CoordinateCell<FightCell> casterCell = caster.cell().coordinate(); |
52
|
|
|
|
53
|
|
|
// Remove 1 because the distance should be computed from the target fighter cell |
54
|
1 |
|
final int distance = casterCell.distance(cast.target()) - 1; |
55
|
1 |
|
final Direction direction = casterCell.directionTo(cast.target()); |
56
|
|
|
|
57
|
1 |
|
decoder.nextCellByDirection(casterCell.cell(), direction) |
58
|
1 |
|
.flatMap(FightCell::fighter) |
59
|
1 |
|
.ifPresent(target -> applier.apply(caster, target, distance)) |
60
|
|
|
; |
61
|
1 |
|
} |
62
|
|
|
|
63
|
|
|
@Override |
64
|
|
|
public void buff(CastScope cast, CastScope.EffectScope effect) { |
65
|
1 |
|
throw new UnsupportedOperationException("Cannot use move back as buff effect"); |
66
|
|
|
} |
67
|
|
|
} |
68
|
|
|
|