Add: allow making heightmap screenshot via console
[openttd-github.git] / src / string_base.h
bloba22be65713ed083021dde14fc94220d92035c111
1 /*
2 * This file is part of OpenTTD.
3 * OpenTTD 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, version 2.
4 * OpenTTD 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.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6 */
8 #ifndef STRING_BASE_H
9 #define STRING_BASE_H
11 #include "string_type.h"
13 /** Class for iterating over different kind of parts of a string. */
14 class StringIterator {
15 public:
16 /** Type of the iterator. */
17 enum IterType {
18 ITER_CHARACTER, ///< Iterate over characters (or more exactly grapheme clusters).
19 ITER_WORD, ///< Iterate over words.
22 /** Sentinel to indicate end-of-iteration. */
23 static const size_t END = SIZE_MAX;
25 /**
26 * Create a new iterator instance.
27 * @return New iterator instance.
29 static StringIterator *Create();
31 virtual ~StringIterator() {}
33 /**
34 * Set a new iteration string. Must also be called if the string contents
35 * changed. The cursor is reset to the start of the string.
36 * @param s New string.
38 virtual void SetString(const char *s) = 0;
40 /**
41 * Change the current string cursor.
42 * @param pos New cursor position.
43 * @return Actual new cursor position at the next valid character boundary.
44 * @pre pos has to be inside the current string.
46 virtual size_t SetCurPosition(size_t pos) = 0;
48 /**
49 * Advance the cursor by one iteration unit.
50 * @return New cursor position (in bytes) or #END if the cursor is already at the end of the string.
52 virtual size_t Next(IterType what = ITER_CHARACTER) = 0;
54 /**
55 * Move the cursor back by one iteration unit.
56 * @return New cursor position (in bytes) or #END if the cursor is already at the start of the string.
58 virtual size_t Prev(IterType what = ITER_CHARACTER) = 0;
60 protected:
61 StringIterator() {}
64 #endif /* STRING_BASE_H */