From 7fd559f3eb9e3004ce9da689663138fd4c417cc6 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 28 Aug 2020 13:08:19 +0200 Subject: [PATCH] Added complex function callback --- ComplexPlotting/PlotWindow.cpp | 49 ++++++++++++++++++++++++++- ComplexPlotting/PlotWindow.hpp | 8 +++++ ComplexPlotting/PlotWindowManager.hpp | 36 ++++++++++++++++++-- 3 files changed, 89 insertions(+), 4 deletions(-) diff --git a/ComplexPlotting/PlotWindow.cpp b/ComplexPlotting/PlotWindow.cpp index 527bbde..142053f 100644 --- a/ComplexPlotting/PlotWindow.cpp +++ b/ComplexPlotting/PlotWindow.cpp @@ -2,6 +2,41 @@ #include +#define PI 3.1415926535f + +SDL_Color HSVtoRGB(float H, float S, float V) +{ + float s = S / 100; + float v = V / 100; + float C = s * v; + float X = C * (1 - abs(fmod(H / 60.0, 2) - 1)); + float m = v - C; + float r, g, b; + if (H >= 0 && H < 60) { + r = C, g = X, b = 0; + } + else if (H >= 60 && H < 120) { + r = X, g = C, b = 0; + } + else if (H >= 120 && H < 180) { + r = 0, g = C, b = X; + } + else if (H >= 180 && H < 240) { + r = 0, g = X, b = C; + } + else if (H >= 240 && H < 300) { + r = X, g = 0, b = C; + } + else { + r = C, g = 0, b = X; + } + Uint8 R = (r + m) * 255; + Uint8 G = (g + m) * 255; + Uint8 B = (b + m) * 255; + + return SDL_Color{ R, G, B, 255 }; +} + PlotWindow::PlotWindow(Uint32 id, std::string title) : IWindow::IWindow( UnitVector2u * 400, @@ -12,6 +47,11 @@ PlotWindow::PlotWindow(Uint32 id, std::string title) : { } +void PlotWindow::SetCallback(CmplxFunc callback) +{ + this->callback = callback; +} + bool PlotWindow::OnEvent(const SDL_Event& e) { if (e.window.windowID != m_uWindowID) @@ -37,7 +77,14 @@ bool PlotWindow::OnUpdate(double frametime) void PlotWindow::OnRender(SDL_Renderer* renderer) { - SDL_SetRenderDrawColor(m_pRenderer, 0, 0, 0, 255); + float a = std::arg(callback(std::complex{0.f, 0.f})); + a += PI; + a /= PI; + a *= 360; + + SDL_Color c = HSVtoRGB(a, 100, 100); + + SDL_SetRenderDrawColor(m_pRenderer, c.r, c.g, c.b, c.a); SDL_RenderClear(m_pRenderer); SDL_RenderPresent(m_pRenderer); diff --git a/ComplexPlotting/PlotWindow.hpp b/ComplexPlotting/PlotWindow.hpp index b3db41b..0fa17e9 100644 --- a/ComplexPlotting/PlotWindow.hpp +++ b/ComplexPlotting/PlotWindow.hpp @@ -1,21 +1,29 @@ #pragma once +#include +#include + #include #include "Window.hpp" using namespace sf; +typedef std::function(std::complex)> CmplxFunc; + class PlotWindow : public IWindow { public: PlotWindow(Uint32 id, std::string title); + void SetCallback(CmplxFunc callback); + bool OnEvent(const SDL_Event& e) override; bool OnUpdate(double frametime = 0) override; void OnRender(SDL_Renderer* renderer = nullptr) override; private: Uint32 id; + CmplxFunc callback; }; \ No newline at end of file diff --git a/ComplexPlotting/PlotWindowManager.hpp b/ComplexPlotting/PlotWindowManager.hpp index 18f6b2f..c326f0a 100644 --- a/ComplexPlotting/PlotWindowManager.hpp +++ b/ComplexPlotting/PlotWindowManager.hpp @@ -10,12 +10,14 @@ public: PlotWindowManager() = delete; PlotWindowManager& operator=(const PlotWindowManager& other) = delete; - static void MakeNew(std::string title) + static PlotWindow* MakeNew(std::string title) { PlotWindow* plt = new PlotWindow(PlotWindowCount, title); PlotWindows.insert({ PlotWindowCount, plt }); PlotWindowCount++; plt->Open(); + + return plt; } static void HandleEvents(const SDL_Event& e) @@ -41,7 +43,18 @@ public: // Check for input from the console if (InputFuture.wait_for(std::chrono::milliseconds(0)) != std::future_status::timeout) { - MakeNew(InputFuture.get()); + std::string title = InputFuture.get(); + if (title != "") + { + PlotWindow* newWindow = MakeNew(title); + newWindow->SetCallback(std::bind([](std::complex c) + { + return std::complex{ 1.f, 1.f }; + }, + std::placeholders::_1)); + + PrintThreadSafe("-- Success\n"); + } InputPromise = std::promise(); InputFuture = InputPromise.get_future(); @@ -65,6 +78,19 @@ public: InputThread.detach(); } + static void PrintThreadSafe(std::string s, bool block = true) + { + if (block) + StdOutMutex.lock(); + else + if (!StdOutMutex.try_lock()) + return; + + std::cout << s; + + StdOutMutex.unlock(); + } + private: static inline Uint32 PlotWindowCount = 1; static inline std::map PlotWindows; @@ -72,12 +98,16 @@ private: static inline std::promise InputPromise; static inline std::future InputFuture = InputPromise.get_future(); + static inline std::mutex StdOutMutex; + private: static void InputThreadFunc() { std::string in; - std::cout << "> "; + + PrintThreadSafe("> "); std::getline(std::cin, in); + InputPromise.set_value(in); }