2021-02-17 22:25:03 +01:00
|
|
|
#include "logger.h"
|
2022-05-02 18:59:03 +02:00
|
|
|
#include "core/style.h"
|
2021-02-18 20:42:08 +01:00
|
|
|
#include "gl.h"
|
|
|
|
|
#include "logger.h"
|
|
|
|
|
#include <signal.h>
|
2021-02-18 21:15:33 +01:00
|
|
|
#include <GLFW/glfw3.h>
|
2021-02-19 00:03:52 +01:00
|
|
|
#include "imgui/imgui_flags.h"
|
2021-03-22 18:53:09 +01:00
|
|
|
#include "init.h"
|
|
|
|
|
#include "processing.h"
|
2021-05-04 12:23:22 +02:00
|
|
|
#include <filesystem>
|
2021-08-15 16:47:44 +02:00
|
|
|
#include "main_ui.h"
|
2021-08-19 00:37:25 +02:00
|
|
|
#include "satdump_vars.h"
|
2022-03-05 12:44:19 +01:00
|
|
|
//#include "tle.h"
|
2022-02-22 19:55:11 +01:00
|
|
|
#include "common/cli_utils.h"
|
2021-08-02 23:33:10 +02:00
|
|
|
|
2021-08-15 16:47:44 +02:00
|
|
|
extern bool recorder_running;
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-09 00:39:21 +02:00
|
|
|
void bindImageTextureFunctions();
|
2022-03-05 12:44:19 +01:00
|
|
|
// void bindFileDialogsFunctions();
|
2021-04-09 00:39:21 +02:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
2021-04-09 00:39:21 +02:00
|
|
|
bindImageTextureFunctions();
|
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) :");
|
|
|
|
|
logger->error(" --samplerate [baseband_samplerate] --baseband_format [f32/i16/i8/w8] --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
|
|
|
|
2022-03-15 16:07:47 +01:00
|
|
|
// Init SatDump
|
|
|
|
|
satdump::initSatdump();
|
|
|
|
|
|
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
|
|
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
|
|
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 2);
|
|
|
|
|
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); // 3.2+ only
|
|
|
|
|
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); // Required on Mac
|
2021-02-14 12:05:44 +01:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
// Create window with graphics context
|
2021-08-02 23:33:10 +02:00
|
|
|
GLFWwindow *window = glfwCreateWindow(1000, 600, std::string("SatDump v" + (std::string)SATDUMP_VERSION).c_str(), NULL, NULL);
|
2021-02-17 22:25:03 +01:00
|
|
|
if (window == NULL)
|
2021-02-14 12:05:44 +01:00
|
|
|
{
|
2021-02-17 22:25:03 +01:00
|
|
|
logger->critical("Could not init GLFW Window");
|
|
|
|
|
exit(1);
|
2021-02-14 12:05:44 +01:00
|
|
|
}
|
|
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
glfwMakeContextCurrent(window);
|
|
|
|
|
glfwSwapInterval(1); // Enable vsync
|
2021-02-14 12:05:44 +01:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
if (glewInit() != GLEW_OK)
|
|
|
|
|
{
|
|
|
|
|
logger->critical("Failed to initialize OpenGL loader!");
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
2021-02-17 20:07:49 +01: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
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
// Setup Platform/Renderer bindings
|
|
|
|
|
ImGui_ImplGlfw_InitForOpenGL(window, true);
|
2021-03-21 20:48:51 +01:00
|
|
|
if (!ImGui_ImplOpenGL3_Init("#version 150"))
|
|
|
|
|
ImGui_ImplOpenGL3_Init("#version 120"); // If 1.5 doesn't work go back to 1.2
|
2021-02-16 13:47:53 +01:00
|
|
|
|
2022-03-30 15:41:23 +02:00
|
|
|
// Init UI
|
|
|
|
|
satdump::initMainUI();
|
2021-02-17 23:21:59 +01:00
|
|
|
|
2022-03-10 19:56:37 +01:00
|
|
|
if (satdump::processing::is_processing)
|
2022-03-15 16:07:47 +01:00
|
|
|
{
|
2022-03-10 19:56:37 +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
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
// Main loop
|
|
|
|
|
while (!glfwWindowShouldClose(window))
|
|
|
|
|
{
|
|
|
|
|
glfwPollEvents();
|
2021-02-16 13:47:53 +01:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
// Start the Dear ImGui frame
|
|
|
|
|
ImGui_ImplOpenGL3_NewFrame();
|
|
|
|
|
ImGui_ImplGlfw_NewFrame();
|
|
|
|
|
ImGui::NewFrame();
|
2021-02-16 13:47:53 +01:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
int wwidth, wheight;
|
|
|
|
|
glfwGetWindowSize(window, &wwidth, &wheight);
|
2021-02-16 13:47:53 +01:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
// User rendering
|
2022-03-10 19:56:37 +01:00
|
|
|
satdump::renderMainUI(wwidth, wheight);
|
2021-02-14 12:05:44 +01:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
// Rendering
|
|
|
|
|
ImGui::Render();
|
|
|
|
|
int display_w, display_h;
|
|
|
|
|
glfwGetFramebufferSize(window, &display_w, &display_h);
|
|
|
|
|
glViewport(0, 0, display_w, display_h);
|
2021-02-14 12:05:44 +01:00
|
|
|
|
2022-03-30 15:41:23 +02:00
|
|
|
if (satdump::light_theme)
|
2021-06-12 21:14:32 +02:00
|
|
|
glClearColor(0.7f, 0.7f, 0.7f, 1.0f);
|
|
|
|
|
else
|
|
|
|
|
glClearColor(0.0666f, 0.0666f, 0.0666f, 1.0f);
|
2022-02-22 19:55:11 +01:00
|
|
|
// glClearColor(0.9f, 0.9f, 0.9f, 1.0f);
|
2021-02-17 22:25:03 +01:00
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
2021-02-18 11:33:29 +01:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
|
2021-02-16 13:47:53 +01:00
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
glfwSwapBuffers(window);
|
2021-02-16 13:47:53 +01:00
|
|
|
}
|
2021-02-14 12:05:44 +01:00
|
|
|
|
2022-05-08 16:35:54 +02:00
|
|
|
satdump::exitMainUI();
|
|
|
|
|
|
2021-02-17 22:25:03 +01:00
|
|
|
// Cleanup
|
|
|
|
|
ImGui_ImplOpenGL3_Shutdown();
|
|
|
|
|
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
|
|
|
}
|