]> git.sesse.net Git - casparcg/blob - core/producer/scene/scene_producer.h
More binding functionality
[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 "../frame_producer.h"
25
26 #include "../binding.h"
27
28 namespace caspar { namespace core { namespace scene {
29
30 struct coord
31 {
32         binding<double> x;
33         binding<double> y;
34 };
35
36 struct adjustments
37 {
38         binding<double> opacity;
39
40         adjustments();
41 };
42
43 struct layer
44 {
45         binding<std::wstring> name;
46         coord position;
47         adjustments adjustments;
48         binding<spl::shared_ptr<frame_producer>> producer;
49         binding<bool> hidden;
50         binding<bool> is_key;
51
52         layer(const spl::shared_ptr<frame_producer>& producer);
53 };
54
55 class scene_producer : public frame_producer_base
56 {
57 public:
58         scene_producer(int width, int height);
59         ~scene_producer();
60
61         class draw_frame receive_impl() override;
62         constraints& pixel_constraints() override;
63         void on_interaction(const interaction_event::ptr& event) override;
64         bool collides(double x, double y) const override;
65         std::wstring print() const override;
66         std::wstring name() const override;
67         boost::property_tree::wptree info() const override;
68         void subscribe(const monitor::observable::observer_ptr& o) override;
69         void unsubscribe(const monitor::observable::observer_ptr& o) override;
70         layer& create_layer(
71                         const spl::shared_ptr<frame_producer>& producer, int x, int y);
72         layer& create_layer(const spl::shared_ptr<frame_producer>& producer);
73         binding<int64_t> frame();
74 private:
75         struct impl;
76         std::unique_ptr<impl> impl_;
77 };
78
79 spl::shared_ptr<frame_producer> create_dummy_scene_producer(const spl::shared_ptr<class frame_factory>& frame_factory, const video_format_desc& format_desc, const std::vector<std::wstring>& params);
80
81 }}}