]> git.sesse.net Git - casparcg/blob - core/producer/scene/scene_producer.h
const_producer for psd producer
[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
41 struct layer
42 {
43         binding<std::wstring> name;
44         coord position;
45         adjustments adjustments;
46         binding<spl::shared_ptr<frame_producer>> producer;
47         binding<bool> hidden;
48
49         layer(const spl::shared_ptr<frame_producer>& producer);
50 };
51
52 class scene_producer : public frame_producer_base
53 {
54 public:
55         scene_producer(int width, int height);
56         ~scene_producer();
57
58         class draw_frame receive_impl() override;
59         constraints& pixel_constraints() override;
60         void on_interaction(const interaction_event::ptr& event) override;
61         bool collides(double x, double y) const override;
62         std::wstring print() const override;
63         std::wstring name() const override;
64         boost::property_tree::wptree info() const override;
65         void subscribe(const monitor::observable::observer_ptr& o) override;
66         void unsubscribe(const monitor::observable::observer_ptr& o) override;
67         layer& create_layer(
68                         const spl::shared_ptr<frame_producer>& producer, int x, int y);
69 private:
70         struct impl;
71         std::unique_ptr<impl> impl_;
72 };
73
74 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);
75
76 }}}