diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-11-22 21:25:34 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-11-22 21:25:34 -0500 |
commit | 05dd30a5158184fea83d93f53e8100aecaebb74a (patch) | |
tree | 9bf7a49b1aeb7d9b41d0c2fffbddc7f91243bf32 /src | |
parent | e51b9ee1e0f9b8aeef98b8875f66260db0e7b502 (diff) |
Scaling textures (start)
Diffstat (limited to 'src')
-rw-r--r-- | src/components.cpp | 4 | ||||
-rw-r--r-- | src/ui.cpp | 6 | ||||
-rw-r--r-- | src/window.cpp | 17 | ||||
-rw-r--r-- | src/world.cpp | 4 |
4 files changed, 27 insertions, 4 deletions
diff --git a/src/components.cpp b/src/components.cpp index c7069ce..f216cd2 100644 --- a/src/components.cpp +++ b/src/components.cpp @@ -53,8 +53,8 @@ void RenderSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, 1.0, 0.0}; for (auto &S : sprite.sprite) { - float width = S.first.size.x; - float height = S.first.size.y; + float width = HLINES(S.first.size.x); + float height = HLINES(S.first.size.y); vec2 loc = vec2(pos.x + S.first.offset.x, pos.y + S.first.offset.y); @@ -1337,10 +1337,12 @@ void InputSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, break; case SDLK_F12: // Make the BYTE array, factor of 3 because it's RBG. - static GLubyte* pixels; + /*static GLubyte* pixels; pixels = new GLubyte[ 3 * SCREEN_WIDTH * SCREEN_HEIGHT]; glReadPixels(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, GL_RGB, GL_UNSIGNED_BYTE, pixels); - takeScreenshot(pixels); + takeScreenshot(pixels);*/ + + ev.emit<ScreenshotEvent>(game::SCREEN_WIDTH, game::SCREEN_HEIGHT); std::cout << "Took screenshot" << std::endl; break; 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; diff --git a/src/world.cpp b/src/world.cpp index 8f67d8b..02db9cf 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -759,6 +759,8 @@ void WorldSystem::render(void) bgTex++; auto mountainDim = bgTex.getTextureDim(); + mountainDim.x = HLINES(mountainDim.x); + mountainDim.y = HLINES(mountainDim.y); auto xcoord = width / 2 * -1 + offset.x * 0.85f; for (int i = 0; i <= width / mountainDim.x; i++) { bg_items.emplace_back(mountainDim.x * i + xcoord, GROUND_HEIGHT_MINIMUM, 8.0f); @@ -786,6 +788,8 @@ void WorldSystem::render(void) for (unsigned int i = 0; i < 4; i++) { bgTex++; auto dim = bgTex.getTextureDim(); + dim.x = HLINES(dim.x); + dim.y = HLINES(dim.y); auto xcoord = offset.x * bgDraw[i][2]; bg_items.clear(); |