diff --git a/ComplexPlotting/PlotWindow.cpp b/ComplexPlotting/PlotWindow.cpp index fe688e6..527bbde 100644 --- a/ComplexPlotting/PlotWindow.cpp +++ b/ComplexPlotting/PlotWindow.cpp @@ -2,11 +2,11 @@ #include -PlotWindow::PlotWindow(Uint32 id) : +PlotWindow::PlotWindow(Uint32 id, std::string title) : IWindow::IWindow( UnitVector2u * 400, UnitVector2i * SDL_WINDOWPOS_UNDEFINED, - "Plot " + std::to_string(id), + "Plot " + std::to_string(id) + " [" + title + "]", NULL), id(id) { @@ -37,5 +37,10 @@ bool PlotWindow::OnUpdate(double frametime) void PlotWindow::OnRender(SDL_Renderer* renderer) { + SDL_SetRenderDrawColor(m_pRenderer, 0, 0, 0, 255); + SDL_RenderClear(m_pRenderer); + + SDL_RenderPresent(m_pRenderer); + return; } diff --git a/ComplexPlotting/PlotWindow.hpp b/ComplexPlotting/PlotWindow.hpp index 2d89248..b3db41b 100644 --- a/ComplexPlotting/PlotWindow.hpp +++ b/ComplexPlotting/PlotWindow.hpp @@ -10,7 +10,7 @@ class PlotWindow : public IWindow { public: - PlotWindow(Uint32 id); + PlotWindow(Uint32 id, std::string title); bool OnEvent(const SDL_Event& e) override; bool OnUpdate(double frametime = 0) override; diff --git a/ComplexPlotting/PlotWindowManager.hpp b/ComplexPlotting/PlotWindowManager.hpp index abb02a4..18f6b2f 100644 --- a/ComplexPlotting/PlotWindowManager.hpp +++ b/ComplexPlotting/PlotWindowManager.hpp @@ -1,6 +1,8 @@ #include "PlotWindow.hpp" #include +#include +#include class PlotWindowManager { @@ -8,9 +10,9 @@ public: PlotWindowManager() = delete; PlotWindowManager& operator=(const PlotWindowManager& other) = delete; - static void MakeNew() + static void MakeNew(std::string title) { - PlotWindow* plt = new PlotWindow(PlotWindowCount); + PlotWindow* plt = new PlotWindow(PlotWindowCount, title); PlotWindows.insert({ PlotWindowCount, plt }); PlotWindowCount++; plt->Open(); @@ -36,6 +38,18 @@ public: static void Update() { + // Check for input from the console + if (InputFuture.wait_for(std::chrono::milliseconds(0)) != std::future_status::timeout) + { + MakeNew(InputFuture.get()); + + InputPromise = std::promise(); + InputFuture = InputPromise.get_future(); + + InputThread.join(); + InputThread = std::thread(PlotWindowManager::InputThreadFunc); + } + for (std::map::iterator it = PlotWindows.begin(); it != PlotWindows.end(); it++) it->second->OnUpdate(); } @@ -46,7 +60,27 @@ public: it->second->OnRender(); } + static void Quit() + { + InputThread.detach(); + } + private: static inline Uint32 PlotWindowCount = 1; static inline std::map PlotWindows; + + static inline std::promise InputPromise; + static inline std::future InputFuture = InputPromise.get_future(); + +private: + static void InputThreadFunc() + { + std::string in; + std::cout << "> "; + std::getline(std::cin, in); + InputPromise.set_value(in); + } + +private: + static inline std::thread InputThread = std::thread(PlotWindowManager::InputThreadFunc); }; \ No newline at end of file diff --git a/ComplexPlotting/main.cpp b/ComplexPlotting/main.cpp index d0d0fb0..cad13fe 100644 --- a/ComplexPlotting/main.cpp +++ b/ComplexPlotting/main.cpp @@ -13,12 +13,6 @@ int main(int argc, char** argv) SDL_Init(SDL_INIT_VIDEO); - // Create and open some windows - for (int i = 0; i < 3; i++) - { - PlotWindowManager::MakeNew(); - } - // Wait for window processes to end SDL_Event e; bool quit = false; @@ -37,5 +31,7 @@ int main(int argc, char** argv) PlotWindowManager::Render(); } + PlotWindowManager::Quit(); + return 0; } \ No newline at end of file