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
|
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* 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, 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 XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "OverlayRendererGUI.h"
#include "settings/Settings.h"
#include "filesystem/File.h"
#include "Util.h"
#include "utils/URIUtils.h"
#include "utils/StringUtils.h"
#include "utils/log.h"
#include "guilib/GUITextLayout.h"
#include "guilib/GUIFontManager.h"
#include "guilib/GUIFont.h"
#include "cores/dvdplayer/DVDCodecs/Overlay/DVDOverlayText.h"
using namespace OVERLAY;
static color_t color[8] = { 0xFFFFFF00
, 0xFFFFFFFF
, 0xFF0099FF
, 0xFF00FF00
, 0xFFCCFF00
, 0xFF00FFFF
, 0xFFE5E5E5
, 0xFFC0C0C0 };
static CGUITextLayout* GetFontLayout()
{
if (CUtil::IsUsingTTFSubtitles())
{ std::string font_file = CSettings::GetInstance().GetString(CSettings::SETTING_SUBTITLES_FONT);
std::string font_path = URIUtils::AddFileToFolder("special://home/media/Fonts/", font_file);
if (!XFILE::CFile::Exists(font_path))
font_path = URIUtils::AddFileToFolder("special://xbmc/media/Fonts/", font_file);
// We scale based on PAL4x3 - this at least ensures all sizing is constant across resolutions.
RESOLUTION_INFO pal(720, 576, 0);
CGUIFont *subtitle_font = g_fontManager.LoadTTF("__subtitle__"
, font_path
, color[CSettings::GetInstance().GetInt(CSettings::SETTING_SUBTITLES_COLOR)]
, 0
, CSettings::GetInstance().GetInt(CSettings::SETTING_SUBTITLES_HEIGHT)
, CSettings::GetInstance().GetInt(CSettings::SETTING_SUBTITLES_STYLE)
, false, 1.0f, 1.0f, &pal, true);
CGUIFont *border_font = g_fontManager.LoadTTF("__subtitleborder__"
, font_path
, 0xFF000000
, 0
, CSettings::GetInstance().GetInt(CSettings::SETTING_SUBTITLES_HEIGHT)
, CSettings::GetInstance().GetInt(CSettings::SETTING_SUBTITLES_STYLE)
, true, 1.0f, 1.0f, &pal, true);
if (!subtitle_font || !border_font)
CLog::Log(LOGERROR, "CGUIWindowFullScreen::OnMessage(WINDOW_INIT) - Unable to load subtitle font");
else
return new CGUITextLayout(subtitle_font, true, 0, border_font);
}
return NULL;
}
COverlayText::COverlayText(CDVDOverlayText * src)
{
CDVDOverlayText::CElement* e = src->m_pHead;
while (e)
{
if (e->IsElementType(CDVDOverlayText::ELEMENT_TYPE_TEXT))
{
CDVDOverlayText::CElementText* t = (CDVDOverlayText::CElementText*)e;
m_text += t->GetText();
m_text += "\n";
}
e = e->pNext;
}
// Avoid additional line breaks
while(StringUtils::EndsWith(m_text, "\n"))
m_text = StringUtils::Left(m_text, m_text.length() - 1);
// Remove HTML-like tags from the subtitles until
StringUtils::Replace(m_text, "\\r", "");
StringUtils::Replace(m_text, "\r", "");
StringUtils::Replace(m_text, "\\n", "[CR]");
StringUtils::Replace(m_text, "\n", "[CR]");
StringUtils::Replace(m_text, "<br>", "[CR]");
StringUtils::Replace(m_text, "\\N", "[CR]");
StringUtils::Replace(m_text, "<i>", "[I]");
StringUtils::Replace(m_text, "</i>", "[/I]");
StringUtils::Replace(m_text, "<b>", "[B]");
StringUtils::Replace(m_text, "</b>", "[/B]");
StringUtils::Replace(m_text, "<u>", "");
StringUtils::Replace(m_text, "<p>", "");
StringUtils::Replace(m_text, "<P>", "");
StringUtils::Replace(m_text, " ", "");
StringUtils::Replace(m_text, "</u>", "");
StringUtils::Replace(m_text, "</i", "[/I]"); // handle tags which aren't closed properly (happens).
StringUtils::Replace(m_text, "</b", "[/B]");
StringUtils::Replace(m_text, "</u", "");
m_layout = GetFontLayout();
m_subalign = CSettings::GetInstance().GetInt(CSettings::SETTING_SUBTITLES_ALIGN);
if (m_subalign == SUBTITLE_ALIGN_MANUAL)
{
m_align = ALIGN_SUBTITLE;
m_pos = POSITION_RELATIVE;
m_x = 0.0f;
m_y = 0.0f;
}
else
{
if(m_subalign == SUBTITLE_ALIGN_TOP_INSIDE ||
m_subalign == SUBTITLE_ALIGN_BOTTOM_INSIDE)
m_align = ALIGN_VIDEO;
else
m_align = ALIGN_SCREEN;
m_pos = POSITION_RELATIVE;
m_x = 0.5f;
if(m_subalign == SUBTITLE_ALIGN_TOP_INSIDE ||
m_subalign == SUBTITLE_ALIGN_TOP_OUTSIDE)
m_y = 0.0f;
else
m_y = 1.0f;
}
m_width = 0;
m_height = 0;
m_type = TYPE_GUITEXT;
}
COverlayText::~COverlayText()
{
delete m_layout;
}
void COverlayText::PrepareRender()
{
RESOLUTION_INFO res = g_graphicsContext.GetResInfo();
float width_max = (float)res.Overscan.right - res.Overscan.left;
m_layout->Update(m_text, width_max * 0.9f, false, true); // true to force LTR reading order (most Hebrew subs are this format)
m_layout->GetTextExtent(m_width, m_height);
}
void COverlayText::Render(OVERLAY::SRenderState &state)
{
if(m_layout == NULL)
return;
CRect rd = g_graphicsContext.GetViewWindow();
RESOLUTION_INFO res = g_graphicsContext.GetResInfo();
/* our coordinates are in screen coordinates constrained to rd, but the font is sized suitably for fullscreen,
so we must scale up the positioning to screen coordinates, and then scale down to our final size and position
on render */
/* transform matrix is scale and translate */
float scale = rd.Width() / (res.Overscan.right - res.Overscan.left);
TransformMatrix mat;
mat.m[0][0] = mat.m[1][1] = scale;
mat.m[0][3] = rd.x1;
mat.m[1][3] = rd.y1;
float x = state.x;
float y = state.y;
mat.InverseTransformPosition(x, y);
g_graphicsContext.SetTransform(mat, 1.0f, 1.0f);
float width_max = (float) res.Overscan.right - res.Overscan.left;
if (m_subalign == SUBTITLE_ALIGN_MANUAL
|| m_subalign == SUBTITLE_ALIGN_BOTTOM_OUTSIDE
|| m_subalign == SUBTITLE_ALIGN_BOTTOM_INSIDE)
y -= m_height;
// clamp inside screen
y = std::max(y, (float) res.Overscan.top);
y = std::min(y, res.Overscan.bottom - m_height);
m_layout->RenderOutline(x, y, 0, 0xFF000000, XBFONT_CENTER_X, width_max);
g_graphicsContext.RemoveTransform();
}
|