forked from EasyRPG/Player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext.cpp
270 lines (225 loc) · 6.77 KB
/
text.cpp
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/*
* This file is part of EasyRPG Player.
*
* EasyRPG Player 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 3 of the License, or
* (at your option) any later version.
*
* EasyRPG Player 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 EasyRPG Player. If not, see <http://www.gnu.org/licenses/>.
*/
// Headers
#include <lcf/data.h>
#include "cache.h"
#include "output.h"
#include "utils.h"
#include "bitmap.h"
#include "font.h"
#include "text.h"
#include "compiler.h"
#include <cctype>
#include <iterator>
Point Text::Draw(Bitmap& dest, int x, int y, const Font& font, const Bitmap& system, int color, char32_t glyph, bool is_exfont) {
if (is_exfont) {
if (!font.IsStyleApplied()) {
return Font::exfont->Render(dest, x, y, system, color, glyph);
} else {
auto style = font.GetCurrentStyle();
auto style_guard = Font::exfont->ApplyStyle(style);
return Font::exfont->Render(dest, x, y, system, color, glyph);
}
} else {
return font.Render(dest, x, y, system, color, glyph);
}
}
Point Text::Draw(Bitmap& dest, int x, int y, const Font& font, Color color, char32_t glyph, bool is_exfont) {
if (is_exfont) {
if (!font.IsStyleApplied()) {
return Font::exfont->Render(dest, x, y, color, glyph);
} else {
auto style = font.GetCurrentStyle();
auto style_guard = Font::exfont->ApplyStyle(style);
return Font::exfont->Render(dest, x, y, color, glyph);
}
} else {
return font.Render(dest, x, y, color, glyph);
}
}
Point Text::Draw(Bitmap& dest, const int x, const int y, const Font& font, const Bitmap& system, const int color, StringView text, const Text::Alignment align) {
if (text.length() == 0) return { 0, 0 };
Rect dst_rect = Text::GetSize(font, text);
const int ih = dst_rect.height;
switch (align) {
case Text::AlignCenter:
dst_rect.x = x - dst_rect.width / 2; break;
case Text::AlignRight:
dst_rect.x = x - dst_rect.width; break;
case Text::AlignLeft:
dst_rect.x = x; break;
default: assert(false);
}
dst_rect.y = y;
dst_rect.width += 1; dst_rect.height += 1; // Need place for shadow
if (dst_rect.IsOutOfBounds(dest.GetWidth(), dest.GetHeight())) return { 0, 0 };
const int iy = dst_rect.y;
const int ix = dst_rect.x;
// Where to draw the next glyph (x pos)
int next_glyph_pos = 0;
// This loops always renders a single char, color blends it and then puts
// it onto the text_surface (including the drop shadow)
auto iter = text.data();
const auto end = iter + text.size();
if (font.CanShape()) {
// Collect all glyphs until ExFont or end of string and then shape and render
std::u32string text32;
while (iter != end) {
auto ret = Utils::TextNext(iter, end, 0);
iter = ret.next;
if (EP_UNLIKELY(!ret)) {
continue;
}
if (EP_UNLIKELY(Utils::IsControlCharacter(ret.ch))) {
next_glyph_pos += Draw(dest, ix + next_glyph_pos, iy, font, system, color, ret.ch, ret.is_exfont).x;
continue;
}
if (ret.is_exfont) {
if (!text32.empty()) {
auto shape_ret = font.Shape(text32);
text32.clear();
for (const auto& ch: shape_ret) {
next_glyph_pos += font.Render(dest, ix + next_glyph_pos, iy, system, color, ch).x;
}
}
next_glyph_pos += Draw(dest, ix + next_glyph_pos, iy, font, system, color, ret.ch, true).x;
continue;
}
text32 += ret.ch;
}
if (!text32.empty()) {
auto shape_ret = font.Shape(text32);
for (const auto& ch: shape_ret) {
next_glyph_pos += font.Render(dest, ix + next_glyph_pos, iy, system, color, ch).x;
}
}
} else {
while (iter != end) {
auto ret = Utils::TextNext(iter, end, 0);
iter = ret.next;
if (EP_UNLIKELY(!ret)) {
continue;
}
next_glyph_pos += Text::Draw(dest, ix + next_glyph_pos, iy, font, system, color, ret.ch, ret.is_exfont).x;
}
}
return { next_glyph_pos, ih };
}
Point Text::Draw(Bitmap& dest, const int x, const int y, const Font& font, const Color color, StringView text) {
if (text.length() == 0) return { 0, 0 };
int dx = x;
int mx = x;
int dy = y;
int ny = 0;
auto iter = text.data();
const auto end = iter + text.size();
while (iter != end) {
auto ret = Utils::UTF8Next(iter, end);
iter = ret.next;
if (EP_UNLIKELY(!ret)) {
continue;
}
if (ret.ch == U'\n') {
if (ny == 0) {
ny = font.GetSize(ret.ch).height;
}
dy += ny;
mx = std::max(mx, dx);
dx = x;
ny = 0;
continue;
}
auto rect = font.Render(dest, dx, dy, color, ret.ch);
dx += rect.x;
assert(ny == 0 || ny == rect.y);
ny = rect.y;
}
dy += ny;
mx = std::max(mx, dx);
return { mx - x , dy - y };
}
Rect Text::GetSize(const Font& font, StringView text) {
Rect rect;
Rect rect_tmp;
auto iter = text.data();
const auto end = iter + text.size();
if (font.CanShape()) {
std::u32string text32;
while (iter != end) {
auto ret = Utils::TextNext(iter, end, 0);
iter = ret.next;
if (EP_UNLIKELY(!ret)) {
continue;
}
if (EP_UNLIKELY(Utils::IsControlCharacter(ret.ch))) {
rect_tmp = GetSize(font, ret.ch, ret.is_exfont);
rect.width += rect_tmp.width;
rect.height = std::max(rect.height, rect_tmp.height);
continue;
}
if (ret.is_exfont) {
if (!text32.empty()) {
auto shape_ret = font.Shape(text32);
text32.clear();
for (const auto& ch: shape_ret) {
Rect size = font.GetSize(ch);
rect.width += ch.offset.x + size.width;
rect.height = std::max(rect.height, size.height);
}
}
rect_tmp = GetSize(font, ret.ch, ret.is_exfont);
rect.width += rect_tmp.width;
rect.height = std::max(rect.height, rect_tmp.height);
continue;
}
text32 += ret.ch;
}
if (!text32.empty()) {
auto shape_ret = font.Shape(text32);
for (const auto& ch: shape_ret) {
Rect size = font.GetSize(ch);
rect.width += ch.offset.x + size.width;
rect.height = std::max(rect.height, size.height);
}
}
} else {
while (iter != end) {
auto ret = Utils::TextNext(iter, end, 0);
iter = ret.next;
if (EP_UNLIKELY(!ret)) {
continue;
}
rect_tmp = GetSize(font, ret.ch, ret.is_exfont);
rect.width += rect_tmp.width;
rect.height = std::max(rect.height, rect_tmp.height);
}
}
return rect;
}
Rect Text::GetSize(const Font& font, char32_t glyph, bool is_exfont) {
if (is_exfont) {
if (!font.IsStyleApplied()) {
return Font::exfont->GetSize(glyph);
} else {
auto style = font.GetCurrentStyle();
auto style_guard = Font::exfont->ApplyStyle(style);
return Font::exfont->GetSize(glyph);
}
} else {
return font.GetSize(glyph);
}
}