mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
252 lines
9.5 KiB
252 lines
9.5 KiB
#ifndef Magnum_Text_Renderer_h |
|
#define Magnum_Text_Renderer_h |
|
/* |
|
This file is part of Magnum. |
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, |
|
2020, 2021 Vladimír Vondruš <mosra@centrum.cz> |
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
copy of this software and associated documentation files (the "Software"), |
|
to deal in the Software without restriction, including without limitation |
|
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
|
and/or sell copies of the Software, and to permit persons to whom the |
|
Software is furnished to do so, subject to the following conditions: |
|
|
|
The above copyright notice and this permission notice shall be included |
|
in all copies or substantial portions of the Software. |
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|
DEALINGS IN THE SOFTWARE. |
|
*/ |
|
|
|
/** @file Text/Renderer.h |
|
* @brief Class @ref Magnum::Text::AbstractRenderer, @ref Magnum::Text::Renderer, typedef @ref Magnum::Text::Renderer2D, @ref Magnum::Text::Renderer3D |
|
*/ |
|
|
|
#include "Magnum/configure.h" |
|
|
|
#ifdef MAGNUM_TARGET_GL |
|
#include <string> |
|
#include <tuple> |
|
#include <vector> |
|
|
|
#include "Magnum/DimensionTraits.h" |
|
#include "Magnum/Math/Range.h" |
|
#include "Magnum/GL/Buffer.h" |
|
#include "Magnum/GL/Mesh.h" |
|
#include "Magnum/Text/Text.h" |
|
#include "Magnum/Text/Alignment.h" |
|
#include "Magnum/Text/visibility.h" |
|
|
|
#ifdef CORRADE_TARGET_EMSCRIPTEN |
|
#include <Corrade/Containers/Array.h> |
|
#endif |
|
|
|
namespace Magnum { namespace Text { |
|
|
|
/** |
|
@brief Base for text renderers |
|
|
|
Not meant to be used directly, see @ref Renderer for more information. |
|
@see @ref Renderer2D, @ref Renderer3D |
|
*/ |
|
class MAGNUM_TEXT_EXPORT AbstractRenderer { |
|
public: |
|
/** |
|
* @brief Render text |
|
* @param font Font |
|
* @param cache Glyph cache |
|
* @param size Font size |
|
* @param text Text to render |
|
* @param alignment Text alignment |
|
* |
|
* Returns tuple with vertex positions, texture coordinates, indices |
|
* and rectangle spanning the rendered text. |
|
*/ |
|
static std::tuple<std::vector<Vector2>, std::vector<Vector2>, std::vector<UnsignedInt>, Range2D> render(AbstractFont& font, const GlyphCache& cache, Float size, const std::string& text, Alignment alignment = Alignment::LineLeft); |
|
|
|
/** |
|
* @brief Capacity for rendered glyphs |
|
* |
|
* @see @ref reserve() |
|
*/ |
|
UnsignedInt capacity() const { return _capacity; } |
|
|
|
/** @brief Rectangle spanning the rendered text */ |
|
Range2D rectangle() const { return _rectangle; } |
|
|
|
/** @brief Vertex buffer */ |
|
GL::Buffer& vertexBuffer() { return _vertexBuffer; } |
|
|
|
/** @brief Index buffer */ |
|
GL::Buffer& indexBuffer() { return _indexBuffer; } |
|
|
|
/** @brief Mesh */ |
|
GL::Mesh& mesh() { return _mesh; } |
|
|
|
/** |
|
* @brief Reserve capacity for rendered glyphs |
|
* |
|
* Reallocates memory in buffers to hold @p glyphCount glyphs and |
|
* prefills index buffer. Consider using appropriate @p vertexBufferUsage |
|
* if the text will be changed frequently. Index buffer is changed |
|
* only by calling this function, thus @p indexBufferUsage generally |
|
* doesn't need to be so dynamic if the capacity won't be changed much. |
|
* |
|
* Initially zero capacity is reserved. |
|
* @see @ref capacity() |
|
*/ |
|
void reserve(UnsignedInt glyphCount, GL::BufferUsage vertexBufferUsage, GL::BufferUsage indexBufferUsage); |
|
|
|
/** |
|
* @brief Render text |
|
* |
|
* Renders the text to vertex buffer, reusing index buffer already |
|
* filled with @ref reserve(). Rectangle spanning the rendered text is |
|
* available through @ref rectangle(). |
|
* |
|
* Initially no text is rendered. |
|
* @attention The capacity must be large enough to contain all glyphs, |
|
* see @ref reserve() for more information. |
|
*/ |
|
void render(const std::string& text); |
|
|
|
#ifndef DOXYGEN_GENERATING_OUTPUT |
|
protected: |
|
#else |
|
private: |
|
#endif |
|
explicit MAGNUM_TEXT_LOCAL AbstractRenderer(AbstractFont& font, const GlyphCache& cache, Float size, Alignment alignment); |
|
|
|
~AbstractRenderer(); |
|
|
|
GL::Mesh _mesh; |
|
GL::Buffer _vertexBuffer, _indexBuffer; |
|
#ifdef CORRADE_TARGET_EMSCRIPTEN |
|
Containers::Array<UnsignedByte> _vertexBufferData, _indexBufferData; |
|
#endif |
|
|
|
private: |
|
AbstractFont& font; |
|
const GlyphCache& cache; |
|
Float size; |
|
Alignment _alignment; |
|
UnsignedInt _capacity; |
|
Range2D _rectangle; |
|
|
|
#if defined(MAGNUM_TARGET_GLES2) && !defined(CORRADE_TARGET_EMSCRIPTEN) |
|
typedef void*(*BufferMapImplementation)(GL::Buffer&, GLsizeiptr); |
|
static MAGNUM_TEXT_LOCAL void* bufferMapImplementationFull(GL::Buffer& buffer, GLsizeiptr length); |
|
static MAGNUM_TEXT_LOCAL void* bufferMapImplementationRange(GL::Buffer& buffer, GLsizeiptr length); |
|
static BufferMapImplementation bufferMapImplementation; |
|
#else |
|
#ifndef CORRADE_TARGET_EMSCRIPTEN |
|
static |
|
#else |
|
MAGNUM_TEXT_LOCAL |
|
#endif |
|
void* bufferMapImplementation(GL::Buffer& buffer, GLsizeiptr length); |
|
#endif |
|
|
|
#if defined(MAGNUM_TARGET_GLES2) && !defined(CORRADE_TARGET_EMSCRIPTEN) |
|
typedef void(*BufferUnmapImplementation)(GL::Buffer&); |
|
static MAGNUM_TEXT_LOCAL void bufferUnmapImplementationDefault(GL::Buffer& buffer); |
|
static MAGNUM_TEXT_LOCAL BufferUnmapImplementation bufferUnmapImplementation; |
|
#else |
|
#ifndef CORRADE_TARGET_EMSCRIPTEN |
|
static |
|
#else |
|
MAGNUM_TEXT_LOCAL |
|
#endif |
|
void bufferUnmapImplementation(GL::Buffer& buffer); |
|
#endif |
|
}; |
|
|
|
/** |
|
@brief Text renderer |
|
|
|
Lays out the text into mesh using given font. Use of ligatures, kerning etc. |
|
depends on features supported by particular font and its layouter. |
|
|
|
@section Text-Renderer-usage Usage |
|
|
|
Immutable text (e.g. menu items, credits) can be simply rendered using static |
|
methods, returning result either as data arrays or as fully configured mesh. |
|
The text can be then drawn as usual by configuring the shader and drawing the |
|
mesh: |
|
|
|
@snippet MagnumText.cpp Renderer-usage1 |
|
|
|
See @ref render(AbstractFont&, const GlyphCache&, Float, const std::string&, Alignment) |
|
and @ref render(AbstractFont&, const GlyphCache&, Float, const std::string&, GL::Buffer&, GL::Buffer&, GL::BufferUsage, Alignment) |
|
for more information. |
|
|
|
While this method is sufficient for one-shot rendering of static texts, for |
|
mutable texts (e.g. FPS counters, chat messages) there is another approach |
|
that doesn't recreate everything on each text change: |
|
|
|
@snippet MagnumText.cpp Renderer-usage2 |
|
|
|
@section Text-Renderer-required-opengl-functionality Required OpenGL functionality |
|
|
|
Mutable text rendering requires @gl_extension{ARB,map_buffer_range} on desktop |
|
OpenGL (also part of OpenGL ES 3.0). If @gl_extension{EXT,map_buffer_range} is not |
|
available in ES 2.0, at least @gl_extension{OES,mapbuffer} must be supported for |
|
asynchronous buffer updates. There is no similar extension in WebGL, thus plain |
|
(and slow) buffer updates are used there. |
|
|
|
@see @ref Renderer2D, @ref Renderer3D, @ref AbstractFont, |
|
@ref Shaders::VectorGL, @ref Shaders::DistanceFieldVectorGL |
|
*/ |
|
template<UnsignedInt dimensions> class MAGNUM_TEXT_EXPORT Renderer: public AbstractRenderer { |
|
public: |
|
/** |
|
* @brief Render text |
|
* @param font Font |
|
* @param cache Glyph cache |
|
* @param size Font size |
|
* @param text Text to render |
|
* @param vertexBuffer Buffer where to store vertices |
|
* @param indexBuffer Buffer where to store indices |
|
* @param usage Usage of vertex and index buffer |
|
* @param alignment Text alignment |
|
* |
|
* Returns mesh prepared for use with @ref Shaders::VectorGL or |
|
* @ref Shaders::DistanceFieldVectorGL and rectangle spanning the |
|
* rendered text. |
|
*/ |
|
static std::tuple<GL::Mesh, Range2D> render(AbstractFont& font, const GlyphCache& cache, Float size, const std::string& text, GL::Buffer& vertexBuffer, GL::Buffer& indexBuffer, GL::BufferUsage usage, Alignment alignment = Alignment::LineLeft); |
|
|
|
/** |
|
* @brief Constructor |
|
* @param font Font |
|
* @param cache Glyph cache |
|
* @param size Font size |
|
* @param alignment Text alignment |
|
*/ |
|
explicit Renderer(AbstractFont& font, const GlyphCache& cache, Float size, Alignment alignment = Alignment::LineLeft); |
|
Renderer(AbstractFont&, GlyphCache&&, Float, Alignment alignment = Alignment::LineLeft) = delete; /**< @overload */ |
|
|
|
#ifndef DOXYGEN_GENERATING_OUTPUT |
|
using AbstractRenderer::render; |
|
#endif |
|
}; |
|
|
|
/** @brief Two-dimensional text renderer */ |
|
typedef Renderer<2> Renderer2D; |
|
|
|
/** @brief Three-dimensional text renderer */ |
|
typedef Renderer<3> Renderer3D; |
|
|
|
}} |
|
#else |
|
#error this header is available only in the OpenGL build |
|
#endif |
|
|
|
#endif
|
|
|