]> git.vomp.tv Git - vompclient.git/blob - vlivebanner.cc
Bug fix 2 for duplicating epg rows
[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"), 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       strftime(tempString2, 299, "%0H:%0M ", btime);
121       SNPRINTF(tempString, 299, "%s %s", tempString2, event->title);
122       event->index = sl.addOption(tempString, first);
123       first = 0;
124     }
125   }
126
127   // Reset the timer as it probably took 1-2 seconds to change the channel
128   Timers::getInstance()->setTimerD(this, 1, 4);
129 }
130
131 void VLiveBanner::draw()
132 {
133   View::draw();
134   sl.draw();
135   rectangle(0, area.h - 30, area.w, 30, titleBarColour);
136
137   rectangle(7, area.h - 24, 18, 16, Colour::RED);
138   drawText(tr("EPG"), 32, area.h - 25, Colour::LIGHTTEXT);
139
140   rectangle(110, area.h - 24, 18, 16, Colour::GREEN);
141   drawText(tr("info"), 135, area.h - 25, Colour::LIGHTTEXT);
142
143   drawClock();
144 }
145
146 int VLiveBanner::handleCommand(int command)
147 {
148   switch (command)
149   {
150     case Remote::OK:
151     case Remote::BACK:
152     {
153       Timers::getInstance()->cancelTimer(this, 1); // if it exists
154       return 4;
155     }
156     case Remote::DF_UP:
157     {
158       if (!takeCommands) return 0; // banner was auto, old remote
159     } // else drop through
160     case Remote::UP:
161     {
162       sl.up();
163       sl.draw();
164
165       ViewMan::getInstance()->updateView(this);
166
167       // Arrows pressed, go to an 8s timer
168       Timers::getInstance()->setTimerD(this, 1, 8);
169
170       return 2;
171     }
172     case Remote::DF_DOWN:
173     {
174       if (!takeCommands) return 0; // banner was auto, old remote
175     } // else drop through
176     case Remote::DOWN:
177     {
178       sl.down();
179       sl.draw();
180
181       ViewMan::getInstance()->updateView(this);
182
183       // Arrows pressed, go to an 8s timer
184       Timers::getInstance()->setTimerD(this, 1, 8);
185
186       return 2;
187     }
188     case Remote::CHANNELUP:
189     {
190       // cancel timer so this view is still here later
191       Timers::getInstance()->cancelTimer(this, 1); // if it exists
192       vvideoLive->channelChange(VVideoLive::OFFSET, VVideoLive::UP);
193       return 2;
194     }
195     case Remote::CHANNELDOWN:
196     {
197       // cancel timer so this view is still here later
198       Timers::getInstance()->cancelTimer(this, 1); // if it exists
199       vvideoLive->channelChange(VVideoLive::OFFSET, VVideoLive::DOWN);
200       return 2;
201     }
202     case Remote::GREEN:
203     case Remote::MENU:
204     {
205       if (!eventList) return 2;
206       Event* event;
207       int eventListSize = eventList->size();
208       for(int i = 0; i < eventListSize; i++)
209       {
210         event = (*eventList)[i];
211         if (event->index == sl.getCurrentOption())
212         {
213           Log::getInstance()->log("VLiveBanner", Log::DEBUG, "Found the option you pointed at. %s", event->title);
214           // First, cancel my delete timer
215           Timers::getInstance()->cancelTimer(this, 1); // if it exists
216
217           VInfo* vi = new VInfo();
218           vi->setTitleText(event->title);
219           vi->setBorderOn(1);
220           vi->setExitable();
221           if (event->description) vi->setMainText(event->description);
222           else vi->setMainText(tr("Summary unavailable"));
223           if (Video::getInstance()->getFormat() == Video::PAL)
224           {
225             vi->setScreenPos(120, 130);
226           }
227           else
228           {
229             vi->setScreenPos(110, 90);
230           }
231           vi->create(510, 270);
232           vi->draw();
233
234           ViewMan::getInstance()->add(vi);
235           ViewMan::getInstance()->updateView(vi);
236
237           return 2;
238
239         }
240       }
241       return 2; // should not get here
242     }
243     case Remote::GUIDE:
244     case Remote::RED:
245     {
246       // full epg
247       Timers::getInstance()->cancelTimer(this, 1); // if it exists
248       Message* m = new Message(); // Must be done after this view deleted
249       m->message = Message::EPG;
250       m->to = vvideoLive;
251       m->from = this;
252       ViewMan::getInstance()->postMessage(m);
253       return 4;
254     }
255   }
256
257   return 1;
258 }
259
260 void VLiveBanner::timercall(int clientReference)
261 {
262   if (clientReference == 1)
263   {
264     // delete me!
265     Message* m = new Message();  // Delete self
266     m->message = Message::CLOSE_ME;
267     m->to = ViewMan::getInstance();
268     m->from = this;
269     ViewMan::getInstance()->postMessage(m);
270   }
271   else if (clientReference == 2)
272   {
273     // redraw clock
274     drawClock();
275     ViewMan::getInstance()->updateView(this, &clockRegion);
276   }
277 }
278
279 void VLiveBanner::drawClock()
280 {
281   // Blank the area first
282   rectangle(area.w - 60, 0, 60, 30, titleBarColour);
283
284   char timeString[20];
285   time_t t;
286   time(&t);
287   struct tm* tms = localtime(&t);
288   strftime(timeString, 19, "%H:%M", tms);
289   drawTextRJ(timeString, 490, 5, Colour::LIGHTTEXT);
290
291   time_t dt = 60 - (t % 60);  // seconds to the next minute
292   if (dt == 0) dt = 60; // advance a whole minute if necessary
293   dt += t;  // get a time_t value for it rather than using duration
294   // (so it will occur at the actual second and not second and a half)
295
296   Timers::getInstance()->setTimerT(this, 2, dt);
297 }