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
|
#include "EngineTab.hpp"
EngineTab::EngineTab(wxWindow *parent, uciadapter::UCI *engine,
std::string engine_path_or_name)
: EngineTabBF(parent), TabInfos(TabInfos::ENGINE),
enginePath(engine_path_or_name), engine(engine) {
SetLabel("New Engine");
engine_location->SetValue(engine_path_or_name);
CONFIG_OPEN(conf);
// conf->DeleteGroup(confGroup);
engineName = "NewEngine";
confGroup = "engines/" + engineName;
std::uint32_t key = 2;
while (conf->HasGroup(confGroup)) {
engineName = "NewEngine" + std::to_string(key);
confGroup = "engines/" + engineName;
key++;
}
engine_name->SetValue(engineName);
// conf->Write(confGroup + "/path", wxString(engine_path_or_name));
CONFIG_CLOSE(conf);
InitConfiguration();
// Build wxPropertyGrid according to engine configuration
CONFIG_OPEN(conf2);
long index;
std::string optsPath = confGroup + "/options";
conf2->SetPath(optsPath);
wxString opt_name;
if (conf2->GetFirstGroup(opt_name, index)) {
do {
wxString optPath = opt_name + "/";
wxString type = conf2->Read(optPath + "type");
wxString default_value_wxString = conf2->Read(optPath + "value");
std::string default_value = default_value_wxString.ToStdString();
if (type == "check") {
engine_parameters->Append(
new wxBoolProperty(opt_name, wxPG_LABEL, default_value == "true"));
} else if (type == "spin") {
engine_parameters->Append(
new wxIntProperty(opt_name, wxPG_LABEL, std::stoi(default_value)));
} else if (type == "string" || type == "button") {
engine_parameters->Append(
new wxStringProperty(opt_name, wxPG_LABEL, default_value));
}
} while (conf2->GetNextGroup(opt_name, index));
}
CONFIG_CLOSE(conf2);
Bind(wxEVT_BUTTON, &EngineTab::OnSave, this, ENGINE_SAVE_CONF_BUTTON);
Bind(wxEVT_BUTTON, &EngineTab::OnDelete, this, ENGINE_DELETE_CONF_BUTTON);
}
void EngineTab::OnDelete(wxCommandEvent &event) {
CONFIG_OPEN(conf);
conf->DeleteGroup(confGroup);
CONFIG_CLOSE(conf);
wxCommandEvent closeTabEvent(CLOSE_TAB_EVENT, GetId());
closeTabEvent.SetEventObject(this);
ProcessEvent(closeTabEvent);
}
void EngineTab::OnSave(wxCommandEvent &event) {
CONFIG_OPEN(conf2);
wxString new_engine_name = engine_name->GetValue();
if (new_engine_name != engineName) {
conf2->RenameGroup(confGroup, "engines/" + new_engine_name);
engineName = new_engine_name;
confGroup = "engines/" + engineName;
}
long index;
std::string optsPath = confGroup + "/options";
conf2->SetPath(optsPath);
wxString opt_name;
if (conf2->GetFirstGroup(opt_name, index)) {
do {
wxString optPath = opt_name + "/";
wxString type = conf2->Read(optPath + "type");
wxPGProperty *property = engine_parameters->GetProperty(opt_name);
wxVariant value = property->GetValue();
if (value.IsType(wxPG_VARIANT_TYPE_BOOL)) {
conf2->Write(optPath + "/value", value.GetBool());
} else if (value.IsType(wxPG_VARIANT_TYPE_LONG)) {
conf2->Write(optPath + "/value", value.GetLong());
} else if (value.IsType(wxPG_VARIANT_TYPE_STRING)) {
conf2->Write(optPath + "/value", value.GetString());
}
} while (conf2->GetNextGroup(opt_name, index));
}
CONFIG_CLOSE(conf2);
}
void EngineTab::InitConfiguration() {
wxLogDebug("Called!");
CONFIG_OPEN(conf);
conf->Write(confGroup + "/path", wxString(enginePath));
conf->Write(confGroup + "/name", wxString(engine->GetName()));
conf->Write(confGroup + "/authors", wxString(engine->GetAuthor()));
std::vector<uciadapter::Option> opts = engine->GetOptions();
for (uciadapter::Option &opt : opts) {
std::string optPath = confGroup + "/options/" + opt.name;
conf->Write(wxString(optPath + "/type"), wxString(opt.type));
if (opt.type == "check") {
conf->Write(wxString(optPath + "/value"), opt.default_value == "true");
} else if (opt.type == "spin") {
conf->Write(wxString(optPath + "/value"), std::stoi(opt.default_value));
conf->Write(wxString(optPath + "/min"), std::stoi(opt.min));
conf->Write(wxString(optPath + "/max"), std::stoi(opt.max));
} else if (opt.type == "string") {
conf->Write(wxString(optPath + "/value"), wxString(opt.default_value));
} else if (opt.type == "button") {
conf->Write(wxString(optPath + "/name"), wxString(opt.default_value));
}
}
CONFIG_CLOSE(conf);
}
|