]> git.vomp.tv Git - vompclient.git/blob - vlivebanner.cc
Update for windows
[vompclient.git] / vlivebanner.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 "vlivebanner.h"
22
23 VLiveBanner* VLiveBanner::instance = NULL;
24
25 VLiveBanner::VLiveBanner(VVideoLive* tvvideoLive, Channel* channel, bool bannerTakesCommands)
26 {
27   instance = this;
28   eventList = NULL;
29   vvideoLive = tvvideoLive;
30   takeCommands = bannerTakesCommands;
31
32   clockRegion.x = 440;
33   clockRegion.y = 0;
34   clockRegion.w = 60;
35   clockRegion.h = 30;
36
37   create(500, 120);
38   if (Video::getInstance()->getFormat() == Video::PAL)
39   {
40     setScreenPos(124, 410);
41   }
42   else
43   {
44     setScreenPos(114, 320);
45   }
46
47
48   setBackgroundColour(Colour::VIEWBACKGROUND);
49   setTitleBarOn(1);
50   setTitleBarColour(Colour::TITLEBARBACKGROUND);
51
52   sl.setSurface(surface);
53   sl.setSurfaceOffset(0, 30);
54   sl.setDimensions(area.w, area.h - 60);
55   sl.setNoLoop();
56
57   setChannel(channel);
58 }
59
60 VLiveBanner::~VLiveBanner()
61 {
62   instance = NULL;
63   Timers::getInstance()->cancelTimer(this, 1);
64   Timers::getInstance()->cancelTimer(this, 2);
65   delData();
66 }
67
68 VLiveBanner* VLiveBanner::getInstance()
69 {
70   return instance;
71 }
72
73 void VLiveBanner::delData()
74 {
75   if (eventList)
76   {
77     int eventListSize = eventList->size();
78     for(int i = 0; i < eventListSize; i++)
79     {
80       delete (*eventList)[i];
81     }
82     eventList->clear();
83     delete eventList;
84
85   }
86   sl.clear();
87 }
88
89 void VLiveBanner::setChannel(Channel* tChannel)
90 {
91   delData();
92   currentChannel = tChannel;
93   // get the data
94
95   char ttitleText[100];
96   SNPRINTF(ttitleText, 99, "%03lu - %s", currentChannel->number, currentChannel->name);
97
98   setTitleText(ttitleText);
99   eventList = VDR::getInstance()->getChannelSchedule(currentChannel->number);
100
101   if (!eventList)
102   {
103     sl.addOption(tr("No channel data available"), 0, 1);
104   }
105   else
106   {
107     sort(eventList->begin(), eventList->end(), EventSorter());
108
109     char tempString[300];
110     char tempString2[300];
111     struct tm* btime;
112     Event* event;
113     int first = 1;
114     int eventListSize = eventList->size();
115     for(int i = 0; i < eventListSize; i++)
116     {
117       event = (*eventList)[i];
118
119       btime = localtime((time_t*)&event->time);
120 #ifndef _MSC_VER
121       strftime(tempString2, 299, "%0H:%0M ", btime);
122 #else
123     strftime(tempString2, 299, "%H:%M ", btime);
124 #endif
125       SNPRINTF(tempString, 299, "%s %s", tempString2, event->title);
126       sl.addOption(tempString, (ULONG)event, first);
127       first = 0;
128     }
129   }
130
131   // Reset the timer as it probably took 1-2 seconds to change the channel
132   Timers::getInstance()->setTimerD(this, 1, 4);
133 }
134
135 void VLiveBanner::draw()
136 {
137   View::draw();
138   sl.draw();
139   rectangle(0, area.h - 30, area.w, 30, titleBarColour);
140
141   rectangle(7, area.h - 24, 18, 16, Colour::RED);
142   drawText(tr("EPG"), 32, area.h - 25, Colour::LIGHTTEXT);
143
144   rectangle(110, area.h - 24, 18, 16, Colour::GREEN);
145   drawText(tr("info"), 135, area.h - 25, Colour::LIGHTTEXT);
146
147   drawClock();
148 }
149
150 int VLiveBanner::handleCommand(int command)
151 {
152   switch (command)
153   {
154     case Remote::OK:
155     case Remote::BACK:
156     {
157       Timers::getInstance()->cancelTimer(this, 1); // if it exists
158       return 4;
159     }
160     case Remote::DF_UP:
161     {
162       if (!takeCommands) return 0; // banner was auto, old remote
163     } // else drop through
164     case Remote::UP:
165     {
166       sl.up();
167       sl.draw();
168
169       ViewMan::getInstance()->updateView(this);
170
171       // Arrows pressed, go to an 8s timer
172       Timers::getInstance()->setTimerD(this, 1, 8);
173
174       return 2;
175     }
176     case Remote::DF_DOWN:
177     {
178       if (!takeCommands) return 0; // banner was auto, old remote
179     } // else drop through
180     case Remote::DOWN:
181     {
182       sl.down();
183       sl.draw();
184
185       ViewMan::getInstance()->updateView(this);
186
187       // Arrows pressed, go to an 8s timer
188       Timers::getInstance()->setTimerD(this, 1, 8);
189
190       return 2;
191     }
192     case Remote::CHANNELUP:
193     {
194       // cancel timer so this view is still here later
195       Timers::getInstance()->cancelTimer(this, 1); // if it exists
196       vvideoLive->channelChange(VVideoLive::OFFSET, VVideoLive::UP);
197       return 2;
198     }
199     case Remote::CHANNELDOWN:
200     {
201       // cancel timer so this view is still here later
202       Timers::getInstance()->cancelTimer(this, 1); // if it exists
203       vvideoLive->channelChange(VVideoLive::OFFSET, VVideoLive::DOWN);
204       return 2;
205     }
206     case Remote::GREEN:
207     case Remote::MENU:
208     {
209       if (!eventList) return 2;
210       Event* event = (Event*)sl.getCurrentOptionData();
211       Log::getInstance()->log("VLiveBanner", Log::DEBUG, "Found the option you pointed at. %s", event->title);
212       // First, cancel my delete timer
213       Timers::getInstance()->cancelTimer(this, 1); // if it exists
214
215       VInfo* vi = new VInfo();
216       vi->setTitleText(event->title);
217       vi->setBorderOn(1);
218       vi->setExitable();
219       if (event->description) vi->setMainText(event->description);
220       else vi->setMainText(tr("Summary unavailable"));
221       if (Video::getInstance()->getFormat() == Video::PAL)
222       {
223         vi->setScreenPos(120, 130);
224       }
225       else
226       {
227         vi->setScreenPos(110, 90);
228       }
229       vi->create(510, 270);
230       vi->draw();
231
232       ViewMan::getInstance()->add(vi);
233       ViewMan::getInstance()->updateView(vi);
234
235       return 2;
236     }
237     case Remote::GUIDE:
238     case Remote::RED:
239     {
240       // full epg
241       Timers::getInstance()->cancelTimer(this, 1); // if it exists
242       Message* m = new Message(); // Must be done after this view deleted
243       m->message = Message::EPG;
244       m->to = vvideoLive;
245       m->from = this;
246       Command::getInstance()->postMessageNoLock(m);
247       return 4;
248     }
249   }
250
251   return 1;
252 }
253
254 void VLiveBanner::timercall(int clientReference)
255 {
256   if (clientReference == 1)
257   {
258     // delete me!
259     Message* m = new Message();  // Delete self
260     m->message = Message::CLOSE_ME;
261     m->to = ViewMan::getInstance();
262     m->from = this;
263     Command::getInstance()->postMessageNoLock(m);
264   }
265   else if (clientReference == 2)
266   {
267     // redraw clock
268     drawClock();
269     ViewMan::getInstance()->updateView(this, &clockRegion);
270   }
271 }
272
273 void VLiveBanner::drawClock()
274 {
275   // Blank the area first
276   rectangle(area.w - 60, 0, 60, 30, titleBarColour);
277
278   char timeString[20];
279   time_t t;
280   time(&t);
281   struct tm* tms = localtime(&t);
282   strftime(timeString, 19, "%H:%M", tms);
283   drawTextRJ(timeString, 490, 5, Colour::LIGHTTEXT);
284
285   time_t dt = 60 - (t % 60);  // seconds to the next minute
286   if (dt == 0) dt = 60; // advance a whole minute if necessary
287   dt += t;  // get a time_t value for it rather than using duration
288   // (so it will occur at the actual second and not second and a half)
289
290   Timers::getInstance()->setTimerT(this, 2, dt);
291 }