aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/util/LogColor.cpp
blob: 5411898d3cdd67edd3b2cce9c82a806c26127ad4 (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
38
39
40
41
42
43
44
45
46
#include <cstdarg>

#include "../api/Config.h"

#include "LogColor.h"

using namespace crepe;
using namespace std;

static constexpr const char * RESET_CODE = "\e[0m";

const string LogColor::str(const string & content) const {
	auto & cfg = Config::get_instance();
	string out = content;
	if (cfg.log.color) out = this->code + out;
	if (content.size() == 0) return out;
	if (cfg.log.color) out = out + RESET_CODE;
	return out;
}

LogColor & LogColor::add_code(unsigned int code) {
	this->code += format("\e[{}m", code);
	return *this;
}

LogColor & LogColor::reset() {
	this->code = RESET_CODE;
	return *this;
}

LogColor & LogColor::fg_black(bool bright) { return this->add_code(bright ? 90 : 30); }
LogColor & LogColor::fg_red(bool bright) { return this->add_code(bright ? 91 : 31); }
LogColor & LogColor::fg_green(bool bright) { return this->add_code(bright ? 92 : 32); }
LogColor & LogColor::fg_yellow(bool bright) { return this->add_code(bright ? 93 : 33); }
LogColor & LogColor::fg_blue(bool bright) { return this->add_code(bright ? 94 : 34); }
LogColor & LogColor::fg_magenta(bool bright) { return this->add_code(bright ? 95 : 35); }
LogColor & LogColor::fg_cyan(bool bright) { return this->add_code(bright ? 96 : 36); }
LogColor & LogColor::fg_white(bool bright) { return this->add_code(bright ? 97 : 37); }
LogColor & LogColor::bg_black(bool bright) { return this->add_code(bright ? 100 : 40); }
LogColor & LogColor::bg_red(bool bright) { return this->add_code(bright ? 101 : 41); }
LogColor & LogColor::bg_green(bool bright) { return this->add_code(bright ? 102 : 42); }
LogColor & LogColor::bg_yellow(bool bright) { return this->add_code(bright ? 103 : 43); }
LogColor & LogColor::bg_blue(bool bright) { return this->add_code(bright ? 104 : 44); }
LogColor & LogColor::bg_magenta(bool bright) { return this->add_code(bright ? 105 : 45); }
LogColor & LogColor::bg_cyan(bool bright) { return this->add_code(bright ? 106 : 46); }
LogColor & LogColor::bg_white(bool bright) { return this->add_code(bright ? 107 : 47); }