]> git.vomp.tv Git - vompclient.git/blob - osd.cc
New gui code
[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::init(char* device, int doubleBuffering)
54 {
55   if (initted) return 0;
56
57   fdOsd = open(device, O_RDWR);
58   if (!fdOsd)
59   {
60     Log::getInstance()->log("OSD", Log::DEBUG, "Could not open OSD device!");
61     return 0;
62   }
63
64   initted = 1; // must set this here or create surface won't work
65
66   Surface::initConversionTables();
67
68   Video* video = Video::getInstance();
69
70   screen = new Surface(Surface::SCREEN);
71   screen->create(video->getScreenWidth(), video->getScreenHeight());
72   screen->display();
73
74   if (doubleBuffering)
75   {
76     buffer = new Surface(Surface::BUFFER);
77     buffer->create(video->getScreenWidth(), video->getScreenHeight());
78   }
79   else
80   {
81     Surface::disableBuffer();
82   }
83
84   return 1;
85 }
86
87 int Osd::shutdown()
88 {
89   if (!initted) return 0;
90   initted = 0;
91   if (buffer) delete buffer;
92   delete screen;
93   close(fdOsd);
94   return 1;
95 }
96
97 void Osd::screenShot(char* fileName)
98 {
99   screen->screenShot(fileName);
100 }