]> git.vomp.tv Git - vompclient.git/blob - osd.cc
NTSC support, needs testing
[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::getScreenSize()
64 {
65   return screenSize;
66 }
67
68 int Osd::init(char* device, int height, int width, UCHAR tscreenSize, int doubleBuffering)
69 {
70   if (initted) return 0;
71
72   fdOsd = open(device, O_RDWR);
73   if (!fdOsd)
74   {
75     Log::getInstance()->log("OSD", Log::DEBUG, "Could not open OSD device!");
76     return 0;
77   }
78
79   initted = 1; // must set this here or create surface won't work
80
81   this->height = height;
82   this->width = width;
83   screenSize = tscreenSize;
84
85   Surface::initConversionTables();
86
87   screen = new Surface(fdOsd, Surface::SCREEN);
88   screen->create(height, width);
89   screen->display();
90
91   if (doubleBuffering)
92   {
93     buffer = new Surface(fdOsd, Surface::BUFFER);
94     buffer->create(height, width);
95   }
96   else
97   {
98     Surface::disableBuffer();
99   }
100
101   return 1;
102 }
103
104 int Osd::shutdown()
105 {
106   if (!initted) return 0;
107   initted = 0;
108   if (buffer) delete buffer;
109   delete screen;
110   close(fdOsd);
111   return 1;
112 }
113
114 void Osd::screenShot(char* fileName)
115 {
116   screen->screenShot(fileName);
117 }