]> git.sesse.net Git - casparcg/blob - core/producer/layer.h
eb840782ca9206d322a4675c30ac9e984dde101b
[casparcg] / core / producer / layer.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: Robert Nagy, ronag89@gmail.com
20 */
21
22 #pragma once
23
24 #include "frame_producer.h"
25
26 #include "../monitor/monitor.h"
27 #include "../interaction/interaction_sink.h"
28
29 #include <common/forward.h>
30 #include <common/future_fwd.h>
31 #include <common/memory.h>
32
33 #include <boost/property_tree/ptree_fwd.hpp>
34
35 #include <string>
36
37 FORWARD1(boost, template<typename T> class optional);
38
39 namespace caspar { namespace core {
40         
41 class layer /*final*/ : public interaction_sink
42 {
43         layer(const layer&);
44         layer& operator=(const layer&);
45 public:
46         // Static Members
47
48         // Constructors
49
50         explicit layer(int index = -1); 
51         layer(layer&& other); 
52
53         // Methods
54
55         layer& operator=(layer&& other); 
56
57         void swap(layer& other);  
58                 
59         void load(spl::shared_ptr<class frame_producer> producer, bool preview, const boost::optional<int32_t>& auto_play_delta = nullptr); 
60         void play(); 
61         void pause(); 
62         void stop(); 
63         
64         class draw_frame receive(const struct video_format_desc& format_desc); 
65         
66         // monitor::observable
67
68         monitor::source& monitor_output();
69
70         // interaction_sink
71
72         void on_interaction(const interaction_event::ptr& event) override;
73         bool collides(double x, double y) const override;
74
75         // Properties
76                 
77         spl::shared_ptr<class frame_producer>   foreground() const; 
78         spl::shared_ptr<class frame_producer>   background() const; 
79
80         boost::property_tree::wptree                    info() const;
81
82 private:
83         struct impl;
84         spl::shared_ptr<impl> impl_;
85 };
86
87 }}