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
|
/*
* Sudoku: A plug-in for the Video Disk Recorder
*
* Copyright (C) 2005-2008, Thomas Günther <tom@toms-cafe.de>
*
* 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, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* $Id: setup.cpp 142 2008-07-06 15:50:02Z tom $
*/
#include "setup.h"
#include "commands.h"
#include "i18n.h"
#include <strings.h>
using namespace SudokuPlugin;
//--- class SudokuPlugin::SetupData --------------------------------------------
/** Constructor
*
* Initialize the setup parameters of the plugin with standard values.
*/
SetupData::SetupData()
{
givens_count = 36;
symmetric = 1;
mark_errors = 1;
mark_ambiguous = 1;
show_possibles_pattern = 0;
show_possibles_digits = 0;
clear_marks = 0;
key_red = CommandList::key_red_default_index();
key_green = CommandList::key_green_default_index();
key_yellow = CommandList::key_yellow_default_index();
transparency = 50;
}
/** Parse the setup parameters of the plugin.
*
* This method is called for each setup parameter the plugin has previously
* stored in the global setup data.
*/
bool SetupData::parse(const char* name, const char* value)
{
CommandList cl;
if (!strcasecmp(name, "GivensCount"))
givens_count = atoi(value);
else if (!strcasecmp(name, "Symmetric"))
symmetric = atoi(value);
else if (!strcasecmp(name, "MarkErrors"))
mark_errors = atoi(value);
else if (!strcasecmp(name, "MarkAmbiguous"))
mark_ambiguous = atoi(value);
else if (!strcasecmp(name, "ShowPossiblesPattern"))
show_possibles_pattern = atoi(value);
else if (!strcasecmp(name, "ShowPossiblesDigits"))
show_possibles_digits = atoi(value);
else if (!strcasecmp(name, "ClearMarks"))
clear_marks = atoi(value);
else if (!strcasecmp(name, "KeyRed"))
key_red = cl.id_to_index(atoi(value), cl.key_red_default_index());
else if (!strcasecmp(name, "KeyGreen"))
key_green = cl.id_to_index(atoi(value), cl.key_green_default_index());
else if (!strcasecmp(name, "KeyYellow"))
key_yellow = cl.id_to_index(atoi(value), cl.key_yellow_default_index());
else if (!strcasecmp(name, "Transparency"))
transparency = atoi(value);
else
return false;
return true;
}
//--- class SudokuPlugin::SetupPage --------------------------------------------
/** Constructor */
SetupPage::SetupPage(SetupData& setup) :
setup(setup), data(setup)
{
Add(new cMenuEditIntItem(tr("Givens count"), &data.givens_count, 26, 81));
Add(new cMenuEditBoolItem(tr("Symmetric givens"), &data.symmetric));
Add(new cMenuEditBoolItem(tr("Mark errors"), &data.mark_errors));
Add(new cMenuEditBoolItem(tr("Mark ambiguous numbers"),
&data.mark_ambiguous));
Add(new cMenuEditBoolItem(tr("Show possible numbers as pattern"),
&data.show_possibles_pattern));
#if VDRVERSNUM >= 10504
Add(new cMenuEditBoolItem(tr("Show possible numbers as digits"),
&data.show_possibles_digits));
#endif
Add(new cMenuEditBoolItem(tr("Clear marks on reset"), &data.clear_marks));
Add(new cMenuEditStraItem(tr("Key Red"), &data.key_red,
CommandList::count(), CommandList::texts()));
Add(new cMenuEditStraItem(tr("Key Green"), &data.key_green,
CommandList::count(), CommandList::texts()));
Add(new cMenuEditStraItem(tr("Key Yellow"), &data.key_yellow,
CommandList::count(), CommandList::texts()));
Add(new cMenuEditIntItem(tr("Transparency (%)"), &data.transparency, 0, 100));
}
/** Store the setup parameters of the plugin.
*
* The setup parameters of the plugin are stored into the global setup data
* file.
*/
void SetupPage::Store()
{
setup = data;
SetupStore("GivensCount", setup.givens_count);
SetupStore("Symmetric", setup.symmetric);
SetupStore("MarkErrors", setup.mark_errors);
SetupStore("MarkAmbiguous", setup.mark_ambiguous);
SetupStore("ShowPossiblesPattern", setup.show_possibles_pattern);
SetupStore("ShowPossiblesDigits", setup.show_possibles_digits);
SetupStore("ClearMarks", setup.clear_marks);
SetupStore("KeyRed", CommandList::id(setup.key_red));
SetupStore("KeyGreen", CommandList::id(setup.key_green));
SetupStore("KeyYellow", CommandList::id(setup.key_yellow));
SetupStore("Transparency", setup.transparency);
}
|