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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
|
/*
* vdrboblight.c
*
* Copyright (C) 2013 - Christian Völlinger
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <vdr/plugin.h>
#include "config.h"
#include "ambiservice.h"
#include "ambithread.h"
//***************************************************************************
//
//***************************************************************************
static const char *VERSION = "0.0.2";
static const char *DESCRIPTION = "Boblight with data from softhddevice";
static const char *MAINMENUENTRY = "Boblight";
//***************************************************************************
// Setup
//***************************************************************************
class cAmbiSetup : public cMenuSetupPage, public cAmbiService
{
public:
cAmbiSetup();
protected:
virtual void Setup();
virtual eOSState ProcessKey(eKeys Key);
virtual void Store();
const char* cineBars[cbCount];
const char* seduRGBOrders[6];
int rgbOrderIndex;
};
//***************************************************************************
// Plugin
//***************************************************************************
class cPluginBoblight : public cPlugin
{
public:
cPluginBoblight(void);
virtual ~cPluginBoblight();
virtual const char* Version(void) { return VERSION; }
virtual const char* Description(void) { return DESCRIPTION; }
virtual const char* CommandLineHelp(void) { return 0; }
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);
virtual const char* MainMenuEntry(void) { return cfg.showMainmenu ? MAINMENUENTRY : 0; }
virtual cOsdObject* MainMenuAction(void);
virtual cMenuSetupPage* SetupMenu(void) { return new cAmbiSetup; }
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);
int startAtmo();
int stopAtmo();
cAmbiThread* update;
int isRunning()
{
if (!update)
return no;
return update->isRunning();
}
};
//***************************************************************************
// Plugins Main Menu
//***************************************************************************
class cSeduPluginMenu : public cMenuSetupPage
{
public:
cSeduPluginMenu(const char* title, cPluginBoblight* aPlugin);
virtual ~cSeduPluginMenu() { };
virtual eOSState ProcessKey(eKeys key);
protected:
void Store() { }
cPluginBoblight* plugin;
};
cSeduPluginMenu::cSeduPluginMenu(const char* title, cPluginBoblight* aPlugin)
{
SetTitle(title ? title : "");
plugin = aPlugin;
Clear();
cOsdMenu::Add(new cMenuEditStraItem(tr("View Mode"),
(int*)&cfg.viewMode,
(int)cAmbiService::vmCount,
cAmbiService::viewModes));
Add(new cMenuEditIntItem(tr("Fixed Color Red"), &cfg.fixedR, 0, 255));
Add(new cMenuEditIntItem(tr("Fixed Color Green"), &cfg.fixedG, 0, 255));
Add(new cMenuEditIntItem(tr("Fixed Color Blue"), &cfg.fixedB, 0, 255));
SetHelp(0, 0, 0, 0);
Display();
}
//***************************************************************************
// Process Key
//***************************************************************************
eOSState cSeduPluginMenu::ProcessKey(eKeys key)
{
eOSState state = cOsdMenu::ProcessKey(key);
if (key == kLeft || key == kRight)
{
if (cfg.viewMode == cAmbiService::vmDetached && plugin->isRunning())
plugin->stopAtmo();
else if (cfg.viewMode != cAmbiService::vmDetached && !plugin->isRunning())
plugin->startAtmo();
}
if (state != osUnknown)
return state;
if (key == kOk)
{
SetupStore("FixedColorRed", cfg.fixedR);
SetupStore("FixedColorGreen", cfg.fixedG);
SetupStore("FixedColorBlue", cfg.fixedB);
SetupStore("ViewMode", (int)cfg.viewMode);
return osEnd;
}
return state;
}
//***************************************************************************
// Plugin
//***************************************************************************
cPluginBoblight::cPluginBoblight(void)
{
update = 0;
}
cPluginBoblight::~cPluginBoblight()
{
stopAtmo();
}
bool cPluginBoblight::ProcessArgs(int argc, char* argv[])
{
return true;
}
bool cPluginBoblight::Initialize(void)
{
return true;
}
bool cPluginBoblight::Start(void)
{
startAtmo();
return true;
}
int cPluginBoblight::startAtmo()
{
if (update)
{
update->Stop();
delete update;
}
update = new cAmbiThread();
update->Start();
return done;
}
int cPluginBoblight::stopAtmo()
{
if (update)
update->Stop();
delete update;
update = 0;
return done;
}
void cPluginBoblight::Stop(void)
{
stopAtmo();
}
cString cPluginBoblight::Active(void)
{
return 0;
}
time_t cPluginBoblight::WakeupTime(void)
{
return 0;
}
cOsdObject* cPluginBoblight::MainMenuAction(void)
{
return new cSeduPluginMenu(MAINMENUENTRY, this);
}
bool cPluginBoblight::SetupParse(const char* Name, const char* Value)
{
if (!strcasecmp(Name, "LogLevel")) cfg.loglevel = atoi(Value);
else if (!strcasecmp(Name, "ShowMainmenu")) cfg.showMainmenu = atoi(Value);
else if (!strcasecmp(Name, "ViewMode")) cfg.viewMode = (cAmbiService::ViewMode)atoi(Value);
else if (!strcasecmp(Name, "DetectCineBars")) cfg.detectCineBars = (cAmbiService::Cinebars)atoi(Value);
else if (!strcasecmp(Name, "Frequence")) cfg.frequence = atoi(Value);
else if (!strcasecmp(Name, "Threshold")) cfg.threshold = atoi(Value);
else if (!strcasecmp(Name, "Value")) cfg.value = atoi(Value);
else if (!strcasecmp(Name, "Saturation")) cfg.saturation = atoi(Value);
else if (!strcasecmp(Name, "Speed")) cfg.speed = atoi(Value);
else if (!strcasecmp(Name, "Autospeed")) cfg.autospeed = atoi(Value);
else if (!strcasecmp(Name, "Interpolation")) cfg.interpolation = atoi(Value);
else if (!strcasecmp(Name, "Priority")) cfg.priority = atoi(Value);
else if (!strcasecmp(Name, "FixedColorRed")) cfg.fixedR = atoi(Value);
else if (!strcasecmp(Name, "FixedColorGreen")) cfg.fixedG = atoi(Value);
else if (!strcasecmp(Name, "FixedColorBlue")) cfg.fixedB = atoi(Value);
else
return false;
return true;
}
bool cPluginBoblight::Service(const char* Id, void* Data)
{
return false;
}
cString cPluginBoblight::SVDRPCommand(const char* Command, const char* Option, int &ReplyCode)
{
if (!update)
return "Error: Plugin not initialized!";
if (!strcasecmp(Command, "MODE"))
{
if (Option && strcasecmp(Option, "atmo") == 0)
{
cfg.viewMode = cAmbiService::vmAtmo;
startAtmo();
ReplyCode = 550;
return "atmo mode activated";
}
else if (Option && strcasecmp(Option, "fixed") == 0)
{
cfg.viewMode = cAmbiService::vmFixedCol;
startAtmo();
ReplyCode = 550;
return "fixed color activated";
}
else if (Option && strcasecmp(Option, "black") == 0)
{
cfg.viewMode = cAmbiService::vmBlack;
startAtmo();
ReplyCode = 550;
return "stripes black";
}
else if (Option && strcasecmp(Option, "detach") == 0)
{
cfg.viewMode = cAmbiService::vmDetached;
stopAtmo();
ReplyCode = 550;
return "stripes detached";
}
else
{
ReplyCode = 901;
return "Error: Unexpected option";
}
}
return 0;
}
const char** cPluginBoblight::SVDRPHelpPages(void)
{
static const char* HelpPages[] =
{
"MODE <mode>\n"
" Set mode {atmo|fixed|black|detach}\n",
0
};
return HelpPages;
}
//***************************************************************************
// Class Setup Menu
//***************************************************************************
//***************************************************************************
// Object
//***************************************************************************
cAmbiSetup::cAmbiSetup()
{
cineBars[0] = "Horizontal";
cineBars[1] = "Vertical";
cineBars[2] = "Both";
Setup();
}
//***************************************************************************
// Setup
//***************************************************************************
void cAmbiSetup::Setup()
{
Clear();
Add(new cMenuEditIntItem(tr("Log level"), &cfg.loglevel, 0, 3));
Add(new cMenuEditBoolItem(tr("Show mainmenu"), &cfg.showMainmenu));
Add(new cMenuEditIntItem(tr("Updaterate [Hz]"), &cfg.frequence, 1, 100));
Add(new cMenuEditStraItem(tr("Detect cinema bars"), (int*)&cfg.detectCineBars, 3, cineBars));
Add(new cMenuEditIntItem(tr("Threshold (0-255)"), &cfg.threshold, 0, 255));
Add(new cMenuEditIntItem(tr("Gamma (0-10.0)"), &cfg.gamma, 0, 100));
Add(new cMenuEditIntItem(tr("Value (0-20.0)"), &cfg.value, 0, 200));
Add(new cMenuEditIntItem(tr("Saturation (0-20.0)"), &cfg.saturation, 0, 200));
Add(new cMenuEditIntItem(tr("Speed (0-100)"), &cfg.speed, 0, 100));
Add(new cMenuEditIntItem(tr("Autospeed (0-100)"), &cfg.autospeed, 0, 100));
Add(new cMenuEditBoolItem(tr("Interpolation"), &cfg.interpolation));
Add(new cMenuEditIntItem(tr("Priority 0=Highest, 255=Lowest"), &cfg.priority, 0, 255));
}
eOSState cAmbiSetup::ProcessKey(eKeys key)
{
eOSState state = cMenuSetupPage::ProcessKey(key);
return state;
}
void cAmbiSetup::Store()
{
cfg.dirty = 1;
SetupStore("LogLevel", cfg.loglevel);
SetupStore("ShowMainmenu", cfg.showMainmenu);
SetupStore("ViewMode", (int)cfg.viewMode);
SetupStore("DetectCineBars", cfg.detectCineBars);
SetupStore("Updaterate", cfg.frequence);
SetupStore("Threshold", cfg.threshold);
SetupStore("Gamma", cfg.gamma);
SetupStore("Value", cfg.value);
SetupStore("Saturation", cfg.saturation);
SetupStore("Speed", cfg.speed);
SetupStore("Autospeed", cfg.autospeed);
SetupStore("Interpolation", cfg.interpolation);
SetupStore("Priority", cfg.priority);
SetupStore("FixedColorRed", cfg.fixedR);
SetupStore("FixedColorGreen", cfg.fixedG);
SetupStore("FixedColorBlue", cfg.fixedB);
}
//***************************************************************************
// VDR Internal
//***************************************************************************
VDRPLUGINCREATOR(cPluginBoblight);
|