]> git.sesse.net Git - casparcg/blob - core/producer/scene/scene_producer.h
* added geometry to frames for custom rendering
[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         explicit layer(const spl::shared_ptr<frame_producer>& producer);
53         layer(const std::wstring& name, const spl::shared_ptr<frame_producer>& producer);
54 };
55
56 class scene_producer : public frame_producer_base
57 {
58 public:
59         scene_producer(int width, int height);
60         ~scene_producer();
61
62         class draw_frame receive_impl() override;
63         constraints& pixel_constraints() override;
64         void on_interaction(const interaction_event::ptr& event) override;
65         bool collides(double x, double y) const override;
66         std::wstring print() const override;
67         std::wstring name() const override;
68         boost::unique_future<std::wstring>      call(const std::wstring& params) override;
69         boost::property_tree::wptree info() const override;
70         void subscribe(const monitor::observable::observer_ptr& o) override;
71         void unsubscribe(const monitor::observable::observer_ptr& o) override;
72         layer& create_layer(
73                         const spl::shared_ptr<frame_producer>& producer, int x, int y);
74         layer& create_layer(
75                         const spl::shared_ptr<frame_producer>& producer, int x, int y, const std::wstring& name);
76         layer& create_layer(const spl::shared_ptr<frame_producer>& producer);
77         binding<int64_t> frame();
78 private:
79         struct impl;
80         std::unique_ptr<impl> impl_;
81 };
82
83 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);
84
85 }}}