From fc8a1b2d35f8d3cbeb55ee0bdafa2cc0d9d7c721 Mon Sep 17 00:00:00 2001 From: Robert Date: Tue, 1 Sep 2020 18:00:34 +0200 Subject: [PATCH] Added window input --- src/PlotManager.cpp | 60 ++++++++++++++++++++++++++++++++++++++++----- src/PlotManager.hpp | 21 +++++++++++++++- src/PlotWindow.cpp | 4 +-- src/PlotWindow.hpp | 4 ++- src/main.cpp | 5 ---- 5 files changed, 79 insertions(+), 15 deletions(-) diff --git a/src/PlotManager.cpp b/src/PlotManager.cpp index 797f603..dfeabca 100644 --- a/src/PlotManager.cpp +++ b/src/PlotManager.cpp @@ -1,9 +1,11 @@ #include "PlotManager.hpp" -void PlotManager::NewPlot() +#include + +void PlotManager::NewPlot(std::string title) { currentID++; - OpenWindows.emplace_back(400, 400, currentID); + OpenWindows.emplace_back(400, 400, currentID, title); } WList::iterator PlotManager::Remove(WList::iterator it) @@ -13,15 +15,35 @@ WList::iterator PlotManager::Remove(WList::iterator it) void PlotManager::Loop() { + // Check if the future has been set + if (inputFuture.wait_for(std::chrono::milliseconds(0)) != std::future_status::timeout) + { + inputThread.join(); + + std::string input = inputFuture.get(); + for (int i = 0; i < (sizeof(QUIT_COMMANDS) / sizeof(uint64_t)); i++) + { + if (input == QUIT_COMMANDS[i]) + { + Close(); + return; + } + } + + NewPlot(input); + + inputPromise = std::promise(); + inputFuture = inputPromise.get_future(); + + inputThread = std::thread(&PlotManager::InputThreadFunction); + } + for (WList::iterator it = OpenWindows.begin(); it != OpenWindows.end();) { if (it->ShouldClose()) { it->Destroy(); it = OpenWindows.erase(it); - - if (OpenWindows.empty()) - isOpen = false; continue; } @@ -32,4 +54,30 @@ void PlotManager::Loop() it->Display(); it++; } -} \ No newline at end of file +} + +void PlotManager::Close() +{ + for (WList::iterator it = OpenWindows.begin(); it != OpenWindows.end();) + { + it->Destroy(); + it = OpenWindows.erase(it); + } + + try { + inputThread.detach(); + } catch(...) {} + isOpen = false; +} + +void PlotManager::InputThreadFunction() +{ + PlotMgrMutex.lock(); + std::cout << "> "; + PlotMgrMutex.unlock(); + + std::string input; + std::cin >> input; + + inputPromise.set_value(input); +} diff --git a/src/PlotManager.hpp b/src/PlotManager.hpp index 97447ba..f41d927 100644 --- a/src/PlotManager.hpp +++ b/src/PlotManager.hpp @@ -2,6 +2,9 @@ #include +#include +#include + #include "PlotWindow.hpp" typedef std::vector WList; @@ -9,15 +12,31 @@ typedef std::vector WList; class PlotManager { public: - static void NewPlot(); + inline static const char* const QUIT_COMMANDS[2] = { "q", "quit" }; +public: + static void NewPlot(std::string title); static WList::iterator Remove(WList::iterator it); static void Loop(); + static void Close(); + public: inline static bool isOpen = true; private: inline static WList OpenWindows; inline static int currentID = 0; + + inline static std::promise inputPromise; + inline static std::future inputFuture = inputPromise.get_future(); + + inline static std::mutex PlotMgrMutex; + +private: + static void InputThreadFunction(); + +private: + inline static std::thread inputThread = std::thread(&PlotManager::InputThreadFunction); + }; \ No newline at end of file diff --git a/src/PlotWindow.cpp b/src/PlotWindow.cpp index b1cba88..4834792 100644 --- a/src/PlotWindow.cpp +++ b/src/PlotWindow.cpp @@ -3,10 +3,10 @@ #include #include -PlotWindow::PlotWindow(int w, int h, int id) : +PlotWindow::PlotWindow(int w, int h, int id, std::string title) : window(nullptr), id(id) { - window = glfwCreateWindow(w, h, (std::string("Plot ") + std::to_string(id)).c_str(), NULL, NULL); + window = glfwCreateWindow(w, h, ("Plot " + std::to_string(id) + " | " + title).c_str(), NULL, NULL); if (window == nullptr) { const char* buffer = new const char[512]; diff --git a/src/PlotWindow.hpp b/src/PlotWindow.hpp index d551648..a8b4095 100644 --- a/src/PlotWindow.hpp +++ b/src/PlotWindow.hpp @@ -1,5 +1,7 @@ #pragma once +#include + #include #include @@ -8,7 +10,7 @@ class PlotWindow { public: - PlotWindow(int w, int h, int id); + PlotWindow(int w, int h, int id, std::string title); bool ShouldClose() { return glfwWindowShouldClose(window); } void Destroy(); diff --git a/src/main.cpp b/src/main.cpp index 4e5fb06..8a2fff5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -21,11 +21,6 @@ int main(int argc, char** argv) glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 6); glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); - for (int i = 0; i < 1; i++) - { - PlotManager::NewPlot(); - } - while (PlotManager::isOpen) { glfwPollEvents();