]> git.sesse.net Git - casparcg/blob - core/producer/transition/transition_producer.cpp
2.1.0: Don't use virtual for override functions.
[casparcg] / core / producer / transition / transition_producer.cpp
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 #include "../../stdafx.h"\r
23 \r
24 #include "transition_producer.h"\r
25 \r
26 #include "../frame_producer.h"\r
27 #include "../../frame/draw_frame.h"\r
28 #include "../../frame/frame_transform.h"\r
29 #include "../../monitor/monitor.h"\r
30 \r
31 #include <tbb/parallel_invoke.h>\r
32 \r
33 namespace caspar { namespace core {     \r
34 \r
35 class transition_producer : public frame_producer\r
36 {       \r
37         monitor::basic_subject                          event_subject_;\r
38         const field_mode                                        mode_;\r
39         int                                                                     current_frame_;\r
40         \r
41         const transition_info                           info_;\r
42 \r
43         draw_frame                                                      last_frame_;\r
44         \r
45         spl::shared_ptr<frame_producer>         dest_producer_;\r
46         spl::shared_ptr<frame_producer>         source_producer_;\r
47                 \r
48 public:\r
49 \r
50         explicit transition_producer(const field_mode& mode, const spl::shared_ptr<frame_producer>& dest, const transition_info& info) \r
51                 : mode_(mode)\r
52                 , current_frame_(0)\r
53                 , info_(info)\r
54                 , last_frame_(draw_frame::empty())\r
55                 , dest_producer_(dest)\r
56                 , source_producer_(frame_producer::empty())\r
57         {\r
58                 dest->subscribe(event_subject_);\r
59 \r
60                 CASPAR_LOG(info) << print() << L" Initialized";\r
61         }\r
62         \r
63         // frame_producer\r
64                 \r
65         void leading_producer(const spl::shared_ptr<frame_producer>& producer) override\r
66         {\r
67                 source_producer_ = create_destroy_proxy(producer);\r
68         }\r
69 \r
70         draw_frame receive(int flags) override\r
71         {\r
72                 if(current_frame_ >= info_.duration)\r
73                 {\r
74                         source_producer_ = core::frame_producer::empty();\r
75                         return dest_producer_->receive(flags);\r
76                 }\r
77 \r
78                 ++current_frame_;\r
79 \r
80                 auto dest = draw_frame::empty();\r
81                 auto source = draw_frame::empty();\r
82 \r
83                 tbb::parallel_invoke(\r
84                 [&]\r
85                 {\r
86                         dest = dest_producer_->receive(flags);\r
87                         if(dest == core::draw_frame::late())\r
88                                 dest = dest_producer_->last_frame();\r
89                 },\r
90                 [&]\r
91                 {\r
92                         source = source_producer_->receive(flags);\r
93                         if(source == core::draw_frame::late())\r
94                                 source = source_producer_->last_frame();\r
95                 });                             \r
96                 \r
97                 event_subject_  << monitor::event("transition/frame") % current_frame_ % info_.duration\r
98                                                 << monitor::event("transition/type") % [&]() -> std::string\r
99                                                                                                                                 {\r
100                                                                                                                                         switch(info_.type.value())\r
101                                                                                                                                         {\r
102                                                                                                                                         case transition_type::mix:              return "mix";\r
103                                                                                                                                         case transition_type::wipe:             return "wipe";\r
104                                                                                                                                         case transition_type::slide:    return "slide";\r
105                                                                                                                                         case transition_type::push:             return "push";\r
106                                                                                                                                         case transition_type::cut:              return "cut";\r
107                                                                                                                                         default:                                                return "n/a";\r
108                                                                                                                                         }\r
109                                                                                                                                 }();\r
110 \r
111                 return compose(dest, source);\r
112         }\r
113 \r
114         draw_frame last_frame() const override\r
115         {\r
116                 return dest_producer_->last_frame();\r
117         }\r
118         \r
119         uint32_t nb_frames() const override\r
120         {\r
121                 return dest_producer_->nb_frames();\r
122         }\r
123 \r
124         std::wstring print() const override\r
125         {\r
126                 return L"transition[" + source_producer_->print() + L"=>" + dest_producer_->print() + L"]";\r
127         }\r
128 \r
129         std::wstring name() const override\r
130         {\r
131                 return L"transition";\r
132         }\r
133         \r
134         boost::property_tree::wptree info() const override\r
135         {\r
136                 return dest_producer_->info();\r
137         }\r
138         \r
139         boost::unique_future<std::wstring> call(const std::wstring& str) override\r
140         {\r
141                 return dest_producer_->call(str);\r
142         }\r
143 \r
144         // transition_producer\r
145                                                 \r
146         draw_frame compose(draw_frame dest_frame, draw_frame src_frame) \r
147         {       \r
148                 if(info_.type == transition_type::cut)          \r
149                         return src_frame;\r
150                                                                                 \r
151                 const double delta1 = info_.tweener(current_frame_*2-1, 0.0, 1.0, static_cast<double>(info_.duration*2));\r
152                 const double delta2 = info_.tweener(current_frame_*2,   0.0, 1.0, static_cast<double>(info_.duration*2));  \r
153 \r
154                 const double dir = info_.direction == transition_direction::from_left ? 1.0 : -1.0;             \r
155                 \r
156                 // For interlaced transitions. Seperate fields into seperate frames which are transitioned accordingly.\r
157                 \r
158                 src_frame.transform().audio_transform.volume = 1.0-delta2;\r
159                 auto s_frame1 = src_frame;\r
160                 auto s_frame2 = src_frame;\r
161                 \r
162                 dest_frame.transform().audio_transform.volume = delta2;\r
163                 auto d_frame1 = dest_frame;\r
164                 auto d_frame2 = dest_frame;\r
165                 \r
166                 if(info_.type == transition_type::mix)\r
167                 {\r
168                         d_frame1.transform().image_transform.opacity = delta1;  \r
169                         d_frame1.transform().image_transform.is_mix = true;\r
170                         d_frame2.transform().image_transform.opacity = delta2;\r
171                         d_frame2.transform().image_transform.is_mix = true;\r
172 \r
173                         s_frame1.transform().image_transform.opacity = 1.0-delta1;      \r
174                         s_frame1.transform().image_transform.is_mix = true;\r
175                         s_frame2.transform().image_transform.opacity = 1.0-delta2;      \r
176                         s_frame2.transform().image_transform.is_mix = true;\r
177                 }\r
178                 if(info_.type == transition_type::slide)\r
179                 {\r
180                         d_frame1.transform().image_transform.fill_translation[0] = (-1.0+delta1)*dir;   \r
181                         d_frame2.transform().image_transform.fill_translation[0] = (-1.0+delta2)*dir;           \r
182                 }\r
183                 else if(info_.type == transition_type::push)\r
184                 {\r
185                         d_frame1.transform().image_transform.fill_translation[0] = (-1.0+delta1)*dir;\r
186                         d_frame2.transform().image_transform.fill_translation[0] = (-1.0+delta2)*dir;\r
187 \r
188                         s_frame1.transform().image_transform.fill_translation[0] = (0.0+delta1)*dir;    \r
189                         s_frame2.transform().image_transform.fill_translation[0] = (0.0+delta2)*dir;            \r
190                 }\r
191                 else if(info_.type == transition_type::wipe)            \r
192                 {\r
193                         d_frame1.transform().image_transform.clip_scale[0] = delta1;    \r
194                         d_frame2.transform().image_transform.clip_scale[0] = delta2;                    \r
195                 }\r
196                                 \r
197                 const auto s_frame = s_frame1.transform() == s_frame2.transform() ? s_frame2 : draw_frame::interlace(s_frame1, s_frame2, mode_);\r
198                 const auto d_frame = d_frame1.transform() == d_frame2.transform() ? d_frame2 : draw_frame::interlace(d_frame1, d_frame2, mode_);\r
199                 \r
200                 return draw_frame::over(s_frame, d_frame);\r
201         }\r
202 \r
203         void subscribe(const monitor::observable::observer_ptr& o) override                                                                                                                     \r
204         {\r
205                 event_subject_.subscribe(o);\r
206         }\r
207 \r
208         void unsubscribe(const monitor::observable::observer_ptr& o) override           \r
209         {\r
210                 event_subject_.unsubscribe(o);\r
211         }\r
212 };\r
213 \r
214 spl::shared_ptr<frame_producer> create_transition_producer(const field_mode& mode, const spl::shared_ptr<frame_producer>& destination, const transition_info& info)\r
215 {\r
216         return spl::make_shared<transition_producer>(mode, destination, info);\r
217 }\r
218 \r
219 }}\r
220 \r