]> git.vomp.tv Git - vompclient.git/blob - vrecordinglistadvanced.cc
Fix resuming recording directly after stopping it
[vompclient.git] / vrecordinglistadvanced.cc
1 /*
2     Copyright 2004-2007 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #include "vrecordinglistadvanced.h"
22
23 #include "recman.h"
24 #include "directory.h"
25 #include "recording.h"
26 #include "recinfo.h"
27 #include "remote.h"
28 #include "wsymbol.h"
29 #include "boxstack.h"
30 #include "vrecordingmenu.h"
31 #include "vrecording.h"
32 #include "vdr.h"
33 #include "vvideorec.h"
34 #include "vradiorec.h"
35 #include "colour.h"
36 #include "video.h"
37 #include "i18n.h"
38 #include "command.h"
39 #include "vinfo.h"
40 #include "log.h"
41 #include "movieinfo.h"
42 #include "seriesinfo.h"
43 #include "staticartwork.h"
44
45 #include <sstream>
46
47
48 VRecordingListAdvanced::VRecordingListAdvanced()
49 {
50         setSize(640, 500); //old   setSize(570, 420);
51         createBuffer();
52
53         setPosition(40, 40);
54
55         setTitleBarOn(1);
56         setTitleBarColour(DrawStyle::TITLEBARBACKGROUND);
57     TVMediaInfo *info= new TVMediaInfo();
58     info->setStaticArtwork(sa_recordings);
59     setTitleBarIcon(info);
60
61         sl.setPosition(10, 30 + 5);
62         sl.setSize(area.w*42/100 - 20, area.h - 30 - 15 - 30);
63         sl.setLinesPerOption(2.4f);
64         add(&sl);
65
66         Region slarea=sl.getRegionR();
67
68         epg.setParaMode(true);
69         epg.setPosition(slarea.x  +slarea.w+10 ,30+5);
70         epg.setSize(area.w -slarea.x -slarea.w -10, area.h - 30 - 15 - 30);
71         add(&epg);
72         epg.setText("");
73         epg.setBackgroundColour(DrawStyle::VIEWBACKGROUND);
74
75         epgTVmedia.setPosition(epg.getRegionR().w-100-10,10);
76         epgTVmedia.setSize(100,(UINT)(150/Osd::getInstance()->getPixelAspect()));
77         epg.add(&epgTVmedia);
78
79 }
80
81 VRecordingListAdvanced::~VRecordingListAdvanced()
82 {
83 }
84
85 void VRecordingListAdvanced::drawData(bool doIndexPop)
86 {
87   int saveIndex = sl.getCurrentOption();
88   int saveTop = sl.getTopOption();
89   sl.clear();
90   sl.addColumn(0);
91   sl.addColumn(25 );
92   sl.addColumn(25 + 7);
93   //sl.addColumn(118);
94
95   int first = 1;
96
97   char tempA[300]; // FIXME  this is guesswork!
98   char tempB[300]; // FIXME
99   struct tm btime;
100
101   Directory* currentSubDir;
102   DirectoryList::iterator i;
103   DirectoryList* dirList = recman->getDirectories();
104   for (i = dirList->begin(); i != dirList->end(); i++)
105   {
106     currentSubDir = *i;
107     SNPRINTF(tempA, 299, tr("\t%s \n \t <dir> %lu/%lu"),  currentSubDir->name, currentSubDir->getNumNewRecordings(), currentSubDir->getNumRecordings());
108
109     TVMediaInfo *info=new TVMediaInfo();
110     if (currentSubDir->recList.begin() != currentSubDir->recList.end())
111     {
112         info->setPosterThumb((*currentSubDir->recList.begin())->getFileName());
113         info->setStaticFallback(sa_recfolder);
114     } else {
115         info->setStaticArtwork(sa_recfolder);
116     }
117     currentSubDir->index = sl.addOption(tempA, 0, first, info);
118     first = 0;
119
120   }
121   // FIXME convert the whole program to time_t's
122
123   Recording* currentRec;
124   RecordingList::iterator j;
125   RecordingList* recList = recman->getRecordings();
126   for (j = recList->begin(); j != recList->end(); j++)
127   {
128     currentRec = *j;
129     time_t recStartTime = (time_t)currentRec->getStartTime();
130     LOCALTIME_R(&recStartTime, &btime);
131 //NMT does not like this too!
132         //#ifndef _MSC_VER
133 //    strftime(tempA, 299, "%0d/%0m %0H:%0M ", &btime);
134 //#else
135     strftime(tempA, 299, "%d/%m/%y %H:%M ", &btime);
136 //#endif
137     sprintf(tempB, "%c\t%s\n \t%s",  (currentRec->getNew() ? '*': ' '), currentRec->getProgName(),tempA);
138     // New TVMedia stuff
139     TVMediaInfo *info= new TVMediaInfo();
140     info->setPosterThumb(currentRec->getFileName());
141     info->setStaticFallback(sa_recording);
142     currentRec->index = sl.addOption(tempB, 0, first, info);
143     first = 0;
144   }
145
146   if (doIndexPop)
147   {
148     sl.hintSetCurrent(slIndexStack.top());
149     slIndexStack.pop();
150   }
151   else
152   {
153     sl.hintSetCurrent(saveIndex);
154     sl.hintSetTop(saveTop);
155   }
156   updateSelection();
157 }
158
159 void VRecordingListAdvanced::draw(bool doIndexPop)
160 {
161   if (!loading)
162   {
163     if (recman->isSubDir())
164     {
165       char title[300];
166       SNPRINTF(title, 299, tr("Recordings - %s"), recman->getCurDirName());
167       setTitleText(title, 364);
168     }
169     else
170     {
171       setTitleText(tr("Recordings"));
172     }
173     drawData(doIndexPop);
174   }
175
176
177   TBBoxx::draw();
178
179   if (loading)
180   {
181     drawText(tr("Loading..."), area.w*22/100-90, 180, DrawStyle::LIGHTTEXT);
182   }
183   else
184   {
185     char freeSpace[50];
186     int gigFree = recman->getFreeSpace() / 1024;
187     SNPRINTF(freeSpace, 49, tr("%lu%% used, %iGB free"), recman->getUsedPercent(), gigFree);
188     drawTextRJ(freeSpace, 560+70, 5, DrawStyle::LIGHTTEXT);
189     // Symbols
190
191     WSymbol w;
192     TEMPADD(&w);
193     w.nextSymbol = WSymbol::UP;
194     w.setPosition(20, area.h-35);
195     w.draw();
196     w.nextSymbol = WSymbol::DOWN;
197     w.setPosition(50, area.h-35);
198     w.draw();
199     w.nextSymbol = WSymbol::SKIPBACK;
200     w.setPosition(85, area.h-35);
201     w.draw();
202     w.nextSymbol = WSymbol::SKIPFORWARD;
203     w.setPosition(115, area.h-35);
204     w.draw();
205     w.nextSymbol = WSymbol::PLAY;
206     w.setPosition(150, area.h-35);
207     w.draw();
208     drawTextRJ(tr("[ok] = menu"), 560+70, 385+80, DrawStyle::LIGHTTEXT);
209
210     // All static stuff done
211     doShowingBar();
212   }
213 }
214
215 void VRecordingListAdvanced::doShowingBar()
216 { //setSize(640, 500); //old   setSize(570, 420);
217   int topOption = sl.getTopOption() + 1;
218   if (sl.getNumOptions() == 0) topOption = 0;
219 #ifndef GRADIENT_DRAWING
220   rectangle(area.w/2-65, area.h-115, 180, 25, DrawStyle::VIEWBACKGROUND);
221 #endif
222   char showing[200];
223   sprintf(showing, tr("%i to %i of %i"), topOption, sl.getBottomOption(), sl.getNumOptions());
224   drawText(showing, area.w/2-65, area.h-35, DrawStyle::LIGHTTEXT);
225 }
226
227 void VRecordingListAdvanced::updateSelection()
228 {
229         Recording* toShow = getCurrentOptionRecording();
230         if (toShow)
231         {
232                 toShow->loadRecInfo();
233                 std::stringstream description;
234                 if (toShow->recInfo && strlen(toShow->recInfo->summary)){
235                         description << "\n"<< toShow->recInfo->title  << "\n\n";
236                         description << toShow->recInfo->summary;
237                 }else {
238                         description << "\n" << std::string(toShow->getProgName()) << "\n\n";
239                         description << tr("Summary unavailable");
240
241                 }
242                 TVMedia poster;
243                 poster.height=0;
244                 if (toShow->movieInfo) {
245                         poster=toShow->movieInfo->poster;
246                 }
247                 if (toShow->seriesInfo) {
248                         if (toShow->seriesInfo->seasonposter.height) {
249                                 poster=toShow->seriesInfo->seasonposter;
250                         }
251                         else
252                                 if (toShow->seriesInfo->posters.size()) {
253                                         poster=toShow->seriesInfo->posters[0];
254                                 }
255                 }
256                 if (poster.height) {
257                         epgTVmedia.setTVMedia(poster.info, WTVMedia::ZoomHorizontal);
258                         epgTVmedia.setVisible(true);
259                 } else {
260                         epgTVmedia.setVisible(false);
261                 }
262
263                 epg.setText(description.str().c_str());
264         } else {
265                 Directory* toShowDir = getCurrentOptionDirectory();
266                 if (toShowDir)
267                 {
268                         std::stringstream description;
269                         description << "\n"<< std::string(toShowDir->name) << "\n\n";
270
271                         Directory* currentSubDir;
272                         DirectoryList::iterator i;
273                         DirectoryList & dirList = toShowDir->dirList;
274                         for (i = dirList.begin(); i != dirList.end(); i++)
275                         {
276                                 currentSubDir = *i;
277                                 description << tr("<dir> ") <<  std::string(currentSubDir->name) << " "
278                                                 << currentSubDir->getNumNewRecordings() <<"/"<< currentSubDir->getNumRecordings() <<"\n";
279                         }
280                         Recording* currentRec;
281                         RecordingList::iterator j;
282                         RecordingList & recList = toShowDir->recList;
283                         char tempA[300];
284                         struct tm btime;
285                         for (j = recList.begin(); j != recList.end(); j++)
286                         {
287                                 currentRec = *j;
288
289                                 time_t recStartTime = (time_t)currentRec->getStartTime();
290                                 LOCALTIME_R(&recStartTime, &btime);
291                                 strftime(tempA, 299, "%d/%m/%y %H:%M ", &btime);
292
293                                 description<< tempA <<" "<< std::string(currentRec->getProgName()) << "\n";
294
295                         }
296                         epgTVmedia.setVisible(false);
297                         epg.setText(description.str().c_str());
298
299
300                 }
301         }
302
303 }
304
305
306
307 void VRecordingListAdvanced::quickUpdate() { //only quick for plattform that need it!
308         updateSelection();
309 #ifdef GRADIENT_DRAWING
310       draw();
311 #else
312       sl.draw();
313       doShowingBar();
314       epg.draw();
315 #endif
316 }