aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/archetype/string.cpp
blob: 9295ced2109d3246a698579299be7a6057f26d96 (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
/* ScummVM - Graphic Adventure Engine
 *
 * ScummVM is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 */

#include "glk/archetype/string.h"
#include "common/algorithm.h"

namespace Glk {
namespace Archetype {

int String::indexOf(char c) const {
	const char *p = strchr(c_str(), c);
	return p ? p - c_str() : -1;
}

int String::indexOf(const String &substr) const {
	const char *c = strstr(c_str(), substr.c_str());
	return c ? c - c_str() : -1;
}

int String::lastIndexOf(char c) const {
	for (int i = (int)size() - 1; i >= 0; --i) {
		if (operator[](i) == c)
			return i;
	}

	return -1;
}

void String::trim() {
	while (!empty() && (lastChar() == ' ' || lastChar() == '\t' || lastChar() == '\n'
			|| lastChar() == '\r'))
		deleteLastChar();
}

String operator+(const String &x, const String &y) {
	Common::String tmp = Common::operator+(x, y);
	return String(tmp.c_str());
}

String operator+(const char *x, const String &y) {
	Common::String tmp = Common::operator+(x, y);
	return String(tmp.c_str());
}

String operator+(const String &x, const char *y) {
	Common::String tmp = Common::operator+(x, y);
	return String(tmp.c_str());
}

String operator+(const String &x, char y) {
	Common::String tmp = Common::operator+(x, y);
	return String(tmp.c_str());
}

String operator+(char x, const String &y) {
	Common::String tmp = Common::operator+(x, y);
	return String(tmp.c_str());
}

bool operator==(const char *x, const String &y) {
	return Common::operator==(x, y);
}

bool operator!=(const char *x, const String &y) {
	return Common::operator!=(x, y);
}

String String::format(const char *fmt, ...) {
	va_list va;
	va_start(va, fmt);
	Common::String tmp = Common::String::vformat(fmt, va);
	va_end(va);
	return String(tmp);
}

String String::vformat(const char *fmt, va_list args) {
	Common::String tmp = Common::String::vformat(fmt, args);
	return String(tmp);
}

int String::val(int *code) {
	const char *srcP = c_str();
	int result = 0, sign = 0, idx = 1;

	if (*srcP == '-') {
		sign = -1;
		++srcP;
		++idx;
	}

	for (; *srcP; ++srcP, ++idx) {
		if (*srcP < '0' || *srcP > '9') {
			// Invalid character
			if (code)
				*code = idx;
			return result;
		}

		result = (result * 10) + (*srcP - '0');
	}

	if (code)
		*code = 0;

	return result;
}

String String::left(size_t count) const {
	return String(c_str(), c_str() + MIN(count, (size_t)size()));
}

String String::right(size_t count) const {
	size_t len = size();
	return String(c_str() + len - MIN(count, len), c_str() + len);
}

String String::mid(size_t start, size_t count) const {
	int max = (int)size() - start;
	return String(c_str() + start, c_str() + start + MIN((int)count, max));
}

String String::mid(size_t start) const {
	return String(c_str() + start);
}

void String::del(size_t start, size_t count) {
	if (start)
		(*this) = left(start) + mid(start + count - 1);
	else
		(*this) = mid(count);
}

} // End of namespace Archetype
} // End of namespace Glk