]> git.sesse.net Git - casparcg/blobdiff - modules/flash/producer/cg_producer.cpp
2.0. Updated namespaces.
[casparcg] / modules / flash / producer / cg_producer.cpp
index b4f7698f64f822cafde67ecb4b172351e04ee208..fb1604d452c9a382ec808f5ee0c8d7b418ade629 100644 (file)
+/*\r
+* copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
+*\r
+*  This file is part of CasparCG.\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
+*\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
+*/\r
 #include "../StdAfx.h"\r
 \r
-#include <common/env.h>\r
-\r
 #include "cg_producer.h"\r
 \r
 #include "flash_producer.h"\r
 \r
+#include <common/env.h>\r
+\r
+#include <core/mixer/mixer.h>\r
+\r
 #include <boost/filesystem.hpp>\r
 #include <boost/format.hpp>\r
-\r
-using boost::format;\r
-using boost::io::group;\r
                \r
-namespace caspar {\r
+namespace caspar { namespace flash {\r
        \r
 struct cg_producer::implementation : boost::noncopyable\r
 {\r
-       printer parent_printer_;\r
-       safe_ptr<flash_producer> flash_producer_;\r
-       std::shared_ptr<core::frame_factory> frame_factory_;\r
+       safe_ptr<core::frame_producer> flash_producer_;\r
 public:\r
-       implementation() \r
-               : flash_producer_(flash_producer(env::template_host())){}\r
-\r
-       void clear()\r
+       implementation(const safe_ptr<core::frame_producer>& frame_producer) \r
+               : flash_producer_(frame_producer)\r
+       {}\r
+       \r
+       void add(int layer, std::wstring filename,  bool play_on_load, const std::wstring& label, const std::wstring& data)\r
        {\r
-               flash_producer_ = flash_producer(env::template_host());\r
-               flash_producer_->set_parent_printer(parent_printer_);\r
-               flash_producer_->initialize(safe_ptr<core::frame_factory>(frame_factory_));\r
-       }\r
+               if(filename.size() > 0 && filename[0] == L'/')\r
+                       filename = filename.substr(1, filename.size()-1);\r
 \r
-       void add(int layer, const std::wstring& filename,  bool play_on_load, const std::wstring& label, const std::wstring& data)\r
-       {\r
-               CASPAR_LOG(info) << print() << " Invoking add-command";\r
-               flash_producer_->param((boost::wformat(L"<invoke name=\"Add\" returntype=\"xml\"><arguments><number>%1%</number><string>%2%</string>%3%<string>%4%</string><string><![CDATA[%5%]]></string></arguments></invoke>") % layer % filename % (play_on_load?TEXT("<true/>"):TEXT("<false/>")) % label % data).str());\r
+               auto str = (boost::wformat(L"<invoke name=\"Add\" returntype=\"xml\"><arguments><number>%1%</number><string>%2%</string>%3%<string>%4%</string><string><![CDATA[%5%]]></string></arguments></invoke>") % layer % filename % (play_on_load?TEXT("<true/>"):TEXT("<false/>")) % label % data).str();\r
+\r
+               CASPAR_LOG(info) << flash_producer_->print() << " Invoking add-command:" << str;\r
+               flash_producer_->param(str);\r
        }\r
 \r
        void remove(int layer)\r
        {\r
-               CASPAR_LOG(info) << print() << " Invoking remove-command";\r
-               flash_producer_->param((boost::wformat(L"<invoke name=\"Delete\" returntype=\"xml\"><arguments><array><property id=\"0\"><number>%1%</number></property></array></arguments></invoke>") % layer).str());\r
+               auto str = (boost::wformat(L"<invoke name=\"Delete\" returntype=\"xml\"><arguments><array><property id=\"0\"><number>%1%</number></property></array></arguments></invoke>") % layer).str();\r
+               CASPAR_LOG(info) << flash_producer_->print() << " Invoking remove-command:" << str;\r
+               flash_producer_->param(str);\r
        }\r
 \r
        void play(int layer)\r
        {\r
-               CASPAR_LOG(info) << print() << " Invoking play-command";\r
-               flash_producer_->param((boost::wformat(L"<invoke name=\"Play\" returntype=\"xml\"><arguments><array><property id=\"0\"><number>%1%</number></property></array></arguments></invoke>") % layer).str());\r
+               auto str = (boost::wformat(L"<invoke name=\"Play\" returntype=\"xml\"><arguments><array><property id=\"0\"><number>%1%</number></property></array></arguments></invoke>") % layer).str();\r
+               CASPAR_LOG(info) << flash_producer_->print() << " Invoking play-command: " << str;\r
+               flash_producer_->param(str);\r
        }\r
 \r
        void stop(int layer, unsigned int)\r
        {\r
-               CASPAR_LOG(info) << print() << " Invoking stop-command";\r
-               flash_producer_->param((boost::wformat(L"<invoke name=\"Stop\" returntype=\"xml\"><arguments><array><property id=\"0\"><number>%1%</number></property></array><number>0</number></arguments></invoke>") % layer).str());\r
+               auto str = (boost::wformat(L"<invoke name=\"Stop\" returntype=\"xml\"><arguments><array><property id=\"0\"><number>%1%</number></property></array><number>0</number></arguments></invoke>") % layer).str();\r
+               CASPAR_LOG(info) << flash_producer_->print() << " Invoking stop-command:" << str;\r
+               flash_producer_->param(str);\r
        }\r
 \r
        void next(int layer)\r
        {\r
-               CASPAR_LOG(info) << print() << " Invoking next-command";\r
-               flash_producer_->param((boost::wformat(L"<invoke name=\"Next\" returntype=\"xml\"><arguments><array><property id=\"0\"><number>%1%</number></property></array></arguments></invoke>") % layer).str());\r
+               auto str = (boost::wformat(L"<invoke name=\"Next\" returntype=\"xml\"><arguments><array><property id=\"0\"><number>%1%</number></property></array></arguments></invoke>") % layer).str();\r
+               CASPAR_LOG(info) << flash_producer_->print() << " Invoking next-command:" << str;\r
+               flash_producer_->param(str);\r
        }\r
 \r
        void update(int layer, const std::wstring& data)\r
        {\r
-               CASPAR_LOG(info) << print() <<" Invoking update-command";\r
-               flash_producer_->param((boost::wformat(L"<invoke name=\"SetData\" returntype=\"xml\"><arguments><array><property id=\"0\"><number>%1%</number></property></array><string><![CDATA[%2%]]></string></arguments></invoke>") % layer % data).str());\r
+               auto str = (boost::wformat(L"<invoke name=\"SetData\" returntype=\"xml\"><arguments><array><property id=\"0\"><number>%1%</number></property></array><string><![CDATA[%2%]]></string></arguments></invoke>") % layer % data).str();\r
+               CASPAR_LOG(info) << flash_producer_->print() <<" Invoking update-command:" << str;\r
+               flash_producer_->param(str);\r
        }\r
 \r
        void invoke(int layer, const std::wstring& label)\r
        {\r
-               CASPAR_LOG(info) << print() << " Invoking invoke-command";\r
-               flash_producer_->param((boost::wformat(L"<invoke name=\"Invoke\" returntype=\"xml\"><arguments><array><property id=\"0\"><number>%1%</number></property></array><string>%2%</string></arguments></invoke>") % layer % label).str());\r
+               auto str = (boost::wformat(L"<invoke name=\"Invoke\" returntype=\"xml\"><arguments><array><property id=\"0\"><number>%1%</number></property></array><string>%2%</string></arguments></invoke>") % layer % label).str();\r
+               CASPAR_LOG(info) << flash_producer_->print() << " Invoking invoke-command: " << str;\r
+               flash_producer_->param(str);\r
        }\r
 \r
-       safe_ptr<core::basic_frame> receive()\r
+       virtual safe_ptr<core::basic_frame> receive(int hints)\r
        {\r
-               return flash_producer_->receive();\r
-       }\r
-               \r
-       void initialize(const safe_ptr<core::frame_factory>& frame_factory)\r
-       {\r
-               frame_factory_ = frame_factory;\r
-               flash_producer_->set_parent_printer(parent_printer_);\r
-               flash_producer_->initialize(frame_factory);\r
+               return flash_producer_->receive(hints);\r
        }\r
 \r
-       void set_parent_printer(const printer& parent_printer) \r
+       virtual safe_ptr<core::basic_frame> last_frame() const\r
        {\r
-               parent_printer_ = parent_printer;\r
-       }\r
-\r
+               return flash_producer_->last_frame();\r
+       }                       \r
+                       \r
        std::wstring print() const\r
        {\r
                return flash_producer_->print();\r
        }\r
 };\r
        \r
-safe_ptr<cg_producer> get_default_cg_producer(const safe_ptr<core::channel>& channel, int render_layer)\r
+safe_ptr<cg_producer> get_default_cg_producer(const safe_ptr<core::video_channel>& video_channel, int render_layer)\r
 {      \r
-       try\r
-       {\r
-               return dynamic_pointer_cast<cg_producer>(channel->producer().foreground(render_layer).get());\r
-       }\r
-       catch(std::bad_cast&)\r
+       auto flash_producer = video_channel->stage()->foreground(render_layer);\r
+\r
+       if(flash_producer->print().find(L"flash[") == std::string::npos) // UGLY hack\r
        {\r
-               auto producer = make_safe<cg_producer>();               \r
-               channel->producer().load(render_layer, producer, true); \r
-               return producer;\r
+               flash_producer = flash::create_producer(video_channel->mixer(), boost::assign::list_of<std::wstring>());        \r
+               video_channel->stage()->load(render_layer, flash_producer); \r
+               video_channel->stage()->play(render_layer);\r
        }\r
+\r
+       return make_safe<cg_producer>(flash_producer);\r
 }\r
 \r
-safe_ptr<core::frame_producer> create_ct_producer(const std::vector<std::wstring>& params) \r
+safe_ptr<core::frame_producer> create_ct_producer(const safe_ptr<core::frame_factory> frame_factory, const std::vector<std::wstring>& params) \r
 {\r
        std::wstring filename = env::media_folder() + L"\\" + params[0] + L".ct";\r
        if(!boost::filesystem::exists(filename))\r
                return core::frame_producer::empty();\r
-\r
-       auto producer = make_safe<cg_producer>();\r
+       \r
+       auto flash_producer = flash::create_producer(frame_factory, boost::assign::list_of<std::wstring>());    \r
+       auto producer = make_safe<cg_producer>(flash_producer);\r
        producer->add(0, filename, 1);\r
 \r
        return producer;\r
 }\r
 \r
-cg_producer::cg_producer() : impl_(new implementation()){}\r
+cg_producer::cg_producer(const safe_ptr<core::frame_producer>& frame_producer) : impl_(new implementation(frame_producer)){}\r
 cg_producer::cg_producer(cg_producer&& other) : impl_(std::move(other.impl_)){}\r
-safe_ptr<core::basic_frame> cg_producer::receive(){return impl_->receive();}\r
-void cg_producer::clear(){impl_->clear();}\r
+safe_ptr<core::basic_frame> cg_producer::receive(int hints){return impl_->receive(hints);}\r
+safe_ptr<core::basic_frame> cg_producer::last_frame() const{return impl_->last_frame();}\r
 void cg_producer::add(int layer, const std::wstring& template_name,  bool play_on_load, const std::wstring& startFromLabel, const std::wstring& data){impl_->add(layer, template_name, play_on_load, startFromLabel, data);}\r
 void cg_producer::remove(int layer){impl_->remove(layer);}\r
 void cg_producer::play(int layer){impl_->play(layer);}\r
@@ -132,8 +147,6 @@ void cg_producer::stop(int layer, unsigned int mix_out_duration){impl_->stop(lay
 void cg_producer::next(int layer){impl_->next(layer);}\r
 void cg_producer::update(int layer, const std::wstring& data){impl_->update(layer, data);}\r
 void cg_producer::invoke(int layer, const std::wstring& label){impl_->invoke(layer, label);}\r
-void cg_producer::initialize(const safe_ptr<core::frame_factory>& frame_factory){impl_->initialize(frame_factory);}\r
-void cg_producer::set_parent_printer(const printer& parent_printer) { impl_->set_parent_printer(parent_printer);}\r
 std::wstring cg_producer::print() const{return impl_->print();}\r
 \r
-}
\ No newline at end of file
+}}
\ No newline at end of file