]> git.sesse.net Git - casparcg/blobdiff - core/producer/color/color_producer.cpp
2.0.2: Updated file info headers.
[casparcg] / core / producer / color / color_producer.cpp
index 002ef09d6df3200b196114075b6fd45efa2d3ca4..f91c1072783dd4af92c8ad9105a6007324386b7e 100644 (file)
@@ -1,28 +1,35 @@
 /*\r
-* copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
+* Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
 *\r
-*  This file is part of CasparCG.\r
+* This file is part of CasparCG (www.casparcg.com).\r
 *\r
-*    CasparCG is free software: you can redistribute it and/or modify\r
-*    it under the terms of the GNU General Public License as published by\r
-*    the Free Software Foundation, either version 3 of the License, or\r
-*    (at your option) any later version.\r
+* CasparCG is free software: you can redistribute it and/or modify\r
+* it under the terms of the GNU General Public License as published by\r
+* the Free Software Foundation, either version 3 of the License, or\r
+* (at your option) any later version.\r
 *\r
-*    CasparCG is distributed in the hope that it will be useful,\r
-*    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-*    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
-*    GNU General Public License for more details.\r
-\r
-*    You should have received a copy of the GNU General Public License\r
-*    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
+* CasparCG is distributed in the hope that it will be useful,\r
+* but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+* GNU General Public License for more details.\r
+*\r
+* You should have received a copy of the GNU General Public License\r
+* along with CasparCG. If not, see <http://www.gnu.org/licenses/>.\r
 *\r
+* Author: Robert Nagy, ronag89@gmail.com\r
 */\r
\r
+\r
 #include "../../stdafx.h"\r
 \r
 #include "color_producer.h"\r
 \r
-#include <mixer/frame/draw_frame.h>\r
+#include "../frame/basic_frame.h"\r
+#include "../frame/frame_factory.h"\r
+#include "../../mixer/write_frame.h"\r
+\r
+#include <common/exception/exceptions.h>\r
+\r
+#include <boost/algorithm/string.hpp>\r
 \r
 #include <sstream>\r
 \r
@@ -30,46 +37,114 @@ namespace caspar { namespace core {
        \r
 class color_producer : public frame_producer\r
 {\r
-       safe_ptr<draw_frame> frame_;\r
-       std::wstring color_str_;\r
-       printer parent_printer_;\r
+       safe_ptr<basic_frame> frame_;\r
+       const std::wstring color_str_;\r
 \r
 public:\r
-\r
-       explicit color_producer(const std::wstring& color) \r
+       explicit color_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::wstring& color) \r
                : color_str_(color)\r
-               , frame_(draw_frame::empty())\r
+               , frame_(create_color_frame(this, frame_factory, color))\r
+       {}\r
+\r
+       // frame_producer\r
+                       \r
+       virtual safe_ptr<basic_frame> receive(int) override\r
+       {\r
+               return frame_;\r
+       }       \r
+\r
+       virtual safe_ptr<basic_frame> last_frame() const override\r
+       {\r
+               return frame_; \r
+       }       \r
+\r
+       virtual std::wstring print() const override\r
        {\r
-               if(color.length() != 9 || color[0] != '#')\r
-                       BOOST_THROW_EXCEPTION(invalid_argument() << arg_name_info("color") << arg_value_info(narrow(color)) << msg_info("Invalid color code"));\r
+               return L"color[" + color_str_ + L"]";\r
        }\r
 \r
-       virtual void initialize(const safe_ptr<frame_factory>& frame_factory)\r
+       boost::property_tree::wptree info() const override\r
        {\r
-               auto frame = frame_factory->create_frame(1, 1, pixel_format::bgra);\r
-               auto& value = *reinterpret_cast<unsigned long*>(frame->image_data().begin());\r
-               std::wstringstream str(color_str_.substr(1));\r
-               str >> std::hex >> value;       \r
-               frame_ = std::move(frame);\r
+               boost::property_tree::wptree info;\r
+               info.add(L"type", L"color-producer");\r
+               info.add(L"color", color_str_);\r
+               return info;\r
        }\r
+};\r
 \r
-       virtual void set_parent_printer(const printer& parent_printer){parent_printer_ = parent_printer;}\r
+std::wstring get_hex_color(const std::wstring& str)\r
+{\r
+       if(str.at(0) == '#')\r
+               return str.length() == 7 ? L"#FF" + str.substr(1) : str;\r
+       \r
+       if(boost::iequals(str, L"EMPTY"))\r
+               return L"#00000000";\r
+\r
+       if(boost::iequals(str, L"BLACK"))\r
+               return L"#FF000000";\r
        \r
-       virtual safe_ptr<draw_frame> receive() { return frame_; }\r
+       if(boost::iequals(str, L"WHITE"))\r
+               return L"#FFFFFFFF";\r
        \r
-       virtual std::wstring print() const { return (parent_printer_ ? parent_printer_() + L"/" : L"") + L"color[" + color_str_ + L"]"; }\r
-};\r
+       if(boost::iequals(str, L"RED"))\r
+               return L"#FFFF0000";\r
+       \r
+       if(boost::iequals(str, L"GREEN"))\r
+               return L"#FF00FF00";\r
+       \r
+       if(boost::iequals(str, L"BLUE"))\r
+               return L"#FF0000FF";    \r
+       \r
+       if(boost::iequals(str, L"ORANGE"))\r
+               return L"#FFFFA500";    \r
+       \r
+       if(boost::iequals(str, L"YELLOW"))\r
+               return L"#FFFFFF00";\r
+       \r
+       if(boost::iequals(str, L"BROWN"))\r
+               return L"#FFA52A2A";\r
+       \r
+       if(boost::iequals(str, L"GRAY"))\r
+               return L"#FF808080";\r
+       \r
+       if(boost::iequals(str, L"TEAL"))\r
+               return L"#FF008080";\r
+       \r
+       return str;\r
+}\r
 \r
