2 Copyright 2004-2005 Chris Tallon
4 This file is part of VOMP.
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.
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.
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
21 #include "vlivebanner.h"
23 VLiveBanner* VLiveBanner::instance = NULL;
25 VLiveBanner::VLiveBanner(VVideoLive* tvvideoLive, Channel* channel, bool bannerTakesCommands)
29 vvideoLive = tvvideoLive;
30 takeCommands = bannerTakesCommands;
38 if (Video::getInstance()->getFormat() == Video::PAL)
40 setScreenPos(124, 410);
44 setScreenPos(114, 320);
48 setBackgroundColour(Colour::VIEWBACKGROUND);
50 setTitleBarColour(Colour::TITLEBARBACKGROUND);
52 sl.setSurface(surface);
53 sl.setSurfaceOffset(0, 30);
54 sl.setDimensions(area.w, area.h - 60);
60 VLiveBanner::~VLiveBanner()
63 Timers::getInstance()->cancelTimer(this, 1);
64 Timers::getInstance()->cancelTimer(this, 2);
68 VLiveBanner* VLiveBanner::getInstance()
73 void VLiveBanner::delData()
77 int eventListSize = eventList->size();
78 for(int i = 0; i < eventListSize; i++)
80 delete (*eventList)[i];
89 void VLiveBanner::setChannel(Channel* tChannel)
92 currentChannel = tChannel;
96 SNPRINTF(ttitleText, 99, "%03lu - %s", currentChannel->number, currentChannel->name);
98 setTitleText(ttitleText);
99 eventList = VDR::getInstance()->getChannelSchedule(currentChannel->number);
103 sl.addOption(tr("No channel data available"), 0, 1);
107 sort(eventList->begin(), eventList->end(), EventSorter());
109 char tempString[300];
110 char tempString2[300];
114 int eventListSize = eventList->size();
115 for(int i = 0; i < eventListSize; i++)
117 event = (*eventList)[i];
119 btime = localtime((time_t*)&event->time);
121 strftime(tempString2, 299, "%0H:%0M ", btime);
123 strftime(tempString2, 299, "%H:%M ", btime);
125 SNPRINTF(tempString, 299, "%s %s", tempString2, event->title);
126 sl.addOption(tempString, (ULONG)event, first);
131 // Reset the timer as it probably took 1-2 seconds to change the channel
132 Timers::getInstance()->setTimerD(this, 1, 4);
135 void VLiveBanner::draw()
139 rectangle(0, area.h - 30, area.w, 30, titleBarColour);
141 rectangle(7, area.h - 24, 18, 16, Colour::RED);
142 drawText(tr("EPG"), 32, area.h - 25, Colour::LIGHTTEXT);
144 rectangle(110, area.h - 24, 18, 16, Colour::GREEN);
145 drawText(tr("info"), 135, area.h - 25, Colour::LIGHTTEXT);
150 int VLiveBanner::handleCommand(int command)
157 Timers::getInstance()->cancelTimer(this, 1); // if it exists
162 if (!takeCommands) return 0; // banner was auto, old remote
163 } // else drop through
169 ViewMan::getInstance()->updateView(this);
171 // Arrows pressed, go to an 8s timer
172 Timers::getInstance()->setTimerD(this, 1, 8);
176 case Remote::DF_DOWN:
178 if (!takeCommands) return 0; // banner was auto, old remote
179 } // else drop through
185 ViewMan::getInstance()->updateView(this);
187 // Arrows pressed, go to an 8s timer
188 Timers::getInstance()->setTimerD(this, 1, 8);
192 case Remote::CHANNELUP:
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);
199 case Remote::CHANNELDOWN:
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);
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
215 VInfo* vi = new VInfo();
216 vi->setTitleText(event->title);
219 if (event->description) vi->setMainText(event->description);
220 else vi->setMainText(tr("Summary unavailable"));
221 if (Video::getInstance()->getFormat() == Video::PAL)
223 vi->setScreenPos(120, 130);
227 vi->setScreenPos(110, 90);
229 vi->create(510, 270);
232 ViewMan::getInstance()->add(vi);
233 ViewMan::getInstance()->updateView(vi);
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;
246 ViewMan::getInstance()->postMessage(m);
254 void VLiveBanner::timercall(int clientReference)
256 if (clientReference == 1)
259 Message* m = new Message(); // Delete self
260 m->message = Message::CLOSE_ME;
261 m->to = ViewMan::getInstance();
263 ViewMan::getInstance()->postMessage(m);
265 else if (clientReference == 2)
269 ViewMan::getInstance()->updateView(this, &clockRegion);
273 void VLiveBanner::drawClock()
275 // Blank the area first
276 rectangle(area.w - 60, 0, 60, 30, titleBarColour);
281 struct tm* tms = localtime(&t);
282 strftime(timeString, 19, "%H:%M", tms);
283 drawTextRJ(timeString, 490, 5, Colour::LIGHTTEXT);
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)
290 Timers::getInstance()->setTimerT(this, 2, dt);