aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/desktop/LayerRule.cpp
blob: d82e4d302f7230f271c8f5fdc17ee103ba92d7a4 (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
34
35
36
37
#include "LayerRule.hpp"
#include <unordered_set>
#include <algorithm>
#include "../debug/Log.hpp"

static const auto RULES        = std::unordered_set<std::string>{"noanim", "blur", "blurpopups", "dimaround"};
static const auto RULES_PREFIX = std::unordered_set<std::string>{"ignorealpha", "ignorezero", "xray", "animation", "order"};

CLayerRule::CLayerRule(const std::string& rule_, const std::string& ns_) : targetNamespace(ns_), rule(rule_) {
    const bool VALID = RULES.contains(rule) || std::any_of(RULES_PREFIX.begin(), RULES_PREFIX.end(), [&rule_](const auto& prefix) { return rule_.starts_with(prefix); });

    if (!VALID)
        return;

    if (rule == "noanim")
        ruleType = RULE_NOANIM;
    else if (rule == "blur")
        ruleType = RULE_BLUR;
    else if (rule == "blurpopups")
        ruleType = RULE_BLURPOPUPS;
    else if (rule == "dimaround")
        ruleType = RULE_DIMAROUND;
    else if (rule.starts_with("ignorealpha"))
        ruleType = RULE_IGNOREALPHA;
    else if (rule.starts_with("ignorezero"))
        ruleType = RULE_IGNOREZERO;
    else if (rule.starts_with("xray"))
        ruleType = RULE_XRAY;
    else if (rule.starts_with("animation"))
        ruleType = RULE_ANIMATION;
    else if (rule.starts_with("order"))
        ruleType = RULE_ORDER;
    else {
        Debug::log(ERR, "CLayerRule: didn't match a rule that was found valid?!");
        ruleType = RULE_INVALID;
    }
}