]> git.vomp.tv Git - vompclient.git/blob - osd.cc
Initial import
[vompclient.git] / osd.cc
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP 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 2 of the License, or
9     (at your option) any later version.
10
11     VOMP 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 VOMP; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #include "osd.h"
22
23 Osd* Osd::instance = NULL;
24
25 Osd::Osd()
26 {
27   if (instance) return;
28   instance = this;
29   initted = 0;
30
31   fdOsd = 0;
32   screen = NULL;
33   buffer = NULL;
34 }
35
36 Osd::~Osd()
37 {
38   if (initted) shutdown();
39   instance = NULL;
40 }
41
42 Osd* Osd::getInstance()
43 {
44   return instance;
45 }
46
47 int Osd::getFD()
48 {
49   if (!initted) return 0;
50   return fdOsd;
51 }
52
53 int Osd::getScreenHeight()
54 {
55   return height;
56 }
57
58 int Osd::getScreenWidth()
59 {
60   return width;
61 }
62
63 int Osd::init(char* device, int height, int width, int doubleBuffering)
64 {
65   if (initted) return 0;
66
67   fdOsd = open(device, O_RDWR);
68   if (!fdOsd)
69   {
70     Log::getInstance()->log("OSD", Log::DEBUG, "Could not open OSD device!");
71     return 0;
72   }
73
74   initted = 1; // must set this here or create surface won't work
75
76   this->height = height;
77   this->width = width;
78
79   Surface::initConversionTables();
80
81   screen = new Surface(fdOsd, Surface::SCREEN);
82   screen->create(height, width);
83   screen->display();
84
85   if (doubleBuffering)
86   {
87     buffer = new Surface(fdOsd, Surface::BUFFER);
88     buffer->create(height, width);
89   }
90   else
91   {
92     Surface::disableBuffer();
93   }
94
95   return 1;
96 }
97
98 int Osd::shutdown()
99 {
100   if (!initted) return 0;
101   initted = 0;
102   if (buffer) delete buffer;
103   delete screen;
104   close(fdOsd);
105   return 1;
106 }
107
108 void Osd::screenShot(char* fileName)
109 {
110   screen->screenShot(fileName);
111 }