-safe_ptr<frame_producer> create_color_producer(const std::vector<std::wstring>& params)\r
+safe_ptr<frame_producer> create_color_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::vector<std::wstring>& params)\r
 {\r
-       if(params.empty() || params[0].at(0) != '#')\r
-               return frame_producer::empty();\r
-       return make_safe<color_producer>(params[0]);\r
-}\r
+       if(params.size() < 0)\r
+               return core::frame_producer::empty();\r
 \r
-volatile struct reg\r
+       auto color2 = get_hex_color(params[0]);\r
+       if(color2.length() != 9 || color2[0] != '#')\r
+               return core::frame_producer::empty();\r
+\r
+       return make_safe<color_producer>(frame_factory, color2);\r
+}\r
+safe_ptr<core::write_frame> create_color_frame(void* tag, const safe_ptr<core::frame_factory>& frame_factory, const std::wstring& color)\r
 {\r
-       reg(){register_producer_factory(create_color_producer);}\r
-} my_reg;\r
+       auto color2 = get_hex_color(color);\r
+       if(color2.length() != 9 || color2[0] != '#')\r
+               BOOST_THROW_EXCEPTION(invalid_argument() << arg_name_info("color") << arg_value_info(narrow(color2)) << msg_info("Invalid color."));\r
+       \r
+       core::pixel_format_desc desc;\r
+       desc.pix_fmt = pixel_format::bgra;\r
+       desc.planes.push_back(core::pixel_format_desc::plane(1, 1, 4));\r
+       auto frame = frame_factory->create_frame(tag, desc);\r
+               \r
+       // Read color from hex-string and write to frame pixel.\r
+\r
+       auto& value = *reinterpret_cast<uint32_t*>(frame->image_data().begin());\r
+       std::wstringstream str(color2.substr(1));\r
+       if(!(str >> std::hex >> value) || !str.eof())\r
+               BOOST_THROW_EXCEPTION(invalid_argument() << arg_name_info("color") << arg_value_info(narrow(color2)) << msg_info("Invalid color."));\r
+\r
+       frame->commit();\r
+               \r
+       return frame;\r
+}\r
 \r
 }}
\ No newline at end of file