2023-11-03 15:03:13 -04:00
|
|
|
#include <signal.h>
|
|
|
|
|
#include <filesystem>
|
2023-12-20 14:00:46 -05:00
|
|
|
#include "backend.h"
|
2024-01-19 15:54:21 -05:00
|
|
|
#include "main_ui.h"
|
2021-02-17 22:25:03 +01:00
|
|
|
#include "logger.h"
|
2022-05-02 18:59:03 +02:00
|
|
|
#include "core/style.h"
|
2021-03-22 18:53:09 +01:00
|
|
|
#include "init.h"
|
|
|
|
|
#include "processing.h"
|
2021-08-19 00:37:25 +02:00
|
|
|
#include "satdump_vars.h"
|
2023-12-31 11:11:36 -05:00
|
|
|
#include "loader/loader.h"
|
2023-01-23 14:23:09 +01:00
|
|
|
#include "common/cli_utils.h"
|
2022-11-27 21:36:34 +01:00
|
|
|
#include "../src-core/resources.h"
|
2023-12-01 22:41:32 +01:00
|
|
|
#include "common/detect_header.h"
|
2025-01-20 11:01:28 +01:00
|
|
|
#include "satdump_vars.h"
|
2025-03-14 11:12:18 +01:00
|
|
|
#include "imgui/imgui_image.h"
|
2022-11-27 21:30:17 +01:00
|
|
|
|
2023-12-20 14:00:46 -05:00
|
|
|
GLFWwindow *window;
|
2023-10-16 16:18:37 -04:00
|
|
|
static volatile bool signal_caught = false;
|
2023-11-06 09:17:59 -05:00
|
|
|
bool fallback_gl = false;
|
2023-10-16 16:18:37 -04:00
|
|
|
|
|
|
|
|
void sig_handler_ui(int signo)
|
|
|
|
|
{
|
2023-11-06 15:46:35 -05:00
|
|
|
if (signo == SIGINT || signo == SIGTERM)
|
2023-10-16 16:18:37 -04:00
|
|
|
signal_caught = true;
|
|
|
|
|
}
|
2021-08-15 16:47:44 +02:00
|
|
|
|
2021-02-17 21:13:36 +01:00
|
|
|
static void glfw_error_callback(int error, const char *description)
|
|
|
|
|
{
|
|
|
|
|
logger->error("Glfw Error " + std::to_string(error) + ": " + description);
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-08 15:09:07 +01:00
|
|
|
void window_content_scale_callback(GLFWwindow *, float xscale, float)
|
2023-08-23 15:45:10 -04:00
|
|
|
{
|
2024-01-21 17:30:00 -05:00
|
|
|
backend::device_scale = xscale / style::macos_framebuffer_scale();
|
|
|
|
|
satdump::update_ui = true;
|
2023-08-23 15:45:10 -04:00
|
|
|
}
|
|
|
|
|
|
2023-11-13 09:00:28 -05:00
|
|
|
void bindBaseTextureFunctions();
|
|
|
|
|
void bindAdvancedTextureFunctions();
|
2022-09-17 18:42:46 +02:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
2021-02-18 20:42:08 +01:00
|
|
|
initLogger();
|
|
|
|
|
|
2022-03-05 12:44:19 +01:00
|
|
|
if (argc < 5) // Check overall command
|
2021-02-18 20:42:08 +01:00
|
|
|
{
|
2022-03-05 12:44:19 +01:00
|
|
|
logger->error("Usage : " + std::string(argv[0]) + " [downlink] [input_level] [input_file] [output_file_or_directory] [additional options as required]");
|
2022-02-22 19:55:11 +01:00
|
|
|
logger->error("Extra options (examples. Any parameter used in modules can be used here) :");
|
2024-11-27 17:27:12 -05:00
|
|
|
logger->error(" --samplerate [baseband_samplerate] --baseband_format [cf32/cs32/cs16/cs8/wav16] --dc_block --iq_swap");
|
2021-02-18 20:42:08 +01:00
|
|
|
}
|
2022-02-23 12:00:34 +01:00
|
|
|
else
|
2022-03-10 19:56:37 +01:00
|
|
|
satdump::processing::is_processing = true;
|
2021-02-18 20:42:08 +01:00
|
|
|
|
2022-03-15 16:07:47 +01:00
|
|
|
std::string downlink_pipeline = satdump::processing::is_processing ? argv[1] : "";
|
|
|
|
|
std::string input_level = satdump::processing::is_processing ? argv[2] : "";
|
|
|
|
|
std::string input_file = satdump::processing::is_processing ? argv[3] : "";
|
|
|
|
|
std::string output_file = satdump::processing::is_processing ? argv[4] : "";
|
2021-06-06 14:11:02 +02:00
|
|
|
|
2022-02-22 19:55:11 +01:00
|
|
|
// Parse flags
|
2022-03-20 20:56:32 +01:00
|
|
|
nlohmann::json parameters = satdump::processing::is_processing ? parse_common_flags(argc - 5, &argv[5]) : "";
|
2021-06-12 21:14:32 +02:00
|
|
|
|
2022-02-22 19:55:11 +01:00
|
|
|
// logger->warn("\n" + parameters.dump(4));
|
|
|
|
|
// exit(0);
|
2021-11-19 14:25:08 +01:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
// Setup window
|
|
|
|
|
glfwSetErrorCallback(glfw_error_callback);
|
|
|
|
|
if (!glfwInit())
|
2021-02-14 12:05:44 +01:00
|
|
|
{
|
2021-02-17 22:25:03 +01:00
|
|
|
logger->critical("Could not init GLFW");
|
2021-02-14 12:05:44 +01:00
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-18 20:42:08 +01:00
|
|
|
// GL STUFF
|
2023-08-31 20:27:07 -04:00
|
|
|
#if GLFW_VERSION_MAJOR > 3 || (GLFW_VERSION_MAJOR == 3 && GLFW_VERSION_MINOR >= 3)
|
2023-08-23 15:45:10 -04:00
|
|
|
glfwWindowHint(GLFW_SCALE_TO_MONITOR, GLFW_TRUE);
|
2023-08-31 20:27:07 -04:00
|
|
|
#endif
|
2022-09-17 18:42:46 +02:00
|
|
|
|
2023-11-03 15:03:13 -04:00
|
|
|
// Decide GL+GLSL versions
|
2023-11-08 15:09:07 +01:00
|
|
|
const char *OPENGL_VERSIONS_GLSL[] = {"#version 100", "#version 130", "#version 150"};
|
2023-11-04 15:01:06 -04:00
|
|
|
int selected_glsl;
|
2023-11-03 15:03:13 -04:00
|
|
|
#if defined(IMGUI_IMPL_OPENGL_ES2)
|
|
|
|
|
// GL ES 2.0 + GLSL 100
|
2023-11-04 15:01:06 -04:00
|
|
|
selected_glsl = 0;
|
2023-11-03 15:03:13 -04:00
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 2);
|
|
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0);
|
|
|
|
|
glfwWindowHint(GLFW_CLIENT_API, GLFW_OPENGL_ES_API);
|
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
|
// GL 3.2 + GLSL 150
|
2023-11-06 09:17:59 -05:00
|
|
|
selected_glsl = 2;
|
2021-02-17 22:25:03 +01:00
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
|
|
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 2);
|
2023-11-08 15:09:07 +01:00
|
|
|
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); // 3.2+ only
|
|
|
|
|
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); // Required on Mac
|
2023-11-03 15:03:13 -04:00
|
|
|
#else
|
|
|
|
|
// GL 3.0 + GLSL 130
|
2023-11-06 09:17:59 -05:00
|
|
|
selected_glsl = 1;
|
2023-11-03 15:03:13 -04:00
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
|
|
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0);
|
2023-11-08 15:09:07 +01:00
|
|
|
// glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); // 3.2+ only
|
|
|
|
|
// glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); // 3.0+ only
|
2023-11-03 15:03:13 -04:00
|
|
|
#endif
|
2022-09-17 18:42:46 +02:00
|
|
|
|
2025-01-20 11:01:28 +01:00
|
|
|
window = glfwCreateWindow(1000, 600, std::string("SatDump v" + (std::string)satdump::SATDUMP_VERSION).c_str(), nullptr, nullptr);
|
2023-11-03 15:03:13 -04:00
|
|
|
if (window == nullptr)
|
2022-11-29 00:56:03 +01:00
|
|
|
{
|
2023-11-04 15:01:06 -04:00
|
|
|
logger->warn("Could not init GLFW Window; falling back to OpenGL 2.1...");
|
|
|
|
|
glfwDefaultWindowHints();
|
2023-11-06 09:17:59 -05:00
|
|
|
fallback_gl = true;
|
2025-01-20 11:01:28 +01:00
|
|
|
window = glfwCreateWindow(1000, 600, std::string("SatDump v" + (std::string)satdump::SATDUMP_VERSION).c_str(), nullptr, nullptr);
|
2023-11-04 15:01:06 -04:00
|
|
|
if (window == nullptr)
|
|
|
|
|
{
|
2023-11-21 08:46:41 -05:00
|
|
|
pfd::message("SatDump", "Could not start SatDump UI. Please make sure your graphics card supports OpenGL 2.1 or newer",
|
2023-11-24 00:45:19 +01:00
|
|
|
pfd::choice::ok, pfd::icon::error);
|
2023-11-04 15:01:06 -04:00
|
|
|
logger->critical("Could not init GLFW Window! Exiting");
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
2022-11-29 00:56:03 +01:00
|
|
|
}
|
2021-02-14 12:05:44 +01:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
glfwMakeContextCurrent(window);
|
2023-09-28 12:42:23 -04:00
|
|
|
glfwSwapInterval(0); // Disable vsync on loading screen - not needed since frames are only pushed on log updates, and not in a loop
|
|
|
|
|
// Vsync slows down init process when items are logged quickly
|
2021-02-17 20:07:49 +01:00
|
|
|
|
2023-12-20 14:00:46 -05:00
|
|
|
// Bind texture/backend functions
|
|
|
|
|
bindBackendFunctions();
|
2023-11-13 09:00:28 -05:00
|
|
|
bindBaseTextureFunctions();
|
2023-11-12 23:55:41 -05:00
|
|
|
#ifndef IMGUI_IMPL_OPENGL_ES2
|
2023-11-12 21:48:43 -05:00
|
|
|
if (!fallback_gl)
|
2023-11-13 09:00:28 -05:00
|
|
|
bindAdvancedTextureFunctions();
|
2023-11-12 23:55:41 -05:00
|
|
|
#endif
|
2023-11-12 19:34:01 -05:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
// Setup Dear ImGui context
|
|
|
|
|
IMGUI_CHECKVERSION();
|
|
|
|
|
ImGui::CreateContext();
|
|
|
|
|
ImGuiIO &io = ImGui::GetIO();
|
|
|
|
|
(void)io;
|
|
|
|
|
io.IniFilename = NULL;
|
2021-02-16 13:47:53 +01:00
|
|
|
|
2023-05-08 23:08:34 +02:00
|
|
|
logger->debug("Starting with OpenGL %s", (char *)glGetString(GL_VERSION));
|
2024-01-16 14:10:14 -05:00
|
|
|
logger->debug("Max texture size: %zu", maxTextureSize);
|
2022-09-17 18:11:23 +02:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
// Setup Platform/Renderer bindings
|
|
|
|
|
ImGui_ImplGlfw_InitForOpenGL(window, true);
|
2023-11-06 11:39:38 -05:00
|
|
|
#ifndef IMGUI_IMPL_OPENGL_ES2
|
2023-11-06 09:17:59 -05:00
|
|
|
if (fallback_gl)
|
|
|
|
|
ImGui_ImplOpenGL2_Init();
|
|
|
|
|
else
|
2023-11-06 11:39:38 -05:00
|
|
|
#endif
|
2023-11-06 09:17:59 -05:00
|
|
|
ImGui_ImplOpenGL3_Init(OPENGL_VERSIONS_GLSL[selected_glsl]);
|
2021-02-16 13:47:53 +01:00
|
|
|
|
2023-11-08 15:09:07 +01:00
|
|
|
// Handle DPI changes
|
2023-08-31 20:27:07 -04:00
|
|
|
#if GLFW_VERSION_MAJOR > 3 || (GLFW_VERSION_MAJOR == 3 && GLFW_VERSION_MINOR >= 3)
|
2023-08-23 15:45:10 -04:00
|
|
|
glfwSetWindowContentScaleCallback(window, window_content_scale_callback);
|
2023-08-31 20:27:07 -04:00
|
|
|
#endif
|
2023-08-23 15:45:10 -04:00
|
|
|
|
2023-11-08 15:09:07 +01:00
|
|
|
// Set font
|
2024-01-21 17:30:00 -05:00
|
|
|
style::setFonts(backend::device_scale);
|
2023-08-16 14:13:14 -04:00
|
|
|
|
|
|
|
|
// Init Loading Screen
|
2024-01-21 17:30:00 -05:00
|
|
|
std::shared_ptr<satdump::LoadingScreenSink> loading_screen_sink = std::make_shared<satdump::LoadingScreenSink>();
|
2023-08-16 14:13:14 -04:00
|
|
|
logger->add_sink(loading_screen_sink);
|
|
|
|
|
|
|
|
|
|
// Init SatDump
|
|
|
|
|
satdump::tle_do_update_on_init = false;
|
2024-10-07 22:05:30 -04:00
|
|
|
satdump::initSatdump(true);
|
2023-08-16 14:13:14 -04:00
|
|
|
|
2023-11-09 12:04:09 +01:00
|
|
|
// Check if we need to start a pipeline
|
|
|
|
|
std::optional<satdump::Pipeline> pipeline = satdump::getPipelineFromName(downlink_pipeline);
|
|
|
|
|
if (!pipeline.has_value())
|
|
|
|
|
satdump::processing::is_processing = false;
|
|
|
|
|
|
|
|
|
|
// See if we need to add arguments
|
|
|
|
|
satdump::config::main_cfg["cli"] = {};
|
|
|
|
|
if (argc > 1 && !satdump::processing::is_processing)
|
2024-05-06 16:13:21 -04:00
|
|
|
satdump::config::main_cfg["cli"] = parse_common_flags(argc - 1, &argv[1], {{"source_id", typeid(std::string)}});
|
2023-11-09 12:04:09 +01:00
|
|
|
|
2022-03-30 15:41:23 +02:00
|
|
|
// Init UI
|
2024-01-21 17:30:00 -05:00
|
|
|
satdump::initMainUI();
|
2021-02-17 23:21:59 +01:00
|
|
|
|
2023-11-08 15:09:07 +01:00
|
|
|
// Shut down loading screen
|
2023-08-16 21:35:34 -04:00
|
|
|
logger->del_sink(loading_screen_sink);
|
|
|
|
|
loading_screen_sink.reset();
|
2023-09-28 12:42:23 -04:00
|
|
|
glfwSwapInterval(1); // Enable vsync for the rest of the program
|
2023-08-16 21:35:34 -04:00
|
|
|
|
2022-03-10 19:56:37 +01:00
|
|
|
if (satdump::processing::is_processing)
|
2022-03-15 16:07:47 +01:00
|
|
|
{
|
2023-12-01 22:41:32 +01:00
|
|
|
try_get_params_from_input_file(parameters, input_file);
|
2023-11-09 12:04:09 +01:00
|
|
|
satdump::ui_thread_pool.push([&](int)
|
|
|
|
|
{ satdump::processing::process(downlink_pipeline, input_level, input_file, output_file, parameters); });
|
2022-03-15 16:07:47 +01:00
|
|
|
}
|
2021-02-18 20:42:08 +01:00
|
|
|
|
2023-11-24 10:49:57 -05:00
|
|
|
// Set window position
|
|
|
|
|
int x, y, xs, ys;
|
|
|
|
|
bool maximized;
|
|
|
|
|
if (satdump::config::main_cfg["user_interface"]["remember_pos"]["value"].get<bool>() && satdump::config::main_cfg["user_interface"].contains("window"))
|
|
|
|
|
{
|
|
|
|
|
const bool maximized = getValueOrDefault(satdump::config::main_cfg["user_interface"]["window"]["maximized"], false);
|
2023-12-01 22:41:32 +01:00
|
|
|
if (maximized)
|
2023-11-24 10:49:57 -05:00
|
|
|
glfwMaximizeWindow(window);
|
|
|
|
|
else
|
|
|
|
|
{
|
2023-12-01 22:41:32 +01:00
|
|
|
const GLFWvidmode *mode = glfwGetVideoMode(glfwGetPrimaryMonitor());
|
2023-11-24 10:49:57 -05:00
|
|
|
x = getValueOrDefault(satdump::config::main_cfg["user_interface"]["window"]["x"], -1);
|
|
|
|
|
y = getValueOrDefault(satdump::config::main_cfg["user_interface"]["window"]["y"], -1);
|
|
|
|
|
xs = getValueOrDefault(satdump::config::main_cfg["user_interface"]["window"]["xs"], -1);
|
|
|
|
|
ys = getValueOrDefault(satdump::config::main_cfg["user_interface"]["window"]["ys"], -1);
|
|
|
|
|
|
2023-12-01 22:41:32 +01:00
|
|
|
if (x >= 0 && y >= 0 && x < mode->width && y < mode->height && xs > 0 && ys > 0)
|
2023-11-24 10:49:57 -05:00
|
|
|
{
|
|
|
|
|
glfwSetWindowPos(window, x, y);
|
|
|
|
|
glfwSetWindowSize(window, xs, ys);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-23 14:23:09 +01:00
|
|
|
// TLE
|
2023-11-08 15:09:07 +01:00
|
|
|
satdump::ui_thread_pool.push([&](int)
|
|
|
|
|
{ satdump::autoUpdateTLE(satdump::user_path + "/satdump_tles.txt"); });
|
2023-01-23 14:23:09 +01:00
|
|
|
|
2023-10-16 16:18:37 -04:00
|
|
|
// Attach signal
|
|
|
|
|
signal(SIGINT, sig_handler_ui);
|
2023-11-06 15:46:35 -05:00
|
|
|
signal(SIGTERM, sig_handler_ui);
|
2023-10-16 16:18:37 -04:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
// Main loop
|
2023-01-22 23:40:56 +01:00
|
|
|
do
|
2021-02-17 22:25:03 +01:00
|
|
|
{
|
2023-12-31 16:49:23 -05:00
|
|
|
satdump::renderMainUI();
|
2023-10-16 16:18:37 -04:00
|
|
|
} while (!glfwWindowShouldClose(window) && !signal_caught);
|
2021-02-14 12:05:44 +01:00
|
|
|
|
2023-12-01 22:41:32 +01:00
|
|
|
// Save window position
|
2023-11-24 00:45:19 +01:00
|
|
|
if (satdump::config::main_cfg["user_interface"]["remember_pos"]["value"].get<bool>())
|
|
|
|
|
{
|
2023-11-24 10:49:57 -05:00
|
|
|
bool minimized = glfwGetWindowAttrib(window, GLFW_ICONIFIED) == GLFW_TRUE;
|
|
|
|
|
maximized = glfwGetWindowAttrib(window, GLFW_MAXIMIZED) == GLFW_TRUE;
|
|
|
|
|
satdump::config::main_cfg["user_interface"]["window"]["maximized"] = maximized;
|
|
|
|
|
if (!maximized && !minimized)
|
|
|
|
|
{
|
|
|
|
|
glfwGetWindowPos(window, &x, &y);
|
|
|
|
|
glfwGetWindowSize(window, &xs, &ys);
|
|
|
|
|
satdump::config::main_cfg["user_interface"]["window"]["x"] = x;
|
|
|
|
|
satdump::config::main_cfg["user_interface"]["window"]["y"] = y;
|
|
|
|
|
satdump::config::main_cfg["user_interface"]["window"]["xs"] = xs;
|
|
|
|
|
satdump::config::main_cfg["user_interface"]["window"]["ys"] = ys;
|
|
|
|
|
}
|
2023-11-24 00:45:19 +01:00
|
|
|
}
|
|
|
|
|
|
2022-05-08 16:35:54 +02:00
|
|
|
satdump::exitMainUI();
|
|
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
// Cleanup
|
2023-11-06 11:39:38 -05:00
|
|
|
#ifndef IMGUI_IMPL_OPENGL_ES2
|
2023-11-08 15:09:07 +01:00
|
|
|
if (fallback_gl)
|
2023-11-06 09:17:59 -05:00
|
|
|
ImGui_ImplOpenGL2_Shutdown();
|
|
|
|
|
else
|
2023-11-06 11:39:38 -05:00
|
|
|
#endif
|
2023-11-06 09:17:59 -05:00
|
|
|
ImGui_ImplOpenGL3_Shutdown();
|
2021-02-17 22:25:03 +01:00
|
|
|
ImGui_ImplGlfw_Shutdown();
|
|
|
|
|
ImGui::DestroyContext();
|
|
|
|
|
|
|
|
|
|
glfwDestroyWindow(window);
|
|
|
|
|
glfwTerminate();
|
2021-02-18 11:33:29 +01:00
|
|
|
|
2021-11-19 19:22:11 +01:00
|
|
|
logger->info("UI Exit");
|
|
|
|
|
|
|
|
|
|
// If we're doing live processing, we want this to kill all threads quickly. Hence don't call destructors
|
2022-03-10 19:56:37 +01:00
|
|
|
if (satdump::processing::is_processing)
|
2021-11-22 00:30:10 +01:00
|
|
|
#ifdef __APPLE__
|
2021-11-22 00:47:00 +01:00
|
|
|
exit(0);
|
2021-11-22 00:30:10 +01:00
|
|
|
#else
|
2021-11-19 19:22:11 +01:00
|
|
|
quick_exit(0);
|
2021-11-22 00:30:10 +01:00
|
|
|
#endif
|
2021-11-19 19:22:11 +01:00
|
|
|
|
2022-03-10 19:56:37 +01:00
|
|
|
satdump::ui_thread_pool.stop();
|
2021-02-24 12:58:30 +01:00
|
|
|
|
2022-03-10 19:56:37 +01:00
|
|
|
for (int i = 0; i < satdump::ui_thread_pool.size(); i++)
|
2021-02-23 17:11:12 +01:00
|
|
|
{
|
2022-03-10 19:56:37 +01:00
|
|
|
if (satdump::ui_thread_pool.get_thread(i).joinable())
|
|
|
|
|
satdump::ui_thread_pool.get_thread(i).join();
|
2021-02-23 17:11:12 +01:00
|
|
|
}
|
2021-05-05 15:52:12 +02:00
|
|
|
|
|
|
|
|
logger->info("Exiting!");
|
2021-08-23 15:04:00 +01:00
|
|
|
}
|