]> git.sesse.net Git - casparcg/blob - core/producer/color/color_producer.cpp
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[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 "../../format/video_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 unsigned int get_pixel_color_value(const std::wstring& parameter)\r
33 {\r
34         union Color \r
35         {\r
36                 struct Components \r
37                 {\r
38                         unsigned char a;\r
39                         unsigned char r;\r
40                         unsigned char g;\r
41                         unsigned char b;\r
42                 } comp;\r
43 \r
44                 unsigned int value;\r
45         };\r
46 \r
47         std::wstring color_code;\r
48         if(parameter.length() != 9 || parameter[0] != '#')\r
49                 BOOST_THROW_EXCEPTION(invalid_argument() << arg_name_info("parameter") << arg_value_info(common::narrow(parameter)) << msg_info("Invalid color code"));\r
50         \r
51         color_code = parameter.substr(1);\r
52 \r
53         Color color;\r
54         color.value = _tcstoul(color_code.c_str(), 0, 16);\r
55         unsigned char temp = color.comp.a;\r
56         color.comp.a = color.comp.b;\r
57         color.comp.b = temp;\r
58         temp = color.comp.r;\r
59         color.comp.r = color.comp.g;\r
60         color.comp.g = temp;\r
61 \r
62         return color.value;\r
63 }\r
64 \r
65 class color_producer : public frame_producer\r
66 {\r
67 public:\r
68         explicit color_producer(const std::wstring& color) : color_str_(color), color_value_(get_pixel_color_value(color)){}\r
69         \r
70         gpu_frame_ptr render_frame()\r
71         { \r
72                 return frame_;\r
73         }\r
74 \r
75         void initialize(const frame_processor_device_ptr& frame_processor)\r
76         {\r
77                 auto frame = frame_processor->create_frame();\r
78                 __stosd(reinterpret_cast<unsigned long*>(frame->data().begin()), color_value_, frame->data().size() / sizeof(unsigned long));\r
79                 frame_ = frame;\r
80         }\r
81         \r
82         std::wstring print() const\r
83         {\r
84                 return + L"color_producer. color: " + color_str_;\r
85         }\r
86 \r
87         gpu_frame_ptr frame_;\r
88         unsigned int color_value_;\r
89         std::wstring color_str_;\r
90 };\r
91 \r
92 frame_producer_ptr create_color_producer(const std::vector<std::wstring>& params)\r
93 {\r
94         if(params.empty() || params[0].at(0) != '#')\r
95                 return nullptr;\r
96         return std::make_shared<color_producer>(params[0]);\r
97 }\r
98 \r
99 }}