fr.quatrevieux.araknemu.network.game.out.fight.exploration.FightDetails   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 14
dl 0
loc 18
ccs 11
cts 11
cp 1
c 0
b 0
f 0
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A FightDetails(Fight) 0 2 1
A toString() 0 11 1
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.network.game.out.fight.exploration;
21
22
import fr.quatrevieux.araknemu.game.fight.Fight;
23
import fr.quatrevieux.araknemu.game.fight.team.FightTeam;
24
25
import java.util.stream.Collectors;
26
27
/**
28
 * Details for one fight
29
 *
30
 * https://github.com/Emudofus/Dofus/blob/1.29/dofus/aks/Fights.as#L86
31
 */
32
public final class FightDetails {
33
    private final Fight fight;
34
35 1
    public FightDetails(Fight fight) {
36 1
        this.fight = fight;
37 1
    }
38
39
    @Override
40
    public String toString() {
41 1
        return "fD" + fight.id() + "|" +
42 1
            fight.teams().stream()
43 1
                .map(FightTeam::fighters)
44 1
                .map(
45 1
                    fighters -> fighters.stream()
46 1
                        .map(fighter -> fighter.sprite().name() + "~" + fighter.level())
47 1
                        .collect(Collectors.joining(";"))
48
                )
49 1
                .collect(Collectors.joining("|"))
50
        ;
51
    }
52
}
53