1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
/**
* based on control.c,v 1.4 2007/06/18 17:58:52 lordjaxom
*
* version by Midas
*
*/
#include "control.h"
#include "config.h"
#include "common.h"
#include <vdr/remote.h>
inline uint64_t BlockTimeout() { return SetupBlock.MessageTimeout * 1000; }
bool cControlBlock::mRequested = false;
cControlBlock::cControlBlock(int LastChannel, const cChannel *Channel, const cEvent *Present, const cEvent *Following):
cControl(new cPlayer),
mLastChannel(LastChannel),
mChannel(Channel),
mPresent(Present),
mFollowing(Following),
mStart(0),
mSwitch(true),
mOsd(NULL)
{
#if APIVERSNUM >= 10500
SetNeedsFastResponse(true);
#else
needsFastResponse = true;
#endif
cRemote::Put(kBack,true); //Hide OSD new version
}
cControlBlock::~cControlBlock()
{
if (mOsd != NULL)
delete mOsd;
if (mRequested)
{
#ifdef LOGGING
dsyslog("plugin-block: userint user requested to watch blocked channel");
#endif
//if (mChannel!=0)
if (mChannel != NULL)
{
cDevice::PrimaryDevice()->SwitchChannel(mChannel, true);
}
else
{
//don't know if this is necessary - just taken from plugin taste
//seems that mChannel cannot be 0 because it is an object reference
//changed that to NULL
dsyslog("plugin-block: userint Cannot switch - channel unknown!");
}
}
if (mSwitch) {
// possibly first or last available channel, fall back to old channel
int direction = mChannel->Number() - mLastChannel;
if (direction == 0)
direction = 1;
if (!cDevice::SwitchChannel(direction) && (mLastChannel != 0))
Channels.SwitchTo(mLastChannel);
}
}
void cControlBlock::Show(void)
{
if (mOsd == NULL)
mOsd = Skins.Current()->DisplayChannel(true);
mOsd->SetChannel(mChannel, 0);
mOsd->SetEvents(mPresent, mFollowing);
mOsd->SetMessage(mtError, tr("Channel not acceptable!"));
mOsd->Flush();
mStart = time_ms();
}
eOSState cControlBlock::ProcessKey(eKeys Key)
{
#ifdef LOGGING
dsyslog("plugin-block: userint cControlBlock::ProcessKey(%d) this = %p", Key, this);
#endif
switch (Key) {
case kOk:
#ifdef LOGGING
dsyslog("plugin-block: userint Processing 'Ok' event");
#endif
mRequested = true;
mSwitch = false;
return osEnd;
case kNone:
#ifdef LOGGING
dsyslog("plugin-block: userint Processing kNone (no user interaction)");
#endif
if (mStart == 0)
Show();
else if (time_ms() - mStart > BlockTimeout()) {
mSwitch = true;
return osEnd;
}
return osContinue;
case kUp:
case kDown:
case kChanUp:
case kChanDn:
#ifdef LOGGING
dsyslog("plugin-block: userint Processing k(Ch)Up/(Ch)Down event.");
#endif
mRequested = false;
mSwitch = true;
return osEnd;
break;
default:
break;
}
return osContinue;
}
|