satdump/src-interface/main_ui.cpp

223 lines
7.2 KiB
C++

#define SATDUMP_DLL_EXPORT2 1
#include "explorer/explorer.h"
#include "common/imgui_utils.h"
#include "core/style.h"
#include "recorder/recorder.h"
#include "common/audio/audio_sink.h"
#include "common/widgets/markdown_helper.h"
#include "core/backend.h"
#include "core/plugin.h"
#include "core/resources.h"
#include "imgui/imgui.h"
#include "imgui/imgui_flags.h"
#include "imgui_notify/imgui_notify.h"
#include "main_ui.h"
#include "notify_logger_sink.h"
#include "offline.h"
#include "satdump_vars.h"
#include "settings.h"
#include "status_logger_sink.h"
#include "imgui/implot/implot.h"
#include "imgui/implot3d/implot3d.h"
namespace satdump
{
SATDUMP_DLL2 std::shared_ptr<explorer::ExplorerApplication> explorer_app;
SATDUMP_DLL2 bool update_ui = true;
widgets::MarkdownHelper credits_md;
std::shared_ptr<NotifyLoggerSink> notify_logger_sink;
std::shared_ptr<StatusLoggerSink> status_logger_sink;
void showProcessing(); // TODOREWORK
void initMainUI()
{
ImPlot::CreateContext();
ImPlot3D::CreateContext();
audio::registerSinks();
offline::setup();
settings::setup();
// Register events
eventBus->register_handler<ShowProcesingEvent>([](ShowProcesingEvent) { showProcessing(); });
eventBus->register_handler<AddRecorderEvent>(
[](AddRecorderEvent)
{
explorer_app->tryOpenSomethingInExplorer(
[](explorer::ExplorerApplication *)
{
logger->warn("Adding Recorder!");
eventBus->fire_event<explorer::ExplorerAddHandlerEvent>({std::make_shared<RecorderApplication>()}); // TODOREWORK do not bind this directly.
});
});
eventBus->register_handler<TryOpenFileInMainExplorerEvent>([](TryOpenFileInMainExplorerEvent e) { explorer_app->tryOpenFileInExplorer(e.path); });
// 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);
explorer_app = std::make_shared<explorer::ExplorerApplication>();
// 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()
{
satdump_cfg.saveUser();
explorer_app.reset();
}
// TODOREWORKUI
bool offline_en = false;
bool about_en = false;
bool settings_en = false;
void showProcessing() { offline_en = 1; }
void renderMainUI()
{
if (update_ui)
{
style::setStyle();
style::setFonts(ui_scale);
update_ui = false;
}
std::pair<int, int> dims = backend::beginFrame();
// On Windows minimizing makes the window dimensions 0,
// which of course cause a whole lot of issues...
// Simply abort any further rendering of this happens!
if (dims.first == 0 && dims.second == 0)
{
backend::endFrame();
return;
}
dims.second -= status_logger_sink->draw();
{
ImGui::SetNextWindowPos({0, 0});
ImGui::SetNextWindowSize({(float)dims.first, (float)dims.second});
ImGui::Begin("SatDump UI", nullptr, NOWINDOW_FLAGS | ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_MenuBar | ImGuiWindowFlags_NoScrollWithMouse);
if (ImGui::BeginMenuBar())
{
if (ImGui::BeginMenu("File"))
{
if (ImGui::MenuItem("Processing"))
offline_en = true;
if (ImGui::MenuItem("Settings"))
settings_en = true;
ImGui::EndMenu();
}
if (ImGui::BeginMenu("Add"))
{
if (ImGui::MenuItem("Recorder"))
explorer_app->tryOpenSomethingInExplorer(
[](explorer::ExplorerApplication *)
{
eventBus->fire_event<explorer::ExplorerAddHandlerEvent>({std::make_shared<RecorderApplication>()}); // TODOREWORK do not bind this directly.
});
ImGui::EndMenu();
}
ImGui::EndMenuBar();
}
if (offline_en)
{
// ImGui::SetNextWindowSize({600 * ui_scale, 0});
ImGui::SetNextWindowPos({0, 0});
ImGui::SetNextWindowSize({(float)dims.first, (float)dims.second});
if (ImGui::Begin("Start Processing", &offline_en, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoCollapse))
{
offline::render();
ImGui::End();
}
}
if (settings_en)
ImGui::OpenPopup("Settings");
if (ImGui::BeginPopupModal("Settings", &settings_en, /*ImGuiWindowFlags_AlwaysAutoResize |*/ ImGuiWindowFlags_AlwaysVerticalScrollbar))
{
settings::render();
ImGui::EndPopup();
}
if (about_en)
ImGui::OpenPopup("About");
if (ImGui::BeginPopupModal("About", &about_en, /*ImGuiWindowFlags_AlwaysAutoResize |*/ ImGuiWindowFlags_AlwaysVerticalScrollbar))
{
credits_md.render();
ImGui::EndPopup();
}
explorer_app->draw();
if (ImGui::BeginMenuBar())
{
if (ImGui::BeginMenu("Help"))
{
if (ImGui::MenuItem("Documentation"))
;
if (ImGui::MenuItem("About"))
about_en = true;
ImGui::EndMenu();
}
ImGui::EndMenuBar();
}
ImGuiUtils_SendCurrentWindowToBack();
ImGui::End();
if (settings::show_imgui_demo)
{
ImGui::ShowDemoWindow();
ImPlot::ShowDemoWindow();
ImPlot3D::ShowDemoWindow();
}
}
// Render toasts on top of everything, at the end of your code!
// You should push style vars here
ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding, 5.f);
ImGui::PushStyleColor(ImGuiCol_WindowBg, (ImVec4)style::theme.notification_bg);
notify_logger_sink->notify_mutex.lock();
ImGui::RenderNotifications();
notify_logger_sink->notify_mutex.unlock();
ImGui::PopStyleVar(1);
ImGui::PopStyleColor(1);
backend::endFrame();
}
SATDUMP_DLL2 ctpl::thread_pool ui_thread_pool(8);
} // namespace satdump