Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 8cefbc5e781b08c13f9d0b3dd2b25aec6769ebd1 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/*
   aux/functions.cc
   This file is part of the Osirion project and is distributed under
   the terms of the GNU General Public License version 2
*/

#include "auxiliary/functions.h"

namespace aux
{

const std::string plural(const char * word, size_t n)
{
	std::string p(word);

	if (n != 1) 
		p += 's';
	return p;
}

const std::string article(const char * word)
{
	std::string w(word);

	if (!w.size())
		return w;

	switch (word[0]) {
		case 'a':
		case 'A':
		case 'e':
		case 'E':
		case 'i':
		case 'I':
		case 'o':
		case 'O':
		case 'u':
		case 'U':
		case 'y':
		case 'Y':
			w.assign("an ");
			break;
		default:
			w.assign("a ");
	}

	w.append(word);
	return w;
}

size_t text_length(const std::string &text)
{
	const char *c = text.c_str();
	size_t len = 0;
	while (*c) {
		if (is_color_code(c)) {
			c++;
		} else {
			len++;
		}
		c++;
	}

	return len;
}

const std::string text_strip(const std::string &text)
{
	const char *c = text.c_str();
	std::string r;
	while (*c) {
		if (is_color_code(c)) {
			c++;
		} else {
			r += *c;
		}
		c++;
	}

	return r;
}

const std::string text_strip_lowercase(const std::string &text)
{
	const char *c = text.c_str();
	std::string r;
	while (*c) {
		if (is_color_code(c)) {
			c++;
		} else {
			r += tolower(*c);
		}
		c++;
	}

	return r;
}

const std::string pad_left(const std::string &text,size_t n)
{
	size_t l = text_length(text);
	if (n <= l)
		return text;

	std::string s;
	s.assign(n-l, ' ');
	s.append(text);
	return s;
}

const std::string pad_right(const std::string &text,size_t n)
{
	size_t l = text_length(text);
	if (n <= l)
		return text;

	std::string s(text);
	s.append(n-l, ' ');
	return s;
}

void to_lowercase(std::string &text)
{
 	for (std::string::iterator i = text.begin(); i != text.end(); ++i)
 		(*i) = tolower(*i);
}

const std::string lowercase(const std::string &text)
{
	std::string t;
 	for (std::string::const_iterator i = text.begin(); i != text.end(); ++i)
 		t += tolower(*i);
	return t;
}

void trim(std::string &text)
{
	while (text.size() && text[0] == ' ') {
		text.erase(0, 1);
	}
	while (text.size() && text[text.size()-1] == ' ') {
		text.erase(text.size()-1, 1);
	}
}

void to_label(std::string &text)
{
	trim(text);
	size_t pos = 0;

	while (pos < text.size()) {
		if ((text[pos] == ' ') || (text[pos] == '-') || (text[pos] == '_')) {
			text[pos] = '_';
			pos++;
		} else if ((text[pos] >= 'A') && (text[pos] <= 'Z')) {
			text[pos] = text[pos] + 'a' - 'A';
			pos++;
		} else if ((text[pos] >= 'a') && (text[pos] <= 'z')) {
			pos++;
		} else if ((text[pos] >= '0') && (text[pos] <= '9')) {
			pos++;
		} else {
			text.erase(pos, 1);
		}
	}
}

void strip_quotes(std::string &text)
{
	for (size_t pos = 0; pos < text.size(); pos++) {
		if (text[pos] == '"') {
			text[pos] = '\'';
		}
	}
}

}