]> git.sesse.net Git - casparcg/blob - core/producer/text/text_producer.cpp
* don't throw on not finding a font file, just ignore that font
[casparcg] / core / producer / text / text_producer.cpp
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Niklas P Andersson, niklas.p.andersson@svt.se
20 */
21
22 #include "../../StdAfx.h"
23
24 #include "text_producer.h"
25
26 #include <core/producer/frame_producer.h>
27 #include <core/producer/color/color_producer.h>
28 #include <core/producer/variable.h>
29 #include <core/frame/geometry.h>
30 #include <core/frame/frame.h>
31 #include <core/frame/draw_frame.h>
32 #include <core/frame/frame_factory.h>
33 #include <core/frame/pixel_format.h>
34 #include <core/frame/audio_channel_layout.h>
35 #include <core/monitor/monitor.h>
36 #include <core/consumer/frame_consumer.h>
37 #include <core/module_dependencies.h>
38 #include <core/help/help_repository.h>
39 #include <core/help/help_sink.h>
40
41 #include <modules/image/consumer/image_consumer.h>
42
43 #include <common/except.h>
44 #include <common/array.h>
45 #include <common/env.h>
46 #include <common/future.h>
47 #include <common/param.h>
48 #include <memory>
49
50 #include <boost/algorithm/string.hpp>
51 #include <boost/property_tree/ptree.hpp>
52 #include <boost/filesystem.hpp>
53
54 #include <ft2build.h>
55 #include FT_FREETYPE_H
56 #include FT_GLYPH_H
57
58 #include "utils/texture_atlas.h"
59 #include "utils/texture_font.h"
60 #include "utils/freetype_library.h"
61
62 class font_comparer {
63         const std::wstring& lhs;
64 public:
65         explicit font_comparer(const std::wstring& p) : lhs(p) {}
66         bool operator()(const std::pair<std::wstring, std::wstring>&rhs) { return boost::iequals(lhs, rhs.first); }
67 };
68
69
70 namespace caspar { namespace core { namespace text {
71
72 using namespace boost::filesystem;
73
74 std::map<std::wstring, std::wstring> enumerate_fonts()
75 {
76         std::map<std::wstring, std::wstring> result;
77
78         for(auto iter = directory_iterator(env::font_folder()), end = directory_iterator(); iter != end; ++iter)
79         {
80                 try 
81                 {
82                         auto file = (*iter);
83                         if (is_regular_file(file.path()))
84                         {
85                                 auto face = get_new_face(u8(file.path().native()));
86                                 const char* fontname = FT_Get_Postscript_Name(face.get());      //this doesn't work for .fon fonts. Ignoring those for now
87                                 if (fontname != nullptr)
88                                 {
89                                         std::string fontname_str(fontname);
90                                         result.insert(std::make_pair(u16(fontname_str), u16(file.path().native())));
91                                 }
92                         }
93                 }
94                 catch(...) { }
95         }
96
97         return result;
98 }
99
100 std::vector<std::pair<std::wstring, std::wstring>> list_fonts()
101 {
102         auto fonts = enumerate_fonts();
103         return std::vector<std::pair<std::wstring, std::wstring>>(fonts.begin(), fonts.end());
104 }
105
106 void describe_text_producer(help_sink&, const help_repository&);
107 spl::shared_ptr<frame_producer> create_text_producer(const frame_producer_dependencies&, const std::vector<std::wstring>&);
108
109 void init(module_dependencies dependencies)
110 {
111         dependencies.producer_registry->register_producer_factory(L"Text Producer", create_text_producer, describe_text_producer);
112 }
113
114 text_info& find_font_file(text_info& info)
115 {
116         auto& font_name = info.font;
117         auto fonts = enumerate_fonts();
118         auto it = std::find_if(fonts.begin(), fonts.end(), font_comparer(font_name));
119         info.font_file = (it != fonts.end()) ? (*it).second : L"";
120         return info;
121 }
122
123 } // namespace text
124         
125
126 struct text_producer::impl
127 {
128         monitor::subject                                                monitor_subject_;
129         spl::shared_ptr<core::frame_factory>    frame_factory_;
130         int                                                                             x_;
131         int                                                                             y_;
132         int                                                                             parent_width_;
133         int                                                                             parent_height_;
134         bool                                                                    standalone_;
135         constraints                                                             constraints_                            { parent_width_, parent_height_ };
136         variable_impl<std::wstring>                             text_;
137         std::shared_ptr<void>                                   text_subscription_;
138         variable_impl<double>                                   tracking_;
139         std::shared_ptr<void>                                   tracking_subscription_;
140         variable_impl<double>                                   current_bearing_y_;
141         variable_impl<double>                                   current_protrude_under_y_;
142         draw_frame                                                              frame_;
143         text::texture_atlas                                             atlas_                                          { 512, 512, 4 };
144         text::texture_font                                              font_;
145         bool                                                                    dirty_                                          = false;
146
147 public:
148         explicit impl(const spl::shared_ptr<frame_factory>& frame_factory, int x, int y, const std::wstring& str, text::text_info& text_info, long parent_width, long parent_height, bool standalone) 
149                 : frame_factory_(frame_factory)
150                 , x_(x), y_(y)
151                 , parent_width_(parent_width), parent_height_(parent_height)
152                 , standalone_(standalone)
153                 , font_(atlas_, text::find_font_file(text_info), !standalone)
154         {
155                 //TODO: examine str to determine which unicode_blocks to load
156                 font_.load_glyphs(text::unicode_block::Basic_Latin, text_info.color);
157                 font_.load_glyphs(text::unicode_block::Latin_1_Supplement, text_info.color);
158                 font_.load_glyphs(text::unicode_block::Latin_Extended_A, text_info.color);
159
160                 tracking_.value().set(text_info.tracking);
161                 text_subscription_ = text_.value().on_change([this]()
162                 {
163                         dirty_ = true;
164                 });
165                 tracking_subscription_ = tracking_.value().on_change([this]()
166                 {
167                         dirty_ = true;
168                 });
169
170                 constraints_.height.depend_on(text());
171                 constraints_.width.depend_on(text());
172                 current_bearing_y_.as<double>().depend_on(text());
173                 current_protrude_under_y_.as<double>().depend_on(text());
174
175                 //generate frame
176                 text_.value().set(str);
177
178                 CASPAR_LOG(info) << print() << L" Initialized";
179         }
180
181         void generate_frame()
182         {
183                 core::pixel_format_desc pfd(core::pixel_format::bgra);
184                 pfd.planes.push_back(core::pixel_format_desc::plane(static_cast<int>(atlas_.width()), static_cast<int>(atlas_.height()), static_cast<int>(atlas_.depth())));
185
186                 text::string_metrics metrics;
187                 font_.set_tracking(static_cast<int>(tracking_.value().get()));
188                 
189                 auto vertex_stream = font_.create_vertex_stream(text_.value().get(), x_, y_, parent_width_, parent_height_, &metrics);
190                 auto frame = frame_factory_->create_frame(vertex_stream.data(), pfd, core::audio_channel_layout::invalid());
191                 memcpy(frame.image_data().data(), atlas_.data(), frame.image_data().size());
192                 frame.set_geometry(frame_geometry(frame_geometry::geometry_type::quad_list, std::move(vertex_stream)));
193
194                 this->constraints_.width.set(metrics.width);
195                 this->constraints_.height.set(metrics.height);
196                 current_bearing_y_.value().set(metrics.bearingY);
197                 current_protrude_under_y_.value().set(metrics.protrudeUnderY);
198                 frame_ = core::draw_frame(std::move(frame));
199         }
200
201         text::string_metrics measure_string(const std::wstring& str)
202         {
203                 return font_.measure_string(str);
204         }
205
206         // frame_producer
207                         
208         draw_frame receive_impl()
209         {
210                 if (dirty_)
211                 {
212                         generate_frame();
213                         dirty_ = false;
214                 }
215
216                 return frame_;
217         }
218
219         std::future<std::wstring> call(const std::vector<std::wstring>& param)
220         {
221                 std::wstring result;
222                 text_.value().set(param.empty() ? L"" : param[0]);
223
224                 return make_ready_future(std::move(result));
225         }
226
227         variable& get_variable(const std::wstring& name)
228         {
229                 if (name == L"text")
230                         return text_;
231                 else if (name == L"current_bearing_y")
232                         return current_bearing_y_;
233                 else if (name == L"current_protrude_under_y")
234                         return current_protrude_under_y_;
235                 else if (name == L"tracking")
236                         return tracking_;
237
238                 CASPAR_THROW_EXCEPTION(user_error() << msg_info(L"text_producer does not have a variable called " + name));
239         }
240
241         const std::vector<std::wstring>& get_variables() const
242         {
243                 static const std::vector<std::wstring> vars = {
244                         L"text",
245                         L"tracking",
246                         L"current_bearing_y",
247                         L"current_protrude_under_y"
248                 };
249
250                 return vars;
251         }
252
253         constraints& pixel_constraints()
254         {
255                 return constraints_;
256         }
257
258         binding<std::wstring>& text()
259         {
260                 return text_.value();
261         }
262
263         binding<double>& tracking()
264         {
265                 return tracking_.value();
266         }
267
268         const binding<double>& current_bearing_y() const
269         {
270                 return current_bearing_y_.value();
271         }
272
273         const binding<double>& current_protrude_under_y() const
274         {
275                 return current_protrude_under_y_.value();
276         }
277         
278         std::wstring print() const
279         {
280                 return L"text[" + text_.value().get() + L"]";
281         }
282
283         std::wstring name() const
284         {
285                 return L"text";
286         }
287         
288         boost::property_tree::wptree info() const
289         {
290                 boost::property_tree::wptree info;
291                 info.add(L"type", L"text");
292                 info.add(L"text", text_.value().get());
293                 info.add(L"font", font_.get_name());
294                 info.add(L"size", font_.get_size());
295                 return info;
296         }
297 };
298
299 text_producer::text_producer(const spl::shared_ptr<frame_factory>& frame_factory, int x, int y, const std::wstring& str, text::text_info& text_info, long parent_width, long parent_height, bool standalone)
300         : impl_(new impl(frame_factory, x, y, str, text_info, parent_width, parent_height, standalone))
301 {}
302
303 draw_frame text_producer::receive_impl() { return impl_->receive_impl(); }
304 std::future<std::wstring> text_producer::call(const std::vector<std::wstring>& param) { return impl_->call(param); }
305 variable& text_producer::get_variable(const std::wstring& name) { return impl_->get_variable(name); }
306 const std::vector<std::wstring>& text_producer::get_variables() const { return impl_->get_variables(); }
307 text::string_metrics text_producer::measure_string(const std::wstring& str) { return impl_->measure_string(str); }
308
309 constraints& text_producer::pixel_constraints() { return impl_->pixel_constraints(); }
310 std::wstring text_producer::print() const { return impl_->print(); }
311 std::wstring text_producer::name() const { return impl_->name(); }
312 boost::property_tree::wptree text_producer::info() const { return impl_->info(); }
313 monitor::subject& text_producer::monitor_output() { return impl_->monitor_subject_; }
314 binding<std::wstring>& text_producer::text() { return impl_->text(); }
315 binding<double>& text_producer::tracking() { return impl_->tracking(); }
316 const binding<double>& text_producer::current_bearing_y() const { return impl_->current_bearing_y(); }
317 const binding<double>& text_producer::current_protrude_under_y() const { return impl_->current_protrude_under_y(); }
318
319 spl::shared_ptr<text_producer> text_producer::create(const spl::shared_ptr<frame_factory>& frame_factory, int x, int y, const std::wstring& str, text::text_info& text_info, long parent_width, long parent_height, bool standalone)
320 {
321         return spl::make_shared<text_producer>(frame_factory, x, y, str, text_info, parent_width, parent_height, standalone);
322 }
323 namespace text {
324
325 void describe_text_producer(help_sink& sink, const help_repository& repo)
326 {
327         sink.short_description(L"A producer for rendering dynamic text.");
328         sink.syntax(L"[TEXT] [text:string] {[x:int] [y:int]} {FONT [font:string]|verdana} {SIZE [size:float]|30.0} {COLOR [color:string]|#ffffffff} {STANDALONE [standalone:0,1]|0}");
329         sink.para()
330                 ->text(L"Renders dynamic text using fonts found under the ")->code(L"fonts")->text(L" folder. ")
331                 ->text(L"Parameters:");
332         sink.definitions()
333                 ->item(L"text", L"The text to display. Can be changed later via CALL as well.")
334                 ->item(L"x", L"The x position of the text.")
335                 ->item(L"y", L"The y position of the text.")
336                 ->item(L"font", L"The name of the font (not the actual filename, but the font name).")
337                 ->item(L"size", L"The point size.")
338                 ->item(L"color", L"The color as an ARGB hex value.")
339                 ->item(L"standalone", L"Whether to normalize coordinates or not.");
340         sink.para()->text(L"Examples:");
341         sink.example(L">> PLAY 1-10 [TEXT] \"John Doe\" 0 0 FONT ArialMT SIZE 30 COLOR #1b698d STANDALONE 1");
342         sink.example(L">> CALL 1-10 \"Jane Doe\"", L"for modifying the text while playing.");
343         sink.para()->text(L"See ")->see(L"FLS")->text(L" for listing the available fonts.");
344 }
345
346 spl::shared_ptr<frame_producer> create_text_producer(const frame_producer_dependencies& dependencies, const std::vector<std::wstring>& params)
347 {
348         if(params.size() < 2 || !boost::iequals(params.at(0), L"[text]"))
349                 return core::frame_producer::empty();
350
351         int x = 0, y = 0;
352         if(params.size() >= 4)
353         {
354                 x = boost::lexical_cast<int>(params.at(2));
355                 y = boost::lexical_cast<int>(params.at(3));
356         }
357
358         text::text_info text_info;
359         text_info.font = get_param(L"FONT", params, L"verdana");
360         text_info.size = get_param(L"SIZE", params, 30.0); // 30.0f does not seem to work to get as float directly
361         
362         std::wstring col_str = get_param(L"color", params, L"#ffffffff");
363         uint32_t col_val = 0xffffffff;
364         try_get_color(col_str, col_val);
365         text_info.color = core::text::color<double>(col_val);
366
367         bool standalone = get_param(L"STANDALONE", params, false);
368
369         return text_producer::create(
370                         dependencies.frame_factory,
371                         x, y,
372                         params.at(1),
373                         text_info,
374                         dependencies.format_desc.width, dependencies.format_desc.height,
375                         standalone);
376 }
377
378 }}}