mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
282 lines
11 KiB
C++
282 lines
11 KiB
C++
#include "main_ui.h"
|
|
#include "imgui/imgui_flags.h"
|
|
#include "imgui/imgui.h"
|
|
#include "processing.h"
|
|
#include "offline.h"
|
|
#include "settings.h"
|
|
#include "satdump_vars.h"
|
|
#include "core/backend.h"
|
|
#include "resources.h"
|
|
#include "common/widgets/markdown_helper.h"
|
|
#include "common/audio/audio_sink.h"
|
|
#include "imgui_notify/imgui_notify.h"
|
|
#include "notify_logger_sink.h"
|
|
#include "status_logger_sink.h"
|
|
|
|
#include "imgui/implot/implot.h"
|
|
|
|
// #define ENABLE_DEBUG_MAP
|
|
#ifdef ENABLE_DEBUG_MAP
|
|
#include "common/widgets/image_view.h"
|
|
float lat = 0, lon = 0, lat1 = 0, lon1 = 0;
|
|
int zoom = 0;
|
|
image::Image<uint8_t> img(800, 400, 3);
|
|
ImageViewWidget ivw;
|
|
#endif
|
|
|
|
namespace satdump
|
|
{
|
|
std::shared_ptr<RecorderApplication> recorder_app;
|
|
std::shared_ptr<ViewerApplication> viewer_app;
|
|
|
|
bool update_ui = true;
|
|
bool in_app = false; // true;
|
|
bool open_recorder;
|
|
|
|
widgets::MarkdownHelper credits_md;
|
|
|
|
std::shared_ptr<NotifyLoggerSink> notify_logger_sink;
|
|
std::shared_ptr<StatusLoggerSink> status_logger_sink;
|
|
|
|
void initMainUI()
|
|
{
|
|
ImPlot::CreateContext();
|
|
|
|
audio::registerSinks();
|
|
offline::setup();
|
|
settings::setup();
|
|
|
|
// Load credits MD
|
|
std::ifstream ifs(resources::getResourcePath("credits.md"));
|
|
std::string credits_markdown((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
|
|
credits_md.set_md(credits_markdown);
|
|
|
|
registerApplications();
|
|
registerViewerHandlers();
|
|
|
|
recorder_app = std::make_shared<RecorderApplication>();
|
|
viewer_app = std::make_shared<ViewerApplication>();
|
|
open_recorder = satdump::config::main_cfg.contains("cli") && satdump::config::main_cfg["cli"].contains("start_recorder_device");
|
|
|
|
// Logger status bar sync
|
|
status_logger_sink = std::make_shared<StatusLoggerSink>();
|
|
if (status_logger_sink->is_shown())
|
|
logger->add_sink(status_logger_sink);
|
|
|
|
// Shut down the logger init buffer manually to prevent init warnings
|
|
// From showing as a toast, or in the product processor screen
|
|
completeLoggerInit();
|
|
|
|
// Logger notify sink
|
|
notify_logger_sink = std::make_shared<NotifyLoggerSink>();
|
|
logger->add_sink(notify_logger_sink);
|
|
}
|
|
|
|
void exitMainUI()
|
|
{
|
|
recorder_app->save_settings();
|
|
viewer_app->save_settings();
|
|
config::saveUserConfig();
|
|
recorder_app.reset();
|
|
viewer_app.reset();
|
|
}
|
|
|
|
void renderMainUI()
|
|
{
|
|
if (update_ui)
|
|
{
|
|
float manual_dpi_scaling = config::main_cfg["user_interface"]["manual_dpi_scaling"]["value"].get<float>();
|
|
ui_scale = backend::device_scale * manual_dpi_scaling;
|
|
ImGui::GetStyle() = ImGuiStyle();
|
|
ImGui::GetStyle().ScaleAllSizes(ui_scale);
|
|
|
|
if (config::main_cfg["user_interface"]["light_theme"]["value"].get<bool>())
|
|
style::setLightStyle();
|
|
else
|
|
style::setDarkStyle();
|
|
|
|
style::setFonts(ui_scale);
|
|
update_ui = false;
|
|
}
|
|
|
|
std::pair<int, int> dims = backend::beginFrame();
|
|
// ImGui::ShowDemoWindow();
|
|
|
|
/*if (in_app)
|
|
{
|
|
ImGui::SetNextWindowPos({0, 0});
|
|
ImGui::SetNextWindowSize({(float)wwidth, (float)wheight});
|
|
ImGui::Begin("Main", NULL, NOWINDOW_FLAGS | ImGuiWindowFlags_NoDecoration);
|
|
current_app->draw();
|
|
ImGui::End();
|
|
}*/
|
|
/*else if (processing::is_processing)
|
|
{
|
|
processing::ui_call_list_mutex->lock();
|
|
float winheight = processing::ui_call_list->size() > 0 ? wheight / processing::ui_call_list->size() : wheight;
|
|
float currentPos = 0;
|
|
for (std::shared_ptr<ProcessingModule> module : *processing::ui_call_list)
|
|
{
|
|
ImGui::SetNextWindowPos({0, currentPos});
|
|
currentPos += winheight;
|
|
ImGui::SetNextWindowSize({(float)wwidth, (float)winheight});
|
|
module->drawUI(false);
|
|
}
|
|
processing::ui_call_list_mutex->unlock();
|
|
}*/
|
|
// else
|
|
{
|
|
bool main_ui_is_processing_selected = ImGuiUtils_OfflineProcessingSelected();
|
|
bool status_bar = status_logger_sink->is_shown();
|
|
if (status_bar && processing::is_processing && main_ui_is_processing_selected)
|
|
{
|
|
for (std::shared_ptr<ProcessingModule> module : *processing::ui_call_list)
|
|
{
|
|
std::string module_id = module->getIDM();
|
|
if (module_id == "products_processor")
|
|
{
|
|
status_bar = false;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (status_bar)
|
|
dims.second -= status_logger_sink->draw();
|
|
|
|
ImGui::SetNextWindowPos({0, 0});
|
|
ImGui::SetNextWindowSize({(float)dims.first, (processing::is_processing && main_ui_is_processing_selected) ? -1.0f : (float)dims.second});
|
|
ImGui::Begin("SatDump UI", nullptr, NOWINDOW_FLAGS | ImGuiWindowFlags_NoDecoration);
|
|
if (ImGui::BeginTabBar("Main TabBar", ImGuiTabBarFlags_None))
|
|
{
|
|
if (ImGui::BeginTabItem("Offline processing"))
|
|
{
|
|
if (processing::is_processing)
|
|
{
|
|
// ImGui::BeginChild("OfflineProcessingChild");
|
|
processing::ui_call_list_mutex->lock();
|
|
int live_width = dims.first; // ImGui::GetWindowWidth();
|
|
int live_height = /*ImGui::GetWindowHeight()*/ dims.second - ImGui::GetCursorPos().y;
|
|
float winheight = processing::ui_call_list->size() > 0 ? live_height / processing::ui_call_list->size() : live_height;
|
|
float currentPos = ImGui::GetCursorPos().y;
|
|
ImGui::PushStyleColor(ImGuiCol_TitleBg, ImGui::GetStyleColorVec4(ImGuiCol_TitleBgActive));
|
|
for (std::shared_ptr<ProcessingModule> module : *processing::ui_call_list)
|
|
{
|
|
ImGui::SetNextWindowPos({0, currentPos});
|
|
currentPos += winheight;
|
|
ImGui::SetNextWindowSize({(float)live_width, (float)winheight});
|
|
module->drawUI(false);
|
|
}
|
|
ImGui::PopStyleColor();
|
|
processing::ui_call_list_mutex->unlock();
|
|
// ImGui::EndChild();
|
|
}
|
|
else
|
|
{
|
|
ImGui::BeginChild("offlineprocessing", ImGui::GetContentRegionAvail());
|
|
offline::render();
|
|
ImGui::EndChild();
|
|
}
|
|
|
|
ImGui::EndTabItem();
|
|
}
|
|
if (ImGui::BeginTabItem("Recorder", nullptr, open_recorder ? ImGuiTabItemFlags_SetSelected : ImGuiTabItemFlags_None))
|
|
{
|
|
open_recorder = false;
|
|
recorder_app->draw();
|
|
ImGui::EndTabItem();
|
|
}
|
|
if (ImGui::BeginTabItem("Viewer"))
|
|
{
|
|
viewer_app->draw();
|
|
ImGui::EndTabItem();
|
|
}
|
|
#if 0
|
|
if (ImGui::BeginTabItem("Applications"))
|
|
{
|
|
// current_app->draw();
|
|
if (in_app)
|
|
{
|
|
// current_app->draw();
|
|
}
|
|
else
|
|
{
|
|
|
|
for (std::pair<const std::string, std::function<std::shared_ptr<Application>()>> &appEntry : application_registry)
|
|
{
|
|
if (ImGui::Button(appEntry.first.c_str()))
|
|
{
|
|
in_app = true;
|
|
// current_app = application_registry[appEntry.first]();
|
|
}
|
|
}
|
|
}
|
|
|
|
ImGui::EndTabItem();
|
|
}
|
|
#endif
|
|
if (ImGui::BeginTabItem("Settings"))
|
|
{
|
|
ImGui::BeginChild("settings", ImGui::GetContentRegionAvail());
|
|
settings::render();
|
|
ImGui::EndChild();
|
|
ImGui::EndTabItem();
|
|
}
|
|
if (ImGui::BeginTabItem("About"))
|
|
{
|
|
ImGui::BeginChild("credits_md", ImGui::GetContentRegionAvail(), false, ImGuiWindowFlags_AlwaysVerticalScrollbar);
|
|
credits_md.render();
|
|
ImGui::EndChild();
|
|
ImGui::EndTabItem();
|
|
}
|
|
#ifdef ENABLE_DEBUG_MAP
|
|
if (ImGui::BeginTabItem("Map"))
|
|
{
|
|
tileMap tm;
|
|
ImGui::SetNextItemWidth(120);
|
|
ImGui::InputFloat("Latitude", &lat);
|
|
ImGui::SameLine();
|
|
ImGui::SetNextItemWidth(120);
|
|
ImGui::InputFloat("Longitude", &lon);
|
|
ImGui::SetNextItemWidth(120);
|
|
ImGui::InputFloat("Latitude##1", &lat1);
|
|
ImGui::SameLine();
|
|
ImGui::SetNextItemWidth(120);
|
|
ImGui::InputFloat("Longitude##1", &lon1);
|
|
ImGui::SetNextItemWidth(250);
|
|
ImGui::SliderInt("Zoom", &zoom, 0, 19);
|
|
if (ImGui::Button("Get tile from server"))
|
|
{
|
|
// mapTile tl(tm.downloadTile(tm.coorToTile({lat, lon}, zoom), zoom));
|
|
img = tm.getMapImage({lat, lon}, {lat1, lon1}, zoom);
|
|
ivw.update(img);
|
|
}
|
|
ivw.draw(ImVec2(800, 400));
|
|
ImGui::EndTabItem();
|
|
}
|
|
#endif
|
|
}
|
|
ImGui::EndTabBar();
|
|
ImGuiUtils_SendCurrentWindowToBack();
|
|
ImGui::End();
|
|
|
|
if (settings::show_imgui_demo)
|
|
ImGui::ShowDemoWindow();
|
|
}
|
|
|
|
// Render toasts on top of everything, at the end of your code!
|
|
// You should push style vars here
|
|
float notification_bgcolor = (style::theme.light_mode ? 212.f : 43.f) / 255.f;
|
|
float notification_transparency = (style::theme.light_mode ? 200.f : 100.f) / 255.f;
|
|
ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding, 5.f);
|
|
ImGui::PushStyleColor(ImGuiCol_WindowBg, ImVec4(notification_bgcolor, notification_bgcolor, notification_bgcolor, notification_transparency));
|
|
notify_logger_sink->notify_mutex.lock();
|
|
ImGui::RenderNotifications();
|
|
notify_logger_sink->notify_mutex.unlock();
|
|
ImGui::PopStyleVar(1);
|
|
ImGui::PopStyleColor(1);
|
|
|
|
backend::endFrame();
|
|
}
|
|
|
|
ctpl::thread_pool ui_thread_pool(8);
|
|
}
|