-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMeOSFeatures.cpp
251 lines (204 loc) · 6.88 KB
/
MeOSFeatures.cpp
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
/************************************************************************
MeOS - Orienteering Software
Copyright (C) 2009-2015 Melin Software HB
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 3 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/>.
Melin Software HB - [email protected] - www.melin.nu
Stigbergsvägen 7, SE-75242 UPPSALA, Sweden
************************************************************************/
#include "stdafx.h"
#include "oEvent.h"
#include "MeOSFeatures.h"
#include "meosexception.h"
#include "meos_util.h"
#include <cassert>
#include "classconfiginfo.h"
MeOSFeatures::MeOSFeatures(void)
{
addHead("General");
add(DrawStartList, "SL", "Prepare start lists");
add(Bib, "BB", "Bibs");
add(Clubs, "CL", "Clubs");
add(EditClub, "CC", "Edit Clubs").require(Clubs);
add(InForest, "RF", "Track runners in forest");
add(Network, "NW", "Several MeOS Clients in a network");
addHead("MeOS Features");
add(Speaker, "SP", "Använd speakerstöd");
add(SeveralStages, "ST", "Several stages");
add(Economy, "EC", "Economy and fees").require(EditClub).require(Clubs);
add(Vacancy, "VA", "Vacancies and entry cancellations").require(DrawStartList);
add(TimeAdjust, "TA", "Manual time penalties and adjustments");
add(RunnerDb, "RD", "Club and runner database").require(Clubs);
addHead("Teams and forking");
add(ForkedIndividual, "FO", "Forked individual courses");
add(Patrol, "PT", "Patrols");
add(Relay, "RL", "Relays");
add(MultipleRaces, "MR", "Several races for a runner").require(Relay);
addHead("Rogaining");
add(Rogaining, "RO", "Rogaining");
add(PointAdjust, "PA", "Manual point reductions and adjustments").require(Rogaining);
}
MeOSFeatures::FeatureDescriptor &MeOSFeatures::add(Feature feat, const char *code, const char *descr) {
assert(codeToIx.count(code) == 0);
assert(featureToIx.count(feat) == 0);
featureToIx[feat] = desc.size();
string codeS = code;
codeToIx[codeS] = desc.size();
desc.push_back(FeatureDescriptor(feat, codeS, descr));
return desc.back();
}
MeOSFeatures::FeatureDescriptor &MeOSFeatures::addHead(const char *descr) {
desc.push_back(FeatureDescriptor(_Head, "-", descr));
return desc.back();
}
bool MeOSFeatures::isHead(int featureIx) const {
return getFeature(featureIx) == _Head;
}
const string &MeOSFeatures::getHead(int featureIx) const {
if (isHead(featureIx))
return desc[featureIx].desc;
else
isHead(-1);//Throws
return _EmptyString;
}
MeOSFeatures::FeatureDescriptor::FeatureDescriptor(Feature featIn,
string codeIn,
string descIn) :
feat(featIn), code(codeIn), desc(descIn)
{
}
MeOSFeatures::~MeOSFeatures(void)
{
}
bool MeOSFeatures::hasFeature(Feature f) const {
return features.count(f) != 0;
}
void MeOSFeatures::useFeature(Feature f, bool use, oEvent &oe) {
if (use) {
const set<Feature> &dep = desc[getIndex(f)].dependsOn;
features.insert(f);
features.insert(dep.begin(), dep.end());
}
else {
if (!isRequiredInternal(f))
features.erase(f);
}
oe.getDI().setString("Features", serialize());
}
bool MeOSFeatures::isRequiredInternal(Feature f) const {
for (set<Feature>::const_iterator it = features.begin(); it != features.end(); ++it) {
if (desc[getIndex(*it)].dependsOn.count(f))
return true;
}
return false;
}
bool MeOSFeatures::isRequired(Feature f, const oEvent &oe) const {
if (isRequiredInternal(f))
return true;
if (f == Rogaining && oe.hasRogaining() && hasFeature(Rogaining))
return true;
return false;
}
int MeOSFeatures::getNumFeatures() const {
return desc.size();
}
MeOSFeatures::Feature MeOSFeatures::getFeature(int featureIx) const {
if (size_t(featureIx) < desc.size())
return desc[featureIx].feat;
else
throw meosException("Index out of bounds");
}
const string &MeOSFeatures::getDescription(Feature f) const {
return desc[getIndex(f)].desc;
}
const string &MeOSFeatures::getCode(Feature f) const {
return desc[getIndex(f)].code;
}
int MeOSFeatures::getIndex(Feature f) const {
map<Feature, int >::const_iterator res = featureToIx.find(f);
if (res == featureToIx.end())
throw meosException("Index out of bounds");
return res->second;
}
string MeOSFeatures::serialize() const {
if (features.empty())
return "NONE";
string st;
for (set<Feature>::const_iterator it = features.begin(); it != features.end(); ++it) {
if (!st.empty())
st += "+";
st += getCode(*it);
}
return st;
}
void MeOSFeatures::deserialize(const string &input, oEvent &oe) {
features.clear();
if (input == "NONE")
return;
else if (input.empty()) {
loadDefaults(oe);
}
vector<string> ff;
split(input, "+", ff);
for (size_t k = 0; k < ff.size(); k++) {
map<string, int>::iterator res = codeToIx.find(ff[k]);
if (res != codeToIx.end())
features.insert(desc[res->second].feat);
}
set<Feature> iF;
for (set<Feature>::iterator it = features.begin(); it != features.end(); ++it) {
int ix = getIndex(*it);
iF.insert(desc[ix].dependsOn.begin(), desc[ix].dependsOn.end());
}
features.insert(iF.begin(), iF.end());
}
void MeOSFeatures::loadDefaults(oEvent &oe) {
if (oe.getDCI().getInt("UseEconomy") != 0) {
features.insert(Economy);
features.insert(EditClub);
}
if (oe.getDCI().getInt("UseSpeaker") != 0)
features.insert(Speaker);
if (oe.hasRogaining())
features.insert(Rogaining);
if (oe.getDCI().getInt("SkipRunnerDb") == 0 )
features.insert(RunnerDb);
ClassConfigInfo cnf;
oe.getClassConfigurationInfo(cnf);
if (cnf.hasPatrol())
features.insert(Patrol);
if (cnf.hasRelay())
features.insert(Relay);
if (cnf.raceNStart.size() > 0) {
features.insert(Relay);
features.insert(MultipleRaces);
}
if (cnf.isMultiStageEvent())
features.insert(SeveralStages);
features.insert(Clubs);
features.insert(Network);
features.insert(ForkedIndividual);
features.insert(Vacancy);
features.insert(InForest);
features.insert(DrawStartList);
features.insert(Bib);
}
void MeOSFeatures::useAll(oEvent &oe) {
for (size_t k = 0; k < desc.size(); k++) {
if (desc[k].feat != _Head)
features.insert(desc[k].feat);
}
oe.getDI().setString("Features", serialize());
}
void MeOSFeatures::clear(oEvent &oe) {
features.clear();
oe.getDI().setString("Features", serialize());
}