aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-11-22 21:25:34 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-11-22 21:25:34 -0500
commit05dd30a5158184fea83d93f53e8100aecaebb74a (patch)
tree9bf7a49b1aeb7d9b41d0c2fffbddc7f91243bf32 /src/window.cpp
parente51b9ee1e0f9b8aeef98b8875f66260db0e7b502 (diff)
Scaling textures (start)
Diffstat (limited to 'src/window.cpp')
-rw-r--r--src/window.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/window.cpp b/src/window.cpp
index 4c73b8b..f878ec3 100644
--- a/src/window.cpp
+++ b/src/window.cpp
@@ -66,6 +66,7 @@ void WindowSystem::die(void)
void WindowSystem::configure(entityx::EventManager &ev)
{
ev.subscribe<WindowResizeEvent>(*this);
+ ev.subscribe<ScreenshotEvent>(*this);
}
@@ -78,6 +79,22 @@ void WindowSystem::receive(const WindowResizeEvent &wre)
SDL_SetWindowSize(window, wre.x, wre.y);
}
+#include <ui.hpp>
+
+void WindowSystem::receive(const ScreenshotEvent &scr)
+{
+ // Make the BYTE array, factor of 3 because it's RBG.
+ static GLubyte* pixels;
+ pixels = new GLubyte[ 3 * scr.w * scr.h];
+ //glReadPixels(0, 0, scr.w, scr.h, GL_RGB, GL_UNSIGNED_BYTE, pixels);
+ for(int i = 0; i < (3 * scr.w * scr.h); i++) {
+ pixels[i] = 255;
+ }
+
+ ui::takeScreenshot(pixels);
+ std::cout << "Triggered\n";
+}
+
void WindowSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
{
(void)en;