mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
91 lines
3.1 KiB
C
91 lines
3.1 KiB
C
/*
|
|
* $Id: setup.c,v 1.10 2010/06/08 05:55:17 schmirl Exp $
|
|
*/
|
|
|
|
#include <vdr/menuitems.h>
|
|
|
|
#include "client/setup.h"
|
|
#include "client/device.h"
|
|
|
|
cStreamdevClientSetup StreamdevClientSetup;
|
|
|
|
cStreamdevClientSetup::cStreamdevClientSetup(void) {
|
|
StartClient = false;
|
|
RemotePort = 2004;
|
|
StreamFilters = false;
|
|
HideMenuEntry = false;
|
|
MinPriority = -1;
|
|
MaxPriority = MAXPRIORITY;
|
|
#if APIVERSNUM >= 10700
|
|
NumProvidedSystems = 1;
|
|
#endif
|
|
strcpy(RemoteIp, "");
|
|
}
|
|
|
|
bool cStreamdevClientSetup::SetupParse(const char *Name, const char *Value) {
|
|
if (strcmp(Name, "StartClient") == 0) StartClient = atoi(Value);
|
|
else if (strcmp(Name, "RemoteIp") == 0) {
|
|
if (strcmp(Value, "-none-") == 0)
|
|
strcpy(RemoteIp, "");
|
|
else
|
|
strcpy(RemoteIp, Value);
|
|
}
|
|
else if (strcmp(Name, "RemotePort") == 0) RemotePort = atoi(Value);
|
|
else if (strcmp(Name, "StreamFilters") == 0) StreamFilters = atoi(Value);
|
|
else if (strcmp(Name, "HideMenuEntry") == 0) HideMenuEntry = atoi(Value);
|
|
else if (strcmp(Name, "MinPriority") == 0) MinPriority = atoi(Value);
|
|
else if (strcmp(Name, "MaxPriority") == 0) MaxPriority = atoi(Value);
|
|
#if APIVERSNUM >= 10700
|
|
else if (strcmp(Name, "NumProvidedSystems") == 0) NumProvidedSystems = atoi(Value);
|
|
#endif
|
|
else return false;
|
|
return true;
|
|
}
|
|
|
|
cStreamdevClientMenuSetupPage::cStreamdevClientMenuSetupPage(void) {
|
|
m_NewSetup = StreamdevClientSetup;
|
|
|
|
Add(new cMenuEditBoolItem(tr("Hide Mainmenu Entry"), &m_NewSetup.HideMenuEntry));
|
|
Add(new cMenuEditBoolItem(tr("Start Client"), &m_NewSetup.StartClient));
|
|
Add(new cMenuEditIpItem (tr("Remote IP"), m_NewSetup.RemoteIp));
|
|
Add(new cMenuEditIntItem (tr("Remote Port"), &m_NewSetup.RemotePort, 0, 65535));
|
|
Add(new cMenuEditBoolItem(tr("Filter Streaming"), &m_NewSetup.StreamFilters));
|
|
Add(new cMenuEditIntItem (tr("Minimum Priority"), &m_NewSetup.MinPriority, -1, MAXPRIORITY));
|
|
Add(new cMenuEditIntItem (tr("Maximum Priority"), &m_NewSetup.MaxPriority, -1, MAXPRIORITY));
|
|
#if APIVERSNUM >= 10715
|
|
Add(new cMenuEditIntItem (tr("Broadcast Systems / Cost"), &m_NewSetup.NumProvidedSystems, 1, 15));
|
|
#elif APIVERSNUM >= 10700
|
|
Add(new cMenuEditIntItem (tr("Broadcast Systems / Cost"), &m_NewSetup.NumProvidedSystems, 1, 4));
|
|
#endif
|
|
SetCurrent(Get(0));
|
|
}
|
|
|
|
cStreamdevClientMenuSetupPage::~cStreamdevClientMenuSetupPage() {
|
|
}
|
|
|
|
void cStreamdevClientMenuSetupPage::Store(void) {
|
|
if (m_NewSetup.StartClient != StreamdevClientSetup.StartClient) {
|
|
if (m_NewSetup.StartClient)
|
|
cStreamdevDevice::Init();
|
|
}
|
|
|
|
SetupStore("StartClient", m_NewSetup.StartClient);
|
|
if (strcmp(m_NewSetup.RemoteIp, "") == 0)
|
|
SetupStore("RemoteIp", "-none-");
|
|
else
|
|
SetupStore("RemoteIp", m_NewSetup.RemoteIp);
|
|
SetupStore("RemotePort", m_NewSetup.RemotePort);
|
|
SetupStore("StreamFilters", m_NewSetup.StreamFilters);
|
|
SetupStore("HideMenuEntry", m_NewSetup.HideMenuEntry);
|
|
SetupStore("MinPriority", m_NewSetup.MinPriority);
|
|
SetupStore("MaxPriority", m_NewSetup.MaxPriority);
|
|
#if APIVERSNUM >= 10700
|
|
SetupStore("NumProvidedSystems", m_NewSetup.NumProvidedSystems);
|
|
#endif
|
|
|
|
StreamdevClientSetup = m_NewSetup;
|
|
|
|
cStreamdevDevice::ReInit();
|
|
}
|
|
|