Skip to content

Commit 2b2d2ad

Browse files
committedAug 21, 2024
Filters now accept both regular and inverted at the same time
1 parent 0a0c8de commit 2b2d2ad

File tree

3 files changed

+28
-10
lines changed

3 files changed

+28
-10
lines changed
 

‎core/common/src/main/kotlin/com/willfp/libreforge/filters/Filter.kt

+10-5
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,18 @@ abstract class Filter<T, V>(
3636
): Boolean {
3737
val cfg = config.config
3838

39-
val isInverted = config.isInverted ?: return true
39+
val types = config.types
40+
val results = mutableSetOf<Boolean>()
4041

41-
return if (isInverted) {
42-
!isMet(data, getValue(cfg, data, "not_$id"), config.compileData)
43-
} else {
44-
isMet(data, getValue(cfg, data, id), config.compileData)
42+
if (FilterType.REGULAR in types) {
43+
results += isMet(data, getValue(cfg, data, id), config.compileData)
4544
}
45+
46+
if (FilterType.INVERTED in types) {
47+
results += !isMet(data, getValue(cfg, data, "not_$id"), config.compileData)
48+
}
49+
50+
return results.all { it }
4651
}
4752

4853
/**

‎core/common/src/main/kotlin/com/willfp/libreforge/filters/FilterBlock.kt

+12-5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package com.willfp.libreforge.filters
33
import com.willfp.eco.core.config.interfaces.Config
44
import com.willfp.libreforge.Compiled
55
import com.willfp.libreforge.triggers.TriggerData
6+
import java.util.EnumSet
67

78
/**
89
* A single filter config block.
@@ -12,17 +13,23 @@ class FilterBlock<T, V> internal constructor(
1213
override val config: Config,
1314
override val compileData: T
1415
) : Compiled<T> {
15-
val isInverted: Boolean? by lazy {
16+
val types: EnumSet<FilterType> by lazy {
1617
val cfg = config
1718

1819
val regularPresent = cfg.has(filter.id)
1920
val inversePresent = cfg.has("not_${filter.id}")
2021

21-
if (!regularPresent && !inversePresent) {
22-
null
23-
} else {
24-
inversePresent
22+
val inversions = mutableSetOf<FilterType>()
23+
24+
if (regularPresent) {
25+
inversions.add(FilterType.REGULAR)
26+
}
27+
28+
if (inversePresent) {
29+
inversions.add(FilterType.INVERTED)
2530
}
31+
32+
EnumSet.copyOf(inversions)
2633
}
2734

2835
fun isMet(data: TriggerData) =
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package com.willfp.libreforge.filters
2+
3+
enum class FilterType {
4+
INVERTED,
5+
REGULAR,
6+
}

0 commit comments

Comments
 (0)
Please sign in to comment.