]> git.vomp.tv Git - vompclient.git/blob - vvideorec.cc
New recinfo system - not finished just yet!
[vompclient.git] / vvideorec.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 "vvideorec.h"
22
23 VVideoRec::VVideoRec(Recording* rec)
24 {
25   vdr = VDR::getInstance();
26   video = Video::getInstance();
27   timers = Timers::getInstance();
28
29   // TODO Work out if is a radio stream
30
31   player = new Player(Command::getInstance(), true, false);
32   player->init();
33
34   videoMode = video->getMode();
35   myRec = rec;
36
37   playing = false;
38
39   startMargin = 0;
40   endMargin = 0;
41   char* cstartMargin = vdr->configLoad("Timers", "Start margin");
42   char* cendMargin = vdr->configLoad("Timers", "End margin");
43   if (!cstartMargin)
44   {
45     startMargin = 300; // 5 mins default
46   }
47   else
48   {
49     startMargin = atoi(cstartMargin) * 60;
50     delete[] cstartMargin;
51   }
52
53   if (!cendMargin)
54   {
55     endMargin = 300; // 5 mins default
56   }
57   else
58   {
59     endMargin = atoi(cendMargin) * 60;
60     delete[] cendMargin;
61   }
62
63   Log::getInstance()->log("VVideoRec", Log::DEBUG, "SM: %u EM: %u", startMargin, endMargin);
64
65   create(video->getScreenWidth(), video->getScreenHeight());
66   transparent.set(0, 0, 0, 0);
67   setBackgroundColour(transparent);
68
69   barRegion.x = 0;
70   barRegion.y = video->getScreenHeight() - 58;   // FIXME, need to be - 1? and below?
71   barRegion.w = video->getScreenWidth();
72   barRegion.h = 58;
73
74   clocksRegion.x = barRegion.x + 140;
75   clocksRegion.y = barRegion.y + 12;
76   clocksRegion.w = 170;
77   clocksRegion.h = surface->getFontHeight();
78
79   barBlue.set(0, 0, 150, 150);
80
81   barShowing = false;
82   stickyBar = false;
83 }
84
85 VVideoRec::~VVideoRec()
86 {
87   if (playing) stopPlay();
88   video->setDefaultAspect();
89
90   timers->cancelTimer(this, 1);
91   timers->cancelTimer(this, 2);
92
93   // kill recInfo in case resumePoint has changed (likely)
94   myRec->dropRecInfo();
95   // FIXME - do this properly - save the resume point back to the server manually and update
96   // rec->recInfo->resumePoint - this will fix the ~10s offset problem as well
97 }
98
99 void VVideoRec::draw()
100 {
101   View::draw();
102 }
103
104 void VVideoRec::go(ULONG startFrameNum)
105 {
106   Log::getInstance()->log("VVideoRec", Log::DEBUG, "Starting stream: %s at frame: %lu", myRec->getFileName(), startFrameNum);
107   ULONG lengthFrames = 0;
108   ULLONG lengthBytes = vdr->streamRecording(myRec->getFileName(), &lengthFrames);
109   if (lengthBytes)
110   {
111     doBar(0);
112     player->setLengthBytes(lengthBytes);
113     player->setLengthFrames(lengthFrames);
114     player->setStartFrame(startFrameNum);
115     player->play();
116     playing = true;
117   }
118   else
119   {
120     stopPlay(); // clean up
121
122     if (!vdr->isConnected())
123     {
124       Command::getInstance()->connectionLost();
125       return;
126     }
127
128     ViewMan* viewman = ViewMan::getInstance();
129
130     Message* m = new Message();
131     m->message = Message::CLOSE_ME;
132     m->from = this;
133     m->to = viewman;
134     viewman->postMessage(m);
135
136     VInfo* vi = new VInfo();
137     vi->create(400, 150);
138     if (video->getFormat() == Video::PAL)
139       vi->setScreenPos(170, 200);
140     else
141       vi->setScreenPos(160, 150);
142     vi->setExitable();
143     vi->setBorderOn(1);
144     vi->setTitleBarOn(0);
145     vi->setOneLiner(tr("Error playing recording"));
146     vi->draw();
147
148     m = new Message();
149     m->message = Message::ADD_VIEW;
150     m->to = viewman;
151     m->parameter = (ULONG)vi;
152     viewman->postMessage(m);
153   }
154 }
155
156 int VVideoRec::handleCommand(int command)
157 {
158   switch(command)
159   {
160     case Remote::PLAY:
161     {
162       player->play();
163       doBar(0);
164       return 2;
165     }
166
167     case Remote::STOP:
168     case Remote::BACK:
169     case Remote::MENU:
170     {
171       if (playing) stopPlay();
172       return 4;
173     }
174     case Remote::PAUSE:
175     {
176       player->pause();
177       doBar(0);
178       return 2;
179     }
180     case Remote::SKIPFORWARD:
181     {
182       doBar(3);
183       player->skipForward(60);
184       return 2;
185     }
186     case Remote::SKIPBACK:
187     {
188       doBar(4);
189       player->skipBackward(60);
190       return 2;
191     }
192     case Remote::FORWARD:
193     {
194       player->fastForward();
195       doBar(0);
196       return 2;
197     }
198     case Remote::REVERSE:
199     {
200       player->fastBackward();
201       doBar(0);
202       return 2;
203     }
204     case Remote::YELLOW:
205     {
206       doBar(2);
207       player->skipBackward(10);
208       return 2;
209     }
210     case Remote::BLUE:
211     {
212       doBar(1);
213       player->skipForward(10);
214       return 2;
215     }
216     case Remote::FULL:
217     case Remote::TV:
218     {
219       toggleChopSides();
220       return 2;
221     }
222
223     case Remote::OK:
224     {
225       if (barShowing) removeBar();
226       else doBar(0);
227       return 2;
228     }
229
230     case Remote::ZERO:  player->jumpToPercent(0);  doBar(0);  return 2;
231     case Remote::ONE:   player->jumpToPercent(10); doBar(0);  return 2;
232     case Remote::TWO:   player->jumpToPercent(20); doBar(0);  return 2;
233     case Remote::THREE: player->jumpToPercent(30); doBar(0);  return 2;
234     case Remote::FOUR:  player->jumpToPercent(40); doBar(0);  return 2;
235     case Remote::FIVE:  player->jumpToPercent(50); doBar(0);  return 2;
236     case Remote::SIX:   player->jumpToPercent(60); doBar(0);  return 2;
237     case Remote::SEVEN: player->jumpToPercent(70); doBar(0);  return 2;
238     case Remote::EIGHT: player->jumpToPercent(80); doBar(0);  return 2;
239     case Remote::NINE:  player->jumpToPercent(90); doBar(0);  return 2;
240
241 #ifdef DEV
242     case Remote::RED:
243     {
244       //player->test1();
245
246       /*
247       // for testing EPG in NTSC with a NTSC test video
248       Video::getInstance()->setMode(Video::QUARTER);
249       Video::getInstance()->setPosition(170, 5);
250       VEpg* vepg = new VEpg(NULL, 0);
251       vepg->draw();
252       ViewMan::getInstance()->add(vepg);
253       ViewMan::getInstance()->updateView(vepg);
254       */
255
256       return 2;
257     }
258     case Remote::GREEN:
259     {
260       player->test2();
261       return 2;
262     }
263 #endif
264
265   }
266
267   return 1;
268 }
269
270 void VVideoRec::stopPlay()
271 {
272   Log::getInstance()->log("VVideoRec", Log::DEBUG, "Pre stopPlay");
273
274   // FIXME work out a better soln for this
275   // Fix a problem to do with thread sync here
276   // because the bar gets a timer every 0.2s and it seems to take up to 0.1s,
277   // (or maybe just the wrong thread being selected?) for the main loop to lock and process
278   // the video stop message it is possible for a bar message to stack up after a stop message
279   // when the bar message is finally processed the prog crashes because this is deleted by then
280   removeBar();
281   //
282
283   player->stop();
284   vdr->stopStreaming();
285   delete player;
286
287   playing = false;
288
289   if (!vdr->isConnected()) { Command::getInstance()->connectionLost(); return; }
290   Log::getInstance()->log("VVideoRec", Log::DEBUG, "Post stopPlay");
291 }
292
293 void VVideoRec::toggleChopSides()
294 {
295   if (video->getTVsize() == Video::ASPECT16X9) return; // Means nothing for 16:9 TVs
296
297   if (videoMode == Video::NORMAL)
298   {
299     videoMode = Video::LETTERBOX;
300     video->setMode(Video::LETTERBOX);
301   }
302   else
303   {
304     videoMode = Video::NORMAL;
305     video->setMode(Video::NORMAL);
306   }
307 }
308
309 void VVideoRec::doBar(int action)
310 {
311   barShowing = true;
312
313   rectangle(barRegion, barBlue);
314
315   /* Work out what to display - choices:
316
317   Playing  >
318   Paused   ||
319   FFwd     >>
320   FBwd     <<
321
322   Specials, informed by parameter
323
324   Skip forward 10s    >|
325   Skip backward 10s   |<
326   Skip forward 1m     >>|
327   Skip backward 1m    |<<
328
329   */
330
331   WSymbol w;
332   w.setSurface(surface);
333   w.nextSymbol = 0;
334   w.setSurfaceOffset(barRegion.x + 66, barRegion.y + 16);
335
336   UCHAR playerState = 0;
337
338   if (action)
339   {
340     if (action == 1)       w.nextSymbol = WSymbol::SKIPFORWARD;
341     else if (action == 2)  w.nextSymbol = WSymbol::SKIPBACK;
342     else if (action == 3)  w.nextSymbol = WSymbol::SKIPFORWARD2;
343     else if (action == 4)  w.nextSymbol = WSymbol::SKIPBACK2;
344   }
345   else
346   {
347     playerState = player->getState();
348     if (playerState == Player::S_PAUSE_P)      w.nextSymbol = WSymbol::PAUSE;
349     else if (playerState == Player::S_PAUSE_I) w.nextSymbol = WSymbol::PAUSE;
350     else if (playerState == Player::S_FFWD)    w.nextSymbol = WSymbol::FFWD;
351     else if (playerState == Player::S_FBWD)    w.nextSymbol = WSymbol::FBWD;
352     else                                       w.nextSymbol = WSymbol::PLAY;
353   }
354
355   w.draw();
356
357   if ((playerState == Player::S_FFWD) || (playerState == Player::S_FBWD))
358   {
359     // draw blips to show how fast the scan is
360     UCHAR scanrate = player->getIScanRate();
361     if (scanrate >= 2)
362     {
363       char* text = new char[5];
364       SNPRINTF(text, 5, "%ux", scanrate);
365       drawText(text, barRegion.x + 102, barRegion.y + 12, Colour::LIGHTTEXT);
366     }
367   }
368
369   drawBarClocks();
370
371   ViewMan::getInstance()->updateView(this, &barRegion);
372
373   if ((playerState == Player::S_FFWD) || (playerState == Player::S_FBWD))
374   {
375     timers->cancelTimer(this, 1);
376     stickyBar = true;
377   }
378   else
379   {
380     timers->setTimerD(this, 1, 4); // only set the getridofbar timer if not ffwd/fbwd
381     stickyBar = false;
382   }
383   timers->setTimerD(this, 2, 0, 200000000);
384 }
385
386 void VVideoRec::timercall(int clientReference)
387 {
388   switch(clientReference)
389   {
390     case 1:
391     {
392       // Remove bar
393       removeBar();
394       break;
395     }
396     case 2:
397     {
398       // Update clock
399       if (!barShowing) break;
400       drawBarClocks();
401       ViewMan::getInstance()->updateView(this, &barRegion);
402       timers->setTimerD(this, 2, 0, 200000000);
403       break;
404     }
405   }
406 }
407
408 void VVideoRec::drawBarClocks()
409 {
410   if (stickyBar)
411   {
412     UCHAR playerState = player->getState();
413     // sticky bar is set if we are in ffwd/fbwd mode
414     // if player has gone to S_PLAY then kill stickyBar, and run doBar(0) which
415     // will repaint all the bar (it will call this function again, but
416     // this section won't run because stickyBar will then == false)
417
418     if ((playerState != Player::S_FFWD) && (playerState != Player::S_FBWD))
419     {
420       stickyBar = false;
421       doBar(0);
422       return; // doBar will call this function and do the rest
423     }
424   }
425
426   Log* logger = Log::getInstance();
427   logger->log("VVideoRec", Log::DEBUG, "Draw bar clocks");
428
429   // Draw RTC
430   // Blank the area first
431   rectangle(barRegion.x + 624, barRegion.y + 12, 60, 30, barBlue);
432   char timeString[20];
433   time_t t;
434   time(&t);
435   struct tm* tms = localtime(&t);
436   strftime(timeString, 19, "%H:%M", tms);
437   drawText(timeString, barRegion.x + 624, barRegion.y + 12, Colour::LIGHTTEXT);
438
439   // Draw clocks
440
441   rectangle(clocksRegion, barBlue);
442
443   ULONG currentFrameNum = player->getCurrentFrameNum();
444   ULONG lengthFrames = player->getLengthFrames();
445
446   hmsf currentFrameHMSF = video->framesToHMSF(currentFrameNum);
447   hmsf lengthHMSF = video->framesToHMSF(lengthFrames);
448
449   char buffer[100];
450   if (currentFrameNum >= lengthFrames)
451   {
452     strcpy(buffer, "-:--:-- / -:--:--");
453   }
454   else
455   {
456     SNPRINTF(buffer, 99, "%01i:%02i:%02i / %01i:%02i:%02i", currentFrameHMSF.hours, currentFrameHMSF.minutes, currentFrameHMSF.seconds, lengthHMSF.hours, lengthHMSF.minutes, lengthHMSF.seconds);
457     logger->log("VVideoRec", Log::DEBUG, buffer);
458   }
459
460   drawText(buffer, clocksRegion.x, clocksRegion.y, Colour::LIGHTTEXT);
461
462
463
464
465
466
467
468   // Draw progress bar
469   int progBarXbase = barRegion.x + 300;
470
471   rectangle(barRegion.x + progBarXbase, barRegion.y + 12, 310, 24, Colour::LIGHTTEXT);
472   rectangle(barRegion.x + progBarXbase + 2, barRegion.y + 14, 306, 20, barBlue);
473
474   if (currentFrameNum < lengthFrames)
475   {
476
477     int progressWidth = 302 * currentFrameNum / lengthFrames;
478
479     rectangle(barRegion.x + progBarXbase + 4, barRegion.y + 16, progressWidth, 16, Colour::SELECTHIGHLIGHT);
480
481     // Now calc position for start margin blips
482     int posPix;
483
484     posPix = 302 * startMargin * video->getFPS() / lengthFrames;
485
486     rectangle(barRegion.x + progBarXbase + 2 + posPix, barRegion.y + 12 - 2, 2, 2, Colour::LIGHTTEXT);
487     rectangle(barRegion.x + progBarXbase + 2 + posPix, barRegion.y + 12 + 24, 2, 2, Colour::LIGHTTEXT);
488
489     posPix = 302 * (lengthFrames - endMargin * video->getFPS()) / lengthFrames;
490
491     rectangle(barRegion.x + progBarXbase + 2 + posPix, barRegion.y + 12 - 2, 2, 2, Colour::LIGHTTEXT);
492     rectangle(barRegion.x + progBarXbase + 2 + posPix, barRegion.y + 12 + 24, 2, 2, Colour::LIGHTTEXT);
493   }
494 }
495
496 void VVideoRec::removeBar()
497 {
498   if (!barShowing) return;
499   timers->cancelTimer(this, 2);
500   barShowing = false;
501   stickyBar = false;
502   rectangle(barRegion, transparent);
503   ViewMan::getInstance()->updateView(this, &barRegion);
504 }