summaryrefslogtreecommitdiff
path: root/src/ch/epfl/maze/physical/stragegies/reducer/CaseReducer.java
blob: 837bd4b2dfa3214652b383ac4c0e2217a8a5a735 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package ch.epfl.maze.physical.stragegies.reducer;

import ch.epfl.maze.physical.World;
import ch.epfl.maze.util.Direction;

import java.util.Set;
import java.util.stream.Collectors;

/**
 * A filter reducer filtering possibilities case by case.
 *
 * @author Pacien TRAN-GIRARD
 */
public interface CaseReducer extends ChoiceReducer {

    /**
     * Checks if the given choice should be kept or excluded by the filter.
     *
     * @param choice A Direction
     * @param world  The World
     * @return T(The filter should keep the given choice)
     */
    boolean keepChoice(Direction choice, World world);

    @Override
    default Set<Direction> reduce(Set<Direction> choices, World world) {
        return choices
                .stream()
                .filter(choice -> this.keepChoice(choice, world))
                .collect(Collectors.toSet());
    }

}