incrementaltp: respect physics overrides
[waspsaliva.git] / src / util / enriched_string.h
blobc8a095887ae932772cb57025831bc8e1fc1123ae
1 /*
2 Copyright (C) 2013 xyz, Ilya Zhuravlev <whatever@xyz.is>
3 Copyright (C) 2016 Nore, Nathanaƫl Courant <nore@mesecons.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #pragma once
22 #include <string>
23 #include <vector>
24 #include <SColor.h>
26 class EnrichedString {
27 public:
28 EnrichedString();
29 EnrichedString(const std::wstring &s,
30 const irr::video::SColor &color = irr::video::SColor(255, 255, 255, 255));
31 EnrichedString(const wchar_t *str,
32 const irr::video::SColor &color = irr::video::SColor(255, 255, 255, 255));
33 EnrichedString(const std::wstring &string,
34 const std::vector<irr::video::SColor> &colors);
35 void clear();
36 void operator=(const wchar_t *str);
37 void addAtEnd(const std::wstring &s, const irr::video::SColor &color);
39 // Adds the character source[i] at the end.
40 // An EnrichedString should always be able to be copied
41 // to the end of an existing EnrichedString that way.
42 void addChar(const EnrichedString &source, size_t i);
44 // Adds a single character at the end, without specifying its
45 // color. The color used will be the one from the last character.
46 void addCharNoColor(wchar_t c);
48 EnrichedString substr(size_t pos = 0, size_t len = std::string::npos) const;
49 EnrichedString operator+(const EnrichedString &other) const;
50 void operator+=(const EnrichedString &other);
51 const wchar_t *c_str() const;
52 const std::vector<irr::video::SColor> &getColors() const;
53 const std::wstring &getString() const;
55 void setDefaultColor(const irr::video::SColor &color);
56 void updateDefaultColor();
57 inline const irr::video::SColor &getDefaultColor() const
59 return m_default_color;
62 inline bool operator==(const EnrichedString &other) const
64 return (m_string == other.m_string && m_colors == other.m_colors);
66 inline bool operator!=(const EnrichedString &other) const
68 return !(*this == other);
70 inline bool empty() const
72 return m_string.empty();
74 inline size_t size() const
76 return m_string.size();
79 inline bool hasBackground() const
81 return m_has_background;
83 inline irr::video::SColor getBackground() const
85 return m_background;
87 inline void setBackground(const irr::video::SColor &color)
89 m_background = color;
90 m_has_background = true;
93 private:
94 std::wstring m_string;
95 std::vector<irr::video::SColor> m_colors;
96 bool m_has_background;
97 irr::video::SColor m_default_color;
98 irr::video::SColor m_background;
99 // This variable defines the length of the default-colored text.
100 // Change this to a std::vector if an "end coloring" tag is wanted.
101 size_t m_default_length = 0;