2007-04-12 14:49:41 +02:00
|
|
|
// Copyright (c) 2007, Rodrigo Braz Monteiro
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file gl_text.cpp
|
|
|
|
/// @brief Create and render text using OpenGL
|
|
|
|
/// @ingroup video_output
|
|
|
|
///
|
2007-04-12 14:49:41 +02:00
|
|
|
|
2012-12-11 18:44:28 +01:00
|
|
|
#include "gl_text.h"
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include "compat.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
#include <libaegisub/color.h>
|
2014-06-11 00:28:45 +02:00
|
|
|
#include <libaegisub/exception.h>
|
2013-01-04 16:01:50 +01:00
|
|
|
|
2010-06-02 09:22:53 +02:00
|
|
|
#include <wx/bitmap.h>
|
2007-09-12 01:22:26 +02:00
|
|
|
#include <wx/dcmemory.h>
|
2010-07-23 06:15:36 +02:00
|
|
|
|
2010-04-30 18:15:12 +02:00
|
|
|
#include <algorithm>
|
2012-12-11 18:44:28 +01:00
|
|
|
#include <boost/noncopyable.hpp>
|
2009-09-10 15:06:40 +02:00
|
|
|
|
2012-02-23 20:28:08 +01:00
|
|
|
#ifdef HAVE_OPENGL_GL_H
|
2011-11-23 19:33:14 +01:00
|
|
|
#include <OpenGL/gl.h>
|
|
|
|
#else
|
|
|
|
#include <GL/gl.h>
|
|
|
|
#endif
|
|
|
|
|
2012-12-11 18:44:28 +01:00
|
|
|
namespace {
|
2010-06-02 09:22:53 +02:00
|
|
|
/// @class OpenGLTextGlyph
|
|
|
|
/// @brief Struct storing the information needed to draw a glyph
|
2010-07-23 06:15:36 +02:00
|
|
|
struct OpenGLTextGlyph {
|
|
|
|
wxString str; ///< String containing the glyph(s) this is for
|
2014-04-25 19:01:07 +02:00
|
|
|
int tex = 0; ///< OpenGL texture to draw for this glyph
|
|
|
|
float x1 = 0; ///< Left x coordinate of this glyph in the containing texture
|
|
|
|
float x2 = 0; ///< Right x coordinate of this glyph in the containing texture
|
|
|
|
float y1 = 0; ///< Left y coordinate of this glyph in the containing texture
|
|
|
|
float y2 = 0; ///< Right y coordinate of this glyph in the containing texture
|
|
|
|
int w = 0; ///< Width of the glyph in pixels
|
|
|
|
int h = 0; ///< Height of the glyph in pixels
|
2010-07-23 06:15:36 +02:00
|
|
|
wxFont font; ///< Font used for this glyph
|
|
|
|
|
2012-12-11 18:44:28 +01:00
|
|
|
OpenGLTextGlyph(int value, wxFont const& font)
|
|
|
|
: str(wxChar(value))
|
|
|
|
, font(font)
|
|
|
|
{
|
|
|
|
wxCoord desc,lead;
|
|
|
|
|
|
|
|
wxBitmap tempBmp(32, 32, 24);
|
|
|
|
wxMemoryDC dc(tempBmp);
|
|
|
|
dc.SetFont(font);
|
|
|
|
dc.GetTextExtent(str, &w, &h, &desc, &lead);
|
|
|
|
}
|
2010-06-02 09:22:53 +02:00
|
|
|
|
2012-12-11 18:44:28 +01:00
|
|
|
void Draw(float x, float y) const {
|
|
|
|
glBindTexture(GL_TEXTURE_2D, tex);
|
|
|
|
glEnableClientState(GL_VERTEX_ARRAY);
|
|
|
|
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
|
|
|
|
|
|
|
|
float tex_coords[] = {
|
|
|
|
x1, y1,
|
|
|
|
x1, y2,
|
|
|
|
x2, y2,
|
|
|
|
x2, y1
|
|
|
|
};
|
|
|
|
|
|
|
|
float vert_coords[] = {
|
|
|
|
x, y,
|
|
|
|
x, y + h,
|
|
|
|
x + w, y + h,
|
|
|
|
x + w, y
|
|
|
|
};
|
|
|
|
|
|
|
|
glVertexPointer(2, GL_FLOAT, 0, vert_coords);
|
|
|
|
glTexCoordPointer(2, GL_FLOAT, 0, tex_coords);
|
|
|
|
glDrawArrays(GL_QUADS, 0, 4);
|
|
|
|
|
|
|
|
glDisableClientState(GL_VERTEX_ARRAY);
|
|
|
|
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
|
|
|
|
}
|
|
|
|
};
|
2010-06-02 09:22:53 +02:00
|
|
|
|
|
|
|
/// @class OpenGLTextTexture
|
|
|
|
/// @brief OpenGL texture which stores one or more glyphs as sprites
|
2014-03-13 02:39:07 +01:00
|
|
|
class OpenGLTextTexture final : boost::noncopyable {
|
2014-04-25 19:01:07 +02:00
|
|
|
int x = 0; ///< Next x coordinate at which a glyph can be inserted
|
|
|
|
int y = 0; ///< Next y coordinate at which a glyph can be inserted
|
|
|
|
int nextY = 0; ///< Y coordinate of the next line; tracked due to that lines
|
|
|
|
///< are only as tall as needed to fit the glyphs in them
|
|
|
|
int width; ///< Width of the texture
|
|
|
|
int height; ///< Height of the texture
|
|
|
|
GLuint tex = 0; ///< The texture
|
2010-06-02 09:22:53 +02:00
|
|
|
|
|
|
|
/// Insert the glyph into this texture at the current coordinates
|
2012-12-11 18:44:28 +01:00
|
|
|
void Insert(OpenGLTextGlyph &glyph) {
|
|
|
|
int w = glyph.w;
|
|
|
|
int h = glyph.h;
|
|
|
|
|
|
|
|
// Fill glyph structure
|
|
|
|
glyph.x1 = float(x)/width;
|
|
|
|
glyph.y1 = float(y)/height;
|
|
|
|
glyph.x2 = float(x+w)/width;
|
|
|
|
glyph.y2 = float(y+h)/height;
|
|
|
|
glyph.tex = tex;
|
|
|
|
|
|
|
|
// Create bitmap and bind it to a DC
|
|
|
|
wxBitmap bmp(w + (w & 1), h + (h & 1), 24);
|
|
|
|
wxMemoryDC dc(bmp);
|
|
|
|
|
|
|
|
// Draw text and convert to image
|
|
|
|
dc.SetBackground(*wxBLACK_BRUSH);
|
|
|
|
dc.Clear();
|
|
|
|
dc.SetFont(glyph.font);
|
|
|
|
dc.SetTextForeground(*wxWHITE);
|
|
|
|
dc.DrawText(glyph.str, 0, 0);
|
|
|
|
|
|
|
|
// Convert RGB24 to Luminance + Alpha by using an arbitrary channel as A
|
|
|
|
wxImage img = bmp.ConvertToImage();
|
|
|
|
int imgw = img.GetWidth();
|
|
|
|
int imgh = img.GetHeight();
|
|
|
|
std::vector<unsigned char> alpha(imgw * imgh * 2, 255);
|
|
|
|
const unsigned char *read = img.GetData();
|
|
|
|
for (size_t write = 1; write < alpha.size(); write += 2, read += 3)
|
|
|
|
alpha[write] = *read;
|
|
|
|
|
|
|
|
// Upload image to video memory
|
|
|
|
glBindTexture(GL_TEXTURE_2D, tex);
|
|
|
|
glTexSubImage2D(GL_TEXTURE_2D, 0, x, y, imgw, imgh, GL_LUMINANCE_ALPHA, GL_UNSIGNED_BYTE, &alpha[0]);
|
2014-06-11 00:28:45 +02:00
|
|
|
if (glGetError()) throw agi::EnvironmentError("Internal OpenGL text renderer error: Error uploading glyph data to video memory.");
|
2012-12-11 18:44:28 +01:00
|
|
|
}
|
2010-06-02 09:22:53 +02:00
|
|
|
|
|
|
|
public:
|
2012-12-11 18:44:28 +01:00
|
|
|
OpenGLTextTexture(OpenGLTextGlyph &glyph)
|
2014-04-25 19:01:07 +02:00
|
|
|
: width(std::max(SmallestPowerOf2(glyph.w), 64))
|
2012-12-11 18:44:28 +01:00
|
|
|
, height(std::max(SmallestPowerOf2(glyph.h), 64))
|
|
|
|
{
|
|
|
|
width = height = std::max(width, height);
|
|
|
|
|
|
|
|
// Generate and bind
|
|
|
|
glGenTextures(1, &tex);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, tex);
|
|
|
|
|
|
|
|
// Texture parameters
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
|
|
|
|
|
|
|
|
// Allocate texture
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, width, height, 0, GL_ALPHA, GL_UNSIGNED_BYTE, nullptr);
|
2014-06-11 00:28:45 +02:00
|
|
|
if (glGetError()) throw agi::EnvironmentError("Internal OpenGL text renderer error: Could not allocate text texture");
|
2012-12-11 18:44:28 +01:00
|
|
|
|
|
|
|
TryToInsert(glyph);
|
|
|
|
}
|
|
|
|
|
2014-04-17 18:02:05 +02:00
|
|
|
OpenGLTextTexture(OpenGLTextTexture&& rhs) BOOST_NOEXCEPT
|
2012-12-11 18:44:28 +01:00
|
|
|
: x(rhs.x)
|
|
|
|
, y(rhs.y)
|
|
|
|
, nextY(rhs.nextY)
|
|
|
|
, width(rhs.width)
|
|
|
|
, height(rhs.height)
|
|
|
|
, tex(rhs.tex)
|
|
|
|
{
|
|
|
|
rhs.tex = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
~OpenGLTextTexture() {
|
|
|
|
if (tex) glDeleteTextures(1, &tex);
|
|
|
|
}
|
|
|
|
|
2010-06-02 09:22:53 +02:00
|
|
|
/// @brief Try to insert a glyph into this texture
|
|
|
|
/// @param[in][out] glyph Texture to insert
|
|
|
|
/// @return Was the texture successfully added?
|
2012-12-11 18:44:28 +01:00
|
|
|
bool TryToInsert(OpenGLTextGlyph &glyph) {
|
|
|
|
if (glyph.w > width) return false;
|
|
|
|
if (y + glyph.h > height) return false;
|
|
|
|
|
|
|
|
// Can fit in this row?
|
|
|
|
if (x + glyph.w < width) {
|
|
|
|
Insert(glyph);
|
|
|
|
x += glyph.w;
|
|
|
|
nextY = std::max(nextY, y + glyph.h);
|
|
|
|
return true;
|
|
|
|
}
|
2010-06-02 09:22:53 +02:00
|
|
|
|
2012-12-11 18:44:28 +01:00
|
|
|
// Can fit the next row?
|
|
|
|
if (nextY + glyph.h > height) return false;
|
|
|
|
x = 0;
|
|
|
|
y = nextY;
|
|
|
|
return TryToInsert(glyph);
|
|
|
|
}
|
2010-06-02 09:22:53 +02:00
|
|
|
};
|
|
|
|
|
2012-12-11 18:44:28 +01:00
|
|
|
}
|
2010-06-02 09:22:53 +02:00
|
|
|
|
2013-12-12 01:29:48 +01:00
|
|
|
OpenGLText::OpenGLText() { }
|
|
|
|
OpenGLText::~OpenGLText() { }
|
2007-04-12 14:49:41 +02:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
void OpenGLText::SetFont(std::string const& face, int size, bool bold, bool italics) {
|
2007-04-13 05:52:25 +02:00
|
|
|
// No change required
|
2007-04-13 16:38:27 +02:00
|
|
|
if (size == fontSize && face == fontFace && bold == fontBold && italics == fontItalics) return;
|
2007-04-13 05:52:25 +02:00
|
|
|
|
|
|
|
// Set font
|
|
|
|
fontFace = face;
|
|
|
|
fontSize = size;
|
2007-04-13 16:38:27 +02:00
|
|
|
fontBold = bold;
|
|
|
|
fontItalics = italics;
|
2013-01-04 16:01:50 +01:00
|
|
|
font.SetFaceName(to_wx(fontFace));
|
2007-04-13 05:52:25 +02:00
|
|
|
font.SetPointSize(size);
|
2007-04-13 16:38:27 +02:00
|
|
|
font.SetWeight(bold ? wxFONTWEIGHT_BOLD : wxFONTWEIGHT_NORMAL);
|
2007-04-13 05:52:25 +02:00
|
|
|
|
|
|
|
// Delete all old data
|
2010-06-02 09:22:53 +02:00
|
|
|
textures.clear();
|
|
|
|
glyphs.clear();
|
2007-04-12 14:49:41 +02:00
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
void OpenGLText::SetColour(agi::Color col) {
|
|
|
|
r = col.r / 255.f;
|
|
|
|
g = col.g / 255.f;
|
|
|
|
b = col.b / 255.f;
|
|
|
|
a = col.a / 255.f;
|
2007-04-12 14:49:41 +02:00
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
void OpenGLText::Print(const std::string &text, int x, int y) {
|
2007-04-13 16:38:27 +02:00
|
|
|
glEnable(GL_BLEND);
|
|
|
|
glEnable(GL_TEXTURE_2D);
|
2012-12-11 18:44:28 +01:00
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
2007-04-13 16:38:27 +02:00
|
|
|
|
|
|
|
// Draw border
|
2012-12-11 18:44:28 +01:00
|
|
|
glColor4f(0.0f, 0.0f, 0.0f, 1.0f);
|
|
|
|
DrawString(text, x-1, y);
|
|
|
|
DrawString(text, x+1, y);
|
|
|
|
DrawString(text, x, y-1);
|
|
|
|
DrawString(text, x, y+1);
|
2007-04-13 16:38:27 +02:00
|
|
|
|
|
|
|
// Draw primary string
|
2012-12-11 18:44:28 +01:00
|
|
|
glColor4f(r, g, b, a);
|
|
|
|
DrawString(text, x, y);
|
2007-04-13 16:38:27 +02:00
|
|
|
|
|
|
|
// Disable blend
|
2010-01-24 20:05:20 +01:00
|
|
|
glDisable(GL_TEXTURE_2D);
|
2007-04-13 16:38:27 +02:00
|
|
|
glDisable(GL_BLEND);
|
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
void OpenGLText::DrawString(const std::string &text, int x, int y) {
|
|
|
|
for (char curChar : text) {
|
|
|
|
OpenGLTextGlyph const& glyph = GetGlyph(curChar);
|
|
|
|
glyph.Draw(x, y);
|
|
|
|
x += glyph.w;
|
2007-04-13 05:52:25 +02:00
|
|
|
}
|
2007-04-12 14:49:41 +02:00
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
void OpenGLText::GetExtent(std::string const& text, int &w, int &h) {
|
|
|
|
w = h = 0;
|
2007-04-13 16:38:27 +02:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
for (char curChar : text) {
|
|
|
|
OpenGLTextGlyph const& glyph = GetGlyph(curChar);
|
|
|
|
w += glyph.w;
|
|
|
|
h = std::max(h, glyph.h);
|
2007-04-13 16:38:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-02 09:22:53 +02:00
|
|
|
OpenGLTextGlyph const& OpenGLText::GetGlyph(int i) {
|
2012-12-23 00:35:13 +01:00
|
|
|
auto res = glyphs.find(i);
|
|
|
|
return res != glyphs.end() ? res->second : CreateGlyph(i);
|
2007-04-12 14:49:41 +02:00
|
|
|
}
|
|
|
|
|
2010-06-02 09:22:53 +02:00
|
|
|
OpenGLTextGlyph const& OpenGLText::CreateGlyph(int n) {
|
2014-05-25 16:41:21 +02:00
|
|
|
OpenGLTextGlyph &glyph = glyphs.emplace(n, OpenGLTextGlyph(n, font)).first->second;
|
2007-04-12 14:49:41 +02:00
|
|
|
|
|
|
|
// Insert into some texture
|
2012-12-11 18:44:28 +01:00
|
|
|
for (auto& texture : textures) {
|
|
|
|
if (texture.TryToInsert(glyph))
|
|
|
|
return glyph;
|
2007-04-12 14:49:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// No texture could fit it, create a new one
|
2012-12-11 18:44:28 +01:00
|
|
|
textures.emplace_back(glyph);
|
2007-04-12 14:49:41 +02:00
|
|
|
return glyph;
|
|
|
|
}
|