-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathsettings.cpp
More file actions
329 lines (287 loc) · 14.7 KB
/
settings.cpp
File metadata and controls
329 lines (287 loc) · 14.7 KB
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
#include "settings.h"
#include "core/params.h"
#include "core/plugin.h"
#include "imgui/imgui.h"
#include <string>
#include "core/config.h"
#include "core/opencl.h"
#include "main_ui.h"
#include "common/tracking/tle.h"
#include "common/widgets/json_editor.h"
#include "common/widgets/timed_message.h"
#include "init.h"
#include "core/resources.h"
#include "core/style.h"
namespace satdump
{
namespace settings
{
std::vector<std::pair<std::string, satdump::params::EditableParameter>> settings_user_interface;
std::vector<std::pair<std::string, satdump::params::EditableParameter>> settings_general;
std::vector<std::pair<std::string, satdump::params::EditableParameter>> settings_output_directories;
#ifdef USE_OPENCL
// OpenCL Selection
int opencl_devices_id = 0;
std::string opencl_devices_str;
std::vector<opencl::OCLDevice> opencl_devices_enum;
#endif
int selected_theme = 0;
std::vector<std::string> themes;
std::string themes_str = "";
bool iers_are_update = false;
bool tles_are_update = false;
char iers_last_update[80];
char tle_last_update[80];
bool advanced_mode = false;
widgets::TimedMessage saved_message;
void setup()
{
nlohmann::ordered_json params = satdump::satdump_cfg.main_cfg["user_interface"];
for (nlohmann::detail::iteration_proxy_value<nlohmann::detail::iter_impl<nlohmann::ordered_json>> cfg : params.items())
{
// Check setting type, and create an EditableParameter if possible
if (cfg.value().contains("type") && cfg.value().contains("value") && cfg.value().contains("name"))
settings_user_interface.push_back({cfg.key(), params::EditableParameter(nlohmann::json(cfg.value()))});
}
params = satdump::satdump_cfg.main_cfg["satdump_general"];
for (nlohmann::detail::iteration_proxy_value<nlohmann::detail::iter_impl<nlohmann::ordered_json>> cfg : params.items())
{
// Check setting type, and create an EditableParameter if possible
if (cfg.value().contains("type") && cfg.value().contains("value") && cfg.value().contains("name"))
settings_general.push_back({cfg.key(), params::EditableParameter(nlohmann::json(cfg.value()))});
}
params = satdump::satdump_cfg.main_cfg["satdump_directories"];
for (nlohmann::detail::iteration_proxy_value<nlohmann::detail::iter_impl<nlohmann::ordered_json>> cfg : params.items())
{
// Check setting type, and create an EditableParameter if possible
if (cfg.value().contains("type") && cfg.value().contains("value") && cfg.value().contains("name"))
settings_output_directories.push_back({cfg.key(), params::EditableParameter(nlohmann::json(cfg.value()))});
}
int theme_id = 0;
std::string current_theme = satdump::satdump_cfg.main_cfg["user_interface"]["theme"]["value"].get<std::string>();
for (const auto &entry : std::filesystem::directory_iterator(resources::getResourcePath("themes")))
{
if (entry.path().filename().extension() != ".json")
continue;
std::string this_name = entry.path().filename().stem().string();
themes.push_back(this_name);
themes_str += this_name;
themes_str.push_back('\0');
if (this_name == current_theme)
selected_theme = theme_id;
theme_id++;
}
advanced_mode = getValueOrDefault(satdump::satdump_cfg.main_cfg["user_interface"]["advanced_mode"]["value"], false);
#ifdef USE_OPENCL
opencl_devices_enum = opencl::getAllDevices();
opencl_devices_enum.push_back({-1, -1, "None (Use CPU)"});
int p = satdump::satdump_cfg.main_cfg["satdump_general"]["opencl_device"]["platform"].get<int>();
int d = satdump::satdump_cfg.main_cfg["satdump_general"]["opencl_device"]["device"].get<int>();
int dev_id = 0;
opencl_devices_str = "";
for (opencl::OCLDevice &dev : opencl_devices_enum)
{
opencl_devices_str += dev.name;
if (dev.platform_id == p && dev.device_id == d)
opencl_devices_id = dev_id;
dev_id++;
}
opencl_devices_str.push_back('\0');
#endif
}
void render()
{
ImGui::SeparatorText("Core Settings");
if (ImGui::CollapsingHeader("User Interface"))
{
if (ImGui::BeginTable("##satdumpuisettings", 2, ImGuiTableFlags_Borders | ImGuiTableFlags_RowBg))
{
// Theme Selection
ImGui::TableNextRow();
ImGui::TableSetColumnIndex(0);
ImGui::Text("Theme");
if (ImGui::IsItemHovered())
ImGui::SetTooltip("Set the style and color of SatDump");
ImGui::TableSetColumnIndex(1);
ImGui::Combo("##themeselection", &selected_theme, themes_str.c_str());
// Standard user interface settings
for (std::pair<std::string, satdump::params::EditableParameter> &p : settings_user_interface)
p.second.draw();
ImGui::EndTable();
}
}
if (ImGui::CollapsingHeader("General SatDump"))
{
if (ImGui::BeginTable("##satdumpgeneralsettings", 2, ImGuiTableFlags_Borders | ImGuiTableFlags_RowBg))
{
#ifdef USE_OPENCL
ImGui::TableNextRow();
ImGui::TableSetColumnIndex(0);
ImGui::Text("OpenCL Device");
if (ImGui::IsItemHovered())
ImGui::SetTooltip("OpenCL Device SatDump will use for accelerated computing where it can help, eg, for some image processing tasks such as projections.");
ImGui::TableSetColumnIndex(1);
ImGui::Combo("##opencldeviceselection", &opencl_devices_id, opencl_devices_str.c_str());
#endif
for (std::pair<std::string, satdump::params::EditableParameter> &p : settings_general)
p.second.draw();
// Keplers (used to be TLEs)
ImGui::TableNextRow();
ImGui::TableSetColumnIndex(0);
ImGui::Text("Update Keplers Now");
ImGui::TableSetColumnIndex(1);
bool disable_update_button = tles_are_update;
if (disable_update_button)
style::beginDisabled();
if (ImGui::Button("Update###updateKeplers"))
{
ui_thread_pool.push(
[](int)
{
tles_are_update = true;
db_keplers->updateKeplerDatabase();
tles_are_update = false;
});
}
if (disable_update_button)
style::endDisabled();
time_t last_update = std::stod(db->get_meta("kepler_last_updated", "0"));
if (last_update == 0)
strcpy(tle_last_update, "Never");
else
{
struct tm ts;
ts = *gmtime(&last_update);
strftime(tle_last_update, sizeof(tle_last_update), "%Y-%m-%d %H:%M:%S UTC", &ts);
}
ImGui::SameLine(0.0f, 10.0f * ui_scale);
ImGui::TextDisabled("Last updated: %s", tle_last_update);
// IERS
ImGui::TableNextRow();
ImGui::TableSetColumnIndex(0);
ImGui::Text("Update IERS Bulletin Now");
ImGui::TableSetColumnIndex(1);
disable_update_button = iers_are_update;
if (disable_update_button)
style::beginDisabled();
if (ImGui::Button("Update###updateIERS"))
{
ui_thread_pool.push(
[](int)
{
iers_are_update = true;
db_iers->updateIERS();
iers_are_update = false;
});
}
if (disable_update_button)
style::endDisabled();
last_update = std::stod(db->get_meta("iers_last_updated", "0"));
if (last_update == 0)
strcpy(iers_last_update, "Never");
else
{
struct tm ts;
ts = *gmtime(&last_update);
strftime(iers_last_update, sizeof(iers_last_update), "%Y-%m-%d %H:%M:%S UTC", &ts);
}
ImGui::SameLine(0.0f, 10.0f * ui_scale);
ImGui::TextDisabled("Last updated: %s", iers_last_update);
ImGui::TableNextRow();
ImGui::TableSetColumnIndex(0);
ImGui::Text("Clear Tile Map (OSM) Cache");
if (ImGui::IsItemHovered())
ImGui::SetTooltip("Delete all cached tiles (OSM, and other sources).");
ImGui::TableSetColumnIndex(1);
if (ImGui::Button("Clear Cache###deleteosmtiles"))
if (std::filesystem::exists(satdump::user_path + "/osm_tiles/"))
std::filesystem::remove_all(satdump::user_path + "/osm_tiles/");
ImGui::EndTable();
}
}
if (ImGui::CollapsingHeader("File Input/Output"))
{
if (ImGui::BeginTable("##satdumpoutput_directories", 2, ImGuiTableFlags_Borders | ImGuiTableFlags_RowBg))
{
for (std::pair<std::string, satdump::params::EditableParameter> &p : settings_output_directories)
p.second.draw();
ImGui::EndTable();
}
}
if (satdump_cfg.plugin_config_handlers.size() > 0)
{
ImGui::SetCursorPosY(ImGui::GetCursorPosY() + 10 * ui_scale);
ImGui::SeparatorText("Plugin Settings");
for (auto &plugin_hdl : satdump_cfg.plugin_config_handlers)
{
if (ImGui::CollapsingHeader(plugin_hdl.name.c_str()))
{
plugin_hdl.render();
}
}
}
if (advanced_mode)
{
ImGui::SetCursorPosY(ImGui::GetCursorPosY() + 10 * ui_scale);
ImGui::SeparatorText("Advanced Settings");
if (ImGui::CollapsingHeader("TLE Settings"))
{
widgets::JSONTreeEditor(satdump::satdump_cfg.main_cfg["tle_settings"], "tle_settings", false);
if (ImGui::Button("Reset##tle_settings"))
satdump::satdump_cfg.main_cfg["tle_settings"] = satdump::satdump_cfg.default_cfg["tle_settings"];
}
if (ImGui::CollapsingHeader("Advanced Settings"))
{
widgets::JSONTreeEditor(satdump::satdump_cfg.main_cfg["advanced_settings"], "advanced_settings");
ImGui::SameLine();
if (ImGui::Button("Reset##advanced_settings"))
satdump::satdump_cfg.main_cfg["advanced_settings"] = satdump::satdump_cfg.default_cfg["advanced_settings"];
}
if (ImGui::CollapsingHeader("Default Pipeline Configs"))
{
widgets::JSONTreeEditor(pipeline::pipelines_json, "pipelines");
ImGui::SameLine();
if (ImGui::Button("Reset##pipelines"))
pipeline::pipelines_json = pipeline::pipelines_system_json;
}
}
ImGui::SetCursorPosY(ImGui::GetCursorPosY() + 5 * ui_scale);
if (ImGui::Button("Save"))
{
#ifdef USE_OPENCL
// Save OpenCL Device selection
satdump::satdump_cfg.main_cfg["satdump_general"]["opencl_device"]["platform"] = opencl_devices_enum[opencl_devices_id].platform_id;
satdump::satdump_cfg.main_cfg["satdump_general"]["opencl_device"]["device"] = opencl_devices_enum[opencl_devices_id].device_id;
opencl::resetOCLContext();
#endif
// Most general settings
for (std::pair<std::string, satdump::params::EditableParameter> &p : settings_user_interface)
satdump::satdump_cfg.main_cfg["user_interface"][p.first]["value"] = p.second.getValue();
for (std::pair<std::string, satdump::params::EditableParameter> &p : settings_general)
satdump::satdump_cfg.main_cfg["satdump_general"][p.first]["value"] = p.second.getValue();
for (std::pair<std::string, satdump::params::EditableParameter> &p : settings_output_directories)
satdump::satdump_cfg.main_cfg["satdump_directories"][p.first]["value"] = p.second.getValue();
// Theme
satdump::satdump_cfg.main_cfg["user_interface"]["theme"]["value"] = themes[selected_theme];
// Plugin Settings
for (auto &plugin_hdl : satdump_cfg.plugin_config_handlers)
plugin_hdl.save();
// Re-initialize auto TLE update
ui_thread_pool.push(
[](int)
{
});
// Save config files
satdump_cfg.saveUser();
if (advanced_mode)
pipeline::savePipelines();
// Clean up
advanced_mode = getValueOrDefault(satdump::satdump_cfg.main_cfg["user_interface"]["advanced_mode"]["value"], false);
saved_message.set_message(style::theme.green, "Settings saved");
satdump::update_ui = true;
}
saved_message.draw();
ImGui::TextColored(style::theme.yellow, "Note : Some settings will require SatDump to be restarted\nto take effect!");
}
} // namespace settings
} // namespace satdump