From 39c93db9c26e0bd868133a543d04734fada9f6ef Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 28 Aug 2020 14:31:36 +0200 Subject: [PATCH] Added PlotWindow exceptions --- ComplexPlotting/CMakeLists.txt | 2 +- ComplexPlotting/PlotWindow.cpp | 15 +++++++++++- ComplexPlotting/PlotWindow.hpp | 3 +++ ComplexPlotting/PlotWindowManager.hpp | 35 ++++++++++++++++++++------- 4 files changed, 44 insertions(+), 11 deletions(-) diff --git a/ComplexPlotting/CMakeLists.txt b/ComplexPlotting/CMakeLists.txt index 0381c44..4ae261c 100644 --- a/ComplexPlotting/CMakeLists.txt +++ b/ComplexPlotting/CMakeLists.txt @@ -14,7 +14,7 @@ endif() # Add source to this project's executable. add_executable (ComplexPlotting "main.cpp" - "PlotWindow.hpp" "PlotWindow.cpp" "PlotWindowManager.hpp") + "PlotWindow.hpp" "PlotWindow.cpp" "PlotWindowManager.hpp" "PlotWindowException.hpp") target_include_directories(ComplexPlotting PRIVATE ${SDL2_INCLUDES} diff --git a/ComplexPlotting/PlotWindow.cpp b/ComplexPlotting/PlotWindow.cpp index 68adc9e..423120e 100644 --- a/ComplexPlotting/PlotWindow.cpp +++ b/ComplexPlotting/PlotWindow.cpp @@ -1,4 +1,5 @@ #include "PlotWindow.hpp" +#include "PlotWindowException.hpp" #include @@ -43,8 +44,9 @@ PlotWindow::PlotWindow(Uint32 id, std::string title) : UnitVector2i * SDL_WINDOWPOS_UNDEFINED, "Plot " + std::to_string(id) + " [" + title + "]", NULL), - id(id) + id(id), texture(nullptr) { + } void PlotWindow::SetCallback(CmplxFunc callback) @@ -52,6 +54,17 @@ void PlotWindow::SetCallback(CmplxFunc callback) this->callback = callback; } +bool PlotWindow::OnCreate() +{ + int w = 0, h = 0; + SDL_GetWindowSize(m_pWindow, &w, &h); + texture = SDL_CreateTexture(m_pRenderer, SDL_PIXELFORMAT_RGBA8888, SDL_TEXTUREACCESS_TARGET, w, h); + if (texture != nullptr) + throw PlotWindowException("Failed to create SDL_Texture.", this); + + return true; +} + bool PlotWindow::OnEvent(const SDL_Event& e) { if (e.window.windowID != m_uWindowID) diff --git a/ComplexPlotting/PlotWindow.hpp b/ComplexPlotting/PlotWindow.hpp index 0fa17e9..0ce015f 100644 --- a/ComplexPlotting/PlotWindow.hpp +++ b/ComplexPlotting/PlotWindow.hpp @@ -19,6 +19,7 @@ public: void SetCallback(CmplxFunc callback); + bool OnCreate() override; bool OnEvent(const SDL_Event& e) override; bool OnUpdate(double frametime = 0) override; void OnRender(SDL_Renderer* renderer = nullptr) override; @@ -26,4 +27,6 @@ public: private: Uint32 id; CmplxFunc callback; + + SDL_Texture* texture; }; \ No newline at end of file diff --git a/ComplexPlotting/PlotWindowManager.hpp b/ComplexPlotting/PlotWindowManager.hpp index 4f1e1bf..7ccd60f 100644 --- a/ComplexPlotting/PlotWindowManager.hpp +++ b/ComplexPlotting/PlotWindowManager.hpp @@ -1,5 +1,7 @@ #include "PlotWindow.hpp" +#include "PlotWindowException.hpp" + #include #include #include @@ -13,9 +15,18 @@ public: static PlotWindow* MakeNew(std::string title) { PlotWindow* plt = new PlotWindow(PlotWindowCount, title); + plt->Open(); + + float a = (float)(rand() % 200 - 100) / 100.f; + float b = (float)(rand() % 200 - 100) / 100.f; + plt->SetCallback(std::bind([a, b](std::complex c) + { + return std::complex{ a, b }; + }, + std::placeholders::_1)); + PlotWindows.insert({ PlotWindowCount, plt }); PlotWindowCount++; - plt->Open(); return plt; } @@ -46,16 +57,22 @@ public: std::string title = InputFuture.get(); if (title != "") { - PlotWindow* newWindow = MakeNew(title); - float a = (float)(rand() % 200 - 100) / 100.f; - float b = (float)(rand() % 200 - 100) / 100.f; - newWindow->SetCallback(std::bind([a, b](std::complex c) + try { - return std::complex{ a, b }; - }, - std::placeholders::_1)); + PlotWindow* newWindow = MakeNew(title); + PrintThreadSafe("-- Success\n"); + } + catch (PlotWindowException e) + { + PrintThreadSafe(e.what()); + PrintThreadSafe("\n"); + PrintThreadSafe("-- Failed.\n"); - PrintThreadSafe("-- Success\n"); + PlotWindow* src = e.where(); + src->Stop(); + delete src; + src = nullptr; + } } InputPromise = std::promise();