]> git.sesse.net Git - casparcg/blob - core/producer/scene/scene_producer.h
* Merged MIXER MIPMAP support from 2.0. Implemented as a setting in frame_transform...
[casparcg] / core / producer / scene / scene_producer.h
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Helge Norberg, helge.norberg@svt.se
20 */
21
22 #pragma once
23
24 #include <common/log.h>
25
26 #include "../frame_producer.h"
27
28 #include "../binding.h"
29 #include "../variable.h"
30
31 namespace caspar { namespace core {
32
33 class frame_factory;
34
35 namespace scene {
36
37 struct coord
38 {
39         binding<double> x;
40         binding<double> y;
41 };
42
43 struct rect
44 {
45         coord upper_left;
46         coord lower_right;
47 };
48
49 struct corners
50 {
51         coord upper_left;
52         coord upper_right;
53         coord lower_right;
54         coord lower_left;
55 };
56
57 struct adjustments
58 {
59         binding<double> opacity;
60
61         adjustments();
62 };
63
64 struct layer
65 {
66         binding<std::wstring>                                           name;
67         scene::coord                                                            anchor;
68         scene::coord                                                            position;
69         scene::rect                                                                     crop;
70         scene::corners                                                          perspective;
71         binding<double>                                                         rotation;
72         scene::adjustments                                                      adjustments;
73         binding<spl::shared_ptr<frame_producer>>        producer;
74         binding<bool>                                                           hidden;
75         binding<bool>                                                           is_key;
76         binding<bool>                                                           use_mipmap;
77
78         explicit layer(const std::wstring& name, const spl::shared_ptr<frame_producer>& producer);
79 };
80
81 struct keyframe
82 {
83         std::function<void ()>                                                                                          on_start_animate;
84         std::function<void (int64_t start_frame, int64_t current_frame)>        on_animate_to;
85         std::function<void ()>                                                                                          on_destination_frame;
86         int64_t                                                                                                                         destination_frame;
87 public:
88         keyframe(int64_t destination_frame)
89                 : destination_frame(destination_frame)
90         {
91         }
92 };
93
94 class scene_producer : public frame_producer_base
95 {
96 public:
97         scene_producer(int width, int height);
98         ~scene_producer();
99
100         class draw_frame receive_impl() override;
101         constraints& pixel_constraints() override;
102         void on_interaction(const interaction_event::ptr& event) override;
103         bool collides(double x, double y) const override;
104         std::wstring print() const override;
105         std::wstring name() const override;
106         std::future<std::wstring>       call(const std::vector<std::wstring>& params) override;
107         boost::property_tree::wptree info() const override;
108         monitor::subject& monitor_output();
109
110         layer& create_layer(
111                         const spl::shared_ptr<frame_producer>& producer, int x, int y, const std::wstring& name);
112         layer& create_layer(
113                         const spl::shared_ptr<frame_producer>& producer, const std::wstring& name);
114         binding<int64_t> frame();
115         binding<double> speed();
116
117         template<typename T> binding<T>& create_variable(
118                         const std::wstring& name, bool is_public, const std::wstring& expr = L"")
119         {
120                 std::shared_ptr<core::variable> var =
121                                 std::make_shared<core::variable_impl<T>>(expr, is_public);
122
123                 store_variable(name, var);
124
125                 return var->as<T>();
126         }
127
128         template<typename T>
129         void add_keyframe(
130                         binding<T>& to_affect,
131                         T destination_value,
132                         int64_t at_frame,
133                         const std::wstring& easing)
134         {
135                 add_keyframe(to_affect, binding<T>(destination_value), at_frame, easing);
136         }
137
138         template<typename T>
139         void add_keyframe(
140                         binding<T>& to_affect,
141                         const binding<T>& destination_value,
142                         int64_t at_frame,
143                         const std::wstring& easing)
144         {
145                 if (easing.empty())
146                 {
147                         add_keyframe(to_affect, destination_value, at_frame);
148                         return;
149                 }
150
151                 tweener tween(easing);
152                 keyframe k(at_frame);
153
154                 std::shared_ptr<T> start_value(new T);
155
156                 k.on_start_animate = [=]() mutable
157                 {
158                         *start_value = to_affect.get();
159                         to_affect.unbind();
160                 };
161
162                 k.on_destination_frame = [=]() mutable
163                 {
164                         to_affect.bind(destination_value);
165                 };
166
167                 k.on_animate_to =
168                                 [=](int64_t start_frame, int64_t current_frame) mutable
169                                 {
170                                         auto relative_frame = current_frame - start_frame;
171                                         auto duration = at_frame - start_frame;
172                                         auto tweened = static_cast<T>(tween(
173                                                         static_cast<double>(relative_frame),
174                                                         *start_value,
175                                                         destination_value.get() - *start_value,
176                                                         static_cast<double>(duration)));
177
178                                         to_affect.set(tweened);
179                                         
180                                         //CASPAR_LOG(info) << relative_frame << L" " << *start_value << L" " << duration << L" " << tweened;
181                                 };
182
183                 store_keyframe(to_affect.identity(), k);
184         }
185
186         template<typename T>
187         void add_keyframe(binding<T>& to_affect, T set_value, int64_t at_frame)
188         {
189                 add_keyframe(to_affect, binding<T>(set_value), at_frame);
190         }
191
192         template<typename T>
193         void add_keyframe(binding<T>& to_affect, const binding<T>& set_value, int64_t at_frame)
194         {
195                 keyframe k(at_frame);
196
197                 k.on_destination_frame = [=]() mutable
198                 {
199                         to_affect.bind(set_value);
200                 };
201
202                 store_keyframe(to_affect.identity(), k);
203         }
204
205         core::variable& get_variable(const std::wstring& name) override;
206         const std::vector<std::wstring>& get_variables() const override;
207 private:
208         void store_keyframe(void* timeline_identity, const keyframe& k);
209         void store_variable(
210                         const std::wstring& name, const std::shared_ptr<core::variable>& var);
211
212         struct impl;
213         std::unique_ptr<impl> impl_;
214 };
215
216 spl::shared_ptr<frame_producer> create_dummy_scene_producer(const spl::shared_ptr<frame_factory>& frame_factory, const video_format_desc& format_desc, const std::vector<std::wstring>& params);
217
218 }}}