2013-01-17 13:16:44 +01:00
|
|
|
/*
|
|
|
|
* tvguide.c: A plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <vdr/osd.h>
|
|
|
|
#include <vdr/plugin.h>
|
|
|
|
#include <vdr/device.h>
|
2013-07-09 00:17:42 +02:00
|
|
|
#include <vdr/menu.h>
|
2013-01-17 13:16:44 +01:00
|
|
|
|
2013-12-07 15:51:50 +01:00
|
|
|
#define DEFINE_CONFIG 1
|
2013-12-21 11:25:03 +01:00
|
|
|
#include "geometrymanager.h"
|
|
|
|
#include "fontmanager.h"
|
|
|
|
#include "imagecache.h"
|
2013-12-07 15:51:50 +01:00
|
|
|
#include "config.h"
|
|
|
|
#include "setup.h"
|
|
|
|
#include "tvguideosd.h"
|
|
|
|
|
2013-01-17 13:16:44 +01:00
|
|
|
|
2013-05-24 16:23:23 +02:00
|
|
|
#if defined(APIVERSNUM) && APIVERSNUM < 20000
|
|
|
|
#error "VDR-2.0.0 API version or greater is required!"
|
2013-01-17 13:16:44 +01:00
|
|
|
#endif
|
|
|
|
|
2014-05-11 09:00:21 +02:00
|
|
|
static const char *VERSION = "1.2.2";
|
2013-01-17 13:16:44 +01:00
|
|
|
static const char *DESCRIPTION = "A fancy 2d EPG Viewer";
|
|
|
|
static const char *MAINMENUENTRY = "Tvguide";
|
|
|
|
|
|
|
|
class cPluginTvguide : public cPlugin {
|
|
|
|
public:
|
|
|
|
cPluginTvguide(void);
|
|
|
|
virtual ~cPluginTvguide();
|
|
|
|
virtual const char *Version(void) { return VERSION; }
|
|
|
|
virtual const char *Description(void) { return DESCRIPTION; }
|
|
|
|
virtual const char *CommandLineHelp(void);
|
|
|
|
virtual bool ProcessArgs(int argc, char *argv[]);
|
|
|
|
virtual bool Initialize(void);
|
|
|
|
virtual bool Start(void);
|
|
|
|
virtual void Stop(void);
|
|
|
|
virtual void Housekeeping(void);
|
|
|
|
virtual void MainThreadHook(void);
|
|
|
|
virtual cString Active(void);
|
|
|
|
virtual time_t WakeupTime(void);
|
2013-05-31 14:05:30 +02:00
|
|
|
virtual const char *MainMenuEntry(void) { return (tvguideConfig.showMainMenuEntry)?MAINMENUENTRY:NULL; }
|
2013-01-17 13:16:44 +01:00
|
|
|
virtual cOsdObject *MainMenuAction(void);
|
|
|
|
virtual cMenuSetupPage *SetupMenu(void);
|
|
|
|
virtual bool SetupParse(const char *Name, const char *Value);
|
|
|
|
virtual bool Service(const char *Id, void *Data = NULL);
|
|
|
|
virtual const char **SVDRPHelpPages(void);
|
|
|
|
virtual cString SVDRPCommand(const char *Command, const char *Option, int &ReplyCode);
|
|
|
|
};
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
cPluginTvguide::cPluginTvguide(void) {
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
cPluginTvguide::~cPluginTvguide() {
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
const char *cPluginTvguide::CommandLineHelp(void) {
|
2013-01-17 13:16:44 +01:00
|
|
|
return
|
2013-12-21 11:25:03 +01:00
|
|
|
" -e <IMAGESDIR>, --epgimages=<IMAGESDIR> Set directory where epgimages are stored.\n"
|
|
|
|
" -i <ICONDIR>, --icons=<ICONDIR> Set directory where icons are stored.\n"
|
2013-01-17 13:16:44 +01:00
|
|
|
" -l <LOGODIR>, --logodir=<LOGODIR> Set directory where logos are stored.\n";
|
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
bool cPluginTvguide::ProcessArgs(int argc, char *argv[]) {
|
2013-01-17 13:16:44 +01:00
|
|
|
static const struct option long_options[] = {
|
2013-12-21 11:25:03 +01:00
|
|
|
{ "epgimages", required_argument, NULL, 'e' },
|
|
|
|
{ "iconpath", required_argument, NULL, 'i' },
|
2013-01-17 13:16:44 +01:00
|
|
|
{ "logopath", required_argument, NULL, 'l' },
|
|
|
|
{ 0, 0, 0, 0 }
|
|
|
|
};
|
|
|
|
int c;
|
2013-12-21 11:25:03 +01:00
|
|
|
while ((c = getopt_long(argc, argv, "e:i:l:", long_options, NULL)) != -1) {
|
2013-05-26 11:38:05 +02:00
|
|
|
switch (c) {
|
2013-12-21 11:25:03 +01:00
|
|
|
case 'e':
|
|
|
|
tvguideConfig.SetImagesPath(cString(optarg));
|
2013-01-17 13:16:44 +01:00
|
|
|
break;
|
2013-12-21 11:25:03 +01:00
|
|
|
case 'i':
|
|
|
|
tvguideConfig.SetIconsPath(cString(optarg));
|
|
|
|
break;
|
2013-01-17 13:16:44 +01:00
|
|
|
case 'l':
|
2013-12-21 11:25:03 +01:00
|
|
|
tvguideConfig.SetLogoPath(cString(optarg));
|
2013-01-17 13:16:44 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-07 15:51:50 +01:00
|
|
|
bool cPluginTvguide::Initialize(void) {
|
2013-12-21 11:25:03 +01:00
|
|
|
tvguideConfig.SetDefaultPathes();
|
|
|
|
tvguideConfig.LoadTheme();
|
|
|
|
tvguideConfig.SetStyle();
|
|
|
|
tvguideConfig.setDynamicValues();
|
|
|
|
geoManager.SetGeometry(cOsd::OsdWidth(), cOsd::OsdHeight());
|
|
|
|
fontManager.SetFonts();
|
|
|
|
imgCache.CreateCache();
|
2013-12-07 15:51:50 +01:00
|
|
|
return true;
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
bool cPluginTvguide::Start(void) {
|
2013-05-26 11:38:05 +02:00
|
|
|
return true;
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
void cPluginTvguide::Stop(void) {
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
void cPluginTvguide::Housekeeping(void) {
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
void cPluginTvguide::MainThreadHook(void) {
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
cString cPluginTvguide::Active(void) {
|
2013-01-17 13:16:44 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
time_t cPluginTvguide::WakeupTime(void) {
|
2013-01-17 13:16:44 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
cOsdObject *cPluginTvguide::MainMenuAction(void) {
|
|
|
|
return new cTvGuideOsd;
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
cMenuSetupPage *cPluginTvguide::SetupMenu(void) {
|
2013-01-17 13:16:44 +01:00
|
|
|
return new cTvguideSetup();
|
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
bool cPluginTvguide::SetupParse(const char *Name, const char *Value) {
|
2013-01-17 13:16:44 +01:00
|
|
|
return tvguideConfig.SetupParse(Name, Value);
|
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
bool cPluginTvguide::Service(const char *Id, void *Data) {
|
2013-07-12 16:27:29 +02:00
|
|
|
if (strcmp(Id, "MainMenuHooksPatch-v1.0::osSchedule") == 0 && tvguideConfig.replaceOriginalSchedule != 0) {
|
|
|
|
if (Data == NULL)
|
|
|
|
return true;
|
2013-07-12 17:23:16 +02:00
|
|
|
cOsdObject **guide = (cOsdObject**) Data;
|
|
|
|
if (guide)
|
|
|
|
*guide = MainMenuAction();
|
2013-07-12 16:27:29 +02:00
|
|
|
return true;
|
|
|
|
}
|
2013-01-17 13:16:44 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
const char **cPluginTvguide::SVDRPHelpPages(void) {
|
2013-01-17 13:16:44 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
cString cPluginTvguide::SVDRPCommand(const char *Command, const char *Option, int &ReplyCode) {
|
2013-01-17 13:16:44 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
VDRPLUGINCREATOR(cPluginTvguide);
|