2000-02-19 13:36:48 +01:00
|
|
|
/*
|
|
|
|
* menu.c: The actual menu implementations
|
|
|
|
*
|
2000-04-24 09:46:05 +02:00
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
2000-02-19 13:36:48 +01:00
|
|
|
* how to reach the author.
|
|
|
|
*
|
2000-08-06 07:05:19 +02:00
|
|
|
* $Id: menu.c 1.22 2000/08/06 07:02:52 kls Exp $
|
2000-02-19 13:36:48 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "menu.h"
|
2000-07-24 16:43:04 +02:00
|
|
|
#include <ctype.h>
|
2000-02-19 13:36:48 +01:00
|
|
|
#include <limits.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "config.h"
|
2000-03-11 11:22:37 +01:00
|
|
|
#include "recording.h"
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-05-01 16:29:46 +02:00
|
|
|
#define MENUTIMEOUT 120 // seconds
|
|
|
|
|
2000-07-16 15:02:33 +02:00
|
|
|
const char *FileNameChars = " aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ0123456789-.#^";
|
2000-02-19 13:36:48 +01:00
|
|
|
|
|
|
|
// --- cMenuEditItem ---------------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuEditItem : public cOsdItem {
|
|
|
|
private:
|
|
|
|
const char *name;
|
|
|
|
const char *value;
|
|
|
|
public:
|
|
|
|
cMenuEditItem(const char *Name);
|
|
|
|
~cMenuEditItem();
|
|
|
|
void SetValue(const char *Value);
|
|
|
|
};
|
|
|
|
|
|
|
|
cMenuEditItem::cMenuEditItem(const char *Name)
|
|
|
|
{
|
|
|
|
name = strdup(Name);
|
|
|
|
value = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
cMenuEditItem::~cMenuEditItem()
|
|
|
|
{
|
|
|
|
delete name;
|
|
|
|
delete value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cMenuEditItem::SetValue(const char *Value)
|
|
|
|
{
|
|
|
|
delete value;
|
|
|
|
value = strdup(Value);
|
|
|
|
char *buffer = NULL;
|
|
|
|
asprintf(&buffer, "%s:\t%s", name, value);
|
|
|
|
SetText(buffer, false);
|
|
|
|
Display();
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- cMenuEditIntItem ------------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuEditIntItem : public cMenuEditItem {
|
|
|
|
protected:
|
|
|
|
int *value;
|
|
|
|
int min, max;
|
|
|
|
virtual void Set(void);
|
|
|
|
public:
|
|
|
|
cMenuEditIntItem(const char *Name, int *Value, int Min = 0, int Max = INT_MAX);
|
2000-03-11 11:22:37 +01:00
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
cMenuEditIntItem::cMenuEditIntItem(const char *Name, int *Value, int Min, int Max)
|
|
|
|
:cMenuEditItem(Name)
|
|
|
|
{
|
|
|
|
value = Value;
|
|
|
|
min = Min;
|
|
|
|
max = Max;
|
|
|
|
Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cMenuEditIntItem::Set(void)
|
|
|
|
{
|
|
|
|
char buf[16];
|
|
|
|
snprintf(buf, sizeof(buf), "%d", *value);
|
|
|
|
SetValue(buf);
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState cMenuEditIntItem::ProcessKey(eKeys Key)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState state = cMenuEditItem::ProcessKey(Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
if (state == osUnknown) {
|
2000-02-19 13:36:48 +01:00
|
|
|
int newValue;
|
|
|
|
if (k0 <= Key && Key <= k9) {
|
|
|
|
if (fresh) {
|
|
|
|
*value = 0;
|
|
|
|
fresh = false;
|
|
|
|
}
|
|
|
|
newValue = *value * 10 + (Key - k0);
|
|
|
|
}
|
|
|
|
else if (Key == kLeft) { // TODO might want to increase the delta if repeated quickly?
|
|
|
|
newValue = *value - 1;
|
|
|
|
fresh = true;
|
|
|
|
}
|
|
|
|
else if (Key == kRight) {
|
|
|
|
newValue = *value + 1;
|
|
|
|
fresh = true;
|
|
|
|
}
|
|
|
|
else
|
2000-03-11 11:22:37 +01:00
|
|
|
return state;
|
2000-02-19 13:36:48 +01:00
|
|
|
if ((!fresh || min <= newValue) && newValue <= max) {
|
|
|
|
*value = newValue;
|
|
|
|
Set();
|
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
state = osContinue;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
return state;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- cMenuEditBoolItem -----------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuEditBoolItem : public cMenuEditIntItem {
|
|
|
|
protected:
|
|
|
|
virtual void Set(void);
|
|
|
|
public:
|
|
|
|
cMenuEditBoolItem(const char *Name, int *Value);
|
|
|
|
};
|
|
|
|
|
|
|
|
cMenuEditBoolItem::cMenuEditBoolItem(const char *Name, int *Value)
|
|
|
|
:cMenuEditIntItem(Name, Value, 0, 1)
|
|
|
|
{
|
|
|
|
Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cMenuEditBoolItem::Set(void)
|
|
|
|
{
|
|
|
|
char buf[16];
|
|
|
|
snprintf(buf, sizeof(buf), "%s", *value ? "yes" : "no");
|
|
|
|
SetValue(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- cMenuEditChanItem -----------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuEditChanItem : public cMenuEditIntItem {
|
|
|
|
protected:
|
|
|
|
virtual void Set(void);
|
|
|
|
public:
|
|
|
|
cMenuEditChanItem(const char *Name, int *Value);
|
|
|
|
};
|
|
|
|
|
|
|
|
cMenuEditChanItem::cMenuEditChanItem(const char *Name, int *Value)
|
|
|
|
:cMenuEditIntItem(Name, Value, 1, Channels.Count())
|
|
|
|
{
|
|
|
|
Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cMenuEditChanItem::Set(void)
|
|
|
|
{
|
|
|
|
char buf[255];
|
|
|
|
cChannel *channel = Channels.Get(*value - 1);
|
|
|
|
if (channel)
|
|
|
|
snprintf(buf, sizeof(buf), "%d %s", *value, channel->name);
|
|
|
|
else
|
|
|
|
*buf = 0;
|
|
|
|
SetValue(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- cMenuEditDayItem ------------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuEditDayItem : public cMenuEditIntItem {
|
|
|
|
protected:
|
|
|
|
static int days[];
|
|
|
|
int d;
|
|
|
|
virtual void Set(void);
|
|
|
|
public:
|
|
|
|
cMenuEditDayItem(const char *Name, int *Value);
|
2000-03-11 11:22:37 +01:00
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
int cMenuEditDayItem::days[] ={ cTimer::ParseDay("M------"),
|
|
|
|
cTimer::ParseDay("-T-----"),
|
|
|
|
cTimer::ParseDay("--W----"),
|
|
|
|
cTimer::ParseDay("---T---"),
|
|
|
|
cTimer::ParseDay("----F--"),
|
|
|
|
cTimer::ParseDay("-----S-"),
|
|
|
|
cTimer::ParseDay("------S"),
|
|
|
|
cTimer::ParseDay("MTWTF--"),
|
|
|
|
cTimer::ParseDay("MTWTFS-"),
|
|
|
|
cTimer::ParseDay("MTWTFSS"),
|
|
|
|
cTimer::ParseDay("-----SS"),
|
|
|
|
0 };
|
|
|
|
|
|
|
|
cMenuEditDayItem::cMenuEditDayItem(const char *Name, int *Value)
|
|
|
|
:cMenuEditIntItem(Name, Value, -INT_MAX, 31)
|
|
|
|
{
|
|
|
|
d = -1;
|
|
|
|
if (*value < 0) {
|
|
|
|
int n = 0;
|
|
|
|
while (days[n]) {
|
|
|
|
if (days[n] == *value) {
|
|
|
|
d = n;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cMenuEditDayItem::Set(void)
|
|
|
|
{
|
|
|
|
SetValue(cTimer::PrintDay(*value));
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState cMenuEditDayItem::ProcessKey(eKeys Key)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
|
|
|
switch (Key) {
|
|
|
|
case kLeft: if (d > 0)
|
|
|
|
*value = days[--d];
|
|
|
|
else if (d == 0) {
|
|
|
|
*value = 31;
|
|
|
|
d = -1;
|
|
|
|
}
|
|
|
|
else if (*value == 1) {
|
|
|
|
d = sizeof(days) / sizeof(int) - 2;
|
|
|
|
*value = days[d];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return cMenuEditIntItem::ProcessKey(Key);
|
|
|
|
Set();
|
|
|
|
break;
|
|
|
|
case kRight: if (d >= 0) {
|
|
|
|
*value = days[++d];
|
|
|
|
if (*value == 0) {
|
|
|
|
*value = 1;
|
|
|
|
d = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (*value == 31) {
|
|
|
|
d = 0;
|
|
|
|
*value = days[d];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return cMenuEditIntItem::ProcessKey(Key);
|
|
|
|
Set();
|
|
|
|
break;
|
|
|
|
default : return cMenuEditIntItem::ProcessKey(Key);
|
|
|
|
}
|
|
|
|
return osContinue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- cMenuEditTimeItem -----------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuEditTimeItem : public cMenuEditItem {
|
|
|
|
protected:
|
|
|
|
int *value;
|
|
|
|
int hh, mm;
|
|
|
|
int pos;
|
|
|
|
virtual void Set(void);
|
|
|
|
public:
|
|
|
|
cMenuEditTimeItem(const char *Name, int *Value);
|
2000-03-11 11:22:37 +01:00
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
cMenuEditTimeItem::cMenuEditTimeItem(const char *Name, int *Value)
|
|
|
|
:cMenuEditItem(Name)
|
|
|
|
{
|
|
|
|
value = Value;
|
|
|
|
hh = *value / 100;
|
|
|
|
mm = *value % 100;
|
|
|
|
pos = 0;
|
|
|
|
Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cMenuEditTimeItem::Set(void)
|
|
|
|
{
|
|
|
|
char buf[10];
|
|
|
|
snprintf(buf, sizeof(buf), "%02d:%02d", hh, mm);
|
|
|
|
SetValue(buf);
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState cMenuEditTimeItem::ProcessKey(eKeys Key)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState state = cMenuEditItem::ProcessKey(Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
if (state == osUnknown) {
|
2000-02-19 13:36:48 +01:00
|
|
|
if (k0 <= Key && Key <= k9) {
|
|
|
|
if (fresh || pos > 3) {
|
|
|
|
pos = 0;
|
|
|
|
fresh = false;
|
|
|
|
}
|
|
|
|
int n = Key - k0;
|
|
|
|
switch (pos) {
|
|
|
|
case 0: if (n <= 2) {
|
|
|
|
hh = n * 10;
|
|
|
|
mm = 0;
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1: if (hh + n <= 23) {
|
|
|
|
hh += n;
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2: if (n <= 5) {
|
|
|
|
mm += n * 10;
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3: if (mm + n <= 59) {
|
|
|
|
mm += n;
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (Key == kLeft) { // TODO might want to increase the delta if repeated quickly?
|
|
|
|
if (--mm < 0) {
|
|
|
|
mm = 59;
|
|
|
|
if (--hh < 0)
|
|
|
|
hh = 23;
|
|
|
|
}
|
|
|
|
fresh = true;
|
|
|
|
}
|
|
|
|
else if (Key == kRight) {
|
|
|
|
if (++mm > 59) {
|
|
|
|
mm = 0;
|
|
|
|
if (++hh > 23)
|
|
|
|
hh = 0;
|
|
|
|
}
|
|
|
|
fresh = true;
|
|
|
|
}
|
|
|
|
else
|
2000-03-11 11:22:37 +01:00
|
|
|
return state;
|
2000-02-19 13:36:48 +01:00
|
|
|
*value = hh * 100 + mm;
|
|
|
|
Set();
|
2000-03-11 11:22:37 +01:00
|
|
|
state = osContinue;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
return state;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- cMenuEditChrItem ------------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuEditChrItem : public cMenuEditItem {
|
|
|
|
private:
|
|
|
|
char *value;
|
|
|
|
const char *allowed;
|
|
|
|
const char *current;
|
|
|
|
virtual void Set(void);
|
|
|
|
public:
|
|
|
|
cMenuEditChrItem(const char *Name, char *Value, const char *Allowed);
|
|
|
|
~cMenuEditChrItem();
|
2000-03-11 11:22:37 +01:00
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
cMenuEditChrItem::cMenuEditChrItem(const char *Name, char *Value, const char *Allowed)
|
|
|
|
:cMenuEditItem(Name)
|
|
|
|
{
|
|
|
|
value = Value;
|
|
|
|
allowed = strdup(Allowed);
|
|
|
|
current = strchr(allowed, *Value);
|
|
|
|
if (!current)
|
|
|
|
current = allowed;
|
|
|
|
Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
cMenuEditChrItem::~cMenuEditChrItem()
|
|
|
|
{
|
|
|
|
delete allowed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cMenuEditChrItem::Set(void)
|
|
|
|
{
|
|
|
|
char buf[2];
|
|
|
|
snprintf(buf, sizeof(buf), "%c", *value);
|
|
|
|
SetValue(buf);
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState cMenuEditChrItem::ProcessKey(eKeys Key)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState state = cMenuEditItem::ProcessKey(Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
if (state == osUnknown) {
|
2000-02-19 13:36:48 +01:00
|
|
|
if (Key == kLeft) {
|
|
|
|
if (current > allowed)
|
|
|
|
current--;
|
|
|
|
}
|
|
|
|
else if (Key == kRight) {
|
|
|
|
if (*(current + 1))
|
|
|
|
current++;
|
|
|
|
}
|
|
|
|
else
|
2000-03-11 11:22:37 +01:00
|
|
|
return state;
|
2000-02-19 13:36:48 +01:00
|
|
|
*value = *current;
|
|
|
|
Set();
|
2000-03-11 11:22:37 +01:00
|
|
|
state = osContinue;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
return state;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- cMenuEditStrItem ------------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuEditStrItem : public cMenuEditItem {
|
|
|
|
private:
|
|
|
|
char *value;
|
|
|
|
int length;
|
|
|
|
const char *allowed;
|
|
|
|
int pos;
|
|
|
|
virtual void Set(void);
|
|
|
|
char Inc(char c, bool Up);
|
|
|
|
public:
|
|
|
|
cMenuEditStrItem(const char *Name, char *Value, int Length, const char *Allowed);
|
|
|
|
~cMenuEditStrItem();
|
2000-03-11 11:22:37 +01:00
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
cMenuEditStrItem::cMenuEditStrItem(const char *Name, char *Value, int Length, const char *Allowed)
|
|
|
|
:cMenuEditItem(Name)
|
|
|
|
{
|
|
|
|
value = Value;
|
|
|
|
length = Length;
|
|
|
|
allowed = strdup(Allowed);
|
|
|
|
pos = -1;
|
|
|
|
Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
cMenuEditStrItem::~cMenuEditStrItem()
|
|
|
|
{
|
|
|
|
delete allowed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cMenuEditStrItem::Set(void)
|
|
|
|
{
|
|
|
|
char buf[1000];
|
|
|
|
if (pos >= 0) {
|
|
|
|
strncpy(buf, value, pos);
|
2000-07-16 15:02:33 +02:00
|
|
|
const char *s = value[pos] != '^' ? value + pos + 1 : "";
|
2000-02-19 13:36:48 +01:00
|
|
|
snprintf(buf + pos, sizeof(buf) - pos - 2, "[%c]%s", *(value + pos), s);
|
|
|
|
SetValue(buf);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
SetValue(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
char cMenuEditStrItem::Inc(char c, bool Up)
|
|
|
|
{
|
|
|
|
const char *p = strchr(allowed, c);
|
|
|
|
if (!p)
|
|
|
|
p = allowed;
|
|
|
|
if (Up) {
|
|
|
|
if (!*++p)
|
|
|
|
p = allowed;
|
|
|
|
}
|
|
|
|
else if (--p < allowed)
|
|
|
|
p = allowed + strlen(allowed) - 1;
|
|
|
|
return *p;
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState cMenuEditStrItem::ProcessKey(eKeys Key)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
|
|
|
switch (Key) {
|
|
|
|
case kLeft: if (pos > 0) {
|
2000-07-16 15:02:33 +02:00
|
|
|
if (value[pos] == '^')
|
2000-02-19 13:36:48 +01:00
|
|
|
value[pos] = 0;
|
|
|
|
pos--;
|
|
|
|
}
|
|
|
|
break;
|
2000-07-16 15:02:33 +02:00
|
|
|
case kRight: if (pos < length && value[pos] != '^' && (pos < int(strlen(value) - 1) || value[pos] != ' ')) {
|
2000-02-19 13:36:48 +01:00
|
|
|
if (++pos >= int(strlen(value))) {
|
|
|
|
value[pos] = ' ';
|
|
|
|
value[pos + 1] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case kUp:
|
|
|
|
case kDown: if (pos >= 0)
|
|
|
|
value[pos] = Inc(value[pos], Key == kUp);
|
|
|
|
else
|
|
|
|
return cMenuEditItem::ProcessKey(Key);
|
|
|
|
break;
|
|
|
|
case kOk: if (pos >= 0) {
|
2000-07-16 15:02:33 +02:00
|
|
|
if (value[pos] == '^')
|
2000-02-19 13:36:48 +01:00
|
|
|
value[pos] = 0;
|
|
|
|
pos = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// run into default
|
|
|
|
default: return cMenuEditItem::ProcessKey(Key);
|
|
|
|
}
|
|
|
|
Set();
|
|
|
|
return osContinue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- cMenuEditChannel ------------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuEditChannel : public cOsdMenu {
|
|
|
|
private:
|
|
|
|
cChannel *channel;
|
|
|
|
cChannel data;
|
|
|
|
public:
|
|
|
|
cMenuEditChannel(int Index);
|
2000-03-11 11:22:37 +01:00
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
cMenuEditChannel::cMenuEditChannel(int Index)
|
2000-03-11 11:22:37 +01:00
|
|
|
:cOsdMenu("Edit Channel", 14)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
|
|
|
channel = Channels.Get(Index);
|
|
|
|
if (channel) {
|
|
|
|
data = *channel;
|
2000-04-15 17:38:11 +02:00
|
|
|
Add(new cMenuEditStrItem( "Name", data.name, sizeof(data.name), FileNameChars));
|
|
|
|
Add(new cMenuEditIntItem( "Frequency", &data.frequency, 10000, 13000)); //TODO exact limits???
|
|
|
|
Add(new cMenuEditChrItem( "Polarization", &data.polarization, "hv"));
|
|
|
|
Add(new cMenuEditIntItem( "Diseqc", &data.diseqc, 0, 10)); //TODO exact limits???
|
|
|
|
Add(new cMenuEditIntItem( "Srate", &data.srate, 22000, 27500)); //TODO exact limits - toggle???
|
|
|
|
Add(new cMenuEditIntItem( "Vpid", &data.vpid, 0, 10000)); //TODO exact limits???
|
|
|
|
Add(new cMenuEditIntItem( "Apid", &data.apid, 0, 10000)); //TODO exact limits???
|
2000-05-27 16:13:39 +02:00
|
|
|
Add(new cMenuEditIntItem( "CA", &data.ca, 0, cDvbApi::NumDvbApis));
|
2000-08-06 07:05:19 +02:00
|
|
|
Add(new cMenuEditIntItem( "Pnr", &data.pnr, 0));
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState cMenuEditChannel::ProcessKey(eKeys Key)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState state = cOsdMenu::ProcessKey(Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
if (state == osUnknown) {
|
2000-02-19 13:36:48 +01:00
|
|
|
if (Key == kOk) {
|
|
|
|
if (channel)
|
|
|
|
*channel = data;
|
|
|
|
Channels.Save();
|
2000-03-11 11:22:37 +01:00
|
|
|
state = osBack;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
return state;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- cMenuChannelItem ------------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuChannelItem : public cOsdItem {
|
|
|
|
private:
|
|
|
|
int index;
|
|
|
|
cChannel *channel;
|
|
|
|
public:
|
|
|
|
cMenuChannelItem(int Index, cChannel *Channel);
|
|
|
|
virtual void Set(void);
|
2000-03-11 11:22:37 +01:00
|
|
|
void SetIndex(int Index);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
cMenuChannelItem::cMenuChannelItem(int Index, cChannel *Channel)
|
|
|
|
{
|
|
|
|
index = Index;
|
|
|
|
channel = Channel;
|
|
|
|
Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cMenuChannelItem::Set(void)
|
|
|
|
{
|
|
|
|
char *buffer = NULL;
|
|
|
|
asprintf(&buffer, "%d\t%s", index + 1, channel->name); // user visible channel numbers start with '1'
|
|
|
|
SetText(buffer, false);
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
void cMenuChannelItem::SetIndex(int Index)
|
|
|
|
{
|
|
|
|
index = Index;
|
|
|
|
Set();
|
|
|
|
}
|
|
|
|
|
2000-02-19 13:36:48 +01:00
|
|
|
// --- cMenuChannels ---------------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuChannels : public cOsdMenu {
|
2000-03-11 11:22:37 +01:00
|
|
|
protected:
|
|
|
|
eOSState Switch(void);
|
|
|
|
eOSState Edit(void);
|
|
|
|
eOSState New(void);
|
|
|
|
eOSState Del(void);
|
|
|
|
virtual void Move(int From, int To);
|
2000-02-19 13:36:48 +01:00
|
|
|
public:
|
|
|
|
cMenuChannels(void);
|
2000-03-11 11:22:37 +01:00
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
cMenuChannels::cMenuChannels(void)
|
|
|
|
:cOsdMenu("Channels", 4)
|
|
|
|
{
|
|
|
|
//TODO
|
|
|
|
int i = 0;
|
|
|
|
cChannel *channel;
|
|
|
|
|
|
|
|
while ((channel = Channels.Get(i)) != NULL) {
|
|
|
|
Add(new cMenuChannelItem(i, channel), i == CurrentChannel);
|
|
|
|
i++;
|
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
SetHelp("Edit", "New", "Delete", "Mark");
|
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cMenuChannels::Switch(void)
|
|
|
|
{
|
|
|
|
cChannel *ch = Channels.Get(Current());
|
|
|
|
if (ch)
|
|
|
|
ch->Switch();
|
|
|
|
return osEnd;
|
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cMenuChannels::Edit(void)
|
|
|
|
{
|
|
|
|
if (HasSubMenu() || Count() == 0)
|
|
|
|
return osContinue;
|
2000-04-15 17:38:11 +02:00
|
|
|
isyslog(LOG_INFO, "editing channel %d", Current() + 1);
|
2000-03-11 11:22:37 +01:00
|
|
|
return AddSubMenu(new cMenuEditChannel(Current()));
|
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cMenuChannels::New(void)
|
|
|
|
{
|
|
|
|
if (HasSubMenu())
|
|
|
|
return osContinue;
|
|
|
|
cChannel *channel = new cChannel(Channels.Get(Current()));
|
|
|
|
Channels.Add(channel);
|
|
|
|
Add(new cMenuChannelItem(channel->Index()/*XXX*/, channel), true);
|
|
|
|
Channels.Save();
|
|
|
|
isyslog(LOG_INFO, "channel %d added", channel->Index() + 1);
|
|
|
|
return AddSubMenu(new cMenuEditChannel(Current()));
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState cMenuChannels::Del(void)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-03-11 11:22:37 +01:00
|
|
|
if (Count() > 0) {
|
|
|
|
int Index = Current();
|
|
|
|
// Check if there is a timer using this channel:
|
|
|
|
for (cTimer *ti = Timers.First(); ti; ti = (cTimer *)ti->Next()) {
|
|
|
|
if (ti->channel == Index + 1) {
|
|
|
|
Interface.Error("Channel is being used by a timer!");
|
|
|
|
return osContinue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Interface.Confirm("Delete Channel?")) {
|
|
|
|
// Move and renumber the channels:
|
|
|
|
Channels.Del(Channels.Get(Index));
|
|
|
|
cOsdMenu::Del(Index);
|
|
|
|
int i = 0;
|
|
|
|
for (cMenuChannelItem *ci = (cMenuChannelItem *)First(); ci; ci = (cMenuChannelItem *)ci->Next())
|
|
|
|
ci->SetIndex(i++);
|
|
|
|
Channels.Save();
|
|
|
|
isyslog(LOG_INFO, "channel %d deleted", Index + 1);
|
|
|
|
// Fix the timers:
|
|
|
|
bool TimersModified = false;
|
|
|
|
Index++; // user visible channel numbers start with '1'
|
|
|
|
for (cTimer *ti = Timers.First(); ti; ti = (cTimer *)ti->Next()) {
|
|
|
|
int OldChannel = ti->channel;
|
|
|
|
if (ti->channel > Index)
|
|
|
|
ti->channel--;
|
|
|
|
if (ti->channel != OldChannel) {
|
|
|
|
TimersModified = true;
|
|
|
|
isyslog(LOG_INFO, "timer %d: channel changed from %d to %d", ti->Index() + 1, OldChannel, ti->channel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (TimersModified)
|
|
|
|
Timers.Save();
|
|
|
|
Display();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return osContinue;
|
|
|
|
}
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
void cMenuChannels::Move(int From, int To)
|
|
|
|
{
|
|
|
|
// Move and renumber the channels:
|
|
|
|
Channels.Move(From, To);
|
|
|
|
cOsdMenu::Move(From, To);
|
|
|
|
int i = 0;
|
|
|
|
for (cMenuChannelItem *ci = (cMenuChannelItem *)First(); ci; ci = (cMenuChannelItem *)ci->Next())
|
|
|
|
ci->SetIndex(i++);
|
|
|
|
Channels.Save();
|
|
|
|
isyslog(LOG_INFO, "channel %d moved to %d", From + 1, To + 1);
|
|
|
|
// Fix the timers:
|
|
|
|
bool TimersModified = false;
|
|
|
|
From++; // user visible channel numbers start with '1'
|
|
|
|
To++;
|
|
|
|
for (cTimer *ti = Timers.First(); ti; ti = (cTimer *)ti->Next()) {
|
|
|
|
int OldChannel = ti->channel;
|
|
|
|
if (ti->channel == From)
|
|
|
|
ti->channel = To;
|
|
|
|
else if (ti->channel > From && ti->channel <= To)
|
|
|
|
ti->channel--;
|
|
|
|
else if (ti->channel < From && ti->channel >= To)
|
|
|
|
ti->channel++;
|
|
|
|
if (ti->channel != OldChannel) {
|
|
|
|
TimersModified = true;
|
|
|
|
isyslog(LOG_INFO, "timer %d: channel changed from %d to %d", ti->Index() + 1, OldChannel, ti->channel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (TimersModified)
|
|
|
|
Timers.Save();
|
|
|
|
Display();
|
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cMenuChannels::ProcessKey(eKeys Key)
|
|
|
|
{
|
|
|
|
eOSState state = cOsdMenu::ProcessKey(Key);
|
|
|
|
|
|
|
|
if (state == osUnknown) {
|
2000-02-19 13:36:48 +01:00
|
|
|
switch (Key) {
|
2000-03-11 11:22:37 +01:00
|
|
|
case kOk: return Switch();
|
|
|
|
case kRed: return Edit();
|
|
|
|
case kGreen: return New();
|
|
|
|
case kYellow: return Del();
|
|
|
|
case kBlue: Mark(); break;
|
2000-02-19 13:36:48 +01:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
return state;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-07-24 16:43:04 +02:00
|
|
|
// --- cMenuSummary --------------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuSummary : public cOsdMenu {
|
|
|
|
public:
|
|
|
|
cMenuSummary(const char *Text);
|
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
|
|
|
};
|
|
|
|
|
|
|
|
cMenuSummary::cMenuSummary(const char *Text)
|
|
|
|
:cOsdMenu("Summary")
|
|
|
|
{
|
|
|
|
while (*Text) {
|
|
|
|
char line[MenuColumns + 1];
|
|
|
|
char *p = line;
|
|
|
|
const char *b = NULL;
|
|
|
|
*p++ = ' ';
|
|
|
|
while (*Text && p - line < MenuColumns - 2) {
|
|
|
|
if (isspace(*Text))
|
|
|
|
b = Text; // remember the blank
|
|
|
|
if (*Text == '\n')
|
|
|
|
break;
|
|
|
|
*p++ = *Text++;
|
|
|
|
}
|
|
|
|
if (*Text) {
|
|
|
|
if (b && Text - b > 0) {
|
|
|
|
p -= Text - b;
|
|
|
|
Text = b + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Text++;
|
|
|
|
}
|
|
|
|
*p = 0;
|
|
|
|
Add(new cOsdItem(line, osBack));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cMenuSummary::ProcessKey(eKeys Key)
|
|
|
|
{
|
|
|
|
eOSState state = cOsdMenu::ProcessKey(Key);
|
|
|
|
|
|
|
|
if (state == osUnknown)
|
|
|
|
state = osContinue;
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2000-02-19 13:36:48 +01:00
|
|
|
// --- cMenuEditTimer --------------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuEditTimer : public cOsdMenu {
|
|
|
|
private:
|
|
|
|
cTimer *timer;
|
|
|
|
cTimer data;
|
|
|
|
public:
|
2000-04-15 17:38:11 +02:00
|
|
|
cMenuEditTimer(int Index, bool New = false);
|
2000-03-11 11:22:37 +01:00
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
cMenuEditTimer::cMenuEditTimer(int Index, bool New)
|
2000-03-11 11:22:37 +01:00
|
|
|
:cOsdMenu("Edit Timer", 10)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
|
|
|
timer = Timers.Get(Index);
|
|
|
|
if (timer) {
|
|
|
|
data = *timer;
|
2000-04-15 17:38:11 +02:00
|
|
|
if (New)
|
|
|
|
data.active = 1;
|
2000-02-19 13:36:48 +01:00
|
|
|
Add(new cMenuEditBoolItem("Active", &data.active));
|
|
|
|
Add(new cMenuEditChanItem("Channel", &data.channel));
|
|
|
|
Add(new cMenuEditDayItem( "Day", &data.day));
|
|
|
|
Add(new cMenuEditTimeItem("Start", &data.start));
|
|
|
|
Add(new cMenuEditTimeItem("Stop", &data.stop));
|
|
|
|
//TODO VPS???
|
|
|
|
Add(new cMenuEditIntItem( "Priority", &data.priority, 0, 99));
|
|
|
|
Add(new cMenuEditIntItem( "Lifetime", &data.lifetime, 0, 99));
|
|
|
|
Add(new cMenuEditStrItem( "File", data.file, sizeof(data.file), FileNameChars));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState cMenuEditTimer::ProcessKey(eKeys Key)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState state = cOsdMenu::ProcessKey(Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
if (state == osUnknown) {
|
2000-02-19 13:36:48 +01:00
|
|
|
if (Key == kOk) {
|
2000-03-11 11:22:37 +01:00
|
|
|
if (!*data.file)
|
2000-05-01 16:29:46 +02:00
|
|
|
strcpy(data.file, cChannel::GetChannelName(data.channel - 1));
|
2000-02-19 13:36:48 +01:00
|
|
|
if (timer && memcmp(timer, &data, sizeof(data)) != 0) {
|
|
|
|
*timer = data;
|
|
|
|
Timers.Save();
|
|
|
|
isyslog(LOG_INFO, "timer %d modified (%s)", timer->Index() + 1, timer->active ? "active" : "inactive");
|
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
state = osBack;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
return state;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- cMenuTimerItem --------------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuTimerItem : public cOsdItem {
|
|
|
|
private:
|
|
|
|
int index;
|
|
|
|
cTimer *timer;
|
|
|
|
public:
|
|
|
|
cMenuTimerItem(int Index, cTimer *Timer);
|
|
|
|
virtual void Set(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
cMenuTimerItem::cMenuTimerItem(int Index, cTimer *Timer)
|
|
|
|
{
|
|
|
|
index = Index;
|
|
|
|
timer = Timer;
|
|
|
|
Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cMenuTimerItem::Set(void)
|
|
|
|
{
|
|
|
|
char *buffer = NULL;
|
2000-03-11 11:22:37 +01:00
|
|
|
asprintf(&buffer, "%c\t%d\t%s\t%02d:%02d\t%02d:%02d\t%s",
|
2000-02-19 13:36:48 +01:00
|
|
|
timer->active ? '>' : ' ',
|
|
|
|
timer->channel,
|
|
|
|
timer->PrintDay(timer->day),
|
|
|
|
timer->start / 100,
|
|
|
|
timer->start % 100,
|
|
|
|
timer->stop / 100,
|
2000-03-11 11:22:37 +01:00
|
|
|
timer->stop % 100,
|
|
|
|
timer->file);
|
2000-02-19 13:36:48 +01:00
|
|
|
SetText(buffer, false);
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
// --- cMenuTimers -----------------------------------------------------------
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
class cMenuTimers : public cOsdMenu {
|
|
|
|
private:
|
|
|
|
eOSState Activate(bool On);
|
|
|
|
eOSState Edit(void);
|
|
|
|
eOSState New(void);
|
|
|
|
eOSState Del(void);
|
|
|
|
virtual void Move(int From, int To);
|
2000-07-24 16:43:04 +02:00
|
|
|
eOSState Summary(void);
|
2000-02-19 13:36:48 +01:00
|
|
|
public:
|
2000-03-11 11:22:37 +01:00
|
|
|
cMenuTimers(void);
|
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
cMenuTimers::cMenuTimers(void)
|
|
|
|
:cOsdMenu("Timer", 2, 4, 10, 6, 6)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
cTimer *timer;
|
|
|
|
|
|
|
|
while ((timer = Timers.Get(i)) != NULL) {
|
|
|
|
Add(new cMenuTimerItem(i, timer));
|
|
|
|
i++;
|
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
SetHelp("Edit", "New", "Delete", "Mark");
|
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cMenuTimers::Activate(bool On)
|
|
|
|
{
|
|
|
|
cTimer *timer = Timers.Get(Current());
|
|
|
|
if (timer && timer->active != On) {
|
|
|
|
timer->active = On;
|
|
|
|
RefreshCurrent();
|
|
|
|
DisplayCurrent(true);
|
|
|
|
isyslog(LOG_INFO, "timer %d %sactivated", timer->Index() + 1, timer->active ? "" : "de");
|
|
|
|
Timers.Save();
|
|
|
|
}
|
|
|
|
return osContinue;
|
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cMenuTimers::Edit(void)
|
|
|
|
{
|
|
|
|
if (HasSubMenu() || Count() == 0)
|
|
|
|
return osContinue;
|
|
|
|
isyslog(LOG_INFO, "editing timer %d", Current() + 1);
|
|
|
|
return AddSubMenu(new cMenuEditTimer(Current()));
|
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cMenuTimers::New(void)
|
|
|
|
{
|
|
|
|
if (HasSubMenu())
|
|
|
|
return osContinue;
|
|
|
|
cTimer *timer = new cTimer;
|
|
|
|
Timers.Add(timer);
|
|
|
|
Add(new cMenuTimerItem(timer->Index()/*XXX*/, timer), true);
|
|
|
|
Timers.Save();
|
|
|
|
isyslog(LOG_INFO, "timer %d added", timer->Index() + 1);
|
2000-04-15 17:38:11 +02:00
|
|
|
return AddSubMenu(new cMenuEditTimer(Current(), true));
|
2000-03-11 11:22:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cMenuTimers::Del(void)
|
|
|
|
{
|
|
|
|
// Check if this timer is active:
|
|
|
|
int Index = Current();
|
|
|
|
cTimer *ti = Timers.Get(Index);
|
|
|
|
if (ti) {
|
|
|
|
if (!ti->recording) {
|
|
|
|
if (Interface.Confirm("Delete Timer?")) {
|
|
|
|
Timers.Del(Timers.Get(Index));
|
|
|
|
cOsdMenu::Del(Index);
|
|
|
|
Timers.Save();
|
|
|
|
Display();
|
|
|
|
isyslog(LOG_INFO, "timer %d deleted", Index + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Interface.Error("Timer is recording!");
|
|
|
|
}
|
|
|
|
return osContinue;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
void cMenuTimers::Move(int From, int To)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-03-11 11:22:37 +01:00
|
|
|
Timers.Move(From, To);
|
|
|
|
cOsdMenu::Move(From, To);
|
|
|
|
Timers.Save();
|
|
|
|
Display();
|
|
|
|
isyslog(LOG_INFO, "timer %d moved to %d", From + 1, To + 1);
|
|
|
|
}
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-07-24 16:43:04 +02:00
|
|
|
eOSState cMenuTimers::Summary(void)
|
|
|
|
{
|
|
|
|
if (HasSubMenu() || Count() == 0)
|
|
|
|
return osContinue;
|
|
|
|
cTimer *ti = Timers.Get(Current());
|
|
|
|
if (ti && ti->summary && *ti->summary)
|
|
|
|
return AddSubMenu(new cMenuSummary(ti->summary));
|
|
|
|
return Edit(); // convenience for people not using the Summary feature ;-)
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState cMenuTimers::ProcessKey(eKeys Key)
|
|
|
|
{
|
|
|
|
eOSState state = cOsdMenu::ProcessKey(Key);
|
|
|
|
|
|
|
|
if (state == osUnknown) {
|
2000-02-19 13:36:48 +01:00
|
|
|
switch (Key) {
|
|
|
|
case kLeft:
|
2000-03-11 11:22:37 +01:00
|
|
|
case kRight: return Activate(Key == kRight);
|
2000-07-24 16:43:04 +02:00
|
|
|
case kOk: return Summary();
|
2000-03-11 11:22:37 +01:00
|
|
|
case kRed: return Edit();
|
|
|
|
case kGreen: return New();
|
|
|
|
case kYellow: return Del();
|
|
|
|
case kBlue: Mark(); break;
|
2000-02-19 13:36:48 +01:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- cMenuRecordingItem ----------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuRecordingItem : public cOsdItem {
|
|
|
|
public:
|
|
|
|
cRecording *recording;
|
|
|
|
cMenuRecordingItem(cRecording *Recording);
|
|
|
|
virtual void Set(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
cMenuRecordingItem::cMenuRecordingItem(cRecording *Recording)
|
|
|
|
{
|
|
|
|
recording = Recording;
|
|
|
|
Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cMenuRecordingItem::Set(void)
|
|
|
|
{
|
2000-04-23 15:38:16 +02:00
|
|
|
SetText(recording->Title('\t'));
|
2000-03-11 11:22:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- cMenuRecordings -------------------------------------------------------
|
|
|
|
|
|
|
|
class cMenuRecordings : public cOsdMenu {
|
|
|
|
private:
|
|
|
|
cRecordings Recordings;
|
|
|
|
eOSState Play(void);
|
|
|
|
eOSState Del(void);
|
2000-07-24 16:43:04 +02:00
|
|
|
eOSState Summary(void);
|
2000-03-11 11:22:37 +01:00
|
|
|
public:
|
|
|
|
cMenuRecordings(void);
|
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
|
|
|
};
|
|
|
|
|
|
|
|
cMenuRecordings::cMenuRecordings(void)
|
2000-07-16 13:46:05 +02:00
|
|
|
:cOsdMenu("Recordings", 9, 6)
|
2000-03-11 11:22:37 +01:00
|
|
|
{
|
|
|
|
if (Recordings.Load()) {
|
|
|
|
cRecording *recording = Recordings.First();
|
|
|
|
while (recording) {
|
|
|
|
Add(new cMenuRecordingItem(recording));
|
|
|
|
recording = Recordings.Next(recording);
|
|
|
|
}
|
|
|
|
}
|
2000-07-24 16:43:04 +02:00
|
|
|
SetHelp("Play", NULL/*XXX"Resume"*/, "Delete", "Summary");
|
2000-03-11 11:22:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cMenuRecordings::Play(void)
|
|
|
|
{
|
|
|
|
cMenuRecordingItem *ri = (cMenuRecordingItem *)Get(Current());
|
|
|
|
if (ri) {
|
2000-04-29 15:57:42 +02:00
|
|
|
cReplayControl::SetRecording(ri->recording->FileName(), ri->recording->Title());
|
|
|
|
return osReplay;
|
2000-03-11 11:22:37 +01:00
|
|
|
}
|
|
|
|
return osContinue;
|
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cMenuRecordings::Del(void)
|
|
|
|
{
|
|
|
|
cMenuRecordingItem *ri = (cMenuRecordingItem *)Get(Current());
|
|
|
|
if (ri) {
|
|
|
|
//XXX what if this recording's file is currently in use???
|
|
|
|
//XXX if (!ti->recording) {
|
|
|
|
if (Interface.Confirm("Delete Recording?")) {
|
|
|
|
if (ri->recording->Delete()) {
|
|
|
|
cOsdMenu::Del(Current());
|
|
|
|
Display();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Interface.Error("Error while deleting recording!");
|
|
|
|
}
|
|
|
|
//XXX }
|
|
|
|
//XXX else
|
|
|
|
//XXX Interface.Error("Timer is recording!");
|
|
|
|
}
|
|
|
|
return osContinue;
|
|
|
|
}
|
|
|
|
|
2000-07-24 16:43:04 +02:00
|
|
|
eOSState cMenuRecordings::Summary(void)
|
|
|
|
{
|
|
|
|
if (HasSubMenu() || Count() == 0)
|
|
|
|
return osContinue;
|
|
|
|
cMenuRecordingItem *ri = (cMenuRecordingItem *)Get(Current());
|
|
|
|
if (ri && ri->recording->Summary() && *ri->recording->Summary())
|
|
|
|
return AddSubMenu(new cMenuSummary(ri->recording->Summary()));
|
|
|
|
return osContinue;
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState cMenuRecordings::ProcessKey(eKeys Key)
|
|
|
|
{
|
|
|
|
eOSState state = cOsdMenu::ProcessKey(Key);
|
|
|
|
|
|
|
|
if (state == osUnknown) {
|
|
|
|
switch (Key) {
|
|
|
|
case kOk:
|
|
|
|
case kRed: return Play();
|
|
|
|
case kYellow: return Del();
|
2000-07-24 16:43:04 +02:00
|
|
|
case kBlue: return Summary();
|
2000-03-11 11:22:37 +01:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return state;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- cMenuMain -------------------------------------------------------------
|
|
|
|
|
2000-05-01 16:29:46 +02:00
|
|
|
#define STOP_RECORDING "Stop recording "
|
|
|
|
|
|
|
|
cMenuMain::cMenuMain(bool Replaying)
|
2000-02-19 13:36:48 +01:00
|
|
|
:cOsdMenu("Main")
|
|
|
|
{
|
|
|
|
Add(new cOsdItem("Channels", osChannels));
|
|
|
|
Add(new cOsdItem("Timer", osTimer));
|
|
|
|
Add(new cOsdItem("Recordings", osRecordings));
|
2000-05-01 16:29:46 +02:00
|
|
|
if (Replaying)
|
|
|
|
Add(new cOsdItem("Stop replaying", osStopReplay));
|
|
|
|
const char *s = NULL;
|
|
|
|
while ((s = cRecordControls::GetInstantId(s)) != NULL) {
|
|
|
|
char *buffer = NULL;
|
|
|
|
asprintf(&buffer, "%s%s", STOP_RECORDING, s);
|
|
|
|
Add(new cOsdItem(buffer, osStopRecord));
|
|
|
|
delete buffer;
|
|
|
|
}
|
2000-05-27 16:10:47 +02:00
|
|
|
SetHelp("Record");
|
2000-04-30 10:22:13 +02:00
|
|
|
Display();
|
2000-05-01 16:29:46 +02:00
|
|
|
lastActivity = time(NULL);
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState cMenuMain::ProcessKey(eKeys Key)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState state = cOsdMenu::ProcessKey(Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
switch (state) {
|
|
|
|
case osChannels: return AddSubMenu(new cMenuChannels);
|
|
|
|
case osTimer: return AddSubMenu(new cMenuTimers);
|
|
|
|
case osRecordings: return AddSubMenu(new cMenuRecordings);
|
2000-05-01 16:29:46 +02:00
|
|
|
case osStopRecord: if (Interface.Confirm("Stop Recording?")) {
|
|
|
|
cOsdItem *item = Get(Current());
|
|
|
|
if (item) {
|
|
|
|
cRecordControls::Stop(item->Text() + strlen(STOP_RECORDING));
|
|
|
|
return osEnd;
|
|
|
|
}
|
|
|
|
}
|
2000-05-27 16:10:47 +02:00
|
|
|
default: switch (Key) {
|
|
|
|
case kMenu: state = osEnd; break;
|
|
|
|
case kRed: if (!HasSubMenu())
|
|
|
|
state = osRecord;
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
2000-05-01 16:29:46 +02:00
|
|
|
if (Key != kNone)
|
|
|
|
lastActivity = time(NULL);
|
|
|
|
else if (time(NULL) - lastActivity > MENUTIMEOUT)
|
|
|
|
state = osEnd;
|
2000-03-11 11:22:37 +01:00
|
|
|
return state;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-04-30 10:22:13 +02:00
|
|
|
// --- cRecordControl --------------------------------------------------------
|
|
|
|
|
2000-05-01 16:29:46 +02:00
|
|
|
cRecordControl::cRecordControl(cDvbApi *DvbApi, cTimer *Timer)
|
2000-04-30 10:22:13 +02:00
|
|
|
{
|
2000-05-01 16:29:46 +02:00
|
|
|
instantId = NULL;
|
|
|
|
dvbApi = DvbApi;
|
|
|
|
if (!dvbApi) dvbApi = cDvbApi::PrimaryDvbApi;//XXX
|
2000-04-30 10:22:13 +02:00
|
|
|
timer = Timer;
|
|
|
|
if (!timer) {
|
|
|
|
timer = new cTimer(true);
|
|
|
|
Timers.Add(timer);
|
|
|
|
Timers.Save();
|
2000-05-01 16:29:46 +02:00
|
|
|
asprintf(&instantId, cDvbApi::NumDvbApis > 1 ? "%s on %d" : "%s", cChannel::GetChannelName(timer->channel - 1), dvbApi->Index() + 1);
|
2000-04-30 10:22:13 +02:00
|
|
|
}
|
|
|
|
timer->SetRecording(true);
|
2000-05-01 16:29:46 +02:00
|
|
|
cChannel::SwitchTo(timer->channel - 1, dvbApi);
|
2000-04-30 10:22:13 +02:00
|
|
|
cRecording Recording(timer);
|
2000-07-24 16:43:04 +02:00
|
|
|
if (dvbApi->StartRecord(Recording.FileName()))
|
|
|
|
Recording.WriteSummary();
|
2000-05-07 09:28:39 +02:00
|
|
|
Interface.DisplayRecording(dvbApi->Index(), true);
|
2000-04-30 10:22:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cRecordControl::~cRecordControl()
|
|
|
|
{
|
2000-04-30 11:15:16 +02:00
|
|
|
Stop(true);
|
2000-05-01 16:29:46 +02:00
|
|
|
delete instantId;
|
2000-05-07 09:28:39 +02:00
|
|
|
Interface.DisplayRecording(dvbApi->Index(), false);
|
2000-04-30 11:15:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void cRecordControl::Stop(bool KeepInstant)
|
|
|
|
{
|
|
|
|
if (timer) {
|
2000-05-01 16:29:46 +02:00
|
|
|
dvbApi->StopRecord();
|
2000-04-30 11:15:16 +02:00
|
|
|
timer->SetRecording(false);
|
2000-05-01 16:29:46 +02:00
|
|
|
if ((IsInstant() && !KeepInstant) || (timer->IsSingleEvent() && !timer->Matches())) {
|
2000-04-30 11:15:16 +02:00
|
|
|
// checking timer->Matches() to make sure we don't delete the timer
|
|
|
|
// if the program was cancelled before the timer's stop time!
|
|
|
|
isyslog(LOG_INFO, "deleting timer %d", timer->Index() + 1);
|
|
|
|
Timers.Del(timer);
|
|
|
|
Timers.Save();
|
|
|
|
}
|
|
|
|
timer = NULL;
|
2000-04-30 10:22:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-01 16:29:46 +02:00
|
|
|
bool cRecordControl::Process(void)
|
2000-04-30 10:22:13 +02:00
|
|
|
{
|
2000-05-01 16:29:46 +02:00
|
|
|
if (!timer || !timer->Matches())
|
|
|
|
return false;
|
2000-04-30 10:22:13 +02:00
|
|
|
AssertFreeDiskSpace();
|
2000-05-01 16:29:46 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- cRecordControls -------------------------------------------------------
|
|
|
|
|
|
|
|
cRecordControl *cRecordControls::RecordControls[MAXDVBAPI] = { NULL };
|
|
|
|
|
|
|
|
bool cRecordControls::Start(cTimer *Timer)
|
|
|
|
{
|
|
|
|
int ch = Timer ? Timer->channel - 1 : CurrentChannel;
|
|
|
|
cChannel *channel = Channels.Get(ch);
|
|
|
|
|
|
|
|
if (channel) {
|
|
|
|
cDvbApi *dvbApi = cDvbApi::GetDvbApi(channel->ca);
|
|
|
|
if (dvbApi) {
|
|
|
|
for (int i = 0; i < MAXDVBAPI; i++) {
|
|
|
|
if (!RecordControls[i]) {
|
|
|
|
RecordControls[i] = new cRecordControl(dvbApi, Timer);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2000-07-16 10:55:45 +02:00
|
|
|
esyslog(LOG_ERR, "ERROR: no free DVB device to record channel %d!", ch + 1);
|
2000-05-01 16:29:46 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
esyslog(LOG_ERR, "ERROR: channel %d not defined!", ch + 1);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cRecordControls::Stop(const char *InstantId)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < MAXDVBAPI; i++) {
|
|
|
|
if (RecordControls[i]) {
|
|
|
|
const char *id = RecordControls[i]->InstantId();
|
|
|
|
if (id && strcmp(id, InstantId) == 0)
|
|
|
|
RecordControls[i]->Stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *cRecordControls::GetInstantId(const char *LastInstantId)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < MAXDVBAPI; i++) {
|
|
|
|
if (RecordControls[i]) {
|
|
|
|
if (!LastInstantId && RecordControls[i]->InstantId())
|
|
|
|
return RecordControls[i]->InstantId();
|
|
|
|
if (LastInstantId && LastInstantId == RecordControls[i]->InstantId())
|
|
|
|
LastInstantId = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cRecordControls::Process(void)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < MAXDVBAPI; i++) {
|
|
|
|
if (RecordControls[i]) {
|
|
|
|
if (!RecordControls[i]->Process())
|
|
|
|
DELETENULL(RecordControls[i]);
|
|
|
|
}
|
|
|
|
}
|
2000-04-30 10:22:13 +02:00
|
|
|
}
|
|
|
|
|
2000-04-29 15:57:42 +02:00
|
|
|
// --- cReplayControl --------------------------------------------------------
|
|
|
|
|
|
|
|
char *cReplayControl::fileName = NULL;
|
|
|
|
char *cReplayControl::title = NULL;
|
|
|
|
|
|
|
|
cReplayControl::cReplayControl(void)
|
|
|
|
{
|
2000-05-01 16:29:46 +02:00
|
|
|
dvbApi = cDvbApi::PrimaryDvbApi;//XXX
|
2000-04-29 15:57:42 +02:00
|
|
|
visible = shown = false;
|
|
|
|
if (fileName)
|
2000-05-01 16:29:46 +02:00
|
|
|
dvbApi->StartReplay(fileName, title);
|
2000-04-29 15:57:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cReplayControl::~cReplayControl()
|
|
|
|
{
|
|
|
|
Hide();
|
2000-07-30 16:14:22 +02:00
|
|
|
dvbApi->Stop();
|
2000-04-29 15:57:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void cReplayControl::SetRecording(const char *FileName, const char *Title)
|
|
|
|
{
|
|
|
|
delete fileName;
|
|
|
|
delete title;
|
|
|
|
fileName = FileName ? strdup(FileName) : NULL;
|
|
|
|
title = Title ? strdup(Title) : NULL;
|
|
|
|
}
|
2000-04-23 15:38:16 +02:00
|
|
|
|
2000-04-29 15:57:42 +02:00
|
|
|
void cReplayControl::Show(void)
|
2000-04-23 15:38:16 +02:00
|
|
|
{
|
2000-04-29 15:57:42 +02:00
|
|
|
if (!visible) {
|
|
|
|
Interface.Open(MenuColumns, -3);
|
2000-04-30 10:22:13 +02:00
|
|
|
needsFastResponse = visible = true;
|
2000-05-01 16:29:46 +02:00
|
|
|
shown = dvbApi->ShowProgress(true);
|
2000-04-29 15:57:42 +02:00
|
|
|
}
|
2000-04-23 15:38:16 +02:00
|
|
|
}
|
|
|
|
|
2000-04-29 15:57:42 +02:00
|
|
|
void cReplayControl::Hide(void)
|
2000-04-23 15:38:16 +02:00
|
|
|
{
|
2000-04-29 15:57:42 +02:00
|
|
|
if (visible) {
|
|
|
|
Interface.Close();
|
2000-04-30 10:22:13 +02:00
|
|
|
needsFastResponse = visible = false;
|
2000-04-29 15:57:42 +02:00
|
|
|
}
|
2000-04-23 15:38:16 +02:00
|
|
|
}
|
|
|
|
|
2000-04-29 15:57:42 +02:00
|
|
|
eOSState cReplayControl::ProcessKey(eKeys Key)
|
2000-04-23 15:38:16 +02:00
|
|
|
{
|
2000-05-01 16:29:46 +02:00
|
|
|
if (!dvbApi->Replaying())
|
2000-04-29 15:57:42 +02:00
|
|
|
return osEnd;
|
|
|
|
if (visible)
|
2000-05-01 16:29:46 +02:00
|
|
|
shown = dvbApi->ShowProgress(!shown) || shown;
|
2000-04-23 15:38:16 +02:00
|
|
|
switch (Key) {
|
2000-07-30 16:14:22 +02:00
|
|
|
case kUp: dvbApi->Play(); break;
|
|
|
|
case kDown: dvbApi->Pause(); break;
|
2000-05-27 16:10:47 +02:00
|
|
|
case kBlue: Hide();
|
2000-07-30 16:14:22 +02:00
|
|
|
dvbApi->Stop();
|
2000-05-27 16:10:47 +02:00
|
|
|
return osEnd;
|
2000-07-30 16:14:22 +02:00
|
|
|
case kLeft: dvbApi->Backward(); break;
|
|
|
|
case kRight: dvbApi->Forward(); break;
|
2000-05-27 16:10:47 +02:00
|
|
|
case kGreen: dvbApi->Skip(-60); break;
|
|
|
|
case kYellow: dvbApi->Skip(60); break;
|
|
|
|
case kMenu: Hide(); return osMenu; // allow direct switching to menu
|
|
|
|
case kOk: visible ? Hide() : Show(); break;
|
|
|
|
default: return osUnknown;
|
2000-04-23 15:38:16 +02:00
|
|
|
}
|
2000-04-29 15:57:42 +02:00
|
|
|
return osContinue;
|
2000-04-23 15:38:16 +02:00
|
|
|
}
|
|
|
|
|