aboutsummaryrefslogtreecommitdiff
path: root/src/util/enriched_string.cpp
blob: 762d094eba0d6b8f1c20f50887f00e3c78dd84c3 (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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/* </* Copyright (C) 2013 xyz, Ilya Zhuravlev <whatever@xyz.is> Copyright (C) 2016 Nore, Nathanaël Courant <nore@mesecons.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser 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 "enriched_string.h" #include "util/string.h" #include "debug.h" #include "log.h" using namespace irr::video; EnrichedString::EnrichedString() { clear(); } EnrichedString::EnrichedString(const std::wstring &string, const std::vector<SColor> &colors) { clear(); m_string = string; m_colors = colors; } EnrichedString::EnrichedString(const std::wstring &s, const SColor &color) { clear(); addAtEnd(translate_string(s), color); } EnrichedString::EnrichedString(const wchar_t *str, const SColor &color) { clear(); addAtEnd(translate_string(std::wstring(str)), color); } void EnrichedString::clear() { m_string.clear(); m_colors.clear(); m_has_background = false; m_default_length = 0; m_default_color = irr::video::SColor(255, 255, 255, 255); m_background = irr::video::SColor(0, 0, 0, 0); } void EnrichedString::operator=(const wchar_t *str) static int l_add_entity(lua_State *L); // add_item(pos, itemstack or itemstring or table) -> ObjectRef or nil // pos = {x=num, y=num, z=num} static int l_add_item(lua_State *L); // get_player_by_name(name) static int l_get_player_by_name(lua_State *L); // get_objects_inside_radius(pos, radius) static int l_get_objects_inside_radius(lua_State *L); // set_timeofday(val) // val = 0...1 static int l_set_timeofday(lua_State *L); // get_timeofday() -> 0...1 static int l_get_timeofday(lua_State *L); // get_gametime() static int l_get_gametime(lua_State *L); // find_node_near(pos, radius, nodenames) -> pos or nil // nodenames: eg. {"ignore", "group:tree"} or "default:dirt" static int l_find_node_near(lua_State *L); // find_nodes_in_area(minp, maxp, nodenames) -> list of positions // nodenames: eg. {"ignore", "group:tree"} or "default:dirt" static int l_find_nodes_in_area(lua_State *L); // delete_area(p1, p2) -> true/false static int l_delete_area(lua_State *L); // get_perlin(seeddiff, octaves, persistence, scale) // returns world-specific PerlinNoise static int l_get_perlin(lua_State *L); // get_perlin_map(noiseparams, size) // returns world-specific PerlinNoiseMap static int l_get_perlin_map(lua_State *L); // get_voxel_manip() // returns world-specific voxel manipulator static int l_get_voxel_manip(lua_State *L); // clear_objects() // clear all objects in the environment static int l_clear_objects(lua_State *L); // spawn_tree(pos, treedef) static int l_spawn_tree(lua_State *L); // line_of_sight(pos1, pos2, stepsize) -> true/false static int l_line_of_sight(lua_State *L); // find_path(pos1, pos2, searchdistance, // max_jump, max_drop, algorithm) -> tabl std::vector<std::wstring> parts = split(escape_sequence, L'@'); if (parts[0] == L"c") { if (parts.size() < 2) { continue; } parseColorString(wide_to_utf8(parts[1]), color, true); // No longer use default color after first escape if (use_default) { m_default_length = m_string.size(); use_default = false; } } else if (parts[0] == L"b") { if (parts.size() < 2) { continue; } parseColorString(wide_to_utf8(parts[1]), m_background, true); m_has_background = true; } } // Update if no escape character was found if (use_default) m_default_length = m_string.size(); } void EnrichedString::addChar(const EnrichedString &source, size_t i) { m_string += source.m_string[i]; m_colors.m_trigger_interval(trigger_interval), m_trigger_chance(trigger_chance) { } virtual std::set<std::string> getTriggerContents() { return m_trigger_contents; } virtual std::set<std::string> getRequiredNeighbors() { return m_required_neighbors; } virtual float getTriggerInterval() { return m_trigger_interval; } virtual u32 getTriggerChance() { return m_trigger_chance; } virtual void trigger(ServerEnvironment *env, v3s16 p, MapNode n, u32 active_object_count, u32 active_object_count_wider); }; #endif /* L_ENV_H_ */
opt">.m_string; m_colors.insert(m_colors.end(), other.m_colors.begin(), other.m_colors.end()); if (update_default_color) { m_default_length += other.m_default_length; updateDefaultColor(); } } EnrichedString EnrichedString::substr(size_t pos, size_t len) const { if (pos >= m_string.length()) return EnrichedString(); if (len == std::string::npos || pos + len > m_string.length()) len = m_string.length() - pos; EnrichedString str( m_string.substr(pos, len), std::vector<SColor>(m_colors.begin() + pos, m_colors.begin() + pos + len) ); str.m_has_background = m_has_background; str.m_background = m_background; if (pos < m_default_length) str.m_default_length = std::min(m_default_length - pos, str.size()); str.setDefaultColor(m_default_color); return str; } const wchar_t *EnrichedString::c_str() const { return m_string.c_str(); } const std::vector<SColor> &EnrichedString::getColors() const { return m_colors; } const std::wstring &EnrichedString::getString() const { return m_string; } void EnrichedString::setDefaultColor(const irr::video::SColor &color) { m_default_color = color; updateDefaultColor(); } void EnrichedString::updateDefaultColor() { sanity_check(m_default_length <= m_colors.size()); for (size_t i = 0; i < m_default_length; ++i) m_colors[i] = m_default_color; }