aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/true_talk/tt_string.h
blob: 5b12d934180f04719974b564d6fbb67aa6381ea5 (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
/* 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.
 *
 */

#ifndef TITANIC_TT_STRING_H
#define TITANIC_TT_STRING_H

#include "titanic/support/string.h"

namespace Titanic {

class SimpleFile;

struct TTstringData {
	CString _string;
	int _referenceCount;

	TTstringData() : _referenceCount(1) {}
	TTstringData(const char *str) : _string(str), _referenceCount(1) {}
	TTstringData(const CString &str) : _string(str), _referenceCount(1) {}
};

enum TTstringStatus {
	SS_VALID = 0, SS_1 = 1, SS_2 = 2, SS_3 = 3, SS_4 = 4, 
	SS_5 = 5, SS_7 = 7, SS_8 = 8, SS_11 = 11, SS_13 = 13
};

class TTstring {
private:
	TTstringData *_data;
	TTstringStatus _status;
public:
	TTstring();
	TTstring(const char *str);
	TTstring(const CString &str);
	TTstring(const TTstring &str);
	virtual ~TTstring();

	void operator=(const TTstring &str);
	void operator=(const CString &str);
	void operator=(const char *str);
	TTstring &operator+=(const char *str);
	TTstring &operator+=(const TTstring &str);
	TTstring &operator+=(char c);
	bool operator==(const TTstring &str) const;
	bool operator==(const char *str) const;

	const char &operator[](int index) {
		return *(c_str() + index);
	}

	bool empty() const {
		return _data->_string.empty();
	}

	char firstChar() const {
		return _data->_string.firstChar();
	}

	char lastChar() const {
		return _data->_string.lastChar();
	}

	int size() const {
		return _data->_string.size();
	}

	void deleteLastChar() {
		_data->_string.deleteLastChar();
	}

	bool hasPrefix(const CString &str) const {
		return _data->_string.hasPrefix(str);
	}
	bool hasPrefix(const char *str) const {
		return _data->_string.hasPrefix(str);
	}
	bool hasSuffix(const CString &str) const {
		return _data->_string.hasSuffix(str);
	}
	bool hasSuffix(const char *str) const {
		return _data->_string.hasSuffix(str);
	}

	bool contains(const char *s) const {
		return _data->_string.contains(s);
	}

	/**
	 * Create a new copy of the string
	 */
	TTstring *copy() const {
		return new TTstring(c_str());
	}

	/**
	 * Returns true if the string is valid
	 */
	bool isValid() const {
		return _status == SS_VALID;
	}

	/**
	 * Get the status of the string
	 */
	TTstringStatus getStatus() const { return _status; }

	/**
	 * Get a char * pointer to the string data
	 */
	const char *c_str() const { return _data->_string.c_str(); }
	
	/**
	 * Automatic operator to convert to a const char *
	 */
	operator const char *() const { return c_str(); }

	/**
	 * Get a character at a specified index
	 */
	char charAt(int index) const { return *(c_str() + index); }

	/**
	 * Save the sring to a passed file
	 */
	void save(SimpleFile *file) const;

	/**
	 * Compare a substring within the string at the specified index
	 */
	bool compareAt(int index, const char *str) const {
		return !strncmp(c_str() + index, str, strlen(str));
	}

	/**
	 * Split off everything in the string until the first occurance
	 * of any specified delimiter character
	 */
	TTstring tokenize(const char *delim);

	/**
	 * Delets a specififed number of characters from the start of the string
	 */
	int deletePrefix(int count);

	/**
	 * Delets a specififed number of characters from the end of the string
	 */
	int deleteSuffix(int count);

};

} // End of namespace Titanic

#endif /* TITANIC_TT_STRING_H */