-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtext_material.cpp
241 lines (213 loc) Β· 9.17 KB
/
text_material.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
// Copyright (C) 2020-2024 Sami VΓ€isΓ€nen
// Copyright (C) 2020-2024 Ensisoft http://www.ensisoft.com
//
// 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 3 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, see <https://www.gnu.org/licenses/>.
#include "config.h"
#include "graphics/device.h"
#include "graphics/texture.h"
#include "graphics/shader_source.h"
#include "graphics/text_material.h"
namespace gfx
{
TextMaterial::TextMaterial(const TextBuffer& text) : mText(text)
{}
TextMaterial::TextMaterial(TextBuffer&& text) noexcept
: mText(std::move(text))
{}
bool TextMaterial::ApplyDynamicState(const Environment& env, Device& device, ProgramState& program, RasterState& raster) const
{
raster.blending = RasterState::Blending::Transparent;
const auto hash = mText.GetHash();
const auto& gpu_id = std::to_string(hash);
auto* texture = device.FindTexture(gpu_id);
if (!texture)
{
// current text rendering use cases for this TextMaterial
// are such that we expect the rendered geometry to match
// the underlying rasterized text texture size almost exactly.
// this means that we can skip the mipmap generation and use
// a simple fast nearest/linear texture filter without mips.
const bool mips = false;
const auto format = mText.GetRasterFormat();
if (format == TextBuffer::RasterFormat::Bitmap)
{
// create the texture object first. The if check above
// will then act as a throttle and prevent superfluous
// attempts to rasterize when the contents of the text
// buffer have not changed.
texture = device.MakeTexture(gpu_id);
texture->SetTransient(true); // set transient flag up front to tone down DEBUG noise
texture->SetName("TextMaterialTexture");
auto bitmap = mText.RasterizeBitmap();
if (!bitmap)
return false;
const auto width = bitmap->GetWidth();
const auto height = bitmap->GetHeight();
texture->Upload(bitmap->GetDataPtr(), width, height, gfx::Texture::Format::AlphaMask, mips);
}
else if (format == TextBuffer::RasterFormat::Texture)
{
// this is a dynamic text texture, i.e. texture that is used
// to show text and then discarded when no longer needed
const auto transient = true;
texture = mText.RasterizeTexture(gpu_id, "TextMaterialTexture", device, transient);
if (!texture)
return false;
texture->SetTransient(true);
texture->SetName("TextMaterialTexture");
// texture->GenerateMips(); << this would be the place to generate mips if needed.
} else if (format == TextBuffer::RasterFormat::None)
return false;
else BUG("Unhandled texture raster format.");
texture->SetContentHash(hash);
texture->SetWrapX(Texture::Wrapping::Clamp);
texture->SetWrapY(Texture::Wrapping::Clamp);
// see the comment above about mipmaps. it's relevant regarding
// the possible filtering settings that we can use here.
// see issue 207
// https://github.com/ensisoft/detonator/issues/207
#if 0
if (mPointSampling)
{
texture->SetFilter(Texture::MagFilter::Nearest);
texture->SetFilter(Texture::MinFilter::Nearest);
}
else
{
texture->SetFilter(Texture::MagFilter::Linear);
texture->SetFilter(Texture::MinFilter::Linear);
}
#endif
texture->SetFilter(Texture::MinFilter::Linear);
texture->SetFilter(Texture::MagFilter::Linear);
}
// might have been allocated but failed to rasterize any content.
// we keep it around to avoid re-rasterizing unless the content
// actually changes.
if (!texture->HasSize())
return false;
program.SetTexture("kTexture", 0, *texture);
program.SetUniform("kColor", mColor);
program.SetUniform("kMaterialFlags", static_cast<unsigned>(mFlags));
return true;
}
void TextMaterial::ApplyStaticState(const Environment& env, Device& device, gfx::ProgramState& program) const
{}
ShaderSource TextMaterial::GetShader(const Environment& env, const Device& device) const
{
ShaderSource source;
source.SetType(ShaderSource::Type::Fragment);
source.SetPrecision(ShaderSource::Precision::High);
source.SetVersion(ShaderSource::Version::GLSL_300);
source.AddPreprocessorDefinition("MATERIAL_FLAGS_ENABLE_BLOOM", static_cast<unsigned>(MaterialFlags::EnableBloom));
const auto format = mText.GetRasterFormat();
if (format == TextBuffer::RasterFormat::Bitmap)
{
static const char* fragment_source = {
#include "shaders/fragment_text_bitmap_shader.glsl"
};
source.LoadRawSource(fragment_source);
source.AddShaderName("Text Shader");
source.AddShaderSourceUri("shaders/fragment_text_bitmap_shader.glsl");
return source;
}
else if (format == TextBuffer::RasterFormat::Texture)
{
static const char* fragment_source = {
#include "shaders/fragment_text_texture_shader.glsl"
};
source.LoadRawSource(fragment_source);
source.AddShaderName("Text Shader");
source.AddShaderSourceUri("shaders/fragment_text_texture_shader.glsl");
return source;
}
else if (format == TextBuffer::RasterFormat::None)
return {};
else BUG("Unhandled texture raster format.");
return {};
}
std::string TextMaterial::GetShaderId(const Environment& env) const
{
size_t hash = 0;
const auto format = mText.GetRasterFormat();
if (format == TextBuffer::RasterFormat::Bitmap)
hash = base::hash_combine(hash, "text-shader-bitmap");
else if (format == TextBuffer::RasterFormat::Texture)
hash = base::hash_combine(hash, "text-shader-texture");
else if (format == TextBuffer::RasterFormat::None)
hash = base::hash_combine(hash, "text-shader-none");
else BUG("Unhandled texture raster format.");
return std::to_string(hash);
}
std::string TextMaterial::GetShaderName(const Environment&) const
{
const auto format = mText.GetRasterFormat();
if (format == TextBuffer::RasterFormat::Bitmap)
return "BitmapTextShader";
else if (format == TextBuffer::RasterFormat::Texture)
return "TextureTextShader";
else BUG("Unhandled texture raster format.");
return "";
}
void TextMaterial::ComputeTextMetrics(unsigned int* width, unsigned int* height) const
{
mText.ComputeTextMetrics(width, height);
}
TextMaterial CreateMaterialFromText(const std::string& text,
const std::string& font,
const gfx::Color4f& color,
unsigned font_size_px,
unsigned raster_width,
unsigned raster_height,
unsigned text_align,
unsigned text_prop,
float line_height)
{
TextBuffer buff(raster_width, raster_height);
if ((text_align & 0xf) == TextAlign::AlignTop)
buff.SetAlignment(TextBuffer::VerticalAlignment::AlignTop);
else if((text_align & 0xf) == TextAlign::AlignVCenter)
buff.SetAlignment(TextBuffer::VerticalAlignment::AlignCenter);
else if ((text_align & 0xf) == TextAlign::AlignBottom)
buff.SetAlignment(TextBuffer::VerticalAlignment::AlignBottom);
if ((text_align & 0xf0) == TextAlign::AlignLeft)
buff.SetAlignment(TextBuffer::HorizontalAlignment::AlignLeft);
else if ((text_align & 0xf0) == TextAlign::AlignHCenter)
buff.SetAlignment(TextBuffer::HorizontalAlignment::AlignCenter);
else if ((text_align & 0xf0) == TextAlign::AlignRight)
buff.SetAlignment(TextBuffer::HorizontalAlignment::AlignRight);
const bool underline = text_prop & TextProp::Underline;
const bool blinking = text_prop & TextProp::Blinking;
// Add blob of text in the buffer.
TextBuffer::Text text_and_style;
text_and_style.text = text;
text_and_style.font = font;
text_and_style.fontsize = font_size_px;
text_and_style.underline = underline;
text_and_style.lineheight = line_height;
buff.SetText(text_and_style);
TextMaterial material(std::move(buff));
material.SetPointSampling(true);
material.SetColor(color);
return material;
}
std::unique_ptr<TextMaterial> CreateMaterialInstance(const TextBuffer& text)
{
return std::make_unique<TextMaterial>(text);
}
std::unique_ptr<TextMaterial> CreateMaterialInstance(TextBuffer&& text)
{
return std::make_unique<TextMaterial>(std::move(text));
}
} // namespace