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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
|
/*
* seduatmo.c: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id: seduatmo.c,v 1.64 2012/11/28 06:29:24 wendel Exp $
*/
#include <getopt.h>
#include <vdr/plugin.h>
#include "HISTORY.h"
#include "seduthread.h"
#include "config.h"
#include "ledsconf.h"
//***************************************************************************
//
//***************************************************************************
static const char *DESCRIPTION = "sedu ambi light control with data from softhddevice";
static const char *MAINMENUENTRY = "Seduatmo";
//***************************************************************************
// Setup
//***************************************************************************
class cSeduSetup : public cMenuSetupPage, public cSeduService
{
public:
cSeduSetup();
protected:
virtual void Setup();
virtual eOSState ProcessKey(eKeys Key);
virtual void Store();
const char* seduModes[smCount];
const char* cineBars[cbCount];
const char* seduRGBOrders[6];
int rgbOrderIndex;
cSeduConfig data;
};
//***************************************************************************
// Plugin
//***************************************************************************
class cPluginSeduatmo : public cPlugin
{
public:
cPluginSeduatmo(void);
virtual ~cPluginSeduatmo();
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);
virtual const char* MainMenuEntry(void) { return cfg.showMainmenu ? MAINMENUENTRY : 0; }
virtual cOsdObject* MainMenuAction(void);
virtual cMenuSetupPage* SetupMenu(void) { return new cSeduSetup; }
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);
cString changeMode(const char* Option, int &ReplyCode);
int startAtmo();
int stopAtmo();
cSeduThread* update;
int isRunning()
{
if (!update)
return no;
return update->isRunning();
}
private:
cLedConfs ledConfs;
int autodetectDevice;
};
//***************************************************************************
// Plugins Main Menu
//***************************************************************************
class cSeduPluginMenu : public cMenuSetupPage
{
public:
cSeduPluginMenu(const char* title, cPluginSeduatmo* aPlugin);
virtual ~cSeduPluginMenu() { };
virtual eOSState ProcessKey(eKeys key);
protected:
void Store();
cPluginSeduatmo* plugin;
int effectSpeed;
};
cSeduPluginMenu::cSeduPluginMenu(const char* title, cPluginSeduatmo* aPlugin)
{
SetTitle(title ? title : "");
plugin = aPlugin;
effectSpeed = cfg.effectSpeed;
Clear();
cOsdMenu::Add(new cMenuEditStraItem(tr("View Mode"),
(int*)&cfg.viewMode,
(int)cSeduService::vmCount,
cSeduService::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));
Add(new cMenuEditIntItem(tr("Effect Speed [ms]"), &effectSpeed, 100, 5000));
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 == cSeduService::vmDetached && plugin->isRunning())
plugin->stopAtmo();
else if (cfg.viewMode != cSeduService::vmDetached && !plugin->isRunning())
plugin->startAtmo();
Display();
}
if (key == kOk)
{
cfg.effectSpeed = effectSpeed;
Store();
return osEnd;
}
return state;
}
void cSeduPluginMenu::Store()
{
plugin->SetupStore("FixedColorRed", cfg.fixedR);
plugin->SetupStore("FixedColorGreen", cfg.fixedG);
plugin->SetupStore("FixedColorBlue", cfg.fixedB);
plugin->SetupStore("ViewMode", (int)cfg.viewMode);
plugin->SetupStore("EffectSpeed", cfg.effectSpeed);
Setup.Save();
}
//***************************************************************************
// Plugin
//***************************************************************************
cPluginSeduatmo::cPluginSeduatmo()
{
update = 0;
autodetectDevice = no;
}
cPluginSeduatmo::~cPluginSeduatmo()
{
stopAtmo();
}
//***************************************************************************
// Process Args
//***************************************************************************
const char* cPluginSeduatmo::CommandLineHelp()
{
return
" -d, --autodetect try autodetect of tty device (need root rights)\n"
;
}
bool cPluginSeduatmo::ProcessArgs(int argc, char* argv[])
{
int c;
static option long_options[] =
{
{ "autodetect", no_argument, 0, 'd' },
{ 0, 0, 0, 0 }
};
// check the arguments
while ((c = getopt_long(argc, argv, "d", long_options, 0)) != -1)
{
switch (c)
{
case 'd': autodetectDevice = yes; break;
default: tell(0, "Ignoring unknown argument '%c' '%s'", c, optarg);
}
}
return true;
}
bool cPluginSeduatmo::Initialize(void)
{
char* tmp;
asprintf(&tmp, "%s/%s", cPlugin::ConfigDirectory("seduatmo"), "seduatmo.conf");
if (!ledConfs.Load(tmp, true))
{
free(tmp);
return false;
}
free(tmp);
cfg.createLeds(&ledConfs);
return true;
}
bool cPluginSeduatmo::Start(void)
{
startAtmo();
return true;
}
int cPluginSeduatmo::startAtmo()
{
if (update)
{
update->Stop();
delete update;
}
update = new cSeduThread(autodetectDevice);
if (cfg.grabWidth <= 0 || cfg.grabHeight <= 0 || !cfg.ledCount)
tell(0, "Error: Invalid configuration in seduatmo.conf, aborting");
else
update->Start();
return done;
}
int cPluginSeduatmo::stopAtmo()
{
if (update)
update->Stop();
delete update;
update = 0;
return done;
}
void cPluginSeduatmo::Stop(void)
{
stopAtmo();
}
cString cPluginSeduatmo::Active(void)
{
return 0;
}
time_t cPluginSeduatmo::WakeupTime(void)
{
return 0;
}
cOsdObject* cPluginSeduatmo::MainMenuAction(void)
{
return new cSeduPluginMenu(MAINMENUENTRY, this);
}
bool cPluginSeduatmo::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 = (cSeduService::ViewMode)atoi(Value);
else if (!strcasecmp(Name, "DetectCineBars")) cfg.detectCineBars = (cSeduService::Cinebars)atoi(Value);
else if (!strcasecmp(Name, "Threshold")) cfg.threshold = atoi(Value);
else if (!strcasecmp(Name, "Gamma")) cfg.gamma = atoi(Value);
else if (!strcasecmp(Name, "Frequence")) cfg.frequence = atoi(Value);
else if (!strcasecmp(Name, "Blacklevel")) cfg.black = atoi(Value);
else if (!strcasecmp(Name, "Smoothness")) cfg.average = atoi(Value);
else if (!strcasecmp(Name, "HorizontalDepth")) cfg.xDeep = atoi(Value);
else if (!strcasecmp(Name, "VerticalDepth")) cfg.yDeep = atoi(Value);
else if (!strcasecmp(Name, "LevelRed")) cfg.adjRed = atoi(Value);
else if (!strcasecmp(Name, "LevelGreen")) cfg.adjGreen = atoi(Value);
else if (!strcasecmp(Name, "LevelBlue")) cfg.adjBlue = 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 if (!strcasecmp(Name, "EffectSpeed")) cfg.effectSpeed = atoi(Value);
else if (!strcasecmp(Name, "SeduMode")) cfg.seduMode = (cSeduService::SeduMode)atoi(Value);
else if (!strcasecmp(Name, "SeduRGBOrder")) strcpy(cfg.seduRGBOrder, Value);
else
return false;
return true;
}
bool cPluginSeduatmo::Service(const char* Id, void* Data)
{
if (strcmp(Id, "SeduAtmo-ModeService-v1.0") == 0)
{
int ReplyCode = 0;
changeMode((const char*)Data, ReplyCode);
return true;
}
return false;
}
cString cPluginSeduatmo::SVDRPCommand(const char* Command, const char* Option, int &ReplyCode)
{
if (!strcasecmp(Command, "MODE"))
return changeMode(Option, ReplyCode);
return 0;
}
cString cPluginSeduatmo::changeMode(const char* Option, int &ReplyCode)
{
if (Option && strcasecmp(Option, "atmo") == 0)
{
cfg.viewMode = cSeduService::vmAtmo;
startAtmo();
ReplyCode = 550;
return "atmo mode activated";
}
else if (Option && strcasecmp(Option, "fixed") == 0)
{
cfg.viewMode = cSeduService::vmFixedCol;
startAtmo();
ReplyCode = 550;
return "fixed color activated";
}
else if (Option && strcasecmp(Option, "rainbow") == 0)
{
cfg.viewMode = cSeduService::vmRainbow;
startAtmo();
ReplyCode = 550;
return "rainbow effect activated";
}
else if (Option && strcasecmp(Option, "wheel") == 0)
{
cfg.viewMode = cSeduService::vmColorWheel;
startAtmo();
ReplyCode = 550;
return "color wheel effect activated";
}
else if (Option && strcasecmp(Option, "wheelstatic") == 0)
{
cfg.viewMode = cSeduService::vmColorWheelStatic;
startAtmo();
ReplyCode = 550;
return "static color wheel activated";
}
else if (Option && strcasecmp(Option, "black") == 0)
{
cfg.viewMode = cSeduService::vmBlack;
startAtmo();
ReplyCode = 550;
return "stripes black";
}
else if (Option && strcasecmp(Option, "detach") == 0)
{
cfg.viewMode = cSeduService::vmDetached;
stopAtmo();
ReplyCode = 550;
return "stripes detached";
}
else
{
ReplyCode = 901;
return "Error: Unexpected option";
}
return 0;
}
const char** cPluginSeduatmo::SVDRPHelpPages(void)
{
static const char* HelpPages[] =
{
"MODE <mode>\n"
" Set mode {atmo|fixed|rainbow|wheel|wheelstatic|black|detach}\n",
0
};
return HelpPages;
}
//***************************************************************************
// Class Setup Menu
//***************************************************************************
//***************************************************************************
// Object
//***************************************************************************
cSeduSetup::cSeduSetup()
{
data = cfg;
data.copyLeds(&cfg);
// sedu mode
seduModes[0] = "miniDMX";
seduModes[1] = "tpm2";
// rgb order
seduRGBOrders[0] = "RGB";
seduRGBOrders[1] = "RBG";
seduRGBOrders[2] = "BGR";
seduRGBOrders[3] = "BRG";
seduRGBOrders[4] = "GBR";
seduRGBOrders[5] = "GRB";
for (rgbOrderIndex = 0; rgbOrderIndex < 6; rgbOrderIndex++)
{
if (strcasecmp(seduRGBOrders[rgbOrderIndex], data.seduRGBOrder) == 0)
break;
}
if (rgbOrderIndex >= 6)
rgbOrderIndex = 0;
// Cinema Bars
cineBars[0] = "Horizontal";
cineBars[1] = "Vertical";
cineBars[2] = "Both";
Setup();
}
//***************************************************************************
// Setup
//***************************************************************************
void cSeduSetup::Setup()
{
Clear();
Add(new cMenuEditIntItem(tr("Log level"), &data.loglevel, 0, 3));
Add(new cMenuEditBoolItem(tr("Show mainmenu"), &data.showMainmenu));
Add(new cMenuEditIntItem(tr("Frequence [Hz]"), &data.frequence, 1, 100));
Add(new cMenuEditStraItem(tr("Detect cinema bars"), (int*)&data.detectCineBars, 3, cineBars));
Add(new cMenuEditIntItem(tr("Threshold"), &data.threshold, 0, 255));
Add(new cMenuEditIntItem(tr("Gamma (10-30)"), &data.gamma, 10, 30));
Add(new cMenuEditIntItem(tr("Horizontal depth"), &data.xDeep, 0, 5));
Add(new cMenuEditIntItem(tr("Vertical depth"), &data.yDeep, 0, 5));
Add(new cMenuEditIntItem(tr("Smoothness"), (int*)&data.average, 1, 100));
Add(new cMenuEditIntItem(tr("Blacklevel"), &data.black, 0, 255));
Add(new cMenuEditIntItem(tr("Level red [%]"), &data.adjRed, 0, 100));
Add(new cMenuEditIntItem(tr("Level green [%]"), &data.adjGreen, 0, 100));
Add(new cMenuEditIntItem(tr("Level blue [%]"), &data.adjBlue, 0, 100));
Add(new cMenuEditStraItem(tr("SEDU mode"), (int*)&data.seduMode, 2, seduModes));
Add(new cMenuEditStraItem(tr("SEDU RGB order"), &rgbOrderIndex, 6, seduRGBOrders));
}
eOSState cSeduSetup::ProcessKey(eKeys Key)
{
eOSState state = cMenuSetupPage::ProcessKey(Key);
// nothing yet ..
return state;
}
void cSeduSetup::Store()
{
strcpy(data.seduRGBOrder, seduRGBOrders[rgbOrderIndex]);
cfg = data;
cfg.copyLeds(&data);
SetupStore("LogLevel", data.loglevel);
SetupStore("ShowMainmenu", data.showMainmenu);
SetupStore("ViewMode", (int)data.viewMode);
SetupStore("DetectCineBars", data.detectCineBars);
SetupStore("Frequence", data.frequence);
SetupStore("Threshold", data.threshold);
SetupStore("Gamma", data.gamma);
SetupStore("Blacklevel", data.black);
SetupStore("Smoothness", data.average);
SetupStore("HorizontalDepth", data.xDeep);
SetupStore("VerticalDepth", data.yDeep);
SetupStore("LevelRed", data.adjRed);
SetupStore("LevelGreen", data.adjGreen);
SetupStore("LevelBlue", data.adjBlue);
SetupStore("FixedColorRed", data.fixedR);
SetupStore("FixedColorGreen", data.fixedG);
SetupStore("FixedColorBlue", data.fixedB);
SetupStore("EffectSpeed", data.effectSpeed);
SetupStore("SeduMode", data.seduMode);
SetupStore("SeduRgbOrder", data.seduRGBOrder);
}
//***************************************************************************
// VDR Internal
//***************************************************************************
VDRPLUGINCREATOR(cPluginSeduatmo);
|