]> git.sesse.net Git - casparcg/blob - core/producer/color/color_producer.cpp
2.0.0.2:
[casparcg] / core / producer / color / color_producer.cpp
1 /*\r
2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\r
5 *\r
6 *    CasparCG is free software: you can redistribute it and/or modify\r
7 *    it under the terms of the GNU General Public License as published by\r
8 *    the Free Software Foundation, either version 3 of the License, or\r
9 *    (at your option) any later version.\r
10 *\r
11 *    CasparCG is distributed in the hope that it will be useful,\r
12 *    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 *    GNU General Public License for more details.\r
15 \r
16 *    You should have received a copy of the GNU General Public License\r
17 *    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 */\r
20  \r
21 #include "../../stdafx.h"\r
22 \r
23 #include "color_producer.h"\r
24 \r
25 #include "../../frame/frame_format.h"\r
26 \r
27 #include <intrin.h>\r
28 #pragma intrinsic(__movsd, __stosd)\r
29 \r
30 namespace caspar { namespace core {\r
31 \r
32 class color_producer : public frame_producer\r
33 {\r
34 public:\r
35         explicit color_producer(unsigned long color_value, const frame_format_desc& format_desc) : format_desc_(format_desc){}\r
36 \r
37         gpu_frame_ptr get_frame() { return frame_; }\r
38         const frame_format_desc& get_frame_format_desc() const { return format_desc_; }\r
39         \r
40         void initialize(const frame_factory_ptr& factory)\r
41         {\r
42                 frame_ = factory->create_frame(format_desc_);\r
43                 __stosd(reinterpret_cast<unsigned long*>(frame_->data()), color_value_, frame_->size() / sizeof(unsigned long));\r
44         }\r
45 \r
46         frame_format_desc format_desc_;\r
47         gpu_frame_ptr frame_;\r
48         unsigned long color_value_;\r
49 };\r
50 \r
51 union Color \r
52 {\r
53         struct Components \r
54         {\r
55                 unsigned char a;\r
56                 unsigned char r;\r
57                 unsigned char g;\r
58                 unsigned char b;\r
59         } comp;\r
60 \r
61         unsigned long value;\r
62 };\r
63 \r
64 unsigned long get_pixel_color_value(const std::wstring& parameter)\r
65 {\r
66         std::wstring color_code;\r
67         if(parameter.length() != 9 || parameter[0] != '#')\r
68                 BOOST_THROW_EXCEPTION(invalid_argument() << arg_name_info("parameter") << arg_value_info(common::narrow(parameter)) << msg_info("Invalid color code"));\r
69         \r
70         color_code = parameter.substr(1);\r
71 \r
72         Color color;\r
73         color.value = _tcstoul(color_code.c_str(), 0, 16);\r
74         unsigned char temp = color.comp.a;\r
75         color.comp.a = color.comp.b;\r
76         color.comp.b = temp;\r
77         temp = color.comp.r;\r
78         color.comp.r = color.comp.g;\r
79         color.comp.g = temp;\r
80 \r
81         return color.value;\r
82 }\r
83 \r
84 frame_producer_ptr create_color_producer(const std::vector<std::wstring>& params, const frame_format_desc& format_desc)\r
85 {\r
86         if(params.empty() || params[0].at(0) != '#')\r
87                 return nullptr;\r
88         return std::make_shared<color_producer>(get_pixel_color_value(params[0]), format_desc);\r
89 }\r
90 \r
91 }}