aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/text.cpp
blob: 3c95b42b0079f4faacb42369155940e7979983ef (plain) (blame)
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
/*
 * UltraStar Deluxe - Karaoke Game
 *
 * UltraStar Deluxe is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * 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 2
 * 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; see the file COPYING. If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 */

#include "text.hpp"
#include <exception>
#include <GL/gl.h>


namespace usdx
{
	log4cpp::Category& Text::log =
		log4cpp::Category::getInstance("usdx.menu.text");

	Text::Text(Container *parent, const std::string text,
			   const unsigned int size, const VerticalTextAlignment* valign) :
		DrawableControl(parent), text(text), auto_size(true),
		stretch(false), offset(Point<int>(0, 0)), valign(valign)
	{
		font = new FTBufferFont("DejaVuSans.ttf");
		font->FaceSize(size);

		if (font->Error()) {
			throw new std::exception();
		}

		realign();
	}

	Text::~Text()
	{
		if (valign) {
			delete valign;
			valign = NULL;
		}

		if (font) {
			delete font;
			font = NULL;
		}
	}

	Rectangle<int> Text::makeRect(const FTBBox& bbox)
	{
		return Rectangle<int>(Point<int>(bbox.Upper().X(), bbox.Upper().Y()),
							  Point<int>(bbox.Lower().X(), bbox.Lower().Y()));
	}


	void Text::realign(void)
	{
		boost::shared_lock<boost::shared_mutex> lock(font_mutex);
		Rectangle<int> bbox = makeRect(font->BBox(text.c_str()));
		bbox.get_point1().set_y(font->Ascender());
		bbox.get_point2().set_y(font->Descender());
		valign->align(offset, bbox, get_size());

		// TODO: handle autosize (required for sensitive area)
	}

	void Text::draw(void)
	{
		DrawableControl::draw();

		boost::shared_lock<boost::shared_mutex> lock(font_mutex);
		glTranslatef(offset.get_x(), offset.get_y(), 0.0f);

		// invert y axis, text is drawn using window orientation (origin is
		// bottom left)
		glScalef(1, -1, 1);
		font->Render(text.c_str());
	}

	void Text::set_font_size(unsigned int value)
	{
		{
			boost::unique_lock<boost::shared_mutex> lock(font_mutex);
			font->FaceSize(value);
		}

		realign();
	}

	unsigned int Text::get_font_size(void) const
	{
		boost::shared_lock<boost::shared_mutex> lock(font_mutex);
		return font->FaceSize();
	}

	void Text::set_text(const std::string value)
	{
		{
			boost::unique_lock<boost::shared_mutex> lock(font_mutex);
			text = value;
		}

		realign();
	}

	std::string Text::get_text(void) const
	{
		boost::shared_lock<boost::shared_mutex> lock(font_mutex);
		return text;
	}

	void Text::set_size(const Dimension<int>& size)
	{
		DrawableControl::set_size(size);
		realign();
	}

	void Text::set_size(int width, int height)
	{
		DrawableControl::set_size(width, height);
		realign();
	}

	void Text::set_auto_size(const bool value)
	{
		auto_size = value;

		set_clipping_required(!auto_size);
		realign();
	}

	bool Text::get_auto_size(void) const
	{
		return auto_size;
	}
};