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);
120 time_t etime = event->time;
121 btime = localtime(&etime);
123 strftime(tempString2, 299, "%0H:%0M ", btime);
125 strftime(tempString2, 299, "%H:%M ", btime);
127 SNPRINTF(tempString, 299, "%s %s", tempString2, event->title);
128 sl.addOption(tempString, (ULONG)event, first);
133 // Reset the timer as it probably took 1-2 seconds to change the channel
134 Timers::getInstance()->setTimerD(this, 1, 4);
137 void VLiveBanner::draw()
141 rectangle(0, area.h - 30, area.w, 30, titleBarColour);
143 rectangle(7, area.h - 24, 18, 16, Colour::RED);
144 drawText(tr("EPG"), 32, area.h - 25, Colour::LIGHTTEXT);
146 rectangle(110, area.h - 24, 18, 16, Colour::GREEN);
147 drawText(tr("info"), 135, area.h - 25, Colour::LIGHTTEXT);
152 int VLiveBanner::handleCommand(int command)
159 Timers::getInstance()->cancelTimer(this, 1); // if it exists
164 if (!takeCommands) return 0; // banner was auto, old remote
165 } // else drop through
171 ViewMan::getInstance()->updateView(this);
173 // Arrows pressed, go to an 8s timer
174 Timers::getInstance()->setTimerD(this, 1, 8);
178 case Remote::DF_DOWN:
180 if (!takeCommands) return 0; // banner was auto, old remote
181 } // else drop through
187 ViewMan::getInstance()->updateView(this);
189 // Arrows pressed, go to an 8s timer
190 Timers::getInstance()->setTimerD(this, 1, 8);
194 case Remote::CHANNELUP:
196 // cancel timer so this view is still here later
197 Timers::getInstance()->cancelTimer(this, 1); // if it exists
198 vvideoLive->channelChange(VVideoLive::OFFSET, VVideoLive::UP);
201 case Remote::CHANNELDOWN:
203 // cancel timer so this view is still here later
204 Timers::getInstance()->cancelTimer(this, 1); // if it exists
205 vvideoLive->channelChange(VVideoLive::OFFSET, VVideoLive::DOWN);
211 if (!eventList) return 2;
212 Event* event = (Event*)sl.getCurrentOptionData();
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
217 VInfo* vi = new VInfo();
218 vi->setTitleText(event->title);
221 if (event->description) vi->setMainText(event->description);
222 else vi->setMainText(tr("Summary unavailable"));
223 if (Video::getInstance()->getFormat() == Video::PAL)
225 vi->setScreenPos(120, 130);
229 vi->setScreenPos(110, 90);
231 vi->create(510, 270);
234 ViewMan::getInstance()->add(vi);
235 ViewMan::getInstance()->updateView(vi);
243 Timers::getInstance()->cancelTimer(this, 1); // if it exists
244 Message* m = new Message(); // Must be done after this view deleted
245 m->message = Message::EPG;
248 Command::getInstance()->postMessageNoLock(m);
256 void VLiveBanner::timercall(int clientReference)
258 if (clientReference == 1)
261 Message* m = new Message(); // Delete self
262 m->message = Message::CLOSE_ME;
263 m->to = ViewMan::getInstance();
265 Command::getInstance()->postMessageNoLock(m);
267 else if (clientReference == 2)
271 ViewMan::getInstance()->updateView(this, &clockRegion);
275 void VLiveBanner::drawClock()
277 // Blank the area first
278 rectangle(area.w - 60, 0, 60, 30, titleBarColour);
283 struct tm* tms = localtime(&t);
284 strftime(timeString, 19, "%H:%M", tms);
285 drawTextRJ(timeString, 490, 5, Colour::LIGHTTEXT);
287 time_t dt = 60 - (t % 60); // seconds to the next minute
288 if (dt == 0) dt = 60; // advance a whole minute if necessary
289 dt += t; // get a time_t value for it rather than using duration
290 // (so it will occur at the actual second and not second and a half)
292 Timers::getInstance()->setTimerT(this, 2, dt);
295 void VLiveBanner::processMessage(Message* m)
297 if (m->message == Message::MOUSE_MOVE)
299 if (sl.mouseMove((m->parameter>>16)-getScreenX(),(m->parameter&0xFFFF)-getScreenY()))
302 ViewMan::getInstance()->updateView(this);
305 else if (m->message == Message::MOUSE_LBDOWN)
307 //check if press is outside this view! then simulate cancel
308 int x=(m->parameter>>16)-getScreenX();
309 int y=(m->parameter&0xFFFF)-getScreenY();
310 if (x<0 || y <0 || x>getWidth() || y>getHeight())
312 ViewMan::getInstance()->handleCommand(Remote::BACK); //simulate cancel press
314 else if (y>=(int)area.h-24 && y<=(int)area.h-6)
316 //y coordinate is right!
319 ViewMan::getInstance()->handleCommand(Remote::RED); //simulate red press
321 else if (x>=110 &&x<=128)
323 ViewMan::getInstance()->handleCommand(Remote::GREEN); //simulate red press