Move things round a bit.
[dcpomatic.git] / src / lib / player.h
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef DVDOMATIC_PLAYER_H
21 #define DVDOMATIC_PLAYER_H
22
23 #include <boost/shared_ptr.hpp>
24 #include <boost/thread.hpp>
25 #include <boost/thread/mutex.hpp>
26
27 class FilmState;
28 class Screen;
29
30 class Player
31 {
32 public:
33         enum Split {
34                 SPLIT_NONE,
35                 SPLIT_LEFT,
36                 SPLIT_RIGHT
37         };
38                 
39         Player (boost::shared_ptr<const FilmState>, boost::shared_ptr<const Screen>, Split);
40         ~Player ();
41
42         void command (std::string);
43
44         float position () const;
45         bool paused () const;
46         
47         pid_t mplayer_pid () const {
48                 return _mplayer_pid;
49         }
50
51 private:
52         void stdout_reader ();
53         void set_position (float);
54         void set_paused (bool);
55         
56         int _mplayer_stdin[2];
57         int _mplayer_stdout[2];
58         int _mplayer_stderr[2];
59         pid_t _mplayer_pid;
60
61         boost::thread* _stdout_reader;
62         /* XXX: should probably be atomically accessed */
63         bool _stdout_reader_should_run;
64
65         mutable boost::mutex _state_mutex;
66         float _position;
67         bool _paused;
68 };
69
70 #endif