]> 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 #include "../../stdafx.h"\r
21 \r
22 #include "color_producer.h"\r
23 \r
24 #include "../frame/basic_frame.h"\r
25 #include "../frame/frame_factory.h"\r
26 #include "../../mixer/write_frame.h"\r
27 \r
28 #include <common/exception/exceptions.h>\r
29 \r
30 #include <boost/algorithm/string.hpp>\r
31 \r
32 #include <sstream>\r
33 \r
34 namespace caspar { namespace core {\r
35         \r
36 class color_producer : public frame_producer\r
37 {\r
38         safe_ptr<basic_frame> frame_;\r
39         const std::wstring color_str_;\r
40 \r
41 public:\r
42         explicit color_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::wstring& color) \r
43                 : color_str_(color)\r
44                 , frame_(create_color_frame(this, frame_factory, color))\r
45         {}\r
46 \r
47         // frame_producer\r
48                         \r
49         virtual safe_ptr<basic_frame> receive(int) { return frame_; }   \r
50         virtual safe_ptr<basic_frame> last_frame() const { return frame_; }     \r
51         virtual std::wstring print() const { return L"color[" + color_str_ + L"]"; }\r
52 };\r
53 \r
54 std::wstring get_hex_color(const std::wstring& str)\r
55 {\r
56         if(str.at(0) == '#')\r
57                 return str.length() == 7 ? L"#FF" + str.substr(1) : str;\r
58         \r
59         if(boost::iequals(str, L"EMPTY"))\r
60                 return L"#00000000";\r
61 \r
62         if(boost::iequals(str, L"BLACK"))\r
63                 return L"#FF000000";\r
64         \r
65         if(boost::iequals(str, L"WHITE"))\r
66                 return L"#FFFFFFFF";\r
67         \r
68         if(boost::iequals(str, L"RED"))\r
69                 return L"#FFFF0000";\r
70         \r
71         if(boost::iequals(str, L"GREEN"))\r
72                 return L"#FF00FF00";\r
73         \r
74         if(boost::iequals(str, L"BLUE"))\r
75                 return L"#FF0000FF";    \r
76         \r
77         if(boost::iequals(str, L"ORANGE"))\r
78                 return L"#FFFFA500";    \r
79         \r
80         if(boost::iequals(str, L"YELLOW"))\r
81                 return L"#FFFFFF00";\r
82         \r
83         if(boost::iequals(str, L"BROWN"))\r
84                 return L"#FFA52A2A";\r
85         \r
86         if(boost::iequals(str, L"GRAY"))\r
87                 return L"#FF808080";\r
88         \r
89         if(boost::iequals(str, L"TEAL"))\r
90                 return L"#FF008080";\r
91         \r
92         return str;\r
93 }\r
94 \r
95 safe_ptr<frame_producer> create_color_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::vector<std::wstring>& params)\r
96 {\r
97         if(params.size() < 0)\r
98                 return core::frame_producer::empty();\r
99 \r
100         auto color2 = get_hex_color(params[0]);\r
101         if(color2.length() != 9 || color2[0] != '#')\r
102                 return core::frame_producer::empty();\r
103 \r
104         return make_safe<color_producer>(frame_factory, color2);\r
105 }\r
106 safe_ptr<core::write_frame> create_color_frame(void* tag, const safe_ptr<core::frame_factory>& frame_factory, const std::wstring& color)\r
107 {\r
108         auto color2 = get_hex_color(color);\r
109         if(color2.length() != 9 || color2[0] != '#')\r
110                 BOOST_THROW_EXCEPTION(invalid_argument() << arg_name_info("color") << arg_value_info(narrow(color2)) << msg_info("Invalid color."));\r
111 \r
112         auto frame = frame_factory->create_frame(tag, 1, 1, pixel_format::bgra);\r
113                 \r
114         // Read color from hex-string and write to frame pixel.\r
115 \r
116         auto& value = *reinterpret_cast<uint32_t*>(frame->image_data().begin());\r
117         std::wstringstream str(color2.substr(1));\r
118         if(!(str >> std::hex >> value) || !str.eof())\r
119                 BOOST_THROW_EXCEPTION(invalid_argument() << arg_name_info("color") << arg_value_info(narrow(color2)) << msg_info("Invalid color."));\r
120 \r
121         frame->commit();\r
122                 \r
123         return frame;\r
124 }\r
125 \r
126 }}