]> git.sesse.net Git - casparcg/blob - core/producer/stage.h
f5ddc1101532a0318c559ceae835c28914f74815
[casparcg] / core / producer / stage.h
1 /*\r
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\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 * Author: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #pragma once\r
23 \r
24 #include "frame_producer.h"\r
25 \r
26 #include <common/no_copy.h>\r
27 #include <common/forward.h>\r
28 #include <common/memory/safe_ptr.h>\r
29 #include <common/concurrency/target.h>\r
30 \r
31 #include <boost/property_tree/ptree_fwd.hpp>\r
32 \r
33 #include <functional>\r
34 \r
35 FORWARD2(caspar, diagnostics, class graph);\r
36 FORWARD1(boost, template<typename> class unique_future);\r
37 \r
38 namespace caspar { namespace core {\r
39         \r
40 class stage sealed\r
41 {\r
42         CASPAR_NO_COPY(stage);\r
43 public: \r
44         typedef target<std::pair<std::map<int, safe_ptr<class basic_frame>>, std::shared_ptr<void>>> target_t;\r
45 \r
46         stage(const safe_ptr<target_t>& target, const safe_ptr<diagnostics::graph>& graph, const struct video_format_desc& format_desc);\r
47         \r
48         // stage\r
49         \r
50         void apply_transform(int index, const std::function<struct frame_transform(struct frame_transform)>& transform, unsigned int mix_duration = 0, const std::wstring& tween = L"linear");\r
51         void clear_transforms(int index);\r
52         void clear_transforms();\r
53 \r
54         void spawn_token();\r
55                         \r
56         void load(int index, const safe_ptr<struct frame_producer>& producer, bool preview = false, int auto_play_delta = -1);\r
57         void pause(int index);\r
58         void play(int index);\r
59         void stop(int index);\r
60         void clear(int index);\r
61         void clear();   \r
62         void swap_layers(const safe_ptr<stage>& other);\r
63         void swap_layer(int index, int other_index);\r
64         void swap_layer(int index, int other_index, const safe_ptr<stage>& other);\r
65         \r
66         boost::unique_future<std::wstring>                                              call(int index, bool foreground, const std::wstring& param);\r
67         boost::unique_future<safe_ptr<struct frame_producer>>   foreground(int index);\r
68         boost::unique_future<safe_ptr<struct frame_producer>>   background(int index);\r
69 \r
70         boost::unique_future<boost::property_tree::wptree> info() const;\r
71         boost::unique_future<boost::property_tree::wptree> info(int layer) const;\r
72         \r
73         void set_video_format_desc(const struct video_format_desc& format_desc);\r
74 \r
75 private:\r
76         struct impl;\r
77         safe_ptr<impl> impl_;\r
78 };\r
79 \r
80 }}